diff --git a/grammar.js b/grammar.js index f52674b..82a6159 100644 --- a/grammar.js +++ b/grammar.js @@ -36,6 +36,7 @@ module.exports = grammar({ $.control_path, $.control_persist, $.dynamic_forward, + $.enable_escape_commandline, $.enable_ssh_keysign, $.escape_char, $.exit_on_forward_failure, @@ -314,6 +315,12 @@ module.exports = grammar({ ), dynamic_forward_value: $ => /\S.*/, + enable_escape_commandline: $ => option( + 'EnableEscapeCommandline', + $.enable_escape_commandline_value + ), + enable_escape_commandline_value: $ => alias($.boolean, "enable_escape_commandline_value"), + enable_ssh_keysign: $ => option( 'EnableSSHKeysign', $.enable_ssh_keysign_value diff --git a/queries/highlights.scm b/queries/highlights.scm index 72a018d..ed0e904 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -81,6 +81,9 @@ (enable_ssh_keysign) @keyword (enable_ssh_keysign_value) @constant.builtin.boolean +(enable_escape_commandline) @keyword +(enable_escape_commandline_value) @constant.builtin.boolean + (escape_char) @keyword (escape_char_value) @constant.character.escape diff --git a/src/grammar.json b/src/grammar.json index 91631ab..8f08ffa 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -115,6 +115,10 @@ "type": "SYMBOL", "name": "dynamic_forward" }, + { + "type": "SYMBOL", + "name": "enable_escape_commandline" + }, { "type": "SYMBOL", "name": "enable_ssh_keysign" @@ -2666,6 +2670,89 @@ "type": "PATTERN", "value": "\\S.*" }, + "enable_escape_commandline": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[eE][nN][aA][bB][lL][eE][eE][sS][cC][aA][pP][eE][cC][oO][mM][mM][aA][nN][dD][lL][iI][nN][eE]" + } + } + }, + "named": false, + "value": "EnableEscapeCommandline" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "STRING", + "value": "=" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\"" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "enable_escape_commandline_value" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\"" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "enable_escape_commandline_value": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "boolean" + }, + "named": false, + "value": "enable_escape_commandline_value" + }, "enable_ssh_keysign": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index b63fba2..e667828 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -443,6 +443,10 @@ "type": "dynamic_forward", "named": true }, + { + "type": "enable_escape_commandline", + "named": true + }, { "type": "enable_ssh_keysign", "named": true @@ -930,6 +934,26 @@ "named": true, "fields": {} }, + { + "type": "enable_escape_commandline", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "enable_escape_commandline_value", + "named": true + } + ] + } + }, + { + "type": "enable_escape_commandline_value", + "named": false, + "fields": {} + }, { "type": "enable_ssh_keysign", "named": true, @@ -2770,6 +2794,10 @@ "type": "DynamicForward", "named": false }, + { + "type": "EnableEscapeCommandline", + "named": false + }, { "type": "EnableSSHKeysign", "named": false diff --git a/src/parser.c b/src/parser.c index aedf40a..754cf18 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,15 +14,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1327 -#define LARGE_STATE_COUNT 776 -#define SYMBOL_COUNT 417 -#define ALIAS_COUNT 41 -#define TOKEN_COUNT 192 +#define STATE_COUNT 1339 +#define LARGE_STATE_COUNT 783 +#define SYMBOL_COUNT 420 +#define ALIAS_COUNT 42 +#define TOKEN_COUNT 193 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 6 -#define PRODUCTION_ID_COUNT 44 +#define PRODUCTION_ID_COUNT 45 enum { sym_comment = 1, @@ -70,418 +70,422 @@ enum { aux_sym_control_path_token1 = 43, aux_sym_control_persist_token1 = 44, aux_sym_dynamic_forward_token1 = 45, - aux_sym_enable_ssh_keysign_token1 = 46, - aux_sym_escape_char_token1 = 47, - anon_sym_none = 48, - aux_sym_escape_char_value_token1 = 49, - aux_sym_exit_on_forward_failure_token1 = 50, - aux_sym_fingerprint_hash_token1 = 51, - anon_sym_md5 = 52, - anon_sym_sha256 = 53, - aux_sym_fork_after_authentication_token1 = 54, - aux_sym_forward_agent_token1 = 55, - aux_sym_forward_x11_token1 = 56, - aux_sym_forward_x11_timeout_token1 = 57, - aux_sym_forward_x11_trusted_token1 = 58, - aux_sym_gateway_ports_token1 = 59, - aux_sym_global_known_hosts_file_token1 = 60, - aux_sym_gssapi_authentication_token1 = 61, - aux_sym_gssapi_client_identity_token1 = 62, - aux_sym_gssapi_delegate_credentials_token1 = 63, - aux_sym_gssapi_key_exchange_token1 = 64, - aux_sym_gssapi_renewal_forces_rekey_token1 = 65, - aux_sym_gssapi_server_identity_token1 = 66, - aux_sym_gssapi_trust_dns_token1 = 67, - aux_sym_gssapi_kex_algorithms_token1 = 68, - aux_sym_hash_known_hosts_token1 = 69, - aux_sym_hostbased_accepted_algorithms_token1 = 70, - aux_sym_hostbased_authentication_token1 = 71, - aux_sym_host_key_algorithms_token1 = 72, - aux_sym_host_key_alias_token1 = 73, - aux_sym_hostname_token1 = 74, - aux_sym_identities_only_token1 = 75, - aux_sym_identity_agent_token1 = 76, - aux_sym_identity_file_token1 = 77, - aux_sym_ignore_unknown_token1 = 78, - aux_sym_include_token1 = 79, - aux_sym_ip_qos_token1 = 80, - anon_sym_af11 = 81, - anon_sym_af12 = 82, - anon_sym_af13 = 83, - anon_sym_af21 = 84, - anon_sym_af22 = 85, - anon_sym_af23 = 86, - anon_sym_af31 = 87, - anon_sym_af32 = 88, - anon_sym_af33 = 89, - anon_sym_af41 = 90, - anon_sym_af42 = 91, - anon_sym_af43 = 92, - anon_sym_cs0 = 93, - anon_sym_cs1 = 94, - anon_sym_cs2 = 95, - anon_sym_cs3 = 96, - anon_sym_cs4 = 97, - anon_sym_cs5 = 98, - anon_sym_cs6 = 99, - anon_sym_cs7 = 100, - anon_sym_ef = 101, - anon_sym_le = 102, - anon_sym_lowdelay = 103, - anon_sym_throughput = 104, - anon_sym_reliability = 105, - aux_sym_kbd_interactive_authentication_token1 = 106, - aux_sym_kbd_interactive_devices_token1 = 107, - aux_sym_kex_algorithms_token1 = 108, - aux_sym_known_hosts_command_token1 = 109, - aux_sym_local_command_token1 = 110, - aux_sym_local_forward_token1 = 111, - aux_sym_log_level_token1 = 112, - aux_sym_log_level_value_token1 = 113, - aux_sym_log_level_value_token2 = 114, - aux_sym_log_level_value_token3 = 115, - aux_sym_log_level_value_token4 = 116, - aux_sym_log_level_value_token5 = 117, - aux_sym_log_level_value_token6 = 118, - aux_sym_log_level_value_token7 = 119, - aux_sym_log_level_value_token8 = 120, - aux_sym_log_level_value_token9 = 121, - aux_sym_log_verbose_token1 = 122, - aux_sym_macs_token1 = 123, - aux_sym_no_host_authentication_for_localhost_token1 = 124, - aux_sym_number_of_password_prompts_token1 = 125, - aux_sym_password_authentication_token1 = 126, - aux_sym_permit_local_command_token1 = 127, - aux_sym_permit_remote_open_token1 = 128, - aux_sym_pkcs11_provider_token1 = 129, - aux_sym_port_token1 = 130, - aux_sym_preferred_authentications_token1 = 131, - aux_sym_protocol_token1 = 132, - anon_sym_1 = 133, - anon_sym_2 = 134, - aux_sym_proxy_command_token1 = 135, - aux_sym_proxy_jump_token1 = 136, - aux_sym_proxy_use_fdpass_token1 = 137, - aux_sym_pubkey_accepted_algorithms_token1 = 138, - aux_sym_pubkey_accepted_key_types_token1 = 139, - aux_sym_pubkey_authentication_token1 = 140, - aux_sym_pubkey_authentication_value_token1 = 141, - aux_sym_pubkey_authentication_value_token2 = 142, - aux_sym_rekey_limit_token1 = 143, - aux_sym_remote_command_token1 = 144, - aux_sym_remote_forward_token1 = 145, - aux_sym_request_tty_token1 = 146, - aux_sym_request_tty_value_token1 = 147, - aux_sym_required_rsa_size_token1 = 148, - aux_sym_revoked_host_keys_token1 = 149, - aux_sym_security_key_provider_token1 = 150, - aux_sym_send_env_token1 = 151, - aux_sym_server_alive_count_max_token1 = 152, - aux_sym_server_alive_interval_token1 = 153, - aux_sym_session_type_token1 = 154, - aux_sym_session_type_value_token1 = 155, - aux_sym_session_type_value_token2 = 156, - aux_sym_set_env_token1 = 157, - aux_sym_stdin_null_token1 = 158, - aux_sym_stream_local_bind_mask_token1 = 159, - aux_sym_stream_local_bind_unlink_token1 = 160, - aux_sym_strict_host_key_checking_token1 = 161, - aux_sym_strict_host_key_checking_value_token1 = 162, - aux_sym_strict_host_key_checking_value_token2 = 163, - aux_sym_syslog_facility_token1 = 164, - anon_sym_DAEMON = 165, - anon_sym_USER = 166, - anon_sym_AUTH = 167, - anon_sym_LOCAL0 = 168, - anon_sym_LOCAL1 = 169, - anon_sym_LOCAL2 = 170, - anon_sym_LOCAL3 = 171, - anon_sym_LOCAL4 = 172, - anon_sym_LOCAL5 = 173, - anon_sym_LOCAL6 = 174, - anon_sym_LOCAL7 = 175, - aux_sym_tcp_keep_alive_token1 = 176, - aux_sym_keep_alive_token1 = 177, - aux_sym_tunnel_token1 = 178, - anon_sym_yes = 179, - anon_sym_no = 180, - anon_sym_point_DASHto_DASHpoint = 181, - anon_sym_ethernet = 182, - aux_sym_tunnel_device_token1 = 183, - aux_sym_update_host_keys_token1 = 184, - aux_sym_use_keychain_token1 = 185, - aux_sym_use_roaming_token1 = 186, - aux_sym_user_token1 = 187, - aux_sym_user_known_hosts_file_token1 = 188, - aux_sym_verify_host_key_dns_token1 = 189, - aux_sym_visual_host_key_token1 = 190, - aux_sym_xauth_location_token1 = 191, - sym_client_config = 192, - sym__option = 193, - sym_boolean = 194, - sym_pattern = 195, - sym_host = 196, - sym_host_value = 197, - sym_match = 198, - sym_match_value = 199, - sym_add_keys_to_agent = 200, - sym_add_keys_to_agent_value = 201, - sym_address_family = 202, - sym_address_family_value = 203, - sym_batch_mode = 204, - sym_batch_mode_value = 205, - sym_bind_address = 206, - sym_bind_address_value = 207, - sym_bind_interface = 208, - sym_bind_interface_value = 209, - sym_canonical_domains = 210, - sym_canonical_domains_value = 211, - sym_canonicalize_fallback_local = 212, - sym_canonicalize_fallback_local_value = 213, - sym_canonicalize_hostname = 214, - sym_canonicalize_hostname_value = 215, - sym_canonicalize_max_dots = 216, - sym_canonicalize_max_dots_value = 217, - sym_canonicalize_permitted_cnames = 218, - sym_canonicalize_permitted_cnames_value = 219, - sym_ca_signature_algorithms = 220, - sym_ca_signature_algorithms_value = 221, - sym_certificate_file = 222, - sym_certificate_file_value = 223, - sym_challenge_response_authentication = 224, - sym_challenge_response_authentication_value = 225, - sym_check_host_ip = 226, - sym_check_host_ip_value = 227, - sym_ciphers = 228, - sym_ciphers_value = 229, - sym_cipher = 230, - sym_cipher_value = 231, - sym_clear_all_forwardings = 232, - sym_clear_all_forwardings_value = 233, - sym_compression = 234, - sym_compression_value = 235, - sym_connection_attempts = 236, - sym_connection_attempts_value = 237, - sym_connect_timeout = 238, - sym_connect_timeout_value = 239, - sym_control_master = 240, - sym_control_master_value = 241, - sym_control_path = 242, - sym_control_path_value = 243, - sym_control_persist = 244, - sym_control_persist_value = 245, - sym_dynamic_forward = 246, - sym_dynamic_forward_value = 247, - sym_enable_ssh_keysign = 248, - sym_enable_ssh_keysign_value = 249, - sym_escape_char = 250, - sym_escape_char_value = 251, - sym_exit_on_forward_failure = 252, - sym_exit_on_forward_failure_value = 253, - sym_fingerprint_hash = 254, - sym_fingerprint_hash_value = 255, - sym_fork_after_authentication = 256, - sym_fork_after_authentication_value = 257, - sym_forward_agent = 258, - sym_forward_agent_value = 259, - sym_forward_x11 = 260, - sym_forward_x11_value = 261, - sym_forward_x11_timeout = 262, - sym_forward_x11_timeout_value = 263, - sym_forward_x11_trusted = 264, - sym_forward_x11_trusted_value = 265, - sym_gateway_ports = 266, - sym_gateway_ports_value = 267, - sym_global_known_hosts_file = 268, - sym_global_known_hosts_file_value = 269, - sym_gssapi_authentication = 270, - sym_gssapi_authentication_value = 271, - sym_gssapi_client_identity = 272, - sym_gssapi_client_identity_value = 273, - sym_gssapi_delegate_credentials = 274, - sym_gssapi_delegate_credentials_value = 275, - sym_gssapi_key_exchange = 276, - sym_gssapi_key_exchange_value = 277, - sym_gssapi_renewal_forces_rekey = 278, - sym_gssapi_renewal_forces_rekey_value = 279, - sym_gssapi_server_identity = 280, - sym_gssapi_server_identity_value = 281, - sym_gssapi_trust_dns = 282, - sym_gssapi_trust_dns_value = 283, - sym_gssapi_kex_algorithms = 284, - sym_gssapi_kex_algorithms_value = 285, - sym_hash_known_hosts = 286, - sym_hash_known_hosts_value = 287, - sym_hostbased_accepted_algorithms = 288, - sym_hostbased_accepted_algorithms_value = 289, - sym_hostbased_authentication = 290, - sym_hostbased_authentication_value = 291, - sym_host_key_algorithms = 292, - sym_host_key_algorithms_value = 293, - sym_host_key_alias = 294, - sym_host_key_alias_value = 295, - sym_hostname = 296, - sym_hostname_value = 297, - sym_identities_only = 298, - sym_identities_only_value = 299, - sym_identity_agent = 300, - sym_identity_agent_value = 301, - sym_identity_file = 302, - sym_identity_file_value = 303, - sym_ignore_unknown = 304, - sym_ignore_unknown_value = 305, - sym_include = 306, - sym_include_value = 307, - sym_ip_qos = 308, - sym_ip_qos_value = 309, - sym_kbd_interactive_authentication = 310, - sym_kbd_interactive_authentication_value = 311, - sym_kbd_interactive_devices = 312, - sym_kbd_interactive_devices_value = 313, - sym_kex_algorithms = 314, - sym_kex_algorithms_value = 315, - sym_known_hosts_command = 316, - sym_known_hosts_command_value = 317, - sym_local_command = 318, - sym_local_command_value = 319, - sym_local_forward = 320, - sym_local_forward_value = 321, - sym_log_level = 322, - sym_log_level_value = 323, - sym_log_verbose = 324, - sym_log_verbose_value = 325, - sym_macs = 326, - sym_macs_value = 327, - sym_no_host_authentication_for_localhost = 328, - sym_no_host_authentication_for_localhost_value = 329, - sym_number_of_password_prompts = 330, - sym_number_of_password_prompts_value = 331, - sym_password_authentication = 332, - sym_password_authentication_value = 333, - sym_permit_local_command = 334, - sym_permit_local_command_value = 335, - sym_permit_remote_open = 336, - sym_permit_remote_open_value = 337, - sym_pkcs11_provider = 338, - sym_pkcs11_provider_value = 339, - sym_port = 340, - sym_port_value = 341, - sym_preferred_authentications = 342, - sym_preferred_authentications_value = 343, - sym_protocol = 344, - sym_protocol_value = 345, - sym_proxy_command = 346, - sym_proxy_command_value = 347, - sym_proxy_jump = 348, - sym_proxy_jump_value = 349, - sym_proxy_use_fdpass = 350, - sym_proxy_use_fdpass_value = 351, - sym_pubkey_accepted_algorithms = 352, - sym_pubkey_accepted_algorithms_value = 353, - sym_pubkey_accepted_key_types = 354, - sym_pubkey_accepted_key_types_value = 355, - sym_pubkey_authentication = 356, - sym_pubkey_authentication_value = 357, - sym_rekey_limit = 358, - sym_rekey_limit_value = 359, - sym_remote_command = 360, - sym_remote_command_value = 361, - sym_remote_forward = 362, - sym_remote_forward_value = 363, - sym_request_tty = 364, - sym_request_tty_value = 365, - sym_required_rsa_size = 366, - sym_required_rsa_size_value = 367, - sym_revoked_host_keys = 368, - sym_revoked_host_keys_value = 369, - sym_security_key_provider = 370, - sym_security_key_provider_value = 371, - sym_send_env = 372, - sym_send_env_value = 373, - sym_server_alive_count_max = 374, - sym_server_alive_count_max_value = 375, - sym_server_alive_interval = 376, - sym_server_alive_interval_value = 377, - sym_session_type = 378, - sym_session_type_value = 379, - sym_set_env = 380, - sym_set_env_value = 381, - sym_stdin_null = 382, - sym_stdin_null_value = 383, - sym_stream_local_bind_mask = 384, - sym_stream_local_bind_mask_value = 385, - sym_stream_local_bind_unlink = 386, - sym_stream_local_bind_unlink_value = 387, - sym_strict_host_key_checking = 388, - sym_strict_host_key_checking_value = 389, - sym_syslog_facility = 390, - sym_syslog_facility_value = 391, - sym_tcp_keep_alive = 392, - sym_tcp_keep_alive_value = 393, - sym_keep_alive = 394, - sym_keep_alive_value = 395, - sym_tunnel = 396, - sym_tunnel_value = 397, - sym_tunnel_device = 398, - sym_tunnel_device_value = 399, - sym_update_host_keys = 400, - sym_update_host_keys_value = 401, - sym_use_keychain = 402, - sym_use_keychain_value = 403, - sym_use_roaming = 404, - sym_use_roaming_value = 405, - sym_user = 406, - sym_user_value = 407, - sym_user_known_hosts_file = 408, - sym_user_known_hosts_file_value = 409, - sym_verify_host_key_dns = 410, - sym_verify_host_key_dns_value = 411, - sym_visual_host_key = 412, - sym_visual_host_key_value = 413, - sym_xauth_location = 414, - sym_xauth_location_value = 415, - aux_sym_client_config_repeat1 = 416, - anon_alias_sym_batch_mode_value = 417, - anon_alias_sym_canonicalize_fallback_local_value = 418, - anon_alias_sym_challenge_response_authentication_value = 419, - anon_alias_sym_check_host_ip_value = 420, - anon_alias_sym_clear_all_forwardings_value = 421, - anon_alias_sym_compression_value = 422, - anon_alias_sym_connect_timeout_value = 423, - anon_alias_sym_connection_attempts_value = 424, - anon_alias_sym_enable_ssh_keysign_value = 425, - anon_alias_sym_exit_on_forward_failure_value = 426, - anon_alias_sym_fork_after_authentication_value = 427, - anon_alias_sym_forward_x11_timeout_value = 428, - anon_alias_sym_forward_x11_trusted_value = 429, - anon_alias_sym_forward_x11_value = 430, - anon_alias_sym_gateway_ports_value = 431, - anon_alias_sym_gssapi_authentication_value = 432, - anon_alias_sym_gssapi_delegate_credentials_value = 433, - anon_alias_sym_gssapi_key_exchange_value = 434, - anon_alias_sym_gssapi_renewal_forces_rekey_value = 435, - anon_alias_sym_gssapi_trust_dns_value = 436, - anon_alias_sym_hash_known_hosts_value = 437, - anon_alias_sym_hostbased_authentication_value = 438, - anon_alias_sym_identities_only_value = 439, - anon_alias_sym_kbd_interactive_authentication_value = 440, - anon_alias_sym_keep_alive_value = 441, - anon_alias_sym_match_value = 442, - anon_alias_sym_no_host_authentication_for_localhost_value = 443, - anon_alias_sym_number_of_password_prompts_value = 444, - anon_alias_sym_password_authentication_value = 445, - anon_alias_sym_permit_local_command_value = 446, - anon_alias_sym_port_value = 447, - anon_alias_sym_proxy_use_fdpass_value = 448, - anon_alias_sym_required_rsa_size_value = 449, - anon_alias_sym_server_alive_count_max_value = 450, - anon_alias_sym_server_alive_interval_value = 451, - anon_alias_sym_stdin_null_value = 452, - anon_alias_sym_stream_local_bind_unlink_value = 453, - anon_alias_sym_tcp_keep_alive_value = 454, - anon_alias_sym_use_keychain_value = 455, - anon_alias_sym_use_roaming_value = 456, - anon_alias_sym_visual_host_key_value = 457, + aux_sym_enable_escape_commandline_token1 = 46, + aux_sym_enable_ssh_keysign_token1 = 47, + aux_sym_escape_char_token1 = 48, + anon_sym_none = 49, + aux_sym_escape_char_value_token1 = 50, + aux_sym_exit_on_forward_failure_token1 = 51, + aux_sym_fingerprint_hash_token1 = 52, + anon_sym_md5 = 53, + anon_sym_sha256 = 54, + aux_sym_fork_after_authentication_token1 = 55, + aux_sym_forward_agent_token1 = 56, + aux_sym_forward_x11_token1 = 57, + aux_sym_forward_x11_timeout_token1 = 58, + aux_sym_forward_x11_trusted_token1 = 59, + aux_sym_gateway_ports_token1 = 60, + aux_sym_global_known_hosts_file_token1 = 61, + aux_sym_gssapi_authentication_token1 = 62, + aux_sym_gssapi_client_identity_token1 = 63, + aux_sym_gssapi_delegate_credentials_token1 = 64, + aux_sym_gssapi_key_exchange_token1 = 65, + aux_sym_gssapi_renewal_forces_rekey_token1 = 66, + aux_sym_gssapi_server_identity_token1 = 67, + aux_sym_gssapi_trust_dns_token1 = 68, + aux_sym_gssapi_kex_algorithms_token1 = 69, + aux_sym_hash_known_hosts_token1 = 70, + aux_sym_hostbased_accepted_algorithms_token1 = 71, + aux_sym_hostbased_authentication_token1 = 72, + aux_sym_host_key_algorithms_token1 = 73, + aux_sym_host_key_alias_token1 = 74, + aux_sym_hostname_token1 = 75, + aux_sym_identities_only_token1 = 76, + aux_sym_identity_agent_token1 = 77, + aux_sym_identity_file_token1 = 78, + aux_sym_ignore_unknown_token1 = 79, + aux_sym_include_token1 = 80, + aux_sym_ip_qos_token1 = 81, + anon_sym_af11 = 82, + anon_sym_af12 = 83, + anon_sym_af13 = 84, + anon_sym_af21 = 85, + anon_sym_af22 = 86, + anon_sym_af23 = 87, + anon_sym_af31 = 88, + anon_sym_af32 = 89, + anon_sym_af33 = 90, + anon_sym_af41 = 91, + anon_sym_af42 = 92, + anon_sym_af43 = 93, + anon_sym_cs0 = 94, + anon_sym_cs1 = 95, + anon_sym_cs2 = 96, + anon_sym_cs3 = 97, + anon_sym_cs4 = 98, + anon_sym_cs5 = 99, + anon_sym_cs6 = 100, + anon_sym_cs7 = 101, + anon_sym_ef = 102, + anon_sym_le = 103, + anon_sym_lowdelay = 104, + anon_sym_throughput = 105, + anon_sym_reliability = 106, + aux_sym_kbd_interactive_authentication_token1 = 107, + aux_sym_kbd_interactive_devices_token1 = 108, + aux_sym_kex_algorithms_token1 = 109, + aux_sym_known_hosts_command_token1 = 110, + aux_sym_local_command_token1 = 111, + aux_sym_local_forward_token1 = 112, + aux_sym_log_level_token1 = 113, + aux_sym_log_level_value_token1 = 114, + aux_sym_log_level_value_token2 = 115, + aux_sym_log_level_value_token3 = 116, + aux_sym_log_level_value_token4 = 117, + aux_sym_log_level_value_token5 = 118, + aux_sym_log_level_value_token6 = 119, + aux_sym_log_level_value_token7 = 120, + aux_sym_log_level_value_token8 = 121, + aux_sym_log_level_value_token9 = 122, + aux_sym_log_verbose_token1 = 123, + aux_sym_macs_token1 = 124, + aux_sym_no_host_authentication_for_localhost_token1 = 125, + aux_sym_number_of_password_prompts_token1 = 126, + aux_sym_password_authentication_token1 = 127, + aux_sym_permit_local_command_token1 = 128, + aux_sym_permit_remote_open_token1 = 129, + aux_sym_pkcs11_provider_token1 = 130, + aux_sym_port_token1 = 131, + aux_sym_preferred_authentications_token1 = 132, + aux_sym_protocol_token1 = 133, + anon_sym_1 = 134, + anon_sym_2 = 135, + aux_sym_proxy_command_token1 = 136, + aux_sym_proxy_jump_token1 = 137, + aux_sym_proxy_use_fdpass_token1 = 138, + aux_sym_pubkey_accepted_algorithms_token1 = 139, + aux_sym_pubkey_accepted_key_types_token1 = 140, + aux_sym_pubkey_authentication_token1 = 141, + aux_sym_pubkey_authentication_value_token1 = 142, + aux_sym_pubkey_authentication_value_token2 = 143, + aux_sym_rekey_limit_token1 = 144, + aux_sym_remote_command_token1 = 145, + aux_sym_remote_forward_token1 = 146, + aux_sym_request_tty_token1 = 147, + aux_sym_request_tty_value_token1 = 148, + aux_sym_required_rsa_size_token1 = 149, + aux_sym_revoked_host_keys_token1 = 150, + aux_sym_security_key_provider_token1 = 151, + aux_sym_send_env_token1 = 152, + aux_sym_server_alive_count_max_token1 = 153, + aux_sym_server_alive_interval_token1 = 154, + aux_sym_session_type_token1 = 155, + aux_sym_session_type_value_token1 = 156, + aux_sym_session_type_value_token2 = 157, + aux_sym_set_env_token1 = 158, + aux_sym_stdin_null_token1 = 159, + aux_sym_stream_local_bind_mask_token1 = 160, + aux_sym_stream_local_bind_unlink_token1 = 161, + aux_sym_strict_host_key_checking_token1 = 162, + aux_sym_strict_host_key_checking_value_token1 = 163, + aux_sym_strict_host_key_checking_value_token2 = 164, + aux_sym_syslog_facility_token1 = 165, + anon_sym_DAEMON = 166, + anon_sym_USER = 167, + anon_sym_AUTH = 168, + anon_sym_LOCAL0 = 169, + anon_sym_LOCAL1 = 170, + anon_sym_LOCAL2 = 171, + anon_sym_LOCAL3 = 172, + anon_sym_LOCAL4 = 173, + anon_sym_LOCAL5 = 174, + anon_sym_LOCAL6 = 175, + anon_sym_LOCAL7 = 176, + aux_sym_tcp_keep_alive_token1 = 177, + aux_sym_keep_alive_token1 = 178, + aux_sym_tunnel_token1 = 179, + anon_sym_yes = 180, + anon_sym_no = 181, + anon_sym_point_DASHto_DASHpoint = 182, + anon_sym_ethernet = 183, + aux_sym_tunnel_device_token1 = 184, + aux_sym_update_host_keys_token1 = 185, + aux_sym_use_keychain_token1 = 186, + aux_sym_use_roaming_token1 = 187, + aux_sym_user_token1 = 188, + aux_sym_user_known_hosts_file_token1 = 189, + aux_sym_verify_host_key_dns_token1 = 190, + aux_sym_visual_host_key_token1 = 191, + aux_sym_xauth_location_token1 = 192, + sym_client_config = 193, + sym__option = 194, + sym_boolean = 195, + sym_pattern = 196, + sym_host = 197, + sym_host_value = 198, + sym_match = 199, + sym_match_value = 200, + sym_add_keys_to_agent = 201, + sym_add_keys_to_agent_value = 202, + sym_address_family = 203, + sym_address_family_value = 204, + sym_batch_mode = 205, + sym_batch_mode_value = 206, + sym_bind_address = 207, + sym_bind_address_value = 208, + sym_bind_interface = 209, + sym_bind_interface_value = 210, + sym_canonical_domains = 211, + sym_canonical_domains_value = 212, + sym_canonicalize_fallback_local = 213, + sym_canonicalize_fallback_local_value = 214, + sym_canonicalize_hostname = 215, + sym_canonicalize_hostname_value = 216, + sym_canonicalize_max_dots = 217, + sym_canonicalize_max_dots_value = 218, + sym_canonicalize_permitted_cnames = 219, + sym_canonicalize_permitted_cnames_value = 220, + sym_ca_signature_algorithms = 221, + sym_ca_signature_algorithms_value = 222, + sym_certificate_file = 223, + sym_certificate_file_value = 224, + sym_challenge_response_authentication = 225, + sym_challenge_response_authentication_value = 226, + sym_check_host_ip = 227, + sym_check_host_ip_value = 228, + sym_ciphers = 229, + sym_ciphers_value = 230, + sym_cipher = 231, + sym_cipher_value = 232, + sym_clear_all_forwardings = 233, + sym_clear_all_forwardings_value = 234, + sym_compression = 235, + sym_compression_value = 236, + sym_connection_attempts = 237, + sym_connection_attempts_value = 238, + sym_connect_timeout = 239, + sym_connect_timeout_value = 240, + sym_control_master = 241, + sym_control_master_value = 242, + sym_control_path = 243, + sym_control_path_value = 244, + sym_control_persist = 245, + sym_control_persist_value = 246, + sym_dynamic_forward = 247, + sym_dynamic_forward_value = 248, + sym_enable_escape_commandline = 249, + sym_enable_escape_commandline_value = 250, + sym_enable_ssh_keysign = 251, + sym_enable_ssh_keysign_value = 252, + sym_escape_char = 253, + sym_escape_char_value = 254, + sym_exit_on_forward_failure = 255, + sym_exit_on_forward_failure_value = 256, + sym_fingerprint_hash = 257, + sym_fingerprint_hash_value = 258, + sym_fork_after_authentication = 259, + sym_fork_after_authentication_value = 260, + sym_forward_agent = 261, + sym_forward_agent_value = 262, + sym_forward_x11 = 263, + sym_forward_x11_value = 264, + sym_forward_x11_timeout = 265, + sym_forward_x11_timeout_value = 266, + sym_forward_x11_trusted = 267, + sym_forward_x11_trusted_value = 268, + sym_gateway_ports = 269, + sym_gateway_ports_value = 270, + sym_global_known_hosts_file = 271, + sym_global_known_hosts_file_value = 272, + sym_gssapi_authentication = 273, + sym_gssapi_authentication_value = 274, + sym_gssapi_client_identity = 275, + sym_gssapi_client_identity_value = 276, + sym_gssapi_delegate_credentials = 277, + sym_gssapi_delegate_credentials_value = 278, + sym_gssapi_key_exchange = 279, + sym_gssapi_key_exchange_value = 280, + sym_gssapi_renewal_forces_rekey = 281, + sym_gssapi_renewal_forces_rekey_value = 282, + sym_gssapi_server_identity = 283, + sym_gssapi_server_identity_value = 284, + sym_gssapi_trust_dns = 285, + sym_gssapi_trust_dns_value = 286, + sym_gssapi_kex_algorithms = 287, + sym_gssapi_kex_algorithms_value = 288, + sym_hash_known_hosts = 289, + sym_hash_known_hosts_value = 290, + sym_hostbased_accepted_algorithms = 291, + sym_hostbased_accepted_algorithms_value = 292, + sym_hostbased_authentication = 293, + sym_hostbased_authentication_value = 294, + sym_host_key_algorithms = 295, + sym_host_key_algorithms_value = 296, + sym_host_key_alias = 297, + sym_host_key_alias_value = 298, + sym_hostname = 299, + sym_hostname_value = 300, + sym_identities_only = 301, + sym_identities_only_value = 302, + sym_identity_agent = 303, + sym_identity_agent_value = 304, + sym_identity_file = 305, + sym_identity_file_value = 306, + sym_ignore_unknown = 307, + sym_ignore_unknown_value = 308, + sym_include = 309, + sym_include_value = 310, + sym_ip_qos = 311, + sym_ip_qos_value = 312, + sym_kbd_interactive_authentication = 313, + sym_kbd_interactive_authentication_value = 314, + sym_kbd_interactive_devices = 315, + sym_kbd_interactive_devices_value = 316, + sym_kex_algorithms = 317, + sym_kex_algorithms_value = 318, + sym_known_hosts_command = 319, + sym_known_hosts_command_value = 320, + sym_local_command = 321, + sym_local_command_value = 322, + sym_local_forward = 323, + sym_local_forward_value = 324, + sym_log_level = 325, + sym_log_level_value = 326, + sym_log_verbose = 327, + sym_log_verbose_value = 328, + sym_macs = 329, + sym_macs_value = 330, + sym_no_host_authentication_for_localhost = 331, + sym_no_host_authentication_for_localhost_value = 332, + sym_number_of_password_prompts = 333, + sym_number_of_password_prompts_value = 334, + sym_password_authentication = 335, + sym_password_authentication_value = 336, + sym_permit_local_command = 337, + sym_permit_local_command_value = 338, + sym_permit_remote_open = 339, + sym_permit_remote_open_value = 340, + sym_pkcs11_provider = 341, + sym_pkcs11_provider_value = 342, + sym_port = 343, + sym_port_value = 344, + sym_preferred_authentications = 345, + sym_preferred_authentications_value = 346, + sym_protocol = 347, + sym_protocol_value = 348, + sym_proxy_command = 349, + sym_proxy_command_value = 350, + sym_proxy_jump = 351, + sym_proxy_jump_value = 352, + sym_proxy_use_fdpass = 353, + sym_proxy_use_fdpass_value = 354, + sym_pubkey_accepted_algorithms = 355, + sym_pubkey_accepted_algorithms_value = 356, + sym_pubkey_accepted_key_types = 357, + sym_pubkey_accepted_key_types_value = 358, + sym_pubkey_authentication = 359, + sym_pubkey_authentication_value = 360, + sym_rekey_limit = 361, + sym_rekey_limit_value = 362, + sym_remote_command = 363, + sym_remote_command_value = 364, + sym_remote_forward = 365, + sym_remote_forward_value = 366, + sym_request_tty = 367, + sym_request_tty_value = 368, + sym_required_rsa_size = 369, + sym_required_rsa_size_value = 370, + sym_revoked_host_keys = 371, + sym_revoked_host_keys_value = 372, + sym_security_key_provider = 373, + sym_security_key_provider_value = 374, + sym_send_env = 375, + sym_send_env_value = 376, + sym_server_alive_count_max = 377, + sym_server_alive_count_max_value = 378, + sym_server_alive_interval = 379, + sym_server_alive_interval_value = 380, + sym_session_type = 381, + sym_session_type_value = 382, + sym_set_env = 383, + sym_set_env_value = 384, + sym_stdin_null = 385, + sym_stdin_null_value = 386, + sym_stream_local_bind_mask = 387, + sym_stream_local_bind_mask_value = 388, + sym_stream_local_bind_unlink = 389, + sym_stream_local_bind_unlink_value = 390, + sym_strict_host_key_checking = 391, + sym_strict_host_key_checking_value = 392, + sym_syslog_facility = 393, + sym_syslog_facility_value = 394, + sym_tcp_keep_alive = 395, + sym_tcp_keep_alive_value = 396, + sym_keep_alive = 397, + sym_keep_alive_value = 398, + sym_tunnel = 399, + sym_tunnel_value = 400, + sym_tunnel_device = 401, + sym_tunnel_device_value = 402, + sym_update_host_keys = 403, + sym_update_host_keys_value = 404, + sym_use_keychain = 405, + sym_use_keychain_value = 406, + sym_use_roaming = 407, + sym_use_roaming_value = 408, + sym_user = 409, + sym_user_value = 410, + sym_user_known_hosts_file = 411, + sym_user_known_hosts_file_value = 412, + sym_verify_host_key_dns = 413, + sym_verify_host_key_dns_value = 414, + sym_visual_host_key = 415, + sym_visual_host_key_value = 416, + sym_xauth_location = 417, + sym_xauth_location_value = 418, + aux_sym_client_config_repeat1 = 419, + anon_alias_sym_batch_mode_value = 420, + anon_alias_sym_canonicalize_fallback_local_value = 421, + anon_alias_sym_challenge_response_authentication_value = 422, + anon_alias_sym_check_host_ip_value = 423, + anon_alias_sym_clear_all_forwardings_value = 424, + anon_alias_sym_compression_value = 425, + anon_alias_sym_connect_timeout_value = 426, + anon_alias_sym_connection_attempts_value = 427, + anon_alias_sym_enable_escape_commandline_value = 428, + anon_alias_sym_enable_ssh_keysign_value = 429, + anon_alias_sym_exit_on_forward_failure_value = 430, + anon_alias_sym_fork_after_authentication_value = 431, + anon_alias_sym_forward_x11_timeout_value = 432, + anon_alias_sym_forward_x11_trusted_value = 433, + anon_alias_sym_forward_x11_value = 434, + anon_alias_sym_gateway_ports_value = 435, + anon_alias_sym_gssapi_authentication_value = 436, + anon_alias_sym_gssapi_delegate_credentials_value = 437, + anon_alias_sym_gssapi_key_exchange_value = 438, + anon_alias_sym_gssapi_renewal_forces_rekey_value = 439, + anon_alias_sym_gssapi_trust_dns_value = 440, + anon_alias_sym_hash_known_hosts_value = 441, + anon_alias_sym_hostbased_authentication_value = 442, + anon_alias_sym_identities_only_value = 443, + anon_alias_sym_kbd_interactive_authentication_value = 444, + anon_alias_sym_keep_alive_value = 445, + anon_alias_sym_match_value = 446, + anon_alias_sym_no_host_authentication_for_localhost_value = 447, + anon_alias_sym_number_of_password_prompts_value = 448, + anon_alias_sym_password_authentication_value = 449, + anon_alias_sym_permit_local_command_value = 450, + anon_alias_sym_port_value = 451, + anon_alias_sym_proxy_use_fdpass_value = 452, + anon_alias_sym_required_rsa_size_value = 453, + anon_alias_sym_server_alive_count_max_value = 454, + anon_alias_sym_server_alive_interval_value = 455, + anon_alias_sym_stdin_null_value = 456, + anon_alias_sym_stream_local_bind_unlink_value = 457, + anon_alias_sym_tcp_keep_alive_value = 458, + anon_alias_sym_use_keychain_value = 459, + anon_alias_sym_use_roaming_value = 460, + anon_alias_sym_visual_host_key_value = 461, }; static const char * const ts_symbol_names[] = { @@ -531,6 +535,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_control_path_token1] = "ControlPath", [aux_sym_control_persist_token1] = "ControlPersist", [aux_sym_dynamic_forward_token1] = "DynamicForward", + [aux_sym_enable_escape_commandline_token1] = "EnableEscapeCommandline", [aux_sym_enable_ssh_keysign_token1] = "EnableSSHKeysign", [aux_sym_escape_char_token1] = "EscapeChar", [anon_sym_none] = "none", @@ -733,6 +738,8 @@ static const char * const ts_symbol_names[] = { [sym_control_persist_value] = "control_persist_value", [sym_dynamic_forward] = "dynamic_forward", [sym_dynamic_forward_value] = "dynamic_forward_value", + [sym_enable_escape_commandline] = "enable_escape_commandline", + [sym_enable_escape_commandline_value] = "enable_escape_commandline_value", [sym_enable_ssh_keysign] = "enable_ssh_keysign", [sym_enable_ssh_keysign_value] = "enable_ssh_keysign_value", [sym_escape_char] = "escape_char", @@ -910,6 +917,7 @@ static const char * const ts_symbol_names[] = { [anon_alias_sym_compression_value] = "compression_value", [anon_alias_sym_connect_timeout_value] = "connect_timeout_value", [anon_alias_sym_connection_attempts_value] = "connection_attempts_value", + [anon_alias_sym_enable_escape_commandline_value] = "enable_escape_commandline_value", [anon_alias_sym_enable_ssh_keysign_value] = "enable_ssh_keysign_value", [anon_alias_sym_exit_on_forward_failure_value] = "exit_on_forward_failure_value", [anon_alias_sym_fork_after_authentication_value] = "fork_after_authentication_value", @@ -992,6 +1000,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_control_path_token1] = aux_sym_control_path_token1, [aux_sym_control_persist_token1] = aux_sym_control_persist_token1, [aux_sym_dynamic_forward_token1] = aux_sym_dynamic_forward_token1, + [aux_sym_enable_escape_commandline_token1] = aux_sym_enable_escape_commandline_token1, [aux_sym_enable_ssh_keysign_token1] = aux_sym_enable_ssh_keysign_token1, [aux_sym_escape_char_token1] = aux_sym_escape_char_token1, [anon_sym_none] = anon_sym_none, @@ -1194,6 +1203,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_control_persist_value] = sym_control_persist_value, [sym_dynamic_forward] = sym_dynamic_forward, [sym_dynamic_forward_value] = sym_dynamic_forward_value, + [sym_enable_escape_commandline] = sym_enable_escape_commandline, + [sym_enable_escape_commandline_value] = sym_enable_escape_commandline_value, [sym_enable_ssh_keysign] = sym_enable_ssh_keysign, [sym_enable_ssh_keysign_value] = sym_enable_ssh_keysign_value, [sym_escape_char] = sym_escape_char, @@ -1371,6 +1382,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_alias_sym_compression_value] = anon_alias_sym_compression_value, [anon_alias_sym_connect_timeout_value] = anon_alias_sym_connect_timeout_value, [anon_alias_sym_connection_attempts_value] = anon_alias_sym_connection_attempts_value, + [anon_alias_sym_enable_escape_commandline_value] = anon_alias_sym_enable_escape_commandline_value, [anon_alias_sym_enable_ssh_keysign_value] = anon_alias_sym_enable_ssh_keysign_value, [anon_alias_sym_exit_on_forward_failure_value] = anon_alias_sym_exit_on_forward_failure_value, [anon_alias_sym_fork_after_authentication_value] = anon_alias_sym_fork_after_authentication_value, @@ -1591,6 +1603,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [aux_sym_enable_escape_commandline_token1] = { + .visible = true, + .named = false, + }, [aux_sym_enable_ssh_keysign_token1] = { .visible = true, .named = false, @@ -2399,6 +2415,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_enable_escape_commandline] = { + .visible = true, + .named = true, + }, + [sym_enable_escape_commandline_value] = { + .visible = true, + .named = true, + }, [sym_enable_ssh_keysign] = { .visible = true, .named = true, @@ -3107,6 +3131,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_alias_sym_enable_escape_commandline_value] = { + .visible = true, + .named = false, + }, [anon_alias_sym_enable_ssh_keysign_value] = { .visible = true, .named = false, @@ -3274,108 +3302,111 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [0] = sym_time_format, }, [11] = { - [0] = anon_alias_sym_enable_ssh_keysign_value, + [0] = anon_alias_sym_enable_escape_commandline_value, }, [12] = { - [0] = anon_alias_sym_exit_on_forward_failure_value, + [0] = anon_alias_sym_enable_ssh_keysign_value, }, [13] = { - [0] = anon_alias_sym_fork_after_authentication_value, + [0] = anon_alias_sym_exit_on_forward_failure_value, }, [14] = { - [0] = anon_alias_sym_forward_x11_value, + [0] = anon_alias_sym_fork_after_authentication_value, }, [15] = { - [0] = anon_alias_sym_forward_x11_timeout_value, + [0] = anon_alias_sym_forward_x11_value, }, [16] = { - [0] = anon_alias_sym_forward_x11_trusted_value, + [0] = anon_alias_sym_forward_x11_timeout_value, }, [17] = { - [0] = anon_alias_sym_gateway_ports_value, + [0] = anon_alias_sym_forward_x11_trusted_value, }, [18] = { - [0] = anon_alias_sym_gssapi_authentication_value, + [0] = anon_alias_sym_gateway_ports_value, }, [19] = { - [0] = anon_alias_sym_gssapi_delegate_credentials_value, + [0] = anon_alias_sym_gssapi_authentication_value, }, [20] = { - [0] = anon_alias_sym_gssapi_key_exchange_value, + [0] = anon_alias_sym_gssapi_delegate_credentials_value, }, [21] = { - [0] = anon_alias_sym_gssapi_renewal_forces_rekey_value, + [0] = anon_alias_sym_gssapi_key_exchange_value, }, [22] = { - [0] = anon_alias_sym_gssapi_trust_dns_value, + [0] = anon_alias_sym_gssapi_renewal_forces_rekey_value, }, [23] = { - [0] = anon_alias_sym_hash_known_hosts_value, + [0] = anon_alias_sym_gssapi_trust_dns_value, }, [24] = { - [0] = anon_alias_sym_hostbased_authentication_value, + [0] = anon_alias_sym_hash_known_hosts_value, }, [25] = { - [0] = anon_alias_sym_identities_only_value, + [0] = anon_alias_sym_hostbased_authentication_value, }, [26] = { - [0] = anon_sym_af11, + [0] = anon_alias_sym_identities_only_value, }, [27] = { - [0] = anon_alias_sym_kbd_interactive_authentication_value, + [0] = anon_sym_af11, }, [28] = { - [0] = anon_alias_sym_no_host_authentication_for_localhost_value, + [0] = anon_alias_sym_kbd_interactive_authentication_value, }, [29] = { - [0] = anon_alias_sym_number_of_password_prompts_value, + [0] = anon_alias_sym_no_host_authentication_for_localhost_value, }, [30] = { - [0] = anon_alias_sym_password_authentication_value, + [0] = anon_alias_sym_number_of_password_prompts_value, }, [31] = { - [0] = anon_alias_sym_permit_local_command_value, + [0] = anon_alias_sym_password_authentication_value, }, [32] = { - [0] = anon_alias_sym_port_value, + [0] = anon_alias_sym_permit_local_command_value, }, [33] = { - [0] = anon_alias_sym_proxy_use_fdpass_value, + [0] = anon_alias_sym_port_value, }, [34] = { - [0] = anon_alias_sym_required_rsa_size_value, + [0] = anon_alias_sym_proxy_use_fdpass_value, }, [35] = { - [0] = anon_alias_sym_server_alive_count_max_value, + [0] = anon_alias_sym_required_rsa_size_value, }, [36] = { - [0] = anon_alias_sym_server_alive_interval_value, + [0] = anon_alias_sym_server_alive_count_max_value, }, [37] = { - [0] = anon_alias_sym_stdin_null_value, + [0] = anon_alias_sym_server_alive_interval_value, }, [38] = { - [0] = anon_alias_sym_stream_local_bind_unlink_value, + [0] = anon_alias_sym_stdin_null_value, }, [39] = { - [0] = anon_alias_sym_tcp_keep_alive_value, + [0] = anon_alias_sym_stream_local_bind_unlink_value, }, [40] = { - [0] = anon_alias_sym_keep_alive_value, + [0] = anon_alias_sym_tcp_keep_alive_value, }, [41] = { - [0] = anon_alias_sym_use_keychain_value, + [0] = anon_alias_sym_keep_alive_value, }, [42] = { - [0] = anon_alias_sym_use_roaming_value, + [0] = anon_alias_sym_use_keychain_value, }, [43] = { + [0] = anon_alias_sym_use_roaming_value, + }, + [44] = { [0] = anon_alias_sym_visual_host_key_value, }, }; static const uint16_t ts_non_terminal_alias_map[] = { - sym_boolean, 34, + sym_boolean, 35, sym_boolean, anon_alias_sym_batch_mode_value, anon_alias_sym_canonicalize_fallback_local_value, @@ -3383,6 +3414,7 @@ static const uint16_t ts_non_terminal_alias_map[] = { anon_alias_sym_check_host_ip_value, anon_alias_sym_clear_all_forwardings_value, anon_alias_sym_compression_value, + anon_alias_sym_enable_escape_commandline_value, anon_alias_sym_enable_ssh_keysign_value, anon_alias_sym_exit_on_forward_failure_value, anon_alias_sym_fork_after_authentication_value, @@ -4744,6 +4776,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1324] = 1324, [1325] = 1325, [1326] = 1326, + [1327] = 1327, + [1328] = 1328, + [1329] = 1329, + [1330] = 1330, + [1331] = 1331, + [1332] = 1332, + [1333] = 1333, + [1334] = 1334, + [1335] = 1335, + [1336] = 1336, + [1337] = 1337, + [1338] = 1338, }; static inline bool sym_time_format_character_set_1(int32_t c) { @@ -4767,28 +4811,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(1374); - if (lookahead == '"') ADVANCE(1389); - if (lookahead == '#') ADVANCE(1375); - if (lookahead == '1') ADVANCE(1517); - if (lookahead == '2') ADVANCE(1519); - if (lookahead == '=') ADVANCE(1387); + if (eof) ADVANCE(1390); + if (lookahead == '"') ADVANCE(1405); + if (lookahead == '#') ADVANCE(1391); + if (lookahead == '1') ADVANCE(1534); + if (lookahead == '2') ADVANCE(1536); + if (lookahead == '=') ADVANCE(1403); if (lookahead == 'A') ADVANCE(61); if (lookahead == 'C') ADVANCE(121); if (lookahead == 'D') ADVANCE(33); - if (lookahead == 'E') ADVANCE(801); + if (lookahead == 'E') ADVANCE(813); if (lookahead == 'L') ADVANCE(48); if (lookahead == 'M') ADVANCE(122); - if (lookahead == 'N') ADVANCE(879); + if (lookahead == 'N') ADVANCE(893); if (lookahead == 'P') ADVANCE(123); - if (lookahead == 'R') ADVANCE(350); - if (lookahead == 'S') ADVANCE(351); - if (lookahead == 'T') ADVANCE(243); + if (lookahead == 'R') ADVANCE(355); + if (lookahead == 'S') ADVANCE(356); + if (lookahead == 'T') ADVANCE(245); if (lookahead == 'U') ADVANCE(59); - if (lookahead == 'Y') ADVANCE(382); + if (lookahead == 'Y') ADVANCE(389); if (lookahead == 'a') ADVANCE(74); if (lookahead == 'c') ADVANCE(107); - if (lookahead == 'd') ADVANCE(349); + if (lookahead == 'd') ADVANCE(354); if (lookahead == 'e') ADVANCE(76); if (lookahead == 'l') ADVANCE(49); if (lookahead == 'm') ADVANCE(67); @@ -4797,7 +4841,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'r') ADVANCE(38); if (lookahead == 's') ADVANCE(79); if (lookahead == 't') ADVANCE(80); - if (lookahead == 'u') ADVANCE(804); + if (lookahead == 'u') ADVANCE(816); if (lookahead == 'y') ADVANCE(42); if (lookahead == 'B' || lookahead == 'b') ADVANCE(127); @@ -4808,76 +4852,76 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'H' || lookahead == 'h') ADVANCE(136); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(320); + lookahead == 'i') ADVANCE(324); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(230); + lookahead == 'k') ADVANCE(232); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(498); + lookahead == 'o') ADVANCE(506); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1276); + lookahead == 'q') ADVANCE(1292); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(390); + lookahead == 'v') ADVANCE(397); if (lookahead == 'X' || lookahead == 'x') ADVANCE(130); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1376); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1392); END_STATE(); case 1: - if (lookahead == '"') ADVANCE(1389); - if (lookahead == '#') ADVANCE(1375); - if (lookahead == '1') ADVANCE(1516); - if (lookahead == '2') ADVANCE(1518); - if (lookahead == '=') ADVANCE(1387); + if (lookahead == '"') ADVANCE(1405); + if (lookahead == '#') ADVANCE(1391); + if (lookahead == '1') ADVANCE(1533); + if (lookahead == '2') ADVANCE(1535); + if (lookahead == '=') ADVANCE(1403); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1294); + lookahead == 'a') ADVANCE(1310); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(171); + lookahead == 'f') ADVANCE(170); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(878); + lookahead == 'n') ADVANCE(892); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1010); + lookahead == 't') ADVANCE(1026); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(382); + lookahead == 'y') ADVANCE(389); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(1) END_STATE(); case 2: - if (lookahead == '"') ADVANCE(1389); - if (lookahead == '#') ADVANCE(1375); - if (lookahead == '=') ADVANCE(1387); + if (lookahead == '"') ADVANCE(1405); + if (lookahead == '#') ADVANCE(1391); + if (lookahead == '=') ADVANCE(1403); if (lookahead == 'A') ADVANCE(62); if (lookahead == 'D') ADVANCE(32); if (lookahead == 'L') ADVANCE(52); if (lookahead == 'U') ADVANCE(58); - if (lookahead == 'a') ADVANCE(242); - if (lookahead == 'u') ADVANCE(803); + if (lookahead == 'a') ADVANCE(244); + if (lookahead == 'u') ADVANCE(815); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(170); + lookahead == 'f') ADVANCE(169); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(943); + lookahead == 'h') ADVANCE(956); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(878); + lookahead == 'n') ADVANCE(892); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(498); + lookahead == 'o') ADVANCE(506); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1010); + lookahead == 't') ADVANCE(1026); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(382); + lookahead == 'y') ADVANCE(389); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(2) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1384); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1400); END_STATE(); case 3: - if (lookahead == '"') ADVANCE(1389); - if (lookahead == '#') ADVANCE(1375); - if (lookahead == '=') ADVANCE(1387); + if (lookahead == '"') ADVANCE(1405); + if (lookahead == '#') ADVANCE(1391); + if (lookahead == '=') ADVANCE(1403); if (lookahead == 'e') ADVANCE(109); if (lookahead == 'n') ADVANCE(98); if (lookahead == 'p') ADVANCE(102); @@ -4888,95 +4932,95 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(3) END_STATE(); case 4: - if (lookahead == '"') ADVANCE(1389); - if (lookahead == '#') ADVANCE(1375); - if (lookahead == '=') ADVANCE(1387); + if (lookahead == '"') ADVANCE(1405); + if (lookahead == '#') ADVANCE(1391); + if (lookahead == '=') ADVANCE(1403); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(688); + lookahead == 'a') ADVANCE(697); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(405); + lookahead == 'd') ADVANCE(412); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(170); + lookahead == 'f') ADVANCE(169); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(883); + lookahead == 'n') ADVANCE(897); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1277); + lookahead == 's') ADVANCE(1293); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1010); + lookahead == 't') ADVANCE(1026); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(382); + lookahead == 'y') ADVANCE(389); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(4) END_STATE(); case 5: - if (lookahead == '"') ADVANCE(1389); - if (lookahead == '#') ADVANCE(1428); - if (lookahead == '=') ADVANCE(1387); - if (lookahead == '^') ADVANCE(1372); - if (lookahead == 'n') ADVANCE(1432); + if (lookahead == '"') ADVANCE(1405); + if (lookahead == '#') ADVANCE(1445); + if (lookahead == '=') ADVANCE(1403); + if (lookahead == '^') ADVANCE(1388); + if (lookahead == 'n') ADVANCE(1449); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(1429); - if (lookahead != 0) ADVANCE(1428); + lookahead == ' ') ADVANCE(1446); + if (lookahead != 0) ADVANCE(1445); END_STATE(); case 6: - if (lookahead == '"') ADVANCE(1389); - if (lookahead == '#') ADVANCE(1428); - if (lookahead == '^') ADVANCE(1372); - if (lookahead == 'n') ADVANCE(1432); + if (lookahead == '"') ADVANCE(1405); + if (lookahead == '#') ADVANCE(1445); + if (lookahead == '^') ADVANCE(1388); + if (lookahead == 'n') ADVANCE(1449); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(1430); - if (lookahead != 0) ADVANCE(1428); + lookahead == ' ') ADVANCE(1447); + if (lookahead != 0) ADVANCE(1445); END_STATE(); case 7: - if (lookahead == '"') ADVANCE(1390); - if (lookahead == '#') ADVANCE(1382); - if (lookahead == '=') ADVANCE(1388); + if (lookahead == '"') ADVANCE(1406); + if (lookahead == '#') ADVANCE(1398); + if (lookahead == '=') ADVANCE(1404); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(7) - if (lookahead != 0) ADVANCE(1382); + if (lookahead != 0) ADVANCE(1398); END_STATE(); case 8: - if (lookahead == '"') ADVANCE(1390); - if (lookahead == '#') ADVANCE(1382); + if (lookahead == '"') ADVANCE(1406); + if (lookahead == '#') ADVANCE(1398); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(8) - if (lookahead != 0) ADVANCE(1382); + if (lookahead != 0) ADVANCE(1398); END_STATE(); case 9: - if (lookahead == '#') ADVANCE(1375); - if (lookahead == '=') ADVANCE(1387); + if (lookahead == '#') ADVANCE(1391); + if (lookahead == '=') ADVANCE(1403); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1386); + lookahead == ' ') ADVANCE(1402); if (lookahead == '\n' || lookahead == '\r') SKIP(9) END_STATE(); case 10: - if (lookahead == '#') ADVANCE(1382); + if (lookahead == '#') ADVANCE(1445); + if (lookahead == '^') ADVANCE(1388); + if (lookahead == 'n') ADVANCE(1449); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(10) - if (lookahead != 0) ADVANCE(1382); + lookahead == ' ') ADVANCE(1448); + if (lookahead != 0) ADVANCE(1445); END_STATE(); case 11: - if (lookahead == '#') ADVANCE(1428); - if (lookahead == '^') ADVANCE(1372); - if (lookahead == 'n') ADVANCE(1432); + if (lookahead == '#') ADVANCE(1398); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(1431); - if (lookahead != 0) ADVANCE(1428); + lookahead == ' ') SKIP(11) + if (lookahead != 0) ADVANCE(1398); END_STATE(); case 12: if (lookahead == '-') ADVANCE(114); @@ -4985,44 +5029,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(104); END_STATE(); case 14: - if (lookahead == '-') ADVANCE(841); + if (lookahead == '-') ADVANCE(855); END_STATE(); case 15: - if (lookahead == '-') ADVANCE(241); + if (lookahead == '-') ADVANCE(243); END_STATE(); case 16: - if (lookahead == '0') ADVANCE(1476); - if (lookahead == '1') ADVANCE(1477); - if (lookahead == '2') ADVANCE(1478); - if (lookahead == '3') ADVANCE(1479); - if (lookahead == '4') ADVANCE(1480); - if (lookahead == '5') ADVANCE(1481); - if (lookahead == '6') ADVANCE(1482); - if (lookahead == '7') ADVANCE(1483); + if (lookahead == '0') ADVANCE(1493); + if (lookahead == '1') ADVANCE(1494); + if (lookahead == '2') ADVANCE(1495); + if (lookahead == '3') ADVANCE(1496); + if (lookahead == '4') ADVANCE(1497); + if (lookahead == '5') ADVANCE(1498); + if (lookahead == '6') ADVANCE(1499); + if (lookahead == '7') ADVANCE(1500); END_STATE(); case 17: - if (lookahead == '0') ADVANCE(1553); - if (lookahead == '1') ADVANCE(1554); - if (lookahead == '2') ADVANCE(1555); - if (lookahead == '3') ADVANCE(1556); - if (lookahead == '4') ADVANCE(1557); - if (lookahead == '5') ADVANCE(1558); - if (lookahead == '6') ADVANCE(1559); - if (lookahead == '7') ADVANCE(1560); + if (lookahead == '0') ADVANCE(1570); + if (lookahead == '1') ADVANCE(1571); + if (lookahead == '2') ADVANCE(1572); + if (lookahead == '3') ADVANCE(1573); + if (lookahead == '4') ADVANCE(1574); + if (lookahead == '5') ADVANCE(1575); + if (lookahead == '6') ADVANCE(1576); + if (lookahead == '7') ADVANCE(1577); END_STATE(); case 18: - if (lookahead == '0') ADVANCE(1553); - if (lookahead == '1') ADVANCE(1554); - if (lookahead == '2') ADVANCE(1555); - if (lookahead == '3') ADVANCE(1556); - if (lookahead == '4') ADVANCE(1557); - if (lookahead == '5') ADVANCE(1558); - if (lookahead == '6') ADVANCE(1559); - if (lookahead == '7') ADVANCE(1560); + if (lookahead == '0') ADVANCE(1570); + if (lookahead == '1') ADVANCE(1571); + if (lookahead == '2') ADVANCE(1572); + if (lookahead == '3') ADVANCE(1573); + if (lookahead == '4') ADVANCE(1574); + if (lookahead == '5') ADVANCE(1575); + if (lookahead == '6') ADVANCE(1576); + if (lookahead == '7') ADVANCE(1577); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(886); + lookahead == 'c') ADVANCE(900); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(898); + lookahead == 'f') ADVANCE(912); END_STATE(); case 19: if (lookahead == '1') ADVANCE(20); @@ -5031,27 +5075,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '4') ADVANCE(23); END_STATE(); case 20: - if (lookahead == '1') ADVANCE(1464); - if (lookahead == '2') ADVANCE(1465); - if (lookahead == '3') ADVANCE(1466); + if (lookahead == '1') ADVANCE(1481); + if (lookahead == '2') ADVANCE(1482); + if (lookahead == '3') ADVANCE(1483); END_STATE(); case 21: - if (lookahead == '1') ADVANCE(1467); - if (lookahead == '2') ADVANCE(1468); - if (lookahead == '3') ADVANCE(1469); + if (lookahead == '1') ADVANCE(1484); + if (lookahead == '2') ADVANCE(1485); + if (lookahead == '3') ADVANCE(1486); END_STATE(); case 22: - if (lookahead == '1') ADVANCE(1470); - if (lookahead == '2') ADVANCE(1471); - if (lookahead == '3') ADVANCE(1472); + if (lookahead == '1') ADVANCE(1487); + if (lookahead == '2') ADVANCE(1488); + if (lookahead == '3') ADVANCE(1489); END_STATE(); case 23: - if (lookahead == '1') ADVANCE(1473); - if (lookahead == '2') ADVANCE(1474); - if (lookahead == '3') ADVANCE(1475); + if (lookahead == '1') ADVANCE(1490); + if (lookahead == '2') ADVANCE(1491); + if (lookahead == '3') ADVANCE(1492); END_STATE(); case 24: - if (lookahead == '1') ADVANCE(1439); + if (lookahead == '1') ADVANCE(1456); END_STATE(); case 25: if (lookahead == '1') ADVANCE(27); @@ -5060,19 +5104,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '1') ADVANCE(24); END_STATE(); case 27: - if (lookahead == '1') ADVANCE(989); + if (lookahead == '1') ADVANCE(1005); END_STATE(); case 28: if (lookahead == '2') ADVANCE(30); END_STATE(); case 29: - if (lookahead == '5') ADVANCE(1435); + if (lookahead == '5') ADVANCE(1452); END_STATE(); case 30: if (lookahead == '5') ADVANCE(31); END_STATE(); case 31: - if (lookahead == '6') ADVANCE(1436); + if (lookahead == '6') ADVANCE(1453); END_STATE(); case 32: if (lookahead == 'A') ADVANCE(39); @@ -5080,13 +5124,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 33: if (lookahead == 'A') ADVANCE(39); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(231); + lookahead == 'e') ADVANCE(233); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(808); + lookahead == 'y') ADVANCE(820); END_STATE(); case 34: if (lookahead == 'A') ADVANCE(44); - if (lookahead == 'a') ADVANCE(689); + if (lookahead == 'a') ADVANCE(698); END_STATE(); case 35: if (lookahead == 'A') ADVANCE(45); @@ -5095,13 +5139,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'C') ADVANCE(34); if (lookahead == 'c') ADVANCE(137); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(712); + lookahead == 'g') ADVANCE(721); END_STATE(); case 37: if (lookahead == 'C') ADVANCE(35); END_STATE(); case 38: - if (lookahead == 'E') ADVANCE(667); + if (lookahead == 'E') ADVANCE(676); if (lookahead == 'e') ADVANCE(90); END_STATE(); case 39: @@ -5109,23 +5153,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 40: if (lookahead == 'E') ADVANCE(55); - if (lookahead == 'e') ADVANCE(673); + if (lookahead == 'e') ADVANCE(682); END_STATE(); case 41: if (lookahead == 'E') ADVANCE(56); END_STATE(); case 42: - if (lookahead == 'E') ADVANCE(1071); + if (lookahead == 'E') ADVANCE(1087); if (lookahead == 'e') ADVANCE(57); END_STATE(); case 43: - if (lookahead == 'H') ADVANCE(1552); + if (lookahead == 'H') ADVANCE(1569); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1420); + lookahead == 'o') ADVANCE(1436); END_STATE(); case 44: if (lookahead == 'L') ADVANCE(18); - if (lookahead == 'l') ADVANCE(262); + if (lookahead == 'l') ADVANCE(264); END_STATE(); case 45: if (lookahead == 'L') ADVANCE(17); @@ -5134,22 +5178,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'M') ADVANCE(51); END_STATE(); case 47: - if (lookahead == 'N') ADVANCE(1550); + if (lookahead == 'N') ADVANCE(1567); END_STATE(); case 48: if (lookahead == 'O') ADVANCE(36); - if (lookahead == 'o') ADVANCE(255); + if (lookahead == 'o') ADVANCE(257); END_STATE(); case 49: - if (lookahead == 'O') ADVANCE(255); - if (lookahead == 'e') ADVANCE(1485); + if (lookahead == 'O') ADVANCE(257); + if (lookahead == 'e') ADVANCE(1502); if (lookahead == 'o') ADVANCE(118); END_STATE(); case 50: - if (lookahead == 'O') ADVANCE(1379); - if (lookahead == 'o') ADVANCE(1565); + if (lookahead == 'O') ADVANCE(1395); + if (lookahead == 'o') ADVANCE(1582); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(748); + lookahead == 'u') ADVANCE(758); END_STATE(); case 51: if (lookahead == 'O') ADVANCE(47); @@ -5158,76 +5202,76 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'O') ADVANCE(37); END_STATE(); case 53: - if (lookahead == 'O') ADVANCE(1013); + if (lookahead == 'O') ADVANCE(1029); if (lookahead == 'o') ADVANCE(85); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1110); + lookahead == 'a') ADVANCE(1126); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1011); + lookahead == 'e') ADVANCE(1027); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(259); + lookahead == 'k') ADVANCE(261); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(381); + lookahead == 'r') ADVANCE(388); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(229); + lookahead == 'u') ADVANCE(231); END_STATE(); case 54: - if (lookahead == 'O') ADVANCE(562); + if (lookahead == 'O') ADVANCE(570); if (lookahead == 'o') ADVANCE(96); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(748); + lookahead == 'u') ADVANCE(758); END_STATE(); case 55: - if (lookahead == 'R') ADVANCE(1573); - if (lookahead == 'r') ADVANCE(1573); + if (lookahead == 'R') ADVANCE(1590); + if (lookahead == 'r') ADVANCE(1590); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(392); + lookahead == 'k') ADVANCE(399); END_STATE(); case 56: - if (lookahead == 'R') ADVANCE(1551); + if (lookahead == 'R') ADVANCE(1568); END_STATE(); case 57: - if (lookahead == 'S') ADVANCE(1377); - if (lookahead == 's') ADVANCE(1564); + if (lookahead == 'S') ADVANCE(1393); + if (lookahead == 's') ADVANCE(1581); END_STATE(); case 58: if (lookahead == 'S') ADVANCE(41); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(232); + lookahead == 'n') ADVANCE(234); END_STATE(); case 59: if (lookahead == 'S') ADVANCE(40); - if (lookahead == 's') ADVANCE(380); + if (lookahead == 's') ADVANCE(387); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(232); + lookahead == 'n') ADVANCE(234); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(323); + lookahead == 'p') ADVANCE(327); END_STATE(); case 60: if (lookahead == 'T') ADVANCE(43); - if (lookahead == 't') ADVANCE(880); + if (lookahead == 't') ADVANCE(894); END_STATE(); case 61: if (lookahead == 'U') ADVANCE(60); - if (lookahead == 'u') ADVANCE(1177); + if (lookahead == 'u') ADVANCE(1193); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(250); + lookahead == 'c') ADVANCE(252); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(303); + lookahead == 'd') ADVANCE(307); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1321); + lookahead == 'l') ADVANCE(1337); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1341); + lookahead == 'n') ADVANCE(1357); if (lookahead == 'S' || - lookahead == 's') ADVANCE(662); + lookahead == 's') ADVANCE(671); END_STATE(); case 62: if (lookahead == 'U') ADVANCE(60); - if (lookahead == 'u') ADVANCE(1177); + if (lookahead == 'u') ADVANCE(1193); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(250); + lookahead == 'c') ADVANCE(252); if (lookahead == 'S' || - lookahead == 's') ADVANCE(662); + lookahead == 's') ADVANCE(671); END_STATE(); case 63: if (lookahead == 'a') ADVANCE(28); @@ -5244,7 +5288,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 67: if (lookahead == 'd') ADVANCE(29); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(257); + lookahead == 'a') ADVANCE(259); END_STATE(); case 68: if (lookahead == 'd') ADVANCE(69); @@ -5253,7 +5297,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(91); END_STATE(); case 70: - if (lookahead == 'e') ADVANCE(1427); + if (lookahead == 'e') ADVANCE(1444); END_STATE(); case 71: if (lookahead == 'e') ADVANCE(108); @@ -5267,43 +5311,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 74: if (lookahead == 'f') ADVANCE(19); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(250); + lookahead == 'c') ADVANCE(252); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(303); + lookahead == 'd') ADVANCE(307); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1321); + lookahead == 'l') ADVANCE(1337); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1341); + lookahead == 'n') ADVANCE(1357); if (lookahead == 'S' || - lookahead == 's') ADVANCE(662); + lookahead == 's') ADVANCE(671); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1177); + lookahead == 'u') ADVANCE(1193); END_STATE(); case 75: if (lookahead == 'f') ADVANCE(19); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(303); + lookahead == 'd') ADVANCE(307); END_STATE(); case 76: - if (lookahead == 'f') ADVANCE(1484); + if (lookahead == 'f') ADVANCE(1501); if (lookahead == 't') ADVANCE(82); if (lookahead == 'N' || lookahead == 'n') ADVANCE(134); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1014); + lookahead == 'r') ADVANCE(1030); if (lookahead == 'S' || - lookahead == 's') ADVANCE(253); + lookahead == 's') ADVANCE(255); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(606); + lookahead == 'x') ADVANCE(614); END_STATE(); case 77: - if (lookahead == 'f') ADVANCE(1484); + if (lookahead == 'f') ADVANCE(1501); if (lookahead == 'N' || lookahead == 'n') ADVANCE(134); if (lookahead == 'S' || - lookahead == 's') ADVANCE(253); + lookahead == 's') ADVANCE(255); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(606); + lookahead == 'x') ADVANCE(614); END_STATE(); case 78: if (lookahead == 'g') ADVANCE(83); @@ -5311,29 +5355,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 79: if (lookahead == 'h') ADVANCE(63); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(251); + lookahead == 'e') ADVANCE(253); if (lookahead == 'T' || - lookahead == 't') ADVANCE(319); + lookahead == 't') ADVANCE(323); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(233); + lookahead == 'u') ADVANCE(235); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1101); + lookahead == 'y') ADVANCE(1117); END_STATE(); case 80: if (lookahead == 'h') ADVANCE(105); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(987); + lookahead == 'c') ADVANCE(1003); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1281); + lookahead == 'r') ADVANCE(1297); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(809); + lookahead == 'u') ADVANCE(821); END_STATE(); case 81: if (lookahead == 'h') ADVANCE(105); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(987); + lookahead == 'c') ADVANCE(1003); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(809); + lookahead == 'u') ADVANCE(821); END_STATE(); case 82: if (lookahead == 'h') ADVANCE(72); @@ -5347,7 +5391,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 85: if (lookahead == 'i') ADVANCE(93); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1160); + lookahead == 'r') ADVANCE(1176); END_STATE(); case 86: if (lookahead == 'i') ADVANCE(64); @@ -5364,13 +5408,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 90: if (lookahead == 'l') ADVANCE(86); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(385); + lookahead == 'k') ADVANCE(392); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(920); + lookahead == 'm') ADVANCE(934); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1278); + lookahead == 'q') ADVANCE(1294); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(929); + lookahead == 'v') ADVANCE(943); END_STATE(); case 91: if (lookahead == 'l') ADVANCE(65); @@ -5390,13 +5434,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 96: if (lookahead == 'n') ADVANCE(70); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(938); + lookahead == 'h') ADVANCE(950); END_STATE(); case 97: if (lookahead == 'n') ADVANCE(113); END_STATE(); case 98: - if (lookahead == 'o') ADVANCE(1565); + if (lookahead == 'o') ADVANCE(1582); END_STATE(); case 99: if (lookahead == 'o') ADVANCE(116); @@ -5425,20 +5469,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 107: if (lookahead == 's') ADVANCE(16); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(806); + lookahead == 'a') ADVANCE(818); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1012); + lookahead == 'e') ADVANCE(1028); if (lookahead == 'H' || lookahead == 'h') ADVANCE(125); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(974); + lookahead == 'i') ADVANCE(989); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(388); + lookahead == 'l') ADVANCE(395); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(747); + lookahead == 'o') ADVANCE(757); END_STATE(); case 108: - if (lookahead == 's') ADVANCE(1564); + if (lookahead == 's') ADVANCE(1581); END_STATE(); case 109: if (lookahead == 't') ADVANCE(82); @@ -5447,13 +5491,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(12); END_STATE(); case 111: - if (lookahead == 't') ADVANCE(1567); + if (lookahead == 't') ADVANCE(1584); END_STATE(); case 112: - if (lookahead == 't') ADVANCE(1487); + if (lookahead == 't') ADVANCE(1504); END_STATE(); case 113: - if (lookahead == 't') ADVANCE(1566); + if (lookahead == 't') ADVANCE(1583); END_STATE(); case 114: if (lookahead == 't') ADVANCE(100); @@ -5472,829 +5516,829 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'C' || lookahead == 'c') ADVANCE(137); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(712); + lookahead == 'g') ADVANCE(721); END_STATE(); case 119: - if (lookahead == 'y') ADVANCE(1486); + if (lookahead == 'y') ADVANCE(1503); END_STATE(); case 120: - if (lookahead == 'y') ADVANCE(1488); + if (lookahead == 'y') ADVANCE(1505); END_STATE(); case 121: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(806); + lookahead == 'a') ADVANCE(818); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1012); + lookahead == 'e') ADVANCE(1028); if (lookahead == 'H' || lookahead == 'h') ADVANCE(125); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(974); + lookahead == 'i') ADVANCE(989); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(388); + lookahead == 'l') ADVANCE(395); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(747); + lookahead == 'o') ADVANCE(757); END_STATE(); case 122: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(257); + lookahead == 'a') ADVANCE(259); END_STATE(); case 123: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1110); + lookahead == 'a') ADVANCE(1126); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1011); + lookahead == 'e') ADVANCE(1027); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(259); + lookahead == 'k') ADVANCE(261); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1013); + lookahead == 'o') ADVANCE(1029); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(381); + lookahead == 'r') ADVANCE(388); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(229); + lookahead == 'u') ADVANCE(231); END_STATE(); case 124: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(709); + lookahead == 'a') ADVANCE(718); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(786); + lookahead == 'i') ADVANCE(798); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1001); + lookahead == 'o') ADVANCE(1017); END_STATE(); case 125: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(700); + lookahead == 'a') ADVANCE(709); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(245); + lookahead == 'e') ADVANCE(247); END_STATE(); case 126: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(274); + lookahead == 'a') ADVANCE(276); END_STATE(); case 127: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1180); + lookahead == 'a') ADVANCE(1196); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(807); + lookahead == 'i') ADVANCE(819); END_STATE(); case 128: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1356); + lookahead == 'a') ADVANCE(1372); END_STATE(); case 129: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1337); + lookahead == 'a') ADVANCE(1353); END_STATE(); case 130: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1282); + lookahead == 'a') ADVANCE(1298); END_STATE(); case 131: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1182); + lookahead == 'a') ADVANCE(1198); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(887); + lookahead == 'l') ADVANCE(901); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1112); + lookahead == 's') ADVANCE(1128); END_STATE(); case 132: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(777); + lookahead == 'a') ADVANCE(787); END_STATE(); case 133: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1336); + lookahead == 'a') ADVANCE(1352); END_STATE(); case 134: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(238); + lookahead == 'a') ADVANCE(240); END_STATE(); case 135: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(760); + lookahead == 'a') ADVANCE(770); END_STATE(); case 136: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1102); + lookahead == 'a') ADVANCE(1118); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1105); + lookahead == 'o') ADVANCE(1121); END_STATE(); case 137: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(689); + lookahead == 'a') ADVANCE(698); END_STATE(); case 138: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(507); + lookahead == 'a') ADVANCE(515); END_STATE(); case 139: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(324); + lookahead == 'a') ADVANCE(328); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(851); + lookahead == 'i') ADVANCE(865); END_STATE(); case 140: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1022); + lookahead == 'a') ADVANCE(1038); END_STATE(); case 141: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(984); + lookahead == 'a') ADVANCE(999); END_STATE(); case 142: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(690); + lookahead == 'a') ADVANCE(699); END_STATE(); case 143: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(980); + lookahead == 'a') ADVANCE(995); END_STATE(); case 144: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(701); + lookahead == 'a') ADVANCE(710); END_STATE(); case 145: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1283); + lookahead == 'a') ADVANCE(1299); END_STATE(); case 146: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1351); + lookahead == 'a') ADVANCE(1367); END_STATE(); case 147: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(745); + lookahead == 'a') ADVANCE(755); END_STATE(); case 148: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(263); + lookahead == 'a') ADVANCE(265); END_STATE(); case 149: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(771); + lookahead == 'a') ADVANCE(781); END_STATE(); case 150: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(738); + lookahead == 'a') ADVANCE(747); END_STATE(); case 151: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(282); + lookahead == 'a') ADVANCE(285); END_STATE(); case 152: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1016); + lookahead == 'a') ADVANCE(1032); END_STATE(); case 153: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(256); + lookahead == 'a') ADVANCE(258); END_STATE(); case 154: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1221); + lookahead == 'a') ADVANCE(1237); END_STATE(); case 155: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(695); + lookahead == 'a') ADVANCE(704); END_STATE(); case 156: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(697); + lookahead == 'a') ADVANCE(706); END_STATE(); case 157: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(744); + lookahead == 'a') ADVANCE(754); END_STATE(); case 158: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(702); + lookahead == 'a') ADVANCE(711); END_STATE(); case 159: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1185); + lookahead == 'a') ADVANCE(1201); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1030); + lookahead == 'e') ADVANCE(1047); END_STATE(); case 160: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(611); + lookahead == 'a') ADVANCE(619); END_STATE(); case 161: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1005); + lookahead == 'a') ADVANCE(1021); END_STATE(); case 162: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1020); + lookahead == 'a') ADVANCE(1036); END_STATE(); case 163: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1023); + lookahead == 'a') ADVANCE(1039); END_STATE(); case 164: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(698); + lookahead == 'a') ADVANCE(707); END_STATE(); case 165: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1238); + lookahead == 'a') ADVANCE(1254); END_STATE(); case 166: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1024); + lookahead == 'a') ADVANCE(1040); END_STATE(); case 167: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(719); + lookahead == 'a') ADVANCE(729); END_STATE(); case 168: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1118); + lookahead == 'a') ADVANCE(708); END_STATE(); case 169: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(699); + lookahead == 'a') ADVANCE(717); END_STATE(); case 170: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(708); + lookahead == 'a') ADVANCE(717); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1068); END_STATE(); case 171: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(708); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1052); + lookahead == 'a') ADVANCE(1042); END_STATE(); case 172: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1026); + lookahead == 'a') ADVANCE(1134); END_STATE(); case 173: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1078); + lookahead == 'a') ADVANCE(1074); END_STATE(); case 174: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1058); + lookahead == 'a') ADVANCE(1094); END_STATE(); case 175: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1113); + lookahead == 'a') ADVANCE(1129); END_STATE(); case 176: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1107); + lookahead == 'a') ADVANCE(1123); END_STATE(); case 177: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(711); + lookahead == 'a') ADVANCE(720); END_STATE(); case 178: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(752); + lookahead == 'a') ADVANCE(762); END_STATE(); case 179: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1299); + lookahead == 'a') ADVANCE(1315); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(724); + lookahead == 'c') ADVANCE(734); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(460); + lookahead == 'd') ADVANCE(468); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(358); + lookahead == 'k') ADVANCE(364); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(462); + lookahead == 'r') ADVANCE(470); if (lookahead == 'S' || - lookahead == 's') ADVANCE(424); + lookahead == 's') ADVANCE(431); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1019); + lookahead == 't') ADVANCE(1035); END_STATE(); case 180: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(707); + lookahead == 'a') ADVANCE(716); END_STATE(); case 181: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(529); + lookahead == 'a') ADVANCE(537); if (lookahead == 'X' || lookahead == 'x') ADVANCE(26); END_STATE(); case 182: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(768); + lookahead == 'a') ADVANCE(778); END_STATE(); case 183: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1201); + lookahead == 'a') ADVANCE(1216); END_STATE(); case 184: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(819); + lookahead == 'a') ADVANCE(831); END_STATE(); case 185: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(849); + lookahead == 'a') ADVANCE(863); END_STATE(); case 186: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(766); + lookahead == 'a') ADVANCE(776); END_STATE(); case 187: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(273); + lookahead == 'a') ADVANCE(1002); END_STATE(); case 188: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(716); + lookahead == 'a') ADVANCE(275); END_STATE(); case 189: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(769); + lookahead == 'a') ADVANCE(725); END_STATE(); case 190: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(821); + lookahead == 'a') ADVANCE(779); END_STATE(); case 191: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1244); + lookahead == 'a') ADVANCE(833); END_STATE(); case 192: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(594); + lookahead == 'a') ADVANCE(1260); END_STATE(); case 193: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1135); + lookahead == 'a') ADVANCE(602); END_STATE(); case 194: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(823); + lookahead == 'a') ADVANCE(1150); END_STATE(); case 195: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(614); + lookahead == 'a') ADVANCE(1144); END_STATE(); case 196: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1127); + lookahead == 'a') ADVANCE(835); END_STATE(); case 197: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(829); + lookahead == 'a') ADVANCE(622); END_STATE(); case 198: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1210); + lookahead == 'a') ADVANCE(841); END_STATE(); case 199: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(831); + lookahead == 'a') ADVANCE(1226); END_STATE(); case 200: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1215); + lookahead == 'a') ADVANCE(843); END_STATE(); case 201: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(729); + lookahead == 'a') ADVANCE(844); END_STATE(); case 202: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1147); + lookahead == 'a') ADVANCE(1231); END_STATE(); case 203: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(730); + lookahead == 'a') ADVANCE(740); END_STATE(); case 204: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(531); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(625); + lookahead == 'a') ADVANCE(1162); END_STATE(); case 205: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(733); + lookahead == 'a') ADVANCE(741); END_STATE(); case 206: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(532); + lookahead == 'a') ADVANCE(539); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(633); END_STATE(); case 207: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1151); + lookahead == 'a') ADVANCE(743); END_STATE(); case 208: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(286); + lookahead == 'a') ADVANCE(540); END_STATE(); case 209: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(737); + lookahead == 'a') ADVANCE(1167); END_STATE(); case 210: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1246); + lookahead == 'a') ADVANCE(289); END_STATE(); case 211: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1248); + lookahead == 'a') ADVANCE(748); END_STATE(); case 212: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1249); + lookahead == 'a') ADVANCE(1262); END_STATE(); case 213: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1250); + lookahead == 'a') ADVANCE(1264); END_STATE(); case 214: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1251); + lookahead == 'a') ADVANCE(1265); END_STATE(); case 215: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1252); + lookahead == 'a') ADVANCE(1266); END_STATE(); case 216: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1253); + lookahead == 'a') ADVANCE(1267); END_STATE(); case 217: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1254); + lookahead == 'a') ADVANCE(1268); END_STATE(); case 218: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1255); + lookahead == 'a') ADVANCE(1269); END_STATE(); case 219: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(739); + lookahead == 'a') ADVANCE(1270); END_STATE(); case 220: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(740); + lookahead == 'a') ADVANCE(1271); END_STATE(); case 221: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(742); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(418); + lookahead == 'a') ADVANCE(749); END_STATE(); case 222: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(743); + lookahead == 'a') ADVANCE(750); END_STATE(); case 223: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1300); + lookahead == 'a') ADVANCE(752); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(425); END_STATE(); case 224: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1301); + lookahead == 'a') ADVANCE(753); END_STATE(); case 225: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1302); + lookahead == 'a') ADVANCE(1316); END_STATE(); case 226: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1303); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(479); + lookahead == 'a') ADVANCE(1317); END_STATE(); case 227: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1304); + lookahead == 'a') ADVANCE(1318); END_STATE(); case 228: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1305); + lookahead == 'a') ADVANCE(1319); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(487); END_STATE(); case 229: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(671); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1320); END_STATE(); case 230: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(322); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(386); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(884); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1321); END_STATE(); case 231: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1279); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(145); + lookahead == 'b') ADVANCE(680); END_STATE(); case 232: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(891); + lookahead == 'b') ADVANCE(326); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(393); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(898); END_STATE(); case 233: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1138); + lookahead == 'b') ADVANCE(1295); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(145); END_STATE(); case 234: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(147); + lookahead == 'b') ADVANCE(905); END_STATE(); case 235: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(459); + lookahead == 'b') ADVANCE(1153); END_STATE(); case 236: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(632); + lookahead == 'b') ADVANCE(147); END_STATE(); case 237: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(153); + lookahead == 'b') ADVANCE(467); END_STATE(); case 238: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(732); + lookahead == 'b') ADVANCE(641); END_STATE(); case 239: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(925); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(499); + lookahead == 'b') ADVANCE(153); END_STATE(); case 240: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(937); + lookahead == 'b') ADVANCE(727); END_STATE(); case 241: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(946); + lookahead == 'b') ADVANCE(939); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(507); END_STATE(); case 242: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(250); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(662); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1177); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(952); END_STATE(); case 243: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(987); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1281); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(809); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(960); END_STATE(); case 244: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(987); + lookahead == 'c') ADVANCE(252); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(671); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(809); + lookahead == 'u') ADVANCE(1193); END_STATE(); case 245: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(666); + lookahead == 'c') ADVANCE(1003); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1297); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(821); END_STATE(); case 246: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(703); + lookahead == 'c') ADVANCE(1003); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(821); END_STATE(); case 247: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(703); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1162); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(881); + lookahead == 'c') ADVANCE(675); END_STATE(); case 248: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(539); + lookahead == 'c') ADVANCE(712); END_STATE(); case 249: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(543); + lookahead == 'c') ADVANCE(712); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1178); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(895); END_STATE(); case 250: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(391); + lookahead == 'c') ADVANCE(547); END_STATE(); case 251: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1284); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(335); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1310); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1108); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(397); + lookahead == 'c') ADVANCE(551); END_STATE(); case 252: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(682); + lookahead == 'c') ADVANCE(398); END_STATE(); case 253: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(141); + lookahead == 'c') ADVANCE(1300); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(339); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1326); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1124); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(404); END_STATE(); case 254: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(552); + lookahead == 'c') ADVANCE(691); END_STATE(); case 255: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(137); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(712); + lookahead == 'c') ADVANCE(141); END_STATE(); case 256: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(686); + lookahead == 'c') ADVANCE(560); END_STATE(); case 257: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1072); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(248); + lookahead == 'c') ADVANCE(137); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(721); END_STATE(); case 258: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(546); + lookahead == 'c') ADVANCE(695); END_STATE(); case 259: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1073); + lookahead == 'c') ADVANCE(1088); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(250); END_STATE(); case 260: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1243); + lookahead == 'c') ADVANCE(554); END_STATE(); case 261: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1165); + lookahead == 'c') ADVANCE(1089); END_STATE(); case 262: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(886); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(898); + lookahead == 'c') ADVANCE(1259); END_STATE(); case 263: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(595); + lookahead == 'c') ADVANCE(1181); END_STATE(); case 264: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(155); + lookahead == 'c') ADVANCE(900); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(912); END_STATE(); case 265: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(355); + lookahead == 'c') ADVANCE(603); END_STATE(); case 266: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(355); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(138); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(152); + lookahead == 'c') ADVANCE(155); END_STATE(); case 267: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(191); + lookahead == 'c') ADVANCE(360); END_STATE(); case 268: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(157); + lookahead == 'c') ADVANCE(360); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(138); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(152); END_STATE(); case 269: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(158); + lookahead == 'c') ADVANCE(192); END_STATE(); case 270: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(169); + lookahead == 'c') ADVANCE(157); END_STATE(); case 271: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(408); + lookahead == 'c') ADVANCE(158); END_STATE(); case 272: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(368); + lookahead == 'c') ADVANCE(168); END_STATE(); case 273: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(370); + lookahead == 'c') ADVANCE(415); END_STATE(); case 274: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(271); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1219); + lookahead == 'c') ADVANCE(374); END_STATE(); case 275: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(924); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(856); + lookahead == 'c') ADVANCE(376); END_STATE(); case 276: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(900); + lookahead == 'c') ADVANCE(273); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1235); END_STATE(); case 277: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(549); + lookahead == 'c') ADVANCE(187); END_STATE(); case 278: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(548); + lookahead == 'c') ADVANCE(938); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(870); END_STATE(); case 279: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(440); + lookahead == 'c') ADVANCE(914); END_STATE(); case 280: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(842); + lookahead == 'c') ADVANCE(557); END_STATE(); case 281: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(441); + lookahead == 'c') ADVANCE(556); END_STATE(); case 282: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1247); + lookahead == 'c') ADVANCE(448); END_STATE(); case 283: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1035); + lookahead == 'c') ADVANCE(854); END_STATE(); case 284: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(198); + lookahead == 'c') ADVANCE(449); END_STATE(); case 285: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(475); + lookahead == 'c') ADVANCE(1263); END_STATE(); case 286: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(285); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1271); + lookahead == 'c') ADVANCE(1051); END_STATE(); case 287: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(209); + lookahead == 'c') ADVANCE(199); END_STATE(); case 288: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(517); + lookahead == 'c') ADVANCE(482); END_STATE(); case 289: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(966); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1280); + lookahead == 'c') ADVANCE(288); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1131); + lookahead == 'u') ADVANCE(1287); END_STATE(); case 290: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(210); + lookahead == 'c') ADVANCE(211); END_STATE(); case 291: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(970); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(960); + lookahead == 'c') ADVANCE(525); END_STATE(); case 292: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(211); + lookahead == 'c') ADVANCE(980); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(1296); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1146); END_STATE(); case 293: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(972); + lookahead == 'c') ADVANCE(212); END_STATE(); case 294: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(212); + lookahead == 'c') ADVANCE(984); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(976); END_STATE(); case 295: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(973); + lookahead == 'c') ADVANCE(213); END_STATE(); case 296: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(213); + lookahead == 'c') ADVANCE(986); END_STATE(); case 297: if (lookahead == 'C' || @@ -6302,3297 +6346,3299 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 298: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(215); + lookahead == 'c') ADVANCE(987); END_STATE(); case 299: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(216); + lookahead == 'c') ADVANCE(215); END_STATE(); case 300: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(217); + lookahead == 'c') ADVANCE(988); END_STATE(); case 301: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(218); + lookahead == 'c') ADVANCE(216); END_STATE(); case 302: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(303); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(217); END_STATE(); case 303: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(668); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(218); END_STATE(); case 304: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1526); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(219); END_STATE(); case 305: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(181); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(220); END_STATE(); case 306: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1493); + lookahead == 'd') ADVANCE(307); END_STATE(); case 307: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1494); + lookahead == 'd') ADVANCE(677); END_STATE(); case 308: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1520); + lookahead == 'd') ADVANCE(1543); END_STATE(); case 309: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1529); + lookahead == 'd') ADVANCE(181); END_STATE(); case 310: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1530); + lookahead == 'd') ADVANCE(1510); END_STATE(); case 311: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1424); + lookahead == 'd') ADVANCE(1511); END_STATE(); case 312: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(221); + lookahead == 'd') ADVANCE(1537); END_STATE(); case 313: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(758); + lookahead == 'd') ADVANCE(1546); END_STATE(); case 314: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1441); + lookahead == 'd') ADVANCE(1547); END_STATE(); case 315: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1492); + lookahead == 'd') ADVANCE(1440); END_STATE(); case 316: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1510); + lookahead == 'd') ADVANCE(223); END_STATE(); case 317: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1527); + lookahead == 'd') ADVANCE(767); END_STATE(); case 318: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(139); + lookahead == 'd') ADVANCE(1458); END_STATE(); case 319: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(610); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(409); + lookahead == 'd') ADVANCE(1509); END_STATE(); case 320: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(394); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(847); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(247); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1000); + lookahead == 'd') ADVANCE(1527); END_STATE(); case 321: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(394); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(847); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(246); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1000); + lookahead == 'd') ADVANCE(1544); END_STATE(); case 322: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(587); + lookahead == 'd') ADVANCE(139); END_STATE(); case 323: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(183); + lookahead == 'd') ADVANCE(618); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(416); END_STATE(); case 324: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(341); + lookahead == 'd') ADVANCE(401); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(861); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(249); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1016); END_STATE(); case 325: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(280); + lookahead == 'd') ADVANCE(401); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(861); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(248); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1016); END_STATE(); case 326: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1041); + lookahead == 'd') ADVANCE(595); END_STATE(); case 327: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(838); + lookahead == 'd') ADVANCE(183); END_STATE(); case 328: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(923); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1370); + lookahead == 'd') ADVANCE(346); END_STATE(); case 329: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(940); + lookahead == 'd') ADVANCE(283); END_STATE(); case 330: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(356); + lookahead == 'd') ADVANCE(1057); END_STATE(); case 331: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(360); + lookahead == 'd') ADVANCE(851); END_STATE(); case 332: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(436); + lookahead == 'd') ADVANCE(937); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1386); END_STATE(); case 333: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(438); + lookahead == 'd') ADVANCE(955); END_STATE(); case 334: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(988); + lookahead == 'd') ADVANCE(362); END_STATE(); case 335: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(413); + lookahead == 'd') ADVANCE(366); END_STATE(); case 336: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(504); + lookahead == 'd') ADVANCE(444); END_STATE(); case 337: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(840); + lookahead == 'd') ADVANCE(446); END_STATE(); case 338: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(599); + lookahead == 'd') ADVANCE(1004); END_STATE(); case 339: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(223); + lookahead == 'd') ADVANCE(420); END_STATE(); case 340: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(990); + lookahead == 'd') ADVANCE(512); END_STATE(); case 341: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1063); + lookahead == 'd') ADVANCE(853); END_STATE(); case 342: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(208); + lookahead == 'd') ADVANCE(607); END_STATE(); case 343: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(478); + lookahead == 'd') ADVANCE(225); END_STATE(); case 344: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(480); + lookahead == 'd') ADVANCE(1006); END_STATE(); case 345: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(570); + lookahead == 'd') ADVANCE(739); END_STATE(); case 346: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(483); + lookahead == 'd') ADVANCE(1078); END_STATE(); case 347: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(222); + lookahead == 'd') ADVANCE(210); END_STATE(); case 348: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(224); + lookahead == 'd') ADVANCE(486); END_STATE(); case 349: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(231); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(808); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(488); END_STATE(); case 350: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(667); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(577); END_STATE(); case 351: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(251); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(319); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(233); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1101); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(490); END_STATE(); case 352: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(251); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(319); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1101); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(224); END_STATE(); case 353: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1378); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(226); END_STATE(); case 354: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1381); + lookahead == 'e') ADVANCE(233); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(820); END_STATE(); case 355: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1532); + lookahead == 'e') ADVANCE(676); END_STATE(); case 356: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1462); + lookahead == 'e') ADVANCE(253); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(323); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(235); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1117); END_STATE(); case 357: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1500); + lookahead == 'e') ADVANCE(253); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(323); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1117); END_STATE(); case 358: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1339); + lookahead == 'e') ADVANCE(1394); END_STATE(); case 359: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1457); + lookahead == 'e') ADVANCE(1397); END_STATE(); case 360: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1397); + lookahead == 'e') ADVANCE(1549); END_STATE(); case 361: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1562); + lookahead == 'e') ADVANCE(432); END_STATE(); case 362: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1505); + lookahead == 'e') ADVANCE(1479); END_STATE(); case 363: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1338); + lookahead == 'e') ADVANCE(1517); END_STATE(); case 364: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(275); + lookahead == 'e') ADVANCE(1355); END_STATE(); case 365: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1539); + lookahead == 'e') ADVANCE(1474); END_STATE(); case 366: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(511); + lookahead == 'e') ADVANCE(1413); END_STATE(); case 367: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1561); + lookahead == 'e') ADVANCE(1579); END_STATE(); case 368: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1568); + lookahead == 'e') ADVANCE(1522); END_STATE(); case 369: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1460); + lookahead == 'e') ADVANCE(1354); END_STATE(); case 370: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1399); + lookahead == 'e') ADVANCE(278); END_STATE(); case 371: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(226); + lookahead == 'e') ADVANCE(1556); END_STATE(); case 372: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1408); + lookahead == 'e') ADVANCE(519); END_STATE(); case 373: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1533); + lookahead == 'e') ADVANCE(1578); END_STATE(); case 374: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1447); + lookahead == 'e') ADVANCE(1585); END_STATE(); case 375: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1402); + lookahead == 'e') ADVANCE(1477); END_STATE(); case 376: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1433); + lookahead == 'e') ADVANCE(1415); END_STATE(); case 377: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1443); + lookahead == 'e') ADVANCE(228); END_STATE(); case 378: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1574); + lookahead == 'e') ADVANCE(1424); END_STATE(); case 379: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1404); + lookahead == 'e') ADVANCE(1550); END_STATE(); case 380: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(673); + lookahead == 'e') ADVANCE(1464); END_STATE(); case 381: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(501); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1187); + lookahead == 'e') ADVANCE(1418); END_STATE(); case 382: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1071); + lookahead == 'e') ADVANCE(1450); END_STATE(); case 383: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(674); + lookahead == 'e') ADVANCE(1460); END_STATE(); case 384: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1320); + lookahead == 'e') ADVANCE(1441); END_STATE(); case 385: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1352); + lookahead == 'e') ADVANCE(1591); END_STATE(); case 386: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(981); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(144); + lookahead == 'e') ADVANCE(1420); END_STATE(); case 387: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1308); + lookahead == 'e') ADVANCE(682); END_STATE(); case 388: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(140); + lookahead == 'e') ADVANCE(509); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1203); END_STATE(); case 389: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1359); + lookahead == 'e') ADVANCE(1087); END_STATE(); case 390: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1002); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1106); + lookahead == 'e') ADVANCE(683); END_STATE(); case 391: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(979); + lookahead == 'e') ADVANCE(1336); END_STATE(); case 392: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1353); + lookahead == 'e') ADVANCE(1368); END_STATE(); case 393: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(345); + lookahead == 'e') ADVANCE(996); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(144); END_STATE(); case 394: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(846); + lookahead == 'e') ADVANCE(1324); END_STATE(); case 395: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(533); + lookahead == 'e') ADVANCE(140); END_STATE(); case 396: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1163); + lookahead == 'e') ADVANCE(1375); END_STATE(); case 397: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(800); + lookahead == 'e') ADVANCE(1018); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1122); END_STATE(); case 398: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(746); + lookahead == 'e') ADVANCE(994); END_STATE(); case 399: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(254); + lookahead == 'e') ADVANCE(1369); END_STATE(); case 400: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1004); + lookahead == 'e') ADVANCE(350); END_STATE(); case 401: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(691); + lookahead == 'e') ADVANCE(860); END_STATE(); case 402: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(500); + lookahead == 'e') ADVANCE(541); END_STATE(); case 403: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1040); + lookahead == 'e') ADVANCE(1179); END_STATE(); case 404: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(767); + lookahead == 'e') ADVANCE(812); END_STATE(); case 405: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(505); + lookahead == 'e') ADVANCE(756); END_STATE(); case 406: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(326); + lookahead == 'e') ADVANCE(256); END_STATE(); case 407: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1048); + lookahead == 'e') ADVANCE(1020); END_STATE(); case 408: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(996); + lookahead == 'e') ADVANCE(700); END_STATE(); case 409: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(132); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(260); + lookahead == 'e') ADVANCE(508); END_STATE(); case 410: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1286); + lookahead == 'e') ADVANCE(1056); END_STATE(); case 411: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1367); + lookahead == 'e') ADVANCE(777); END_STATE(); case 412: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1039); + lookahead == 'e') ADVANCE(513); END_STATE(); case 413: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(805); + lookahead == 'e') ADVANCE(330); END_STATE(); case 414: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1345); + lookahead == 'e') ADVANCE(1064); END_STATE(); case 415: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(283); + lookahead == 'e') ADVANCE(1012); END_STATE(); case 416: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(693); + lookahead == 'e') ADVANCE(132); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(262); END_STATE(); case 417: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(252); + lookahead == 'e') ADVANCE(1302); END_STATE(); case 418: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1363); + lookahead == 'e') ADVANCE(1383); END_STATE(); case 419: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1115); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1033); + lookahead == 'e') ADVANCE(1055); END_STATE(); case 420: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1350); + lookahead == 'e') ADVANCE(817); END_STATE(); case 421: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1043); + lookahead == 'e') ADVANCE(1361); END_STATE(); case 422: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1070); + lookahead == 'e') ADVANCE(286); END_STATE(); case 423: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(312); + lookahead == 'e') ADVANCE(702); END_STATE(); case 424: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1050); + lookahead == 'e') ADVANCE(254); END_STATE(); case 425: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(930); + lookahead == 'e') ADVANCE(1379); END_STATE(); case 426: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1046); + lookahead == 'e') ADVANCE(1131); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1049); END_STATE(); case 427: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(895); + lookahead == 'e') ADVANCE(1366); END_STATE(); case 428: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1145); + lookahead == 'e') ADVANCE(1059); END_STATE(); case 429: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(314); + lookahead == 'e') ADVANCE(1086); END_STATE(); case 430: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(792); + lookahead == 'e') ADVANCE(316); END_STATE(); case 431: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(325); + lookahead == 'e') ADVANCE(1066); END_STATE(); case 432: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1114); + lookahead == 'e') ADVANCE(1164); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1127); END_STATE(); case 433: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1069); + lookahead == 'e') ADVANCE(944); END_STATE(); case 434: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(485); + lookahead == 'e') ADVANCE(1062); END_STATE(); case 435: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1006); + lookahead == 'e') ADVANCE(909); END_STATE(); case 436: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1007); + lookahead == 'e') ADVANCE(318); END_STATE(); case 437: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1015); + lookahead == 'e') ADVANCE(804); END_STATE(); case 438: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1008); + lookahead == 'e') ADVANCE(1160); END_STATE(); case 439: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1028); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1106); + lookahead == 'e') ADVANCE(329); END_STATE(); case 440: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1146); + lookahead == 'e') ADVANCE(1085); END_STATE(); case 441: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1093); + lookahead == 'e') ADVANCE(1022); END_STATE(); case 442: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1094); + lookahead == 'e') ADVANCE(1130); END_STATE(); case 443: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1099); + lookahead == 'e') ADVANCE(492); END_STATE(); case 444: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1323); + lookahead == 'e') ADVANCE(1023); END_STATE(); case 445: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1117); + lookahead == 'e') ADVANCE(1031); END_STATE(); case 446: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1311); + lookahead == 'e') ADVANCE(1024); END_STATE(); case 447: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(342); + lookahead == 'e') ADVANCE(1044); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1122); END_STATE(); case 448: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(844); + lookahead == 'e') ADVANCE(1161); END_STATE(); case 449: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(773); + lookahead == 'e') ADVANCE(1109); END_STATE(); case 450: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(512); + lookahead == 'e') ADVANCE(1110); END_STATE(); case 451: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1360); + lookahead == 'e') ADVANCE(1115); END_STATE(); case 452: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1354); + lookahead == 'e') ADVANCE(1339); END_STATE(); case 453: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1066); + lookahead == 'e') ADVANCE(1133); END_STATE(); case 454: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(261); + lookahead == 'e') ADVANCE(1327); END_STATE(); case 455: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1369); + lookahead == 'e') ADVANCE(347); END_STATE(); case 456: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1152); + lookahead == 'e') ADVANCE(858); END_STATE(); case 457: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(347); + lookahead == 'e') ADVANCE(783); END_STATE(); case 458: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1358); + lookahead == 'e') ADVANCE(520); END_STATE(); case 459: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1021); + lookahead == 'e') ADVANCE(1376); END_STATE(); case 460: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(718); + lookahead == 'e') ADVANCE(1370); END_STATE(); case 461: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1031); + lookahead == 'e') ADVANCE(1082); END_STATE(); case 462: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(859); + lookahead == 'e') ADVANCE(263); END_STATE(); case 463: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(832); + lookahead == 'e') ADVANCE(1385); END_STATE(); case 464: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1325); + lookahead == 'e') ADVANCE(1168); END_STATE(); case 465: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1120); + lookahead == 'e') ADVANCE(352); END_STATE(); case 466: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1361); + lookahead == 'e') ADVANCE(1374); END_STATE(); case 467: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(834); + lookahead == 'e') ADVANCE(1037); END_STATE(); case 468: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1125); + lookahead == 'e') ADVANCE(728); END_STATE(); case 469: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1362); + lookahead == 'e') ADVANCE(1046); END_STATE(); case 470: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(835); + lookahead == 'e') ADVANCE(873); END_STATE(); case 471: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1364); + lookahead == 'e') ADVANCE(845); END_STATE(); case 472: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(679); + lookahead == 'e') ADVANCE(1341); END_STATE(); case 473: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1061); + lookahead == 'e') ADVANCE(1140); END_STATE(); case 474: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(852); + lookahead == 'e') ADVANCE(1377); END_STATE(); case 475: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(997); + lookahead == 'e') ADVANCE(846); END_STATE(); case 476: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(933); + lookahead == 'e') ADVANCE(1378); END_STATE(); case 477: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(854); + lookahead == 'e') ADVANCE(848); END_STATE(); case 478: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(855); + lookahead == 'e') ADVANCE(1380); END_STATE(); case 479: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1318); + lookahead == 'e') ADVANCE(688); END_STATE(); case 480: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(860); + lookahead == 'e') ADVANCE(1077); END_STATE(); case 481: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(343); + lookahead == 'e') ADVANCE(866); END_STATE(); case 482: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(565); + lookahead == 'e') ADVANCE(1013); END_STATE(); case 483: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(862); + lookahead == 'e') ADVANCE(948); END_STATE(); case 484: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(291); + lookahead == 'e') ADVANCE(868); END_STATE(); case 485: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(999); + lookahead == 'e') ADVANCE(572); END_STATE(); case 486: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(220); + lookahead == 'e') ADVANCE(869); END_STATE(); case 487: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(869); + lookahead == 'e') ADVANCE(1334); END_STATE(); case 488: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(870); + lookahead == 'e') ADVANCE(874); END_STATE(); case 489: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(871); + lookahead == 'e') ADVANCE(348); END_STATE(); case 490: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(872); + lookahead == 'e') ADVANCE(876); END_STATE(); case 491: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(873); + lookahead == 'e') ADVANCE(294); END_STATE(); case 492: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(874); + lookahead == 'e') ADVANCE(1015); END_STATE(); case 493: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(875); + lookahead == 'e') ADVANCE(222); END_STATE(); case 494: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(876); + lookahead == 'e') ADVANCE(300); END_STATE(); case 495: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(227); + lookahead == 'e') ADVANCE(883); END_STATE(); case 496: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(348); + lookahead == 'e') ADVANCE(884); END_STATE(); case 497: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1547); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(885); END_STATE(); case 498: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(497); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(886); END_STATE(); case 499: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1368); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(887); END_STATE(); case 500: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(334); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(888); END_STATE(); case 501: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(407); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(889); END_STATE(); case 502: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(148); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(890); END_STATE(); case 503: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(187); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(229); END_STATE(); case 504: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(160); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(353); END_STATE(); case 505: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(145); + lookahead == 'f') ADVANCE(1564); END_STATE(); case 506: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(985); + lookahead == 'f') ADVANCE(505); END_STATE(); case 507: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1206); + lookahead == 'f') ADVANCE(1384); END_STATE(); case 508: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(916); + lookahead == 'f') ADVANCE(338); END_STATE(); case 509: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(918); + lookahead == 'f') ADVANCE(414); END_STATE(); case 510: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(618); + lookahead == 'f') ADVANCE(148); END_STATE(); case 511: if (lookahead == 'F' || lookahead == 'f') ADVANCE(188); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(935); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(129); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(473); END_STATE(); case 512: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(628); + lookahead == 'f') ADVANCE(160); END_STATE(); case 513: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(189); + lookahead == 'f') ADVANCE(145); END_STATE(); case 514: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(634); + lookahead == 'f') ADVANCE(1000); END_STATE(); case 515: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(637); + lookahead == 'f') ADVANCE(1222); END_STATE(); case 516: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(958); + lookahead == 'f') ADVANCE(930); END_STATE(); case 517: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(962); + lookahead == 'f') ADVANCE(932); END_STATE(); case 518: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(964); + lookahead == 'f') ADVANCE(627); END_STATE(); case 519: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1501); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(189); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(946); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(129); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(480); END_STATE(); case 520: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1571); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(637); END_STATE(); case 521: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1546); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(190); END_STATE(); case 522: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(502); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(643); END_STATE(); case 523: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(412); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(646); END_STATE(); case 524: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(791); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(975); END_STATE(); case 525: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1090); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(977); END_STATE(); case 526: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(426); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(978); END_STATE(); case 527: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(374); + lookahead == 'g') ADVANCE(1518); END_STATE(); case 528: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(824); + lookahead == 'g') ADVANCE(1588); END_STATE(); case 529: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(463); + lookahead == 'g') ADVANCE(1563); END_STATE(); case 530: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(947); + lookahead == 'g') ADVANCE(510); END_STATE(); case 531: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(467); + lookahead == 'g') ADVANCE(419); END_STATE(); case 532: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(470); + lookahead == 'g') ADVANCE(803); END_STATE(); case 533: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(200); + lookahead == 'g') ADVANCE(1106); END_STATE(); case 534: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(951); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(173); + lookahead == 'g') ADVANCE(434); END_STATE(); case 535: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(952); + lookahead == 'g') ADVANCE(380); END_STATE(); case 536: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(953); + lookahead == 'g') ADVANCE(836); END_STATE(); case 537: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(955); + lookahead == 'g') ADVANCE(471); END_STATE(); case 538: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(956); + lookahead == 'g') ADVANCE(961); END_STATE(); case 539: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1391); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(475); END_STATE(); case 540: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1422); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(477); END_STATE(); case 541: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1434); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(202); END_STATE(); case 542: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(670); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(966); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(174); END_STATE(); case 543: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(753); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(968); END_STATE(); case 544: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(756); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(970); END_STATE(); case 545: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(400); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(971); END_STATE(); case 546: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(192); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(972); END_STATE(); case 547: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(175); + lookahead == 'h') ADVANCE(1407); END_STATE(); case 548: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(185); + lookahead == 'h') ADVANCE(1438); END_STATE(); case 549: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(417); + lookahead == 'h') ADVANCE(1451); END_STATE(); case 550: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(714); + lookahead == 'h') ADVANCE(679); END_STATE(); case 551: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(757); + lookahead == 'h') ADVANCE(763); END_STATE(); case 552: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(161); + lookahead == 'h') ADVANCE(766); END_STATE(); case 553: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(761); + lookahead == 'h') ADVANCE(407); END_STATE(); case 554: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(903); + lookahead == 'h') ADVANCE(193); END_STATE(); case 555: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(762); + lookahead == 'h') ADVANCE(175); END_STATE(); case 556: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(904); + lookahead == 'h') ADVANCE(185); END_STATE(); case 557: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(683); + lookahead == 'h') ADVANCE(424); END_STATE(); case 558: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(763); + lookahead == 'h') ADVANCE(723); END_STATE(); case 559: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(906); + lookahead == 'h') ADVANCE(768); END_STATE(); case 560: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(764); + lookahead == 'h') ADVANCE(161); END_STATE(); case 561: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(926); + lookahead == 'h') ADVANCE(771); END_STATE(); case 562: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(938); + lookahead == 'h') ADVANCE(917); END_STATE(); case 563: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(941); + lookahead == 'h') ADVANCE(772); END_STATE(); case 564: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(950); + lookahead == 'h') ADVANCE(919); END_STATE(); case 565: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(959); + lookahead == 'h') ADVANCE(692); END_STATE(); case 566: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(477); + lookahead == 'h') ADVANCE(773); END_STATE(); case 567: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(961); + lookahead == 'h') ADVANCE(921); END_STATE(); case 568: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(963); + lookahead == 'h') ADVANCE(775); END_STATE(); case 569: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(967); + lookahead == 'h') ADVANCE(940); END_STATE(); case 570: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(968); + lookahead == 'h') ADVANCE(950); END_STATE(); case 571: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(487); + lookahead == 'h') ADVANCE(953); END_STATE(); case 572: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(488); + lookahead == 'h') ADVANCE(963); END_STATE(); case 573: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(489); + lookahead == 'h') ADVANCE(965); END_STATE(); case 574: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(490); + lookahead == 'h') ADVANCE(967); END_STATE(); case 575: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(491); + lookahead == 'h') ADVANCE(969); END_STATE(); case 576: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(492); + lookahead == 'h') ADVANCE(484); END_STATE(); case 577: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(493); + lookahead == 'h') ADVANCE(981); END_STATE(); case 578: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(494); + lookahead == 'h') ADVANCE(982); END_STATE(); case 579: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(179); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(495); END_STATE(); case 580: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(528); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(496); END_STATE(); case 581: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(499); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(497); END_STATE(); case 582: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(786); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1009); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(498); END_STATE(); case 583: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(510); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(499); END_STATE(); case 584: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(524); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(500); END_STATE(); case 585: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(288); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(501); END_STATE(); case 586: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(396); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(502); END_STATE(); case 587: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(850); + lookahead == 'i') ADVANCE(179); END_STATE(); case 588: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1164); + lookahead == 'i') ADVANCE(536); END_STATE(); case 589: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(976); + lookahead == 'i') ADVANCE(507); END_STATE(); case 590: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1183); + lookahead == 'i') ADVANCE(798); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1025); END_STATE(); case 591: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1167); + lookahead == 'i') ADVANCE(518); END_STATE(); case 592: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(810); + lookahead == 'i') ADVANCE(532); END_STATE(); case 593: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(928); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(612); + lookahead == 'i') ADVANCE(291); END_STATE(); case 594: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(788); + lookahead == 'i') ADVANCE(403); END_STATE(); case 595: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(727); + lookahead == 'i') ADVANCE(864); END_STATE(); case 596: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1168); + lookahead == 'i') ADVANCE(1180); END_STATE(); case 597: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(704); + lookahead == 'i') ADVANCE(991); END_STATE(); case 598: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1188); + lookahead == 'i') ADVANCE(1199); END_STATE(); case 599: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(815); + lookahead == 'i') ADVANCE(1183); END_STATE(); case 600: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(813); + lookahead == 'i') ADVANCE(822); END_STATE(); case 601: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1189); + lookahead == 'i') ADVANCE(942); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(620); END_STATE(); case 602: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(816); + lookahead == 'i') ADVANCE(800); END_STATE(); case 603: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1192); + lookahead == 'i') ADVANCE(737); END_STATE(); case 604: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1194); + lookahead == 'i') ADVANCE(1184); END_STATE(); case 605: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(167); + lookahead == 'i') ADVANCE(713); END_STATE(); case 606: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1220); + lookahead == 'i') ADVANCE(1204); END_STATE(); case 607: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1371); + lookahead == 'i') ADVANCE(827); END_STATE(); case 608: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(428); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(204); + lookahead == 'i') ADVANCE(825); END_STATE(); case 609: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(264); + lookahead == 'i') ADVANCE(1205); END_STATE(); case 610: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(820); + lookahead == 'i') ADVANCE(828); END_STATE(); case 611: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(726); + lookahead == 'i') ADVANCE(1208); END_STATE(); case 612: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(765); + lookahead == 'i') ADVANCE(1210); END_STATE(); case 613: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(828); + lookahead == 'i') ADVANCE(167); END_STATE(); case 614: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(839); + lookahead == 'i') ADVANCE(1236); END_STATE(); case 615: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1223); + lookahead == 'i') ADVANCE(1387); END_STATE(); case 616: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(272); + lookahead == 'i') ADVANCE(438); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(206); END_STATE(); case 617: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1313); + lookahead == 'i') ADVANCE(266); END_STATE(); case 618: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(284); + lookahead == 'i') ADVANCE(832); END_STATE(); case 619: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(899); + lookahead == 'i') ADVANCE(736); END_STATE(); case 620: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1126); + lookahead == 'i') ADVANCE(774); END_STATE(); case 621: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1229); + lookahead == 'i') ADVANCE(840); END_STATE(); case 622: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1314); + lookahead == 'i') ADVANCE(852); END_STATE(); case 623: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(332); + lookahead == 'i') ADVANCE(1239); END_STATE(); case 624: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(901); + lookahead == 'i') ADVANCE(1141); END_STATE(); case 625: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(720); + lookahead == 'i') ADVANCE(274); END_STATE(); case 626: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1231); + lookahead == 'i') ADVANCE(1329); END_STATE(); case 627: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(333); + lookahead == 'i') ADVANCE(287); END_STATE(); case 628: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(721); + lookahead == 'i') ADVANCE(913); END_STATE(); case 629: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1232); + lookahead == 'i') ADVANCE(1245); END_STATE(); case 630: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(281); + lookahead == 'i') ADVANCE(1330); END_STATE(); case 631: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1316); + lookahead == 'i') ADVANCE(336); END_STATE(); case 632: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(826); + lookahead == 'i') ADVANCE(915); END_STATE(); case 633: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(905); + lookahead == 'i') ADVANCE(730); END_STATE(); case 634: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(722); + lookahead == 'i') ADVANCE(857); END_STATE(); case 635: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1234); + lookahead == 'i') ADVANCE(1247); END_STATE(); case 636: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1317); + lookahead == 'i') ADVANCE(337); END_STATE(); case 637: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(723); + lookahead == 'i') ADVANCE(731); END_STATE(); case 638: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(908); + lookahead == 'i') ADVANCE(1248); END_STATE(); case 639: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(910); + lookahead == 'i') ADVANCE(284); END_STATE(); case 640: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(911); + lookahead == 'i') ADVANCE(1332); END_STATE(); case 641: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(934); + lookahead == 'i') ADVANCE(838); END_STATE(); case 642: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(912); + lookahead == 'i') ADVANCE(918); END_STATE(); case 643: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(914); + lookahead == 'i') ADVANCE(732); END_STATE(); case 644: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(915); + lookahead == 'i') ADVANCE(1250); END_STATE(); case 645: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(917); + lookahead == 'i') ADVANCE(1333); END_STATE(); case 646: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(770); + lookahead == 'i') ADVANCE(733); END_STATE(); case 647: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(344); + lookahead == 'i') ADVANCE(922); END_STATE(); case 648: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1240); + lookahead == 'i') ADVANCE(924); END_STATE(); case 649: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(948); + lookahead == 'i') ADVANCE(925); END_STATE(); case 650: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(776); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1298); + lookahead == 'i') ADVANCE(949); END_STATE(); case 651: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(474); + lookahead == 'i') ADVANCE(926); END_STATE(); case 652: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(290); + lookahead == 'i') ADVANCE(928); END_STATE(); case 653: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(292); + lookahead == 'i') ADVANCE(929); END_STATE(); case 654: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(294); + lookahead == 'i') ADVANCE(931); END_STATE(); case 655: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(296); + lookahead == 'i') ADVANCE(780); END_STATE(); case 656: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(297); + lookahead == 'i') ADVANCE(349); END_STATE(); case 657: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(298); + lookahead == 'i') ADVANCE(1256); END_STATE(); case 658: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(299); + lookahead == 'i') ADVANCE(962); END_STATE(); case 659: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(300); + lookahead == 'i') ADVANCE(786); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1314); END_STATE(); case 660: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(301); + lookahead == 'i') ADVANCE(481); END_STATE(); case 661: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(346); + lookahead == 'i') ADVANCE(293); END_STATE(); case 662: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1418); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(295); END_STATE(); case 663: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1421); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(297); END_STATE(); case 664: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1544); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(299); END_STATE(); case 665: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1545); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(301); END_STATE(); case 666: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(554); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(302); END_STATE(); case 667: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(385); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(920); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1278); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(929); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(303); END_STATE(); case 668: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(458); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(445); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(304); END_STATE(); case 669: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(138); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(152); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(305); END_STATE(); case 670: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(865); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(351); END_STATE(); case 671: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(389); + lookahead == 'k') ADVANCE(1434); END_STATE(); case 672: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(434); + lookahead == 'k') ADVANCE(1437); END_STATE(); case 673: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(392); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1573); + lookahead == 'k') ADVANCE(1561); END_STATE(); case 674: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(392); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1572); + lookahead == 'k') ADVANCE(1562); END_STATE(); case 675: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(393); + lookahead == 'k') ADVANCE(562); END_STATE(); case 676: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(455); + lookahead == 'k') ADVANCE(392); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(934); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1294); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(943); END_STATE(); case 677: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(411); + lookahead == 'k') ADVANCE(466); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(453); END_STATE(); case 678: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(414); + lookahead == 'k') ADVANCE(138); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(152); END_STATE(); case 679: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(420); + lookahead == 'k') ADVANCE(879); END_STATE(); case 680: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(845); + lookahead == 'k') ADVANCE(396); END_STATE(); case 681: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(452); + lookahead == 'k') ADVANCE(443); END_STATE(); case 682: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(602); + lookahead == 'k') ADVANCE(399); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1590); END_STATE(); case 683: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(466); + lookahead == 'k') ADVANCE(399); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1589); END_STATE(); case 684: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(469); + lookahead == 'k') ADVANCE(400); END_STATE(); case 685: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(471); + lookahead == 'k') ADVANCE(463); END_STATE(); case 686: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(735); + lookahead == 'k') ADVANCE(418); END_STATE(); case 687: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(867); + lookahead == 'k') ADVANCE(421); END_STATE(); case 688: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1321); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(427); END_STATE(); case 689: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(262); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(859); END_STATE(); case 690: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1497); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(460); END_STATE(); case 691: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1563); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(610); END_STATE(); case 692: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(754); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(474); END_STATE(); case 693: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1495); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(476); END_STATE(); case 694: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1515); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(478); END_STATE(); case 695: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(328); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(745); END_STATE(); case 696: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1543); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(881); END_STATE(); case 697: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(534); + lookahead == 'l') ADVANCE(1337); END_STATE(); case 698: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1538); + lookahead == 'l') ADVANCE(264); END_STATE(); case 699: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1401); + lookahead == 'l') ADVANCE(1514); END_STATE(); case 700: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(717); + lookahead == 'l') ADVANCE(1580); END_STATE(); case 701: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(530); + lookahead == 'l') ADVANCE(764); END_STATE(); case 702: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(236); + lookahead == 'l') ADVANCE(1512); END_STATE(); case 703: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1291); + lookahead == 'l') ADVANCE(1532); END_STATE(); case 704: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1344); + lookahead == 'l') ADVANCE(332); END_STATE(); case 705: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(646); + lookahead == 'l') ADVANCE(1560); END_STATE(); case 706: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(885); + lookahead == 'l') ADVANCE(542); END_STATE(); case 707: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(617); + lookahead == 'l') ADVANCE(1555); END_STATE(); case 708: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1122); + lookahead == 'l') ADVANCE(1417); END_STATE(); case 709: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1122); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(142); + lookahead == 'l') ADVANCE(726); END_STATE(); case 710: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1166); + lookahead == 'l') ADVANCE(538); END_STATE(); case 711: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(741); + lookahead == 'l') ADVANCE(238); END_STATE(); case 712: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(446); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(403); + lookahead == 'l') ADVANCE(1308); END_STATE(); case 713: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1347); + lookahead == 'l') ADVANCE(1360); END_STATE(); case 714: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(932); + lookahead == 'l') ADVANCE(655); END_STATE(); case 715: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(696); + lookahead == 'l') ADVANCE(899); END_STATE(); case 716: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(725); + lookahead == 'l') ADVANCE(626); END_STATE(); case 717: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(448); + lookahead == 'l') ADVANCE(1137); END_STATE(); case 718: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(395); + lookahead == 'l') ADVANCE(1137); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(142); END_STATE(); case 719: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1098); + lookahead == 'l') ADVANCE(1182); END_STATE(); case 720: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(369); + lookahead == 'l') ADVANCE(751); END_STATE(); case 721: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(372); + lookahead == 'l') ADVANCE(454); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(410); END_STATE(); case 722: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(377); + lookahead == 'l') ADVANCE(1363); END_STATE(); case 723: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(378); + lookahead == 'l') ADVANCE(947); END_STATE(); case 724: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(651); + lookahead == 'l') ADVANCE(705); END_STATE(); case 725: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(237); + lookahead == 'l') ADVANCE(735); END_STATE(); case 726: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1295); + lookahead == 'l') ADVANCE(456); END_STATE(); case 727: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(601); + lookahead == 'l') ADVANCE(361); END_STATE(); case 728: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(600); + lookahead == 'l') ADVANCE(402); END_STATE(); case 729: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(508); + lookahead == 'l') ADVANCE(1114); END_STATE(); case 730: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(622); + lookahead == 'l') ADVANCE(375); END_STATE(); case 731: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(936); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(449); + lookahead == 'l') ADVANCE(378); END_STATE(); case 732: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(465); + lookahead == 'l') ADVANCE(383); END_STATE(); case 733: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(631); + lookahead == 'l') ADVANCE(385); END_STATE(); case 734: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(939); + lookahead == 'l') ADVANCE(660); END_STATE(); case 735: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(942); + lookahead == 'l') ADVANCE(239); END_STATE(); case 736: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(944); + lookahead == 'l') ADVANCE(1311); END_STATE(); case 737: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(563); + lookahead == 'l') ADVANCE(609); END_STATE(); case 738: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(568); + lookahead == 'l') ADVANCE(608); END_STATE(); case 739: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(535); + lookahead == 'l') ADVANCE(634); END_STATE(); case 740: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(536); + lookahead == 'l') ADVANCE(516); END_STATE(); case 741: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(518); + lookahead == 'l') ADVANCE(630); END_STATE(); case 742: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(537); + lookahead == 'l') ADVANCE(951); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(457); END_STATE(); case 743: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(538); + lookahead == 'l') ADVANCE(640); END_STATE(); case 744: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(295); + lookahead == 'l') ADVANCE(954); END_STATE(); case 745: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(687); + lookahead == 'l') ADVANCE(957); END_STATE(); case 746: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1540); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(958); END_STATE(); case 747: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(978); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(818); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(575); END_STATE(); case 748: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(235); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(571); END_STATE(); case 749: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(588); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(543); END_STATE(); case 750: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(755); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(544); END_STATE(); case 751: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(975); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(526); END_STATE(); case 752: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(585); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(545); END_STATE(); case 753: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(931); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(546); END_STATE(); case 754: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(202); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(159); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(298); END_STATE(); case 755: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(184); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(696); END_STATE(); case 756: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1079); + lookahead == 'm') ADVANCE(1557); END_STATE(); case 757: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1087); + lookahead == 'm') ADVANCE(993); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(830); END_STATE(); case 758: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(176); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(830); + lookahead == 'm') ADVANCE(237); END_STATE(); case 759: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(133); + lookahead == 'm') ADVANCE(596); END_STATE(); case 760: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(359); + lookahead == 'm') ADVANCE(765); END_STATE(); case 761: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1091); + lookahead == 'm') ADVANCE(990); END_STATE(); case 762: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1092); + lookahead == 'm') ADVANCE(593); END_STATE(); case 763: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1097); + lookahead == 'm') ADVANCE(945); END_STATE(); case 764: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1100); + lookahead == 'm') ADVANCE(204); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(159); END_STATE(); case 765: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(425); + lookahead == 'm') ADVANCE(184); END_STATE(); case 766: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(375); + lookahead == 'm') ADVANCE(1095); END_STATE(); case 767: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(991); + lookahead == 'm') ADVANCE(176); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(842); END_STATE(); case 768: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(592); + lookahead == 'm') ADVANCE(1103); END_STATE(); case 769: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(597); + lookahead == 'm') ADVANCE(133); END_STATE(); case 770: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(596); + lookahead == 'm') ADVANCE(365); END_STATE(); case 771: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(443); + lookahead == 'm') ADVANCE(1107); END_STATE(); case 772: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(648); + lookahead == 'm') ADVANCE(1108); END_STATE(); case 773: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(945); + lookahead == 'm') ADVANCE(1113); END_STATE(); case 774: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(195); + lookahead == 'm') ADVANCE(433); END_STATE(); case 775: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(190); + lookahead == 'm') ADVANCE(1116); END_STATE(); case 776: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(476); + lookahead == 'm') ADVANCE(381); END_STATE(); case 777: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(734); + lookahead == 'm') ADVANCE(1007); END_STATE(); case 778: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(994); + lookahead == 'm') ADVANCE(600); END_STATE(); case 779: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(194); + lookahead == 'm') ADVANCE(605); END_STATE(); case 780: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(197); + lookahead == 'm') ADVANCE(604); END_STATE(); case 781: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(199); + lookahead == 'm') ADVANCE(451); END_STATE(); case 782: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(775); + lookahead == 'm') ADVANCE(657); END_STATE(); case 783: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(779); + lookahead == 'm') ADVANCE(959); END_STATE(); case 784: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(780); + lookahead == 'm') ADVANCE(197); END_STATE(); case 785: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(781); + lookahead == 'm') ADVANCE(191); END_STATE(); case 786: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(523); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(483); END_STATE(); case 787: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1414); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(744); END_STATE(); case 788: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1570); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1010); END_STATE(); case 789: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1461); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(196); END_STATE(); case 790: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1577); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(198); END_STATE(); case 791: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1425); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(200); END_STATE(); case 792: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1511); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(201); END_STATE(); case 793: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1525); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(785); END_STATE(); case 794: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1444); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(789); END_STATE(); case 795: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1509); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(790); END_STATE(); case 796: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1437); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(791); END_STATE(); case 797: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1454); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(792); END_STATE(); case 798: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1489); + lookahead == 'n') ADVANCE(531); END_STATE(); case 799: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1409); + lookahead == 'n') ADVANCE(1430); END_STATE(); case 800: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1306); + lookahead == 'n') ADVANCE(1587); END_STATE(); case 801: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(134); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1014); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(253); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(606); + lookahead == 'n') ADVANCE(1478); END_STATE(); case 802: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(134); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(253); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(606); + lookahead == 'n') ADVANCE(1594); END_STATE(); case 803: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(232); + lookahead == 'n') ADVANCE(1442); END_STATE(); case 804: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(232); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(323); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(380); + lookahead == 'n') ADVANCE(1528); END_STATE(); case 805: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1307); + lookahead == 'n') ADVANCE(1542); END_STATE(); case 806: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(890); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(580); + lookahead == 'n') ADVANCE(1461); END_STATE(); case 807: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(318); + lookahead == 'n') ADVANCE(1526); END_STATE(); case 808: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(178); + lookahead == 'n') ADVANCE(1454); END_STATE(); case 809: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(825); + lookahead == 'n') ADVANCE(1471); END_STATE(); case 810: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(520); + lookahead == 'n') ADVANCE(1506); END_STATE(); case 811: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(516); + lookahead == 'n') ADVANCE(1425); END_STATE(); case 812: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(304); + lookahead == 'n') ADVANCE(1322); END_STATE(); case 813: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(665); + lookahead == 'n') ADVANCE(134); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1030); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(255); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(614); END_STATE(); case 814: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(609); + lookahead == 'n') ADVANCE(134); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(255); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(614); END_STATE(); case 815: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(525); + lookahead == 'n') ADVANCE(234); END_STATE(); case 816: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(521); + lookahead == 'n') ADVANCE(234); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(327); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(387); END_STATE(); case 817: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1293); + lookahead == 'n') ADVANCE(1323); END_STATE(); case 818: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(454); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1018); + lookahead == 'n') ADVANCE(904); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(588); END_STATE(); case 819: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(306); + lookahead == 'n') ADVANCE(322); END_STATE(); case 820: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(817); + lookahead == 'n') ADVANCE(178); END_STATE(); case 821: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(308); + lookahead == 'n') ADVANCE(837); END_STATE(); case 822: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1184); + lookahead == 'n') ADVANCE(528); END_STATE(); case 823: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(309); + lookahead == 'n') ADVANCE(524); END_STATE(); case 824: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(154); + lookahead == 'n') ADVANCE(308); END_STATE(); case 825: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(401); + lookahead == 'n') ADVANCE(674); END_STATE(); case 826: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(313); + lookahead == 'n') ADVANCE(617); END_STATE(); case 827: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(713); + lookahead == 'n') ADVANCE(533); END_STATE(); case 828: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1222); + lookahead == 'n') ADVANCE(529); END_STATE(); case 829: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(315); + lookahead == 'n') ADVANCE(1309); END_STATE(); case 830: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(728); + lookahead == 'n') ADVANCE(462); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1034); END_STATE(); case 831: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(316); + lookahead == 'n') ADVANCE(310); END_STATE(); case 832: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1169); + lookahead == 'n') ADVANCE(829); END_STATE(); case 833: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(317); + lookahead == 'n') ADVANCE(312); END_STATE(); case 834: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1170); + lookahead == 'n') ADVANCE(1200); END_STATE(); case 835: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1171); + lookahead == 'n') ADVANCE(313); END_STATE(); case 836: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(165); + lookahead == 'n') ADVANCE(154); END_STATE(); case 837: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1228); + lookahead == 'n') ADVANCE(408); END_STATE(); case 838: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1082); + lookahead == 'n') ADVANCE(317); END_STATE(); case 839: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1085); + lookahead == 'n') ADVANCE(722); END_STATE(); case 840: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1086); + lookahead == 'n') ADVANCE(1238); END_STATE(); case 841: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(384); + lookahead == 'n') ADVANCE(319); END_STATE(); case 842: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(149); + lookahead == 'n') ADVANCE(738); END_STATE(); case 843: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1096); + lookahead == 'n') ADVANCE(320); END_STATE(); case 844: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(526); + lookahead == 'n') ADVANCE(345); END_STATE(); case 845: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(919); + lookahead == 'n') ADVANCE(1185); END_STATE(); case 846: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1226); + lookahead == 'n') ADVANCE(1186); END_STATE(); case 847: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(922); + lookahead == 'n') ADVANCE(321); END_STATE(); case 848: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(186); + lookahead == 'n') ADVANCE(1187); END_STATE(); case 849: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(527); + lookahead == 'n') ADVANCE(165); END_STATE(); case 850: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1241); + lookahead == 'n') ADVANCE(1244); END_STATE(); case 851: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1205); + lookahead == 'n') ADVANCE(1098); END_STATE(); case 852: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1225); + lookahead == 'n') ADVANCE(1101); END_STATE(); case 853: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1137); + lookahead == 'n') ADVANCE(1102); END_STATE(); case 854: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1245); + lookahead == 'n') ADVANCE(149); END_STATE(); case 855: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1196); + lookahead == 'n') ADVANCE(391); END_STATE(); case 856: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1216); + lookahead == 'n') ADVANCE(1112); END_STATE(); case 857: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(680); + lookahead == 'n') ADVANCE(384); END_STATE(); case 858: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(556); + lookahead == 'n') ADVANCE(534); END_STATE(); case 859: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(464); + lookahead == 'n') ADVANCE(933); END_STATE(); case 860: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1237); + lookahead == 'n') ADVANCE(1242); END_STATE(); case 861: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(509); + lookahead == 'n') ADVANCE(936); END_STATE(); case 862: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1239); + lookahead == 'n') ADVANCE(186); END_STATE(); case 863: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(561); + lookahead == 'n') ADVANCE(535); END_STATE(); case 864: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(564); + lookahead == 'n') ADVANCE(1257); END_STATE(); case 865: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(965); + lookahead == 'n') ADVANCE(1220); END_STATE(); case 866: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(569); + lookahead == 'n') ADVANCE(1241); END_STATE(); case 867: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(969); + lookahead == 'n') ADVANCE(1152); END_STATE(); case 868: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(971); + lookahead == 'n') ADVANCE(1261); END_STATE(); case 869: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1259); + lookahead == 'n') ADVANCE(1212); END_STATE(); case 870: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1260); + lookahead == 'n') ADVANCE(1232); END_STATE(); case 871: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1261); + lookahead == 'n') ADVANCE(689); END_STATE(); case 872: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1262); + lookahead == 'n') ADVANCE(564); END_STATE(); case 873: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1263); + lookahead == 'n') ADVANCE(472); END_STATE(); case 874: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1264); + lookahead == 'n') ADVANCE(1253); END_STATE(); case 875: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1265); + lookahead == 'n') ADVANCE(517); END_STATE(); case 876: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1266); + lookahead == 'n') ADVANCE(1255); END_STATE(); case 877: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(255); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(569); END_STATE(); case 878: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1379); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(573); END_STATE(); case 879: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1379); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(748); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(979); END_STATE(); case 880: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1420); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(578); END_STATE(); case 881: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1499); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(983); END_STATE(); case 882: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1419); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(985); END_STATE(); case 883: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1380); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1275); END_STATE(); case 884: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1322); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1276); END_STATE(); case 885: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(522); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1277); END_STATE(); case 886: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(750); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1278); END_STATE(); case 887: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(234); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1279); END_STATE(); case 888: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(276); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1280); END_STATE(); case 889: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1003); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1281); END_STATE(); case 890: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(814); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1282); END_STATE(); case 891: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1290); + lookahead == 'o') ADVANCE(257); END_STATE(); case 892: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(506); + lookahead == 'o') ADVANCE(1395); END_STATE(); case 893: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(811); + lookahead == 'o') ADVANCE(1395); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(758); END_STATE(); case 894: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(692); + lookahead == 'o') ADVANCE(1436); END_STATE(); case 895: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(995); + lookahead == 'o') ADVANCE(1516); END_STATE(); case 896: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1074); + lookahead == 'o') ADVANCE(1435); END_STATE(); case 897: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1017); + lookahead == 'o') ADVANCE(1396); END_STATE(); case 898: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1045); + lookahead == 'o') ADVANCE(1338); END_STATE(); case 899: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(822); + lookahead == 'o') ADVANCE(530); END_STATE(); case 900: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(694); + lookahead == 'o') ADVANCE(760); END_STATE(); case 901: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(787); + lookahead == 'o') ADVANCE(236); END_STATE(); case 902: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(827); + lookahead == 'o') ADVANCE(279); END_STATE(); case 903: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1141); + lookahead == 'o') ADVANCE(1019); END_STATE(); case 904: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1119); + lookahead == 'o') ADVANCE(826); END_STATE(); case 905: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(790); + lookahead == 'o') ADVANCE(1307); END_STATE(); case 906: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1123); + lookahead == 'o') ADVANCE(514); END_STATE(); case 907: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(853); + lookahead == 'o') ADVANCE(823); END_STATE(); case 908: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(793); + lookahead == 'o') ADVANCE(701); END_STATE(); case 909: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(206); + lookahead == 'o') ADVANCE(1011); END_STATE(); case 910: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(794); + lookahead == 'o') ADVANCE(1090); END_STATE(); case 911: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(795); + lookahead == 'o') ADVANCE(1033); END_STATE(); case 912: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(796); + lookahead == 'o') ADVANCE(1061); END_STATE(); case 913: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1027); + lookahead == 'o') ADVANCE(834); END_STATE(); case 914: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(797); + lookahead == 'o') ADVANCE(703); END_STATE(); case 915: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(798); + lookahead == 'o') ADVANCE(799); END_STATE(); case 916: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1049); + lookahead == 'o') ADVANCE(839); END_STATE(); case 917: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(799); + lookahead == 'o') ADVANCE(1156); END_STATE(); case 918: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1068); + lookahead == 'o') ADVANCE(802); END_STATE(); case 919: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1324); + lookahead == 'o') ADVANCE(1135); END_STATE(); case 920: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1198); + lookahead == 'o') ADVANCE(867); END_STATE(); case 921: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1309); + lookahead == 'o') ADVANCE(1138); END_STATE(); case 922: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1032); + lookahead == 'o') ADVANCE(805); END_STATE(); case 923: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(774); + lookahead == 'o') ADVANCE(208); END_STATE(); case 924: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1296); + lookahead == 'o') ADVANCE(806); END_STATE(); case 925: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1130); + lookahead == 'o') ADVANCE(807); END_STATE(); case 926: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1142); + lookahead == 'o') ADVANCE(808); END_STATE(); case 927: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1044); + lookahead == 'o') ADVANCE(1043); END_STATE(); case 928: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(836); + lookahead == 'o') ADVANCE(809); END_STATE(); case 929: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(675); + lookahead == 'o') ADVANCE(810); END_STATE(); case 930: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1288); + lookahead == 'o') ADVANCE(1065); END_STATE(); case 931: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(331); + lookahead == 'o') ADVANCE(811); END_STATE(); case 932: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(267); + lookahead == 'o') ADVANCE(1084); END_STATE(); case 933: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1289); + lookahead == 'o') ADVANCE(1340); END_STATE(); case 934: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(843); + lookahead == 'o') ADVANCE(1215); END_STATE(); case 935: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1128); + lookahead == 'o') ADVANCE(1325); END_STATE(); case 936: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(268); + lookahead == 'o') ADVANCE(1048); END_STATE(); case 937: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1136); + lookahead == 'o') ADVANCE(784); END_STATE(); case 938: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1132); + lookahead == 'o') ADVANCE(1312); END_STATE(); case 939: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(269); + lookahead == 'o') ADVANCE(1145); END_STATE(); case 940: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1208); + lookahead == 'o') ADVANCE(1157); END_STATE(); case 941: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1133); + lookahead == 'o') ADVANCE(1060); END_STATE(); case 942: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(270); + lookahead == 'o') ADVANCE(849); END_STATE(); case 943: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1134); + lookahead == 'o') ADVANCE(684); END_STATE(); case 944: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(287); + lookahead == 'o') ADVANCE(1305); END_STATE(); case 945: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1212); + lookahead == 'o') ADVANCE(335); END_STATE(); case 946: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1297); + lookahead == 'o') ADVANCE(1142); END_STATE(); case 947: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1051); + lookahead == 'o') ADVANCE(269); END_STATE(); case 948: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(861); + lookahead == 'o') ADVANCE(1306); END_STATE(); case 949: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1319); + lookahead == 'o') ADVANCE(856); END_STATE(); case 950: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1143); + lookahead == 'o') ADVANCE(1147); END_STATE(); case 951: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1053); + lookahead == 'o') ADVANCE(270); END_STATE(); case 952: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1054); + lookahead == 'o') ADVANCE(1151); END_STATE(); case 953: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1055); + lookahead == 'o') ADVANCE(1148); END_STATE(); case 954: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(562); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(748); + lookahead == 'o') ADVANCE(271); END_STATE(); case 955: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1056); + lookahead == 'o') ADVANCE(1224); END_STATE(); case 956: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1057); + lookahead == 'o') ADVANCE(1149); END_STATE(); case 957: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(778); + lookahead == 'o') ADVANCE(272); END_STATE(); case 958: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1060); + lookahead == 'o') ADVANCE(290); END_STATE(); case 959: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1153); + lookahead == 'o') ADVANCE(1228); END_STATE(); case 960: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1062); + lookahead == 'o') ADVANCE(1313); END_STATE(); case 961: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1154); + lookahead == 'o') ADVANCE(1067); END_STATE(); case 962: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1064); + lookahead == 'o') ADVANCE(875); END_STATE(); case 963: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1155); + lookahead == 'o') ADVANCE(1169); END_STATE(); case 964: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1065); + lookahead == 'o') ADVANCE(1335); END_STATE(); case 965: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1333); + lookahead == 'o') ADVANCE(1158); END_STATE(); case 966: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(782); + lookahead == 'o') ADVANCE(1069); END_STATE(); case 967: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1158); + lookahead == 'o') ADVANCE(1170); END_STATE(); case 968: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1159); + lookahead == 'o') ADVANCE(1070); END_STATE(); case 969: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1334); + lookahead == 'o') ADVANCE(1171); END_STATE(); case 970: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(783); + lookahead == 'o') ADVANCE(1071); END_STATE(); case 971: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1335); + lookahead == 'o') ADVANCE(1072); END_STATE(); case 972: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(784); + lookahead == 'o') ADVANCE(1073); END_STATE(); case 973: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(785); + lookahead == 'o') ADVANCE(570); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(758); END_STATE(); case 974: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(545); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(788); END_STATE(); case 975: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1521); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1076); END_STATE(); case 976: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1410); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1079); END_STATE(); case 977: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(323); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(383); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1080); END_STATE(); case 978: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1059); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1081); END_STATE(); case 979: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1176); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1349); END_STATE(); case 980: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(579); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(793); END_STATE(); case 981: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(180); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1175); END_STATE(); case 982: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1047); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1174); END_STATE(); case 983: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(927); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1350); END_STATE(); case 984: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(399); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(794); END_STATE(); case 985: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(207); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1351); END_STATE(); case 986: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(365); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(795); END_STATE(); case 987: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(672); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(796); END_STATE(); case 988: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(196); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(797); END_STATE(); case 989: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1025); + lookahead == 'p') ADVANCE(553); END_STATE(); case 990: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1029); + lookahead == 'p') ADVANCE(1538); END_STATE(); case 991: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1207); + lookahead == 'p') ADVANCE(1426); END_STATE(); case 992: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(442); + lookahead == 'p') ADVANCE(327); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(390); END_STATE(); case 993: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(907); + lookahead == 'p') ADVANCE(1075); END_STATE(); case 994: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1209); + lookahead == 'p') ADVANCE(1192); END_STATE(); case 995: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(430); + lookahead == 'p') ADVANCE(587); END_STATE(); case 996: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1213); + lookahead == 'p') ADVANCE(180); END_STATE(); case 997: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1242); + lookahead == 'p') ADVANCE(1063); END_STATE(); case 998: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1067); + lookahead == 'p') ADVANCE(941); END_STATE(); case 999: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(205); + lookahead == 'p') ADVANCE(406); END_STATE(); case 1000: - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(896); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(209); END_STATE(); case 1001: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(266); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(371); END_STATE(); case 1002: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(239); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(494); END_STATE(); case 1003: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1498); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(681); END_STATE(); case 1004: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1412); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(195); END_STATE(); case 1005: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1426); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1041); END_STATE(); case 1006: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1417); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1045); END_STATE(); case 1007: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1512); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1223); END_STATE(); case 1008: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1535); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(450); END_STATE(); case 1009: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(669); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(920); END_STATE(); case 1010: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1281); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1225); END_STATE(); case 1011: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(749); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(437); END_STATE(); case 1012: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1181); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1229); END_STATE(); case 1013: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1160); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1258); END_STATE(); case 1014: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(889); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1083); END_STATE(); case 1015: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1312); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(207); END_STATE(); case 1016: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(305); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(910); END_STATE(); case 1017: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(339); + lookahead == 'r') ADVANCE(268); END_STATE(); case 1018: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(894); + lookahead == 'r') ADVANCE(241); END_STATE(); case 1019: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1292); + lookahead == 'r') ADVANCE(1515); END_STATE(); case 1020: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(307); + lookahead == 'r') ADVANCE(1428); END_STATE(); case 1021: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(892); + lookahead == 'r') ADVANCE(1443); END_STATE(); case 1022: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(177); + lookahead == 'r') ADVANCE(1433); END_STATE(); case 1023: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(336); + lookahead == 'r') ADVANCE(1529); END_STATE(); case 1024: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(310); + lookahead == 'r') ADVANCE(1552); END_STATE(); case 1025: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(921); + lookahead == 'r') ADVANCE(678); END_STATE(); case 1026: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(311); + lookahead == 'r') ADVANCE(1297); END_STATE(); case 1027: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(340); + lookahead == 'r') ADVANCE(759); END_STATE(); case 1028: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(581); + lookahead == 'r') ADVANCE(1197); END_STATE(); case 1029: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(957); + lookahead == 'r') ADVANCE(1176); END_STATE(); case 1030: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1116); + lookahead == 'r') ADVANCE(903); END_STATE(); case 1031: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(151); + lookahead == 'r') ADVANCE(1328); END_STATE(); case 1032: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(410); + lookahead == 'r') ADVANCE(309); END_STATE(); case 1033: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(406); + lookahead == 'r') ADVANCE(343); END_STATE(); case 1034: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(496); + lookahead == 'r') ADVANCE(908); END_STATE(); case 1035: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(481); + lookahead == 'r') ADVANCE(1304); END_STATE(); case 1036: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(376); + lookahead == 'r') ADVANCE(311); END_STATE(); case 1037: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(472); + lookahead == 'r') ADVANCE(906); END_STATE(); case 1038: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(486); + lookahead == 'r') ADVANCE(177); END_STATE(); case 1039: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(982); + lookahead == 'r') ADVANCE(340); END_STATE(); case 1040: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(240); + lookahead == 'r') ADVANCE(314); END_STATE(); case 1041: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1129); + lookahead == 'r') ADVANCE(935); END_STATE(); case 1042: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(590); + lookahead == 'r') ADVANCE(315); END_STATE(); case 1043: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(503); + lookahead == 'r') ADVANCE(344); END_STATE(); case 1044: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1200); + lookahead == 'r') ADVANCE(589); END_STATE(); case 1045: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1327); + lookahead == 'r') ADVANCE(974); END_STATE(); case 1046: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(432); + lookahead == 'r') ADVANCE(151); END_STATE(); case 1047: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(613); + lookahead == 'r') ADVANCE(1132); END_STATE(); case 1048: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1034); + lookahead == 'r') ADVANCE(417); END_STATE(); case 1049: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(279); + lookahead == 'r') ADVANCE(413); END_STATE(); case 1050: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1315); + lookahead == 'r') ADVANCE(504); END_STATE(); case 1051: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(598); + lookahead == 'r') ADVANCE(489); END_STATE(); case 1052: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(265); + lookahead == 'r') ADVANCE(382); END_STATE(); case 1053: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(615); + lookahead == 'r') ADVANCE(479); END_STATE(); case 1054: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(621); + lookahead == 'r') ADVANCE(493); END_STATE(); case 1055: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(626); + lookahead == 'r') ADVANCE(997); END_STATE(); case 1056: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(629); + lookahead == 'r') ADVANCE(242); END_STATE(); case 1057: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(635); + lookahead == 'r') ADVANCE(1143); END_STATE(); case 1058: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(338); + lookahead == 'r') ADVANCE(598); END_STATE(); case 1059: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(456); + lookahead == 'r') ADVANCE(511); END_STATE(); case 1060: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1328); + lookahead == 'r') ADVANCE(1217); END_STATE(); case 1061: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(772); + lookahead == 'r') ADVANCE(1343); END_STATE(); case 1062: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1329); + lookahead == 'r') ADVANCE(442); END_STATE(); case 1063: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(468); + lookahead == 'r') ADVANCE(621); END_STATE(); case 1064: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1331); + lookahead == 'r') ADVANCE(1050); END_STATE(); case 1065: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1332); + lookahead == 'r') ADVANCE(282); END_STATE(); case 1066: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(203); + lookahead == 'r') ADVANCE(1331); END_STATE(); case 1067: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(949); + lookahead == 'r') ADVANCE(606); END_STATE(); case 1068: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(736); + lookahead == 'r') ADVANCE(267); END_STATE(); case 1069: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(661); + lookahead == 'r') ADVANCE(623); END_STATE(); case 1070: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(225); + lookahead == 'r') ADVANCE(629); END_STATE(); case 1071: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1377); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(635); END_STATE(); case 1072: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1506); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(638); END_STATE(); case 1073: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(25); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(644); END_STATE(); case 1074: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1463); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(342); END_STATE(); case 1075: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1403); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(464); END_STATE(); case 1076: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1398); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1344); END_STATE(); case 1077: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1442); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(782); END_STATE(); case 1078: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1456); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(473); END_STATE(); case 1079: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1491); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1345); END_STATE(); case 1080: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1522); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1347); END_STATE(); case 1081: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1569); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1348); END_STATE(); case 1082: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1450); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(205); END_STATE(); case 1083: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1452); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(964); END_STATE(); case 1084: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1534); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(746); END_STATE(); case 1085: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1400); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(670); END_STATE(); case 1086: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1575); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(227); END_STATE(); case 1087: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1455); + lookahead == 's') ADVANCE(1393); END_STATE(); case 1088: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1415); + lookahead == 's') ADVANCE(1523); END_STATE(); case 1089: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1405); + lookahead == 's') ADVANCE(25); END_STATE(); case 1090: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1413); + lookahead == 's') ADVANCE(1480); END_STATE(); case 1091: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1451); + lookahead == 's') ADVANCE(1419); END_STATE(); case 1092: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1407); + lookahead == 's') ADVANCE(1414); END_STATE(); case 1093: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1490); + lookahead == 's') ADVANCE(1459); END_STATE(); case 1094: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1524); + lookahead == 's') ADVANCE(1473); END_STATE(); case 1095: if (lookahead == 'S' || @@ -9600,1130 +9646,1194 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1096: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1514); + lookahead == 's') ADVANCE(1539); END_STATE(); case 1097: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1523); + lookahead == 's') ADVANCE(1586); END_STATE(); case 1098: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1446); + lookahead == 's') ADVANCE(1467); END_STATE(); case 1099: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1406); + lookahead == 's') ADVANCE(1469); END_STATE(); case 1100: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1453); + lookahead == 's') ADVANCE(1551); END_STATE(); case 1101: if (lookahead == 'S' || - lookahead == 's') ADVANCE(706); + lookahead == 's') ADVANCE(1416); END_STATE(); case 1102: if (lookahead == 'S' || - lookahead == 's') ADVANCE(542); + lookahead == 's') ADVANCE(1592); END_STATE(); case 1103: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1326); + lookahead == 's') ADVANCE(1472); END_STATE(); case 1104: if (lookahead == 'S' || - lookahead == 's') ADVANCE(663); + lookahead == 's') ADVANCE(1431); END_STATE(); case 1105: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1161); + lookahead == 's') ADVANCE(1421); END_STATE(); case 1106: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1285); + lookahead == 's') ADVANCE(1429); END_STATE(); case 1107: if (lookahead == 'S' || - lookahead == 's') ADVANCE(664); + lookahead == 's') ADVANCE(1468); END_STATE(); case 1108: if (lookahead == 'S' || - lookahead == 's') ADVANCE(619); + lookahead == 's') ADVANCE(1423); END_STATE(); case 1109: if (lookahead == 'S' || - lookahead == 's') ADVANCE(513); + lookahead == 's') ADVANCE(1507); END_STATE(); case 1110: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1103); + lookahead == 's') ADVANCE(1541); END_STATE(); case 1111: if (lookahead == 'S' || - lookahead == 's') ADVANCE(557); + lookahead == 's') ADVANCE(1525); END_STATE(); case 1112: if (lookahead == 'S' || - lookahead == 's') ADVANCE(143); + lookahead == 's') ADVANCE(1531); END_STATE(); case 1113: if (lookahead == 'S' || - lookahead == 's') ADVANCE(541); + lookahead == 's') ADVANCE(1540); END_STATE(); case 1114: if (lookahead == 'S' || - lookahead == 's') ADVANCE(993); + lookahead == 's') ADVANCE(1463); END_STATE(); case 1115: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1224); + lookahead == 's') ADVANCE(1422); END_STATE(); case 1116: if (lookahead == 'S' || - lookahead == 's') ADVANCE(620); + lookahead == 's') ADVANCE(1470); END_STATE(); case 1117: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1109); + lookahead == 's') ADVANCE(715); END_STATE(); case 1118: if (lookahead == 'S' || - lookahead == 's') ADVANCE(607); + lookahead == 's') ADVANCE(550); END_STATE(); case 1119: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1197); + lookahead == 's') ADVANCE(1342); END_STATE(); case 1120: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1111); + lookahead == 's') ADVANCE(672); END_STATE(); case 1121: if (lookahead == 'S' || - lookahead == 's') ADVANCE(584); + lookahead == 's') ADVANCE(1177); END_STATE(); case 1122: if (lookahead == 'S' || - lookahead == 's') ADVANCE(354); + lookahead == 's') ADVANCE(1301); END_STATE(); case 1123: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1233); + lookahead == 's') ADVANCE(673); END_STATE(); case 1124: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1191); + lookahead == 's') ADVANCE(628); END_STATE(); case 1125: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1076); + lookahead == 's') ADVANCE(521); END_STATE(); case 1126: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1173); + lookahead == 's') ADVANCE(1119); END_STATE(); case 1127: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1080); + lookahead == 's') ADVANCE(565); END_STATE(); case 1128: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1230); + lookahead == 's') ADVANCE(143); END_STATE(); case 1129: if (lookahead == 'S' || - lookahead == 's') ADVANCE(168); + lookahead == 's') ADVANCE(549); END_STATE(); case 1130: if (lookahead == 'S' || - lookahead == 's') ADVANCE(357); + lookahead == 's') ADVANCE(1009); END_STATE(); case 1131: if (lookahead == 'S' || - lookahead == 's') ADVANCE(402); + lookahead == 's') ADVANCE(1240); END_STATE(); case 1132: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1275); + lookahead == 's') ADVANCE(624); END_STATE(); case 1133: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1175); + lookahead == 's') ADVANCE(1125); END_STATE(); case 1134: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1178); + lookahead == 's') ADVANCE(615); END_STATE(); case 1135: if (lookahead == 'S' || - lookahead == 's') ADVANCE(447); + lookahead == 's') ADVANCE(1213); END_STATE(); case 1136: if (lookahead == 'S' || - lookahead == 's') ADVANCE(362); + lookahead == 's') ADVANCE(592); END_STATE(); case 1137: if (lookahead == 'S' || - lookahead == 's') ADVANCE(495); + lookahead == 's') ADVANCE(359); END_STATE(); case 1138: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1357); + lookahead == 's') ADVANCE(1249); END_STATE(); case 1139: if (lookahead == 'S' || - lookahead == 's') ADVANCE(293); + lookahead == 's') ADVANCE(1207); END_STATE(); case 1140: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1193); + lookahead == 's') ADVANCE(1092); END_STATE(); case 1141: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1190); + lookahead == 's') ADVANCE(1189); END_STATE(); case 1142: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1202); + lookahead == 's') ADVANCE(1246); END_STATE(); case 1143: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1204); + lookahead == 's') ADVANCE(172); END_STATE(); case 1144: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1203); + lookahead == 's') ADVANCE(1096); END_STATE(); case 1145: if (lookahead == 'S' || - lookahead == 's') ADVANCE(902); + lookahead == 's') ADVANCE(363); END_STATE(); case 1146: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1037); + lookahead == 's') ADVANCE(409); END_STATE(); case 1147: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1211); + lookahead == 's') ADVANCE(1291); END_STATE(); case 1148: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1217); + lookahead == 's') ADVANCE(1191); END_STATE(); case 1149: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1330); + lookahead == 's') ADVANCE(1194); END_STATE(); case 1150: if (lookahead == 'S' || - lookahead == 's') ADVANCE(624); + lookahead == 's') ADVANCE(455); END_STATE(); case 1151: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1149); + lookahead == 's') ADVANCE(368); END_STATE(); case 1152: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1150); + lookahead == 's') ADVANCE(503); END_STATE(); case 1153: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1256); + lookahead == 's') ADVANCE(1373); END_STATE(); case 1154: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1235); + lookahead == 's') ADVANCE(296); END_STATE(); case 1155: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1236); + lookahead == 's') ADVANCE(1209); END_STATE(); case 1156: if (lookahead == 'S' || - lookahead == 's') ADVANCE(514); + lookahead == 's') ADVANCE(1206); END_STATE(); case 1157: if (lookahead == 'S' || - lookahead == 's') ADVANCE(515); + lookahead == 's') ADVANCE(1218); END_STATE(); case 1158: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1258); + lookahead == 's') ADVANCE(1221); END_STATE(); case 1159: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1257); + lookahead == 's') ADVANCE(1219); END_STATE(); case 1160: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1513); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(916); END_STATE(); case 1161: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1385); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1053); END_STATE(); case 1162: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1395); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1227); END_STATE(); case 1163: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1496); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1233); END_STATE(); case 1164: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(731); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(277); END_STATE(); case 1165: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(593); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1346); END_STATE(); case 1166: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1541); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(632); END_STATE(); case 1167: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(608); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1165); END_STATE(); case 1168: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1528); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1166); END_STATE(); case 1169: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1438); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1272); END_STATE(); case 1170: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1459); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1251); END_STATE(); case 1171: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1392); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1252); END_STATE(); case 1172: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1416); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(522); END_STATE(); case 1173: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1423); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(523); END_STATE(); case 1174: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1440); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1274); END_STATE(); case 1175: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1507); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1273); END_STATE(); case 1176: if (lookahead == 'T' || - lookahead == 't') ADVANCE(14); + lookahead == 't') ADVANCE(1530); END_STATE(); case 1177: if (lookahead == 'T' || - lookahead == 't') ADVANCE(880); + lookahead == 't') ADVANCE(1401); END_STATE(); case 1178: if (lookahead == 'T' || - lookahead == 't') ADVANCE(15); + lookahead == 't') ADVANCE(1411); END_STATE(); case 1179: if (lookahead == 'T' || - lookahead == 't') ADVANCE(550); + lookahead == 't') ADVANCE(1513); END_STATE(); case 1180: if (lookahead == 'T' || - lookahead == 't') ADVANCE(249); + lookahead == 't') ADVANCE(742); END_STATE(); case 1181: if (lookahead == 'T' || - lookahead == 't') ADVANCE(583); + lookahead == 't') ADVANCE(601); END_STATE(); case 1182: if (lookahead == 'T' || - lookahead == 't') ADVANCE(444); + lookahead == 't') ADVANCE(1558); END_STATE(); case 1183: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1366); + lookahead == 't') ADVANCE(616); END_STATE(); case 1184: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1365); + lookahead == 't') ADVANCE(1545); END_STATE(); case 1185: if (lookahead == 'T' || - lookahead == 't') ADVANCE(540); + lookahead == 't') ADVANCE(1455); END_STATE(); case 1186: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1343); + lookahead == 't') ADVANCE(1476); END_STATE(); case 1187: if (lookahead == 'T' || - lookahead == 't') ADVANCE(888); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1342); + lookahead == 't') ADVANCE(1408); END_STATE(); case 1188: if (lookahead == 'T' || - lookahead == 't') ADVANCE(544); + lookahead == 't') ADVANCE(1432); END_STATE(); case 1189: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1346); + lookahead == 't') ADVANCE(1439); END_STATE(); case 1190: if (lookahead == 'T' || - lookahead == 't') ADVANCE(589); + lookahead == 't') ADVANCE(1457); END_STATE(); case 1191: if (lookahead == 'T' || - lookahead == 't') ADVANCE(327); + lookahead == 't') ADVANCE(1524); END_STATE(); case 1192: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1348); + lookahead == 't') ADVANCE(14); END_STATE(); case 1193: if (lookahead == 'T' || - lookahead == 't') ADVANCE(909); + lookahead == 't') ADVANCE(894); END_STATE(); case 1194: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1349); + lookahead == 't') ADVANCE(15); END_STATE(); case 1195: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1186); + lookahead == 't') ADVANCE(558); END_STATE(); case 1196: if (lookahead == 'T' || - lookahead == 't') ADVANCE(605); + lookahead == 't') ADVANCE(251); END_STATE(); case 1197: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1139); + lookahead == 't') ADVANCE(591); END_STATE(); case 1198: if (lookahead == 'T' || - lookahead == 't') ADVANCE(484); + lookahead == 't') ADVANCE(452); END_STATE(); case 1199: if (lookahead == 'T' || - lookahead == 't') ADVANCE(882); + lookahead == 't') ADVANCE(1382); END_STATE(); case 1200: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1077); + lookahead == 't') ADVANCE(1381); END_STATE(); case 1201: if (lookahead == 'T' || - lookahead == 't') ADVANCE(482); + lookahead == 't') ADVANCE(548); END_STATE(); case 1202: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1083); + lookahead == 't') ADVANCE(1359); END_STATE(); case 1203: if (lookahead == 'T' || - lookahead == 't') ADVANCE(398); + lookahead == 't') ADVANCE(902); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1358); END_STATE(); case 1204: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1156); + lookahead == 't') ADVANCE(552); END_STATE(); case 1205: if (lookahead == 'T' || - lookahead == 't') ADVANCE(421); + lookahead == 't') ADVANCE(1362); END_STATE(); case 1206: if (lookahead == 'T' || - lookahead == 't') ADVANCE(422); + lookahead == 't') ADVANCE(597); END_STATE(); case 1207: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1088); + lookahead == 't') ADVANCE(331); END_STATE(); case 1208: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1089); + lookahead == 't') ADVANCE(1364); END_STATE(); case 1209: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1095); + lookahead == 't') ADVANCE(923); END_STATE(); case 1210: if (lookahead == 'T' || - lookahead == 't') ADVANCE(450); + lookahead == 't') ADVANCE(1365); END_STATE(); case 1211: if (lookahead == 'T' || - lookahead == 't') ADVANCE(435); + lookahead == 't') ADVANCE(1202); END_STATE(); case 1212: if (lookahead == 'T' || - lookahead == 't') ADVANCE(427); + lookahead == 't') ADVANCE(613); END_STATE(); case 1213: if (lookahead == 'T' || - lookahead == 't') ADVANCE(423); + lookahead == 't') ADVANCE(1154); END_STATE(); case 1214: if (lookahead == 'T' || - lookahead == 't') ADVANCE(404); + lookahead == 't') ADVANCE(896); END_STATE(); case 1215: if (lookahead == 'T' || - lookahead == 't') ADVANCE(415); + lookahead == 't') ADVANCE(491); END_STATE(); case 1216: if (lookahead == 'T' || - lookahead == 't') ADVANCE(437); + lookahead == 't') ADVANCE(485); END_STATE(); case 1217: if (lookahead == 'T' || - lookahead == 't') ADVANCE(429); + lookahead == 't') ADVANCE(1093); END_STATE(); case 1218: if (lookahead == 'T' || - lookahead == 't') ADVANCE(431); + lookahead == 't') ADVANCE(1099); END_STATE(); case 1219: if (lookahead == 'T' || - lookahead == 't') ADVANCE(566); + lookahead == 't') ADVANCE(405); END_STATE(); case 1220: if (lookahead == 'T' || - lookahead == 't') ADVANCE(893); + lookahead == 't') ADVANCE(428); END_STATE(); case 1221: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1287); + lookahead == 't') ADVANCE(1172); END_STATE(); case 1222: if (lookahead == 'T' || - lookahead == 't') ADVANCE(547); + lookahead == 't') ADVANCE(429); END_STATE(); case 1223: if (lookahead == 'T' || - lookahead == 't') ADVANCE(551); + lookahead == 't') ADVANCE(1104); END_STATE(); case 1224: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1195); + lookahead == 't') ADVANCE(1105); END_STATE(); case 1225: if (lookahead == 'T' || - lookahead == 't') ADVANCE(647); + lookahead == 't') ADVANCE(1111); END_STATE(); case 1226: if (lookahead == 'T' || - lookahead == 't') ADVANCE(591); + lookahead == 't') ADVANCE(458); END_STATE(); case 1227: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1355); + lookahead == 't') ADVANCE(441); END_STATE(); case 1228: if (lookahead == 'T' || - lookahead == 't') ADVANCE(759); + lookahead == 't') ADVANCE(435); END_STATE(); case 1229: if (lookahead == 'T' || - lookahead == 't') ADVANCE(553); + lookahead == 't') ADVANCE(430); END_STATE(); case 1230: if (lookahead == 'T' || - lookahead == 't') ADVANCE(848); + lookahead == 't') ADVANCE(411); END_STATE(); case 1231: if (lookahead == 'T' || - lookahead == 't') ADVANCE(555); + lookahead == 't') ADVANCE(422); END_STATE(); case 1232: if (lookahead == 'T' || - lookahead == 't') ADVANCE(558); + lookahead == 't') ADVANCE(445); END_STATE(); case 1233: if (lookahead == 'T' || - lookahead == 't') ADVANCE(681); + lookahead == 't') ADVANCE(436); END_STATE(); case 1234: if (lookahead == 'T' || - lookahead == 't') ADVANCE(560); + lookahead == 't') ADVANCE(439); END_STATE(); case 1235: if (lookahead == 'T' || - lookahead == 't') ADVANCE(677); + lookahead == 't') ADVANCE(576); END_STATE(); case 1236: if (lookahead == 'T' || - lookahead == 't') ADVANCE(678); + lookahead == 't') ADVANCE(907); END_STATE(); case 1237: if (lookahead == 'T' || - lookahead == 't') ADVANCE(603); + lookahead == 't') ADVANCE(1303); END_STATE(); case 1238: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1214); + lookahead == 't') ADVANCE(555); END_STATE(); case 1239: if (lookahead == 'T' || - lookahead == 't') ADVANCE(604); + lookahead == 't') ADVANCE(559); END_STATE(); case 1240: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1218); + lookahead == 't') ADVANCE(1211); END_STATE(); case 1241: if (lookahead == 'T' || - lookahead == 't') ADVANCE(461); + lookahead == 't') ADVANCE(656); END_STATE(); case 1242: if (lookahead == 'T' || - lookahead == 't') ADVANCE(457); + lookahead == 't') ADVANCE(599); END_STATE(); case 1243: if (lookahead == 'T' || - lookahead == 't') ADVANCE(559); + lookahead == 't') ADVANCE(1371); END_STATE(); case 1244: if (lookahead == 'T' || - lookahead == 't') ADVANCE(633); + lookahead == 't') ADVANCE(769); END_STATE(); case 1245: if (lookahead == 'T' || - lookahead == 't') ADVANCE(652); + lookahead == 't') ADVANCE(561); END_STATE(); case 1246: if (lookahead == 'T' || - lookahead == 't') ADVANCE(638); + lookahead == 't') ADVANCE(862); END_STATE(); case 1247: if (lookahead == 'T' || - lookahead == 't') ADVANCE(636); + lookahead == 't') ADVANCE(563); END_STATE(); case 1248: if (lookahead == 'T' || - lookahead == 't') ADVANCE(639); + lookahead == 't') ADVANCE(566); END_STATE(); case 1249: if (lookahead == 'T' || - lookahead == 't') ADVANCE(640); + lookahead == 't') ADVANCE(690); END_STATE(); case 1250: if (lookahead == 'T' || - lookahead == 't') ADVANCE(641); + lookahead == 't') ADVANCE(568); END_STATE(); case 1251: if (lookahead == 'T' || - lookahead == 't') ADVANCE(642); + lookahead == 't') ADVANCE(686); END_STATE(); case 1252: if (lookahead == 'T' || - lookahead == 't') ADVANCE(643); + lookahead == 't') ADVANCE(687); END_STATE(); case 1253: if (lookahead == 'T' || - lookahead == 't') ADVANCE(644); + lookahead == 't') ADVANCE(611); END_STATE(); case 1254: if (lookahead == 'T' || - lookahead == 't') ADVANCE(645); + lookahead == 't') ADVANCE(1230); END_STATE(); case 1255: if (lookahead == 'T' || - lookahead == 't') ADVANCE(649); + lookahead == 't') ADVANCE(612); END_STATE(); case 1256: if (lookahead == 'T' || - lookahead == 't') ADVANCE(684); + lookahead == 't') ADVANCE(1234); END_STATE(); case 1257: if (lookahead == 'T' || - lookahead == 't') ADVANCE(685); + lookahead == 't') ADVANCE(469); END_STATE(); case 1258: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1157); + lookahead == 't') ADVANCE(465); END_STATE(); case 1259: if (lookahead == 'T' || - lookahead == 't') ADVANCE(653); + lookahead == 't') ADVANCE(567); END_STATE(); case 1260: if (lookahead == 'T' || - lookahead == 't') ADVANCE(654); + lookahead == 't') ADVANCE(642); END_STATE(); case 1261: if (lookahead == 'T' || - lookahead == 't') ADVANCE(655); + lookahead == 't') ADVANCE(661); END_STATE(); case 1262: if (lookahead == 'T' || - lookahead == 't') ADVANCE(656); + lookahead == 't') ADVANCE(647); END_STATE(); case 1263: if (lookahead == 'T' || - lookahead == 't') ADVANCE(657); + lookahead == 't') ADVANCE(645); END_STATE(); case 1264: if (lookahead == 'T' || - lookahead == 't') ADVANCE(658); + lookahead == 't') ADVANCE(648); END_STATE(); case 1265: if (lookahead == 'T' || - lookahead == 't') ADVANCE(659); + lookahead == 't') ADVANCE(649); END_STATE(); case 1266: if (lookahead == 'T' || - lookahead == 't') ADVANCE(660); + lookahead == 't') ADVANCE(650); END_STATE(); case 1267: if (lookahead == 'T' || - lookahead == 't') ADVANCE(571); + lookahead == 't') ADVANCE(651); END_STATE(); case 1268: if (lookahead == 'T' || - lookahead == 't') ADVANCE(572); + lookahead == 't') ADVANCE(652); END_STATE(); case 1269: if (lookahead == 'T' || - lookahead == 't') ADVANCE(573); + lookahead == 't') ADVANCE(653); END_STATE(); case 1270: if (lookahead == 'T' || - lookahead == 't') ADVANCE(574); + lookahead == 't') ADVANCE(654); END_STATE(); case 1271: if (lookahead == 'T' || - lookahead == 't') ADVANCE(575); + lookahead == 't') ADVANCE(658); END_STATE(); case 1272: if (lookahead == 'T' || - lookahead == 't') ADVANCE(576); + lookahead == 't') ADVANCE(693); END_STATE(); case 1273: if (lookahead == 'T' || - lookahead == 't') ADVANCE(577); + lookahead == 't') ADVANCE(694); END_STATE(); case 1274: if (lookahead == 'T' || - lookahead == 't') ADVANCE(578); + lookahead == 't') ADVANCE(1173); END_STATE(); case 1275: if (lookahead == 'T' || - lookahead == 't') ADVANCE(228); + lookahead == 't') ADVANCE(662); END_STATE(); case 1276: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(586); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(663); END_STATE(); case 1277: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(233); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(664); END_STATE(); case 1278: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(419); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(665); END_STATE(); case 1279: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(519); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(666); END_STATE(); case 1280: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(751); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(667); END_STATE(); case 1281: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(353); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(668); END_STATE(); case 1282: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1179); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(669); END_STATE(); case 1283: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(710); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(579); END_STATE(); case 1284: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1042); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(580); END_STATE(); case 1285: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(150); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(581); END_STATE(); case 1286: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(857); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(582); END_STATE(); case 1287: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1038); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(583); END_STATE(); case 1288: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1172); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(584); END_STATE(); case 1289: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1174); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(585); END_STATE(); case 1290: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(812); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(586); END_STATE(); case 1291: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(330); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(230); END_STATE(); case 1292: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1124); + lookahead == 'u') ADVANCE(594); END_STATE(); case 1293: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(715); + lookahead == 'u') ADVANCE(235); END_STATE(); case 1294: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1199); + lookahead == 'u') ADVANCE(426); END_STATE(); case 1295: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1036); + lookahead == 'u') ADVANCE(527); END_STATE(); case 1296: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(837); + lookahead == 'u') ADVANCE(761); END_STATE(); case 1297: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(833); + lookahead == 'u') ADVANCE(358); END_STATE(); case 1298: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1148); + lookahead == 'u') ADVANCE(1195); END_STATE(); case 1299: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1267); + lookahead == 'u') ADVANCE(719); END_STATE(); case 1300: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1268); + lookahead == 'u') ADVANCE(1058); END_STATE(); case 1301: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1269); + lookahead == 'u') ADVANCE(150); END_STATE(); case 1302: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1270); + lookahead == 'u') ADVANCE(871); END_STATE(); case 1303: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1272); + lookahead == 'u') ADVANCE(1054); END_STATE(); case 1304: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1273); + lookahead == 'u') ADVANCE(1139); END_STATE(); case 1305: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1274); + lookahead == 'u') ADVANCE(1188); END_STATE(); case 1306: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1542); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1190); END_STATE(); case 1307: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1536); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(824); END_STATE(); case 1308: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(616); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(334); END_STATE(); case 1309: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(623); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(724); END_STATE(); case 1310: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(453); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1214); END_STATE(); case 1311: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(416); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1052); END_STATE(); case 1312: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(164); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(850); END_STATE(); case 1313: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(361); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(847); END_STATE(); case 1314: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(364); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1163); END_STATE(); case 1315: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(433); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1283); END_STATE(); case 1316: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(367); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1284); END_STATE(); case 1317: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(371); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1285); END_STATE(); case 1318: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(630); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1286); END_STATE(); case 1319: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(627); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1288); END_STATE(); case 1320: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1548); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1289); END_STATE(); case 1321: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(128); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1290); END_STATE(); case 1322: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(858); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1559); END_STATE(); case 1323: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(146); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1553); END_STATE(); case 1324: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(789); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(625); END_STATE(); case 1325: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(201); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(631); END_STATE(); case 1326: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(897); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(461); END_STATE(); case 1327: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(162); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(423); END_STATE(); case 1328: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(163); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(164); END_STATE(); case 1329: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(166); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(367); END_STATE(); case 1330: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(913); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(370); END_STATE(); case 1331: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(172); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(440); END_STATE(); case 1332: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(174); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(373); END_STATE(); case 1333: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(863); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(377); END_STATE(); case 1334: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(864); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(639); END_STATE(); case 1335: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(866); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(636); END_STATE(); case 1336: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1537); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1565); END_STATE(); case 1337: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(329); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(128); END_STATE(); case 1338: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(278); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(872); END_STATE(); case 1339: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(219); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(363); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(146); END_STATE(); case 1340: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(808); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(801); END_STATE(); case 1341: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1394); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(203); END_STATE(); case 1342: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(289); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(911); END_STATE(); case 1343: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1531); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(162); END_STATE(); case 1344: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1393); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(163); END_STATE(); case 1345: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1576); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(166); END_STATE(); case 1346: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1549); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(927); END_STATE(); case 1347: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1458); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(171); END_STATE(); case 1348: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1445); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(173); END_STATE(); case 1349: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1449); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(877); END_STATE(); case 1350: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1448); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(878); END_STATE(); case 1351: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(983); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(880); END_STATE(); case 1352: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(705); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1554); END_STATE(); case 1353: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(258); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(333); END_STATE(); case 1354: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(277); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(281); END_STATE(); case 1355: + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(221); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(992); + lookahead == 'y') ADVANCE(369); END_STATE(); case 1356: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1075); + lookahead == 'y') ADVANCE(820); END_STATE(); case 1357: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1144); + lookahead == 'y') ADVANCE(1410); END_STATE(); case 1358: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1140); + lookahead == 'y') ADVANCE(292); END_STATE(); case 1359: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(126); + lookahead == 'y') ADVANCE(1548); END_STATE(); case 1360: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(156); + lookahead == 'y') ADVANCE(1409); END_STATE(); case 1361: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1121); + lookahead == 'y') ADVANCE(1593); END_STATE(); case 1362: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1081); + lookahead == 'y') ADVANCE(1566); END_STATE(); case 1363: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1227); + lookahead == 'y') ADVANCE(1475); END_STATE(); case 1364: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1084); + lookahead == 'y') ADVANCE(1462); END_STATE(); case 1365: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(986); + lookahead == 'y') ADVANCE(1466); END_STATE(); case 1366: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(676); + lookahead == 'y') ADVANCE(1465); END_STATE(); case 1367: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(337); + lookahead == 'y') ADVANCE(998); END_STATE(); case 1368: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(567); + lookahead == 'y') ADVANCE(714); END_STATE(); case 1369: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(998); + lookahead == 'y') ADVANCE(260); END_STATE(); case 1370: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(366); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(280); END_STATE(); case 1371: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(373); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1008); END_STATE(); case 1372: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1091); + END_STATE(); + case 1373: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1159); + END_STATE(); + case 1374: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1155); + END_STATE(); + case 1375: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(126); + END_STATE(); + case 1376: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(156); + END_STATE(); + case 1377: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1136); + END_STATE(); + case 1378: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1097); + END_STATE(); + case 1379: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1243); + END_STATE(); + case 1380: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1100); + END_STATE(); + case 1381: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1001); + END_STATE(); + case 1382: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(685); + END_STATE(); + case 1383: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(341); + END_STATE(); + case 1384: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(574); + END_STATE(); + case 1385: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1014); + END_STATE(); + case 1386: + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(372); + END_STATE(); + case 1387: + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(379); + END_STATE(); + case 1388: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1428); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1445); END_STATE(); - case 1373: - if (eof) ADVANCE(1374); - if (lookahead == '"') ADVANCE(1389); - if (lookahead == '#') ADVANCE(1375); - if (lookahead == '=') ADVANCE(1387); - if (lookahead == 'A') ADVANCE(302); + case 1389: + if (eof) ADVANCE(1390); + if (lookahead == '"') ADVANCE(1405); + if (lookahead == '#') ADVANCE(1391); + if (lookahead == '=') ADVANCE(1403); + if (lookahead == 'A') ADVANCE(306); if (lookahead == 'C') ADVANCE(121); - if (lookahead == 'E') ADVANCE(802); - if (lookahead == 'L') ADVANCE(877); - if (lookahead == 'N') ADVANCE(954); - if (lookahead == 'R') ADVANCE(350); - if (lookahead == 'T') ADVANCE(244); + if (lookahead == 'E') ADVANCE(814); + if (lookahead == 'L') ADVANCE(891); + if (lookahead == 'N') ADVANCE(973); + if (lookahead == 'R') ADVANCE(355); + if (lookahead == 'T') ADVANCE(246); if (lookahead == 'a') ADVANCE(75); if (lookahead == 'c') ADVANCE(107); if (lookahead == 'e') ADVANCE(77); @@ -10734,714 +10844,717 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'B' || lookahead == 'b') ADVANCE(127); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1340); + lookahead == 'd') ADVANCE(1356); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(582); + lookahead == 'f') ADVANCE(590); if (lookahead == 'G' || lookahead == 'g') ADVANCE(131); if (lookahead == 'H' || lookahead == 'h') ADVANCE(136); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(321); + lookahead == 'i') ADVANCE(325); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(230); + lookahead == 'k') ADVANCE(232); if (lookahead == 'M' || lookahead == 'm') ADVANCE(122); if (lookahead == 'P' || lookahead == 'p') ADVANCE(123); if (lookahead == 'S' || - lookahead == 's') ADVANCE(352); + lookahead == 's') ADVANCE(357); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(977); + lookahead == 'u') ADVANCE(992); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(439); + lookahead == 'v') ADVANCE(447); if (lookahead == 'X' || lookahead == 'x') ADVANCE(130); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(1373) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1376); + lookahead == ' ') SKIP(1389) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1392); END_STATE(); - case 1374: + case 1390: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 1375: + case 1391: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1375); + lookahead != '\n') ADVANCE(1391); END_STATE(); - case 1376: + case 1392: ACCEPT_TOKEN(sym_number); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1376); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1392); END_STATE(); - case 1377: + case 1393: ACCEPT_TOKEN(aux_sym_boolean_token1); END_STATE(); - case 1378: + case 1394: ACCEPT_TOKEN(aux_sym_boolean_token2); END_STATE(); - case 1379: + case 1395: ACCEPT_TOKEN(aux_sym_boolean_token3); END_STATE(); - case 1380: + case 1396: ACCEPT_TOKEN(aux_sym_boolean_token3); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(379); + lookahead == 'n') ADVANCE(386); END_STATE(); - case 1381: + case 1397: ACCEPT_TOKEN(aux_sym_boolean_token4); END_STATE(); - case 1382: + case 1398: ACCEPT_TOKEN(aux_sym_pattern_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1382); + lookahead != '\n') ADVANCE(1398); END_STATE(); - case 1383: + case 1399: ACCEPT_TOKEN(sym_time_format); END_STATE(); - case 1384: + case 1400: ACCEPT_TOKEN(sym_time_format); - if (sym_time_format_character_set_1(lookahead)) ADVANCE(1383); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1384); + if (sym_time_format_character_set_1(lookahead)) ADVANCE(1399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1400); END_STATE(); - case 1385: + case 1401: ACCEPT_TOKEN(aux_sym_host_token1); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(193); + lookahead == 'b') ADVANCE(194); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(451); + lookahead == 'k') ADVANCE(459); if (lookahead == 'N' || lookahead == 'n') ADVANCE(135); END_STATE(); - case 1386: + case 1402: ACCEPT_TOKEN(aux_sym_host_token2); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1386); + lookahead == ' ') ADVANCE(1402); END_STATE(); - case 1387: + case 1403: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 1388: + case 1404: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1382); + lookahead != '\n') ADVANCE(1398); END_STATE(); - case 1389: + case 1405: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 1390: + case 1406: ACCEPT_TOKEN(anon_sym_DQUOTE); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1382); + lookahead != '\n') ADVANCE(1398); END_STATE(); - case 1391: + case 1407: ACCEPT_TOKEN(aux_sym_match_token1); END_STATE(); - case 1392: + case 1408: ACCEPT_TOKEN(aux_sym_add_keys_to_agent_token1); END_STATE(); - case 1393: + case 1409: ACCEPT_TOKEN(aux_sym_address_family_token1); END_STATE(); - case 1394: + case 1410: ACCEPT_TOKEN(aux_sym_address_family_value_token1); END_STATE(); - case 1395: + case 1411: ACCEPT_TOKEN(aux_sym_address_family_value_token2); - if (lookahead == '6') ADVANCE(1396); + if (lookahead == '6') ADVANCE(1412); END_STATE(); - case 1396: + case 1412: ACCEPT_TOKEN(aux_sym_address_family_value_token3); END_STATE(); - case 1397: + case 1413: ACCEPT_TOKEN(aux_sym_batch_mode_token1); END_STATE(); - case 1398: + case 1414: ACCEPT_TOKEN(aux_sym_bind_address_token1); END_STATE(); - case 1399: + case 1415: ACCEPT_TOKEN(aux_sym_bind_interface_token1); END_STATE(); - case 1400: + case 1416: ACCEPT_TOKEN(aux_sym_canonical_domains_token1); END_STATE(); - case 1401: + case 1417: ACCEPT_TOKEN(aux_sym_canonicalize_fallback_local_token1); END_STATE(); - case 1402: + case 1418: ACCEPT_TOKEN(aux_sym_canonicalize_hostname_token1); END_STATE(); - case 1403: + case 1419: ACCEPT_TOKEN(aux_sym_canonicalize_hostname_value_token1); END_STATE(); - case 1404: + case 1420: ACCEPT_TOKEN(aux_sym_canonicalize_hostname_value_token2); END_STATE(); - case 1405: + case 1421: ACCEPT_TOKEN(aux_sym_canonicalize_max_dots_token1); END_STATE(); - case 1406: + case 1422: ACCEPT_TOKEN(aux_sym_canonicalize_permitted_cnames_token1); END_STATE(); - case 1407: + case 1423: ACCEPT_TOKEN(aux_sym_ca_signature_algorithms_token1); END_STATE(); - case 1408: + case 1424: ACCEPT_TOKEN(aux_sym_certificate_file_token1); END_STATE(); - case 1409: + case 1425: ACCEPT_TOKEN(aux_sym_challenge_response_authentication_token1); END_STATE(); - case 1410: + case 1426: ACCEPT_TOKEN(aux_sym_check_host_ip_token1); END_STATE(); - case 1411: + case 1427: ACCEPT_TOKEN(aux_sym_ciphers_token1); END_STATE(); - case 1412: + case 1428: ACCEPT_TOKEN(aux_sym_cipher_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1411); + lookahead == 's') ADVANCE(1427); END_STATE(); - case 1413: + case 1429: ACCEPT_TOKEN(aux_sym_clear_all_forwardings_token1); END_STATE(); - case 1414: + case 1430: ACCEPT_TOKEN(aux_sym_compression_token1); END_STATE(); - case 1415: + case 1431: ACCEPT_TOKEN(aux_sym_connection_attempts_token1); END_STATE(); - case 1416: + case 1432: ACCEPT_TOKEN(aux_sym_connect_timeout_token1); END_STATE(); - case 1417: + case 1433: ACCEPT_TOKEN(aux_sym_control_master_token1); END_STATE(); - case 1418: + case 1434: ACCEPT_TOKEN(aux_sym_control_master_value_token1); END_STATE(); - case 1419: + case 1435: ACCEPT_TOKEN(aux_sym_control_master_value_token2); END_STATE(); - case 1420: + case 1436: ACCEPT_TOKEN(aux_sym_control_master_value_token2); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1104); + lookahead == 'a') ADVANCE(1120); END_STATE(); - case 1421: + case 1437: ACCEPT_TOKEN(aux_sym_control_master_value_token3); END_STATE(); - case 1422: + case 1438: ACCEPT_TOKEN(aux_sym_control_path_token1); END_STATE(); - case 1423: + case 1439: ACCEPT_TOKEN(aux_sym_control_persist_token1); END_STATE(); - case 1424: + case 1440: ACCEPT_TOKEN(aux_sym_dynamic_forward_token1); END_STATE(); - case 1425: + case 1441: + ACCEPT_TOKEN(aux_sym_enable_escape_commandline_token1); + END_STATE(); + case 1442: ACCEPT_TOKEN(aux_sym_enable_ssh_keysign_token1); END_STATE(); - case 1426: + case 1443: ACCEPT_TOKEN(aux_sym_escape_char_token1); END_STATE(); - case 1427: + case 1444: ACCEPT_TOKEN(anon_sym_none); END_STATE(); - case 1428: + case 1445: ACCEPT_TOKEN(aux_sym_escape_char_value_token1); END_STATE(); - case 1429: + case 1446: ACCEPT_TOKEN(aux_sym_escape_char_value_token1); - if (lookahead == '"') ADVANCE(1389); - if (lookahead == '#') ADVANCE(1428); - if (lookahead == '=') ADVANCE(1387); - if (lookahead == '^') ADVANCE(1372); - if (lookahead == 'n') ADVANCE(1432); + if (lookahead == '"') ADVANCE(1405); + if (lookahead == '#') ADVANCE(1445); + if (lookahead == '=') ADVANCE(1403); + if (lookahead == '^') ADVANCE(1388); + if (lookahead == 'n') ADVANCE(1449); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(1429); - if (lookahead != 0) ADVANCE(1428); + lookahead == ' ') ADVANCE(1446); + if (lookahead != 0) ADVANCE(1445); END_STATE(); - case 1430: + case 1447: ACCEPT_TOKEN(aux_sym_escape_char_value_token1); - if (lookahead == '"') ADVANCE(1389); - if (lookahead == '#') ADVANCE(1428); - if (lookahead == '^') ADVANCE(1372); - if (lookahead == 'n') ADVANCE(1432); + if (lookahead == '"') ADVANCE(1405); + if (lookahead == '#') ADVANCE(1445); + if (lookahead == '^') ADVANCE(1388); + if (lookahead == 'n') ADVANCE(1449); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(1430); - if (lookahead != 0) ADVANCE(1428); + lookahead == ' ') ADVANCE(1447); + if (lookahead != 0) ADVANCE(1445); END_STATE(); - case 1431: + case 1448: ACCEPT_TOKEN(aux_sym_escape_char_value_token1); - if (lookahead == '#') ADVANCE(1428); - if (lookahead == '^') ADVANCE(1372); - if (lookahead == 'n') ADVANCE(1432); + if (lookahead == '#') ADVANCE(1445); + if (lookahead == '^') ADVANCE(1388); + if (lookahead == 'n') ADVANCE(1449); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(1431); - if (lookahead != 0) ADVANCE(1428); + lookahead == ' ') ADVANCE(1448); + if (lookahead != 0) ADVANCE(1445); END_STATE(); - case 1432: + case 1449: ACCEPT_TOKEN(aux_sym_escape_char_value_token1); if (lookahead == 'o') ADVANCE(95); END_STATE(); - case 1433: + case 1450: ACCEPT_TOKEN(aux_sym_exit_on_forward_failure_token1); END_STATE(); - case 1434: + case 1451: ACCEPT_TOKEN(aux_sym_fingerprint_hash_token1); END_STATE(); - case 1435: + case 1452: ACCEPT_TOKEN(anon_sym_md5); END_STATE(); - case 1436: + case 1453: ACCEPT_TOKEN(anon_sym_sha256); END_STATE(); - case 1437: + case 1454: ACCEPT_TOKEN(aux_sym_fork_after_authentication_token1); END_STATE(); - case 1438: + case 1455: ACCEPT_TOKEN(aux_sym_forward_agent_token1); END_STATE(); - case 1439: + case 1456: ACCEPT_TOKEN(aux_sym_forward_x11_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(650); + lookahead == 't') ADVANCE(659); END_STATE(); - case 1440: + case 1457: ACCEPT_TOKEN(aux_sym_forward_x11_timeout_token1); END_STATE(); - case 1441: + case 1458: ACCEPT_TOKEN(aux_sym_forward_x11_trusted_token1); END_STATE(); - case 1442: + case 1459: ACCEPT_TOKEN(aux_sym_gateway_ports_token1); END_STATE(); - case 1443: + case 1460: ACCEPT_TOKEN(aux_sym_global_known_hosts_file_token1); END_STATE(); - case 1444: + case 1461: ACCEPT_TOKEN(aux_sym_gssapi_authentication_token1); END_STATE(); - case 1445: + case 1462: ACCEPT_TOKEN(aux_sym_gssapi_client_identity_token1); END_STATE(); - case 1446: + case 1463: ACCEPT_TOKEN(aux_sym_gssapi_delegate_credentials_token1); END_STATE(); - case 1447: + case 1464: ACCEPT_TOKEN(aux_sym_gssapi_key_exchange_token1); END_STATE(); - case 1448: + case 1465: ACCEPT_TOKEN(aux_sym_gssapi_renewal_forces_rekey_token1); END_STATE(); - case 1449: + case 1466: ACCEPT_TOKEN(aux_sym_gssapi_server_identity_token1); END_STATE(); - case 1450: + case 1467: ACCEPT_TOKEN(aux_sym_gssapi_trust_dns_token1); END_STATE(); - case 1451: + case 1468: ACCEPT_TOKEN(aux_sym_gssapi_kex_algorithms_token1); END_STATE(); - case 1452: + case 1469: ACCEPT_TOKEN(aux_sym_hash_known_hosts_token1); END_STATE(); - case 1453: + case 1470: ACCEPT_TOKEN(aux_sym_hostbased_accepted_algorithms_token1); END_STATE(); - case 1454: + case 1471: ACCEPT_TOKEN(aux_sym_hostbased_authentication_token1); END_STATE(); - case 1455: + case 1472: ACCEPT_TOKEN(aux_sym_host_key_algorithms_token1); END_STATE(); - case 1456: + case 1473: ACCEPT_TOKEN(aux_sym_host_key_alias_token1); END_STATE(); - case 1457: + case 1474: ACCEPT_TOKEN(aux_sym_hostname_token1); END_STATE(); - case 1458: + case 1475: ACCEPT_TOKEN(aux_sym_identities_only_token1); END_STATE(); - case 1459: + case 1476: ACCEPT_TOKEN(aux_sym_identity_agent_token1); END_STATE(); - case 1460: + case 1477: ACCEPT_TOKEN(aux_sym_identity_file_token1); END_STATE(); - case 1461: + case 1478: ACCEPT_TOKEN(aux_sym_ignore_unknown_token1); END_STATE(); - case 1462: + case 1479: ACCEPT_TOKEN(aux_sym_include_token1); END_STATE(); - case 1463: + case 1480: ACCEPT_TOKEN(aux_sym_ip_qos_token1); END_STATE(); - case 1464: + case 1481: ACCEPT_TOKEN(anon_sym_af11); END_STATE(); - case 1465: + case 1482: ACCEPT_TOKEN(anon_sym_af12); END_STATE(); - case 1466: + case 1483: ACCEPT_TOKEN(anon_sym_af13); END_STATE(); - case 1467: + case 1484: ACCEPT_TOKEN(anon_sym_af21); END_STATE(); - case 1468: + case 1485: ACCEPT_TOKEN(anon_sym_af22); END_STATE(); - case 1469: + case 1486: ACCEPT_TOKEN(anon_sym_af23); END_STATE(); - case 1470: + case 1487: ACCEPT_TOKEN(anon_sym_af31); END_STATE(); - case 1471: + case 1488: ACCEPT_TOKEN(anon_sym_af32); END_STATE(); - case 1472: + case 1489: ACCEPT_TOKEN(anon_sym_af33); END_STATE(); - case 1473: + case 1490: ACCEPT_TOKEN(anon_sym_af41); END_STATE(); - case 1474: + case 1491: ACCEPT_TOKEN(anon_sym_af42); END_STATE(); - case 1475: + case 1492: ACCEPT_TOKEN(anon_sym_af43); END_STATE(); - case 1476: + case 1493: ACCEPT_TOKEN(anon_sym_cs0); END_STATE(); - case 1477: + case 1494: ACCEPT_TOKEN(anon_sym_cs1); END_STATE(); - case 1478: + case 1495: ACCEPT_TOKEN(anon_sym_cs2); END_STATE(); - case 1479: + case 1496: ACCEPT_TOKEN(anon_sym_cs3); END_STATE(); - case 1480: + case 1497: ACCEPT_TOKEN(anon_sym_cs4); END_STATE(); - case 1481: + case 1498: ACCEPT_TOKEN(anon_sym_cs5); END_STATE(); - case 1482: + case 1499: ACCEPT_TOKEN(anon_sym_cs6); END_STATE(); - case 1483: + case 1500: ACCEPT_TOKEN(anon_sym_cs7); END_STATE(); - case 1484: + case 1501: ACCEPT_TOKEN(anon_sym_ef); END_STATE(); - case 1485: + case 1502: ACCEPT_TOKEN(anon_sym_le); END_STATE(); - case 1486: + case 1503: ACCEPT_TOKEN(anon_sym_lowdelay); END_STATE(); - case 1487: + case 1504: ACCEPT_TOKEN(anon_sym_throughput); END_STATE(); - case 1488: + case 1505: ACCEPT_TOKEN(anon_sym_reliability); END_STATE(); - case 1489: + case 1506: ACCEPT_TOKEN(aux_sym_kbd_interactive_authentication_token1); END_STATE(); - case 1490: + case 1507: ACCEPT_TOKEN(aux_sym_kbd_interactive_devices_token1); END_STATE(); - case 1491: + case 1508: ACCEPT_TOKEN(aux_sym_kex_algorithms_token1); END_STATE(); - case 1492: + case 1509: ACCEPT_TOKEN(aux_sym_known_hosts_command_token1); END_STATE(); - case 1493: + case 1510: ACCEPT_TOKEN(aux_sym_local_command_token1); END_STATE(); - case 1494: + case 1511: ACCEPT_TOKEN(aux_sym_local_forward_token1); END_STATE(); - case 1495: + case 1512: ACCEPT_TOKEN(aux_sym_log_level_token1); END_STATE(); - case 1496: + case 1513: ACCEPT_TOKEN(aux_sym_log_level_value_token1); END_STATE(); - case 1497: + case 1514: ACCEPT_TOKEN(aux_sym_log_level_value_token2); END_STATE(); - case 1498: + case 1515: ACCEPT_TOKEN(aux_sym_log_level_value_token3); END_STATE(); - case 1499: + case 1516: ACCEPT_TOKEN(aux_sym_log_level_value_token4); END_STATE(); - case 1500: + case 1517: ACCEPT_TOKEN(aux_sym_log_level_value_token5); END_STATE(); - case 1501: + case 1518: ACCEPT_TOKEN(aux_sym_log_level_value_token6); - if (lookahead == '1') ADVANCE(1502); - if (lookahead == '2') ADVANCE(1503); - if (lookahead == '3') ADVANCE(1504); + if (lookahead == '1') ADVANCE(1519); + if (lookahead == '2') ADVANCE(1520); + if (lookahead == '3') ADVANCE(1521); END_STATE(); - case 1502: + case 1519: ACCEPT_TOKEN(aux_sym_log_level_value_token7); END_STATE(); - case 1503: + case 1520: ACCEPT_TOKEN(aux_sym_log_level_value_token8); END_STATE(); - case 1504: + case 1521: ACCEPT_TOKEN(aux_sym_log_level_value_token9); END_STATE(); - case 1505: + case 1522: ACCEPT_TOKEN(aux_sym_log_verbose_token1); END_STATE(); - case 1506: + case 1523: ACCEPT_TOKEN(aux_sym_macs_token1); END_STATE(); - case 1507: + case 1524: ACCEPT_TOKEN(aux_sym_no_host_authentication_for_localhost_token1); END_STATE(); - case 1508: + case 1525: ACCEPT_TOKEN(aux_sym_number_of_password_prompts_token1); END_STATE(); - case 1509: + case 1526: ACCEPT_TOKEN(aux_sym_password_authentication_token1); END_STATE(); - case 1510: + case 1527: ACCEPT_TOKEN(aux_sym_permit_local_command_token1); END_STATE(); - case 1511: + case 1528: ACCEPT_TOKEN(aux_sym_permit_remote_open_token1); END_STATE(); - case 1512: + case 1529: ACCEPT_TOKEN(aux_sym_pkcs11_provider_token1); END_STATE(); - case 1513: + case 1530: ACCEPT_TOKEN(aux_sym_port_token1); END_STATE(); - case 1514: + case 1531: ACCEPT_TOKEN(aux_sym_preferred_authentications_token1); END_STATE(); - case 1515: + case 1532: ACCEPT_TOKEN(aux_sym_protocol_token1); END_STATE(); - case 1516: + case 1533: ACCEPT_TOKEN(anon_sym_1); END_STATE(); - case 1517: + case 1534: ACCEPT_TOKEN(anon_sym_1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1376); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1392); END_STATE(); - case 1518: + case 1535: ACCEPT_TOKEN(anon_sym_2); END_STATE(); - case 1519: + case 1536: ACCEPT_TOKEN(anon_sym_2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1376); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1392); END_STATE(); - case 1520: + case 1537: ACCEPT_TOKEN(aux_sym_proxy_command_token1); END_STATE(); - case 1521: + case 1538: ACCEPT_TOKEN(aux_sym_proxy_jump_token1); END_STATE(); - case 1522: + case 1539: ACCEPT_TOKEN(aux_sym_proxy_use_fdpass_token1); END_STATE(); - case 1523: + case 1540: ACCEPT_TOKEN(aux_sym_pubkey_accepted_algorithms_token1); END_STATE(); - case 1524: + case 1541: ACCEPT_TOKEN(aux_sym_pubkey_accepted_key_types_token1); END_STATE(); - case 1525: + case 1542: ACCEPT_TOKEN(aux_sym_pubkey_authentication_token1); END_STATE(); - case 1526: + case 1543: ACCEPT_TOKEN(aux_sym_pubkey_authentication_value_token1); END_STATE(); - case 1527: + case 1544: ACCEPT_TOKEN(aux_sym_pubkey_authentication_value_token2); END_STATE(); - case 1528: + case 1545: ACCEPT_TOKEN(aux_sym_rekey_limit_token1); END_STATE(); - case 1529: + case 1546: ACCEPT_TOKEN(aux_sym_remote_command_token1); END_STATE(); - case 1530: + case 1547: ACCEPT_TOKEN(aux_sym_remote_forward_token1); END_STATE(); - case 1531: + case 1548: ACCEPT_TOKEN(aux_sym_request_tty_token1); END_STATE(); - case 1532: + case 1549: ACCEPT_TOKEN(aux_sym_request_tty_value_token1); END_STATE(); - case 1533: + case 1550: ACCEPT_TOKEN(aux_sym_required_rsa_size_token1); END_STATE(); - case 1534: + case 1551: ACCEPT_TOKEN(aux_sym_revoked_host_keys_token1); END_STATE(); - case 1535: + case 1552: ACCEPT_TOKEN(aux_sym_security_key_provider_token1); END_STATE(); - case 1536: + case 1553: ACCEPT_TOKEN(aux_sym_send_env_token1); END_STATE(); - case 1537: + case 1554: ACCEPT_TOKEN(aux_sym_server_alive_count_max_token1); END_STATE(); - case 1538: + case 1555: ACCEPT_TOKEN(aux_sym_server_alive_interval_token1); END_STATE(); - case 1539: + case 1556: ACCEPT_TOKEN(aux_sym_session_type_token1); END_STATE(); - case 1540: + case 1557: ACCEPT_TOKEN(aux_sym_session_type_value_token1); END_STATE(); - case 1541: + case 1558: ACCEPT_TOKEN(aux_sym_session_type_value_token2); END_STATE(); - case 1542: + case 1559: ACCEPT_TOKEN(aux_sym_set_env_token1); END_STATE(); - case 1543: + case 1560: ACCEPT_TOKEN(aux_sym_stdin_null_token1); END_STATE(); - case 1544: + case 1561: ACCEPT_TOKEN(aux_sym_stream_local_bind_mask_token1); END_STATE(); - case 1545: + case 1562: ACCEPT_TOKEN(aux_sym_stream_local_bind_unlink_token1); END_STATE(); - case 1546: + case 1563: ACCEPT_TOKEN(aux_sym_strict_host_key_checking_token1); END_STATE(); - case 1547: + case 1564: ACCEPT_TOKEN(aux_sym_strict_host_key_checking_value_token1); END_STATE(); - case 1548: + case 1565: ACCEPT_TOKEN(aux_sym_strict_host_key_checking_value_token2); END_STATE(); - case 1549: + case 1566: ACCEPT_TOKEN(aux_sym_syslog_facility_token1); END_STATE(); - case 1550: + case 1567: ACCEPT_TOKEN(anon_sym_DAEMON); END_STATE(); - case 1551: + case 1568: ACCEPT_TOKEN(anon_sym_USER); END_STATE(); - case 1552: + case 1569: ACCEPT_TOKEN(anon_sym_AUTH); END_STATE(); - case 1553: + case 1570: ACCEPT_TOKEN(anon_sym_LOCAL0); END_STATE(); - case 1554: + case 1571: ACCEPT_TOKEN(anon_sym_LOCAL1); END_STATE(); - case 1555: + case 1572: ACCEPT_TOKEN(anon_sym_LOCAL2); END_STATE(); - case 1556: + case 1573: ACCEPT_TOKEN(anon_sym_LOCAL3); END_STATE(); - case 1557: + case 1574: ACCEPT_TOKEN(anon_sym_LOCAL4); END_STATE(); - case 1558: + case 1575: ACCEPT_TOKEN(anon_sym_LOCAL5); END_STATE(); - case 1559: + case 1576: ACCEPT_TOKEN(anon_sym_LOCAL6); END_STATE(); - case 1560: + case 1577: ACCEPT_TOKEN(anon_sym_LOCAL7); END_STATE(); - case 1561: + case 1578: ACCEPT_TOKEN(aux_sym_tcp_keep_alive_token1); END_STATE(); - case 1562: + case 1579: ACCEPT_TOKEN(aux_sym_keep_alive_token1); END_STATE(); - case 1563: + case 1580: ACCEPT_TOKEN(aux_sym_tunnel_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(387); + lookahead == 'd') ADVANCE(394); END_STATE(); - case 1564: + case 1581: ACCEPT_TOKEN(anon_sym_yes); END_STATE(); - case 1565: + case 1582: ACCEPT_TOKEN(anon_sym_no); END_STATE(); - case 1566: + case 1583: ACCEPT_TOKEN(anon_sym_point_DASHto_DASHpoint); END_STATE(); - case 1567: + case 1584: ACCEPT_TOKEN(anon_sym_ethernet); END_STATE(); - case 1568: + case 1585: ACCEPT_TOKEN(aux_sym_tunnel_device_token1); END_STATE(); - case 1569: + case 1586: ACCEPT_TOKEN(aux_sym_update_host_keys_token1); END_STATE(); - case 1570: + case 1587: ACCEPT_TOKEN(aux_sym_use_keychain_token1); END_STATE(); - case 1571: + case 1588: ACCEPT_TOKEN(aux_sym_use_roaming_token1); END_STATE(); - case 1572: + case 1589: ACCEPT_TOKEN(aux_sym_user_token1); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(868); + lookahead == 'k') ADVANCE(882); if (lookahead == 'O' || lookahead == 'o') ADVANCE(182); END_STATE(); - case 1573: + case 1590: ACCEPT_TOKEN(aux_sym_user_token1); if (lookahead == 'O' || lookahead == 'o') ADVANCE(182); END_STATE(); - case 1574: + case 1591: ACCEPT_TOKEN(aux_sym_user_known_hosts_file_token1); END_STATE(); - case 1575: + case 1592: ACCEPT_TOKEN(aux_sym_verify_host_key_dns_token1); END_STATE(); - case 1576: + case 1593: ACCEPT_TOKEN(aux_sym_visual_host_key_token1); END_STATE(); - case 1577: + case 1594: ACCEPT_TOKEN(aux_sym_xauth_location_token1); END_STATE(); default: @@ -11451,803 +11564,803 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 1373}, - [2] = {.lex_state = 1373}, - [3] = {.lex_state = 1373}, - [4] = {.lex_state = 1373}, - [5] = {.lex_state = 1373}, - [6] = {.lex_state = 1373}, - [7] = {.lex_state = 1373}, - [8] = {.lex_state = 1373}, - [9] = {.lex_state = 1373}, - [10] = {.lex_state = 1373}, - [11] = {.lex_state = 1373}, - [12] = {.lex_state = 1373}, - [13] = {.lex_state = 1373}, - [14] = {.lex_state = 1373}, - [15] = {.lex_state = 1373}, - [16] = {.lex_state = 1373}, - [17] = {.lex_state = 1373}, - [18] = {.lex_state = 1373}, - [19] = {.lex_state = 1373}, - [20] = {.lex_state = 1373}, - [21] = {.lex_state = 1373}, - [22] = {.lex_state = 1373}, - [23] = {.lex_state = 1373}, - [24] = {.lex_state = 1373}, - [25] = {.lex_state = 1373}, - [26] = {.lex_state = 1373}, - [27] = {.lex_state = 1373}, - [28] = {.lex_state = 1373}, - [29] = {.lex_state = 1373}, - [30] = {.lex_state = 1373}, - [31] = {.lex_state = 1373}, - [32] = {.lex_state = 1373}, - [33] = {.lex_state = 1373}, - [34] = {.lex_state = 1373}, - [35] = {.lex_state = 1373}, - [36] = {.lex_state = 1373}, - [37] = {.lex_state = 1373}, - [38] = {.lex_state = 1373}, - [39] = {.lex_state = 1373}, - [40] = {.lex_state = 1373}, - [41] = {.lex_state = 1373}, - [42] = {.lex_state = 1373}, - [43] = {.lex_state = 1373}, - [44] = {.lex_state = 1373}, - [45] = {.lex_state = 1373}, - [46] = {.lex_state = 1373}, - [47] = {.lex_state = 1373}, - [48] = {.lex_state = 1373}, - [49] = {.lex_state = 1373}, - [50] = {.lex_state = 1373}, - [51] = {.lex_state = 1373}, - [52] = {.lex_state = 1373}, - [53] = {.lex_state = 1373}, - [54] = {.lex_state = 1373}, - [55] = {.lex_state = 1373}, - [56] = {.lex_state = 1373}, - [57] = {.lex_state = 1373}, - [58] = {.lex_state = 1373}, - [59] = {.lex_state = 1373}, - [60] = {.lex_state = 1373}, - [61] = {.lex_state = 1373}, - [62] = {.lex_state = 1373}, - [63] = {.lex_state = 1373}, - [64] = {.lex_state = 1373}, - [65] = {.lex_state = 1373}, - [66] = {.lex_state = 1373}, - [67] = {.lex_state = 1373}, - [68] = {.lex_state = 1373}, - [69] = {.lex_state = 1373}, - [70] = {.lex_state = 1373}, - [71] = {.lex_state = 1373}, - [72] = {.lex_state = 1373}, - [73] = {.lex_state = 1373}, - [74] = {.lex_state = 1373}, - [75] = {.lex_state = 1373}, - [76] = {.lex_state = 1373}, - [77] = {.lex_state = 1373}, - [78] = {.lex_state = 1373}, - [79] = {.lex_state = 1373}, - [80] = {.lex_state = 1373}, - [81] = {.lex_state = 1373}, - [82] = {.lex_state = 1373}, - [83] = {.lex_state = 1373}, - [84] = {.lex_state = 1373}, - [85] = {.lex_state = 1373}, - [86] = {.lex_state = 1373}, - [87] = {.lex_state = 1373}, - [88] = {.lex_state = 1373}, - [89] = {.lex_state = 1373}, - [90] = {.lex_state = 1373}, - [91] = {.lex_state = 1373}, - [92] = {.lex_state = 1373}, - [93] = {.lex_state = 1373}, - [94] = {.lex_state = 1373}, - [95] = {.lex_state = 1373}, - [96] = {.lex_state = 1373}, - [97] = {.lex_state = 1373}, - [98] = {.lex_state = 1373}, - [99] = {.lex_state = 1373}, - [100] = {.lex_state = 1373}, - [101] = {.lex_state = 1373}, - [102] = {.lex_state = 1373}, - [103] = {.lex_state = 1373}, - [104] = {.lex_state = 1373}, - [105] = {.lex_state = 1373}, - [106] = {.lex_state = 1373}, - [107] = {.lex_state = 1373}, - [108] = {.lex_state = 1373}, - [109] = {.lex_state = 1373}, - [110] = {.lex_state = 1373}, - [111] = {.lex_state = 1373}, - [112] = {.lex_state = 1373}, - [113] = {.lex_state = 1373}, - [114] = {.lex_state = 1373}, - [115] = {.lex_state = 1373}, - [116] = {.lex_state = 1373}, - [117] = {.lex_state = 1373}, - [118] = {.lex_state = 1373}, - [119] = {.lex_state = 1373}, - [120] = {.lex_state = 1373}, - [121] = {.lex_state = 1373}, - [122] = {.lex_state = 1373}, - [123] = {.lex_state = 1373}, - [124] = {.lex_state = 1373}, - [125] = {.lex_state = 1373}, - [126] = {.lex_state = 1373}, - [127] = {.lex_state = 1373}, - [128] = {.lex_state = 1373}, - [129] = {.lex_state = 1373}, - [130] = {.lex_state = 1373}, - [131] = {.lex_state = 1373}, - [132] = {.lex_state = 1373}, - [133] = {.lex_state = 1373}, - [134] = {.lex_state = 1373}, - [135] = {.lex_state = 1373}, - [136] = {.lex_state = 1373}, - [137] = {.lex_state = 1373}, - [138] = {.lex_state = 1373}, - [139] = {.lex_state = 1373}, - [140] = {.lex_state = 1373}, - [141] = {.lex_state = 1373}, - [142] = {.lex_state = 1373}, - [143] = {.lex_state = 1373}, - [144] = {.lex_state = 1373}, - [145] = {.lex_state = 1373}, - [146] = {.lex_state = 1373}, - [147] = {.lex_state = 1373}, - [148] = {.lex_state = 1373}, - [149] = {.lex_state = 1373}, - [150] = {.lex_state = 1373}, - [151] = {.lex_state = 1373}, - [152] = {.lex_state = 1373}, - [153] = {.lex_state = 1373}, - [154] = {.lex_state = 1373}, - [155] = {.lex_state = 1373}, - [156] = {.lex_state = 1373}, - [157] = {.lex_state = 1373}, - [158] = {.lex_state = 1373}, - [159] = {.lex_state = 1373}, - [160] = {.lex_state = 1373}, - [161] = {.lex_state = 1373}, - [162] = {.lex_state = 1373}, - [163] = {.lex_state = 1373}, - [164] = {.lex_state = 1373}, - [165] = {.lex_state = 1373}, - [166] = {.lex_state = 1373}, - [167] = {.lex_state = 1373}, - [168] = {.lex_state = 1373}, - [169] = {.lex_state = 1373}, - [170] = {.lex_state = 1373}, - [171] = {.lex_state = 1373}, - [172] = {.lex_state = 1373}, - [173] = {.lex_state = 1373}, - [174] = {.lex_state = 1373}, - [175] = {.lex_state = 1373}, - [176] = {.lex_state = 1373}, - [177] = {.lex_state = 1373}, - [178] = {.lex_state = 1373}, - [179] = {.lex_state = 1373}, - [180] = {.lex_state = 1373}, - [181] = {.lex_state = 1373}, - [182] = {.lex_state = 1373}, - [183] = {.lex_state = 1373}, - [184] = {.lex_state = 1373}, - [185] = {.lex_state = 1373}, - [186] = {.lex_state = 1373}, - [187] = {.lex_state = 1373}, - [188] = {.lex_state = 1373}, - [189] = {.lex_state = 1373}, - [190] = {.lex_state = 1373}, - [191] = {.lex_state = 1373}, - [192] = {.lex_state = 1373}, - [193] = {.lex_state = 1373}, - [194] = {.lex_state = 1373}, - [195] = {.lex_state = 1373}, - [196] = {.lex_state = 1373}, - [197] = {.lex_state = 1373}, - [198] = {.lex_state = 1373}, - [199] = {.lex_state = 1373}, - [200] = {.lex_state = 1373}, - [201] = {.lex_state = 1373}, - [202] = {.lex_state = 1373}, - [203] = {.lex_state = 1373}, - [204] = {.lex_state = 1373}, - [205] = {.lex_state = 1373}, - [206] = {.lex_state = 1373}, - [207] = {.lex_state = 1373}, - [208] = {.lex_state = 1373}, - [209] = {.lex_state = 1373}, - [210] = {.lex_state = 1373}, - [211] = {.lex_state = 1373}, - [212] = {.lex_state = 1373}, - [213] = {.lex_state = 1373}, - [214] = {.lex_state = 1373}, - [215] = {.lex_state = 1373}, - [216] = {.lex_state = 1373}, - [217] = {.lex_state = 1373}, - [218] = {.lex_state = 1373}, - [219] = {.lex_state = 1373}, - [220] = {.lex_state = 1373}, - [221] = {.lex_state = 1373}, - [222] = {.lex_state = 1373}, - [223] = {.lex_state = 1373}, - [224] = {.lex_state = 1373}, - [225] = {.lex_state = 1373}, - [226] = {.lex_state = 1373}, - [227] = {.lex_state = 1373}, - [228] = {.lex_state = 1373}, - [229] = {.lex_state = 1373}, - [230] = {.lex_state = 1373}, - [231] = {.lex_state = 1373}, - [232] = {.lex_state = 1373}, - [233] = {.lex_state = 1373}, - [234] = {.lex_state = 1373}, - [235] = {.lex_state = 1373}, - [236] = {.lex_state = 1373}, - [237] = {.lex_state = 1373}, - [238] = {.lex_state = 1373}, - [239] = {.lex_state = 1373}, - [240] = {.lex_state = 1373}, - [241] = {.lex_state = 1373}, - [242] = {.lex_state = 1373}, - [243] = {.lex_state = 1373}, - [244] = {.lex_state = 1373}, - [245] = {.lex_state = 1373}, - [246] = {.lex_state = 1373}, - [247] = {.lex_state = 1373}, - [248] = {.lex_state = 1373}, - [249] = {.lex_state = 1373}, - [250] = {.lex_state = 1373}, - [251] = {.lex_state = 1373}, - [252] = {.lex_state = 1373}, - [253] = {.lex_state = 1373}, - [254] = {.lex_state = 1373}, - [255] = {.lex_state = 1373}, - [256] = {.lex_state = 1373}, - [257] = {.lex_state = 1373}, - [258] = {.lex_state = 1373}, - [259] = {.lex_state = 1373}, - [260] = {.lex_state = 1373}, - [261] = {.lex_state = 1373}, - [262] = {.lex_state = 1373}, - [263] = {.lex_state = 1373}, - [264] = {.lex_state = 1373}, - [265] = {.lex_state = 1373}, - [266] = {.lex_state = 1373}, - [267] = {.lex_state = 1373}, - [268] = {.lex_state = 1373}, - [269] = {.lex_state = 1373}, - [270] = {.lex_state = 1373}, - [271] = {.lex_state = 1373}, - [272] = {.lex_state = 1373}, - [273] = {.lex_state = 1373}, - [274] = {.lex_state = 1373}, - [275] = {.lex_state = 1373}, - [276] = {.lex_state = 1373}, - [277] = {.lex_state = 1373}, - [278] = {.lex_state = 1373}, - [279] = {.lex_state = 1373}, - [280] = {.lex_state = 1373}, - [281] = {.lex_state = 1373}, - [282] = {.lex_state = 1373}, - [283] = {.lex_state = 1373}, - [284] = {.lex_state = 1373}, - [285] = {.lex_state = 1373}, - [286] = {.lex_state = 1373}, - [287] = {.lex_state = 1373}, - [288] = {.lex_state = 1373}, - [289] = {.lex_state = 1373}, - [290] = {.lex_state = 1373}, - [291] = {.lex_state = 1373}, - [292] = {.lex_state = 1373}, - [293] = {.lex_state = 1373}, - [294] = {.lex_state = 1373}, - [295] = {.lex_state = 1373}, - [296] = {.lex_state = 1373}, - [297] = {.lex_state = 1373}, - [298] = {.lex_state = 1373}, - [299] = {.lex_state = 1373}, - [300] = {.lex_state = 1373}, - [301] = {.lex_state = 1373}, - [302] = {.lex_state = 1373}, - [303] = {.lex_state = 1373}, - [304] = {.lex_state = 1373}, - [305] = {.lex_state = 1373}, - [306] = {.lex_state = 1373}, - [307] = {.lex_state = 1373}, - [308] = {.lex_state = 1373}, - [309] = {.lex_state = 1373}, - [310] = {.lex_state = 1373}, - [311] = {.lex_state = 1373}, - [312] = {.lex_state = 1373}, - [313] = {.lex_state = 1373}, - [314] = {.lex_state = 1373}, - [315] = {.lex_state = 1373}, - [316] = {.lex_state = 1373}, - [317] = {.lex_state = 1373}, - [318] = {.lex_state = 1373}, - [319] = {.lex_state = 1373}, - [320] = {.lex_state = 1373}, - [321] = {.lex_state = 1373}, - [322] = {.lex_state = 1373}, - [323] = {.lex_state = 1373}, - [324] = {.lex_state = 1373}, - [325] = {.lex_state = 1373}, - [326] = {.lex_state = 1373}, - [327] = {.lex_state = 1373}, - [328] = {.lex_state = 1373}, - [329] = {.lex_state = 1373}, - [330] = {.lex_state = 1373}, - [331] = {.lex_state = 1373}, - [332] = {.lex_state = 1373}, - [333] = {.lex_state = 1373}, - [334] = {.lex_state = 1373}, - [335] = {.lex_state = 1373}, - [336] = {.lex_state = 1373}, - [337] = {.lex_state = 1373}, - [338] = {.lex_state = 1373}, - [339] = {.lex_state = 1373}, - [340] = {.lex_state = 1373}, - [341] = {.lex_state = 1373}, - [342] = {.lex_state = 1373}, - [343] = {.lex_state = 1373}, - [344] = {.lex_state = 1373}, - [345] = {.lex_state = 1373}, - [346] = {.lex_state = 1373}, - [347] = {.lex_state = 1373}, - [348] = {.lex_state = 1373}, - [349] = {.lex_state = 1373}, - [350] = {.lex_state = 1373}, - [351] = {.lex_state = 1373}, - [352] = {.lex_state = 1373}, - [353] = {.lex_state = 1373}, - [354] = {.lex_state = 1373}, - [355] = {.lex_state = 1373}, - [356] = {.lex_state = 1373}, - [357] = {.lex_state = 1373}, - [358] = {.lex_state = 1373}, - [359] = {.lex_state = 1373}, - [360] = {.lex_state = 1373}, - [361] = {.lex_state = 1373}, - [362] = {.lex_state = 1373}, - [363] = {.lex_state = 1373}, - [364] = {.lex_state = 1373}, - [365] = {.lex_state = 1373}, - [366] = {.lex_state = 1373}, - [367] = {.lex_state = 1373}, - [368] = {.lex_state = 1373}, - [369] = {.lex_state = 1373}, - [370] = {.lex_state = 1373}, - [371] = {.lex_state = 1373}, - [372] = {.lex_state = 1373}, - [373] = {.lex_state = 1373}, - [374] = {.lex_state = 1373}, - [375] = {.lex_state = 1373}, - [376] = {.lex_state = 1373}, - [377] = {.lex_state = 1373}, - [378] = {.lex_state = 1373}, - [379] = {.lex_state = 1373}, - [380] = {.lex_state = 1373}, - [381] = {.lex_state = 1373}, - [382] = {.lex_state = 1373}, - [383] = {.lex_state = 1373}, - [384] = {.lex_state = 1373}, - [385] = {.lex_state = 1373}, - [386] = {.lex_state = 1373}, - [387] = {.lex_state = 1373}, - [388] = {.lex_state = 1373}, - [389] = {.lex_state = 1373}, - [390] = {.lex_state = 1373}, - [391] = {.lex_state = 1373}, - [392] = {.lex_state = 1373}, - [393] = {.lex_state = 1373}, - [394] = {.lex_state = 1373}, - [395] = {.lex_state = 1373}, - [396] = {.lex_state = 1373}, - [397] = {.lex_state = 1373}, - [398] = {.lex_state = 1373}, - [399] = {.lex_state = 1373}, - [400] = {.lex_state = 1373}, - [401] = {.lex_state = 1373}, - [402] = {.lex_state = 1373}, - [403] = {.lex_state = 1373}, - [404] = {.lex_state = 1373}, - [405] = {.lex_state = 1373}, - [406] = {.lex_state = 1373}, - [407] = {.lex_state = 1373}, - [408] = {.lex_state = 1373}, - [409] = {.lex_state = 1373}, - [410] = {.lex_state = 1373}, - [411] = {.lex_state = 1373}, - [412] = {.lex_state = 1373}, - [413] = {.lex_state = 1373}, - [414] = {.lex_state = 1373}, - [415] = {.lex_state = 1373}, - [416] = {.lex_state = 1373}, - [417] = {.lex_state = 1373}, - [418] = {.lex_state = 1373}, - [419] = {.lex_state = 1373}, - [420] = {.lex_state = 1373}, - [421] = {.lex_state = 1373}, - [422] = {.lex_state = 1373}, - [423] = {.lex_state = 1373}, - [424] = {.lex_state = 1373}, - [425] = {.lex_state = 1373}, - [426] = {.lex_state = 1373}, - [427] = {.lex_state = 1373}, - [428] = {.lex_state = 1373}, - [429] = {.lex_state = 1373}, - [430] = {.lex_state = 1373}, - [431] = {.lex_state = 1373}, - [432] = {.lex_state = 1373}, - [433] = {.lex_state = 1373}, - [434] = {.lex_state = 1373}, - [435] = {.lex_state = 1373}, - [436] = {.lex_state = 1373}, - [437] = {.lex_state = 1373}, - [438] = {.lex_state = 1373}, - [439] = {.lex_state = 1373}, - [440] = {.lex_state = 1373}, - [441] = {.lex_state = 1373}, - [442] = {.lex_state = 1373}, - [443] = {.lex_state = 1373}, - [444] = {.lex_state = 1373}, - [445] = {.lex_state = 1373}, - [446] = {.lex_state = 1373}, - [447] = {.lex_state = 1373}, - [448] = {.lex_state = 1373}, - [449] = {.lex_state = 1373}, - [450] = {.lex_state = 1373}, - [451] = {.lex_state = 1373}, - [452] = {.lex_state = 1373}, - [453] = {.lex_state = 1373}, - [454] = {.lex_state = 1373}, - [455] = {.lex_state = 1373}, - [456] = {.lex_state = 1373}, - [457] = {.lex_state = 1373}, - [458] = {.lex_state = 1373}, - [459] = {.lex_state = 1373}, - [460] = {.lex_state = 1373}, - [461] = {.lex_state = 1373}, - [462] = {.lex_state = 1373}, - [463] = {.lex_state = 1373}, - [464] = {.lex_state = 1373}, - [465] = {.lex_state = 1373}, - [466] = {.lex_state = 1373}, - [467] = {.lex_state = 1373}, - [468] = {.lex_state = 1373}, - [469] = {.lex_state = 1373}, - [470] = {.lex_state = 1373}, - [471] = {.lex_state = 1373}, - [472] = {.lex_state = 1373}, - [473] = {.lex_state = 1373}, - [474] = {.lex_state = 1373}, - [475] = {.lex_state = 1373}, - [476] = {.lex_state = 1373}, - [477] = {.lex_state = 1373}, - [478] = {.lex_state = 1373}, - [479] = {.lex_state = 1373}, - [480] = {.lex_state = 1373}, - [481] = {.lex_state = 1373}, - [482] = {.lex_state = 1373}, - [483] = {.lex_state = 1373}, - [484] = {.lex_state = 1373}, - [485] = {.lex_state = 1373}, - [486] = {.lex_state = 1373}, - [487] = {.lex_state = 1373}, - [488] = {.lex_state = 1373}, - [489] = {.lex_state = 1373}, - [490] = {.lex_state = 1373}, - [491] = {.lex_state = 1373}, - [492] = {.lex_state = 1373}, - [493] = {.lex_state = 1373}, - [494] = {.lex_state = 1373}, - [495] = {.lex_state = 1373}, - [496] = {.lex_state = 1373}, - [497] = {.lex_state = 1373}, - [498] = {.lex_state = 1373}, - [499] = {.lex_state = 1373}, - [500] = {.lex_state = 1373}, - [501] = {.lex_state = 1373}, - [502] = {.lex_state = 1373}, - [503] = {.lex_state = 1373}, - [504] = {.lex_state = 1373}, - [505] = {.lex_state = 1373}, - [506] = {.lex_state = 1373}, - [507] = {.lex_state = 1373}, - [508] = {.lex_state = 1373}, - [509] = {.lex_state = 1373}, - [510] = {.lex_state = 1373}, - [511] = {.lex_state = 1373}, - [512] = {.lex_state = 1373}, - [513] = {.lex_state = 1373}, - [514] = {.lex_state = 1373}, - [515] = {.lex_state = 1373}, - [516] = {.lex_state = 1373}, - [517] = {.lex_state = 1373}, - [518] = {.lex_state = 1373}, - [519] = {.lex_state = 1373}, - [520] = {.lex_state = 1373}, - [521] = {.lex_state = 1373}, - [522] = {.lex_state = 1373}, - [523] = {.lex_state = 1373}, - [524] = {.lex_state = 1373}, - [525] = {.lex_state = 1373}, - [526] = {.lex_state = 1373}, - [527] = {.lex_state = 1373}, - [528] = {.lex_state = 1373}, - [529] = {.lex_state = 1373}, - [530] = {.lex_state = 1373}, - [531] = {.lex_state = 1373}, - [532] = {.lex_state = 1373}, - [533] = {.lex_state = 1373}, - [534] = {.lex_state = 1373}, - [535] = {.lex_state = 1373}, - [536] = {.lex_state = 1373}, - [537] = {.lex_state = 1373}, - [538] = {.lex_state = 1373}, - [539] = {.lex_state = 1373}, - [540] = {.lex_state = 1373}, - [541] = {.lex_state = 1373}, - [542] = {.lex_state = 1373}, - [543] = {.lex_state = 1373}, - [544] = {.lex_state = 1373}, - [545] = {.lex_state = 1373}, - [546] = {.lex_state = 1373}, - [547] = {.lex_state = 1373}, - [548] = {.lex_state = 1373}, - [549] = {.lex_state = 1373}, - [550] = {.lex_state = 1373}, - [551] = {.lex_state = 1373}, - [552] = {.lex_state = 1373}, - [553] = {.lex_state = 1373}, - [554] = {.lex_state = 1373}, - [555] = {.lex_state = 1373}, - [556] = {.lex_state = 1373}, - [557] = {.lex_state = 1373}, - [558] = {.lex_state = 1373}, - [559] = {.lex_state = 1373}, - [560] = {.lex_state = 1373}, - [561] = {.lex_state = 1373}, - [562] = {.lex_state = 1373}, - [563] = {.lex_state = 1373}, - [564] = {.lex_state = 1373}, - [565] = {.lex_state = 1373}, - [566] = {.lex_state = 1373}, - [567] = {.lex_state = 1373}, - [568] = {.lex_state = 1373}, - [569] = {.lex_state = 1373}, - [570] = {.lex_state = 1373}, - [571] = {.lex_state = 1373}, - [572] = {.lex_state = 1373}, - [573] = {.lex_state = 1373}, - [574] = {.lex_state = 1373}, - [575] = {.lex_state = 1373}, - [576] = {.lex_state = 1373}, - [577] = {.lex_state = 1373}, - [578] = {.lex_state = 1373}, - [579] = {.lex_state = 1373}, - [580] = {.lex_state = 1373}, - [581] = {.lex_state = 1373}, - [582] = {.lex_state = 1373}, - [583] = {.lex_state = 1373}, - [584] = {.lex_state = 1373}, - [585] = {.lex_state = 1373}, - [586] = {.lex_state = 1373}, - [587] = {.lex_state = 1373}, - [588] = {.lex_state = 1373}, - [589] = {.lex_state = 1373}, - [590] = {.lex_state = 1373}, - [591] = {.lex_state = 1373}, - [592] = {.lex_state = 1373}, - [593] = {.lex_state = 1373}, - [594] = {.lex_state = 1373}, - [595] = {.lex_state = 1373}, - [596] = {.lex_state = 1373}, - [597] = {.lex_state = 1373}, - [598] = {.lex_state = 1373}, - [599] = {.lex_state = 1373}, - [600] = {.lex_state = 1373}, - [601] = {.lex_state = 1373}, - [602] = {.lex_state = 1373}, - [603] = {.lex_state = 1373}, - [604] = {.lex_state = 1373}, - [605] = {.lex_state = 1373}, - [606] = {.lex_state = 1373}, - [607] = {.lex_state = 1373}, - [608] = {.lex_state = 1373}, - [609] = {.lex_state = 1373}, - [610] = {.lex_state = 1373}, - [611] = {.lex_state = 1373}, - [612] = {.lex_state = 1373}, - [613] = {.lex_state = 1373}, - [614] = {.lex_state = 1373}, - [615] = {.lex_state = 1373}, - [616] = {.lex_state = 1373}, - [617] = {.lex_state = 1373}, - [618] = {.lex_state = 1373}, - [619] = {.lex_state = 1373}, - [620] = {.lex_state = 1373}, - [621] = {.lex_state = 1373}, - [622] = {.lex_state = 1373}, - [623] = {.lex_state = 1373}, - [624] = {.lex_state = 1373}, - [625] = {.lex_state = 1373}, - [626] = {.lex_state = 1373}, - [627] = {.lex_state = 1373}, - [628] = {.lex_state = 1373}, - [629] = {.lex_state = 1373}, - [630] = {.lex_state = 1373}, - [631] = {.lex_state = 1373}, - [632] = {.lex_state = 1373}, - [633] = {.lex_state = 1373}, - [634] = {.lex_state = 1373}, - [635] = {.lex_state = 1373}, - [636] = {.lex_state = 1373}, - [637] = {.lex_state = 1373}, - [638] = {.lex_state = 1373}, - [639] = {.lex_state = 1373}, - [640] = {.lex_state = 1373}, - [641] = {.lex_state = 1373}, - [642] = {.lex_state = 1373}, - [643] = {.lex_state = 1373}, - [644] = {.lex_state = 1373}, - [645] = {.lex_state = 1373}, - [646] = {.lex_state = 1373}, - [647] = {.lex_state = 1373}, - [648] = {.lex_state = 1373}, - [649] = {.lex_state = 1373}, - [650] = {.lex_state = 1373}, - [651] = {.lex_state = 1373}, - [652] = {.lex_state = 1373}, - [653] = {.lex_state = 1373}, - [654] = {.lex_state = 1373}, - [655] = {.lex_state = 1373}, - [656] = {.lex_state = 1373}, - [657] = {.lex_state = 1373}, - [658] = {.lex_state = 1373}, - [659] = {.lex_state = 1373}, - [660] = {.lex_state = 1373}, - [661] = {.lex_state = 1373}, - [662] = {.lex_state = 1373}, - [663] = {.lex_state = 1373}, - [664] = {.lex_state = 1373}, - [665] = {.lex_state = 1373}, - [666] = {.lex_state = 1373}, - [667] = {.lex_state = 1373}, - [668] = {.lex_state = 1373}, - [669] = {.lex_state = 1373}, - [670] = {.lex_state = 1373}, - [671] = {.lex_state = 1373}, - [672] = {.lex_state = 1373}, - [673] = {.lex_state = 1373}, - [674] = {.lex_state = 1373}, - [675] = {.lex_state = 1373}, - [676] = {.lex_state = 1373}, - [677] = {.lex_state = 1373}, - [678] = {.lex_state = 1373}, - [679] = {.lex_state = 1373}, - [680] = {.lex_state = 1373}, - [681] = {.lex_state = 1373}, - [682] = {.lex_state = 1373}, - [683] = {.lex_state = 1373}, - [684] = {.lex_state = 1373}, - [685] = {.lex_state = 1373}, - [686] = {.lex_state = 1373}, - [687] = {.lex_state = 1373}, - [688] = {.lex_state = 1373}, - [689] = {.lex_state = 1373}, - [690] = {.lex_state = 1373}, - [691] = {.lex_state = 1373}, - [692] = {.lex_state = 1373}, - [693] = {.lex_state = 1373}, - [694] = {.lex_state = 1373}, - [695] = {.lex_state = 1373}, - [696] = {.lex_state = 1373}, - [697] = {.lex_state = 1373}, - [698] = {.lex_state = 1373}, - [699] = {.lex_state = 1373}, - [700] = {.lex_state = 1373}, - [701] = {.lex_state = 1373}, - [702] = {.lex_state = 1373}, - [703] = {.lex_state = 1373}, - [704] = {.lex_state = 1373}, - [705] = {.lex_state = 1373}, - [706] = {.lex_state = 1373}, - [707] = {.lex_state = 1373}, - [708] = {.lex_state = 1373}, - [709] = {.lex_state = 1373}, - [710] = {.lex_state = 1373}, - [711] = {.lex_state = 1373}, - [712] = {.lex_state = 1373}, - [713] = {.lex_state = 1373}, - [714] = {.lex_state = 1373}, - [715] = {.lex_state = 1373}, - [716] = {.lex_state = 1373}, - [717] = {.lex_state = 1373}, - [718] = {.lex_state = 1373}, - [719] = {.lex_state = 1373}, - [720] = {.lex_state = 1373}, - [721] = {.lex_state = 1373}, - [722] = {.lex_state = 1373}, - [723] = {.lex_state = 1373}, - [724] = {.lex_state = 1373}, - [725] = {.lex_state = 1373}, - [726] = {.lex_state = 1373}, - [727] = {.lex_state = 1373}, - [728] = {.lex_state = 1373}, - [729] = {.lex_state = 1373}, - [730] = {.lex_state = 1373}, - [731] = {.lex_state = 1373}, - [732] = {.lex_state = 1373}, - [733] = {.lex_state = 1373}, - [734] = {.lex_state = 1373}, - [735] = {.lex_state = 1373}, - [736] = {.lex_state = 1373}, - [737] = {.lex_state = 1373}, - [738] = {.lex_state = 1373}, - [739] = {.lex_state = 1373}, - [740] = {.lex_state = 1373}, - [741] = {.lex_state = 1373}, - [742] = {.lex_state = 1373}, - [743] = {.lex_state = 1373}, - [744] = {.lex_state = 1373}, - [745] = {.lex_state = 1373}, - [746] = {.lex_state = 1373}, - [747] = {.lex_state = 1373}, - [748] = {.lex_state = 1373}, - [749] = {.lex_state = 1373}, - [750] = {.lex_state = 1373}, - [751] = {.lex_state = 1373}, - [752] = {.lex_state = 1373}, - [753] = {.lex_state = 1373}, - [754] = {.lex_state = 1373}, - [755] = {.lex_state = 1373}, - [756] = {.lex_state = 1373}, - [757] = {.lex_state = 1373}, - [758] = {.lex_state = 1373}, - [759] = {.lex_state = 1373}, - [760] = {.lex_state = 1373}, - [761] = {.lex_state = 1373}, - [762] = {.lex_state = 1373}, - [763] = {.lex_state = 1373}, - [764] = {.lex_state = 1373}, - [765] = {.lex_state = 1373}, - [766] = {.lex_state = 1373}, - [767] = {.lex_state = 1373}, - [768] = {.lex_state = 1373}, - [769] = {.lex_state = 1373}, - [770] = {.lex_state = 1373}, - [771] = {.lex_state = 1373}, - [772] = {.lex_state = 1373}, - [773] = {.lex_state = 1373}, - [774] = {.lex_state = 1373}, - [775] = {.lex_state = 1373}, - [776] = {.lex_state = 1373}, - [777] = {.lex_state = 1373}, - [778] = {.lex_state = 1373}, - [779] = {.lex_state = 1373}, - [780] = {.lex_state = 2}, - [781] = {.lex_state = 2}, - [782] = {.lex_state = 2}, - [783] = {.lex_state = 2}, - [784] = {.lex_state = 0}, - [785] = {.lex_state = 0}, - [786] = {.lex_state = 0}, + [1] = {.lex_state = 1389}, + [2] = {.lex_state = 1389}, + [3] = {.lex_state = 1389}, + [4] = {.lex_state = 1389}, + [5] = {.lex_state = 1389}, + [6] = {.lex_state = 1389}, + [7] = {.lex_state = 1389}, + [8] = {.lex_state = 1389}, + [9] = {.lex_state = 1389}, + [10] = {.lex_state = 1389}, + [11] = {.lex_state = 1389}, + [12] = {.lex_state = 1389}, + [13] = {.lex_state = 1389}, + [14] = {.lex_state = 1389}, + [15] = {.lex_state = 1389}, + [16] = {.lex_state = 1389}, + [17] = {.lex_state = 1389}, + [18] = {.lex_state = 1389}, + [19] = {.lex_state = 1389}, + [20] = {.lex_state = 1389}, + [21] = {.lex_state = 1389}, + [22] = {.lex_state = 1389}, + [23] = {.lex_state = 1389}, + [24] = {.lex_state = 1389}, + [25] = {.lex_state = 1389}, + [26] = {.lex_state = 1389}, + [27] = {.lex_state = 1389}, + [28] = {.lex_state = 1389}, + [29] = {.lex_state = 1389}, + [30] = {.lex_state = 1389}, + [31] = {.lex_state = 1389}, + [32] = {.lex_state = 1389}, + [33] = {.lex_state = 1389}, + [34] = {.lex_state = 1389}, + [35] = {.lex_state = 1389}, + [36] = {.lex_state = 1389}, + [37] = {.lex_state = 1389}, + [38] = {.lex_state = 1389}, + [39] = {.lex_state = 1389}, + [40] = {.lex_state = 1389}, + [41] = {.lex_state = 1389}, + [42] = {.lex_state = 1389}, + [43] = {.lex_state = 1389}, + [44] = {.lex_state = 1389}, + [45] = {.lex_state = 1389}, + [46] = {.lex_state = 1389}, + [47] = {.lex_state = 1389}, + [48] = {.lex_state = 1389}, + [49] = {.lex_state = 1389}, + [50] = {.lex_state = 1389}, + [51] = {.lex_state = 1389}, + [52] = {.lex_state = 1389}, + [53] = {.lex_state = 1389}, + [54] = {.lex_state = 1389}, + [55] = {.lex_state = 1389}, + [56] = {.lex_state = 1389}, + [57] = {.lex_state = 1389}, + [58] = {.lex_state = 1389}, + [59] = {.lex_state = 1389}, + [60] = {.lex_state = 1389}, + [61] = {.lex_state = 1389}, + [62] = {.lex_state = 1389}, + [63] = {.lex_state = 1389}, + [64] = {.lex_state = 1389}, + [65] = {.lex_state = 1389}, + [66] = {.lex_state = 1389}, + [67] = {.lex_state = 1389}, + [68] = {.lex_state = 1389}, + [69] = {.lex_state = 1389}, + [70] = {.lex_state = 1389}, + [71] = {.lex_state = 1389}, + [72] = {.lex_state = 1389}, + [73] = {.lex_state = 1389}, + [74] = {.lex_state = 1389}, + [75] = {.lex_state = 1389}, + [76] = {.lex_state = 1389}, + [77] = {.lex_state = 1389}, + [78] = {.lex_state = 1389}, + [79] = {.lex_state = 1389}, + [80] = {.lex_state = 1389}, + [81] = {.lex_state = 1389}, + [82] = {.lex_state = 1389}, + [83] = {.lex_state = 1389}, + [84] = {.lex_state = 1389}, + [85] = {.lex_state = 1389}, + [86] = {.lex_state = 1389}, + [87] = {.lex_state = 1389}, + [88] = {.lex_state = 1389}, + [89] = {.lex_state = 1389}, + [90] = {.lex_state = 1389}, + [91] = {.lex_state = 1389}, + [92] = {.lex_state = 1389}, + [93] = {.lex_state = 1389}, + [94] = {.lex_state = 1389}, + [95] = {.lex_state = 1389}, + [96] = {.lex_state = 1389}, + [97] = {.lex_state = 1389}, + [98] = {.lex_state = 1389}, + [99] = {.lex_state = 1389}, + [100] = {.lex_state = 1389}, + [101] = {.lex_state = 1389}, + [102] = {.lex_state = 1389}, + [103] = {.lex_state = 1389}, + [104] = {.lex_state = 1389}, + [105] = {.lex_state = 1389}, + [106] = {.lex_state = 1389}, + [107] = {.lex_state = 1389}, + [108] = {.lex_state = 1389}, + [109] = {.lex_state = 1389}, + [110] = {.lex_state = 1389}, + [111] = {.lex_state = 1389}, + [112] = {.lex_state = 1389}, + [113] = {.lex_state = 1389}, + [114] = {.lex_state = 1389}, + [115] = {.lex_state = 1389}, + [116] = {.lex_state = 1389}, + [117] = {.lex_state = 1389}, + [118] = {.lex_state = 1389}, + [119] = {.lex_state = 1389}, + [120] = {.lex_state = 1389}, + [121] = {.lex_state = 1389}, + [122] = {.lex_state = 1389}, + [123] = {.lex_state = 1389}, + [124] = {.lex_state = 1389}, + [125] = {.lex_state = 1389}, + [126] = {.lex_state = 1389}, + [127] = {.lex_state = 1389}, + [128] = {.lex_state = 1389}, + [129] = {.lex_state = 1389}, + [130] = {.lex_state = 1389}, + [131] = {.lex_state = 1389}, + [132] = {.lex_state = 1389}, + [133] = {.lex_state = 1389}, + [134] = {.lex_state = 1389}, + [135] = {.lex_state = 1389}, + [136] = {.lex_state = 1389}, + [137] = {.lex_state = 1389}, + [138] = {.lex_state = 1389}, + [139] = {.lex_state = 1389}, + [140] = {.lex_state = 1389}, + [141] = {.lex_state = 1389}, + [142] = {.lex_state = 1389}, + [143] = {.lex_state = 1389}, + [144] = {.lex_state = 1389}, + [145] = {.lex_state = 1389}, + [146] = {.lex_state = 1389}, + [147] = {.lex_state = 1389}, + [148] = {.lex_state = 1389}, + [149] = {.lex_state = 1389}, + [150] = {.lex_state = 1389}, + [151] = {.lex_state = 1389}, + [152] = {.lex_state = 1389}, + [153] = {.lex_state = 1389}, + [154] = {.lex_state = 1389}, + [155] = {.lex_state = 1389}, + [156] = {.lex_state = 1389}, + [157] = {.lex_state = 1389}, + [158] = {.lex_state = 1389}, + [159] = {.lex_state = 1389}, + [160] = {.lex_state = 1389}, + [161] = {.lex_state = 1389}, + [162] = {.lex_state = 1389}, + [163] = {.lex_state = 1389}, + [164] = {.lex_state = 1389}, + [165] = {.lex_state = 1389}, + [166] = {.lex_state = 1389}, + [167] = {.lex_state = 1389}, + [168] = {.lex_state = 1389}, + [169] = {.lex_state = 1389}, + [170] = {.lex_state = 1389}, + [171] = {.lex_state = 1389}, + [172] = {.lex_state = 1389}, + [173] = {.lex_state = 1389}, + [174] = {.lex_state = 1389}, + [175] = {.lex_state = 1389}, + [176] = {.lex_state = 1389}, + [177] = {.lex_state = 1389}, + [178] = {.lex_state = 1389}, + [179] = {.lex_state = 1389}, + [180] = {.lex_state = 1389}, + [181] = {.lex_state = 1389}, + [182] = {.lex_state = 1389}, + [183] = {.lex_state = 1389}, + [184] = {.lex_state = 1389}, + [185] = {.lex_state = 1389}, + [186] = {.lex_state = 1389}, + [187] = {.lex_state = 1389}, + [188] = {.lex_state = 1389}, + [189] = {.lex_state = 1389}, + [190] = {.lex_state = 1389}, + [191] = {.lex_state = 1389}, + [192] = {.lex_state = 1389}, + [193] = {.lex_state = 1389}, + [194] = {.lex_state = 1389}, + [195] = {.lex_state = 1389}, + [196] = {.lex_state = 1389}, + [197] = {.lex_state = 1389}, + [198] = {.lex_state = 1389}, + [199] = {.lex_state = 1389}, + [200] = {.lex_state = 1389}, + [201] = {.lex_state = 1389}, + [202] = {.lex_state = 1389}, + [203] = {.lex_state = 1389}, + [204] = {.lex_state = 1389}, + [205] = {.lex_state = 1389}, + [206] = {.lex_state = 1389}, + [207] = {.lex_state = 1389}, + [208] = {.lex_state = 1389}, + [209] = {.lex_state = 1389}, + [210] = {.lex_state = 1389}, + [211] = {.lex_state = 1389}, + [212] = {.lex_state = 1389}, + [213] = {.lex_state = 1389}, + [214] = {.lex_state = 1389}, + [215] = {.lex_state = 1389}, + [216] = {.lex_state = 1389}, + [217] = {.lex_state = 1389}, + [218] = {.lex_state = 1389}, + [219] = {.lex_state = 1389}, + [220] = {.lex_state = 1389}, + [221] = {.lex_state = 1389}, + [222] = {.lex_state = 1389}, + [223] = {.lex_state = 1389}, + [224] = {.lex_state = 1389}, + [225] = {.lex_state = 1389}, + [226] = {.lex_state = 1389}, + [227] = {.lex_state = 1389}, + [228] = {.lex_state = 1389}, + [229] = {.lex_state = 1389}, + [230] = {.lex_state = 1389}, + [231] = {.lex_state = 1389}, + [232] = {.lex_state = 1389}, + [233] = {.lex_state = 1389}, + [234] = {.lex_state = 1389}, + [235] = {.lex_state = 1389}, + [236] = {.lex_state = 1389}, + [237] = {.lex_state = 1389}, + [238] = {.lex_state = 1389}, + [239] = {.lex_state = 1389}, + [240] = {.lex_state = 1389}, + [241] = {.lex_state = 1389}, + [242] = {.lex_state = 1389}, + [243] = {.lex_state = 1389}, + [244] = {.lex_state = 1389}, + [245] = {.lex_state = 1389}, + [246] = {.lex_state = 1389}, + [247] = {.lex_state = 1389}, + [248] = {.lex_state = 1389}, + [249] = {.lex_state = 1389}, + [250] = {.lex_state = 1389}, + [251] = {.lex_state = 1389}, + [252] = {.lex_state = 1389}, + [253] = {.lex_state = 1389}, + [254] = {.lex_state = 1389}, + [255] = {.lex_state = 1389}, + [256] = {.lex_state = 1389}, + [257] = {.lex_state = 1389}, + [258] = {.lex_state = 1389}, + [259] = {.lex_state = 1389}, + [260] = {.lex_state = 1389}, + [261] = {.lex_state = 1389}, + [262] = {.lex_state = 1389}, + [263] = {.lex_state = 1389}, + [264] = {.lex_state = 1389}, + [265] = {.lex_state = 1389}, + [266] = {.lex_state = 1389}, + [267] = {.lex_state = 1389}, + [268] = {.lex_state = 1389}, + [269] = {.lex_state = 1389}, + [270] = {.lex_state = 1389}, + [271] = {.lex_state = 1389}, + [272] = {.lex_state = 1389}, + [273] = {.lex_state = 1389}, + [274] = {.lex_state = 1389}, + [275] = {.lex_state = 1389}, + [276] = {.lex_state = 1389}, + [277] = {.lex_state = 1389}, + [278] = {.lex_state = 1389}, + [279] = {.lex_state = 1389}, + [280] = {.lex_state = 1389}, + [281] = {.lex_state = 1389}, + [282] = {.lex_state = 1389}, + [283] = {.lex_state = 1389}, + [284] = {.lex_state = 1389}, + [285] = {.lex_state = 1389}, + [286] = {.lex_state = 1389}, + [287] = {.lex_state = 1389}, + [288] = {.lex_state = 1389}, + [289] = {.lex_state = 1389}, + [290] = {.lex_state = 1389}, + [291] = {.lex_state = 1389}, + [292] = {.lex_state = 1389}, + [293] = {.lex_state = 1389}, + [294] = {.lex_state = 1389}, + [295] = {.lex_state = 1389}, + [296] = {.lex_state = 1389}, + [297] = {.lex_state = 1389}, + [298] = {.lex_state = 1389}, + [299] = {.lex_state = 1389}, + [300] = {.lex_state = 1389}, + [301] = {.lex_state = 1389}, + [302] = {.lex_state = 1389}, + [303] = {.lex_state = 1389}, + [304] = {.lex_state = 1389}, + [305] = {.lex_state = 1389}, + [306] = {.lex_state = 1389}, + [307] = {.lex_state = 1389}, + [308] = {.lex_state = 1389}, + [309] = {.lex_state = 1389}, + [310] = {.lex_state = 1389}, + [311] = {.lex_state = 1389}, + [312] = {.lex_state = 1389}, + [313] = {.lex_state = 1389}, + [314] = {.lex_state = 1389}, + [315] = {.lex_state = 1389}, + [316] = {.lex_state = 1389}, + [317] = {.lex_state = 1389}, + [318] = {.lex_state = 1389}, + [319] = {.lex_state = 1389}, + [320] = {.lex_state = 1389}, + [321] = {.lex_state = 1389}, + [322] = {.lex_state = 1389}, + [323] = {.lex_state = 1389}, + [324] = {.lex_state = 1389}, + [325] = {.lex_state = 1389}, + [326] = {.lex_state = 1389}, + [327] = {.lex_state = 1389}, + [328] = {.lex_state = 1389}, + [329] = {.lex_state = 1389}, + [330] = {.lex_state = 1389}, + [331] = {.lex_state = 1389}, + [332] = {.lex_state = 1389}, + [333] = {.lex_state = 1389}, + [334] = {.lex_state = 1389}, + [335] = {.lex_state = 1389}, + [336] = {.lex_state = 1389}, + [337] = {.lex_state = 1389}, + [338] = {.lex_state = 1389}, + [339] = {.lex_state = 1389}, + [340] = {.lex_state = 1389}, + [341] = {.lex_state = 1389}, + [342] = {.lex_state = 1389}, + [343] = {.lex_state = 1389}, + [344] = {.lex_state = 1389}, + [345] = {.lex_state = 1389}, + [346] = {.lex_state = 1389}, + [347] = {.lex_state = 1389}, + [348] = {.lex_state = 1389}, + [349] = {.lex_state = 1389}, + [350] = {.lex_state = 1389}, + [351] = {.lex_state = 1389}, + [352] = {.lex_state = 1389}, + [353] = {.lex_state = 1389}, + [354] = {.lex_state = 1389}, + [355] = {.lex_state = 1389}, + [356] = {.lex_state = 1389}, + [357] = {.lex_state = 1389}, + [358] = {.lex_state = 1389}, + [359] = {.lex_state = 1389}, + [360] = {.lex_state = 1389}, + [361] = {.lex_state = 1389}, + [362] = {.lex_state = 1389}, + [363] = {.lex_state = 1389}, + [364] = {.lex_state = 1389}, + [365] = {.lex_state = 1389}, + [366] = {.lex_state = 1389}, + [367] = {.lex_state = 1389}, + [368] = {.lex_state = 1389}, + [369] = {.lex_state = 1389}, + [370] = {.lex_state = 1389}, + [371] = {.lex_state = 1389}, + [372] = {.lex_state = 1389}, + [373] = {.lex_state = 1389}, + [374] = {.lex_state = 1389}, + [375] = {.lex_state = 1389}, + [376] = {.lex_state = 1389}, + [377] = {.lex_state = 1389}, + [378] = {.lex_state = 1389}, + [379] = {.lex_state = 1389}, + [380] = {.lex_state = 1389}, + [381] = {.lex_state = 1389}, + [382] = {.lex_state = 1389}, + [383] = {.lex_state = 1389}, + [384] = {.lex_state = 1389}, + [385] = {.lex_state = 1389}, + [386] = {.lex_state = 1389}, + [387] = {.lex_state = 1389}, + [388] = {.lex_state = 1389}, + [389] = {.lex_state = 1389}, + [390] = {.lex_state = 1389}, + [391] = {.lex_state = 1389}, + [392] = {.lex_state = 1389}, + [393] = {.lex_state = 1389}, + [394] = {.lex_state = 1389}, + [395] = {.lex_state = 1389}, + [396] = {.lex_state = 1389}, + [397] = {.lex_state = 1389}, + [398] = {.lex_state = 1389}, + [399] = {.lex_state = 1389}, + [400] = {.lex_state = 1389}, + [401] = {.lex_state = 1389}, + [402] = {.lex_state = 1389}, + [403] = {.lex_state = 1389}, + [404] = {.lex_state = 1389}, + [405] = {.lex_state = 1389}, + [406] = {.lex_state = 1389}, + [407] = {.lex_state = 1389}, + [408] = {.lex_state = 1389}, + [409] = {.lex_state = 1389}, + [410] = {.lex_state = 1389}, + [411] = {.lex_state = 1389}, + [412] = {.lex_state = 1389}, + [413] = {.lex_state = 1389}, + [414] = {.lex_state = 1389}, + [415] = {.lex_state = 1389}, + [416] = {.lex_state = 1389}, + [417] = {.lex_state = 1389}, + [418] = {.lex_state = 1389}, + [419] = {.lex_state = 1389}, + [420] = {.lex_state = 1389}, + [421] = {.lex_state = 1389}, + [422] = {.lex_state = 1389}, + [423] = {.lex_state = 1389}, + [424] = {.lex_state = 1389}, + [425] = {.lex_state = 1389}, + [426] = {.lex_state = 1389}, + [427] = {.lex_state = 1389}, + [428] = {.lex_state = 1389}, + [429] = {.lex_state = 1389}, + [430] = {.lex_state = 1389}, + [431] = {.lex_state = 1389}, + [432] = {.lex_state = 1389}, + [433] = {.lex_state = 1389}, + [434] = {.lex_state = 1389}, + [435] = {.lex_state = 1389}, + [436] = {.lex_state = 1389}, + [437] = {.lex_state = 1389}, + [438] = {.lex_state = 1389}, + [439] = {.lex_state = 1389}, + [440] = {.lex_state = 1389}, + [441] = {.lex_state = 1389}, + [442] = {.lex_state = 1389}, + [443] = {.lex_state = 1389}, + [444] = {.lex_state = 1389}, + [445] = {.lex_state = 1389}, + [446] = {.lex_state = 1389}, + [447] = {.lex_state = 1389}, + [448] = {.lex_state = 1389}, + [449] = {.lex_state = 1389}, + [450] = {.lex_state = 1389}, + [451] = {.lex_state = 1389}, + [452] = {.lex_state = 1389}, + [453] = {.lex_state = 1389}, + [454] = {.lex_state = 1389}, + [455] = {.lex_state = 1389}, + [456] = {.lex_state = 1389}, + [457] = {.lex_state = 1389}, + [458] = {.lex_state = 1389}, + [459] = {.lex_state = 1389}, + [460] = {.lex_state = 1389}, + [461] = {.lex_state = 1389}, + [462] = {.lex_state = 1389}, + [463] = {.lex_state = 1389}, + [464] = {.lex_state = 1389}, + [465] = {.lex_state = 1389}, + [466] = {.lex_state = 1389}, + [467] = {.lex_state = 1389}, + [468] = {.lex_state = 1389}, + [469] = {.lex_state = 1389}, + [470] = {.lex_state = 1389}, + [471] = {.lex_state = 1389}, + [472] = {.lex_state = 1389}, + [473] = {.lex_state = 1389}, + [474] = {.lex_state = 1389}, + [475] = {.lex_state = 1389}, + [476] = {.lex_state = 1389}, + [477] = {.lex_state = 1389}, + [478] = {.lex_state = 1389}, + [479] = {.lex_state = 1389}, + [480] = {.lex_state = 1389}, + [481] = {.lex_state = 1389}, + [482] = {.lex_state = 1389}, + [483] = {.lex_state = 1389}, + [484] = {.lex_state = 1389}, + [485] = {.lex_state = 1389}, + [486] = {.lex_state = 1389}, + [487] = {.lex_state = 1389}, + [488] = {.lex_state = 1389}, + [489] = {.lex_state = 1389}, + [490] = {.lex_state = 1389}, + [491] = {.lex_state = 1389}, + [492] = {.lex_state = 1389}, + [493] = {.lex_state = 1389}, + [494] = {.lex_state = 1389}, + [495] = {.lex_state = 1389}, + [496] = {.lex_state = 1389}, + [497] = {.lex_state = 1389}, + [498] = {.lex_state = 1389}, + [499] = {.lex_state = 1389}, + [500] = {.lex_state = 1389}, + [501] = {.lex_state = 1389}, + [502] = {.lex_state = 1389}, + [503] = {.lex_state = 1389}, + [504] = {.lex_state = 1389}, + [505] = {.lex_state = 1389}, + [506] = {.lex_state = 1389}, + [507] = {.lex_state = 1389}, + [508] = {.lex_state = 1389}, + [509] = {.lex_state = 1389}, + [510] = {.lex_state = 1389}, + [511] = {.lex_state = 1389}, + [512] = {.lex_state = 1389}, + [513] = {.lex_state = 1389}, + [514] = {.lex_state = 1389}, + [515] = {.lex_state = 1389}, + [516] = {.lex_state = 1389}, + [517] = {.lex_state = 1389}, + [518] = {.lex_state = 1389}, + [519] = {.lex_state = 1389}, + [520] = {.lex_state = 1389}, + [521] = {.lex_state = 1389}, + [522] = {.lex_state = 1389}, + [523] = {.lex_state = 1389}, + [524] = {.lex_state = 1389}, + [525] = {.lex_state = 1389}, + [526] = {.lex_state = 1389}, + [527] = {.lex_state = 1389}, + [528] = {.lex_state = 1389}, + [529] = {.lex_state = 1389}, + [530] = {.lex_state = 1389}, + [531] = {.lex_state = 1389}, + [532] = {.lex_state = 1389}, + [533] = {.lex_state = 1389}, + [534] = {.lex_state = 1389}, + [535] = {.lex_state = 1389}, + [536] = {.lex_state = 1389}, + [537] = {.lex_state = 1389}, + [538] = {.lex_state = 1389}, + [539] = {.lex_state = 1389}, + [540] = {.lex_state = 1389}, + [541] = {.lex_state = 1389}, + [542] = {.lex_state = 1389}, + [543] = {.lex_state = 1389}, + [544] = {.lex_state = 1389}, + [545] = {.lex_state = 1389}, + [546] = {.lex_state = 1389}, + [547] = {.lex_state = 1389}, + [548] = {.lex_state = 1389}, + [549] = {.lex_state = 1389}, + [550] = {.lex_state = 1389}, + [551] = {.lex_state = 1389}, + [552] = {.lex_state = 1389}, + [553] = {.lex_state = 1389}, + [554] = {.lex_state = 1389}, + [555] = {.lex_state = 1389}, + [556] = {.lex_state = 1389}, + [557] = {.lex_state = 1389}, + [558] = {.lex_state = 1389}, + [559] = {.lex_state = 1389}, + [560] = {.lex_state = 1389}, + [561] = {.lex_state = 1389}, + [562] = {.lex_state = 1389}, + [563] = {.lex_state = 1389}, + [564] = {.lex_state = 1389}, + [565] = {.lex_state = 1389}, + [566] = {.lex_state = 1389}, + [567] = {.lex_state = 1389}, + [568] = {.lex_state = 1389}, + [569] = {.lex_state = 1389}, + [570] = {.lex_state = 1389}, + [571] = {.lex_state = 1389}, + [572] = {.lex_state = 1389}, + [573] = {.lex_state = 1389}, + [574] = {.lex_state = 1389}, + [575] = {.lex_state = 1389}, + [576] = {.lex_state = 1389}, + [577] = {.lex_state = 1389}, + [578] = {.lex_state = 1389}, + [579] = {.lex_state = 1389}, + [580] = {.lex_state = 1389}, + [581] = {.lex_state = 1389}, + [582] = {.lex_state = 1389}, + [583] = {.lex_state = 1389}, + [584] = {.lex_state = 1389}, + [585] = {.lex_state = 1389}, + [586] = {.lex_state = 1389}, + [587] = {.lex_state = 1389}, + [588] = {.lex_state = 1389}, + [589] = {.lex_state = 1389}, + [590] = {.lex_state = 1389}, + [591] = {.lex_state = 1389}, + [592] = {.lex_state = 1389}, + [593] = {.lex_state = 1389}, + [594] = {.lex_state = 1389}, + [595] = {.lex_state = 1389}, + [596] = {.lex_state = 1389}, + [597] = {.lex_state = 1389}, + [598] = {.lex_state = 1389}, + [599] = {.lex_state = 1389}, + [600] = {.lex_state = 1389}, + [601] = {.lex_state = 1389}, + [602] = {.lex_state = 1389}, + [603] = {.lex_state = 1389}, + [604] = {.lex_state = 1389}, + [605] = {.lex_state = 1389}, + [606] = {.lex_state = 1389}, + [607] = {.lex_state = 1389}, + [608] = {.lex_state = 1389}, + [609] = {.lex_state = 1389}, + [610] = {.lex_state = 1389}, + [611] = {.lex_state = 1389}, + [612] = {.lex_state = 1389}, + [613] = {.lex_state = 1389}, + [614] = {.lex_state = 1389}, + [615] = {.lex_state = 1389}, + [616] = {.lex_state = 1389}, + [617] = {.lex_state = 1389}, + [618] = {.lex_state = 1389}, + [619] = {.lex_state = 1389}, + [620] = {.lex_state = 1389}, + [621] = {.lex_state = 1389}, + [622] = {.lex_state = 1389}, + [623] = {.lex_state = 1389}, + [624] = {.lex_state = 1389}, + [625] = {.lex_state = 1389}, + [626] = {.lex_state = 1389}, + [627] = {.lex_state = 1389}, + [628] = {.lex_state = 1389}, + [629] = {.lex_state = 1389}, + [630] = {.lex_state = 1389}, + [631] = {.lex_state = 1389}, + [632] = {.lex_state = 1389}, + [633] = {.lex_state = 1389}, + [634] = {.lex_state = 1389}, + [635] = {.lex_state = 1389}, + [636] = {.lex_state = 1389}, + [637] = {.lex_state = 1389}, + [638] = {.lex_state = 1389}, + [639] = {.lex_state = 1389}, + [640] = {.lex_state = 1389}, + [641] = {.lex_state = 1389}, + [642] = {.lex_state = 1389}, + [643] = {.lex_state = 1389}, + [644] = {.lex_state = 1389}, + [645] = {.lex_state = 1389}, + [646] = {.lex_state = 1389}, + [647] = {.lex_state = 1389}, + [648] = {.lex_state = 1389}, + [649] = {.lex_state = 1389}, + [650] = {.lex_state = 1389}, + [651] = {.lex_state = 1389}, + [652] = {.lex_state = 1389}, + [653] = {.lex_state = 1389}, + [654] = {.lex_state = 1389}, + [655] = {.lex_state = 1389}, + [656] = {.lex_state = 1389}, + [657] = {.lex_state = 1389}, + [658] = {.lex_state = 1389}, + [659] = {.lex_state = 1389}, + [660] = {.lex_state = 1389}, + [661] = {.lex_state = 1389}, + [662] = {.lex_state = 1389}, + [663] = {.lex_state = 1389}, + [664] = {.lex_state = 1389}, + [665] = {.lex_state = 1389}, + [666] = {.lex_state = 1389}, + [667] = {.lex_state = 1389}, + [668] = {.lex_state = 1389}, + [669] = {.lex_state = 1389}, + [670] = {.lex_state = 1389}, + [671] = {.lex_state = 1389}, + [672] = {.lex_state = 1389}, + [673] = {.lex_state = 1389}, + [674] = {.lex_state = 1389}, + [675] = {.lex_state = 1389}, + [676] = {.lex_state = 1389}, + [677] = {.lex_state = 1389}, + [678] = {.lex_state = 1389}, + [679] = {.lex_state = 1389}, + [680] = {.lex_state = 1389}, + [681] = {.lex_state = 1389}, + [682] = {.lex_state = 1389}, + [683] = {.lex_state = 1389}, + [684] = {.lex_state = 1389}, + [685] = {.lex_state = 1389}, + [686] = {.lex_state = 1389}, + [687] = {.lex_state = 1389}, + [688] = {.lex_state = 1389}, + [689] = {.lex_state = 1389}, + [690] = {.lex_state = 1389}, + [691] = {.lex_state = 1389}, + [692] = {.lex_state = 1389}, + [693] = {.lex_state = 1389}, + [694] = {.lex_state = 1389}, + [695] = {.lex_state = 1389}, + [696] = {.lex_state = 1389}, + [697] = {.lex_state = 1389}, + [698] = {.lex_state = 1389}, + [699] = {.lex_state = 1389}, + [700] = {.lex_state = 1389}, + [701] = {.lex_state = 1389}, + [702] = {.lex_state = 1389}, + [703] = {.lex_state = 1389}, + [704] = {.lex_state = 1389}, + [705] = {.lex_state = 1389}, + [706] = {.lex_state = 1389}, + [707] = {.lex_state = 1389}, + [708] = {.lex_state = 1389}, + [709] = {.lex_state = 1389}, + [710] = {.lex_state = 1389}, + [711] = {.lex_state = 1389}, + [712] = {.lex_state = 1389}, + [713] = {.lex_state = 1389}, + [714] = {.lex_state = 1389}, + [715] = {.lex_state = 1389}, + [716] = {.lex_state = 1389}, + [717] = {.lex_state = 1389}, + [718] = {.lex_state = 1389}, + [719] = {.lex_state = 1389}, + [720] = {.lex_state = 1389}, + [721] = {.lex_state = 1389}, + [722] = {.lex_state = 1389}, + [723] = {.lex_state = 1389}, + [724] = {.lex_state = 1389}, + [725] = {.lex_state = 1389}, + [726] = {.lex_state = 1389}, + [727] = {.lex_state = 1389}, + [728] = {.lex_state = 1389}, + [729] = {.lex_state = 1389}, + [730] = {.lex_state = 1389}, + [731] = {.lex_state = 1389}, + [732] = {.lex_state = 1389}, + [733] = {.lex_state = 1389}, + [734] = {.lex_state = 1389}, + [735] = {.lex_state = 1389}, + [736] = {.lex_state = 1389}, + [737] = {.lex_state = 1389}, + [738] = {.lex_state = 1389}, + [739] = {.lex_state = 1389}, + [740] = {.lex_state = 1389}, + [741] = {.lex_state = 1389}, + [742] = {.lex_state = 1389}, + [743] = {.lex_state = 1389}, + [744] = {.lex_state = 1389}, + [745] = {.lex_state = 1389}, + [746] = {.lex_state = 1389}, + [747] = {.lex_state = 1389}, + [748] = {.lex_state = 1389}, + [749] = {.lex_state = 1389}, + [750] = {.lex_state = 1389}, + [751] = {.lex_state = 1389}, + [752] = {.lex_state = 1389}, + [753] = {.lex_state = 1389}, + [754] = {.lex_state = 1389}, + [755] = {.lex_state = 1389}, + [756] = {.lex_state = 1389}, + [757] = {.lex_state = 1389}, + [758] = {.lex_state = 1389}, + [759] = {.lex_state = 1389}, + [760] = {.lex_state = 1389}, + [761] = {.lex_state = 1389}, + [762] = {.lex_state = 1389}, + [763] = {.lex_state = 1389}, + [764] = {.lex_state = 1389}, + [765] = {.lex_state = 1389}, + [766] = {.lex_state = 1389}, + [767] = {.lex_state = 1389}, + [768] = {.lex_state = 1389}, + [769] = {.lex_state = 1389}, + [770] = {.lex_state = 1389}, + [771] = {.lex_state = 1389}, + [772] = {.lex_state = 1389}, + [773] = {.lex_state = 1389}, + [774] = {.lex_state = 1389}, + [775] = {.lex_state = 1389}, + [776] = {.lex_state = 1389}, + [777] = {.lex_state = 1389}, + [778] = {.lex_state = 1389}, + [779] = {.lex_state = 1389}, + [780] = {.lex_state = 1389}, + [781] = {.lex_state = 1389}, + [782] = {.lex_state = 1389}, + [783] = {.lex_state = 1389}, + [784] = {.lex_state = 1389}, + [785] = {.lex_state = 1389}, + [786] = {.lex_state = 1389}, [787] = {.lex_state = 2}, [788] = {.lex_state = 2}, [789] = {.lex_state = 0}, [790] = {.lex_state = 2}, - [791] = {.lex_state = 1}, - [792] = {.lex_state = 2}, - [793] = {.lex_state = 4}, - [794] = {.lex_state = 2}, + [791] = {.lex_state = 2}, + [792] = {.lex_state = 0}, + [793] = {.lex_state = 0}, + [794] = {.lex_state = 0}, [795] = {.lex_state = 2}, [796] = {.lex_state = 2}, - [797] = {.lex_state = 2}, + [797] = {.lex_state = 1}, [798] = {.lex_state = 2}, [799] = {.lex_state = 4}, [800] = {.lex_state = 2}, @@ -12261,17 +12374,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [808] = {.lex_state = 2}, [809] = {.lex_state = 2}, [810] = {.lex_state = 2}, - [811] = {.lex_state = 2}, + [811] = {.lex_state = 1}, [812] = {.lex_state = 2}, [813] = {.lex_state = 2}, [814] = {.lex_state = 2}, [815] = {.lex_state = 2}, [816] = {.lex_state = 2}, [817] = {.lex_state = 2}, - [818] = {.lex_state = 2}, + [818] = {.lex_state = 4}, [819] = {.lex_state = 2}, [820] = {.lex_state = 2}, - [821] = {.lex_state = 1}, + [821] = {.lex_state = 2}, [822] = {.lex_state = 2}, [823] = {.lex_state = 2}, [824] = {.lex_state = 2}, @@ -12289,7 +12402,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [836] = {.lex_state = 2}, [837] = {.lex_state = 2}, [838] = {.lex_state = 2}, - [839] = {.lex_state = 4}, + [839] = {.lex_state = 2}, [840] = {.lex_state = 2}, [841] = {.lex_state = 2}, [842] = {.lex_state = 2}, @@ -12298,8 +12411,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [845] = {.lex_state = 2}, [846] = {.lex_state = 2}, [847] = {.lex_state = 2}, - [848] = {.lex_state = 2}, - [849] = {.lex_state = 4}, + [848] = {.lex_state = 1}, + [849] = {.lex_state = 2}, [850] = {.lex_state = 2}, [851] = {.lex_state = 2}, [852] = {.lex_state = 2}, @@ -12310,7 +12423,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [857] = {.lex_state = 2}, [858] = {.lex_state = 2}, [859] = {.lex_state = 2}, - [860] = {.lex_state = 3}, + [860] = {.lex_state = 2}, [861] = {.lex_state = 2}, [862] = {.lex_state = 2}, [863] = {.lex_state = 2}, @@ -12323,10 +12436,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [870] = {.lex_state = 1}, [871] = {.lex_state = 2}, [872] = {.lex_state = 2}, - [873] = {.lex_state = 2}, - [874] = {.lex_state = 1}, + [873] = {.lex_state = 3}, + [874] = {.lex_state = 2}, [875] = {.lex_state = 2}, - [876] = {.lex_state = 2}, + [876] = {.lex_state = 4}, [877] = {.lex_state = 2}, [878] = {.lex_state = 2}, [879] = {.lex_state = 2}, @@ -12335,7 +12448,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [882] = {.lex_state = 2}, [883] = {.lex_state = 2}, [884] = {.lex_state = 2}, - [885] = {.lex_state = 2}, + [885] = {.lex_state = 4}, [886] = {.lex_state = 2}, [887] = {.lex_state = 2}, [888] = {.lex_state = 2}, @@ -12364,12 +12477,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [911] = {.lex_state = 2}, [912] = {.lex_state = 2}, [913] = {.lex_state = 2}, - [914] = {.lex_state = 2}, + [914] = {.lex_state = 4}, [915] = {.lex_state = 2}, [916] = {.lex_state = 2}, [917] = {.lex_state = 2}, [918] = {.lex_state = 2}, - [919] = {.lex_state = 3}, + [919] = {.lex_state = 2}, [920] = {.lex_state = 2}, [921] = {.lex_state = 2}, [922] = {.lex_state = 2}, @@ -12377,9 +12490,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [924] = {.lex_state = 2}, [925] = {.lex_state = 2}, [926] = {.lex_state = 2}, - [927] = {.lex_state = 4}, + [927] = {.lex_state = 2}, [928] = {.lex_state = 2}, - [929] = {.lex_state = 2}, + [929] = {.lex_state = 3}, [930] = {.lex_state = 2}, [931] = {.lex_state = 2}, [932] = {.lex_state = 2}, @@ -12387,13 +12500,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [934] = {.lex_state = 2}, [935] = {.lex_state = 2}, [936] = {.lex_state = 2}, - [937] = {.lex_state = 0}, + [937] = {.lex_state = 2}, [938] = {.lex_state = 2}, [939] = {.lex_state = 2}, [940] = {.lex_state = 2}, [941] = {.lex_state = 2}, [942] = {.lex_state = 2}, - [943] = {.lex_state = 2}, + [943] = {.lex_state = 0}, [944] = {.lex_state = 2}, [945] = {.lex_state = 2}, [946] = {.lex_state = 2}, @@ -12406,377 +12519,389 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [953] = {.lex_state = 2}, [954] = {.lex_state = 2}, [955] = {.lex_state = 2}, - [956] = {.lex_state = 4}, - [957] = {.lex_state = 7}, - [958] = {.lex_state = 7}, - [959] = {.lex_state = 5}, - [960] = {.lex_state = 0}, - [961] = {.lex_state = 3}, - [962] = {.lex_state = 1}, - [963] = {.lex_state = 0}, - [964] = {.lex_state = 3}, - [965] = {.lex_state = 7}, - [966] = {.lex_state = 7}, - [967] = {.lex_state = 7}, - [968] = {.lex_state = 1373}, - [969] = {.lex_state = 7}, - [970] = {.lex_state = 7}, - [971] = {.lex_state = 7}, - [972] = {.lex_state = 1373}, - [973] = {.lex_state = 7}, + [956] = {.lex_state = 2}, + [957] = {.lex_state = 2}, + [958] = {.lex_state = 2}, + [959] = {.lex_state = 2}, + [960] = {.lex_state = 2}, + [961] = {.lex_state = 2}, + [962] = {.lex_state = 2}, + [963] = {.lex_state = 2}, + [964] = {.lex_state = 2}, + [965] = {.lex_state = 2}, + [966] = {.lex_state = 2}, + [967] = {.lex_state = 3}, + [968] = {.lex_state = 0}, + [969] = {.lex_state = 0}, + [970] = {.lex_state = 3}, + [971] = {.lex_state = 5}, + [972] = {.lex_state = 7}, + [973] = {.lex_state = 4}, [974] = {.lex_state = 7}, - [975] = {.lex_state = 7}, + [975] = {.lex_state = 1}, [976] = {.lex_state = 7}, [977] = {.lex_state = 7}, - [978] = {.lex_state = 4}, - [979] = {.lex_state = 7}, + [978] = {.lex_state = 1389}, + [979] = {.lex_state = 4}, [980] = {.lex_state = 7}, [981] = {.lex_state = 7}, [982] = {.lex_state = 7}, [983] = {.lex_state = 7}, [984] = {.lex_state = 7}, - [985] = {.lex_state = 4}, + [985] = {.lex_state = 7}, [986] = {.lex_state = 7}, [987] = {.lex_state = 7}, - [988] = {.lex_state = 7}, - [989] = {.lex_state = 1373}, - [990] = {.lex_state = 7}, + [988] = {.lex_state = 4}, + [989] = {.lex_state = 7}, + [990] = {.lex_state = 6}, [991] = {.lex_state = 7}, [992] = {.lex_state = 7}, - [993] = {.lex_state = 1373}, + [993] = {.lex_state = 1389}, [994] = {.lex_state = 7}, [995] = {.lex_state = 7}, [996] = {.lex_state = 7}, - [997] = {.lex_state = 7}, - [998] = {.lex_state = 7}, - [999] = {.lex_state = 7}, + [997] = {.lex_state = 1389}, + [998] = {.lex_state = 1389}, + [999] = {.lex_state = 0}, [1000] = {.lex_state = 7}, - [1001] = {.lex_state = 6}, - [1002] = {.lex_state = 1373}, + [1001] = {.lex_state = 7}, + [1002] = {.lex_state = 7}, [1003] = {.lex_state = 7}, - [1004] = {.lex_state = 0}, - [1005] = {.lex_state = 0}, - [1006] = {.lex_state = 1373}, + [1004] = {.lex_state = 7}, + [1005] = {.lex_state = 7}, + [1006] = {.lex_state = 7}, [1007] = {.lex_state = 7}, - [1008] = {.lex_state = 1373}, + [1008] = {.lex_state = 7}, [1009] = {.lex_state = 7}, [1010] = {.lex_state = 7}, [1011] = {.lex_state = 7}, [1012] = {.lex_state = 7}, - [1013] = {.lex_state = 7}, - [1014] = {.lex_state = 8}, + [1013] = {.lex_state = 1}, + [1014] = {.lex_state = 7}, [1015] = {.lex_state = 7}, - [1016] = {.lex_state = 7}, + [1016] = {.lex_state = 1389}, [1017] = {.lex_state = 7}, [1018] = {.lex_state = 2}, - [1019] = {.lex_state = 7}, + [1019] = {.lex_state = 0}, [1020] = {.lex_state = 7}, - [1021] = {.lex_state = 1373}, + [1021] = {.lex_state = 1389}, [1022] = {.lex_state = 7}, - [1023] = {.lex_state = 1}, - [1024] = {.lex_state = 8}, + [1023] = {.lex_state = 1389}, + [1024] = {.lex_state = 7}, [1025] = {.lex_state = 7}, - [1026] = {.lex_state = 7}, - [1027] = {.lex_state = 0}, + [1026] = {.lex_state = 8}, + [1027] = {.lex_state = 8}, [1028] = {.lex_state = 7}, [1029] = {.lex_state = 7}, [1030] = {.lex_state = 7}, [1031] = {.lex_state = 7}, - [1032] = {.lex_state = 8}, - [1033] = {.lex_state = 8}, - [1034] = {.lex_state = 8}, - [1035] = {.lex_state = 8}, - [1036] = {.lex_state = 10}, - [1037] = {.lex_state = 8}, - [1038] = {.lex_state = 8}, - [1039] = {.lex_state = 8}, - [1040] = {.lex_state = 8}, - [1041] = {.lex_state = 8}, - [1042] = {.lex_state = 8}, - [1043] = {.lex_state = 8}, - [1044] = {.lex_state = 8}, + [1032] = {.lex_state = 0}, + [1033] = {.lex_state = 1389}, + [1034] = {.lex_state = 7}, + [1035] = {.lex_state = 7}, + [1036] = {.lex_state = 7}, + [1037] = {.lex_state = 7}, + [1038] = {.lex_state = 7}, + [1039] = {.lex_state = 7}, + [1040] = {.lex_state = 7}, + [1041] = {.lex_state = 7}, + [1042] = {.lex_state = 7}, + [1043] = {.lex_state = 11}, + [1044] = {.lex_state = 1}, [1045] = {.lex_state = 8}, [1046] = {.lex_state = 8}, [1047] = {.lex_state = 8}, [1048] = {.lex_state = 8}, [1049] = {.lex_state = 8}, [1050] = {.lex_state = 8}, - [1051] = {.lex_state = 1373}, + [1051] = {.lex_state = 8}, [1052] = {.lex_state = 8}, [1053] = {.lex_state = 8}, [1054] = {.lex_state = 8}, - [1055] = {.lex_state = 0}, + [1055] = {.lex_state = 8}, [1056] = {.lex_state = 8}, [1057] = {.lex_state = 8}, [1058] = {.lex_state = 8}, - [1059] = {.lex_state = 1373}, - [1060] = {.lex_state = 11}, + [1059] = {.lex_state = 8}, + [1060] = {.lex_state = 8}, [1061] = {.lex_state = 8}, - [1062] = {.lex_state = 1}, + [1062] = {.lex_state = 1389}, [1063] = {.lex_state = 8}, [1064] = {.lex_state = 8}, - [1065] = {.lex_state = 1}, + [1065] = {.lex_state = 1389}, [1066] = {.lex_state = 8}, - [1067] = {.lex_state = 2}, - [1068] = {.lex_state = 8}, + [1067] = {.lex_state = 8}, + [1068] = {.lex_state = 1}, [1069] = {.lex_state = 8}, - [1070] = {.lex_state = 8}, + [1070] = {.lex_state = 2}, [1071] = {.lex_state = 8}, [1072] = {.lex_state = 8}, - [1073] = {.lex_state = 0}, + [1073] = {.lex_state = 8}, [1074] = {.lex_state = 8}, - [1075] = {.lex_state = 8}, - [1076] = {.lex_state = 10}, - [1077] = {.lex_state = 11}, + [1075] = {.lex_state = 0}, + [1076] = {.lex_state = 8}, + [1077] = {.lex_state = 10}, [1078] = {.lex_state = 8}, [1079] = {.lex_state = 8}, - [1080] = {.lex_state = 10}, - [1081] = {.lex_state = 1373}, + [1080] = {.lex_state = 8}, + [1081] = {.lex_state = 1389}, [1082] = {.lex_state = 8}, [1083] = {.lex_state = 8}, [1084] = {.lex_state = 8}, [1085] = {.lex_state = 8}, [1086] = {.lex_state = 8}, [1087] = {.lex_state = 8}, - [1088] = {.lex_state = 1373}, - [1089] = {.lex_state = 1373}, - [1090] = {.lex_state = 10}, - [1091] = {.lex_state = 1373}, - [1092] = {.lex_state = 1373}, - [1093] = {.lex_state = 1373}, + [1088] = {.lex_state = 1389}, + [1089] = {.lex_state = 1389}, + [1090] = {.lex_state = 1389}, + [1091] = {.lex_state = 1389}, + [1092] = {.lex_state = 8}, + [1093] = {.lex_state = 8}, [1094] = {.lex_state = 8}, [1095] = {.lex_state = 8}, [1096] = {.lex_state = 8}, [1097] = {.lex_state = 8}, [1098] = {.lex_state = 8}, - [1099] = {.lex_state = 8}, - [1100] = {.lex_state = 9}, - [1101] = {.lex_state = 9}, - [1102] = {.lex_state = 9}, - [1103] = {.lex_state = 9}, - [1104] = {.lex_state = 9}, - [1105] = {.lex_state = 1373}, - [1106] = {.lex_state = 9}, - [1107] = {.lex_state = 9}, - [1108] = {.lex_state = 9}, - [1109] = {.lex_state = 9}, - [1110] = {.lex_state = 9}, - [1111] = {.lex_state = 9}, - [1112] = {.lex_state = 10}, + [1099] = {.lex_state = 1389}, + [1100] = {.lex_state = 8}, + [1101] = {.lex_state = 8}, + [1102] = {.lex_state = 8}, + [1103] = {.lex_state = 8}, + [1104] = {.lex_state = 8}, + [1105] = {.lex_state = 11}, + [1106] = {.lex_state = 8}, + [1107] = {.lex_state = 11}, + [1108] = {.lex_state = 11}, + [1109] = {.lex_state = 10}, + [1110] = {.lex_state = 0}, + [1111] = {.lex_state = 11}, + [1112] = {.lex_state = 9}, [1113] = {.lex_state = 9}, - [1114] = {.lex_state = 9}, + [1114] = {.lex_state = 11}, [1115] = {.lex_state = 9}, - [1116] = {.lex_state = 9}, + [1116] = {.lex_state = 11}, [1117] = {.lex_state = 9}, - [1118] = {.lex_state = 9}, - [1119] = {.lex_state = 10}, - [1120] = {.lex_state = 9}, + [1118] = {.lex_state = 11}, + [1119] = {.lex_state = 9}, + [1120] = {.lex_state = 11}, [1121] = {.lex_state = 9}, - [1122] = {.lex_state = 10}, + [1122] = {.lex_state = 11}, [1123] = {.lex_state = 9}, - [1124] = {.lex_state = 9}, + [1124] = {.lex_state = 11}, [1125] = {.lex_state = 9}, - [1126] = {.lex_state = 10}, - [1127] = {.lex_state = 9}, - [1128] = {.lex_state = 10}, - [1129] = {.lex_state = 9}, - [1130] = {.lex_state = 10}, - [1131] = {.lex_state = 9}, - [1132] = {.lex_state = 10}, - [1133] = {.lex_state = 9}, - [1134] = {.lex_state = 10}, - [1135] = {.lex_state = 9}, - [1136] = {.lex_state = 10}, - [1137] = {.lex_state = 9}, - [1138] = {.lex_state = 10}, - [1139] = {.lex_state = 9}, + [1126] = {.lex_state = 9}, + [1127] = {.lex_state = 11}, + [1128] = {.lex_state = 9}, + [1129] = {.lex_state = 1389}, + [1130] = {.lex_state = 9}, + [1131] = {.lex_state = 11}, + [1132] = {.lex_state = 9}, + [1133] = {.lex_state = 11}, + [1134] = {.lex_state = 9}, + [1135] = {.lex_state = 1389}, + [1136] = {.lex_state = 9}, + [1137] = {.lex_state = 11}, + [1138] = {.lex_state = 9}, + [1139] = {.lex_state = 11}, [1140] = {.lex_state = 9}, - [1141] = {.lex_state = 9}, - [1142] = {.lex_state = 10}, - [1143] = {.lex_state = 9}, + [1141] = {.lex_state = 11}, + [1142] = {.lex_state = 9}, + [1143] = {.lex_state = 11}, [1144] = {.lex_state = 9}, - [1145] = {.lex_state = 10}, + [1145] = {.lex_state = 11}, [1146] = {.lex_state = 9}, - [1147] = {.lex_state = 10}, + [1147] = {.lex_state = 11}, [1148] = {.lex_state = 9}, - [1149] = {.lex_state = 10}, + [1149] = {.lex_state = 11}, [1150] = {.lex_state = 9}, - [1151] = {.lex_state = 10}, + [1151] = {.lex_state = 11}, [1152] = {.lex_state = 9}, - [1153] = {.lex_state = 9}, - [1154] = {.lex_state = 1373}, - [1155] = {.lex_state = 9}, + [1153] = {.lex_state = 11}, + [1154] = {.lex_state = 9}, + [1155] = {.lex_state = 11}, [1156] = {.lex_state = 9}, - [1157] = {.lex_state = 9}, - [1158] = {.lex_state = 10}, - [1159] = {.lex_state = 9}, - [1160] = {.lex_state = 10}, - [1161] = {.lex_state = 9}, - [1162] = {.lex_state = 10}, - [1163] = {.lex_state = 9}, - [1164] = {.lex_state = 10}, - [1165] = {.lex_state = 9}, - [1166] = {.lex_state = 1373}, - [1167] = {.lex_state = 9}, - [1168] = {.lex_state = 10}, - [1169] = {.lex_state = 9}, + [1157] = {.lex_state = 11}, + [1158] = {.lex_state = 9}, + [1159] = {.lex_state = 11}, + [1160] = {.lex_state = 9}, + [1161] = {.lex_state = 11}, + [1162] = {.lex_state = 9}, + [1163] = {.lex_state = 11}, + [1164] = {.lex_state = 9}, + [1165] = {.lex_state = 11}, + [1166] = {.lex_state = 9}, + [1167] = {.lex_state = 11}, + [1168] = {.lex_state = 9}, + [1169] = {.lex_state = 11}, [1170] = {.lex_state = 9}, - [1171] = {.lex_state = 9}, - [1172] = {.lex_state = 1373}, - [1173] = {.lex_state = 9}, - [1174] = {.lex_state = 1373}, - [1175] = {.lex_state = 9}, + [1171] = {.lex_state = 11}, + [1172] = {.lex_state = 9}, + [1173] = {.lex_state = 11}, + [1174] = {.lex_state = 9}, + [1175] = {.lex_state = 2}, [1176] = {.lex_state = 9}, - [1177] = {.lex_state = 9}, + [1177] = {.lex_state = 11}, [1178] = {.lex_state = 9}, - [1179] = {.lex_state = 9}, - [1180] = {.lex_state = 1373}, + [1179] = {.lex_state = 11}, + [1180] = {.lex_state = 9}, [1181] = {.lex_state = 9}, - [1182] = {.lex_state = 10}, - [1183] = {.lex_state = 9}, + [1182] = {.lex_state = 9}, + [1183] = {.lex_state = 11}, [1184] = {.lex_state = 9}, - [1185] = {.lex_state = 9}, - [1186] = {.lex_state = 10}, - [1187] = {.lex_state = 9}, - [1188] = {.lex_state = 10}, - [1189] = {.lex_state = 9}, - [1190] = {.lex_state = 10}, - [1191] = {.lex_state = 9}, + [1185] = {.lex_state = 11}, + [1186] = {.lex_state = 9}, + [1187] = {.lex_state = 1389}, + [1188] = {.lex_state = 9}, + [1189] = {.lex_state = 1389}, + [1190] = {.lex_state = 9}, + [1191] = {.lex_state = 11}, [1192] = {.lex_state = 9}, - [1193] = {.lex_state = 9}, - [1194] = {.lex_state = 10}, - [1195] = {.lex_state = 9}, - [1196] = {.lex_state = 10}, - [1197] = {.lex_state = 9}, + [1193] = {.lex_state = 11}, + [1194] = {.lex_state = 9}, + [1195] = {.lex_state = 11}, + [1196] = {.lex_state = 9}, + [1197] = {.lex_state = 1389}, [1198] = {.lex_state = 9}, - [1199] = {.lex_state = 9}, + [1199] = {.lex_state = 11}, [1200] = {.lex_state = 9}, - [1201] = {.lex_state = 9}, - [1202] = {.lex_state = 10}, - [1203] = {.lex_state = 9}, - [1204] = {.lex_state = 1373}, - [1205] = {.lex_state = 9}, + [1201] = {.lex_state = 1389}, + [1202] = {.lex_state = 9}, + [1203] = {.lex_state = 11}, + [1204] = {.lex_state = 9}, + [1205] = {.lex_state = 11}, [1206] = {.lex_state = 9}, - [1207] = {.lex_state = 9}, + [1207] = {.lex_state = 11}, [1208] = {.lex_state = 9}, [1209] = {.lex_state = 9}, - [1210] = {.lex_state = 10}, - [1211] = {.lex_state = 9}, - [1212] = {.lex_state = 1373}, - [1213] = {.lex_state = 9}, - [1214] = {.lex_state = 10}, - [1215] = {.lex_state = 9}, - [1216] = {.lex_state = 10}, - [1217] = {.lex_state = 10}, - [1218] = {.lex_state = 10}, + [1210] = {.lex_state = 9}, + [1211] = {.lex_state = 11}, + [1212] = {.lex_state = 9}, + [1213] = {.lex_state = 11}, + [1214] = {.lex_state = 9}, + [1215] = {.lex_state = 11}, + [1216] = {.lex_state = 9}, + [1217] = {.lex_state = 9}, + [1218] = {.lex_state = 9}, [1219] = {.lex_state = 9}, - [1220] = {.lex_state = 10}, - [1221] = {.lex_state = 9}, - [1222] = {.lex_state = 10}, - [1223] = {.lex_state = 9}, - [1224] = {.lex_state = 1373}, - [1225] = {.lex_state = 1373}, - [1226] = {.lex_state = 10}, + [1220] = {.lex_state = 9}, + [1221] = {.lex_state = 11}, + [1222] = {.lex_state = 9}, + [1223] = {.lex_state = 11}, + [1224] = {.lex_state = 11}, + [1225] = {.lex_state = 11}, + [1226] = {.lex_state = 9}, [1227] = {.lex_state = 9}, - [1228] = {.lex_state = 10}, - [1229] = {.lex_state = 10}, - [1230] = {.lex_state = 1373}, - [1231] = {.lex_state = 10}, - [1232] = {.lex_state = 10}, - [1233] = {.lex_state = 10}, - [1234] = {.lex_state = 10}, + [1228] = {.lex_state = 11}, + [1229] = {.lex_state = 11}, + [1230] = {.lex_state = 9}, + [1231] = {.lex_state = 11}, + [1232] = {.lex_state = 11}, + [1233] = {.lex_state = 11}, + [1234] = {.lex_state = 1389}, [1235] = {.lex_state = 9}, - [1236] = {.lex_state = 9}, - [1237] = {.lex_state = 10}, - [1238] = {.lex_state = 10}, - [1239] = {.lex_state = 1373}, - [1240] = {.lex_state = 10}, - [1241] = {.lex_state = 10}, - [1242] = {.lex_state = 9}, - [1243] = {.lex_state = 10}, - [1244] = {.lex_state = 10}, - [1245] = {.lex_state = 2}, - [1246] = {.lex_state = 10}, + [1236] = {.lex_state = 1389}, + [1237] = {.lex_state = 1389}, + [1238] = {.lex_state = 11}, + [1239] = {.lex_state = 9}, + [1240] = {.lex_state = 11}, + [1241] = {.lex_state = 11}, + [1242] = {.lex_state = 11}, + [1243] = {.lex_state = 11}, + [1244] = {.lex_state = 9}, + [1245] = {.lex_state = 11}, + [1246] = {.lex_state = 11}, [1247] = {.lex_state = 9}, - [1248] = {.lex_state = 10}, - [1249] = {.lex_state = 10}, - [1250] = {.lex_state = 10}, - [1251] = {.lex_state = 9}, - [1252] = {.lex_state = 10}, - [1253] = {.lex_state = 10}, - [1254] = {.lex_state = 10}, - [1255] = {.lex_state = 9}, - [1256] = {.lex_state = 1373}, - [1257] = {.lex_state = 10}, - [1258] = {.lex_state = 10}, - [1259] = {.lex_state = 9}, - [1260] = {.lex_state = 9}, - [1261] = {.lex_state = 10}, - [1262] = {.lex_state = 1373}, - [1263] = {.lex_state = 9}, + [1248] = {.lex_state = 11}, + [1249] = {.lex_state = 11}, + [1250] = {.lex_state = 11}, + [1251] = {.lex_state = 1389}, + [1252] = {.lex_state = 9}, + [1253] = {.lex_state = 11}, + [1254] = {.lex_state = 1389}, + [1255] = {.lex_state = 1389}, + [1256] = {.lex_state = 9}, + [1257] = {.lex_state = 11}, + [1258] = {.lex_state = 9}, + [1259] = {.lex_state = 11}, + [1260] = {.lex_state = 11}, + [1261] = {.lex_state = 11}, + [1262] = {.lex_state = 9}, + [1263] = {.lex_state = 11}, [1264] = {.lex_state = 9}, - [1265] = {.lex_state = 10}, - [1266] = {.lex_state = 10}, - [1267] = {.lex_state = 10}, - [1268] = {.lex_state = 10}, + [1265] = {.lex_state = 11}, + [1266] = {.lex_state = 9}, + [1267] = {.lex_state = 1389}, + [1268] = {.lex_state = 9}, [1269] = {.lex_state = 9}, - [1270] = {.lex_state = 10}, - [1271] = {.lex_state = 9}, - [1272] = {.lex_state = 1373}, - [1273] = {.lex_state = 10}, - [1274] = {.lex_state = 10}, - [1275] = {.lex_state = 10}, - [1276] = {.lex_state = 10}, - [1277] = {.lex_state = 2}, + [1270] = {.lex_state = 11}, + [1271] = {.lex_state = 11}, + [1272] = {.lex_state = 9}, + [1273] = {.lex_state = 11}, + [1274] = {.lex_state = 9}, + [1275] = {.lex_state = 9}, + [1276] = {.lex_state = 11}, + [1277] = {.lex_state = 9}, [1278] = {.lex_state = 9}, - [1279] = {.lex_state = 10}, - [1280] = {.lex_state = 10}, - [1281] = {.lex_state = 10}, - [1282] = {.lex_state = 1373}, - [1283] = {.lex_state = 10}, - [1284] = {.lex_state = 10}, - [1285] = {.lex_state = 10}, + [1279] = {.lex_state = 11}, + [1280] = {.lex_state = 9}, + [1281] = {.lex_state = 11}, + [1282] = {.lex_state = 9}, + [1283] = {.lex_state = 9}, + [1284] = {.lex_state = 11}, + [1285] = {.lex_state = 11}, [1286] = {.lex_state = 9}, - [1287] = {.lex_state = 10}, - [1288] = {.lex_state = 10}, - [1289] = {.lex_state = 10}, - [1290] = {.lex_state = 10}, + [1287] = {.lex_state = 9}, + [1288] = {.lex_state = 2}, + [1289] = {.lex_state = 11}, + [1290] = {.lex_state = 9}, [1291] = {.lex_state = 9}, - [1292] = {.lex_state = 10}, - [1293] = {.lex_state = 10}, - [1294] = {.lex_state = 10}, - [1295] = {.lex_state = 9}, - [1296] = {.lex_state = 9}, - [1297] = {.lex_state = 10}, - [1298] = {.lex_state = 10}, - [1299] = {.lex_state = 10}, - [1300] = {.lex_state = 10}, - [1301] = {.lex_state = 10}, - [1302] = {.lex_state = 9}, - [1303] = {.lex_state = 10}, - [1304] = {.lex_state = 10}, + [1292] = {.lex_state = 11}, + [1293] = {.lex_state = 9}, + [1294] = {.lex_state = 9}, + [1295] = {.lex_state = 11}, + [1296] = {.lex_state = 1389}, + [1297] = {.lex_state = 9}, + [1298] = {.lex_state = 11}, + [1299] = {.lex_state = 9}, + [1300] = {.lex_state = 1389}, + [1301] = {.lex_state = 11}, + [1302] = {.lex_state = 11}, + [1303] = {.lex_state = 9}, + [1304] = {.lex_state = 1389}, [1305] = {.lex_state = 9}, [1306] = {.lex_state = 9}, - [1307] = {.lex_state = 10}, - [1308] = {.lex_state = 10}, + [1307] = {.lex_state = 11}, + [1308] = {.lex_state = 11}, [1309] = {.lex_state = 9}, [1310] = {.lex_state = 9}, - [1311] = {.lex_state = 10}, - [1312] = {.lex_state = 10}, + [1311] = {.lex_state = 11}, + [1312] = {.lex_state = 11}, [1313] = {.lex_state = 9}, - [1314] = {.lex_state = 10}, - [1315] = {.lex_state = 10}, - [1316] = {.lex_state = 10}, + [1314] = {.lex_state = 9}, + [1315] = {.lex_state = 11}, + [1316] = {.lex_state = 11}, [1317] = {.lex_state = 9}, - [1318] = {.lex_state = 9}, - [1319] = {.lex_state = 10}, + [1318] = {.lex_state = 11}, + [1319] = {.lex_state = 9}, [1320] = {.lex_state = 9}, - [1321] = {.lex_state = 10}, - [1322] = {.lex_state = 10}, - [1323] = {.lex_state = 10}, + [1321] = {.lex_state = 11}, + [1322] = {.lex_state = 11}, + [1323] = {.lex_state = 9}, [1324] = {.lex_state = 9}, - [1325] = {.lex_state = 10}, - [1326] = {.lex_state = 0}, + [1325] = {.lex_state = 11}, + [1326] = {.lex_state = 11}, + [1327] = {.lex_state = 9}, + [1328] = {.lex_state = 9}, + [1329] = {.lex_state = 11}, + [1330] = {.lex_state = 11}, + [1331] = {.lex_state = 9}, + [1332] = {.lex_state = 9}, + [1333] = {.lex_state = 9}, + [1334] = {.lex_state = 11}, + [1335] = {.lex_state = 9}, + [1336] = {.lex_state = 11}, + [1337] = {.lex_state = 9}, + [1338] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -12823,6 +12948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_control_path_token1] = ACTIONS(1), [aux_sym_control_persist_token1] = ACTIONS(1), [aux_sym_dynamic_forward_token1] = ACTIONS(1), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1), [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1), [aux_sym_escape_char_token1] = ACTIONS(1), [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1), @@ -12967,7 +13093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_xauth_location_token1] = ACTIONS(1), }, [1] = { - [sym_client_config] = STATE(1326), + [sym_client_config] = STATE(1338), [sym__option] = STATE(2), [sym_host] = STATE(2), [sym_match] = STATE(2), @@ -12995,6 +13121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_control_path] = STATE(2), [sym_control_persist] = STATE(2), [sym_dynamic_forward] = STATE(2), + [sym_enable_escape_commandline] = STATE(2), [sym_enable_ssh_keysign] = STATE(2), [sym_escape_char] = STATE(2), [sym_exit_on_forward_failure] = STATE(2), @@ -13108,90 +13235,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_control_path_token1] = ACTIONS(53), [aux_sym_control_persist_token1] = ACTIONS(55), [aux_sym_dynamic_forward_token1] = ACTIONS(57), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(59), - [aux_sym_escape_char_token1] = ACTIONS(61), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(63), - [aux_sym_fingerprint_hash_token1] = ACTIONS(65), - [aux_sym_fork_after_authentication_token1] = ACTIONS(67), - [aux_sym_forward_agent_token1] = ACTIONS(69), - [aux_sym_forward_x11_token1] = ACTIONS(71), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(73), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(75), - [aux_sym_gateway_ports_token1] = ACTIONS(77), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(79), - [aux_sym_gssapi_authentication_token1] = ACTIONS(81), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(83), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(85), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(87), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(89), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(91), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(93), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(95), - [aux_sym_hash_known_hosts_token1] = ACTIONS(97), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(99), - [aux_sym_hostbased_authentication_token1] = ACTIONS(101), - [aux_sym_host_key_algorithms_token1] = ACTIONS(103), - [aux_sym_host_key_alias_token1] = ACTIONS(105), - [aux_sym_hostname_token1] = ACTIONS(107), - [aux_sym_identities_only_token1] = ACTIONS(109), - [aux_sym_identity_agent_token1] = ACTIONS(111), - [aux_sym_identity_file_token1] = ACTIONS(113), - [aux_sym_ignore_unknown_token1] = ACTIONS(115), - [aux_sym_include_token1] = ACTIONS(117), - [aux_sym_ip_qos_token1] = ACTIONS(119), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(121), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(123), - [aux_sym_kex_algorithms_token1] = ACTIONS(125), - [aux_sym_known_hosts_command_token1] = ACTIONS(127), - [aux_sym_local_command_token1] = ACTIONS(129), - [aux_sym_local_forward_token1] = ACTIONS(131), - [aux_sym_log_level_token1] = ACTIONS(133), - [aux_sym_log_verbose_token1] = ACTIONS(135), - [aux_sym_macs_token1] = ACTIONS(137), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(139), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(141), - [aux_sym_password_authentication_token1] = ACTIONS(143), - [aux_sym_permit_local_command_token1] = ACTIONS(145), - [aux_sym_permit_remote_open_token1] = ACTIONS(147), - [aux_sym_pkcs11_provider_token1] = ACTIONS(149), - [aux_sym_port_token1] = ACTIONS(151), - [aux_sym_preferred_authentications_token1] = ACTIONS(153), - [aux_sym_protocol_token1] = ACTIONS(155), - [aux_sym_proxy_command_token1] = ACTIONS(157), - [aux_sym_proxy_jump_token1] = ACTIONS(159), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(161), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(163), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(165), - [aux_sym_pubkey_authentication_token1] = ACTIONS(167), - [aux_sym_rekey_limit_token1] = ACTIONS(169), - [aux_sym_remote_command_token1] = ACTIONS(171), - [aux_sym_remote_forward_token1] = ACTIONS(173), - [aux_sym_request_tty_token1] = ACTIONS(175), - [aux_sym_required_rsa_size_token1] = ACTIONS(177), - [aux_sym_revoked_host_keys_token1] = ACTIONS(179), - [aux_sym_security_key_provider_token1] = ACTIONS(181), - [aux_sym_send_env_token1] = ACTIONS(183), - [aux_sym_server_alive_count_max_token1] = ACTIONS(185), - [aux_sym_server_alive_interval_token1] = ACTIONS(187), - [aux_sym_session_type_token1] = ACTIONS(189), - [aux_sym_set_env_token1] = ACTIONS(191), - [aux_sym_stdin_null_token1] = ACTIONS(193), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(195), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(197), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(199), - [aux_sym_syslog_facility_token1] = ACTIONS(201), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(203), - [aux_sym_keep_alive_token1] = ACTIONS(205), - [aux_sym_tunnel_token1] = ACTIONS(207), - [aux_sym_tunnel_device_token1] = ACTIONS(209), - [aux_sym_update_host_keys_token1] = ACTIONS(211), - [aux_sym_use_keychain_token1] = ACTIONS(213), - [aux_sym_use_roaming_token1] = ACTIONS(215), - [aux_sym_user_token1] = ACTIONS(217), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(219), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(221), - [aux_sym_visual_host_key_token1] = ACTIONS(223), - [aux_sym_xauth_location_token1] = ACTIONS(225), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(59), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(61), + [aux_sym_escape_char_token1] = ACTIONS(63), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(65), + [aux_sym_fingerprint_hash_token1] = ACTIONS(67), + [aux_sym_fork_after_authentication_token1] = ACTIONS(69), + [aux_sym_forward_agent_token1] = ACTIONS(71), + [aux_sym_forward_x11_token1] = ACTIONS(73), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(75), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(77), + [aux_sym_gateway_ports_token1] = ACTIONS(79), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(81), + [aux_sym_gssapi_authentication_token1] = ACTIONS(83), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(85), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(87), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(89), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(91), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(93), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(95), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(97), + [aux_sym_hash_known_hosts_token1] = ACTIONS(99), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(101), + [aux_sym_hostbased_authentication_token1] = ACTIONS(103), + [aux_sym_host_key_algorithms_token1] = ACTIONS(105), + [aux_sym_host_key_alias_token1] = ACTIONS(107), + [aux_sym_hostname_token1] = ACTIONS(109), + [aux_sym_identities_only_token1] = ACTIONS(111), + [aux_sym_identity_agent_token1] = ACTIONS(113), + [aux_sym_identity_file_token1] = ACTIONS(115), + [aux_sym_ignore_unknown_token1] = ACTIONS(117), + [aux_sym_include_token1] = ACTIONS(119), + [aux_sym_ip_qos_token1] = ACTIONS(121), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(123), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(125), + [aux_sym_kex_algorithms_token1] = ACTIONS(127), + [aux_sym_known_hosts_command_token1] = ACTIONS(129), + [aux_sym_local_command_token1] = ACTIONS(131), + [aux_sym_local_forward_token1] = ACTIONS(133), + [aux_sym_log_level_token1] = ACTIONS(135), + [aux_sym_log_verbose_token1] = ACTIONS(137), + [aux_sym_macs_token1] = ACTIONS(139), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(141), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(143), + [aux_sym_password_authentication_token1] = ACTIONS(145), + [aux_sym_permit_local_command_token1] = ACTIONS(147), + [aux_sym_permit_remote_open_token1] = ACTIONS(149), + [aux_sym_pkcs11_provider_token1] = ACTIONS(151), + [aux_sym_port_token1] = ACTIONS(153), + [aux_sym_preferred_authentications_token1] = ACTIONS(155), + [aux_sym_protocol_token1] = ACTIONS(157), + [aux_sym_proxy_command_token1] = ACTIONS(159), + [aux_sym_proxy_jump_token1] = ACTIONS(161), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(163), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(165), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(167), + [aux_sym_pubkey_authentication_token1] = ACTIONS(169), + [aux_sym_rekey_limit_token1] = ACTIONS(171), + [aux_sym_remote_command_token1] = ACTIONS(173), + [aux_sym_remote_forward_token1] = ACTIONS(175), + [aux_sym_request_tty_token1] = ACTIONS(177), + [aux_sym_required_rsa_size_token1] = ACTIONS(179), + [aux_sym_revoked_host_keys_token1] = ACTIONS(181), + [aux_sym_security_key_provider_token1] = ACTIONS(183), + [aux_sym_send_env_token1] = ACTIONS(185), + [aux_sym_server_alive_count_max_token1] = ACTIONS(187), + [aux_sym_server_alive_interval_token1] = ACTIONS(189), + [aux_sym_session_type_token1] = ACTIONS(191), + [aux_sym_set_env_token1] = ACTIONS(193), + [aux_sym_stdin_null_token1] = ACTIONS(195), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(197), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(199), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(201), + [aux_sym_syslog_facility_token1] = ACTIONS(203), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(205), + [aux_sym_keep_alive_token1] = ACTIONS(207), + [aux_sym_tunnel_token1] = ACTIONS(209), + [aux_sym_tunnel_device_token1] = ACTIONS(211), + [aux_sym_update_host_keys_token1] = ACTIONS(213), + [aux_sym_use_keychain_token1] = ACTIONS(215), + [aux_sym_use_roaming_token1] = ACTIONS(217), + [aux_sym_user_token1] = ACTIONS(219), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(221), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(223), + [aux_sym_visual_host_key_token1] = ACTIONS(225), + [aux_sym_xauth_location_token1] = ACTIONS(227), }, [2] = { [sym__option] = STATE(3), @@ -13221,6 +13349,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_control_path] = STATE(3), [sym_control_persist] = STATE(3), [sym_dynamic_forward] = STATE(3), + [sym_enable_escape_commandline] = STATE(3), [sym_enable_ssh_keysign] = STATE(3), [sym_escape_char] = STATE(3), [sym_exit_on_forward_failure] = STATE(3), @@ -13306,7 +13435,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_visual_host_key] = STATE(3), [sym_xauth_location] = STATE(3), [aux_sym_client_config_repeat1] = STATE(3), - [ts_builtin_sym_end] = ACTIONS(227), + [ts_builtin_sym_end] = ACTIONS(229), [sym_comment] = ACTIONS(3), [aux_sym_host_token1] = ACTIONS(7), [aux_sym_match_token1] = ACTIONS(9), @@ -13334,90 +13463,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_control_path_token1] = ACTIONS(53), [aux_sym_control_persist_token1] = ACTIONS(55), [aux_sym_dynamic_forward_token1] = ACTIONS(57), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(59), - [aux_sym_escape_char_token1] = ACTIONS(61), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(63), - [aux_sym_fingerprint_hash_token1] = ACTIONS(65), - [aux_sym_fork_after_authentication_token1] = ACTIONS(67), - [aux_sym_forward_agent_token1] = ACTIONS(69), - [aux_sym_forward_x11_token1] = ACTIONS(71), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(73), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(75), - [aux_sym_gateway_ports_token1] = ACTIONS(77), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(79), - [aux_sym_gssapi_authentication_token1] = ACTIONS(81), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(83), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(85), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(87), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(89), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(91), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(93), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(95), - [aux_sym_hash_known_hosts_token1] = ACTIONS(97), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(99), - [aux_sym_hostbased_authentication_token1] = ACTIONS(101), - [aux_sym_host_key_algorithms_token1] = ACTIONS(103), - [aux_sym_host_key_alias_token1] = ACTIONS(105), - [aux_sym_hostname_token1] = ACTIONS(107), - [aux_sym_identities_only_token1] = ACTIONS(109), - [aux_sym_identity_agent_token1] = ACTIONS(111), - [aux_sym_identity_file_token1] = ACTIONS(113), - [aux_sym_ignore_unknown_token1] = ACTIONS(115), - [aux_sym_include_token1] = ACTIONS(117), - [aux_sym_ip_qos_token1] = ACTIONS(119), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(121), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(123), - [aux_sym_kex_algorithms_token1] = ACTIONS(125), - [aux_sym_known_hosts_command_token1] = ACTIONS(127), - [aux_sym_local_command_token1] = ACTIONS(129), - [aux_sym_local_forward_token1] = ACTIONS(131), - [aux_sym_log_level_token1] = ACTIONS(133), - [aux_sym_log_verbose_token1] = ACTIONS(135), - [aux_sym_macs_token1] = ACTIONS(137), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(139), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(141), - [aux_sym_password_authentication_token1] = ACTIONS(143), - [aux_sym_permit_local_command_token1] = ACTIONS(145), - [aux_sym_permit_remote_open_token1] = ACTIONS(147), - [aux_sym_pkcs11_provider_token1] = ACTIONS(149), - [aux_sym_port_token1] = ACTIONS(151), - [aux_sym_preferred_authentications_token1] = ACTIONS(153), - [aux_sym_protocol_token1] = ACTIONS(155), - [aux_sym_proxy_command_token1] = ACTIONS(157), - [aux_sym_proxy_jump_token1] = ACTIONS(159), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(161), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(163), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(165), - [aux_sym_pubkey_authentication_token1] = ACTIONS(167), - [aux_sym_rekey_limit_token1] = ACTIONS(169), - [aux_sym_remote_command_token1] = ACTIONS(171), - [aux_sym_remote_forward_token1] = ACTIONS(173), - [aux_sym_request_tty_token1] = ACTIONS(175), - [aux_sym_required_rsa_size_token1] = ACTIONS(177), - [aux_sym_revoked_host_keys_token1] = ACTIONS(179), - [aux_sym_security_key_provider_token1] = ACTIONS(181), - [aux_sym_send_env_token1] = ACTIONS(183), - [aux_sym_server_alive_count_max_token1] = ACTIONS(185), - [aux_sym_server_alive_interval_token1] = ACTIONS(187), - [aux_sym_session_type_token1] = ACTIONS(189), - [aux_sym_set_env_token1] = ACTIONS(191), - [aux_sym_stdin_null_token1] = ACTIONS(193), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(195), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(197), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(199), - [aux_sym_syslog_facility_token1] = ACTIONS(201), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(203), - [aux_sym_keep_alive_token1] = ACTIONS(205), - [aux_sym_tunnel_token1] = ACTIONS(207), - [aux_sym_tunnel_device_token1] = ACTIONS(209), - [aux_sym_update_host_keys_token1] = ACTIONS(211), - [aux_sym_use_keychain_token1] = ACTIONS(213), - [aux_sym_use_roaming_token1] = ACTIONS(215), - [aux_sym_user_token1] = ACTIONS(217), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(219), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(221), - [aux_sym_visual_host_key_token1] = ACTIONS(223), - [aux_sym_xauth_location_token1] = ACTIONS(225), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(59), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(61), + [aux_sym_escape_char_token1] = ACTIONS(63), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(65), + [aux_sym_fingerprint_hash_token1] = ACTIONS(67), + [aux_sym_fork_after_authentication_token1] = ACTIONS(69), + [aux_sym_forward_agent_token1] = ACTIONS(71), + [aux_sym_forward_x11_token1] = ACTIONS(73), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(75), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(77), + [aux_sym_gateway_ports_token1] = ACTIONS(79), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(81), + [aux_sym_gssapi_authentication_token1] = ACTIONS(83), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(85), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(87), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(89), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(91), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(93), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(95), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(97), + [aux_sym_hash_known_hosts_token1] = ACTIONS(99), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(101), + [aux_sym_hostbased_authentication_token1] = ACTIONS(103), + [aux_sym_host_key_algorithms_token1] = ACTIONS(105), + [aux_sym_host_key_alias_token1] = ACTIONS(107), + [aux_sym_hostname_token1] = ACTIONS(109), + [aux_sym_identities_only_token1] = ACTIONS(111), + [aux_sym_identity_agent_token1] = ACTIONS(113), + [aux_sym_identity_file_token1] = ACTIONS(115), + [aux_sym_ignore_unknown_token1] = ACTIONS(117), + [aux_sym_include_token1] = ACTIONS(119), + [aux_sym_ip_qos_token1] = ACTIONS(121), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(123), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(125), + [aux_sym_kex_algorithms_token1] = ACTIONS(127), + [aux_sym_known_hosts_command_token1] = ACTIONS(129), + [aux_sym_local_command_token1] = ACTIONS(131), + [aux_sym_local_forward_token1] = ACTIONS(133), + [aux_sym_log_level_token1] = ACTIONS(135), + [aux_sym_log_verbose_token1] = ACTIONS(137), + [aux_sym_macs_token1] = ACTIONS(139), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(141), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(143), + [aux_sym_password_authentication_token1] = ACTIONS(145), + [aux_sym_permit_local_command_token1] = ACTIONS(147), + [aux_sym_permit_remote_open_token1] = ACTIONS(149), + [aux_sym_pkcs11_provider_token1] = ACTIONS(151), + [aux_sym_port_token1] = ACTIONS(153), + [aux_sym_preferred_authentications_token1] = ACTIONS(155), + [aux_sym_protocol_token1] = ACTIONS(157), + [aux_sym_proxy_command_token1] = ACTIONS(159), + [aux_sym_proxy_jump_token1] = ACTIONS(161), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(163), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(165), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(167), + [aux_sym_pubkey_authentication_token1] = ACTIONS(169), + [aux_sym_rekey_limit_token1] = ACTIONS(171), + [aux_sym_remote_command_token1] = ACTIONS(173), + [aux_sym_remote_forward_token1] = ACTIONS(175), + [aux_sym_request_tty_token1] = ACTIONS(177), + [aux_sym_required_rsa_size_token1] = ACTIONS(179), + [aux_sym_revoked_host_keys_token1] = ACTIONS(181), + [aux_sym_security_key_provider_token1] = ACTIONS(183), + [aux_sym_send_env_token1] = ACTIONS(185), + [aux_sym_server_alive_count_max_token1] = ACTIONS(187), + [aux_sym_server_alive_interval_token1] = ACTIONS(189), + [aux_sym_session_type_token1] = ACTIONS(191), + [aux_sym_set_env_token1] = ACTIONS(193), + [aux_sym_stdin_null_token1] = ACTIONS(195), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(197), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(199), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(201), + [aux_sym_syslog_facility_token1] = ACTIONS(203), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(205), + [aux_sym_keep_alive_token1] = ACTIONS(207), + [aux_sym_tunnel_token1] = ACTIONS(209), + [aux_sym_tunnel_device_token1] = ACTIONS(211), + [aux_sym_update_host_keys_token1] = ACTIONS(213), + [aux_sym_use_keychain_token1] = ACTIONS(215), + [aux_sym_use_roaming_token1] = ACTIONS(217), + [aux_sym_user_token1] = ACTIONS(219), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(221), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(223), + [aux_sym_visual_host_key_token1] = ACTIONS(225), + [aux_sym_xauth_location_token1] = ACTIONS(227), }, [3] = { [sym__option] = STATE(3), @@ -13447,6 +13577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_control_path] = STATE(3), [sym_control_persist] = STATE(3), [sym_dynamic_forward] = STATE(3), + [sym_enable_escape_commandline] = STATE(3), [sym_enable_ssh_keysign] = STATE(3), [sym_escape_char] = STATE(3), [sym_exit_on_forward_failure] = STATE(3), @@ -13532,88568 +13663,90150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_visual_host_key] = STATE(3), [sym_xauth_location] = STATE(3), [aux_sym_client_config_repeat1] = STATE(3), - [ts_builtin_sym_end] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(231), - [aux_sym_match_token1] = ACTIONS(234), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(237), - [aux_sym_address_family_token1] = ACTIONS(240), - [aux_sym_batch_mode_token1] = ACTIONS(243), - [aux_sym_bind_address_token1] = ACTIONS(246), - [aux_sym_bind_interface_token1] = ACTIONS(249), - [aux_sym_canonical_domains_token1] = ACTIONS(252), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(255), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(258), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(261), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(264), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(267), - [aux_sym_certificate_file_token1] = ACTIONS(270), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(273), - [aux_sym_check_host_ip_token1] = ACTIONS(276), - [aux_sym_ciphers_token1] = ACTIONS(279), - [aux_sym_cipher_token1] = ACTIONS(282), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(285), - [aux_sym_compression_token1] = ACTIONS(288), - [aux_sym_connection_attempts_token1] = ACTIONS(291), - [aux_sym_connect_timeout_token1] = ACTIONS(294), - [aux_sym_control_master_token1] = ACTIONS(297), - [aux_sym_control_path_token1] = ACTIONS(300), - [aux_sym_control_persist_token1] = ACTIONS(303), - [aux_sym_dynamic_forward_token1] = ACTIONS(306), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(309), - [aux_sym_escape_char_token1] = ACTIONS(312), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(315), - [aux_sym_fingerprint_hash_token1] = ACTIONS(318), - [aux_sym_fork_after_authentication_token1] = ACTIONS(321), - [aux_sym_forward_agent_token1] = ACTIONS(324), - [aux_sym_forward_x11_token1] = ACTIONS(327), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(330), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(333), - [aux_sym_gateway_ports_token1] = ACTIONS(336), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(339), - [aux_sym_gssapi_authentication_token1] = ACTIONS(342), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(345), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(348), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(351), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(354), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(357), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(360), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(363), - [aux_sym_hash_known_hosts_token1] = ACTIONS(366), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(369), - [aux_sym_hostbased_authentication_token1] = ACTIONS(372), - [aux_sym_host_key_algorithms_token1] = ACTIONS(375), - [aux_sym_host_key_alias_token1] = ACTIONS(378), - [aux_sym_hostname_token1] = ACTIONS(381), - [aux_sym_identities_only_token1] = ACTIONS(384), - [aux_sym_identity_agent_token1] = ACTIONS(387), - [aux_sym_identity_file_token1] = ACTIONS(390), - [aux_sym_ignore_unknown_token1] = ACTIONS(393), - [aux_sym_include_token1] = ACTIONS(396), - [aux_sym_ip_qos_token1] = ACTIONS(399), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(402), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(405), - [aux_sym_kex_algorithms_token1] = ACTIONS(408), - [aux_sym_known_hosts_command_token1] = ACTIONS(411), - [aux_sym_local_command_token1] = ACTIONS(414), - [aux_sym_local_forward_token1] = ACTIONS(417), - [aux_sym_log_level_token1] = ACTIONS(420), - [aux_sym_log_verbose_token1] = ACTIONS(423), - [aux_sym_macs_token1] = ACTIONS(426), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(429), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(432), - [aux_sym_password_authentication_token1] = ACTIONS(435), - [aux_sym_permit_local_command_token1] = ACTIONS(438), - [aux_sym_permit_remote_open_token1] = ACTIONS(441), - [aux_sym_pkcs11_provider_token1] = ACTIONS(444), - [aux_sym_port_token1] = ACTIONS(447), - [aux_sym_preferred_authentications_token1] = ACTIONS(450), - [aux_sym_protocol_token1] = ACTIONS(453), - [aux_sym_proxy_command_token1] = ACTIONS(456), - [aux_sym_proxy_jump_token1] = ACTIONS(459), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(462), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(465), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(468), - [aux_sym_pubkey_authentication_token1] = ACTIONS(471), - [aux_sym_rekey_limit_token1] = ACTIONS(474), - [aux_sym_remote_command_token1] = ACTIONS(477), - [aux_sym_remote_forward_token1] = ACTIONS(480), - [aux_sym_request_tty_token1] = ACTIONS(483), - [aux_sym_required_rsa_size_token1] = ACTIONS(486), - [aux_sym_revoked_host_keys_token1] = ACTIONS(489), - [aux_sym_security_key_provider_token1] = ACTIONS(492), - [aux_sym_send_env_token1] = ACTIONS(495), - [aux_sym_server_alive_count_max_token1] = ACTIONS(498), - [aux_sym_server_alive_interval_token1] = ACTIONS(501), - [aux_sym_session_type_token1] = ACTIONS(504), - [aux_sym_set_env_token1] = ACTIONS(507), - [aux_sym_stdin_null_token1] = ACTIONS(510), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(513), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(516), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(519), - [aux_sym_syslog_facility_token1] = ACTIONS(522), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(525), - [aux_sym_keep_alive_token1] = ACTIONS(528), - [aux_sym_tunnel_token1] = ACTIONS(531), - [aux_sym_tunnel_device_token1] = ACTIONS(534), - [aux_sym_update_host_keys_token1] = ACTIONS(537), - [aux_sym_use_keychain_token1] = ACTIONS(540), - [aux_sym_use_roaming_token1] = ACTIONS(543), - [aux_sym_user_token1] = ACTIONS(546), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(549), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(552), - [aux_sym_visual_host_key_token1] = ACTIONS(555), - [aux_sym_xauth_location_token1] = ACTIONS(558), + [ts_builtin_sym_end] = ACTIONS(231), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(233), + [aux_sym_match_token1] = ACTIONS(236), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(239), + [aux_sym_address_family_token1] = ACTIONS(242), + [aux_sym_batch_mode_token1] = ACTIONS(245), + [aux_sym_bind_address_token1] = ACTIONS(248), + [aux_sym_bind_interface_token1] = ACTIONS(251), + [aux_sym_canonical_domains_token1] = ACTIONS(254), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(257), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(260), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(263), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(266), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(269), + [aux_sym_certificate_file_token1] = ACTIONS(272), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(275), + [aux_sym_check_host_ip_token1] = ACTIONS(278), + [aux_sym_ciphers_token1] = ACTIONS(281), + [aux_sym_cipher_token1] = ACTIONS(284), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(287), + [aux_sym_compression_token1] = ACTIONS(290), + [aux_sym_connection_attempts_token1] = ACTIONS(293), + [aux_sym_connect_timeout_token1] = ACTIONS(296), + [aux_sym_control_master_token1] = ACTIONS(299), + [aux_sym_control_path_token1] = ACTIONS(302), + [aux_sym_control_persist_token1] = ACTIONS(305), + [aux_sym_dynamic_forward_token1] = ACTIONS(308), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(311), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(314), + [aux_sym_escape_char_token1] = ACTIONS(317), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(320), + [aux_sym_fingerprint_hash_token1] = ACTIONS(323), + [aux_sym_fork_after_authentication_token1] = ACTIONS(326), + [aux_sym_forward_agent_token1] = ACTIONS(329), + [aux_sym_forward_x11_token1] = ACTIONS(332), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(335), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(338), + [aux_sym_gateway_ports_token1] = ACTIONS(341), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(344), + [aux_sym_gssapi_authentication_token1] = ACTIONS(347), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(350), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(353), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(356), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(359), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(362), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(365), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(368), + [aux_sym_hash_known_hosts_token1] = ACTIONS(371), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(374), + [aux_sym_hostbased_authentication_token1] = ACTIONS(377), + [aux_sym_host_key_algorithms_token1] = ACTIONS(380), + [aux_sym_host_key_alias_token1] = ACTIONS(383), + [aux_sym_hostname_token1] = ACTIONS(386), + [aux_sym_identities_only_token1] = ACTIONS(389), + [aux_sym_identity_agent_token1] = ACTIONS(392), + [aux_sym_identity_file_token1] = ACTIONS(395), + [aux_sym_ignore_unknown_token1] = ACTIONS(398), + [aux_sym_include_token1] = ACTIONS(401), + [aux_sym_ip_qos_token1] = ACTIONS(404), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(407), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(410), + [aux_sym_kex_algorithms_token1] = ACTIONS(413), + [aux_sym_known_hosts_command_token1] = ACTIONS(416), + [aux_sym_local_command_token1] = ACTIONS(419), + [aux_sym_local_forward_token1] = ACTIONS(422), + [aux_sym_log_level_token1] = ACTIONS(425), + [aux_sym_log_verbose_token1] = ACTIONS(428), + [aux_sym_macs_token1] = ACTIONS(431), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(434), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(437), + [aux_sym_password_authentication_token1] = ACTIONS(440), + [aux_sym_permit_local_command_token1] = ACTIONS(443), + [aux_sym_permit_remote_open_token1] = ACTIONS(446), + [aux_sym_pkcs11_provider_token1] = ACTIONS(449), + [aux_sym_port_token1] = ACTIONS(452), + [aux_sym_preferred_authentications_token1] = ACTIONS(455), + [aux_sym_protocol_token1] = ACTIONS(458), + [aux_sym_proxy_command_token1] = ACTIONS(461), + [aux_sym_proxy_jump_token1] = ACTIONS(464), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(467), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(470), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(473), + [aux_sym_pubkey_authentication_token1] = ACTIONS(476), + [aux_sym_rekey_limit_token1] = ACTIONS(479), + [aux_sym_remote_command_token1] = ACTIONS(482), + [aux_sym_remote_forward_token1] = ACTIONS(485), + [aux_sym_request_tty_token1] = ACTIONS(488), + [aux_sym_required_rsa_size_token1] = ACTIONS(491), + [aux_sym_revoked_host_keys_token1] = ACTIONS(494), + [aux_sym_security_key_provider_token1] = ACTIONS(497), + [aux_sym_send_env_token1] = ACTIONS(500), + [aux_sym_server_alive_count_max_token1] = ACTIONS(503), + [aux_sym_server_alive_interval_token1] = ACTIONS(506), + [aux_sym_session_type_token1] = ACTIONS(509), + [aux_sym_set_env_token1] = ACTIONS(512), + [aux_sym_stdin_null_token1] = ACTIONS(515), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(518), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(521), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(524), + [aux_sym_syslog_facility_token1] = ACTIONS(527), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(530), + [aux_sym_keep_alive_token1] = ACTIONS(533), + [aux_sym_tunnel_token1] = ACTIONS(536), + [aux_sym_tunnel_device_token1] = ACTIONS(539), + [aux_sym_update_host_keys_token1] = ACTIONS(542), + [aux_sym_use_keychain_token1] = ACTIONS(545), + [aux_sym_use_roaming_token1] = ACTIONS(548), + [aux_sym_user_token1] = ACTIONS(551), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(554), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(557), + [aux_sym_visual_host_key_token1] = ACTIONS(560), + [aux_sym_xauth_location_token1] = ACTIONS(563), }, [4] = { - [ts_builtin_sym_end] = ACTIONS(561), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(563), - [anon_sym_DQUOTE] = ACTIONS(565), - [aux_sym_match_token1] = ACTIONS(561), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(561), - [aux_sym_address_family_token1] = ACTIONS(561), - [aux_sym_batch_mode_token1] = ACTIONS(561), - [aux_sym_bind_address_token1] = ACTIONS(561), - [aux_sym_bind_interface_token1] = ACTIONS(561), - [aux_sym_canonical_domains_token1] = ACTIONS(561), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(561), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(561), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(561), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(561), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(561), - [aux_sym_certificate_file_token1] = ACTIONS(561), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(561), - [aux_sym_check_host_ip_token1] = ACTIONS(561), - [aux_sym_ciphers_token1] = ACTIONS(561), - [aux_sym_cipher_token1] = ACTIONS(563), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(561), - [aux_sym_compression_token1] = ACTIONS(561), - [aux_sym_connection_attempts_token1] = ACTIONS(561), - [aux_sym_connect_timeout_token1] = ACTIONS(561), - [aux_sym_control_master_token1] = ACTIONS(561), - [aux_sym_control_path_token1] = ACTIONS(561), - [aux_sym_control_persist_token1] = ACTIONS(561), - [aux_sym_dynamic_forward_token1] = ACTIONS(561), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(561), - [aux_sym_escape_char_token1] = ACTIONS(561), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(561), - [aux_sym_fingerprint_hash_token1] = ACTIONS(561), - [aux_sym_fork_after_authentication_token1] = ACTIONS(561), - [aux_sym_forward_agent_token1] = ACTIONS(561), - [aux_sym_forward_x11_token1] = ACTIONS(563), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(561), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(561), - [aux_sym_gateway_ports_token1] = ACTIONS(561), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(561), - [aux_sym_gssapi_authentication_token1] = ACTIONS(561), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(561), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(561), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(561), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(561), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(561), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(561), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(561), - [aux_sym_hash_known_hosts_token1] = ACTIONS(561), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(561), - [aux_sym_hostbased_authentication_token1] = ACTIONS(561), - [aux_sym_host_key_algorithms_token1] = ACTIONS(561), - [aux_sym_host_key_alias_token1] = ACTIONS(561), - [aux_sym_hostname_token1] = ACTIONS(561), - [aux_sym_identities_only_token1] = ACTIONS(561), - [aux_sym_identity_agent_token1] = ACTIONS(561), - [aux_sym_identity_file_token1] = ACTIONS(561), - [aux_sym_ignore_unknown_token1] = ACTIONS(561), - [aux_sym_include_token1] = ACTIONS(561), - [aux_sym_ip_qos_token1] = ACTIONS(561), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(561), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(561), - [aux_sym_kex_algorithms_token1] = ACTIONS(561), - [aux_sym_known_hosts_command_token1] = ACTIONS(561), - [aux_sym_local_command_token1] = ACTIONS(561), - [aux_sym_local_forward_token1] = ACTIONS(561), - [aux_sym_log_level_token1] = ACTIONS(561), - [aux_sym_log_verbose_token1] = ACTIONS(561), - [aux_sym_macs_token1] = ACTIONS(561), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(561), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(561), - [aux_sym_password_authentication_token1] = ACTIONS(561), - [aux_sym_permit_local_command_token1] = ACTIONS(561), - [aux_sym_permit_remote_open_token1] = ACTIONS(561), - [aux_sym_pkcs11_provider_token1] = ACTIONS(561), - [aux_sym_port_token1] = ACTIONS(561), - [aux_sym_preferred_authentications_token1] = ACTIONS(561), - [aux_sym_protocol_token1] = ACTIONS(561), - [aux_sym_proxy_command_token1] = ACTIONS(561), - [aux_sym_proxy_jump_token1] = ACTIONS(561), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(561), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(561), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(561), - [aux_sym_pubkey_authentication_token1] = ACTIONS(561), - [aux_sym_rekey_limit_token1] = ACTIONS(561), - [aux_sym_remote_command_token1] = ACTIONS(561), - [aux_sym_remote_forward_token1] = ACTIONS(561), - [aux_sym_request_tty_token1] = ACTIONS(561), - [aux_sym_required_rsa_size_token1] = ACTIONS(561), - [aux_sym_revoked_host_keys_token1] = ACTIONS(561), - [aux_sym_security_key_provider_token1] = ACTIONS(561), - [aux_sym_send_env_token1] = ACTIONS(561), - [aux_sym_server_alive_count_max_token1] = ACTIONS(561), - [aux_sym_server_alive_interval_token1] = ACTIONS(561), - [aux_sym_session_type_token1] = ACTIONS(561), - [aux_sym_set_env_token1] = ACTIONS(561), - [aux_sym_stdin_null_token1] = ACTIONS(561), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(561), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(561), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(561), - [aux_sym_syslog_facility_token1] = ACTIONS(561), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(561), - [aux_sym_keep_alive_token1] = ACTIONS(561), - [aux_sym_tunnel_token1] = ACTIONS(563), - [aux_sym_tunnel_device_token1] = ACTIONS(561), - [aux_sym_update_host_keys_token1] = ACTIONS(561), - [aux_sym_use_keychain_token1] = ACTIONS(561), - [aux_sym_use_roaming_token1] = ACTIONS(561), - [aux_sym_user_token1] = ACTIONS(563), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(561), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(561), - [aux_sym_visual_host_key_token1] = ACTIONS(561), - [aux_sym_xauth_location_token1] = ACTIONS(561), + [ts_builtin_sym_end] = ACTIONS(566), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(568), + [anon_sym_DQUOTE] = ACTIONS(570), + [aux_sym_match_token1] = ACTIONS(566), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(566), + [aux_sym_address_family_token1] = ACTIONS(566), + [aux_sym_batch_mode_token1] = ACTIONS(566), + [aux_sym_bind_address_token1] = ACTIONS(566), + [aux_sym_bind_interface_token1] = ACTIONS(566), + [aux_sym_canonical_domains_token1] = ACTIONS(566), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(566), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(566), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(566), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(566), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(566), + [aux_sym_certificate_file_token1] = ACTIONS(566), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(566), + [aux_sym_check_host_ip_token1] = ACTIONS(566), + [aux_sym_ciphers_token1] = ACTIONS(566), + [aux_sym_cipher_token1] = ACTIONS(568), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(566), + [aux_sym_compression_token1] = ACTIONS(566), + [aux_sym_connection_attempts_token1] = ACTIONS(566), + [aux_sym_connect_timeout_token1] = ACTIONS(566), + [aux_sym_control_master_token1] = ACTIONS(566), + [aux_sym_control_path_token1] = ACTIONS(566), + [aux_sym_control_persist_token1] = ACTIONS(566), + [aux_sym_dynamic_forward_token1] = ACTIONS(566), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(566), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(566), + [aux_sym_escape_char_token1] = ACTIONS(566), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(566), + [aux_sym_fingerprint_hash_token1] = ACTIONS(566), + [aux_sym_fork_after_authentication_token1] = ACTIONS(566), + [aux_sym_forward_agent_token1] = ACTIONS(566), + [aux_sym_forward_x11_token1] = ACTIONS(568), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(566), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(566), + [aux_sym_gateway_ports_token1] = ACTIONS(566), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(566), + [aux_sym_gssapi_authentication_token1] = ACTIONS(566), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(566), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(566), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(566), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(566), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(566), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(566), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(566), + [aux_sym_hash_known_hosts_token1] = ACTIONS(566), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(566), + [aux_sym_hostbased_authentication_token1] = ACTIONS(566), + [aux_sym_host_key_algorithms_token1] = ACTIONS(566), + [aux_sym_host_key_alias_token1] = ACTIONS(566), + [aux_sym_hostname_token1] = ACTIONS(566), + [aux_sym_identities_only_token1] = ACTIONS(566), + [aux_sym_identity_agent_token1] = ACTIONS(566), + [aux_sym_identity_file_token1] = ACTIONS(566), + [aux_sym_ignore_unknown_token1] = ACTIONS(566), + [aux_sym_include_token1] = ACTIONS(566), + [aux_sym_ip_qos_token1] = ACTIONS(566), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(566), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(566), + [aux_sym_kex_algorithms_token1] = ACTIONS(566), + [aux_sym_known_hosts_command_token1] = ACTIONS(566), + [aux_sym_local_command_token1] = ACTIONS(566), + [aux_sym_local_forward_token1] = ACTIONS(566), + [aux_sym_log_level_token1] = ACTIONS(566), + [aux_sym_log_verbose_token1] = ACTIONS(566), + [aux_sym_macs_token1] = ACTIONS(566), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(566), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(566), + [aux_sym_password_authentication_token1] = ACTIONS(566), + [aux_sym_permit_local_command_token1] = ACTIONS(566), + [aux_sym_permit_remote_open_token1] = ACTIONS(566), + [aux_sym_pkcs11_provider_token1] = ACTIONS(566), + [aux_sym_port_token1] = ACTIONS(566), + [aux_sym_preferred_authentications_token1] = ACTIONS(566), + [aux_sym_protocol_token1] = ACTIONS(566), + [aux_sym_proxy_command_token1] = ACTIONS(566), + [aux_sym_proxy_jump_token1] = ACTIONS(566), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(566), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(566), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(566), + [aux_sym_pubkey_authentication_token1] = ACTIONS(566), + [aux_sym_rekey_limit_token1] = ACTIONS(566), + [aux_sym_remote_command_token1] = ACTIONS(566), + [aux_sym_remote_forward_token1] = ACTIONS(566), + [aux_sym_request_tty_token1] = ACTIONS(566), + [aux_sym_required_rsa_size_token1] = ACTIONS(566), + [aux_sym_revoked_host_keys_token1] = ACTIONS(566), + [aux_sym_security_key_provider_token1] = ACTIONS(566), + [aux_sym_send_env_token1] = ACTIONS(566), + [aux_sym_server_alive_count_max_token1] = ACTIONS(566), + [aux_sym_server_alive_interval_token1] = ACTIONS(566), + [aux_sym_session_type_token1] = ACTIONS(566), + [aux_sym_set_env_token1] = ACTIONS(566), + [aux_sym_stdin_null_token1] = ACTIONS(566), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(566), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(566), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(566), + [aux_sym_syslog_facility_token1] = ACTIONS(566), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(566), + [aux_sym_keep_alive_token1] = ACTIONS(566), + [aux_sym_tunnel_token1] = ACTIONS(568), + [aux_sym_tunnel_device_token1] = ACTIONS(566), + [aux_sym_update_host_keys_token1] = ACTIONS(566), + [aux_sym_use_keychain_token1] = ACTIONS(566), + [aux_sym_use_roaming_token1] = ACTIONS(566), + [aux_sym_user_token1] = ACTIONS(568), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(566), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(566), + [aux_sym_visual_host_key_token1] = ACTIONS(566), + [aux_sym_xauth_location_token1] = ACTIONS(566), }, [5] = { - [ts_builtin_sym_end] = ACTIONS(567), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [aux_sym_match_token1] = ACTIONS(567), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(567), - [aux_sym_address_family_token1] = ACTIONS(567), - [aux_sym_batch_mode_token1] = ACTIONS(567), - [aux_sym_bind_address_token1] = ACTIONS(567), - [aux_sym_bind_interface_token1] = ACTIONS(567), - [aux_sym_canonical_domains_token1] = ACTIONS(567), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(567), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(567), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(567), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(567), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(567), - [aux_sym_certificate_file_token1] = ACTIONS(567), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(567), - [aux_sym_check_host_ip_token1] = ACTIONS(567), - [aux_sym_ciphers_token1] = ACTIONS(567), - [aux_sym_cipher_token1] = ACTIONS(569), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(567), - [aux_sym_compression_token1] = ACTIONS(567), - [aux_sym_connection_attempts_token1] = ACTIONS(567), - [aux_sym_connect_timeout_token1] = ACTIONS(567), - [aux_sym_control_master_token1] = ACTIONS(567), - [aux_sym_control_path_token1] = ACTIONS(567), - [aux_sym_control_persist_token1] = ACTIONS(567), - [aux_sym_dynamic_forward_token1] = ACTIONS(567), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(567), - [aux_sym_escape_char_token1] = ACTIONS(567), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(567), - [aux_sym_fingerprint_hash_token1] = ACTIONS(567), - [aux_sym_fork_after_authentication_token1] = ACTIONS(567), - [aux_sym_forward_agent_token1] = ACTIONS(567), - [aux_sym_forward_x11_token1] = ACTIONS(569), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(567), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(567), - [aux_sym_gateway_ports_token1] = ACTIONS(567), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(567), - [aux_sym_gssapi_authentication_token1] = ACTIONS(567), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(567), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(567), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(567), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(567), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(567), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(567), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(567), - [aux_sym_hash_known_hosts_token1] = ACTIONS(567), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(567), - [aux_sym_hostbased_authentication_token1] = ACTIONS(567), - [aux_sym_host_key_algorithms_token1] = ACTIONS(567), - [aux_sym_host_key_alias_token1] = ACTIONS(567), - [aux_sym_hostname_token1] = ACTIONS(567), - [aux_sym_identities_only_token1] = ACTIONS(567), - [aux_sym_identity_agent_token1] = ACTIONS(567), - [aux_sym_identity_file_token1] = ACTIONS(567), - [aux_sym_ignore_unknown_token1] = ACTIONS(567), - [aux_sym_include_token1] = ACTIONS(567), - [aux_sym_ip_qos_token1] = ACTIONS(567), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(567), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(567), - [aux_sym_kex_algorithms_token1] = ACTIONS(567), - [aux_sym_known_hosts_command_token1] = ACTIONS(567), - [aux_sym_local_command_token1] = ACTIONS(567), - [aux_sym_local_forward_token1] = ACTIONS(567), - [aux_sym_log_level_token1] = ACTIONS(567), - [aux_sym_log_verbose_token1] = ACTIONS(567), - [aux_sym_macs_token1] = ACTIONS(567), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(567), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(567), - [aux_sym_password_authentication_token1] = ACTIONS(567), - [aux_sym_permit_local_command_token1] = ACTIONS(567), - [aux_sym_permit_remote_open_token1] = ACTIONS(567), - [aux_sym_pkcs11_provider_token1] = ACTIONS(567), - [aux_sym_port_token1] = ACTIONS(567), - [aux_sym_preferred_authentications_token1] = ACTIONS(567), - [aux_sym_protocol_token1] = ACTIONS(567), - [aux_sym_proxy_command_token1] = ACTIONS(567), - [aux_sym_proxy_jump_token1] = ACTIONS(567), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(567), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(567), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(567), - [aux_sym_pubkey_authentication_token1] = ACTIONS(567), - [aux_sym_rekey_limit_token1] = ACTIONS(567), - [aux_sym_remote_command_token1] = ACTIONS(567), - [aux_sym_remote_forward_token1] = ACTIONS(567), - [aux_sym_request_tty_token1] = ACTIONS(567), - [aux_sym_required_rsa_size_token1] = ACTIONS(567), - [aux_sym_revoked_host_keys_token1] = ACTIONS(567), - [aux_sym_security_key_provider_token1] = ACTIONS(567), - [aux_sym_send_env_token1] = ACTIONS(567), - [aux_sym_server_alive_count_max_token1] = ACTIONS(567), - [aux_sym_server_alive_interval_token1] = ACTIONS(567), - [aux_sym_session_type_token1] = ACTIONS(567), - [aux_sym_set_env_token1] = ACTIONS(567), - [aux_sym_stdin_null_token1] = ACTIONS(567), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(567), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(567), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(567), - [aux_sym_syslog_facility_token1] = ACTIONS(567), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(567), - [aux_sym_keep_alive_token1] = ACTIONS(567), - [aux_sym_tunnel_token1] = ACTIONS(569), - [aux_sym_tunnel_device_token1] = ACTIONS(567), - [aux_sym_update_host_keys_token1] = ACTIONS(567), - [aux_sym_use_keychain_token1] = ACTIONS(567), - [aux_sym_use_roaming_token1] = ACTIONS(567), - [aux_sym_user_token1] = ACTIONS(569), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(567), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(567), - [aux_sym_visual_host_key_token1] = ACTIONS(567), - [aux_sym_xauth_location_token1] = ACTIONS(567), + [ts_builtin_sym_end] = ACTIONS(572), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(574), + [anon_sym_DQUOTE] = ACTIONS(576), + [aux_sym_match_token1] = ACTIONS(572), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(572), + [aux_sym_address_family_token1] = ACTIONS(572), + [aux_sym_batch_mode_token1] = ACTIONS(572), + [aux_sym_bind_address_token1] = ACTIONS(572), + [aux_sym_bind_interface_token1] = ACTIONS(572), + [aux_sym_canonical_domains_token1] = ACTIONS(572), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(572), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(572), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(572), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(572), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(572), + [aux_sym_certificate_file_token1] = ACTIONS(572), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(572), + [aux_sym_check_host_ip_token1] = ACTIONS(572), + [aux_sym_ciphers_token1] = ACTIONS(572), + [aux_sym_cipher_token1] = ACTIONS(574), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(572), + [aux_sym_compression_token1] = ACTIONS(572), + [aux_sym_connection_attempts_token1] = ACTIONS(572), + [aux_sym_connect_timeout_token1] = ACTIONS(572), + [aux_sym_control_master_token1] = ACTIONS(572), + [aux_sym_control_path_token1] = ACTIONS(572), + [aux_sym_control_persist_token1] = ACTIONS(572), + [aux_sym_dynamic_forward_token1] = ACTIONS(572), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(572), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(572), + [aux_sym_escape_char_token1] = ACTIONS(572), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(572), + [aux_sym_fingerprint_hash_token1] = ACTIONS(572), + [aux_sym_fork_after_authentication_token1] = ACTIONS(572), + [aux_sym_forward_agent_token1] = ACTIONS(572), + [aux_sym_forward_x11_token1] = ACTIONS(574), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(572), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(572), + [aux_sym_gateway_ports_token1] = ACTIONS(572), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(572), + [aux_sym_gssapi_authentication_token1] = ACTIONS(572), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(572), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(572), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(572), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(572), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(572), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(572), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(572), + [aux_sym_hash_known_hosts_token1] = ACTIONS(572), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(572), + [aux_sym_hostbased_authentication_token1] = ACTIONS(572), + [aux_sym_host_key_algorithms_token1] = ACTIONS(572), + [aux_sym_host_key_alias_token1] = ACTIONS(572), + [aux_sym_hostname_token1] = ACTIONS(572), + [aux_sym_identities_only_token1] = ACTIONS(572), + [aux_sym_identity_agent_token1] = ACTIONS(572), + [aux_sym_identity_file_token1] = ACTIONS(572), + [aux_sym_ignore_unknown_token1] = ACTIONS(572), + [aux_sym_include_token1] = ACTIONS(572), + [aux_sym_ip_qos_token1] = ACTIONS(572), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(572), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(572), + [aux_sym_kex_algorithms_token1] = ACTIONS(572), + [aux_sym_known_hosts_command_token1] = ACTIONS(572), + [aux_sym_local_command_token1] = ACTIONS(572), + [aux_sym_local_forward_token1] = ACTIONS(572), + [aux_sym_log_level_token1] = ACTIONS(572), + [aux_sym_log_verbose_token1] = ACTIONS(572), + [aux_sym_macs_token1] = ACTIONS(572), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(572), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(572), + [aux_sym_password_authentication_token1] = ACTIONS(572), + [aux_sym_permit_local_command_token1] = ACTIONS(572), + [aux_sym_permit_remote_open_token1] = ACTIONS(572), + [aux_sym_pkcs11_provider_token1] = ACTIONS(572), + [aux_sym_port_token1] = ACTIONS(572), + [aux_sym_preferred_authentications_token1] = ACTIONS(572), + [aux_sym_protocol_token1] = ACTIONS(572), + [aux_sym_proxy_command_token1] = ACTIONS(572), + [aux_sym_proxy_jump_token1] = ACTIONS(572), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(572), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(572), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(572), + [aux_sym_pubkey_authentication_token1] = ACTIONS(572), + [aux_sym_rekey_limit_token1] = ACTIONS(572), + [aux_sym_remote_command_token1] = ACTIONS(572), + [aux_sym_remote_forward_token1] = ACTIONS(572), + [aux_sym_request_tty_token1] = ACTIONS(572), + [aux_sym_required_rsa_size_token1] = ACTIONS(572), + [aux_sym_revoked_host_keys_token1] = ACTIONS(572), + [aux_sym_security_key_provider_token1] = ACTIONS(572), + [aux_sym_send_env_token1] = ACTIONS(572), + [aux_sym_server_alive_count_max_token1] = ACTIONS(572), + [aux_sym_server_alive_interval_token1] = ACTIONS(572), + [aux_sym_session_type_token1] = ACTIONS(572), + [aux_sym_set_env_token1] = ACTIONS(572), + [aux_sym_stdin_null_token1] = ACTIONS(572), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(572), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(572), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(572), + [aux_sym_syslog_facility_token1] = ACTIONS(572), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(572), + [aux_sym_keep_alive_token1] = ACTIONS(572), + [aux_sym_tunnel_token1] = ACTIONS(574), + [aux_sym_tunnel_device_token1] = ACTIONS(572), + [aux_sym_update_host_keys_token1] = ACTIONS(572), + [aux_sym_use_keychain_token1] = ACTIONS(572), + [aux_sym_use_roaming_token1] = ACTIONS(572), + [aux_sym_user_token1] = ACTIONS(574), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(572), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(572), + [aux_sym_visual_host_key_token1] = ACTIONS(572), + [aux_sym_xauth_location_token1] = ACTIONS(572), }, [6] = { - [ts_builtin_sym_end] = ACTIONS(573), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(577), - [aux_sym_match_token1] = ACTIONS(573), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(573), - [aux_sym_address_family_token1] = ACTIONS(573), - [aux_sym_batch_mode_token1] = ACTIONS(573), - [aux_sym_bind_address_token1] = ACTIONS(573), - [aux_sym_bind_interface_token1] = ACTIONS(573), - [aux_sym_canonical_domains_token1] = ACTIONS(573), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(573), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(573), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(573), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(573), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(573), - [aux_sym_certificate_file_token1] = ACTIONS(573), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(573), - [aux_sym_check_host_ip_token1] = ACTIONS(573), - [aux_sym_ciphers_token1] = ACTIONS(573), - [aux_sym_cipher_token1] = ACTIONS(575), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(573), - [aux_sym_compression_token1] = ACTIONS(573), - [aux_sym_connection_attempts_token1] = ACTIONS(573), - [aux_sym_connect_timeout_token1] = ACTIONS(573), - [aux_sym_control_master_token1] = ACTIONS(573), - [aux_sym_control_path_token1] = ACTIONS(573), - [aux_sym_control_persist_token1] = ACTIONS(573), - [aux_sym_dynamic_forward_token1] = ACTIONS(573), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(573), - [aux_sym_escape_char_token1] = ACTIONS(573), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(573), - [aux_sym_fingerprint_hash_token1] = ACTIONS(573), - [aux_sym_fork_after_authentication_token1] = ACTIONS(573), - [aux_sym_forward_agent_token1] = ACTIONS(573), - [aux_sym_forward_x11_token1] = ACTIONS(575), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(573), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(573), - [aux_sym_gateway_ports_token1] = ACTIONS(573), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(573), - [aux_sym_gssapi_authentication_token1] = ACTIONS(573), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(573), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(573), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(573), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(573), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(573), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(573), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(573), - [aux_sym_hash_known_hosts_token1] = ACTIONS(573), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(573), - [aux_sym_hostbased_authentication_token1] = ACTIONS(573), - [aux_sym_host_key_algorithms_token1] = ACTIONS(573), - [aux_sym_host_key_alias_token1] = ACTIONS(573), - [aux_sym_hostname_token1] = ACTIONS(573), - [aux_sym_identities_only_token1] = ACTIONS(573), - [aux_sym_identity_agent_token1] = ACTIONS(573), - [aux_sym_identity_file_token1] = ACTIONS(573), - [aux_sym_ignore_unknown_token1] = ACTIONS(573), - [aux_sym_include_token1] = ACTIONS(573), - [aux_sym_ip_qos_token1] = ACTIONS(573), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(573), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(573), - [aux_sym_kex_algorithms_token1] = ACTIONS(573), - [aux_sym_known_hosts_command_token1] = ACTIONS(573), - [aux_sym_local_command_token1] = ACTIONS(573), - [aux_sym_local_forward_token1] = ACTIONS(573), - [aux_sym_log_level_token1] = ACTIONS(573), - [aux_sym_log_verbose_token1] = ACTIONS(573), - [aux_sym_macs_token1] = ACTIONS(573), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(573), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(573), - [aux_sym_password_authentication_token1] = ACTIONS(573), - [aux_sym_permit_local_command_token1] = ACTIONS(573), - [aux_sym_permit_remote_open_token1] = ACTIONS(573), - [aux_sym_pkcs11_provider_token1] = ACTIONS(573), - [aux_sym_port_token1] = ACTIONS(573), - [aux_sym_preferred_authentications_token1] = ACTIONS(573), - [aux_sym_protocol_token1] = ACTIONS(573), - [aux_sym_proxy_command_token1] = ACTIONS(573), - [aux_sym_proxy_jump_token1] = ACTIONS(573), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(573), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(573), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(573), - [aux_sym_pubkey_authentication_token1] = ACTIONS(573), - [aux_sym_rekey_limit_token1] = ACTIONS(573), - [aux_sym_remote_command_token1] = ACTIONS(573), - [aux_sym_remote_forward_token1] = ACTIONS(573), - [aux_sym_request_tty_token1] = ACTIONS(573), - [aux_sym_required_rsa_size_token1] = ACTIONS(573), - [aux_sym_revoked_host_keys_token1] = ACTIONS(573), - [aux_sym_security_key_provider_token1] = ACTIONS(573), - [aux_sym_send_env_token1] = ACTIONS(573), - [aux_sym_server_alive_count_max_token1] = ACTIONS(573), - [aux_sym_server_alive_interval_token1] = ACTIONS(573), - [aux_sym_session_type_token1] = ACTIONS(573), - [aux_sym_set_env_token1] = ACTIONS(573), - [aux_sym_stdin_null_token1] = ACTIONS(573), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(573), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(573), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(573), - [aux_sym_syslog_facility_token1] = ACTIONS(573), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(573), - [aux_sym_keep_alive_token1] = ACTIONS(573), - [aux_sym_tunnel_token1] = ACTIONS(575), - [aux_sym_tunnel_device_token1] = ACTIONS(573), - [aux_sym_update_host_keys_token1] = ACTIONS(573), - [aux_sym_use_keychain_token1] = ACTIONS(573), - [aux_sym_use_roaming_token1] = ACTIONS(573), - [aux_sym_user_token1] = ACTIONS(575), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(573), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(573), - [aux_sym_visual_host_key_token1] = ACTIONS(573), - [aux_sym_xauth_location_token1] = ACTIONS(573), + [ts_builtin_sym_end] = ACTIONS(578), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [aux_sym_match_token1] = ACTIONS(578), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(578), + [aux_sym_address_family_token1] = ACTIONS(578), + [aux_sym_batch_mode_token1] = ACTIONS(578), + [aux_sym_bind_address_token1] = ACTIONS(578), + [aux_sym_bind_interface_token1] = ACTIONS(578), + [aux_sym_canonical_domains_token1] = ACTIONS(578), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(578), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(578), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(578), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(578), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(578), + [aux_sym_certificate_file_token1] = ACTIONS(578), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(578), + [aux_sym_check_host_ip_token1] = ACTIONS(578), + [aux_sym_ciphers_token1] = ACTIONS(578), + [aux_sym_cipher_token1] = ACTIONS(580), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(578), + [aux_sym_compression_token1] = ACTIONS(578), + [aux_sym_connection_attempts_token1] = ACTIONS(578), + [aux_sym_connect_timeout_token1] = ACTIONS(578), + [aux_sym_control_master_token1] = ACTIONS(578), + [aux_sym_control_path_token1] = ACTIONS(578), + [aux_sym_control_persist_token1] = ACTIONS(578), + [aux_sym_dynamic_forward_token1] = ACTIONS(578), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(578), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(578), + [aux_sym_escape_char_token1] = ACTIONS(578), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(578), + [aux_sym_fingerprint_hash_token1] = ACTIONS(578), + [aux_sym_fork_after_authentication_token1] = ACTIONS(578), + [aux_sym_forward_agent_token1] = ACTIONS(578), + [aux_sym_forward_x11_token1] = ACTIONS(580), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(578), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(578), + [aux_sym_gateway_ports_token1] = ACTIONS(578), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(578), + [aux_sym_gssapi_authentication_token1] = ACTIONS(578), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(578), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(578), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(578), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(578), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(578), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(578), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(578), + [aux_sym_hash_known_hosts_token1] = ACTIONS(578), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(578), + [aux_sym_hostbased_authentication_token1] = ACTIONS(578), + [aux_sym_host_key_algorithms_token1] = ACTIONS(578), + [aux_sym_host_key_alias_token1] = ACTIONS(578), + [aux_sym_hostname_token1] = ACTIONS(578), + [aux_sym_identities_only_token1] = ACTIONS(578), + [aux_sym_identity_agent_token1] = ACTIONS(578), + [aux_sym_identity_file_token1] = ACTIONS(578), + [aux_sym_ignore_unknown_token1] = ACTIONS(578), + [aux_sym_include_token1] = ACTIONS(578), + [aux_sym_ip_qos_token1] = ACTIONS(578), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(578), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(578), + [aux_sym_kex_algorithms_token1] = ACTIONS(578), + [aux_sym_known_hosts_command_token1] = ACTIONS(578), + [aux_sym_local_command_token1] = ACTIONS(578), + [aux_sym_local_forward_token1] = ACTIONS(578), + [aux_sym_log_level_token1] = ACTIONS(578), + [aux_sym_log_verbose_token1] = ACTIONS(578), + [aux_sym_macs_token1] = ACTIONS(578), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(578), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(578), + [aux_sym_password_authentication_token1] = ACTIONS(578), + [aux_sym_permit_local_command_token1] = ACTIONS(578), + [aux_sym_permit_remote_open_token1] = ACTIONS(578), + [aux_sym_pkcs11_provider_token1] = ACTIONS(578), + [aux_sym_port_token1] = ACTIONS(578), + [aux_sym_preferred_authentications_token1] = ACTIONS(578), + [aux_sym_protocol_token1] = ACTIONS(578), + [aux_sym_proxy_command_token1] = ACTIONS(578), + [aux_sym_proxy_jump_token1] = ACTIONS(578), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(578), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(578), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(578), + [aux_sym_pubkey_authentication_token1] = ACTIONS(578), + [aux_sym_rekey_limit_token1] = ACTIONS(578), + [aux_sym_remote_command_token1] = ACTIONS(578), + [aux_sym_remote_forward_token1] = ACTIONS(578), + [aux_sym_request_tty_token1] = ACTIONS(578), + [aux_sym_required_rsa_size_token1] = ACTIONS(578), + [aux_sym_revoked_host_keys_token1] = ACTIONS(578), + [aux_sym_security_key_provider_token1] = ACTIONS(578), + [aux_sym_send_env_token1] = ACTIONS(578), + [aux_sym_server_alive_count_max_token1] = ACTIONS(578), + [aux_sym_server_alive_interval_token1] = ACTIONS(578), + [aux_sym_session_type_token1] = ACTIONS(578), + [aux_sym_set_env_token1] = ACTIONS(578), + [aux_sym_stdin_null_token1] = ACTIONS(578), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(578), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(578), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(578), + [aux_sym_syslog_facility_token1] = ACTIONS(578), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(578), + [aux_sym_keep_alive_token1] = ACTIONS(578), + [aux_sym_tunnel_token1] = ACTIONS(580), + [aux_sym_tunnel_device_token1] = ACTIONS(578), + [aux_sym_update_host_keys_token1] = ACTIONS(578), + [aux_sym_use_keychain_token1] = ACTIONS(578), + [aux_sym_use_roaming_token1] = ACTIONS(578), + [aux_sym_user_token1] = ACTIONS(580), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(578), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(578), + [aux_sym_visual_host_key_token1] = ACTIONS(578), + [aux_sym_xauth_location_token1] = ACTIONS(578), }, [7] = { - [ts_builtin_sym_end] = ACTIONS(579), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(583), - [aux_sym_match_token1] = ACTIONS(579), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(579), - [aux_sym_address_family_token1] = ACTIONS(579), - [aux_sym_batch_mode_token1] = ACTIONS(579), - [aux_sym_bind_address_token1] = ACTIONS(579), - [aux_sym_bind_interface_token1] = ACTIONS(579), - [aux_sym_canonical_domains_token1] = ACTIONS(579), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(579), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(579), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(579), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(579), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(579), - [aux_sym_certificate_file_token1] = ACTIONS(579), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(579), - [aux_sym_check_host_ip_token1] = ACTIONS(579), - [aux_sym_ciphers_token1] = ACTIONS(579), - [aux_sym_cipher_token1] = ACTIONS(581), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(579), - [aux_sym_compression_token1] = ACTIONS(579), - [aux_sym_connection_attempts_token1] = ACTIONS(579), - [aux_sym_connect_timeout_token1] = ACTIONS(579), - [aux_sym_control_master_token1] = ACTIONS(579), - [aux_sym_control_path_token1] = ACTIONS(579), - [aux_sym_control_persist_token1] = ACTIONS(579), - [aux_sym_dynamic_forward_token1] = ACTIONS(579), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(579), - [aux_sym_escape_char_token1] = ACTIONS(579), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(579), - [aux_sym_fingerprint_hash_token1] = ACTIONS(579), - [aux_sym_fork_after_authentication_token1] = ACTIONS(579), - [aux_sym_forward_agent_token1] = ACTIONS(579), - [aux_sym_forward_x11_token1] = ACTIONS(581), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(579), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(579), - [aux_sym_gateway_ports_token1] = ACTIONS(579), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(579), - [aux_sym_gssapi_authentication_token1] = ACTIONS(579), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(579), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(579), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(579), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(579), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(579), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(579), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(579), - [aux_sym_hash_known_hosts_token1] = ACTIONS(579), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(579), - [aux_sym_hostbased_authentication_token1] = ACTIONS(579), - [aux_sym_host_key_algorithms_token1] = ACTIONS(579), - [aux_sym_host_key_alias_token1] = ACTIONS(579), - [aux_sym_hostname_token1] = ACTIONS(579), - [aux_sym_identities_only_token1] = ACTIONS(579), - [aux_sym_identity_agent_token1] = ACTIONS(579), - [aux_sym_identity_file_token1] = ACTIONS(579), - [aux_sym_ignore_unknown_token1] = ACTIONS(579), - [aux_sym_include_token1] = ACTIONS(579), - [aux_sym_ip_qos_token1] = ACTIONS(579), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(579), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(579), - [aux_sym_kex_algorithms_token1] = ACTIONS(579), - [aux_sym_known_hosts_command_token1] = ACTIONS(579), - [aux_sym_local_command_token1] = ACTIONS(579), - [aux_sym_local_forward_token1] = ACTIONS(579), - [aux_sym_log_level_token1] = ACTIONS(579), - [aux_sym_log_verbose_token1] = ACTIONS(579), - [aux_sym_macs_token1] = ACTIONS(579), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(579), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(579), - [aux_sym_password_authentication_token1] = ACTIONS(579), - [aux_sym_permit_local_command_token1] = ACTIONS(579), - [aux_sym_permit_remote_open_token1] = ACTIONS(579), - [aux_sym_pkcs11_provider_token1] = ACTIONS(579), - [aux_sym_port_token1] = ACTIONS(579), - [aux_sym_preferred_authentications_token1] = ACTIONS(579), - [aux_sym_protocol_token1] = ACTIONS(579), - [aux_sym_proxy_command_token1] = ACTIONS(579), - [aux_sym_proxy_jump_token1] = ACTIONS(579), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(579), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(579), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(579), - [aux_sym_pubkey_authentication_token1] = ACTIONS(579), - [aux_sym_rekey_limit_token1] = ACTIONS(579), - [aux_sym_remote_command_token1] = ACTIONS(579), - [aux_sym_remote_forward_token1] = ACTIONS(579), - [aux_sym_request_tty_token1] = ACTIONS(579), - [aux_sym_required_rsa_size_token1] = ACTIONS(579), - [aux_sym_revoked_host_keys_token1] = ACTIONS(579), - [aux_sym_security_key_provider_token1] = ACTIONS(579), - [aux_sym_send_env_token1] = ACTIONS(579), - [aux_sym_server_alive_count_max_token1] = ACTIONS(579), - [aux_sym_server_alive_interval_token1] = ACTIONS(579), - [aux_sym_session_type_token1] = ACTIONS(579), - [aux_sym_set_env_token1] = ACTIONS(579), - [aux_sym_stdin_null_token1] = ACTIONS(579), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(579), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(579), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(579), - [aux_sym_syslog_facility_token1] = ACTIONS(579), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(579), - [aux_sym_keep_alive_token1] = ACTIONS(579), - [aux_sym_tunnel_token1] = ACTIONS(581), - [aux_sym_tunnel_device_token1] = ACTIONS(579), - [aux_sym_update_host_keys_token1] = ACTIONS(579), - [aux_sym_use_keychain_token1] = ACTIONS(579), - [aux_sym_use_roaming_token1] = ACTIONS(579), - [aux_sym_user_token1] = ACTIONS(581), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(579), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(579), - [aux_sym_visual_host_key_token1] = ACTIONS(579), - [aux_sym_xauth_location_token1] = ACTIONS(579), + [ts_builtin_sym_end] = ACTIONS(584), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(586), + [anon_sym_DQUOTE] = ACTIONS(588), + [aux_sym_match_token1] = ACTIONS(584), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(584), + [aux_sym_address_family_token1] = ACTIONS(584), + [aux_sym_batch_mode_token1] = ACTIONS(584), + [aux_sym_bind_address_token1] = ACTIONS(584), + [aux_sym_bind_interface_token1] = ACTIONS(584), + [aux_sym_canonical_domains_token1] = ACTIONS(584), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(584), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(584), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(584), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(584), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(584), + [aux_sym_certificate_file_token1] = ACTIONS(584), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(584), + [aux_sym_check_host_ip_token1] = ACTIONS(584), + [aux_sym_ciphers_token1] = ACTIONS(584), + [aux_sym_cipher_token1] = ACTIONS(586), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(584), + [aux_sym_compression_token1] = ACTIONS(584), + [aux_sym_connection_attempts_token1] = ACTIONS(584), + [aux_sym_connect_timeout_token1] = ACTIONS(584), + [aux_sym_control_master_token1] = ACTIONS(584), + [aux_sym_control_path_token1] = ACTIONS(584), + [aux_sym_control_persist_token1] = ACTIONS(584), + [aux_sym_dynamic_forward_token1] = ACTIONS(584), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(584), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(584), + [aux_sym_escape_char_token1] = ACTIONS(584), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(584), + [aux_sym_fingerprint_hash_token1] = ACTIONS(584), + [aux_sym_fork_after_authentication_token1] = ACTIONS(584), + [aux_sym_forward_agent_token1] = ACTIONS(584), + [aux_sym_forward_x11_token1] = ACTIONS(586), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(584), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(584), + [aux_sym_gateway_ports_token1] = ACTIONS(584), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(584), + [aux_sym_gssapi_authentication_token1] = ACTIONS(584), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(584), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(584), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(584), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(584), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(584), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(584), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(584), + [aux_sym_hash_known_hosts_token1] = ACTIONS(584), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(584), + [aux_sym_hostbased_authentication_token1] = ACTIONS(584), + [aux_sym_host_key_algorithms_token1] = ACTIONS(584), + [aux_sym_host_key_alias_token1] = ACTIONS(584), + [aux_sym_hostname_token1] = ACTIONS(584), + [aux_sym_identities_only_token1] = ACTIONS(584), + [aux_sym_identity_agent_token1] = ACTIONS(584), + [aux_sym_identity_file_token1] = ACTIONS(584), + [aux_sym_ignore_unknown_token1] = ACTIONS(584), + [aux_sym_include_token1] = ACTIONS(584), + [aux_sym_ip_qos_token1] = ACTIONS(584), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(584), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(584), + [aux_sym_kex_algorithms_token1] = ACTIONS(584), + [aux_sym_known_hosts_command_token1] = ACTIONS(584), + [aux_sym_local_command_token1] = ACTIONS(584), + [aux_sym_local_forward_token1] = ACTIONS(584), + [aux_sym_log_level_token1] = ACTIONS(584), + [aux_sym_log_verbose_token1] = ACTIONS(584), + [aux_sym_macs_token1] = ACTIONS(584), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(584), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(584), + [aux_sym_password_authentication_token1] = ACTIONS(584), + [aux_sym_permit_local_command_token1] = ACTIONS(584), + [aux_sym_permit_remote_open_token1] = ACTIONS(584), + [aux_sym_pkcs11_provider_token1] = ACTIONS(584), + [aux_sym_port_token1] = ACTIONS(584), + [aux_sym_preferred_authentications_token1] = ACTIONS(584), + [aux_sym_protocol_token1] = ACTIONS(584), + [aux_sym_proxy_command_token1] = ACTIONS(584), + [aux_sym_proxy_jump_token1] = ACTIONS(584), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(584), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(584), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(584), + [aux_sym_pubkey_authentication_token1] = ACTIONS(584), + [aux_sym_rekey_limit_token1] = ACTIONS(584), + [aux_sym_remote_command_token1] = ACTIONS(584), + [aux_sym_remote_forward_token1] = ACTIONS(584), + [aux_sym_request_tty_token1] = ACTIONS(584), + [aux_sym_required_rsa_size_token1] = ACTIONS(584), + [aux_sym_revoked_host_keys_token1] = ACTIONS(584), + [aux_sym_security_key_provider_token1] = ACTIONS(584), + [aux_sym_send_env_token1] = ACTIONS(584), + [aux_sym_server_alive_count_max_token1] = ACTIONS(584), + [aux_sym_server_alive_interval_token1] = ACTIONS(584), + [aux_sym_session_type_token1] = ACTIONS(584), + [aux_sym_set_env_token1] = ACTIONS(584), + [aux_sym_stdin_null_token1] = ACTIONS(584), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(584), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(584), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(584), + [aux_sym_syslog_facility_token1] = ACTIONS(584), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(584), + [aux_sym_keep_alive_token1] = ACTIONS(584), + [aux_sym_tunnel_token1] = ACTIONS(586), + [aux_sym_tunnel_device_token1] = ACTIONS(584), + [aux_sym_update_host_keys_token1] = ACTIONS(584), + [aux_sym_use_keychain_token1] = ACTIONS(584), + [aux_sym_use_roaming_token1] = ACTIONS(584), + [aux_sym_user_token1] = ACTIONS(586), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(584), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(584), + [aux_sym_visual_host_key_token1] = ACTIONS(584), + [aux_sym_xauth_location_token1] = ACTIONS(584), }, [8] = { - [ts_builtin_sym_end] = ACTIONS(585), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(589), - [aux_sym_match_token1] = ACTIONS(585), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(585), - [aux_sym_address_family_token1] = ACTIONS(585), - [aux_sym_batch_mode_token1] = ACTIONS(585), - [aux_sym_bind_address_token1] = ACTIONS(585), - [aux_sym_bind_interface_token1] = ACTIONS(585), - [aux_sym_canonical_domains_token1] = ACTIONS(585), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(585), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(585), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(585), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(585), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(585), - [aux_sym_certificate_file_token1] = ACTIONS(585), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(585), - [aux_sym_check_host_ip_token1] = ACTIONS(585), - [aux_sym_ciphers_token1] = ACTIONS(585), - [aux_sym_cipher_token1] = ACTIONS(587), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(585), - [aux_sym_compression_token1] = ACTIONS(585), - [aux_sym_connection_attempts_token1] = ACTIONS(585), - [aux_sym_connect_timeout_token1] = ACTIONS(585), - [aux_sym_control_master_token1] = ACTIONS(585), - [aux_sym_control_path_token1] = ACTIONS(585), - [aux_sym_control_persist_token1] = ACTIONS(585), - [aux_sym_dynamic_forward_token1] = ACTIONS(585), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(585), - [aux_sym_escape_char_token1] = ACTIONS(585), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(585), - [aux_sym_fingerprint_hash_token1] = ACTIONS(585), - [aux_sym_fork_after_authentication_token1] = ACTIONS(585), - [aux_sym_forward_agent_token1] = ACTIONS(585), - [aux_sym_forward_x11_token1] = ACTIONS(587), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(585), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(585), - [aux_sym_gateway_ports_token1] = ACTIONS(585), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(585), - [aux_sym_gssapi_authentication_token1] = ACTIONS(585), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(585), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(585), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(585), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(585), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(585), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(585), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(585), - [aux_sym_hash_known_hosts_token1] = ACTIONS(585), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(585), - [aux_sym_hostbased_authentication_token1] = ACTIONS(585), - [aux_sym_host_key_algorithms_token1] = ACTIONS(585), - [aux_sym_host_key_alias_token1] = ACTIONS(585), - [aux_sym_hostname_token1] = ACTIONS(585), - [aux_sym_identities_only_token1] = ACTIONS(585), - [aux_sym_identity_agent_token1] = ACTIONS(585), - [aux_sym_identity_file_token1] = ACTIONS(585), - [aux_sym_ignore_unknown_token1] = ACTIONS(585), - [aux_sym_include_token1] = ACTIONS(585), - [aux_sym_ip_qos_token1] = ACTIONS(585), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(585), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(585), - [aux_sym_kex_algorithms_token1] = ACTIONS(585), - [aux_sym_known_hosts_command_token1] = ACTIONS(585), - [aux_sym_local_command_token1] = ACTIONS(585), - [aux_sym_local_forward_token1] = ACTIONS(585), - [aux_sym_log_level_token1] = ACTIONS(585), - [aux_sym_log_verbose_token1] = ACTIONS(585), - [aux_sym_macs_token1] = ACTIONS(585), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(585), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(585), - [aux_sym_password_authentication_token1] = ACTIONS(585), - [aux_sym_permit_local_command_token1] = ACTIONS(585), - [aux_sym_permit_remote_open_token1] = ACTIONS(585), - [aux_sym_pkcs11_provider_token1] = ACTIONS(585), - [aux_sym_port_token1] = ACTIONS(585), - [aux_sym_preferred_authentications_token1] = ACTIONS(585), - [aux_sym_protocol_token1] = ACTIONS(585), - [aux_sym_proxy_command_token1] = ACTIONS(585), - [aux_sym_proxy_jump_token1] = ACTIONS(585), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(585), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(585), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(585), - [aux_sym_pubkey_authentication_token1] = ACTIONS(585), - [aux_sym_rekey_limit_token1] = ACTIONS(585), - [aux_sym_remote_command_token1] = ACTIONS(585), - [aux_sym_remote_forward_token1] = ACTIONS(585), - [aux_sym_request_tty_token1] = ACTIONS(585), - [aux_sym_required_rsa_size_token1] = ACTIONS(585), - [aux_sym_revoked_host_keys_token1] = ACTIONS(585), - [aux_sym_security_key_provider_token1] = ACTIONS(585), - [aux_sym_send_env_token1] = ACTIONS(585), - [aux_sym_server_alive_count_max_token1] = ACTIONS(585), - [aux_sym_server_alive_interval_token1] = ACTIONS(585), - [aux_sym_session_type_token1] = ACTIONS(585), - [aux_sym_set_env_token1] = ACTIONS(585), - [aux_sym_stdin_null_token1] = ACTIONS(585), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(585), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(585), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(585), - [aux_sym_syslog_facility_token1] = ACTIONS(585), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(585), - [aux_sym_keep_alive_token1] = ACTIONS(585), - [aux_sym_tunnel_token1] = ACTIONS(587), - [aux_sym_tunnel_device_token1] = ACTIONS(585), - [aux_sym_update_host_keys_token1] = ACTIONS(585), - [aux_sym_use_keychain_token1] = ACTIONS(585), - [aux_sym_use_roaming_token1] = ACTIONS(585), - [aux_sym_user_token1] = ACTIONS(587), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(585), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(585), - [aux_sym_visual_host_key_token1] = ACTIONS(585), - [aux_sym_xauth_location_token1] = ACTIONS(585), + [ts_builtin_sym_end] = ACTIONS(590), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(594), + [aux_sym_match_token1] = ACTIONS(590), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(590), + [aux_sym_address_family_token1] = ACTIONS(590), + [aux_sym_batch_mode_token1] = ACTIONS(590), + [aux_sym_bind_address_token1] = ACTIONS(590), + [aux_sym_bind_interface_token1] = ACTIONS(590), + [aux_sym_canonical_domains_token1] = ACTIONS(590), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(590), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(590), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(590), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(590), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(590), + [aux_sym_certificate_file_token1] = ACTIONS(590), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(590), + [aux_sym_check_host_ip_token1] = ACTIONS(590), + [aux_sym_ciphers_token1] = ACTIONS(590), + [aux_sym_cipher_token1] = ACTIONS(592), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(590), + [aux_sym_compression_token1] = ACTIONS(590), + [aux_sym_connection_attempts_token1] = ACTIONS(590), + [aux_sym_connect_timeout_token1] = ACTIONS(590), + [aux_sym_control_master_token1] = ACTIONS(590), + [aux_sym_control_path_token1] = ACTIONS(590), + [aux_sym_control_persist_token1] = ACTIONS(590), + [aux_sym_dynamic_forward_token1] = ACTIONS(590), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(590), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(590), + [aux_sym_escape_char_token1] = ACTIONS(590), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(590), + [aux_sym_fingerprint_hash_token1] = ACTIONS(590), + [aux_sym_fork_after_authentication_token1] = ACTIONS(590), + [aux_sym_forward_agent_token1] = ACTIONS(590), + [aux_sym_forward_x11_token1] = ACTIONS(592), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(590), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(590), + [aux_sym_gateway_ports_token1] = ACTIONS(590), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(590), + [aux_sym_gssapi_authentication_token1] = ACTIONS(590), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(590), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(590), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(590), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(590), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(590), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(590), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(590), + [aux_sym_hash_known_hosts_token1] = ACTIONS(590), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(590), + [aux_sym_hostbased_authentication_token1] = ACTIONS(590), + [aux_sym_host_key_algorithms_token1] = ACTIONS(590), + [aux_sym_host_key_alias_token1] = ACTIONS(590), + [aux_sym_hostname_token1] = ACTIONS(590), + [aux_sym_identities_only_token1] = ACTIONS(590), + [aux_sym_identity_agent_token1] = ACTIONS(590), + [aux_sym_identity_file_token1] = ACTIONS(590), + [aux_sym_ignore_unknown_token1] = ACTIONS(590), + [aux_sym_include_token1] = ACTIONS(590), + [aux_sym_ip_qos_token1] = ACTIONS(590), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(590), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(590), + [aux_sym_kex_algorithms_token1] = ACTIONS(590), + [aux_sym_known_hosts_command_token1] = ACTIONS(590), + [aux_sym_local_command_token1] = ACTIONS(590), + [aux_sym_local_forward_token1] = ACTIONS(590), + [aux_sym_log_level_token1] = ACTIONS(590), + [aux_sym_log_verbose_token1] = ACTIONS(590), + [aux_sym_macs_token1] = ACTIONS(590), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(590), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(590), + [aux_sym_password_authentication_token1] = ACTIONS(590), + [aux_sym_permit_local_command_token1] = ACTIONS(590), + [aux_sym_permit_remote_open_token1] = ACTIONS(590), + [aux_sym_pkcs11_provider_token1] = ACTIONS(590), + [aux_sym_port_token1] = ACTIONS(590), + [aux_sym_preferred_authentications_token1] = ACTIONS(590), + [aux_sym_protocol_token1] = ACTIONS(590), + [aux_sym_proxy_command_token1] = ACTIONS(590), + [aux_sym_proxy_jump_token1] = ACTIONS(590), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(590), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(590), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(590), + [aux_sym_pubkey_authentication_token1] = ACTIONS(590), + [aux_sym_rekey_limit_token1] = ACTIONS(590), + [aux_sym_remote_command_token1] = ACTIONS(590), + [aux_sym_remote_forward_token1] = ACTIONS(590), + [aux_sym_request_tty_token1] = ACTIONS(590), + [aux_sym_required_rsa_size_token1] = ACTIONS(590), + [aux_sym_revoked_host_keys_token1] = ACTIONS(590), + [aux_sym_security_key_provider_token1] = ACTIONS(590), + [aux_sym_send_env_token1] = ACTIONS(590), + [aux_sym_server_alive_count_max_token1] = ACTIONS(590), + [aux_sym_server_alive_interval_token1] = ACTIONS(590), + [aux_sym_session_type_token1] = ACTIONS(590), + [aux_sym_set_env_token1] = ACTIONS(590), + [aux_sym_stdin_null_token1] = ACTIONS(590), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(590), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(590), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(590), + [aux_sym_syslog_facility_token1] = ACTIONS(590), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(590), + [aux_sym_keep_alive_token1] = ACTIONS(590), + [aux_sym_tunnel_token1] = ACTIONS(592), + [aux_sym_tunnel_device_token1] = ACTIONS(590), + [aux_sym_update_host_keys_token1] = ACTIONS(590), + [aux_sym_use_keychain_token1] = ACTIONS(590), + [aux_sym_use_roaming_token1] = ACTIONS(590), + [aux_sym_user_token1] = ACTIONS(592), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(590), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(590), + [aux_sym_visual_host_key_token1] = ACTIONS(590), + [aux_sym_xauth_location_token1] = ACTIONS(590), }, [9] = { - [ts_builtin_sym_end] = ACTIONS(591), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(593), - [anon_sym_DQUOTE] = ACTIONS(595), - [aux_sym_match_token1] = ACTIONS(591), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(591), - [aux_sym_address_family_token1] = ACTIONS(591), - [aux_sym_batch_mode_token1] = ACTIONS(591), - [aux_sym_bind_address_token1] = ACTIONS(591), - [aux_sym_bind_interface_token1] = ACTIONS(591), - [aux_sym_canonical_domains_token1] = ACTIONS(591), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(591), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(591), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(591), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(591), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(591), - [aux_sym_certificate_file_token1] = ACTIONS(591), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(591), - [aux_sym_check_host_ip_token1] = ACTIONS(591), - [aux_sym_ciphers_token1] = ACTIONS(591), - [aux_sym_cipher_token1] = ACTIONS(593), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(591), - [aux_sym_compression_token1] = ACTIONS(591), - [aux_sym_connection_attempts_token1] = ACTIONS(591), - [aux_sym_connect_timeout_token1] = ACTIONS(591), - [aux_sym_control_master_token1] = ACTIONS(591), - [aux_sym_control_path_token1] = ACTIONS(591), - [aux_sym_control_persist_token1] = ACTIONS(591), - [aux_sym_dynamic_forward_token1] = ACTIONS(591), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(591), - [aux_sym_escape_char_token1] = ACTIONS(591), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(591), - [aux_sym_fingerprint_hash_token1] = ACTIONS(591), - [aux_sym_fork_after_authentication_token1] = ACTIONS(591), - [aux_sym_forward_agent_token1] = ACTIONS(591), - [aux_sym_forward_x11_token1] = ACTIONS(593), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(591), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(591), - [aux_sym_gateway_ports_token1] = ACTIONS(591), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(591), - [aux_sym_gssapi_authentication_token1] = ACTIONS(591), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(591), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(591), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(591), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(591), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(591), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(591), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(591), - [aux_sym_hash_known_hosts_token1] = ACTIONS(591), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(591), - [aux_sym_hostbased_authentication_token1] = ACTIONS(591), - [aux_sym_host_key_algorithms_token1] = ACTIONS(591), - [aux_sym_host_key_alias_token1] = ACTIONS(591), - [aux_sym_hostname_token1] = ACTIONS(591), - [aux_sym_identities_only_token1] = ACTIONS(591), - [aux_sym_identity_agent_token1] = ACTIONS(591), - [aux_sym_identity_file_token1] = ACTIONS(591), - [aux_sym_ignore_unknown_token1] = ACTIONS(591), - [aux_sym_include_token1] = ACTIONS(591), - [aux_sym_ip_qos_token1] = ACTIONS(591), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(591), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(591), - [aux_sym_kex_algorithms_token1] = ACTIONS(591), - [aux_sym_known_hosts_command_token1] = ACTIONS(591), - [aux_sym_local_command_token1] = ACTIONS(591), - [aux_sym_local_forward_token1] = ACTIONS(591), - [aux_sym_log_level_token1] = ACTIONS(591), - [aux_sym_log_verbose_token1] = ACTIONS(591), - [aux_sym_macs_token1] = ACTIONS(591), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(591), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(591), - [aux_sym_password_authentication_token1] = ACTIONS(591), - [aux_sym_permit_local_command_token1] = ACTIONS(591), - [aux_sym_permit_remote_open_token1] = ACTIONS(591), - [aux_sym_pkcs11_provider_token1] = ACTIONS(591), - [aux_sym_port_token1] = ACTIONS(591), - [aux_sym_preferred_authentications_token1] = ACTIONS(591), - [aux_sym_protocol_token1] = ACTIONS(591), - [aux_sym_proxy_command_token1] = ACTIONS(591), - [aux_sym_proxy_jump_token1] = ACTIONS(591), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(591), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(591), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(591), - [aux_sym_pubkey_authentication_token1] = ACTIONS(591), - [aux_sym_rekey_limit_token1] = ACTIONS(591), - [aux_sym_remote_command_token1] = ACTIONS(591), - [aux_sym_remote_forward_token1] = ACTIONS(591), - [aux_sym_request_tty_token1] = ACTIONS(591), - [aux_sym_required_rsa_size_token1] = ACTIONS(591), - [aux_sym_revoked_host_keys_token1] = ACTIONS(591), - [aux_sym_security_key_provider_token1] = ACTIONS(591), - [aux_sym_send_env_token1] = ACTIONS(591), - [aux_sym_server_alive_count_max_token1] = ACTIONS(591), - [aux_sym_server_alive_interval_token1] = ACTIONS(591), - [aux_sym_session_type_token1] = ACTIONS(591), - [aux_sym_set_env_token1] = ACTIONS(591), - [aux_sym_stdin_null_token1] = ACTIONS(591), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(591), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(591), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(591), - [aux_sym_syslog_facility_token1] = ACTIONS(591), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(591), - [aux_sym_keep_alive_token1] = ACTIONS(591), - [aux_sym_tunnel_token1] = ACTIONS(593), - [aux_sym_tunnel_device_token1] = ACTIONS(591), - [aux_sym_update_host_keys_token1] = ACTIONS(591), - [aux_sym_use_keychain_token1] = ACTIONS(591), - [aux_sym_use_roaming_token1] = ACTIONS(591), - [aux_sym_user_token1] = ACTIONS(593), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(591), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(591), - [aux_sym_visual_host_key_token1] = ACTIONS(591), - [aux_sym_xauth_location_token1] = ACTIONS(591), + [ts_builtin_sym_end] = ACTIONS(596), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(598), + [anon_sym_DQUOTE] = ACTIONS(600), + [aux_sym_match_token1] = ACTIONS(596), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(596), + [aux_sym_address_family_token1] = ACTIONS(596), + [aux_sym_batch_mode_token1] = ACTIONS(596), + [aux_sym_bind_address_token1] = ACTIONS(596), + [aux_sym_bind_interface_token1] = ACTIONS(596), + [aux_sym_canonical_domains_token1] = ACTIONS(596), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(596), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(596), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(596), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(596), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(596), + [aux_sym_certificate_file_token1] = ACTIONS(596), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(596), + [aux_sym_check_host_ip_token1] = ACTIONS(596), + [aux_sym_ciphers_token1] = ACTIONS(596), + [aux_sym_cipher_token1] = ACTIONS(598), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(596), + [aux_sym_compression_token1] = ACTIONS(596), + [aux_sym_connection_attempts_token1] = ACTIONS(596), + [aux_sym_connect_timeout_token1] = ACTIONS(596), + [aux_sym_control_master_token1] = ACTIONS(596), + [aux_sym_control_path_token1] = ACTIONS(596), + [aux_sym_control_persist_token1] = ACTIONS(596), + [aux_sym_dynamic_forward_token1] = ACTIONS(596), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(596), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(596), + [aux_sym_escape_char_token1] = ACTIONS(596), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(596), + [aux_sym_fingerprint_hash_token1] = ACTIONS(596), + [aux_sym_fork_after_authentication_token1] = ACTIONS(596), + [aux_sym_forward_agent_token1] = ACTIONS(596), + [aux_sym_forward_x11_token1] = ACTIONS(598), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(596), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(596), + [aux_sym_gateway_ports_token1] = ACTIONS(596), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(596), + [aux_sym_gssapi_authentication_token1] = ACTIONS(596), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(596), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(596), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(596), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(596), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(596), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(596), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(596), + [aux_sym_hash_known_hosts_token1] = ACTIONS(596), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(596), + [aux_sym_hostbased_authentication_token1] = ACTIONS(596), + [aux_sym_host_key_algorithms_token1] = ACTIONS(596), + [aux_sym_host_key_alias_token1] = ACTIONS(596), + [aux_sym_hostname_token1] = ACTIONS(596), + [aux_sym_identities_only_token1] = ACTIONS(596), + [aux_sym_identity_agent_token1] = ACTIONS(596), + [aux_sym_identity_file_token1] = ACTIONS(596), + [aux_sym_ignore_unknown_token1] = ACTIONS(596), + [aux_sym_include_token1] = ACTIONS(596), + [aux_sym_ip_qos_token1] = ACTIONS(596), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(596), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(596), + [aux_sym_kex_algorithms_token1] = ACTIONS(596), + [aux_sym_known_hosts_command_token1] = ACTIONS(596), + [aux_sym_local_command_token1] = ACTIONS(596), + [aux_sym_local_forward_token1] = ACTIONS(596), + [aux_sym_log_level_token1] = ACTIONS(596), + [aux_sym_log_verbose_token1] = ACTIONS(596), + [aux_sym_macs_token1] = ACTIONS(596), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(596), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(596), + [aux_sym_password_authentication_token1] = ACTIONS(596), + [aux_sym_permit_local_command_token1] = ACTIONS(596), + [aux_sym_permit_remote_open_token1] = ACTIONS(596), + [aux_sym_pkcs11_provider_token1] = ACTIONS(596), + [aux_sym_port_token1] = ACTIONS(596), + [aux_sym_preferred_authentications_token1] = ACTIONS(596), + [aux_sym_protocol_token1] = ACTIONS(596), + [aux_sym_proxy_command_token1] = ACTIONS(596), + [aux_sym_proxy_jump_token1] = ACTIONS(596), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(596), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(596), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(596), + [aux_sym_pubkey_authentication_token1] = ACTIONS(596), + [aux_sym_rekey_limit_token1] = ACTIONS(596), + [aux_sym_remote_command_token1] = ACTIONS(596), + [aux_sym_remote_forward_token1] = ACTIONS(596), + [aux_sym_request_tty_token1] = ACTIONS(596), + [aux_sym_required_rsa_size_token1] = ACTIONS(596), + [aux_sym_revoked_host_keys_token1] = ACTIONS(596), + [aux_sym_security_key_provider_token1] = ACTIONS(596), + [aux_sym_send_env_token1] = ACTIONS(596), + [aux_sym_server_alive_count_max_token1] = ACTIONS(596), + [aux_sym_server_alive_interval_token1] = ACTIONS(596), + [aux_sym_session_type_token1] = ACTIONS(596), + [aux_sym_set_env_token1] = ACTIONS(596), + [aux_sym_stdin_null_token1] = ACTIONS(596), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(596), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(596), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(596), + [aux_sym_syslog_facility_token1] = ACTIONS(596), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(596), + [aux_sym_keep_alive_token1] = ACTIONS(596), + [aux_sym_tunnel_token1] = ACTIONS(598), + [aux_sym_tunnel_device_token1] = ACTIONS(596), + [aux_sym_update_host_keys_token1] = ACTIONS(596), + [aux_sym_use_keychain_token1] = ACTIONS(596), + [aux_sym_use_roaming_token1] = ACTIONS(596), + [aux_sym_user_token1] = ACTIONS(598), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(596), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(596), + [aux_sym_visual_host_key_token1] = ACTIONS(596), + [aux_sym_xauth_location_token1] = ACTIONS(596), }, [10] = { - [ts_builtin_sym_end] = ACTIONS(597), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(599), - [anon_sym_DQUOTE] = ACTIONS(601), - [aux_sym_match_token1] = ACTIONS(597), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(597), - [aux_sym_address_family_token1] = ACTIONS(597), - [aux_sym_batch_mode_token1] = ACTIONS(597), - [aux_sym_bind_address_token1] = ACTIONS(597), - [aux_sym_bind_interface_token1] = ACTIONS(597), - [aux_sym_canonical_domains_token1] = ACTIONS(597), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(597), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(597), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(597), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(597), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(597), - [aux_sym_certificate_file_token1] = ACTIONS(597), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(597), - [aux_sym_check_host_ip_token1] = ACTIONS(597), - [aux_sym_ciphers_token1] = ACTIONS(597), - [aux_sym_cipher_token1] = ACTIONS(599), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(597), - [aux_sym_compression_token1] = ACTIONS(597), - [aux_sym_connection_attempts_token1] = ACTIONS(597), - [aux_sym_connect_timeout_token1] = ACTIONS(597), - [aux_sym_control_master_token1] = ACTIONS(597), - [aux_sym_control_path_token1] = ACTIONS(597), - [aux_sym_control_persist_token1] = ACTIONS(597), - [aux_sym_dynamic_forward_token1] = ACTIONS(597), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(597), - [aux_sym_escape_char_token1] = ACTIONS(597), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(597), - [aux_sym_fingerprint_hash_token1] = ACTIONS(597), - [aux_sym_fork_after_authentication_token1] = ACTIONS(597), - [aux_sym_forward_agent_token1] = ACTIONS(597), - [aux_sym_forward_x11_token1] = ACTIONS(599), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(597), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(597), - [aux_sym_gateway_ports_token1] = ACTIONS(597), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(597), - [aux_sym_gssapi_authentication_token1] = ACTIONS(597), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(597), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(597), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(597), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(597), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(597), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(597), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(597), - [aux_sym_hash_known_hosts_token1] = ACTIONS(597), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(597), - [aux_sym_hostbased_authentication_token1] = ACTIONS(597), - [aux_sym_host_key_algorithms_token1] = ACTIONS(597), - [aux_sym_host_key_alias_token1] = ACTIONS(597), - [aux_sym_hostname_token1] = ACTIONS(597), - [aux_sym_identities_only_token1] = ACTIONS(597), - [aux_sym_identity_agent_token1] = ACTIONS(597), - [aux_sym_identity_file_token1] = ACTIONS(597), - [aux_sym_ignore_unknown_token1] = ACTIONS(597), - [aux_sym_include_token1] = ACTIONS(597), - [aux_sym_ip_qos_token1] = ACTIONS(597), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(597), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(597), - [aux_sym_kex_algorithms_token1] = ACTIONS(597), - [aux_sym_known_hosts_command_token1] = ACTIONS(597), - [aux_sym_local_command_token1] = ACTIONS(597), - [aux_sym_local_forward_token1] = ACTIONS(597), - [aux_sym_log_level_token1] = ACTIONS(597), - [aux_sym_log_verbose_token1] = ACTIONS(597), - [aux_sym_macs_token1] = ACTIONS(597), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(597), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(597), - [aux_sym_password_authentication_token1] = ACTIONS(597), - [aux_sym_permit_local_command_token1] = ACTIONS(597), - [aux_sym_permit_remote_open_token1] = ACTIONS(597), - [aux_sym_pkcs11_provider_token1] = ACTIONS(597), - [aux_sym_port_token1] = ACTIONS(597), - [aux_sym_preferred_authentications_token1] = ACTIONS(597), - [aux_sym_protocol_token1] = ACTIONS(597), - [aux_sym_proxy_command_token1] = ACTIONS(597), - [aux_sym_proxy_jump_token1] = ACTIONS(597), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(597), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(597), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(597), - [aux_sym_pubkey_authentication_token1] = ACTIONS(597), - [aux_sym_rekey_limit_token1] = ACTIONS(597), - [aux_sym_remote_command_token1] = ACTIONS(597), - [aux_sym_remote_forward_token1] = ACTIONS(597), - [aux_sym_request_tty_token1] = ACTIONS(597), - [aux_sym_required_rsa_size_token1] = ACTIONS(597), - [aux_sym_revoked_host_keys_token1] = ACTIONS(597), - [aux_sym_security_key_provider_token1] = ACTIONS(597), - [aux_sym_send_env_token1] = ACTIONS(597), - [aux_sym_server_alive_count_max_token1] = ACTIONS(597), - [aux_sym_server_alive_interval_token1] = ACTIONS(597), - [aux_sym_session_type_token1] = ACTIONS(597), - [aux_sym_set_env_token1] = ACTIONS(597), - [aux_sym_stdin_null_token1] = ACTIONS(597), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(597), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(597), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(597), - [aux_sym_syslog_facility_token1] = ACTIONS(597), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(597), - [aux_sym_keep_alive_token1] = ACTIONS(597), - [aux_sym_tunnel_token1] = ACTIONS(599), - [aux_sym_tunnel_device_token1] = ACTIONS(597), - [aux_sym_update_host_keys_token1] = ACTIONS(597), - [aux_sym_use_keychain_token1] = ACTIONS(597), - [aux_sym_use_roaming_token1] = ACTIONS(597), - [aux_sym_user_token1] = ACTIONS(599), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(597), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(597), - [aux_sym_visual_host_key_token1] = ACTIONS(597), - [aux_sym_xauth_location_token1] = ACTIONS(597), + [ts_builtin_sym_end] = ACTIONS(602), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(604), + [anon_sym_DQUOTE] = ACTIONS(606), + [aux_sym_match_token1] = ACTIONS(602), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(602), + [aux_sym_address_family_token1] = ACTIONS(602), + [aux_sym_batch_mode_token1] = ACTIONS(602), + [aux_sym_bind_address_token1] = ACTIONS(602), + [aux_sym_bind_interface_token1] = ACTIONS(602), + [aux_sym_canonical_domains_token1] = ACTIONS(602), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(602), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(602), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(602), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(602), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(602), + [aux_sym_certificate_file_token1] = ACTIONS(602), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(602), + [aux_sym_check_host_ip_token1] = ACTIONS(602), + [aux_sym_ciphers_token1] = ACTIONS(602), + [aux_sym_cipher_token1] = ACTIONS(604), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(602), + [aux_sym_compression_token1] = ACTIONS(602), + [aux_sym_connection_attempts_token1] = ACTIONS(602), + [aux_sym_connect_timeout_token1] = ACTIONS(602), + [aux_sym_control_master_token1] = ACTIONS(602), + [aux_sym_control_path_token1] = ACTIONS(602), + [aux_sym_control_persist_token1] = ACTIONS(602), + [aux_sym_dynamic_forward_token1] = ACTIONS(602), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(602), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(602), + [aux_sym_escape_char_token1] = ACTIONS(602), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(602), + [aux_sym_fingerprint_hash_token1] = ACTIONS(602), + [aux_sym_fork_after_authentication_token1] = ACTIONS(602), + [aux_sym_forward_agent_token1] = ACTIONS(602), + [aux_sym_forward_x11_token1] = ACTIONS(604), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(602), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(602), + [aux_sym_gateway_ports_token1] = ACTIONS(602), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(602), + [aux_sym_gssapi_authentication_token1] = ACTIONS(602), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(602), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(602), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(602), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(602), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(602), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(602), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(602), + [aux_sym_hash_known_hosts_token1] = ACTIONS(602), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(602), + [aux_sym_hostbased_authentication_token1] = ACTIONS(602), + [aux_sym_host_key_algorithms_token1] = ACTIONS(602), + [aux_sym_host_key_alias_token1] = ACTIONS(602), + [aux_sym_hostname_token1] = ACTIONS(602), + [aux_sym_identities_only_token1] = ACTIONS(602), + [aux_sym_identity_agent_token1] = ACTIONS(602), + [aux_sym_identity_file_token1] = ACTIONS(602), + [aux_sym_ignore_unknown_token1] = ACTIONS(602), + [aux_sym_include_token1] = ACTIONS(602), + [aux_sym_ip_qos_token1] = ACTIONS(602), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(602), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(602), + [aux_sym_kex_algorithms_token1] = ACTIONS(602), + [aux_sym_known_hosts_command_token1] = ACTIONS(602), + [aux_sym_local_command_token1] = ACTIONS(602), + [aux_sym_local_forward_token1] = ACTIONS(602), + [aux_sym_log_level_token1] = ACTIONS(602), + [aux_sym_log_verbose_token1] = ACTIONS(602), + [aux_sym_macs_token1] = ACTIONS(602), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(602), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(602), + [aux_sym_password_authentication_token1] = ACTIONS(602), + [aux_sym_permit_local_command_token1] = ACTIONS(602), + [aux_sym_permit_remote_open_token1] = ACTIONS(602), + [aux_sym_pkcs11_provider_token1] = ACTIONS(602), + [aux_sym_port_token1] = ACTIONS(602), + [aux_sym_preferred_authentications_token1] = ACTIONS(602), + [aux_sym_protocol_token1] = ACTIONS(602), + [aux_sym_proxy_command_token1] = ACTIONS(602), + [aux_sym_proxy_jump_token1] = ACTIONS(602), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(602), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(602), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(602), + [aux_sym_pubkey_authentication_token1] = ACTIONS(602), + [aux_sym_rekey_limit_token1] = ACTIONS(602), + [aux_sym_remote_command_token1] = ACTIONS(602), + [aux_sym_remote_forward_token1] = ACTIONS(602), + [aux_sym_request_tty_token1] = ACTIONS(602), + [aux_sym_required_rsa_size_token1] = ACTIONS(602), + [aux_sym_revoked_host_keys_token1] = ACTIONS(602), + [aux_sym_security_key_provider_token1] = ACTIONS(602), + [aux_sym_send_env_token1] = ACTIONS(602), + [aux_sym_server_alive_count_max_token1] = ACTIONS(602), + [aux_sym_server_alive_interval_token1] = ACTIONS(602), + [aux_sym_session_type_token1] = ACTIONS(602), + [aux_sym_set_env_token1] = ACTIONS(602), + [aux_sym_stdin_null_token1] = ACTIONS(602), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(602), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(602), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(602), + [aux_sym_syslog_facility_token1] = ACTIONS(602), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(602), + [aux_sym_keep_alive_token1] = ACTIONS(602), + [aux_sym_tunnel_token1] = ACTIONS(604), + [aux_sym_tunnel_device_token1] = ACTIONS(602), + [aux_sym_update_host_keys_token1] = ACTIONS(602), + [aux_sym_use_keychain_token1] = ACTIONS(602), + [aux_sym_use_roaming_token1] = ACTIONS(602), + [aux_sym_user_token1] = ACTIONS(604), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(602), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(602), + [aux_sym_visual_host_key_token1] = ACTIONS(602), + [aux_sym_xauth_location_token1] = ACTIONS(602), }, [11] = { - [ts_builtin_sym_end] = ACTIONS(603), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(607), - [aux_sym_match_token1] = ACTIONS(603), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(603), - [aux_sym_address_family_token1] = ACTIONS(603), - [aux_sym_batch_mode_token1] = ACTIONS(603), - [aux_sym_bind_address_token1] = ACTIONS(603), - [aux_sym_bind_interface_token1] = ACTIONS(603), - [aux_sym_canonical_domains_token1] = ACTIONS(603), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(603), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(603), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(603), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(603), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(603), - [aux_sym_certificate_file_token1] = ACTIONS(603), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(603), - [aux_sym_check_host_ip_token1] = ACTIONS(603), - [aux_sym_ciphers_token1] = ACTIONS(603), - [aux_sym_cipher_token1] = ACTIONS(605), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(603), - [aux_sym_compression_token1] = ACTIONS(603), - [aux_sym_connection_attempts_token1] = ACTIONS(603), - [aux_sym_connect_timeout_token1] = ACTIONS(603), - [aux_sym_control_master_token1] = ACTIONS(603), - [aux_sym_control_path_token1] = ACTIONS(603), - [aux_sym_control_persist_token1] = ACTIONS(603), - [aux_sym_dynamic_forward_token1] = ACTIONS(603), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(603), - [aux_sym_escape_char_token1] = ACTIONS(603), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(603), - [aux_sym_fingerprint_hash_token1] = ACTIONS(603), - [aux_sym_fork_after_authentication_token1] = ACTIONS(603), - [aux_sym_forward_agent_token1] = ACTIONS(603), - [aux_sym_forward_x11_token1] = ACTIONS(605), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(603), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(603), - [aux_sym_gateway_ports_token1] = ACTIONS(603), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(603), - [aux_sym_gssapi_authentication_token1] = ACTIONS(603), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(603), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(603), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(603), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(603), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(603), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(603), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(603), - [aux_sym_hash_known_hosts_token1] = ACTIONS(603), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(603), - [aux_sym_hostbased_authentication_token1] = ACTIONS(603), - [aux_sym_host_key_algorithms_token1] = ACTIONS(603), - [aux_sym_host_key_alias_token1] = ACTIONS(603), - [aux_sym_hostname_token1] = ACTIONS(603), - [aux_sym_identities_only_token1] = ACTIONS(603), - [aux_sym_identity_agent_token1] = ACTIONS(603), - [aux_sym_identity_file_token1] = ACTIONS(603), - [aux_sym_ignore_unknown_token1] = ACTIONS(603), - [aux_sym_include_token1] = ACTIONS(603), - [aux_sym_ip_qos_token1] = ACTIONS(603), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(603), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(603), - [aux_sym_kex_algorithms_token1] = ACTIONS(603), - [aux_sym_known_hosts_command_token1] = ACTIONS(603), - [aux_sym_local_command_token1] = ACTIONS(603), - [aux_sym_local_forward_token1] = ACTIONS(603), - [aux_sym_log_level_token1] = ACTIONS(603), - [aux_sym_log_verbose_token1] = ACTIONS(603), - [aux_sym_macs_token1] = ACTIONS(603), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(603), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(603), - [aux_sym_password_authentication_token1] = ACTIONS(603), - [aux_sym_permit_local_command_token1] = ACTIONS(603), - [aux_sym_permit_remote_open_token1] = ACTIONS(603), - [aux_sym_pkcs11_provider_token1] = ACTIONS(603), - [aux_sym_port_token1] = ACTIONS(603), - [aux_sym_preferred_authentications_token1] = ACTIONS(603), - [aux_sym_protocol_token1] = ACTIONS(603), - [aux_sym_proxy_command_token1] = ACTIONS(603), - [aux_sym_proxy_jump_token1] = ACTIONS(603), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(603), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(603), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(603), - [aux_sym_pubkey_authentication_token1] = ACTIONS(603), - [aux_sym_rekey_limit_token1] = ACTIONS(603), - [aux_sym_remote_command_token1] = ACTIONS(603), - [aux_sym_remote_forward_token1] = ACTIONS(603), - [aux_sym_request_tty_token1] = ACTIONS(603), - [aux_sym_required_rsa_size_token1] = ACTIONS(603), - [aux_sym_revoked_host_keys_token1] = ACTIONS(603), - [aux_sym_security_key_provider_token1] = ACTIONS(603), - [aux_sym_send_env_token1] = ACTIONS(603), - [aux_sym_server_alive_count_max_token1] = ACTIONS(603), - [aux_sym_server_alive_interval_token1] = ACTIONS(603), - [aux_sym_session_type_token1] = ACTIONS(603), - [aux_sym_set_env_token1] = ACTIONS(603), - [aux_sym_stdin_null_token1] = ACTIONS(603), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(603), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(603), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(603), - [aux_sym_syslog_facility_token1] = ACTIONS(603), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(603), - [aux_sym_keep_alive_token1] = ACTIONS(603), - [aux_sym_tunnel_token1] = ACTIONS(605), - [aux_sym_tunnel_device_token1] = ACTIONS(603), - [aux_sym_update_host_keys_token1] = ACTIONS(603), - [aux_sym_use_keychain_token1] = ACTIONS(603), - [aux_sym_use_roaming_token1] = ACTIONS(603), - [aux_sym_user_token1] = ACTIONS(605), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(603), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(603), - [aux_sym_visual_host_key_token1] = ACTIONS(603), - [aux_sym_xauth_location_token1] = ACTIONS(603), + [ts_builtin_sym_end] = ACTIONS(608), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(610), + [anon_sym_DQUOTE] = ACTIONS(612), + [aux_sym_match_token1] = ACTIONS(608), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(608), + [aux_sym_address_family_token1] = ACTIONS(608), + [aux_sym_batch_mode_token1] = ACTIONS(608), + [aux_sym_bind_address_token1] = ACTIONS(608), + [aux_sym_bind_interface_token1] = ACTIONS(608), + [aux_sym_canonical_domains_token1] = ACTIONS(608), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(608), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(608), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(608), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(608), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(608), + [aux_sym_certificate_file_token1] = ACTIONS(608), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(608), + [aux_sym_check_host_ip_token1] = ACTIONS(608), + [aux_sym_ciphers_token1] = ACTIONS(608), + [aux_sym_cipher_token1] = ACTIONS(610), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(608), + [aux_sym_compression_token1] = ACTIONS(608), + [aux_sym_connection_attempts_token1] = ACTIONS(608), + [aux_sym_connect_timeout_token1] = ACTIONS(608), + [aux_sym_control_master_token1] = ACTIONS(608), + [aux_sym_control_path_token1] = ACTIONS(608), + [aux_sym_control_persist_token1] = ACTIONS(608), + [aux_sym_dynamic_forward_token1] = ACTIONS(608), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(608), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(608), + [aux_sym_escape_char_token1] = ACTIONS(608), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(608), + [aux_sym_fingerprint_hash_token1] = ACTIONS(608), + [aux_sym_fork_after_authentication_token1] = ACTIONS(608), + [aux_sym_forward_agent_token1] = ACTIONS(608), + [aux_sym_forward_x11_token1] = ACTIONS(610), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(608), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(608), + [aux_sym_gateway_ports_token1] = ACTIONS(608), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(608), + [aux_sym_gssapi_authentication_token1] = ACTIONS(608), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(608), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(608), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(608), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(608), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(608), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(608), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(608), + [aux_sym_hash_known_hosts_token1] = ACTIONS(608), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(608), + [aux_sym_hostbased_authentication_token1] = ACTIONS(608), + [aux_sym_host_key_algorithms_token1] = ACTIONS(608), + [aux_sym_host_key_alias_token1] = ACTIONS(608), + [aux_sym_hostname_token1] = ACTIONS(608), + [aux_sym_identities_only_token1] = ACTIONS(608), + [aux_sym_identity_agent_token1] = ACTIONS(608), + [aux_sym_identity_file_token1] = ACTIONS(608), + [aux_sym_ignore_unknown_token1] = ACTIONS(608), + [aux_sym_include_token1] = ACTIONS(608), + [aux_sym_ip_qos_token1] = ACTIONS(608), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(608), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(608), + [aux_sym_kex_algorithms_token1] = ACTIONS(608), + [aux_sym_known_hosts_command_token1] = ACTIONS(608), + [aux_sym_local_command_token1] = ACTIONS(608), + [aux_sym_local_forward_token1] = ACTIONS(608), + [aux_sym_log_level_token1] = ACTIONS(608), + [aux_sym_log_verbose_token1] = ACTIONS(608), + [aux_sym_macs_token1] = ACTIONS(608), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(608), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(608), + [aux_sym_password_authentication_token1] = ACTIONS(608), + [aux_sym_permit_local_command_token1] = ACTIONS(608), + [aux_sym_permit_remote_open_token1] = ACTIONS(608), + [aux_sym_pkcs11_provider_token1] = ACTIONS(608), + [aux_sym_port_token1] = ACTIONS(608), + [aux_sym_preferred_authentications_token1] = ACTIONS(608), + [aux_sym_protocol_token1] = ACTIONS(608), + [aux_sym_proxy_command_token1] = ACTIONS(608), + [aux_sym_proxy_jump_token1] = ACTIONS(608), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(608), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(608), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(608), + [aux_sym_pubkey_authentication_token1] = ACTIONS(608), + [aux_sym_rekey_limit_token1] = ACTIONS(608), + [aux_sym_remote_command_token1] = ACTIONS(608), + [aux_sym_remote_forward_token1] = ACTIONS(608), + [aux_sym_request_tty_token1] = ACTIONS(608), + [aux_sym_required_rsa_size_token1] = ACTIONS(608), + [aux_sym_revoked_host_keys_token1] = ACTIONS(608), + [aux_sym_security_key_provider_token1] = ACTIONS(608), + [aux_sym_send_env_token1] = ACTIONS(608), + [aux_sym_server_alive_count_max_token1] = ACTIONS(608), + [aux_sym_server_alive_interval_token1] = ACTIONS(608), + [aux_sym_session_type_token1] = ACTIONS(608), + [aux_sym_set_env_token1] = ACTIONS(608), + [aux_sym_stdin_null_token1] = ACTIONS(608), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(608), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(608), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(608), + [aux_sym_syslog_facility_token1] = ACTIONS(608), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(608), + [aux_sym_keep_alive_token1] = ACTIONS(608), + [aux_sym_tunnel_token1] = ACTIONS(610), + [aux_sym_tunnel_device_token1] = ACTIONS(608), + [aux_sym_update_host_keys_token1] = ACTIONS(608), + [aux_sym_use_keychain_token1] = ACTIONS(608), + [aux_sym_use_roaming_token1] = ACTIONS(608), + [aux_sym_user_token1] = ACTIONS(610), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(608), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(608), + [aux_sym_visual_host_key_token1] = ACTIONS(608), + [aux_sym_xauth_location_token1] = ACTIONS(608), }, [12] = { - [ts_builtin_sym_end] = ACTIONS(609), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(611), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_match_token1] = ACTIONS(609), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(609), - [aux_sym_address_family_token1] = ACTIONS(609), - [aux_sym_batch_mode_token1] = ACTIONS(609), - [aux_sym_bind_address_token1] = ACTIONS(609), - [aux_sym_bind_interface_token1] = ACTIONS(609), - [aux_sym_canonical_domains_token1] = ACTIONS(609), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(609), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(609), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(609), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(609), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(609), - [aux_sym_certificate_file_token1] = ACTIONS(609), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(609), - [aux_sym_check_host_ip_token1] = ACTIONS(609), - [aux_sym_ciphers_token1] = ACTIONS(609), - [aux_sym_cipher_token1] = ACTIONS(611), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(609), - [aux_sym_compression_token1] = ACTIONS(609), - [aux_sym_connection_attempts_token1] = ACTIONS(609), - [aux_sym_connect_timeout_token1] = ACTIONS(609), - [aux_sym_control_master_token1] = ACTIONS(609), - [aux_sym_control_path_token1] = ACTIONS(609), - [aux_sym_control_persist_token1] = ACTIONS(609), - [aux_sym_dynamic_forward_token1] = ACTIONS(609), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(609), - [aux_sym_escape_char_token1] = ACTIONS(609), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(609), - [aux_sym_fingerprint_hash_token1] = ACTIONS(609), - [aux_sym_fork_after_authentication_token1] = ACTIONS(609), - [aux_sym_forward_agent_token1] = ACTIONS(609), - [aux_sym_forward_x11_token1] = ACTIONS(611), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(609), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(609), - [aux_sym_gateway_ports_token1] = ACTIONS(609), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(609), - [aux_sym_gssapi_authentication_token1] = ACTIONS(609), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(609), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(609), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(609), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(609), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(609), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(609), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(609), - [aux_sym_hash_known_hosts_token1] = ACTIONS(609), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(609), - [aux_sym_hostbased_authentication_token1] = ACTIONS(609), - [aux_sym_host_key_algorithms_token1] = ACTIONS(609), - [aux_sym_host_key_alias_token1] = ACTIONS(609), - [aux_sym_hostname_token1] = ACTIONS(609), - [aux_sym_identities_only_token1] = ACTIONS(609), - [aux_sym_identity_agent_token1] = ACTIONS(609), - [aux_sym_identity_file_token1] = ACTIONS(609), - [aux_sym_ignore_unknown_token1] = ACTIONS(609), - [aux_sym_include_token1] = ACTIONS(609), - [aux_sym_ip_qos_token1] = ACTIONS(609), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(609), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(609), - [aux_sym_kex_algorithms_token1] = ACTIONS(609), - [aux_sym_known_hosts_command_token1] = ACTIONS(609), - [aux_sym_local_command_token1] = ACTIONS(609), - [aux_sym_local_forward_token1] = ACTIONS(609), - [aux_sym_log_level_token1] = ACTIONS(609), - [aux_sym_log_verbose_token1] = ACTIONS(609), - [aux_sym_macs_token1] = ACTIONS(609), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(609), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(609), - [aux_sym_password_authentication_token1] = ACTIONS(609), - [aux_sym_permit_local_command_token1] = ACTIONS(609), - [aux_sym_permit_remote_open_token1] = ACTIONS(609), - [aux_sym_pkcs11_provider_token1] = ACTIONS(609), - [aux_sym_port_token1] = ACTIONS(609), - [aux_sym_preferred_authentications_token1] = ACTIONS(609), - [aux_sym_protocol_token1] = ACTIONS(609), - [aux_sym_proxy_command_token1] = ACTIONS(609), - [aux_sym_proxy_jump_token1] = ACTIONS(609), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(609), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(609), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(609), - [aux_sym_pubkey_authentication_token1] = ACTIONS(609), - [aux_sym_rekey_limit_token1] = ACTIONS(609), - [aux_sym_remote_command_token1] = ACTIONS(609), - [aux_sym_remote_forward_token1] = ACTIONS(609), - [aux_sym_request_tty_token1] = ACTIONS(609), - [aux_sym_required_rsa_size_token1] = ACTIONS(609), - [aux_sym_revoked_host_keys_token1] = ACTIONS(609), - [aux_sym_security_key_provider_token1] = ACTIONS(609), - [aux_sym_send_env_token1] = ACTIONS(609), - [aux_sym_server_alive_count_max_token1] = ACTIONS(609), - [aux_sym_server_alive_interval_token1] = ACTIONS(609), - [aux_sym_session_type_token1] = ACTIONS(609), - [aux_sym_set_env_token1] = ACTIONS(609), - [aux_sym_stdin_null_token1] = ACTIONS(609), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(609), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(609), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(609), - [aux_sym_syslog_facility_token1] = ACTIONS(609), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(609), - [aux_sym_keep_alive_token1] = ACTIONS(609), - [aux_sym_tunnel_token1] = ACTIONS(611), - [aux_sym_tunnel_device_token1] = ACTIONS(609), - [aux_sym_update_host_keys_token1] = ACTIONS(609), - [aux_sym_use_keychain_token1] = ACTIONS(609), - [aux_sym_use_roaming_token1] = ACTIONS(609), - [aux_sym_user_token1] = ACTIONS(611), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(609), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(609), - [aux_sym_visual_host_key_token1] = ACTIONS(609), - [aux_sym_xauth_location_token1] = ACTIONS(609), + [ts_builtin_sym_end] = ACTIONS(614), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(616), + [anon_sym_DQUOTE] = ACTIONS(618), + [aux_sym_match_token1] = ACTIONS(614), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(614), + [aux_sym_address_family_token1] = ACTIONS(614), + [aux_sym_batch_mode_token1] = ACTIONS(614), + [aux_sym_bind_address_token1] = ACTIONS(614), + [aux_sym_bind_interface_token1] = ACTIONS(614), + [aux_sym_canonical_domains_token1] = ACTIONS(614), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(614), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(614), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(614), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(614), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(614), + [aux_sym_certificate_file_token1] = ACTIONS(614), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(614), + [aux_sym_check_host_ip_token1] = ACTIONS(614), + [aux_sym_ciphers_token1] = ACTIONS(614), + [aux_sym_cipher_token1] = ACTIONS(616), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(614), + [aux_sym_compression_token1] = ACTIONS(614), + [aux_sym_connection_attempts_token1] = ACTIONS(614), + [aux_sym_connect_timeout_token1] = ACTIONS(614), + [aux_sym_control_master_token1] = ACTIONS(614), + [aux_sym_control_path_token1] = ACTIONS(614), + [aux_sym_control_persist_token1] = ACTIONS(614), + [aux_sym_dynamic_forward_token1] = ACTIONS(614), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(614), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(614), + [aux_sym_escape_char_token1] = ACTIONS(614), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(614), + [aux_sym_fingerprint_hash_token1] = ACTIONS(614), + [aux_sym_fork_after_authentication_token1] = ACTIONS(614), + [aux_sym_forward_agent_token1] = ACTIONS(614), + [aux_sym_forward_x11_token1] = ACTIONS(616), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(614), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(614), + [aux_sym_gateway_ports_token1] = ACTIONS(614), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(614), + [aux_sym_gssapi_authentication_token1] = ACTIONS(614), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(614), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(614), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(614), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(614), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(614), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(614), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(614), + [aux_sym_hash_known_hosts_token1] = ACTIONS(614), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(614), + [aux_sym_hostbased_authentication_token1] = ACTIONS(614), + [aux_sym_host_key_algorithms_token1] = ACTIONS(614), + [aux_sym_host_key_alias_token1] = ACTIONS(614), + [aux_sym_hostname_token1] = ACTIONS(614), + [aux_sym_identities_only_token1] = ACTIONS(614), + [aux_sym_identity_agent_token1] = ACTIONS(614), + [aux_sym_identity_file_token1] = ACTIONS(614), + [aux_sym_ignore_unknown_token1] = ACTIONS(614), + [aux_sym_include_token1] = ACTIONS(614), + [aux_sym_ip_qos_token1] = ACTIONS(614), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(614), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(614), + [aux_sym_kex_algorithms_token1] = ACTIONS(614), + [aux_sym_known_hosts_command_token1] = ACTIONS(614), + [aux_sym_local_command_token1] = ACTIONS(614), + [aux_sym_local_forward_token1] = ACTIONS(614), + [aux_sym_log_level_token1] = ACTIONS(614), + [aux_sym_log_verbose_token1] = ACTIONS(614), + [aux_sym_macs_token1] = ACTIONS(614), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(614), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(614), + [aux_sym_password_authentication_token1] = ACTIONS(614), + [aux_sym_permit_local_command_token1] = ACTIONS(614), + [aux_sym_permit_remote_open_token1] = ACTIONS(614), + [aux_sym_pkcs11_provider_token1] = ACTIONS(614), + [aux_sym_port_token1] = ACTIONS(614), + [aux_sym_preferred_authentications_token1] = ACTIONS(614), + [aux_sym_protocol_token1] = ACTIONS(614), + [aux_sym_proxy_command_token1] = ACTIONS(614), + [aux_sym_proxy_jump_token1] = ACTIONS(614), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(614), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(614), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(614), + [aux_sym_pubkey_authentication_token1] = ACTIONS(614), + [aux_sym_rekey_limit_token1] = ACTIONS(614), + [aux_sym_remote_command_token1] = ACTIONS(614), + [aux_sym_remote_forward_token1] = ACTIONS(614), + [aux_sym_request_tty_token1] = ACTIONS(614), + [aux_sym_required_rsa_size_token1] = ACTIONS(614), + [aux_sym_revoked_host_keys_token1] = ACTIONS(614), + [aux_sym_security_key_provider_token1] = ACTIONS(614), + [aux_sym_send_env_token1] = ACTIONS(614), + [aux_sym_server_alive_count_max_token1] = ACTIONS(614), + [aux_sym_server_alive_interval_token1] = ACTIONS(614), + [aux_sym_session_type_token1] = ACTIONS(614), + [aux_sym_set_env_token1] = ACTIONS(614), + [aux_sym_stdin_null_token1] = ACTIONS(614), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(614), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(614), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(614), + [aux_sym_syslog_facility_token1] = ACTIONS(614), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(614), + [aux_sym_keep_alive_token1] = ACTIONS(614), + [aux_sym_tunnel_token1] = ACTIONS(616), + [aux_sym_tunnel_device_token1] = ACTIONS(614), + [aux_sym_update_host_keys_token1] = ACTIONS(614), + [aux_sym_use_keychain_token1] = ACTIONS(614), + [aux_sym_use_roaming_token1] = ACTIONS(614), + [aux_sym_user_token1] = ACTIONS(616), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(614), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(614), + [aux_sym_visual_host_key_token1] = ACTIONS(614), + [aux_sym_xauth_location_token1] = ACTIONS(614), }, [13] = { - [ts_builtin_sym_end] = ACTIONS(615), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(617), - [anon_sym_DQUOTE] = ACTIONS(619), - [aux_sym_match_token1] = ACTIONS(615), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(615), - [aux_sym_address_family_token1] = ACTIONS(615), - [aux_sym_batch_mode_token1] = ACTIONS(615), - [aux_sym_bind_address_token1] = ACTIONS(615), - [aux_sym_bind_interface_token1] = ACTIONS(615), - [aux_sym_canonical_domains_token1] = ACTIONS(615), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(615), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(615), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(615), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(615), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(615), - [aux_sym_certificate_file_token1] = ACTIONS(615), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(615), - [aux_sym_check_host_ip_token1] = ACTIONS(615), - [aux_sym_ciphers_token1] = ACTIONS(615), - [aux_sym_cipher_token1] = ACTIONS(617), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(615), - [aux_sym_compression_token1] = ACTIONS(615), - [aux_sym_connection_attempts_token1] = ACTIONS(615), - [aux_sym_connect_timeout_token1] = ACTIONS(615), - [aux_sym_control_master_token1] = ACTIONS(615), - [aux_sym_control_path_token1] = ACTIONS(615), - [aux_sym_control_persist_token1] = ACTIONS(615), - [aux_sym_dynamic_forward_token1] = ACTIONS(615), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(615), - [aux_sym_escape_char_token1] = ACTIONS(615), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(615), - [aux_sym_fingerprint_hash_token1] = ACTIONS(615), - [aux_sym_fork_after_authentication_token1] = ACTIONS(615), - [aux_sym_forward_agent_token1] = ACTIONS(615), - [aux_sym_forward_x11_token1] = ACTIONS(617), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(615), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(615), - [aux_sym_gateway_ports_token1] = ACTIONS(615), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(615), - [aux_sym_gssapi_authentication_token1] = ACTIONS(615), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(615), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(615), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(615), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(615), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(615), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(615), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(615), - [aux_sym_hash_known_hosts_token1] = ACTIONS(615), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(615), - [aux_sym_hostbased_authentication_token1] = ACTIONS(615), - [aux_sym_host_key_algorithms_token1] = ACTIONS(615), - [aux_sym_host_key_alias_token1] = ACTIONS(615), - [aux_sym_hostname_token1] = ACTIONS(615), - [aux_sym_identities_only_token1] = ACTIONS(615), - [aux_sym_identity_agent_token1] = ACTIONS(615), - [aux_sym_identity_file_token1] = ACTIONS(615), - [aux_sym_ignore_unknown_token1] = ACTIONS(615), - [aux_sym_include_token1] = ACTIONS(615), - [aux_sym_ip_qos_token1] = ACTIONS(615), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(615), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(615), - [aux_sym_kex_algorithms_token1] = ACTIONS(615), - [aux_sym_known_hosts_command_token1] = ACTIONS(615), - [aux_sym_local_command_token1] = ACTIONS(615), - [aux_sym_local_forward_token1] = ACTIONS(615), - [aux_sym_log_level_token1] = ACTIONS(615), - [aux_sym_log_verbose_token1] = ACTIONS(615), - [aux_sym_macs_token1] = ACTIONS(615), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(615), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(615), - [aux_sym_password_authentication_token1] = ACTIONS(615), - [aux_sym_permit_local_command_token1] = ACTIONS(615), - [aux_sym_permit_remote_open_token1] = ACTIONS(615), - [aux_sym_pkcs11_provider_token1] = ACTIONS(615), - [aux_sym_port_token1] = ACTIONS(615), - [aux_sym_preferred_authentications_token1] = ACTIONS(615), - [aux_sym_protocol_token1] = ACTIONS(615), - [aux_sym_proxy_command_token1] = ACTIONS(615), - [aux_sym_proxy_jump_token1] = ACTIONS(615), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(615), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(615), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(615), - [aux_sym_pubkey_authentication_token1] = ACTIONS(615), - [aux_sym_rekey_limit_token1] = ACTIONS(615), - [aux_sym_remote_command_token1] = ACTIONS(615), - [aux_sym_remote_forward_token1] = ACTIONS(615), - [aux_sym_request_tty_token1] = ACTIONS(615), - [aux_sym_required_rsa_size_token1] = ACTIONS(615), - [aux_sym_revoked_host_keys_token1] = ACTIONS(615), - [aux_sym_security_key_provider_token1] = ACTIONS(615), - [aux_sym_send_env_token1] = ACTIONS(615), - [aux_sym_server_alive_count_max_token1] = ACTIONS(615), - [aux_sym_server_alive_interval_token1] = ACTIONS(615), - [aux_sym_session_type_token1] = ACTIONS(615), - [aux_sym_set_env_token1] = ACTIONS(615), - [aux_sym_stdin_null_token1] = ACTIONS(615), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(615), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(615), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(615), - [aux_sym_syslog_facility_token1] = ACTIONS(615), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(615), - [aux_sym_keep_alive_token1] = ACTIONS(615), - [aux_sym_tunnel_token1] = ACTIONS(617), - [aux_sym_tunnel_device_token1] = ACTIONS(615), - [aux_sym_update_host_keys_token1] = ACTIONS(615), - [aux_sym_use_keychain_token1] = ACTIONS(615), - [aux_sym_use_roaming_token1] = ACTIONS(615), - [aux_sym_user_token1] = ACTIONS(617), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(615), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(615), - [aux_sym_visual_host_key_token1] = ACTIONS(615), - [aux_sym_xauth_location_token1] = ACTIONS(615), + [ts_builtin_sym_end] = ACTIONS(620), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(624), + [aux_sym_match_token1] = ACTIONS(620), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(620), + [aux_sym_address_family_token1] = ACTIONS(620), + [aux_sym_batch_mode_token1] = ACTIONS(620), + [aux_sym_bind_address_token1] = ACTIONS(620), + [aux_sym_bind_interface_token1] = ACTIONS(620), + [aux_sym_canonical_domains_token1] = ACTIONS(620), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(620), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(620), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(620), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(620), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(620), + [aux_sym_certificate_file_token1] = ACTIONS(620), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(620), + [aux_sym_check_host_ip_token1] = ACTIONS(620), + [aux_sym_ciphers_token1] = ACTIONS(620), + [aux_sym_cipher_token1] = ACTIONS(622), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(620), + [aux_sym_compression_token1] = ACTIONS(620), + [aux_sym_connection_attempts_token1] = ACTIONS(620), + [aux_sym_connect_timeout_token1] = ACTIONS(620), + [aux_sym_control_master_token1] = ACTIONS(620), + [aux_sym_control_path_token1] = ACTIONS(620), + [aux_sym_control_persist_token1] = ACTIONS(620), + [aux_sym_dynamic_forward_token1] = ACTIONS(620), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(620), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(620), + [aux_sym_escape_char_token1] = ACTIONS(620), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(620), + [aux_sym_fingerprint_hash_token1] = ACTIONS(620), + [aux_sym_fork_after_authentication_token1] = ACTIONS(620), + [aux_sym_forward_agent_token1] = ACTIONS(620), + [aux_sym_forward_x11_token1] = ACTIONS(622), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(620), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(620), + [aux_sym_gateway_ports_token1] = ACTIONS(620), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(620), + [aux_sym_gssapi_authentication_token1] = ACTIONS(620), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(620), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(620), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(620), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(620), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(620), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(620), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(620), + [aux_sym_hash_known_hosts_token1] = ACTIONS(620), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(620), + [aux_sym_hostbased_authentication_token1] = ACTIONS(620), + [aux_sym_host_key_algorithms_token1] = ACTIONS(620), + [aux_sym_host_key_alias_token1] = ACTIONS(620), + [aux_sym_hostname_token1] = ACTIONS(620), + [aux_sym_identities_only_token1] = ACTIONS(620), + [aux_sym_identity_agent_token1] = ACTIONS(620), + [aux_sym_identity_file_token1] = ACTIONS(620), + [aux_sym_ignore_unknown_token1] = ACTIONS(620), + [aux_sym_include_token1] = ACTIONS(620), + [aux_sym_ip_qos_token1] = ACTIONS(620), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(620), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(620), + [aux_sym_kex_algorithms_token1] = ACTIONS(620), + [aux_sym_known_hosts_command_token1] = ACTIONS(620), + [aux_sym_local_command_token1] = ACTIONS(620), + [aux_sym_local_forward_token1] = ACTIONS(620), + [aux_sym_log_level_token1] = ACTIONS(620), + [aux_sym_log_verbose_token1] = ACTIONS(620), + [aux_sym_macs_token1] = ACTIONS(620), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(620), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(620), + [aux_sym_password_authentication_token1] = ACTIONS(620), + [aux_sym_permit_local_command_token1] = ACTIONS(620), + [aux_sym_permit_remote_open_token1] = ACTIONS(620), + [aux_sym_pkcs11_provider_token1] = ACTIONS(620), + [aux_sym_port_token1] = ACTIONS(620), + [aux_sym_preferred_authentications_token1] = ACTIONS(620), + [aux_sym_protocol_token1] = ACTIONS(620), + [aux_sym_proxy_command_token1] = ACTIONS(620), + [aux_sym_proxy_jump_token1] = ACTIONS(620), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(620), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(620), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(620), + [aux_sym_pubkey_authentication_token1] = ACTIONS(620), + [aux_sym_rekey_limit_token1] = ACTIONS(620), + [aux_sym_remote_command_token1] = ACTIONS(620), + [aux_sym_remote_forward_token1] = ACTIONS(620), + [aux_sym_request_tty_token1] = ACTIONS(620), + [aux_sym_required_rsa_size_token1] = ACTIONS(620), + [aux_sym_revoked_host_keys_token1] = ACTIONS(620), + [aux_sym_security_key_provider_token1] = ACTIONS(620), + [aux_sym_send_env_token1] = ACTIONS(620), + [aux_sym_server_alive_count_max_token1] = ACTIONS(620), + [aux_sym_server_alive_interval_token1] = ACTIONS(620), + [aux_sym_session_type_token1] = ACTIONS(620), + [aux_sym_set_env_token1] = ACTIONS(620), + [aux_sym_stdin_null_token1] = ACTIONS(620), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(620), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(620), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(620), + [aux_sym_syslog_facility_token1] = ACTIONS(620), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(620), + [aux_sym_keep_alive_token1] = ACTIONS(620), + [aux_sym_tunnel_token1] = ACTIONS(622), + [aux_sym_tunnel_device_token1] = ACTIONS(620), + [aux_sym_update_host_keys_token1] = ACTIONS(620), + [aux_sym_use_keychain_token1] = ACTIONS(620), + [aux_sym_use_roaming_token1] = ACTIONS(620), + [aux_sym_user_token1] = ACTIONS(622), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(620), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(620), + [aux_sym_visual_host_key_token1] = ACTIONS(620), + [aux_sym_xauth_location_token1] = ACTIONS(620), }, [14] = { - [ts_builtin_sym_end] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(623), - [anon_sym_DQUOTE] = ACTIONS(625), - [aux_sym_match_token1] = ACTIONS(621), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(621), - [aux_sym_address_family_token1] = ACTIONS(621), - [aux_sym_batch_mode_token1] = ACTIONS(621), - [aux_sym_bind_address_token1] = ACTIONS(621), - [aux_sym_bind_interface_token1] = ACTIONS(621), - [aux_sym_canonical_domains_token1] = ACTIONS(621), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(621), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(621), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(621), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(621), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(621), - [aux_sym_certificate_file_token1] = ACTIONS(621), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(621), - [aux_sym_check_host_ip_token1] = ACTIONS(621), - [aux_sym_ciphers_token1] = ACTIONS(621), - [aux_sym_cipher_token1] = ACTIONS(623), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(621), - [aux_sym_compression_token1] = ACTIONS(621), - [aux_sym_connection_attempts_token1] = ACTIONS(621), - [aux_sym_connect_timeout_token1] = ACTIONS(621), - [aux_sym_control_master_token1] = ACTIONS(621), - [aux_sym_control_path_token1] = ACTIONS(621), - [aux_sym_control_persist_token1] = ACTIONS(621), - [aux_sym_dynamic_forward_token1] = ACTIONS(621), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(621), - [aux_sym_escape_char_token1] = ACTIONS(621), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(621), - [aux_sym_fingerprint_hash_token1] = ACTIONS(621), - [aux_sym_fork_after_authentication_token1] = ACTIONS(621), - [aux_sym_forward_agent_token1] = ACTIONS(621), - [aux_sym_forward_x11_token1] = ACTIONS(623), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(621), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(621), - [aux_sym_gateway_ports_token1] = ACTIONS(621), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(621), - [aux_sym_gssapi_authentication_token1] = ACTIONS(621), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(621), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(621), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(621), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(621), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(621), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(621), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(621), - [aux_sym_hash_known_hosts_token1] = ACTIONS(621), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(621), - [aux_sym_hostbased_authentication_token1] = ACTIONS(621), - [aux_sym_host_key_algorithms_token1] = ACTIONS(621), - [aux_sym_host_key_alias_token1] = ACTIONS(621), - [aux_sym_hostname_token1] = ACTIONS(621), - [aux_sym_identities_only_token1] = ACTIONS(621), - [aux_sym_identity_agent_token1] = ACTIONS(621), - [aux_sym_identity_file_token1] = ACTIONS(621), - [aux_sym_ignore_unknown_token1] = ACTIONS(621), - [aux_sym_include_token1] = ACTIONS(621), - [aux_sym_ip_qos_token1] = ACTIONS(621), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(621), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(621), - [aux_sym_kex_algorithms_token1] = ACTIONS(621), - [aux_sym_known_hosts_command_token1] = ACTIONS(621), - [aux_sym_local_command_token1] = ACTIONS(621), - [aux_sym_local_forward_token1] = ACTIONS(621), - [aux_sym_log_level_token1] = ACTIONS(621), - [aux_sym_log_verbose_token1] = ACTIONS(621), - [aux_sym_macs_token1] = ACTIONS(621), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(621), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(621), - [aux_sym_password_authentication_token1] = ACTIONS(621), - [aux_sym_permit_local_command_token1] = ACTIONS(621), - [aux_sym_permit_remote_open_token1] = ACTIONS(621), - [aux_sym_pkcs11_provider_token1] = ACTIONS(621), - [aux_sym_port_token1] = ACTIONS(621), - [aux_sym_preferred_authentications_token1] = ACTIONS(621), - [aux_sym_protocol_token1] = ACTIONS(621), - [aux_sym_proxy_command_token1] = ACTIONS(621), - [aux_sym_proxy_jump_token1] = ACTIONS(621), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(621), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(621), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(621), - [aux_sym_pubkey_authentication_token1] = ACTIONS(621), - [aux_sym_rekey_limit_token1] = ACTIONS(621), - [aux_sym_remote_command_token1] = ACTIONS(621), - [aux_sym_remote_forward_token1] = ACTIONS(621), - [aux_sym_request_tty_token1] = ACTIONS(621), - [aux_sym_required_rsa_size_token1] = ACTIONS(621), - [aux_sym_revoked_host_keys_token1] = ACTIONS(621), - [aux_sym_security_key_provider_token1] = ACTIONS(621), - [aux_sym_send_env_token1] = ACTIONS(621), - [aux_sym_server_alive_count_max_token1] = ACTIONS(621), - [aux_sym_server_alive_interval_token1] = ACTIONS(621), - [aux_sym_session_type_token1] = ACTIONS(621), - [aux_sym_set_env_token1] = ACTIONS(621), - [aux_sym_stdin_null_token1] = ACTIONS(621), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(621), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(621), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(621), - [aux_sym_syslog_facility_token1] = ACTIONS(621), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(621), - [aux_sym_keep_alive_token1] = ACTIONS(621), - [aux_sym_tunnel_token1] = ACTIONS(623), - [aux_sym_tunnel_device_token1] = ACTIONS(621), - [aux_sym_update_host_keys_token1] = ACTIONS(621), - [aux_sym_use_keychain_token1] = ACTIONS(621), - [aux_sym_use_roaming_token1] = ACTIONS(621), - [aux_sym_user_token1] = ACTIONS(623), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(621), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(621), - [aux_sym_visual_host_key_token1] = ACTIONS(621), - [aux_sym_xauth_location_token1] = ACTIONS(621), + [ts_builtin_sym_end] = ACTIONS(626), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(628), + [anon_sym_DQUOTE] = ACTIONS(630), + [aux_sym_match_token1] = ACTIONS(626), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(626), + [aux_sym_address_family_token1] = ACTIONS(626), + [aux_sym_batch_mode_token1] = ACTIONS(626), + [aux_sym_bind_address_token1] = ACTIONS(626), + [aux_sym_bind_interface_token1] = ACTIONS(626), + [aux_sym_canonical_domains_token1] = ACTIONS(626), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(626), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(626), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(626), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(626), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(626), + [aux_sym_certificate_file_token1] = ACTIONS(626), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(626), + [aux_sym_check_host_ip_token1] = ACTIONS(626), + [aux_sym_ciphers_token1] = ACTIONS(626), + [aux_sym_cipher_token1] = ACTIONS(628), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(626), + [aux_sym_compression_token1] = ACTIONS(626), + [aux_sym_connection_attempts_token1] = ACTIONS(626), + [aux_sym_connect_timeout_token1] = ACTIONS(626), + [aux_sym_control_master_token1] = ACTIONS(626), + [aux_sym_control_path_token1] = ACTIONS(626), + [aux_sym_control_persist_token1] = ACTIONS(626), + [aux_sym_dynamic_forward_token1] = ACTIONS(626), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(626), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(626), + [aux_sym_escape_char_token1] = ACTIONS(626), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(626), + [aux_sym_fingerprint_hash_token1] = ACTIONS(626), + [aux_sym_fork_after_authentication_token1] = ACTIONS(626), + [aux_sym_forward_agent_token1] = ACTIONS(626), + [aux_sym_forward_x11_token1] = ACTIONS(628), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(626), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(626), + [aux_sym_gateway_ports_token1] = ACTIONS(626), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(626), + [aux_sym_gssapi_authentication_token1] = ACTIONS(626), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(626), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(626), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(626), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(626), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(626), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(626), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(626), + [aux_sym_hash_known_hosts_token1] = ACTIONS(626), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(626), + [aux_sym_hostbased_authentication_token1] = ACTIONS(626), + [aux_sym_host_key_algorithms_token1] = ACTIONS(626), + [aux_sym_host_key_alias_token1] = ACTIONS(626), + [aux_sym_hostname_token1] = ACTIONS(626), + [aux_sym_identities_only_token1] = ACTIONS(626), + [aux_sym_identity_agent_token1] = ACTIONS(626), + [aux_sym_identity_file_token1] = ACTIONS(626), + [aux_sym_ignore_unknown_token1] = ACTIONS(626), + [aux_sym_include_token1] = ACTIONS(626), + [aux_sym_ip_qos_token1] = ACTIONS(626), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(626), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(626), + [aux_sym_kex_algorithms_token1] = ACTIONS(626), + [aux_sym_known_hosts_command_token1] = ACTIONS(626), + [aux_sym_local_command_token1] = ACTIONS(626), + [aux_sym_local_forward_token1] = ACTIONS(626), + [aux_sym_log_level_token1] = ACTIONS(626), + [aux_sym_log_verbose_token1] = ACTIONS(626), + [aux_sym_macs_token1] = ACTIONS(626), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(626), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(626), + [aux_sym_password_authentication_token1] = ACTIONS(626), + [aux_sym_permit_local_command_token1] = ACTIONS(626), + [aux_sym_permit_remote_open_token1] = ACTIONS(626), + [aux_sym_pkcs11_provider_token1] = ACTIONS(626), + [aux_sym_port_token1] = ACTIONS(626), + [aux_sym_preferred_authentications_token1] = ACTIONS(626), + [aux_sym_protocol_token1] = ACTIONS(626), + [aux_sym_proxy_command_token1] = ACTIONS(626), + [aux_sym_proxy_jump_token1] = ACTIONS(626), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(626), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(626), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(626), + [aux_sym_pubkey_authentication_token1] = ACTIONS(626), + [aux_sym_rekey_limit_token1] = ACTIONS(626), + [aux_sym_remote_command_token1] = ACTIONS(626), + [aux_sym_remote_forward_token1] = ACTIONS(626), + [aux_sym_request_tty_token1] = ACTIONS(626), + [aux_sym_required_rsa_size_token1] = ACTIONS(626), + [aux_sym_revoked_host_keys_token1] = ACTIONS(626), + [aux_sym_security_key_provider_token1] = ACTIONS(626), + [aux_sym_send_env_token1] = ACTIONS(626), + [aux_sym_server_alive_count_max_token1] = ACTIONS(626), + [aux_sym_server_alive_interval_token1] = ACTIONS(626), + [aux_sym_session_type_token1] = ACTIONS(626), + [aux_sym_set_env_token1] = ACTIONS(626), + [aux_sym_stdin_null_token1] = ACTIONS(626), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(626), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(626), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(626), + [aux_sym_syslog_facility_token1] = ACTIONS(626), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(626), + [aux_sym_keep_alive_token1] = ACTIONS(626), + [aux_sym_tunnel_token1] = ACTIONS(628), + [aux_sym_tunnel_device_token1] = ACTIONS(626), + [aux_sym_update_host_keys_token1] = ACTIONS(626), + [aux_sym_use_keychain_token1] = ACTIONS(626), + [aux_sym_use_roaming_token1] = ACTIONS(626), + [aux_sym_user_token1] = ACTIONS(628), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(626), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(626), + [aux_sym_visual_host_key_token1] = ACTIONS(626), + [aux_sym_xauth_location_token1] = ACTIONS(626), }, [15] = { - [ts_builtin_sym_end] = ACTIONS(627), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(629), - [anon_sym_DQUOTE] = ACTIONS(631), - [aux_sym_match_token1] = ACTIONS(627), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(627), - [aux_sym_address_family_token1] = ACTIONS(627), - [aux_sym_batch_mode_token1] = ACTIONS(627), - [aux_sym_bind_address_token1] = ACTIONS(627), - [aux_sym_bind_interface_token1] = ACTIONS(627), - [aux_sym_canonical_domains_token1] = ACTIONS(627), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(627), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(627), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(627), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(627), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(627), - [aux_sym_certificate_file_token1] = ACTIONS(627), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(627), - [aux_sym_check_host_ip_token1] = ACTIONS(627), - [aux_sym_ciphers_token1] = ACTIONS(627), - [aux_sym_cipher_token1] = ACTIONS(629), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(627), - [aux_sym_compression_token1] = ACTIONS(627), - [aux_sym_connection_attempts_token1] = ACTIONS(627), - [aux_sym_connect_timeout_token1] = ACTIONS(627), - [aux_sym_control_master_token1] = ACTIONS(627), - [aux_sym_control_path_token1] = ACTIONS(627), - [aux_sym_control_persist_token1] = ACTIONS(627), - [aux_sym_dynamic_forward_token1] = ACTIONS(627), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(627), - [aux_sym_escape_char_token1] = ACTIONS(627), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(627), - [aux_sym_fingerprint_hash_token1] = ACTIONS(627), - [aux_sym_fork_after_authentication_token1] = ACTIONS(627), - [aux_sym_forward_agent_token1] = ACTIONS(627), - [aux_sym_forward_x11_token1] = ACTIONS(629), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(627), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(627), - [aux_sym_gateway_ports_token1] = ACTIONS(627), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(627), - [aux_sym_gssapi_authentication_token1] = ACTIONS(627), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(627), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(627), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(627), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(627), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(627), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(627), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(627), - [aux_sym_hash_known_hosts_token1] = ACTIONS(627), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(627), - [aux_sym_hostbased_authentication_token1] = ACTIONS(627), - [aux_sym_host_key_algorithms_token1] = ACTIONS(627), - [aux_sym_host_key_alias_token1] = ACTIONS(627), - [aux_sym_hostname_token1] = ACTIONS(627), - [aux_sym_identities_only_token1] = ACTIONS(627), - [aux_sym_identity_agent_token1] = ACTIONS(627), - [aux_sym_identity_file_token1] = ACTIONS(627), - [aux_sym_ignore_unknown_token1] = ACTIONS(627), - [aux_sym_include_token1] = ACTIONS(627), - [aux_sym_ip_qos_token1] = ACTIONS(627), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(627), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(627), - [aux_sym_kex_algorithms_token1] = ACTIONS(627), - [aux_sym_known_hosts_command_token1] = ACTIONS(627), - [aux_sym_local_command_token1] = ACTIONS(627), - [aux_sym_local_forward_token1] = ACTIONS(627), - [aux_sym_log_level_token1] = ACTIONS(627), - [aux_sym_log_verbose_token1] = ACTIONS(627), - [aux_sym_macs_token1] = ACTIONS(627), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(627), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(627), - [aux_sym_password_authentication_token1] = ACTIONS(627), - [aux_sym_permit_local_command_token1] = ACTIONS(627), - [aux_sym_permit_remote_open_token1] = ACTIONS(627), - [aux_sym_pkcs11_provider_token1] = ACTIONS(627), - [aux_sym_port_token1] = ACTIONS(627), - [aux_sym_preferred_authentications_token1] = ACTIONS(627), - [aux_sym_protocol_token1] = ACTIONS(627), - [aux_sym_proxy_command_token1] = ACTIONS(627), - [aux_sym_proxy_jump_token1] = ACTIONS(627), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(627), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(627), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(627), - [aux_sym_pubkey_authentication_token1] = ACTIONS(627), - [aux_sym_rekey_limit_token1] = ACTIONS(627), - [aux_sym_remote_command_token1] = ACTIONS(627), - [aux_sym_remote_forward_token1] = ACTIONS(627), - [aux_sym_request_tty_token1] = ACTIONS(627), - [aux_sym_required_rsa_size_token1] = ACTIONS(627), - [aux_sym_revoked_host_keys_token1] = ACTIONS(627), - [aux_sym_security_key_provider_token1] = ACTIONS(627), - [aux_sym_send_env_token1] = ACTIONS(627), - [aux_sym_server_alive_count_max_token1] = ACTIONS(627), - [aux_sym_server_alive_interval_token1] = ACTIONS(627), - [aux_sym_session_type_token1] = ACTIONS(627), - [aux_sym_set_env_token1] = ACTIONS(627), - [aux_sym_stdin_null_token1] = ACTIONS(627), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(627), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(627), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(627), - [aux_sym_syslog_facility_token1] = ACTIONS(627), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(627), - [aux_sym_keep_alive_token1] = ACTIONS(627), - [aux_sym_tunnel_token1] = ACTIONS(629), - [aux_sym_tunnel_device_token1] = ACTIONS(627), - [aux_sym_update_host_keys_token1] = ACTIONS(627), - [aux_sym_use_keychain_token1] = ACTIONS(627), - [aux_sym_use_roaming_token1] = ACTIONS(627), - [aux_sym_user_token1] = ACTIONS(629), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(627), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(627), - [aux_sym_visual_host_key_token1] = ACTIONS(627), - [aux_sym_xauth_location_token1] = ACTIONS(627), + [ts_builtin_sym_end] = ACTIONS(632), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(634), + [anon_sym_DQUOTE] = ACTIONS(636), + [aux_sym_match_token1] = ACTIONS(632), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(632), + [aux_sym_address_family_token1] = ACTIONS(632), + [aux_sym_batch_mode_token1] = ACTIONS(632), + [aux_sym_bind_address_token1] = ACTIONS(632), + [aux_sym_bind_interface_token1] = ACTIONS(632), + [aux_sym_canonical_domains_token1] = ACTIONS(632), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(632), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(632), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(632), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(632), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(632), + [aux_sym_certificate_file_token1] = ACTIONS(632), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(632), + [aux_sym_check_host_ip_token1] = ACTIONS(632), + [aux_sym_ciphers_token1] = ACTIONS(632), + [aux_sym_cipher_token1] = ACTIONS(634), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(632), + [aux_sym_compression_token1] = ACTIONS(632), + [aux_sym_connection_attempts_token1] = ACTIONS(632), + [aux_sym_connect_timeout_token1] = ACTIONS(632), + [aux_sym_control_master_token1] = ACTIONS(632), + [aux_sym_control_path_token1] = ACTIONS(632), + [aux_sym_control_persist_token1] = ACTIONS(632), + [aux_sym_dynamic_forward_token1] = ACTIONS(632), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(632), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(632), + [aux_sym_escape_char_token1] = ACTIONS(632), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(632), + [aux_sym_fingerprint_hash_token1] = ACTIONS(632), + [aux_sym_fork_after_authentication_token1] = ACTIONS(632), + [aux_sym_forward_agent_token1] = ACTIONS(632), + [aux_sym_forward_x11_token1] = ACTIONS(634), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(632), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(632), + [aux_sym_gateway_ports_token1] = ACTIONS(632), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(632), + [aux_sym_gssapi_authentication_token1] = ACTIONS(632), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(632), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(632), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(632), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(632), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(632), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(632), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(632), + [aux_sym_hash_known_hosts_token1] = ACTIONS(632), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(632), + [aux_sym_hostbased_authentication_token1] = ACTIONS(632), + [aux_sym_host_key_algorithms_token1] = ACTIONS(632), + [aux_sym_host_key_alias_token1] = ACTIONS(632), + [aux_sym_hostname_token1] = ACTIONS(632), + [aux_sym_identities_only_token1] = ACTIONS(632), + [aux_sym_identity_agent_token1] = ACTIONS(632), + [aux_sym_identity_file_token1] = ACTIONS(632), + [aux_sym_ignore_unknown_token1] = ACTIONS(632), + [aux_sym_include_token1] = ACTIONS(632), + [aux_sym_ip_qos_token1] = ACTIONS(632), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(632), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(632), + [aux_sym_kex_algorithms_token1] = ACTIONS(632), + [aux_sym_known_hosts_command_token1] = ACTIONS(632), + [aux_sym_local_command_token1] = ACTIONS(632), + [aux_sym_local_forward_token1] = ACTIONS(632), + [aux_sym_log_level_token1] = ACTIONS(632), + [aux_sym_log_verbose_token1] = ACTIONS(632), + [aux_sym_macs_token1] = ACTIONS(632), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(632), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(632), + [aux_sym_password_authentication_token1] = ACTIONS(632), + [aux_sym_permit_local_command_token1] = ACTIONS(632), + [aux_sym_permit_remote_open_token1] = ACTIONS(632), + [aux_sym_pkcs11_provider_token1] = ACTIONS(632), + [aux_sym_port_token1] = ACTIONS(632), + [aux_sym_preferred_authentications_token1] = ACTIONS(632), + [aux_sym_protocol_token1] = ACTIONS(632), + [aux_sym_proxy_command_token1] = ACTIONS(632), + [aux_sym_proxy_jump_token1] = ACTIONS(632), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(632), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(632), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(632), + [aux_sym_pubkey_authentication_token1] = ACTIONS(632), + [aux_sym_rekey_limit_token1] = ACTIONS(632), + [aux_sym_remote_command_token1] = ACTIONS(632), + [aux_sym_remote_forward_token1] = ACTIONS(632), + [aux_sym_request_tty_token1] = ACTIONS(632), + [aux_sym_required_rsa_size_token1] = ACTIONS(632), + [aux_sym_revoked_host_keys_token1] = ACTIONS(632), + [aux_sym_security_key_provider_token1] = ACTIONS(632), + [aux_sym_send_env_token1] = ACTIONS(632), + [aux_sym_server_alive_count_max_token1] = ACTIONS(632), + [aux_sym_server_alive_interval_token1] = ACTIONS(632), + [aux_sym_session_type_token1] = ACTIONS(632), + [aux_sym_set_env_token1] = ACTIONS(632), + [aux_sym_stdin_null_token1] = ACTIONS(632), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(632), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(632), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(632), + [aux_sym_syslog_facility_token1] = ACTIONS(632), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(632), + [aux_sym_keep_alive_token1] = ACTIONS(632), + [aux_sym_tunnel_token1] = ACTIONS(634), + [aux_sym_tunnel_device_token1] = ACTIONS(632), + [aux_sym_update_host_keys_token1] = ACTIONS(632), + [aux_sym_use_keychain_token1] = ACTIONS(632), + [aux_sym_use_roaming_token1] = ACTIONS(632), + [aux_sym_user_token1] = ACTIONS(634), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(632), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(632), + [aux_sym_visual_host_key_token1] = ACTIONS(632), + [aux_sym_xauth_location_token1] = ACTIONS(632), }, [16] = { - [ts_builtin_sym_end] = ACTIONS(633), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(635), - [anon_sym_DQUOTE] = ACTIONS(637), - [aux_sym_match_token1] = ACTIONS(633), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(633), - [aux_sym_address_family_token1] = ACTIONS(633), - [aux_sym_batch_mode_token1] = ACTIONS(633), - [aux_sym_bind_address_token1] = ACTIONS(633), - [aux_sym_bind_interface_token1] = ACTIONS(633), - [aux_sym_canonical_domains_token1] = ACTIONS(633), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(633), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(633), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(633), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(633), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(633), - [aux_sym_certificate_file_token1] = ACTIONS(633), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(633), - [aux_sym_check_host_ip_token1] = ACTIONS(633), - [aux_sym_ciphers_token1] = ACTIONS(633), - [aux_sym_cipher_token1] = ACTIONS(635), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(633), - [aux_sym_compression_token1] = ACTIONS(633), - [aux_sym_connection_attempts_token1] = ACTIONS(633), - [aux_sym_connect_timeout_token1] = ACTIONS(633), - [aux_sym_control_master_token1] = ACTIONS(633), - [aux_sym_control_path_token1] = ACTIONS(633), - [aux_sym_control_persist_token1] = ACTIONS(633), - [aux_sym_dynamic_forward_token1] = ACTIONS(633), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(633), - [aux_sym_escape_char_token1] = ACTIONS(633), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(633), - [aux_sym_fingerprint_hash_token1] = ACTIONS(633), - [aux_sym_fork_after_authentication_token1] = ACTIONS(633), - [aux_sym_forward_agent_token1] = ACTIONS(633), - [aux_sym_forward_x11_token1] = ACTIONS(635), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(633), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(633), - [aux_sym_gateway_ports_token1] = ACTIONS(633), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(633), - [aux_sym_gssapi_authentication_token1] = ACTIONS(633), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(633), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(633), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(633), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(633), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(633), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(633), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(633), - [aux_sym_hash_known_hosts_token1] = ACTIONS(633), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(633), - [aux_sym_hostbased_authentication_token1] = ACTIONS(633), - [aux_sym_host_key_algorithms_token1] = ACTIONS(633), - [aux_sym_host_key_alias_token1] = ACTIONS(633), - [aux_sym_hostname_token1] = ACTIONS(633), - [aux_sym_identities_only_token1] = ACTIONS(633), - [aux_sym_identity_agent_token1] = ACTIONS(633), - [aux_sym_identity_file_token1] = ACTIONS(633), - [aux_sym_ignore_unknown_token1] = ACTIONS(633), - [aux_sym_include_token1] = ACTIONS(633), - [aux_sym_ip_qos_token1] = ACTIONS(633), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(633), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(633), - [aux_sym_kex_algorithms_token1] = ACTIONS(633), - [aux_sym_known_hosts_command_token1] = ACTIONS(633), - [aux_sym_local_command_token1] = ACTIONS(633), - [aux_sym_local_forward_token1] = ACTIONS(633), - [aux_sym_log_level_token1] = ACTIONS(633), - [aux_sym_log_verbose_token1] = ACTIONS(633), - [aux_sym_macs_token1] = ACTIONS(633), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(633), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(633), - [aux_sym_password_authentication_token1] = ACTIONS(633), - [aux_sym_permit_local_command_token1] = ACTIONS(633), - [aux_sym_permit_remote_open_token1] = ACTIONS(633), - [aux_sym_pkcs11_provider_token1] = ACTIONS(633), - [aux_sym_port_token1] = ACTIONS(633), - [aux_sym_preferred_authentications_token1] = ACTIONS(633), - [aux_sym_protocol_token1] = ACTIONS(633), - [aux_sym_proxy_command_token1] = ACTIONS(633), - [aux_sym_proxy_jump_token1] = ACTIONS(633), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(633), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(633), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(633), - [aux_sym_pubkey_authentication_token1] = ACTIONS(633), - [aux_sym_rekey_limit_token1] = ACTIONS(633), - [aux_sym_remote_command_token1] = ACTIONS(633), - [aux_sym_remote_forward_token1] = ACTIONS(633), - [aux_sym_request_tty_token1] = ACTIONS(633), - [aux_sym_required_rsa_size_token1] = ACTIONS(633), - [aux_sym_revoked_host_keys_token1] = ACTIONS(633), - [aux_sym_security_key_provider_token1] = ACTIONS(633), - [aux_sym_send_env_token1] = ACTIONS(633), - [aux_sym_server_alive_count_max_token1] = ACTIONS(633), - [aux_sym_server_alive_interval_token1] = ACTIONS(633), - [aux_sym_session_type_token1] = ACTIONS(633), - [aux_sym_set_env_token1] = ACTIONS(633), - [aux_sym_stdin_null_token1] = ACTIONS(633), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(633), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(633), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(633), - [aux_sym_syslog_facility_token1] = ACTIONS(633), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(633), - [aux_sym_keep_alive_token1] = ACTIONS(633), - [aux_sym_tunnel_token1] = ACTIONS(635), - [aux_sym_tunnel_device_token1] = ACTIONS(633), - [aux_sym_update_host_keys_token1] = ACTIONS(633), - [aux_sym_use_keychain_token1] = ACTIONS(633), - [aux_sym_use_roaming_token1] = ACTIONS(633), - [aux_sym_user_token1] = ACTIONS(635), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(633), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(633), - [aux_sym_visual_host_key_token1] = ACTIONS(633), - [aux_sym_xauth_location_token1] = ACTIONS(633), + [ts_builtin_sym_end] = ACTIONS(638), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(640), + [anon_sym_DQUOTE] = ACTIONS(642), + [aux_sym_match_token1] = ACTIONS(638), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(638), + [aux_sym_address_family_token1] = ACTIONS(638), + [aux_sym_batch_mode_token1] = ACTIONS(638), + [aux_sym_bind_address_token1] = ACTIONS(638), + [aux_sym_bind_interface_token1] = ACTIONS(638), + [aux_sym_canonical_domains_token1] = ACTIONS(638), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(638), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(638), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(638), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(638), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(638), + [aux_sym_certificate_file_token1] = ACTIONS(638), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(638), + [aux_sym_check_host_ip_token1] = ACTIONS(638), + [aux_sym_ciphers_token1] = ACTIONS(638), + [aux_sym_cipher_token1] = ACTIONS(640), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(638), + [aux_sym_compression_token1] = ACTIONS(638), + [aux_sym_connection_attempts_token1] = ACTIONS(638), + [aux_sym_connect_timeout_token1] = ACTIONS(638), + [aux_sym_control_master_token1] = ACTIONS(638), + [aux_sym_control_path_token1] = ACTIONS(638), + [aux_sym_control_persist_token1] = ACTIONS(638), + [aux_sym_dynamic_forward_token1] = ACTIONS(638), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(638), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(638), + [aux_sym_escape_char_token1] = ACTIONS(638), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(638), + [aux_sym_fingerprint_hash_token1] = ACTIONS(638), + [aux_sym_fork_after_authentication_token1] = ACTIONS(638), + [aux_sym_forward_agent_token1] = ACTIONS(638), + [aux_sym_forward_x11_token1] = ACTIONS(640), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(638), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(638), + [aux_sym_gateway_ports_token1] = ACTIONS(638), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(638), + [aux_sym_gssapi_authentication_token1] = ACTIONS(638), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(638), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(638), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(638), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(638), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(638), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(638), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(638), + [aux_sym_hash_known_hosts_token1] = ACTIONS(638), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(638), + [aux_sym_hostbased_authentication_token1] = ACTIONS(638), + [aux_sym_host_key_algorithms_token1] = ACTIONS(638), + [aux_sym_host_key_alias_token1] = ACTIONS(638), + [aux_sym_hostname_token1] = ACTIONS(638), + [aux_sym_identities_only_token1] = ACTIONS(638), + [aux_sym_identity_agent_token1] = ACTIONS(638), + [aux_sym_identity_file_token1] = ACTIONS(638), + [aux_sym_ignore_unknown_token1] = ACTIONS(638), + [aux_sym_include_token1] = ACTIONS(638), + [aux_sym_ip_qos_token1] = ACTIONS(638), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(638), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(638), + [aux_sym_kex_algorithms_token1] = ACTIONS(638), + [aux_sym_known_hosts_command_token1] = ACTIONS(638), + [aux_sym_local_command_token1] = ACTIONS(638), + [aux_sym_local_forward_token1] = ACTIONS(638), + [aux_sym_log_level_token1] = ACTIONS(638), + [aux_sym_log_verbose_token1] = ACTIONS(638), + [aux_sym_macs_token1] = ACTIONS(638), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(638), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(638), + [aux_sym_password_authentication_token1] = ACTIONS(638), + [aux_sym_permit_local_command_token1] = ACTIONS(638), + [aux_sym_permit_remote_open_token1] = ACTIONS(638), + [aux_sym_pkcs11_provider_token1] = ACTIONS(638), + [aux_sym_port_token1] = ACTIONS(638), + [aux_sym_preferred_authentications_token1] = ACTIONS(638), + [aux_sym_protocol_token1] = ACTIONS(638), + [aux_sym_proxy_command_token1] = ACTIONS(638), + [aux_sym_proxy_jump_token1] = ACTIONS(638), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(638), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(638), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(638), + [aux_sym_pubkey_authentication_token1] = ACTIONS(638), + [aux_sym_rekey_limit_token1] = ACTIONS(638), + [aux_sym_remote_command_token1] = ACTIONS(638), + [aux_sym_remote_forward_token1] = ACTIONS(638), + [aux_sym_request_tty_token1] = ACTIONS(638), + [aux_sym_required_rsa_size_token1] = ACTIONS(638), + [aux_sym_revoked_host_keys_token1] = ACTIONS(638), + [aux_sym_security_key_provider_token1] = ACTIONS(638), + [aux_sym_send_env_token1] = ACTIONS(638), + [aux_sym_server_alive_count_max_token1] = ACTIONS(638), + [aux_sym_server_alive_interval_token1] = ACTIONS(638), + [aux_sym_session_type_token1] = ACTIONS(638), + [aux_sym_set_env_token1] = ACTIONS(638), + [aux_sym_stdin_null_token1] = ACTIONS(638), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(638), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(638), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(638), + [aux_sym_syslog_facility_token1] = ACTIONS(638), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(638), + [aux_sym_keep_alive_token1] = ACTIONS(638), + [aux_sym_tunnel_token1] = ACTIONS(640), + [aux_sym_tunnel_device_token1] = ACTIONS(638), + [aux_sym_update_host_keys_token1] = ACTIONS(638), + [aux_sym_use_keychain_token1] = ACTIONS(638), + [aux_sym_use_roaming_token1] = ACTIONS(638), + [aux_sym_user_token1] = ACTIONS(640), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(638), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(638), + [aux_sym_visual_host_key_token1] = ACTIONS(638), + [aux_sym_xauth_location_token1] = ACTIONS(638), }, [17] = { - [ts_builtin_sym_end] = ACTIONS(639), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(641), - [anon_sym_DQUOTE] = ACTIONS(643), - [aux_sym_match_token1] = ACTIONS(639), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(639), - [aux_sym_address_family_token1] = ACTIONS(639), - [aux_sym_batch_mode_token1] = ACTIONS(639), - [aux_sym_bind_address_token1] = ACTIONS(639), - [aux_sym_bind_interface_token1] = ACTIONS(639), - [aux_sym_canonical_domains_token1] = ACTIONS(639), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(639), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(639), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(639), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(639), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(639), - [aux_sym_certificate_file_token1] = ACTIONS(639), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(639), - [aux_sym_check_host_ip_token1] = ACTIONS(639), - [aux_sym_ciphers_token1] = ACTIONS(639), - [aux_sym_cipher_token1] = ACTIONS(641), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(639), - [aux_sym_compression_token1] = ACTIONS(639), - [aux_sym_connection_attempts_token1] = ACTIONS(639), - [aux_sym_connect_timeout_token1] = ACTIONS(639), - [aux_sym_control_master_token1] = ACTIONS(639), - [aux_sym_control_path_token1] = ACTIONS(639), - [aux_sym_control_persist_token1] = ACTIONS(639), - [aux_sym_dynamic_forward_token1] = ACTIONS(639), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(639), - [aux_sym_escape_char_token1] = ACTIONS(639), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(639), - [aux_sym_fingerprint_hash_token1] = ACTIONS(639), - [aux_sym_fork_after_authentication_token1] = ACTIONS(639), - [aux_sym_forward_agent_token1] = ACTIONS(639), - [aux_sym_forward_x11_token1] = ACTIONS(641), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(639), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(639), - [aux_sym_gateway_ports_token1] = ACTIONS(639), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(639), - [aux_sym_gssapi_authentication_token1] = ACTIONS(639), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(639), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(639), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(639), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(639), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(639), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(639), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(639), - [aux_sym_hash_known_hosts_token1] = ACTIONS(639), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(639), - [aux_sym_hostbased_authentication_token1] = ACTIONS(639), - [aux_sym_host_key_algorithms_token1] = ACTIONS(639), - [aux_sym_host_key_alias_token1] = ACTIONS(639), - [aux_sym_hostname_token1] = ACTIONS(639), - [aux_sym_identities_only_token1] = ACTIONS(639), - [aux_sym_identity_agent_token1] = ACTIONS(639), - [aux_sym_identity_file_token1] = ACTIONS(639), - [aux_sym_ignore_unknown_token1] = ACTIONS(639), - [aux_sym_include_token1] = ACTIONS(639), - [aux_sym_ip_qos_token1] = ACTIONS(639), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(639), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(639), - [aux_sym_kex_algorithms_token1] = ACTIONS(639), - [aux_sym_known_hosts_command_token1] = ACTIONS(639), - [aux_sym_local_command_token1] = ACTIONS(639), - [aux_sym_local_forward_token1] = ACTIONS(639), - [aux_sym_log_level_token1] = ACTIONS(639), - [aux_sym_log_verbose_token1] = ACTIONS(639), - [aux_sym_macs_token1] = ACTIONS(639), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(639), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(639), - [aux_sym_password_authentication_token1] = ACTIONS(639), - [aux_sym_permit_local_command_token1] = ACTIONS(639), - [aux_sym_permit_remote_open_token1] = ACTIONS(639), - [aux_sym_pkcs11_provider_token1] = ACTIONS(639), - [aux_sym_port_token1] = ACTIONS(639), - [aux_sym_preferred_authentications_token1] = ACTIONS(639), - [aux_sym_protocol_token1] = ACTIONS(639), - [aux_sym_proxy_command_token1] = ACTIONS(639), - [aux_sym_proxy_jump_token1] = ACTIONS(639), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(639), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(639), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(639), - [aux_sym_pubkey_authentication_token1] = ACTIONS(639), - [aux_sym_rekey_limit_token1] = ACTIONS(639), - [aux_sym_remote_command_token1] = ACTIONS(639), - [aux_sym_remote_forward_token1] = ACTIONS(639), - [aux_sym_request_tty_token1] = ACTIONS(639), - [aux_sym_required_rsa_size_token1] = ACTIONS(639), - [aux_sym_revoked_host_keys_token1] = ACTIONS(639), - [aux_sym_security_key_provider_token1] = ACTIONS(639), - [aux_sym_send_env_token1] = ACTIONS(639), - [aux_sym_server_alive_count_max_token1] = ACTIONS(639), - [aux_sym_server_alive_interval_token1] = ACTIONS(639), - [aux_sym_session_type_token1] = ACTIONS(639), - [aux_sym_set_env_token1] = ACTIONS(639), - [aux_sym_stdin_null_token1] = ACTIONS(639), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(639), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(639), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(639), - [aux_sym_syslog_facility_token1] = ACTIONS(639), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(639), - [aux_sym_keep_alive_token1] = ACTIONS(639), - [aux_sym_tunnel_token1] = ACTIONS(641), - [aux_sym_tunnel_device_token1] = ACTIONS(639), - [aux_sym_update_host_keys_token1] = ACTIONS(639), - [aux_sym_use_keychain_token1] = ACTIONS(639), - [aux_sym_use_roaming_token1] = ACTIONS(639), - [aux_sym_user_token1] = ACTIONS(641), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(639), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(639), - [aux_sym_visual_host_key_token1] = ACTIONS(639), - [aux_sym_xauth_location_token1] = ACTIONS(639), + [ts_builtin_sym_end] = ACTIONS(644), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(646), + [anon_sym_DQUOTE] = ACTIONS(648), + [aux_sym_match_token1] = ACTIONS(644), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(644), + [aux_sym_address_family_token1] = ACTIONS(644), + [aux_sym_batch_mode_token1] = ACTIONS(644), + [aux_sym_bind_address_token1] = ACTIONS(644), + [aux_sym_bind_interface_token1] = ACTIONS(644), + [aux_sym_canonical_domains_token1] = ACTIONS(644), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(644), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(644), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(644), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(644), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(644), + [aux_sym_certificate_file_token1] = ACTIONS(644), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(644), + [aux_sym_check_host_ip_token1] = ACTIONS(644), + [aux_sym_ciphers_token1] = ACTIONS(644), + [aux_sym_cipher_token1] = ACTIONS(646), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(644), + [aux_sym_compression_token1] = ACTIONS(644), + [aux_sym_connection_attempts_token1] = ACTIONS(644), + [aux_sym_connect_timeout_token1] = ACTIONS(644), + [aux_sym_control_master_token1] = ACTIONS(644), + [aux_sym_control_path_token1] = ACTIONS(644), + [aux_sym_control_persist_token1] = ACTIONS(644), + [aux_sym_dynamic_forward_token1] = ACTIONS(644), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(644), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(644), + [aux_sym_escape_char_token1] = ACTIONS(644), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(644), + [aux_sym_fingerprint_hash_token1] = ACTIONS(644), + [aux_sym_fork_after_authentication_token1] = ACTIONS(644), + [aux_sym_forward_agent_token1] = ACTIONS(644), + [aux_sym_forward_x11_token1] = ACTIONS(646), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(644), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(644), + [aux_sym_gateway_ports_token1] = ACTIONS(644), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(644), + [aux_sym_gssapi_authentication_token1] = ACTIONS(644), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(644), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(644), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(644), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(644), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(644), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(644), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(644), + [aux_sym_hash_known_hosts_token1] = ACTIONS(644), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(644), + [aux_sym_hostbased_authentication_token1] = ACTIONS(644), + [aux_sym_host_key_algorithms_token1] = ACTIONS(644), + [aux_sym_host_key_alias_token1] = ACTIONS(644), + [aux_sym_hostname_token1] = ACTIONS(644), + [aux_sym_identities_only_token1] = ACTIONS(644), + [aux_sym_identity_agent_token1] = ACTIONS(644), + [aux_sym_identity_file_token1] = ACTIONS(644), + [aux_sym_ignore_unknown_token1] = ACTIONS(644), + [aux_sym_include_token1] = ACTIONS(644), + [aux_sym_ip_qos_token1] = ACTIONS(644), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(644), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(644), + [aux_sym_kex_algorithms_token1] = ACTIONS(644), + [aux_sym_known_hosts_command_token1] = ACTIONS(644), + [aux_sym_local_command_token1] = ACTIONS(644), + [aux_sym_local_forward_token1] = ACTIONS(644), + [aux_sym_log_level_token1] = ACTIONS(644), + [aux_sym_log_verbose_token1] = ACTIONS(644), + [aux_sym_macs_token1] = ACTIONS(644), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(644), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(644), + [aux_sym_password_authentication_token1] = ACTIONS(644), + [aux_sym_permit_local_command_token1] = ACTIONS(644), + [aux_sym_permit_remote_open_token1] = ACTIONS(644), + [aux_sym_pkcs11_provider_token1] = ACTIONS(644), + [aux_sym_port_token1] = ACTIONS(644), + [aux_sym_preferred_authentications_token1] = ACTIONS(644), + [aux_sym_protocol_token1] = ACTIONS(644), + [aux_sym_proxy_command_token1] = ACTIONS(644), + [aux_sym_proxy_jump_token1] = ACTIONS(644), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(644), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(644), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(644), + [aux_sym_pubkey_authentication_token1] = ACTIONS(644), + [aux_sym_rekey_limit_token1] = ACTIONS(644), + [aux_sym_remote_command_token1] = ACTIONS(644), + [aux_sym_remote_forward_token1] = ACTIONS(644), + [aux_sym_request_tty_token1] = ACTIONS(644), + [aux_sym_required_rsa_size_token1] = ACTIONS(644), + [aux_sym_revoked_host_keys_token1] = ACTIONS(644), + [aux_sym_security_key_provider_token1] = ACTIONS(644), + [aux_sym_send_env_token1] = ACTIONS(644), + [aux_sym_server_alive_count_max_token1] = ACTIONS(644), + [aux_sym_server_alive_interval_token1] = ACTIONS(644), + [aux_sym_session_type_token1] = ACTIONS(644), + [aux_sym_set_env_token1] = ACTIONS(644), + [aux_sym_stdin_null_token1] = ACTIONS(644), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(644), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(644), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(644), + [aux_sym_syslog_facility_token1] = ACTIONS(644), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(644), + [aux_sym_keep_alive_token1] = ACTIONS(644), + [aux_sym_tunnel_token1] = ACTIONS(646), + [aux_sym_tunnel_device_token1] = ACTIONS(644), + [aux_sym_update_host_keys_token1] = ACTIONS(644), + [aux_sym_use_keychain_token1] = ACTIONS(644), + [aux_sym_use_roaming_token1] = ACTIONS(644), + [aux_sym_user_token1] = ACTIONS(646), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(644), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(644), + [aux_sym_visual_host_key_token1] = ACTIONS(644), + [aux_sym_xauth_location_token1] = ACTIONS(644), }, [18] = { - [ts_builtin_sym_end] = ACTIONS(645), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(647), - [anon_sym_DQUOTE] = ACTIONS(649), - [aux_sym_match_token1] = ACTIONS(645), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(645), - [aux_sym_address_family_token1] = ACTIONS(645), - [aux_sym_batch_mode_token1] = ACTIONS(645), - [aux_sym_bind_address_token1] = ACTIONS(645), - [aux_sym_bind_interface_token1] = ACTIONS(645), - [aux_sym_canonical_domains_token1] = ACTIONS(645), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(645), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(645), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(645), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(645), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(645), - [aux_sym_certificate_file_token1] = ACTIONS(645), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(645), - [aux_sym_check_host_ip_token1] = ACTIONS(645), - [aux_sym_ciphers_token1] = ACTIONS(645), - [aux_sym_cipher_token1] = ACTIONS(647), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(645), - [aux_sym_compression_token1] = ACTIONS(645), - [aux_sym_connection_attempts_token1] = ACTIONS(645), - [aux_sym_connect_timeout_token1] = ACTIONS(645), - [aux_sym_control_master_token1] = ACTIONS(645), - [aux_sym_control_path_token1] = ACTIONS(645), - [aux_sym_control_persist_token1] = ACTIONS(645), - [aux_sym_dynamic_forward_token1] = ACTIONS(645), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(645), - [aux_sym_escape_char_token1] = ACTIONS(645), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(645), - [aux_sym_fingerprint_hash_token1] = ACTIONS(645), - [aux_sym_fork_after_authentication_token1] = ACTIONS(645), - [aux_sym_forward_agent_token1] = ACTIONS(645), - [aux_sym_forward_x11_token1] = ACTIONS(647), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(645), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(645), - [aux_sym_gateway_ports_token1] = ACTIONS(645), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(645), - [aux_sym_gssapi_authentication_token1] = ACTIONS(645), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(645), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(645), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(645), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(645), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(645), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(645), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(645), - [aux_sym_hash_known_hosts_token1] = ACTIONS(645), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(645), - [aux_sym_hostbased_authentication_token1] = ACTIONS(645), - [aux_sym_host_key_algorithms_token1] = ACTIONS(645), - [aux_sym_host_key_alias_token1] = ACTIONS(645), - [aux_sym_hostname_token1] = ACTIONS(645), - [aux_sym_identities_only_token1] = ACTIONS(645), - [aux_sym_identity_agent_token1] = ACTIONS(645), - [aux_sym_identity_file_token1] = ACTIONS(645), - [aux_sym_ignore_unknown_token1] = ACTIONS(645), - [aux_sym_include_token1] = ACTIONS(645), - [aux_sym_ip_qos_token1] = ACTIONS(645), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(645), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(645), - [aux_sym_kex_algorithms_token1] = ACTIONS(645), - [aux_sym_known_hosts_command_token1] = ACTIONS(645), - [aux_sym_local_command_token1] = ACTIONS(645), - [aux_sym_local_forward_token1] = ACTIONS(645), - [aux_sym_log_level_token1] = ACTIONS(645), - [aux_sym_log_verbose_token1] = ACTIONS(645), - [aux_sym_macs_token1] = ACTIONS(645), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(645), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(645), - [aux_sym_password_authentication_token1] = ACTIONS(645), - [aux_sym_permit_local_command_token1] = ACTIONS(645), - [aux_sym_permit_remote_open_token1] = ACTIONS(645), - [aux_sym_pkcs11_provider_token1] = ACTIONS(645), - [aux_sym_port_token1] = ACTIONS(645), - [aux_sym_preferred_authentications_token1] = ACTIONS(645), - [aux_sym_protocol_token1] = ACTIONS(645), - [aux_sym_proxy_command_token1] = ACTIONS(645), - [aux_sym_proxy_jump_token1] = ACTIONS(645), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(645), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(645), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(645), - [aux_sym_pubkey_authentication_token1] = ACTIONS(645), - [aux_sym_rekey_limit_token1] = ACTIONS(645), - [aux_sym_remote_command_token1] = ACTIONS(645), - [aux_sym_remote_forward_token1] = ACTIONS(645), - [aux_sym_request_tty_token1] = ACTIONS(645), - [aux_sym_required_rsa_size_token1] = ACTIONS(645), - [aux_sym_revoked_host_keys_token1] = ACTIONS(645), - [aux_sym_security_key_provider_token1] = ACTIONS(645), - [aux_sym_send_env_token1] = ACTIONS(645), - [aux_sym_server_alive_count_max_token1] = ACTIONS(645), - [aux_sym_server_alive_interval_token1] = ACTIONS(645), - [aux_sym_session_type_token1] = ACTIONS(645), - [aux_sym_set_env_token1] = ACTIONS(645), - [aux_sym_stdin_null_token1] = ACTIONS(645), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(645), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(645), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(645), - [aux_sym_syslog_facility_token1] = ACTIONS(645), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(645), - [aux_sym_keep_alive_token1] = ACTIONS(645), - [aux_sym_tunnel_token1] = ACTIONS(647), - [aux_sym_tunnel_device_token1] = ACTIONS(645), - [aux_sym_update_host_keys_token1] = ACTIONS(645), - [aux_sym_use_keychain_token1] = ACTIONS(645), - [aux_sym_use_roaming_token1] = ACTIONS(645), - [aux_sym_user_token1] = ACTIONS(647), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(645), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(645), - [aux_sym_visual_host_key_token1] = ACTIONS(645), - [aux_sym_xauth_location_token1] = ACTIONS(645), + [ts_builtin_sym_end] = ACTIONS(650), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(654), + [aux_sym_match_token1] = ACTIONS(650), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(650), + [aux_sym_address_family_token1] = ACTIONS(650), + [aux_sym_batch_mode_token1] = ACTIONS(650), + [aux_sym_bind_address_token1] = ACTIONS(650), + [aux_sym_bind_interface_token1] = ACTIONS(650), + [aux_sym_canonical_domains_token1] = ACTIONS(650), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(650), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(650), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(650), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(650), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(650), + [aux_sym_certificate_file_token1] = ACTIONS(650), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(650), + [aux_sym_check_host_ip_token1] = ACTIONS(650), + [aux_sym_ciphers_token1] = ACTIONS(650), + [aux_sym_cipher_token1] = ACTIONS(652), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(650), + [aux_sym_compression_token1] = ACTIONS(650), + [aux_sym_connection_attempts_token1] = ACTIONS(650), + [aux_sym_connect_timeout_token1] = ACTIONS(650), + [aux_sym_control_master_token1] = ACTIONS(650), + [aux_sym_control_path_token1] = ACTIONS(650), + [aux_sym_control_persist_token1] = ACTIONS(650), + [aux_sym_dynamic_forward_token1] = ACTIONS(650), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(650), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(650), + [aux_sym_escape_char_token1] = ACTIONS(650), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(650), + [aux_sym_fingerprint_hash_token1] = ACTIONS(650), + [aux_sym_fork_after_authentication_token1] = ACTIONS(650), + [aux_sym_forward_agent_token1] = ACTIONS(650), + [aux_sym_forward_x11_token1] = ACTIONS(652), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(650), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(650), + [aux_sym_gateway_ports_token1] = ACTIONS(650), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(650), + [aux_sym_gssapi_authentication_token1] = ACTIONS(650), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(650), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(650), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(650), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(650), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(650), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(650), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(650), + [aux_sym_hash_known_hosts_token1] = ACTIONS(650), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(650), + [aux_sym_hostbased_authentication_token1] = ACTIONS(650), + [aux_sym_host_key_algorithms_token1] = ACTIONS(650), + [aux_sym_host_key_alias_token1] = ACTIONS(650), + [aux_sym_hostname_token1] = ACTIONS(650), + [aux_sym_identities_only_token1] = ACTIONS(650), + [aux_sym_identity_agent_token1] = ACTIONS(650), + [aux_sym_identity_file_token1] = ACTIONS(650), + [aux_sym_ignore_unknown_token1] = ACTIONS(650), + [aux_sym_include_token1] = ACTIONS(650), + [aux_sym_ip_qos_token1] = ACTIONS(650), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(650), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(650), + [aux_sym_kex_algorithms_token1] = ACTIONS(650), + [aux_sym_known_hosts_command_token1] = ACTIONS(650), + [aux_sym_local_command_token1] = ACTIONS(650), + [aux_sym_local_forward_token1] = ACTIONS(650), + [aux_sym_log_level_token1] = ACTIONS(650), + [aux_sym_log_verbose_token1] = ACTIONS(650), + [aux_sym_macs_token1] = ACTIONS(650), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(650), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(650), + [aux_sym_password_authentication_token1] = ACTIONS(650), + [aux_sym_permit_local_command_token1] = ACTIONS(650), + [aux_sym_permit_remote_open_token1] = ACTIONS(650), + [aux_sym_pkcs11_provider_token1] = ACTIONS(650), + [aux_sym_port_token1] = ACTIONS(650), + [aux_sym_preferred_authentications_token1] = ACTIONS(650), + [aux_sym_protocol_token1] = ACTIONS(650), + [aux_sym_proxy_command_token1] = ACTIONS(650), + [aux_sym_proxy_jump_token1] = ACTIONS(650), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(650), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(650), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(650), + [aux_sym_pubkey_authentication_token1] = ACTIONS(650), + [aux_sym_rekey_limit_token1] = ACTIONS(650), + [aux_sym_remote_command_token1] = ACTIONS(650), + [aux_sym_remote_forward_token1] = ACTIONS(650), + [aux_sym_request_tty_token1] = ACTIONS(650), + [aux_sym_required_rsa_size_token1] = ACTIONS(650), + [aux_sym_revoked_host_keys_token1] = ACTIONS(650), + [aux_sym_security_key_provider_token1] = ACTIONS(650), + [aux_sym_send_env_token1] = ACTIONS(650), + [aux_sym_server_alive_count_max_token1] = ACTIONS(650), + [aux_sym_server_alive_interval_token1] = ACTIONS(650), + [aux_sym_session_type_token1] = ACTIONS(650), + [aux_sym_set_env_token1] = ACTIONS(650), + [aux_sym_stdin_null_token1] = ACTIONS(650), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(650), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(650), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(650), + [aux_sym_syslog_facility_token1] = ACTIONS(650), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(650), + [aux_sym_keep_alive_token1] = ACTIONS(650), + [aux_sym_tunnel_token1] = ACTIONS(652), + [aux_sym_tunnel_device_token1] = ACTIONS(650), + [aux_sym_update_host_keys_token1] = ACTIONS(650), + [aux_sym_use_keychain_token1] = ACTIONS(650), + [aux_sym_use_roaming_token1] = ACTIONS(650), + [aux_sym_user_token1] = ACTIONS(652), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(650), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(650), + [aux_sym_visual_host_key_token1] = ACTIONS(650), + [aux_sym_xauth_location_token1] = ACTIONS(650), }, [19] = { - [ts_builtin_sym_end] = ACTIONS(651), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(653), - [anon_sym_DQUOTE] = ACTIONS(655), - [aux_sym_match_token1] = ACTIONS(651), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(651), - [aux_sym_address_family_token1] = ACTIONS(651), - [aux_sym_batch_mode_token1] = ACTIONS(651), - [aux_sym_bind_address_token1] = ACTIONS(651), - [aux_sym_bind_interface_token1] = ACTIONS(651), - [aux_sym_canonical_domains_token1] = ACTIONS(651), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(651), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(651), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(651), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(651), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(651), - [aux_sym_certificate_file_token1] = ACTIONS(651), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(651), - [aux_sym_check_host_ip_token1] = ACTIONS(651), - [aux_sym_ciphers_token1] = ACTIONS(651), - [aux_sym_cipher_token1] = ACTIONS(653), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(651), - [aux_sym_compression_token1] = ACTIONS(651), - [aux_sym_connection_attempts_token1] = ACTIONS(651), - [aux_sym_connect_timeout_token1] = ACTIONS(651), - [aux_sym_control_master_token1] = ACTIONS(651), - [aux_sym_control_path_token1] = ACTIONS(651), - [aux_sym_control_persist_token1] = ACTIONS(651), - [aux_sym_dynamic_forward_token1] = ACTIONS(651), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(651), - [aux_sym_escape_char_token1] = ACTIONS(651), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(651), - [aux_sym_fingerprint_hash_token1] = ACTIONS(651), - [aux_sym_fork_after_authentication_token1] = ACTIONS(651), - [aux_sym_forward_agent_token1] = ACTIONS(651), - [aux_sym_forward_x11_token1] = ACTIONS(653), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(651), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(651), - [aux_sym_gateway_ports_token1] = ACTIONS(651), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(651), - [aux_sym_gssapi_authentication_token1] = ACTIONS(651), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(651), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(651), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(651), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(651), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(651), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(651), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(651), - [aux_sym_hash_known_hosts_token1] = ACTIONS(651), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(651), - [aux_sym_hostbased_authentication_token1] = ACTIONS(651), - [aux_sym_host_key_algorithms_token1] = ACTIONS(651), - [aux_sym_host_key_alias_token1] = ACTIONS(651), - [aux_sym_hostname_token1] = ACTIONS(651), - [aux_sym_identities_only_token1] = ACTIONS(651), - [aux_sym_identity_agent_token1] = ACTIONS(651), - [aux_sym_identity_file_token1] = ACTIONS(651), - [aux_sym_ignore_unknown_token1] = ACTIONS(651), - [aux_sym_include_token1] = ACTIONS(651), - [aux_sym_ip_qos_token1] = ACTIONS(651), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(651), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(651), - [aux_sym_kex_algorithms_token1] = ACTIONS(651), - [aux_sym_known_hosts_command_token1] = ACTIONS(651), - [aux_sym_local_command_token1] = ACTIONS(651), - [aux_sym_local_forward_token1] = ACTIONS(651), - [aux_sym_log_level_token1] = ACTIONS(651), - [aux_sym_log_verbose_token1] = ACTIONS(651), - [aux_sym_macs_token1] = ACTIONS(651), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(651), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(651), - [aux_sym_password_authentication_token1] = ACTIONS(651), - [aux_sym_permit_local_command_token1] = ACTIONS(651), - [aux_sym_permit_remote_open_token1] = ACTIONS(651), - [aux_sym_pkcs11_provider_token1] = ACTIONS(651), - [aux_sym_port_token1] = ACTIONS(651), - [aux_sym_preferred_authentications_token1] = ACTIONS(651), - [aux_sym_protocol_token1] = ACTIONS(651), - [aux_sym_proxy_command_token1] = ACTIONS(651), - [aux_sym_proxy_jump_token1] = ACTIONS(651), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(651), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(651), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(651), - [aux_sym_pubkey_authentication_token1] = ACTIONS(651), - [aux_sym_rekey_limit_token1] = ACTIONS(651), - [aux_sym_remote_command_token1] = ACTIONS(651), - [aux_sym_remote_forward_token1] = ACTIONS(651), - [aux_sym_request_tty_token1] = ACTIONS(651), - [aux_sym_required_rsa_size_token1] = ACTIONS(651), - [aux_sym_revoked_host_keys_token1] = ACTIONS(651), - [aux_sym_security_key_provider_token1] = ACTIONS(651), - [aux_sym_send_env_token1] = ACTIONS(651), - [aux_sym_server_alive_count_max_token1] = ACTIONS(651), - [aux_sym_server_alive_interval_token1] = ACTIONS(651), - [aux_sym_session_type_token1] = ACTIONS(651), - [aux_sym_set_env_token1] = ACTIONS(651), - [aux_sym_stdin_null_token1] = ACTIONS(651), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(651), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(651), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(651), - [aux_sym_syslog_facility_token1] = ACTIONS(651), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(651), - [aux_sym_keep_alive_token1] = ACTIONS(651), - [aux_sym_tunnel_token1] = ACTIONS(653), - [aux_sym_tunnel_device_token1] = ACTIONS(651), - [aux_sym_update_host_keys_token1] = ACTIONS(651), - [aux_sym_use_keychain_token1] = ACTIONS(651), - [aux_sym_use_roaming_token1] = ACTIONS(651), - [aux_sym_user_token1] = ACTIONS(653), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(651), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(651), - [aux_sym_visual_host_key_token1] = ACTIONS(651), - [aux_sym_xauth_location_token1] = ACTIONS(651), + [ts_builtin_sym_end] = ACTIONS(656), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(658), + [anon_sym_DQUOTE] = ACTIONS(660), + [aux_sym_match_token1] = ACTIONS(656), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(656), + [aux_sym_address_family_token1] = ACTIONS(656), + [aux_sym_batch_mode_token1] = ACTIONS(656), + [aux_sym_bind_address_token1] = ACTIONS(656), + [aux_sym_bind_interface_token1] = ACTIONS(656), + [aux_sym_canonical_domains_token1] = ACTIONS(656), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(656), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(656), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(656), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(656), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(656), + [aux_sym_certificate_file_token1] = ACTIONS(656), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(656), + [aux_sym_check_host_ip_token1] = ACTIONS(656), + [aux_sym_ciphers_token1] = ACTIONS(656), + [aux_sym_cipher_token1] = ACTIONS(658), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(656), + [aux_sym_compression_token1] = ACTIONS(656), + [aux_sym_connection_attempts_token1] = ACTIONS(656), + [aux_sym_connect_timeout_token1] = ACTIONS(656), + [aux_sym_control_master_token1] = ACTIONS(656), + [aux_sym_control_path_token1] = ACTIONS(656), + [aux_sym_control_persist_token1] = ACTIONS(656), + [aux_sym_dynamic_forward_token1] = ACTIONS(656), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(656), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(656), + [aux_sym_escape_char_token1] = ACTIONS(656), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(656), + [aux_sym_fingerprint_hash_token1] = ACTIONS(656), + [aux_sym_fork_after_authentication_token1] = ACTIONS(656), + [aux_sym_forward_agent_token1] = ACTIONS(656), + [aux_sym_forward_x11_token1] = ACTIONS(658), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(656), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(656), + [aux_sym_gateway_ports_token1] = ACTIONS(656), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(656), + [aux_sym_gssapi_authentication_token1] = ACTIONS(656), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(656), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(656), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(656), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(656), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(656), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(656), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(656), + [aux_sym_hash_known_hosts_token1] = ACTIONS(656), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(656), + [aux_sym_hostbased_authentication_token1] = ACTIONS(656), + [aux_sym_host_key_algorithms_token1] = ACTIONS(656), + [aux_sym_host_key_alias_token1] = ACTIONS(656), + [aux_sym_hostname_token1] = ACTIONS(656), + [aux_sym_identities_only_token1] = ACTIONS(656), + [aux_sym_identity_agent_token1] = ACTIONS(656), + [aux_sym_identity_file_token1] = ACTIONS(656), + [aux_sym_ignore_unknown_token1] = ACTIONS(656), + [aux_sym_include_token1] = ACTIONS(656), + [aux_sym_ip_qos_token1] = ACTIONS(656), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(656), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(656), + [aux_sym_kex_algorithms_token1] = ACTIONS(656), + [aux_sym_known_hosts_command_token1] = ACTIONS(656), + [aux_sym_local_command_token1] = ACTIONS(656), + [aux_sym_local_forward_token1] = ACTIONS(656), + [aux_sym_log_level_token1] = ACTIONS(656), + [aux_sym_log_verbose_token1] = ACTIONS(656), + [aux_sym_macs_token1] = ACTIONS(656), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(656), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(656), + [aux_sym_password_authentication_token1] = ACTIONS(656), + [aux_sym_permit_local_command_token1] = ACTIONS(656), + [aux_sym_permit_remote_open_token1] = ACTIONS(656), + [aux_sym_pkcs11_provider_token1] = ACTIONS(656), + [aux_sym_port_token1] = ACTIONS(656), + [aux_sym_preferred_authentications_token1] = ACTIONS(656), + [aux_sym_protocol_token1] = ACTIONS(656), + [aux_sym_proxy_command_token1] = ACTIONS(656), + [aux_sym_proxy_jump_token1] = ACTIONS(656), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(656), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(656), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(656), + [aux_sym_pubkey_authentication_token1] = ACTIONS(656), + [aux_sym_rekey_limit_token1] = ACTIONS(656), + [aux_sym_remote_command_token1] = ACTIONS(656), + [aux_sym_remote_forward_token1] = ACTIONS(656), + [aux_sym_request_tty_token1] = ACTIONS(656), + [aux_sym_required_rsa_size_token1] = ACTIONS(656), + [aux_sym_revoked_host_keys_token1] = ACTIONS(656), + [aux_sym_security_key_provider_token1] = ACTIONS(656), + [aux_sym_send_env_token1] = ACTIONS(656), + [aux_sym_server_alive_count_max_token1] = ACTIONS(656), + [aux_sym_server_alive_interval_token1] = ACTIONS(656), + [aux_sym_session_type_token1] = ACTIONS(656), + [aux_sym_set_env_token1] = ACTIONS(656), + [aux_sym_stdin_null_token1] = ACTIONS(656), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(656), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(656), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(656), + [aux_sym_syslog_facility_token1] = ACTIONS(656), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(656), + [aux_sym_keep_alive_token1] = ACTIONS(656), + [aux_sym_tunnel_token1] = ACTIONS(658), + [aux_sym_tunnel_device_token1] = ACTIONS(656), + [aux_sym_update_host_keys_token1] = ACTIONS(656), + [aux_sym_use_keychain_token1] = ACTIONS(656), + [aux_sym_use_roaming_token1] = ACTIONS(656), + [aux_sym_user_token1] = ACTIONS(658), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(656), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(656), + [aux_sym_visual_host_key_token1] = ACTIONS(656), + [aux_sym_xauth_location_token1] = ACTIONS(656), }, [20] = { - [ts_builtin_sym_end] = ACTIONS(657), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(661), - [aux_sym_match_token1] = ACTIONS(657), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(657), - [aux_sym_address_family_token1] = ACTIONS(657), - [aux_sym_batch_mode_token1] = ACTIONS(657), - [aux_sym_bind_address_token1] = ACTIONS(657), - [aux_sym_bind_interface_token1] = ACTIONS(657), - [aux_sym_canonical_domains_token1] = ACTIONS(657), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(657), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(657), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(657), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(657), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(657), - [aux_sym_certificate_file_token1] = ACTIONS(657), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(657), - [aux_sym_check_host_ip_token1] = ACTIONS(657), - [aux_sym_ciphers_token1] = ACTIONS(657), - [aux_sym_cipher_token1] = ACTIONS(659), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(657), - [aux_sym_compression_token1] = ACTIONS(657), - [aux_sym_connection_attempts_token1] = ACTIONS(657), - [aux_sym_connect_timeout_token1] = ACTIONS(657), - [aux_sym_control_master_token1] = ACTIONS(657), - [aux_sym_control_path_token1] = ACTIONS(657), - [aux_sym_control_persist_token1] = ACTIONS(657), - [aux_sym_dynamic_forward_token1] = ACTIONS(657), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(657), - [aux_sym_escape_char_token1] = ACTIONS(657), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(657), - [aux_sym_fingerprint_hash_token1] = ACTIONS(657), - [aux_sym_fork_after_authentication_token1] = ACTIONS(657), - [aux_sym_forward_agent_token1] = ACTIONS(657), - [aux_sym_forward_x11_token1] = ACTIONS(659), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(657), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(657), - [aux_sym_gateway_ports_token1] = ACTIONS(657), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(657), - [aux_sym_gssapi_authentication_token1] = ACTIONS(657), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(657), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(657), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(657), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(657), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(657), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(657), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(657), - [aux_sym_hash_known_hosts_token1] = ACTIONS(657), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(657), - [aux_sym_hostbased_authentication_token1] = ACTIONS(657), - [aux_sym_host_key_algorithms_token1] = ACTIONS(657), - [aux_sym_host_key_alias_token1] = ACTIONS(657), - [aux_sym_hostname_token1] = ACTIONS(657), - [aux_sym_identities_only_token1] = ACTIONS(657), - [aux_sym_identity_agent_token1] = ACTIONS(657), - [aux_sym_identity_file_token1] = ACTIONS(657), - [aux_sym_ignore_unknown_token1] = ACTIONS(657), - [aux_sym_include_token1] = ACTIONS(657), - [aux_sym_ip_qos_token1] = ACTIONS(657), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(657), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(657), - [aux_sym_kex_algorithms_token1] = ACTIONS(657), - [aux_sym_known_hosts_command_token1] = ACTIONS(657), - [aux_sym_local_command_token1] = ACTIONS(657), - [aux_sym_local_forward_token1] = ACTIONS(657), - [aux_sym_log_level_token1] = ACTIONS(657), - [aux_sym_log_verbose_token1] = ACTIONS(657), - [aux_sym_macs_token1] = ACTIONS(657), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(657), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(657), - [aux_sym_password_authentication_token1] = ACTIONS(657), - [aux_sym_permit_local_command_token1] = ACTIONS(657), - [aux_sym_permit_remote_open_token1] = ACTIONS(657), - [aux_sym_pkcs11_provider_token1] = ACTIONS(657), - [aux_sym_port_token1] = ACTIONS(657), - [aux_sym_preferred_authentications_token1] = ACTIONS(657), - [aux_sym_protocol_token1] = ACTIONS(657), - [aux_sym_proxy_command_token1] = ACTIONS(657), - [aux_sym_proxy_jump_token1] = ACTIONS(657), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(657), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(657), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(657), - [aux_sym_pubkey_authentication_token1] = ACTIONS(657), - [aux_sym_rekey_limit_token1] = ACTIONS(657), - [aux_sym_remote_command_token1] = ACTIONS(657), - [aux_sym_remote_forward_token1] = ACTIONS(657), - [aux_sym_request_tty_token1] = ACTIONS(657), - [aux_sym_required_rsa_size_token1] = ACTIONS(657), - [aux_sym_revoked_host_keys_token1] = ACTIONS(657), - [aux_sym_security_key_provider_token1] = ACTIONS(657), - [aux_sym_send_env_token1] = ACTIONS(657), - [aux_sym_server_alive_count_max_token1] = ACTIONS(657), - [aux_sym_server_alive_interval_token1] = ACTIONS(657), - [aux_sym_session_type_token1] = ACTIONS(657), - [aux_sym_set_env_token1] = ACTIONS(657), - [aux_sym_stdin_null_token1] = ACTIONS(657), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(657), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(657), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(657), - [aux_sym_syslog_facility_token1] = ACTIONS(657), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(657), - [aux_sym_keep_alive_token1] = ACTIONS(657), - [aux_sym_tunnel_token1] = ACTIONS(659), - [aux_sym_tunnel_device_token1] = ACTIONS(657), - [aux_sym_update_host_keys_token1] = ACTIONS(657), - [aux_sym_use_keychain_token1] = ACTIONS(657), - [aux_sym_use_roaming_token1] = ACTIONS(657), - [aux_sym_user_token1] = ACTIONS(659), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(657), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(657), - [aux_sym_visual_host_key_token1] = ACTIONS(657), - [aux_sym_xauth_location_token1] = ACTIONS(657), + [ts_builtin_sym_end] = ACTIONS(662), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(664), + [anon_sym_DQUOTE] = ACTIONS(666), + [aux_sym_match_token1] = ACTIONS(662), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(662), + [aux_sym_address_family_token1] = ACTIONS(662), + [aux_sym_batch_mode_token1] = ACTIONS(662), + [aux_sym_bind_address_token1] = ACTIONS(662), + [aux_sym_bind_interface_token1] = ACTIONS(662), + [aux_sym_canonical_domains_token1] = ACTIONS(662), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(662), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(662), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(662), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(662), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(662), + [aux_sym_certificate_file_token1] = ACTIONS(662), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(662), + [aux_sym_check_host_ip_token1] = ACTIONS(662), + [aux_sym_ciphers_token1] = ACTIONS(662), + [aux_sym_cipher_token1] = ACTIONS(664), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(662), + [aux_sym_compression_token1] = ACTIONS(662), + [aux_sym_connection_attempts_token1] = ACTIONS(662), + [aux_sym_connect_timeout_token1] = ACTIONS(662), + [aux_sym_control_master_token1] = ACTIONS(662), + [aux_sym_control_path_token1] = ACTIONS(662), + [aux_sym_control_persist_token1] = ACTIONS(662), + [aux_sym_dynamic_forward_token1] = ACTIONS(662), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(662), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(662), + [aux_sym_escape_char_token1] = ACTIONS(662), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(662), + [aux_sym_fingerprint_hash_token1] = ACTIONS(662), + [aux_sym_fork_after_authentication_token1] = ACTIONS(662), + [aux_sym_forward_agent_token1] = ACTIONS(662), + [aux_sym_forward_x11_token1] = ACTIONS(664), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(662), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(662), + [aux_sym_gateway_ports_token1] = ACTIONS(662), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(662), + [aux_sym_gssapi_authentication_token1] = ACTIONS(662), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(662), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(662), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(662), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(662), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(662), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(662), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(662), + [aux_sym_hash_known_hosts_token1] = ACTIONS(662), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(662), + [aux_sym_hostbased_authentication_token1] = ACTIONS(662), + [aux_sym_host_key_algorithms_token1] = ACTIONS(662), + [aux_sym_host_key_alias_token1] = ACTIONS(662), + [aux_sym_hostname_token1] = ACTIONS(662), + [aux_sym_identities_only_token1] = ACTIONS(662), + [aux_sym_identity_agent_token1] = ACTIONS(662), + [aux_sym_identity_file_token1] = ACTIONS(662), + [aux_sym_ignore_unknown_token1] = ACTIONS(662), + [aux_sym_include_token1] = ACTIONS(662), + [aux_sym_ip_qos_token1] = ACTIONS(662), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(662), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(662), + [aux_sym_kex_algorithms_token1] = ACTIONS(662), + [aux_sym_known_hosts_command_token1] = ACTIONS(662), + [aux_sym_local_command_token1] = ACTIONS(662), + [aux_sym_local_forward_token1] = ACTIONS(662), + [aux_sym_log_level_token1] = ACTIONS(662), + [aux_sym_log_verbose_token1] = ACTIONS(662), + [aux_sym_macs_token1] = ACTIONS(662), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(662), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(662), + [aux_sym_password_authentication_token1] = ACTIONS(662), + [aux_sym_permit_local_command_token1] = ACTIONS(662), + [aux_sym_permit_remote_open_token1] = ACTIONS(662), + [aux_sym_pkcs11_provider_token1] = ACTIONS(662), + [aux_sym_port_token1] = ACTIONS(662), + [aux_sym_preferred_authentications_token1] = ACTIONS(662), + [aux_sym_protocol_token1] = ACTIONS(662), + [aux_sym_proxy_command_token1] = ACTIONS(662), + [aux_sym_proxy_jump_token1] = ACTIONS(662), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(662), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(662), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(662), + [aux_sym_pubkey_authentication_token1] = ACTIONS(662), + [aux_sym_rekey_limit_token1] = ACTIONS(662), + [aux_sym_remote_command_token1] = ACTIONS(662), + [aux_sym_remote_forward_token1] = ACTIONS(662), + [aux_sym_request_tty_token1] = ACTIONS(662), + [aux_sym_required_rsa_size_token1] = ACTIONS(662), + [aux_sym_revoked_host_keys_token1] = ACTIONS(662), + [aux_sym_security_key_provider_token1] = ACTIONS(662), + [aux_sym_send_env_token1] = ACTIONS(662), + [aux_sym_server_alive_count_max_token1] = ACTIONS(662), + [aux_sym_server_alive_interval_token1] = ACTIONS(662), + [aux_sym_session_type_token1] = ACTIONS(662), + [aux_sym_set_env_token1] = ACTIONS(662), + [aux_sym_stdin_null_token1] = ACTIONS(662), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(662), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(662), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(662), + [aux_sym_syslog_facility_token1] = ACTIONS(662), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(662), + [aux_sym_keep_alive_token1] = ACTIONS(662), + [aux_sym_tunnel_token1] = ACTIONS(664), + [aux_sym_tunnel_device_token1] = ACTIONS(662), + [aux_sym_update_host_keys_token1] = ACTIONS(662), + [aux_sym_use_keychain_token1] = ACTIONS(662), + [aux_sym_use_roaming_token1] = ACTIONS(662), + [aux_sym_user_token1] = ACTIONS(664), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(662), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(662), + [aux_sym_visual_host_key_token1] = ACTIONS(662), + [aux_sym_xauth_location_token1] = ACTIONS(662), }, [21] = { - [ts_builtin_sym_end] = ACTIONS(663), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(665), - [anon_sym_DQUOTE] = ACTIONS(667), - [aux_sym_match_token1] = ACTIONS(663), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(663), - [aux_sym_address_family_token1] = ACTIONS(663), - [aux_sym_batch_mode_token1] = ACTIONS(663), - [aux_sym_bind_address_token1] = ACTIONS(663), - [aux_sym_bind_interface_token1] = ACTIONS(663), - [aux_sym_canonical_domains_token1] = ACTIONS(663), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(663), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(663), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(663), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(663), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(663), - [aux_sym_certificate_file_token1] = ACTIONS(663), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(663), - [aux_sym_check_host_ip_token1] = ACTIONS(663), - [aux_sym_ciphers_token1] = ACTIONS(663), - [aux_sym_cipher_token1] = ACTIONS(665), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(663), - [aux_sym_compression_token1] = ACTIONS(663), - [aux_sym_connection_attempts_token1] = ACTIONS(663), - [aux_sym_connect_timeout_token1] = ACTIONS(663), - [aux_sym_control_master_token1] = ACTIONS(663), - [aux_sym_control_path_token1] = ACTIONS(663), - [aux_sym_control_persist_token1] = ACTIONS(663), - [aux_sym_dynamic_forward_token1] = ACTIONS(663), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(663), - [aux_sym_escape_char_token1] = ACTIONS(663), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(663), - [aux_sym_fingerprint_hash_token1] = ACTIONS(663), - [aux_sym_fork_after_authentication_token1] = ACTIONS(663), - [aux_sym_forward_agent_token1] = ACTIONS(663), - [aux_sym_forward_x11_token1] = ACTIONS(665), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(663), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(663), - [aux_sym_gateway_ports_token1] = ACTIONS(663), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(663), - [aux_sym_gssapi_authentication_token1] = ACTIONS(663), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(663), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(663), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(663), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(663), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(663), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(663), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(663), - [aux_sym_hash_known_hosts_token1] = ACTIONS(663), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(663), - [aux_sym_hostbased_authentication_token1] = ACTIONS(663), - [aux_sym_host_key_algorithms_token1] = ACTIONS(663), - [aux_sym_host_key_alias_token1] = ACTIONS(663), - [aux_sym_hostname_token1] = ACTIONS(663), - [aux_sym_identities_only_token1] = ACTIONS(663), - [aux_sym_identity_agent_token1] = ACTIONS(663), - [aux_sym_identity_file_token1] = ACTIONS(663), - [aux_sym_ignore_unknown_token1] = ACTIONS(663), - [aux_sym_include_token1] = ACTIONS(663), - [aux_sym_ip_qos_token1] = ACTIONS(663), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(663), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(663), - [aux_sym_kex_algorithms_token1] = ACTIONS(663), - [aux_sym_known_hosts_command_token1] = ACTIONS(663), - [aux_sym_local_command_token1] = ACTIONS(663), - [aux_sym_local_forward_token1] = ACTIONS(663), - [aux_sym_log_level_token1] = ACTIONS(663), - [aux_sym_log_verbose_token1] = ACTIONS(663), - [aux_sym_macs_token1] = ACTIONS(663), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(663), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(663), - [aux_sym_password_authentication_token1] = ACTIONS(663), - [aux_sym_permit_local_command_token1] = ACTIONS(663), - [aux_sym_permit_remote_open_token1] = ACTIONS(663), - [aux_sym_pkcs11_provider_token1] = ACTIONS(663), - [aux_sym_port_token1] = ACTIONS(663), - [aux_sym_preferred_authentications_token1] = ACTIONS(663), - [aux_sym_protocol_token1] = ACTIONS(663), - [aux_sym_proxy_command_token1] = ACTIONS(663), - [aux_sym_proxy_jump_token1] = ACTIONS(663), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(663), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(663), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(663), - [aux_sym_pubkey_authentication_token1] = ACTIONS(663), - [aux_sym_rekey_limit_token1] = ACTIONS(663), - [aux_sym_remote_command_token1] = ACTIONS(663), - [aux_sym_remote_forward_token1] = ACTIONS(663), - [aux_sym_request_tty_token1] = ACTIONS(663), - [aux_sym_required_rsa_size_token1] = ACTIONS(663), - [aux_sym_revoked_host_keys_token1] = ACTIONS(663), - [aux_sym_security_key_provider_token1] = ACTIONS(663), - [aux_sym_send_env_token1] = ACTIONS(663), - [aux_sym_server_alive_count_max_token1] = ACTIONS(663), - [aux_sym_server_alive_interval_token1] = ACTIONS(663), - [aux_sym_session_type_token1] = ACTIONS(663), - [aux_sym_set_env_token1] = ACTIONS(663), - [aux_sym_stdin_null_token1] = ACTIONS(663), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(663), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(663), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(663), - [aux_sym_syslog_facility_token1] = ACTIONS(663), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(663), - [aux_sym_keep_alive_token1] = ACTIONS(663), - [aux_sym_tunnel_token1] = ACTIONS(665), - [aux_sym_tunnel_device_token1] = ACTIONS(663), - [aux_sym_update_host_keys_token1] = ACTIONS(663), - [aux_sym_use_keychain_token1] = ACTIONS(663), - [aux_sym_use_roaming_token1] = ACTIONS(663), - [aux_sym_user_token1] = ACTIONS(665), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(663), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(663), - [aux_sym_visual_host_key_token1] = ACTIONS(663), - [aux_sym_xauth_location_token1] = ACTIONS(663), + [ts_builtin_sym_end] = ACTIONS(668), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(670), + [anon_sym_DQUOTE] = ACTIONS(672), + [aux_sym_match_token1] = ACTIONS(668), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(668), + [aux_sym_address_family_token1] = ACTIONS(668), + [aux_sym_batch_mode_token1] = ACTIONS(668), + [aux_sym_bind_address_token1] = ACTIONS(668), + [aux_sym_bind_interface_token1] = ACTIONS(668), + [aux_sym_canonical_domains_token1] = ACTIONS(668), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(668), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(668), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(668), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(668), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(668), + [aux_sym_certificate_file_token1] = ACTIONS(668), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(668), + [aux_sym_check_host_ip_token1] = ACTIONS(668), + [aux_sym_ciphers_token1] = ACTIONS(668), + [aux_sym_cipher_token1] = ACTIONS(670), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(668), + [aux_sym_compression_token1] = ACTIONS(668), + [aux_sym_connection_attempts_token1] = ACTIONS(668), + [aux_sym_connect_timeout_token1] = ACTIONS(668), + [aux_sym_control_master_token1] = ACTIONS(668), + [aux_sym_control_path_token1] = ACTIONS(668), + [aux_sym_control_persist_token1] = ACTIONS(668), + [aux_sym_dynamic_forward_token1] = ACTIONS(668), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(668), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(668), + [aux_sym_escape_char_token1] = ACTIONS(668), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(668), + [aux_sym_fingerprint_hash_token1] = ACTIONS(668), + [aux_sym_fork_after_authentication_token1] = ACTIONS(668), + [aux_sym_forward_agent_token1] = ACTIONS(668), + [aux_sym_forward_x11_token1] = ACTIONS(670), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(668), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(668), + [aux_sym_gateway_ports_token1] = ACTIONS(668), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(668), + [aux_sym_gssapi_authentication_token1] = ACTIONS(668), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(668), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(668), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(668), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(668), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(668), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(668), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(668), + [aux_sym_hash_known_hosts_token1] = ACTIONS(668), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(668), + [aux_sym_hostbased_authentication_token1] = ACTIONS(668), + [aux_sym_host_key_algorithms_token1] = ACTIONS(668), + [aux_sym_host_key_alias_token1] = ACTIONS(668), + [aux_sym_hostname_token1] = ACTIONS(668), + [aux_sym_identities_only_token1] = ACTIONS(668), + [aux_sym_identity_agent_token1] = ACTIONS(668), + [aux_sym_identity_file_token1] = ACTIONS(668), + [aux_sym_ignore_unknown_token1] = ACTIONS(668), + [aux_sym_include_token1] = ACTIONS(668), + [aux_sym_ip_qos_token1] = ACTIONS(668), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(668), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(668), + [aux_sym_kex_algorithms_token1] = ACTIONS(668), + [aux_sym_known_hosts_command_token1] = ACTIONS(668), + [aux_sym_local_command_token1] = ACTIONS(668), + [aux_sym_local_forward_token1] = ACTIONS(668), + [aux_sym_log_level_token1] = ACTIONS(668), + [aux_sym_log_verbose_token1] = ACTIONS(668), + [aux_sym_macs_token1] = ACTIONS(668), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(668), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(668), + [aux_sym_password_authentication_token1] = ACTIONS(668), + [aux_sym_permit_local_command_token1] = ACTIONS(668), + [aux_sym_permit_remote_open_token1] = ACTIONS(668), + [aux_sym_pkcs11_provider_token1] = ACTIONS(668), + [aux_sym_port_token1] = ACTIONS(668), + [aux_sym_preferred_authentications_token1] = ACTIONS(668), + [aux_sym_protocol_token1] = ACTIONS(668), + [aux_sym_proxy_command_token1] = ACTIONS(668), + [aux_sym_proxy_jump_token1] = ACTIONS(668), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(668), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(668), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(668), + [aux_sym_pubkey_authentication_token1] = ACTIONS(668), + [aux_sym_rekey_limit_token1] = ACTIONS(668), + [aux_sym_remote_command_token1] = ACTIONS(668), + [aux_sym_remote_forward_token1] = ACTIONS(668), + [aux_sym_request_tty_token1] = ACTIONS(668), + [aux_sym_required_rsa_size_token1] = ACTIONS(668), + [aux_sym_revoked_host_keys_token1] = ACTIONS(668), + [aux_sym_security_key_provider_token1] = ACTIONS(668), + [aux_sym_send_env_token1] = ACTIONS(668), + [aux_sym_server_alive_count_max_token1] = ACTIONS(668), + [aux_sym_server_alive_interval_token1] = ACTIONS(668), + [aux_sym_session_type_token1] = ACTIONS(668), + [aux_sym_set_env_token1] = ACTIONS(668), + [aux_sym_stdin_null_token1] = ACTIONS(668), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(668), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(668), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(668), + [aux_sym_syslog_facility_token1] = ACTIONS(668), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(668), + [aux_sym_keep_alive_token1] = ACTIONS(668), + [aux_sym_tunnel_token1] = ACTIONS(670), + [aux_sym_tunnel_device_token1] = ACTIONS(668), + [aux_sym_update_host_keys_token1] = ACTIONS(668), + [aux_sym_use_keychain_token1] = ACTIONS(668), + [aux_sym_use_roaming_token1] = ACTIONS(668), + [aux_sym_user_token1] = ACTIONS(670), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(668), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(668), + [aux_sym_visual_host_key_token1] = ACTIONS(668), + [aux_sym_xauth_location_token1] = ACTIONS(668), }, [22] = { - [ts_builtin_sym_end] = ACTIONS(669), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(671), - [anon_sym_DQUOTE] = ACTIONS(673), - [aux_sym_match_token1] = ACTIONS(669), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(669), - [aux_sym_address_family_token1] = ACTIONS(669), - [aux_sym_batch_mode_token1] = ACTIONS(669), - [aux_sym_bind_address_token1] = ACTIONS(669), - [aux_sym_bind_interface_token1] = ACTIONS(669), - [aux_sym_canonical_domains_token1] = ACTIONS(669), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(669), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(669), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(669), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(669), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(669), - [aux_sym_certificate_file_token1] = ACTIONS(669), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(669), - [aux_sym_check_host_ip_token1] = ACTIONS(669), - [aux_sym_ciphers_token1] = ACTIONS(669), - [aux_sym_cipher_token1] = ACTIONS(671), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(669), - [aux_sym_compression_token1] = ACTIONS(669), - [aux_sym_connection_attempts_token1] = ACTIONS(669), - [aux_sym_connect_timeout_token1] = ACTIONS(669), - [aux_sym_control_master_token1] = ACTIONS(669), - [aux_sym_control_path_token1] = ACTIONS(669), - [aux_sym_control_persist_token1] = ACTIONS(669), - [aux_sym_dynamic_forward_token1] = ACTIONS(669), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(669), - [aux_sym_escape_char_token1] = ACTIONS(669), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(669), - [aux_sym_fingerprint_hash_token1] = ACTIONS(669), - [aux_sym_fork_after_authentication_token1] = ACTIONS(669), - [aux_sym_forward_agent_token1] = ACTIONS(669), - [aux_sym_forward_x11_token1] = ACTIONS(671), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(669), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(669), - [aux_sym_gateway_ports_token1] = ACTIONS(669), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(669), - [aux_sym_gssapi_authentication_token1] = ACTIONS(669), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(669), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(669), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(669), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(669), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(669), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(669), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(669), - [aux_sym_hash_known_hosts_token1] = ACTIONS(669), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(669), - [aux_sym_hostbased_authentication_token1] = ACTIONS(669), - [aux_sym_host_key_algorithms_token1] = ACTIONS(669), - [aux_sym_host_key_alias_token1] = ACTIONS(669), - [aux_sym_hostname_token1] = ACTIONS(669), - [aux_sym_identities_only_token1] = ACTIONS(669), - [aux_sym_identity_agent_token1] = ACTIONS(669), - [aux_sym_identity_file_token1] = ACTIONS(669), - [aux_sym_ignore_unknown_token1] = ACTIONS(669), - [aux_sym_include_token1] = ACTIONS(669), - [aux_sym_ip_qos_token1] = ACTIONS(669), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(669), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(669), - [aux_sym_kex_algorithms_token1] = ACTIONS(669), - [aux_sym_known_hosts_command_token1] = ACTIONS(669), - [aux_sym_local_command_token1] = ACTIONS(669), - [aux_sym_local_forward_token1] = ACTIONS(669), - [aux_sym_log_level_token1] = ACTIONS(669), - [aux_sym_log_verbose_token1] = ACTIONS(669), - [aux_sym_macs_token1] = ACTIONS(669), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(669), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(669), - [aux_sym_password_authentication_token1] = ACTIONS(669), - [aux_sym_permit_local_command_token1] = ACTIONS(669), - [aux_sym_permit_remote_open_token1] = ACTIONS(669), - [aux_sym_pkcs11_provider_token1] = ACTIONS(669), - [aux_sym_port_token1] = ACTIONS(669), - [aux_sym_preferred_authentications_token1] = ACTIONS(669), - [aux_sym_protocol_token1] = ACTIONS(669), - [aux_sym_proxy_command_token1] = ACTIONS(669), - [aux_sym_proxy_jump_token1] = ACTIONS(669), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(669), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(669), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(669), - [aux_sym_pubkey_authentication_token1] = ACTIONS(669), - [aux_sym_rekey_limit_token1] = ACTIONS(669), - [aux_sym_remote_command_token1] = ACTIONS(669), - [aux_sym_remote_forward_token1] = ACTIONS(669), - [aux_sym_request_tty_token1] = ACTIONS(669), - [aux_sym_required_rsa_size_token1] = ACTIONS(669), - [aux_sym_revoked_host_keys_token1] = ACTIONS(669), - [aux_sym_security_key_provider_token1] = ACTIONS(669), - [aux_sym_send_env_token1] = ACTIONS(669), - [aux_sym_server_alive_count_max_token1] = ACTIONS(669), - [aux_sym_server_alive_interval_token1] = ACTIONS(669), - [aux_sym_session_type_token1] = ACTIONS(669), - [aux_sym_set_env_token1] = ACTIONS(669), - [aux_sym_stdin_null_token1] = ACTIONS(669), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(669), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(669), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(669), - [aux_sym_syslog_facility_token1] = ACTIONS(669), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(669), - [aux_sym_keep_alive_token1] = ACTIONS(669), - [aux_sym_tunnel_token1] = ACTIONS(671), - [aux_sym_tunnel_device_token1] = ACTIONS(669), - [aux_sym_update_host_keys_token1] = ACTIONS(669), - [aux_sym_use_keychain_token1] = ACTIONS(669), - [aux_sym_use_roaming_token1] = ACTIONS(669), - [aux_sym_user_token1] = ACTIONS(671), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(669), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(669), - [aux_sym_visual_host_key_token1] = ACTIONS(669), - [aux_sym_xauth_location_token1] = ACTIONS(669), + [ts_builtin_sym_end] = ACTIONS(674), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(676), + [anon_sym_DQUOTE] = ACTIONS(678), + [aux_sym_match_token1] = ACTIONS(674), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(674), + [aux_sym_address_family_token1] = ACTIONS(674), + [aux_sym_batch_mode_token1] = ACTIONS(674), + [aux_sym_bind_address_token1] = ACTIONS(674), + [aux_sym_bind_interface_token1] = ACTIONS(674), + [aux_sym_canonical_domains_token1] = ACTIONS(674), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(674), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(674), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(674), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(674), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(674), + [aux_sym_certificate_file_token1] = ACTIONS(674), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(674), + [aux_sym_check_host_ip_token1] = ACTIONS(674), + [aux_sym_ciphers_token1] = ACTIONS(674), + [aux_sym_cipher_token1] = ACTIONS(676), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(674), + [aux_sym_compression_token1] = ACTIONS(674), + [aux_sym_connection_attempts_token1] = ACTIONS(674), + [aux_sym_connect_timeout_token1] = ACTIONS(674), + [aux_sym_control_master_token1] = ACTIONS(674), + [aux_sym_control_path_token1] = ACTIONS(674), + [aux_sym_control_persist_token1] = ACTIONS(674), + [aux_sym_dynamic_forward_token1] = ACTIONS(674), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(674), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(674), + [aux_sym_escape_char_token1] = ACTIONS(674), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(674), + [aux_sym_fingerprint_hash_token1] = ACTIONS(674), + [aux_sym_fork_after_authentication_token1] = ACTIONS(674), + [aux_sym_forward_agent_token1] = ACTIONS(674), + [aux_sym_forward_x11_token1] = ACTIONS(676), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(674), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(674), + [aux_sym_gateway_ports_token1] = ACTIONS(674), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(674), + [aux_sym_gssapi_authentication_token1] = ACTIONS(674), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(674), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(674), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(674), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(674), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(674), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(674), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(674), + [aux_sym_hash_known_hosts_token1] = ACTIONS(674), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(674), + [aux_sym_hostbased_authentication_token1] = ACTIONS(674), + [aux_sym_host_key_algorithms_token1] = ACTIONS(674), + [aux_sym_host_key_alias_token1] = ACTIONS(674), + [aux_sym_hostname_token1] = ACTIONS(674), + [aux_sym_identities_only_token1] = ACTIONS(674), + [aux_sym_identity_agent_token1] = ACTIONS(674), + [aux_sym_identity_file_token1] = ACTIONS(674), + [aux_sym_ignore_unknown_token1] = ACTIONS(674), + [aux_sym_include_token1] = ACTIONS(674), + [aux_sym_ip_qos_token1] = ACTIONS(674), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(674), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(674), + [aux_sym_kex_algorithms_token1] = ACTIONS(674), + [aux_sym_known_hosts_command_token1] = ACTIONS(674), + [aux_sym_local_command_token1] = ACTIONS(674), + [aux_sym_local_forward_token1] = ACTIONS(674), + [aux_sym_log_level_token1] = ACTIONS(674), + [aux_sym_log_verbose_token1] = ACTIONS(674), + [aux_sym_macs_token1] = ACTIONS(674), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(674), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(674), + [aux_sym_password_authentication_token1] = ACTIONS(674), + [aux_sym_permit_local_command_token1] = ACTIONS(674), + [aux_sym_permit_remote_open_token1] = ACTIONS(674), + [aux_sym_pkcs11_provider_token1] = ACTIONS(674), + [aux_sym_port_token1] = ACTIONS(674), + [aux_sym_preferred_authentications_token1] = ACTIONS(674), + [aux_sym_protocol_token1] = ACTIONS(674), + [aux_sym_proxy_command_token1] = ACTIONS(674), + [aux_sym_proxy_jump_token1] = ACTIONS(674), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(674), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(674), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(674), + [aux_sym_pubkey_authentication_token1] = ACTIONS(674), + [aux_sym_rekey_limit_token1] = ACTIONS(674), + [aux_sym_remote_command_token1] = ACTIONS(674), + [aux_sym_remote_forward_token1] = ACTIONS(674), + [aux_sym_request_tty_token1] = ACTIONS(674), + [aux_sym_required_rsa_size_token1] = ACTIONS(674), + [aux_sym_revoked_host_keys_token1] = ACTIONS(674), + [aux_sym_security_key_provider_token1] = ACTIONS(674), + [aux_sym_send_env_token1] = ACTIONS(674), + [aux_sym_server_alive_count_max_token1] = ACTIONS(674), + [aux_sym_server_alive_interval_token1] = ACTIONS(674), + [aux_sym_session_type_token1] = ACTIONS(674), + [aux_sym_set_env_token1] = ACTIONS(674), + [aux_sym_stdin_null_token1] = ACTIONS(674), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(674), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(674), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(674), + [aux_sym_syslog_facility_token1] = ACTIONS(674), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(674), + [aux_sym_keep_alive_token1] = ACTIONS(674), + [aux_sym_tunnel_token1] = ACTIONS(676), + [aux_sym_tunnel_device_token1] = ACTIONS(674), + [aux_sym_update_host_keys_token1] = ACTIONS(674), + [aux_sym_use_keychain_token1] = ACTIONS(674), + [aux_sym_use_roaming_token1] = ACTIONS(674), + [aux_sym_user_token1] = ACTIONS(676), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(674), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(674), + [aux_sym_visual_host_key_token1] = ACTIONS(674), + [aux_sym_xauth_location_token1] = ACTIONS(674), }, [23] = { - [ts_builtin_sym_end] = ACTIONS(675), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(679), - [aux_sym_match_token1] = ACTIONS(675), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(675), - [aux_sym_address_family_token1] = ACTIONS(675), - [aux_sym_batch_mode_token1] = ACTIONS(675), - [aux_sym_bind_address_token1] = ACTIONS(675), - [aux_sym_bind_interface_token1] = ACTIONS(675), - [aux_sym_canonical_domains_token1] = ACTIONS(675), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(675), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(675), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(675), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(675), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(675), - [aux_sym_certificate_file_token1] = ACTIONS(675), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(675), - [aux_sym_check_host_ip_token1] = ACTIONS(675), - [aux_sym_ciphers_token1] = ACTIONS(675), - [aux_sym_cipher_token1] = ACTIONS(677), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(675), - [aux_sym_compression_token1] = ACTIONS(675), - [aux_sym_connection_attempts_token1] = ACTIONS(675), - [aux_sym_connect_timeout_token1] = ACTIONS(675), - [aux_sym_control_master_token1] = ACTIONS(675), - [aux_sym_control_path_token1] = ACTIONS(675), - [aux_sym_control_persist_token1] = ACTIONS(675), - [aux_sym_dynamic_forward_token1] = ACTIONS(675), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(675), - [aux_sym_escape_char_token1] = ACTIONS(675), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(675), - [aux_sym_fingerprint_hash_token1] = ACTIONS(675), - [aux_sym_fork_after_authentication_token1] = ACTIONS(675), - [aux_sym_forward_agent_token1] = ACTIONS(675), - [aux_sym_forward_x11_token1] = ACTIONS(677), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(675), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(675), - [aux_sym_gateway_ports_token1] = ACTIONS(675), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(675), - [aux_sym_gssapi_authentication_token1] = ACTIONS(675), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(675), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(675), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(675), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(675), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(675), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(675), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(675), - [aux_sym_hash_known_hosts_token1] = ACTIONS(675), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(675), - [aux_sym_hostbased_authentication_token1] = ACTIONS(675), - [aux_sym_host_key_algorithms_token1] = ACTIONS(675), - [aux_sym_host_key_alias_token1] = ACTIONS(675), - [aux_sym_hostname_token1] = ACTIONS(675), - [aux_sym_identities_only_token1] = ACTIONS(675), - [aux_sym_identity_agent_token1] = ACTIONS(675), - [aux_sym_identity_file_token1] = ACTIONS(675), - [aux_sym_ignore_unknown_token1] = ACTIONS(675), - [aux_sym_include_token1] = ACTIONS(675), - [aux_sym_ip_qos_token1] = ACTIONS(675), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(675), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(675), - [aux_sym_kex_algorithms_token1] = ACTIONS(675), - [aux_sym_known_hosts_command_token1] = ACTIONS(675), - [aux_sym_local_command_token1] = ACTIONS(675), - [aux_sym_local_forward_token1] = ACTIONS(675), - [aux_sym_log_level_token1] = ACTIONS(675), - [aux_sym_log_verbose_token1] = ACTIONS(675), - [aux_sym_macs_token1] = ACTIONS(675), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(675), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(675), - [aux_sym_password_authentication_token1] = ACTIONS(675), - [aux_sym_permit_local_command_token1] = ACTIONS(675), - [aux_sym_permit_remote_open_token1] = ACTIONS(675), - [aux_sym_pkcs11_provider_token1] = ACTIONS(675), - [aux_sym_port_token1] = ACTIONS(675), - [aux_sym_preferred_authentications_token1] = ACTIONS(675), - [aux_sym_protocol_token1] = ACTIONS(675), - [aux_sym_proxy_command_token1] = ACTIONS(675), - [aux_sym_proxy_jump_token1] = ACTIONS(675), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(675), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(675), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(675), - [aux_sym_pubkey_authentication_token1] = ACTIONS(675), - [aux_sym_rekey_limit_token1] = ACTIONS(675), - [aux_sym_remote_command_token1] = ACTIONS(675), - [aux_sym_remote_forward_token1] = ACTIONS(675), - [aux_sym_request_tty_token1] = ACTIONS(675), - [aux_sym_required_rsa_size_token1] = ACTIONS(675), - [aux_sym_revoked_host_keys_token1] = ACTIONS(675), - [aux_sym_security_key_provider_token1] = ACTIONS(675), - [aux_sym_send_env_token1] = ACTIONS(675), - [aux_sym_server_alive_count_max_token1] = ACTIONS(675), - [aux_sym_server_alive_interval_token1] = ACTIONS(675), - [aux_sym_session_type_token1] = ACTIONS(675), - [aux_sym_set_env_token1] = ACTIONS(675), - [aux_sym_stdin_null_token1] = ACTIONS(675), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(675), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(675), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(675), - [aux_sym_syslog_facility_token1] = ACTIONS(675), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(675), - [aux_sym_keep_alive_token1] = ACTIONS(675), - [aux_sym_tunnel_token1] = ACTIONS(677), - [aux_sym_tunnel_device_token1] = ACTIONS(675), - [aux_sym_update_host_keys_token1] = ACTIONS(675), - [aux_sym_use_keychain_token1] = ACTIONS(675), - [aux_sym_use_roaming_token1] = ACTIONS(675), - [aux_sym_user_token1] = ACTIONS(677), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(675), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(675), - [aux_sym_visual_host_key_token1] = ACTIONS(675), - [aux_sym_xauth_location_token1] = ACTIONS(675), + [ts_builtin_sym_end] = ACTIONS(680), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [aux_sym_match_token1] = ACTIONS(680), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(680), + [aux_sym_address_family_token1] = ACTIONS(680), + [aux_sym_batch_mode_token1] = ACTIONS(680), + [aux_sym_bind_address_token1] = ACTIONS(680), + [aux_sym_bind_interface_token1] = ACTIONS(680), + [aux_sym_canonical_domains_token1] = ACTIONS(680), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(680), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(680), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(680), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(680), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(680), + [aux_sym_certificate_file_token1] = ACTIONS(680), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(680), + [aux_sym_check_host_ip_token1] = ACTIONS(680), + [aux_sym_ciphers_token1] = ACTIONS(680), + [aux_sym_cipher_token1] = ACTIONS(682), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(680), + [aux_sym_compression_token1] = ACTIONS(680), + [aux_sym_connection_attempts_token1] = ACTIONS(680), + [aux_sym_connect_timeout_token1] = ACTIONS(680), + [aux_sym_control_master_token1] = ACTIONS(680), + [aux_sym_control_path_token1] = ACTIONS(680), + [aux_sym_control_persist_token1] = ACTIONS(680), + [aux_sym_dynamic_forward_token1] = ACTIONS(680), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(680), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(680), + [aux_sym_escape_char_token1] = ACTIONS(680), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(680), + [aux_sym_fingerprint_hash_token1] = ACTIONS(680), + [aux_sym_fork_after_authentication_token1] = ACTIONS(680), + [aux_sym_forward_agent_token1] = ACTIONS(680), + [aux_sym_forward_x11_token1] = ACTIONS(682), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(680), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(680), + [aux_sym_gateway_ports_token1] = ACTIONS(680), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(680), + [aux_sym_gssapi_authentication_token1] = ACTIONS(680), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(680), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(680), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(680), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(680), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(680), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(680), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(680), + [aux_sym_hash_known_hosts_token1] = ACTIONS(680), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(680), + [aux_sym_hostbased_authentication_token1] = ACTIONS(680), + [aux_sym_host_key_algorithms_token1] = ACTIONS(680), + [aux_sym_host_key_alias_token1] = ACTIONS(680), + [aux_sym_hostname_token1] = ACTIONS(680), + [aux_sym_identities_only_token1] = ACTIONS(680), + [aux_sym_identity_agent_token1] = ACTIONS(680), + [aux_sym_identity_file_token1] = ACTIONS(680), + [aux_sym_ignore_unknown_token1] = ACTIONS(680), + [aux_sym_include_token1] = ACTIONS(680), + [aux_sym_ip_qos_token1] = ACTIONS(680), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(680), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(680), + [aux_sym_kex_algorithms_token1] = ACTIONS(680), + [aux_sym_known_hosts_command_token1] = ACTIONS(680), + [aux_sym_local_command_token1] = ACTIONS(680), + [aux_sym_local_forward_token1] = ACTIONS(680), + [aux_sym_log_level_token1] = ACTIONS(680), + [aux_sym_log_verbose_token1] = ACTIONS(680), + [aux_sym_macs_token1] = ACTIONS(680), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(680), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(680), + [aux_sym_password_authentication_token1] = ACTIONS(680), + [aux_sym_permit_local_command_token1] = ACTIONS(680), + [aux_sym_permit_remote_open_token1] = ACTIONS(680), + [aux_sym_pkcs11_provider_token1] = ACTIONS(680), + [aux_sym_port_token1] = ACTIONS(680), + [aux_sym_preferred_authentications_token1] = ACTIONS(680), + [aux_sym_protocol_token1] = ACTIONS(680), + [aux_sym_proxy_command_token1] = ACTIONS(680), + [aux_sym_proxy_jump_token1] = ACTIONS(680), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(680), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(680), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(680), + [aux_sym_pubkey_authentication_token1] = ACTIONS(680), + [aux_sym_rekey_limit_token1] = ACTIONS(680), + [aux_sym_remote_command_token1] = ACTIONS(680), + [aux_sym_remote_forward_token1] = ACTIONS(680), + [aux_sym_request_tty_token1] = ACTIONS(680), + [aux_sym_required_rsa_size_token1] = ACTIONS(680), + [aux_sym_revoked_host_keys_token1] = ACTIONS(680), + [aux_sym_security_key_provider_token1] = ACTIONS(680), + [aux_sym_send_env_token1] = ACTIONS(680), + [aux_sym_server_alive_count_max_token1] = ACTIONS(680), + [aux_sym_server_alive_interval_token1] = ACTIONS(680), + [aux_sym_session_type_token1] = ACTIONS(680), + [aux_sym_set_env_token1] = ACTIONS(680), + [aux_sym_stdin_null_token1] = ACTIONS(680), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(680), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(680), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(680), + [aux_sym_syslog_facility_token1] = ACTIONS(680), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(680), + [aux_sym_keep_alive_token1] = ACTIONS(680), + [aux_sym_tunnel_token1] = ACTIONS(682), + [aux_sym_tunnel_device_token1] = ACTIONS(680), + [aux_sym_update_host_keys_token1] = ACTIONS(680), + [aux_sym_use_keychain_token1] = ACTIONS(680), + [aux_sym_use_roaming_token1] = ACTIONS(680), + [aux_sym_user_token1] = ACTIONS(682), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(680), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(680), + [aux_sym_visual_host_key_token1] = ACTIONS(680), + [aux_sym_xauth_location_token1] = ACTIONS(680), }, [24] = { - [ts_builtin_sym_end] = ACTIONS(681), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(683), - [anon_sym_DQUOTE] = ACTIONS(685), - [aux_sym_match_token1] = ACTIONS(681), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(681), - [aux_sym_address_family_token1] = ACTIONS(681), - [aux_sym_batch_mode_token1] = ACTIONS(681), - [aux_sym_bind_address_token1] = ACTIONS(681), - [aux_sym_bind_interface_token1] = ACTIONS(681), - [aux_sym_canonical_domains_token1] = ACTIONS(681), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(681), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(681), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(681), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(681), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(681), - [aux_sym_certificate_file_token1] = ACTIONS(681), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(681), - [aux_sym_check_host_ip_token1] = ACTIONS(681), - [aux_sym_ciphers_token1] = ACTIONS(681), - [aux_sym_cipher_token1] = ACTIONS(683), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(681), - [aux_sym_compression_token1] = ACTIONS(681), - [aux_sym_connection_attempts_token1] = ACTIONS(681), - [aux_sym_connect_timeout_token1] = ACTIONS(681), - [aux_sym_control_master_token1] = ACTIONS(681), - [aux_sym_control_path_token1] = ACTIONS(681), - [aux_sym_control_persist_token1] = ACTIONS(681), - [aux_sym_dynamic_forward_token1] = ACTIONS(681), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(681), - [aux_sym_escape_char_token1] = ACTIONS(681), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(681), - [aux_sym_fingerprint_hash_token1] = ACTIONS(681), - [aux_sym_fork_after_authentication_token1] = ACTIONS(681), - [aux_sym_forward_agent_token1] = ACTIONS(681), - [aux_sym_forward_x11_token1] = ACTIONS(683), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(681), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(681), - [aux_sym_gateway_ports_token1] = ACTIONS(681), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(681), - [aux_sym_gssapi_authentication_token1] = ACTIONS(681), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(681), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(681), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(681), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(681), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(681), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(681), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(681), - [aux_sym_hash_known_hosts_token1] = ACTIONS(681), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(681), - [aux_sym_hostbased_authentication_token1] = ACTIONS(681), - [aux_sym_host_key_algorithms_token1] = ACTIONS(681), - [aux_sym_host_key_alias_token1] = ACTIONS(681), - [aux_sym_hostname_token1] = ACTIONS(681), - [aux_sym_identities_only_token1] = ACTIONS(681), - [aux_sym_identity_agent_token1] = ACTIONS(681), - [aux_sym_identity_file_token1] = ACTIONS(681), - [aux_sym_ignore_unknown_token1] = ACTIONS(681), - [aux_sym_include_token1] = ACTIONS(681), - [aux_sym_ip_qos_token1] = ACTIONS(681), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(681), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(681), - [aux_sym_kex_algorithms_token1] = ACTIONS(681), - [aux_sym_known_hosts_command_token1] = ACTIONS(681), - [aux_sym_local_command_token1] = ACTIONS(681), - [aux_sym_local_forward_token1] = ACTIONS(681), - [aux_sym_log_level_token1] = ACTIONS(681), - [aux_sym_log_verbose_token1] = ACTIONS(681), - [aux_sym_macs_token1] = ACTIONS(681), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(681), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(681), - [aux_sym_password_authentication_token1] = ACTIONS(681), - [aux_sym_permit_local_command_token1] = ACTIONS(681), - [aux_sym_permit_remote_open_token1] = ACTIONS(681), - [aux_sym_pkcs11_provider_token1] = ACTIONS(681), - [aux_sym_port_token1] = ACTIONS(681), - [aux_sym_preferred_authentications_token1] = ACTIONS(681), - [aux_sym_protocol_token1] = ACTIONS(681), - [aux_sym_proxy_command_token1] = ACTIONS(681), - [aux_sym_proxy_jump_token1] = ACTIONS(681), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(681), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(681), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(681), - [aux_sym_pubkey_authentication_token1] = ACTIONS(681), - [aux_sym_rekey_limit_token1] = ACTIONS(681), - [aux_sym_remote_command_token1] = ACTIONS(681), - [aux_sym_remote_forward_token1] = ACTIONS(681), - [aux_sym_request_tty_token1] = ACTIONS(681), - [aux_sym_required_rsa_size_token1] = ACTIONS(681), - [aux_sym_revoked_host_keys_token1] = ACTIONS(681), - [aux_sym_security_key_provider_token1] = ACTIONS(681), - [aux_sym_send_env_token1] = ACTIONS(681), - [aux_sym_server_alive_count_max_token1] = ACTIONS(681), - [aux_sym_server_alive_interval_token1] = ACTIONS(681), - [aux_sym_session_type_token1] = ACTIONS(681), - [aux_sym_set_env_token1] = ACTIONS(681), - [aux_sym_stdin_null_token1] = ACTIONS(681), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(681), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(681), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(681), - [aux_sym_syslog_facility_token1] = ACTIONS(681), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(681), - [aux_sym_keep_alive_token1] = ACTIONS(681), - [aux_sym_tunnel_token1] = ACTIONS(683), - [aux_sym_tunnel_device_token1] = ACTIONS(681), - [aux_sym_update_host_keys_token1] = ACTIONS(681), - [aux_sym_use_keychain_token1] = ACTIONS(681), - [aux_sym_use_roaming_token1] = ACTIONS(681), - [aux_sym_user_token1] = ACTIONS(683), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(681), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(681), - [aux_sym_visual_host_key_token1] = ACTIONS(681), - [aux_sym_xauth_location_token1] = ACTIONS(681), + [ts_builtin_sym_end] = ACTIONS(686), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(688), + [anon_sym_DQUOTE] = ACTIONS(690), + [aux_sym_match_token1] = ACTIONS(686), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(686), + [aux_sym_address_family_token1] = ACTIONS(686), + [aux_sym_batch_mode_token1] = ACTIONS(686), + [aux_sym_bind_address_token1] = ACTIONS(686), + [aux_sym_bind_interface_token1] = ACTIONS(686), + [aux_sym_canonical_domains_token1] = ACTIONS(686), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(686), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(686), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(686), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(686), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(686), + [aux_sym_certificate_file_token1] = ACTIONS(686), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(686), + [aux_sym_check_host_ip_token1] = ACTIONS(686), + [aux_sym_ciphers_token1] = ACTIONS(686), + [aux_sym_cipher_token1] = ACTIONS(688), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(686), + [aux_sym_compression_token1] = ACTIONS(686), + [aux_sym_connection_attempts_token1] = ACTIONS(686), + [aux_sym_connect_timeout_token1] = ACTIONS(686), + [aux_sym_control_master_token1] = ACTIONS(686), + [aux_sym_control_path_token1] = ACTIONS(686), + [aux_sym_control_persist_token1] = ACTIONS(686), + [aux_sym_dynamic_forward_token1] = ACTIONS(686), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(686), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(686), + [aux_sym_escape_char_token1] = ACTIONS(686), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(686), + [aux_sym_fingerprint_hash_token1] = ACTIONS(686), + [aux_sym_fork_after_authentication_token1] = ACTIONS(686), + [aux_sym_forward_agent_token1] = ACTIONS(686), + [aux_sym_forward_x11_token1] = ACTIONS(688), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(686), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(686), + [aux_sym_gateway_ports_token1] = ACTIONS(686), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(686), + [aux_sym_gssapi_authentication_token1] = ACTIONS(686), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(686), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(686), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(686), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(686), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(686), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(686), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(686), + [aux_sym_hash_known_hosts_token1] = ACTIONS(686), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(686), + [aux_sym_hostbased_authentication_token1] = ACTIONS(686), + [aux_sym_host_key_algorithms_token1] = ACTIONS(686), + [aux_sym_host_key_alias_token1] = ACTIONS(686), + [aux_sym_hostname_token1] = ACTIONS(686), + [aux_sym_identities_only_token1] = ACTIONS(686), + [aux_sym_identity_agent_token1] = ACTIONS(686), + [aux_sym_identity_file_token1] = ACTIONS(686), + [aux_sym_ignore_unknown_token1] = ACTIONS(686), + [aux_sym_include_token1] = ACTIONS(686), + [aux_sym_ip_qos_token1] = ACTIONS(686), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(686), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(686), + [aux_sym_kex_algorithms_token1] = ACTIONS(686), + [aux_sym_known_hosts_command_token1] = ACTIONS(686), + [aux_sym_local_command_token1] = ACTIONS(686), + [aux_sym_local_forward_token1] = ACTIONS(686), + [aux_sym_log_level_token1] = ACTIONS(686), + [aux_sym_log_verbose_token1] = ACTIONS(686), + [aux_sym_macs_token1] = ACTIONS(686), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(686), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(686), + [aux_sym_password_authentication_token1] = ACTIONS(686), + [aux_sym_permit_local_command_token1] = ACTIONS(686), + [aux_sym_permit_remote_open_token1] = ACTIONS(686), + [aux_sym_pkcs11_provider_token1] = ACTIONS(686), + [aux_sym_port_token1] = ACTIONS(686), + [aux_sym_preferred_authentications_token1] = ACTIONS(686), + [aux_sym_protocol_token1] = ACTIONS(686), + [aux_sym_proxy_command_token1] = ACTIONS(686), + [aux_sym_proxy_jump_token1] = ACTIONS(686), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(686), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(686), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(686), + [aux_sym_pubkey_authentication_token1] = ACTIONS(686), + [aux_sym_rekey_limit_token1] = ACTIONS(686), + [aux_sym_remote_command_token1] = ACTIONS(686), + [aux_sym_remote_forward_token1] = ACTIONS(686), + [aux_sym_request_tty_token1] = ACTIONS(686), + [aux_sym_required_rsa_size_token1] = ACTIONS(686), + [aux_sym_revoked_host_keys_token1] = ACTIONS(686), + [aux_sym_security_key_provider_token1] = ACTIONS(686), + [aux_sym_send_env_token1] = ACTIONS(686), + [aux_sym_server_alive_count_max_token1] = ACTIONS(686), + [aux_sym_server_alive_interval_token1] = ACTIONS(686), + [aux_sym_session_type_token1] = ACTIONS(686), + [aux_sym_set_env_token1] = ACTIONS(686), + [aux_sym_stdin_null_token1] = ACTIONS(686), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(686), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(686), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(686), + [aux_sym_syslog_facility_token1] = ACTIONS(686), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(686), + [aux_sym_keep_alive_token1] = ACTIONS(686), + [aux_sym_tunnel_token1] = ACTIONS(688), + [aux_sym_tunnel_device_token1] = ACTIONS(686), + [aux_sym_update_host_keys_token1] = ACTIONS(686), + [aux_sym_use_keychain_token1] = ACTIONS(686), + [aux_sym_use_roaming_token1] = ACTIONS(686), + [aux_sym_user_token1] = ACTIONS(688), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(686), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(686), + [aux_sym_visual_host_key_token1] = ACTIONS(686), + [aux_sym_xauth_location_token1] = ACTIONS(686), }, [25] = { - [ts_builtin_sym_end] = ACTIONS(687), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(691), - [aux_sym_match_token1] = ACTIONS(687), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(687), - [aux_sym_address_family_token1] = ACTIONS(687), - [aux_sym_batch_mode_token1] = ACTIONS(687), - [aux_sym_bind_address_token1] = ACTIONS(687), - [aux_sym_bind_interface_token1] = ACTIONS(687), - [aux_sym_canonical_domains_token1] = ACTIONS(687), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(687), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(687), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(687), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(687), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(687), - [aux_sym_certificate_file_token1] = ACTIONS(687), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(687), - [aux_sym_check_host_ip_token1] = ACTIONS(687), - [aux_sym_ciphers_token1] = ACTIONS(687), - [aux_sym_cipher_token1] = ACTIONS(689), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(687), - [aux_sym_compression_token1] = ACTIONS(687), - [aux_sym_connection_attempts_token1] = ACTIONS(687), - [aux_sym_connect_timeout_token1] = ACTIONS(687), - [aux_sym_control_master_token1] = ACTIONS(687), - [aux_sym_control_path_token1] = ACTIONS(687), - [aux_sym_control_persist_token1] = ACTIONS(687), - [aux_sym_dynamic_forward_token1] = ACTIONS(687), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(687), - [aux_sym_escape_char_token1] = ACTIONS(687), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(687), - [aux_sym_fingerprint_hash_token1] = ACTIONS(687), - [aux_sym_fork_after_authentication_token1] = ACTIONS(687), - [aux_sym_forward_agent_token1] = ACTIONS(687), - [aux_sym_forward_x11_token1] = ACTIONS(689), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(687), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(687), - [aux_sym_gateway_ports_token1] = ACTIONS(687), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(687), - [aux_sym_gssapi_authentication_token1] = ACTIONS(687), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(687), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(687), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(687), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(687), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(687), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(687), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(687), - [aux_sym_hash_known_hosts_token1] = ACTIONS(687), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(687), - [aux_sym_hostbased_authentication_token1] = ACTIONS(687), - [aux_sym_host_key_algorithms_token1] = ACTIONS(687), - [aux_sym_host_key_alias_token1] = ACTIONS(687), - [aux_sym_hostname_token1] = ACTIONS(687), - [aux_sym_identities_only_token1] = ACTIONS(687), - [aux_sym_identity_agent_token1] = ACTIONS(687), - [aux_sym_identity_file_token1] = ACTIONS(687), - [aux_sym_ignore_unknown_token1] = ACTIONS(687), - [aux_sym_include_token1] = ACTIONS(687), - [aux_sym_ip_qos_token1] = ACTIONS(687), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(687), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(687), - [aux_sym_kex_algorithms_token1] = ACTIONS(687), - [aux_sym_known_hosts_command_token1] = ACTIONS(687), - [aux_sym_local_command_token1] = ACTIONS(687), - [aux_sym_local_forward_token1] = ACTIONS(687), - [aux_sym_log_level_token1] = ACTIONS(687), - [aux_sym_log_verbose_token1] = ACTIONS(687), - [aux_sym_macs_token1] = ACTIONS(687), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(687), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(687), - [aux_sym_password_authentication_token1] = ACTIONS(687), - [aux_sym_permit_local_command_token1] = ACTIONS(687), - [aux_sym_permit_remote_open_token1] = ACTIONS(687), - [aux_sym_pkcs11_provider_token1] = ACTIONS(687), - [aux_sym_port_token1] = ACTIONS(687), - [aux_sym_preferred_authentications_token1] = ACTIONS(687), - [aux_sym_protocol_token1] = ACTIONS(687), - [aux_sym_proxy_command_token1] = ACTIONS(687), - [aux_sym_proxy_jump_token1] = ACTIONS(687), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(687), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(687), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(687), - [aux_sym_pubkey_authentication_token1] = ACTIONS(687), - [aux_sym_rekey_limit_token1] = ACTIONS(687), - [aux_sym_remote_command_token1] = ACTIONS(687), - [aux_sym_remote_forward_token1] = ACTIONS(687), - [aux_sym_request_tty_token1] = ACTIONS(687), - [aux_sym_required_rsa_size_token1] = ACTIONS(687), - [aux_sym_revoked_host_keys_token1] = ACTIONS(687), - [aux_sym_security_key_provider_token1] = ACTIONS(687), - [aux_sym_send_env_token1] = ACTIONS(687), - [aux_sym_server_alive_count_max_token1] = ACTIONS(687), - [aux_sym_server_alive_interval_token1] = ACTIONS(687), - [aux_sym_session_type_token1] = ACTIONS(687), - [aux_sym_set_env_token1] = ACTIONS(687), - [aux_sym_stdin_null_token1] = ACTIONS(687), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(687), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(687), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(687), - [aux_sym_syslog_facility_token1] = ACTIONS(687), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(687), - [aux_sym_keep_alive_token1] = ACTIONS(687), - [aux_sym_tunnel_token1] = ACTIONS(689), - [aux_sym_tunnel_device_token1] = ACTIONS(687), - [aux_sym_update_host_keys_token1] = ACTIONS(687), - [aux_sym_use_keychain_token1] = ACTIONS(687), - [aux_sym_use_roaming_token1] = ACTIONS(687), - [aux_sym_user_token1] = ACTIONS(689), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(687), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(687), - [aux_sym_visual_host_key_token1] = ACTIONS(687), - [aux_sym_xauth_location_token1] = ACTIONS(687), + [ts_builtin_sym_end] = ACTIONS(692), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(696), + [aux_sym_match_token1] = ACTIONS(692), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(692), + [aux_sym_address_family_token1] = ACTIONS(692), + [aux_sym_batch_mode_token1] = ACTIONS(692), + [aux_sym_bind_address_token1] = ACTIONS(692), + [aux_sym_bind_interface_token1] = ACTIONS(692), + [aux_sym_canonical_domains_token1] = ACTIONS(692), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(692), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(692), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(692), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(692), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(692), + [aux_sym_certificate_file_token1] = ACTIONS(692), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(692), + [aux_sym_check_host_ip_token1] = ACTIONS(692), + [aux_sym_ciphers_token1] = ACTIONS(692), + [aux_sym_cipher_token1] = ACTIONS(694), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(692), + [aux_sym_compression_token1] = ACTIONS(692), + [aux_sym_connection_attempts_token1] = ACTIONS(692), + [aux_sym_connect_timeout_token1] = ACTIONS(692), + [aux_sym_control_master_token1] = ACTIONS(692), + [aux_sym_control_path_token1] = ACTIONS(692), + [aux_sym_control_persist_token1] = ACTIONS(692), + [aux_sym_dynamic_forward_token1] = ACTIONS(692), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(692), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(692), + [aux_sym_escape_char_token1] = ACTIONS(692), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(692), + [aux_sym_fingerprint_hash_token1] = ACTIONS(692), + [aux_sym_fork_after_authentication_token1] = ACTIONS(692), + [aux_sym_forward_agent_token1] = ACTIONS(692), + [aux_sym_forward_x11_token1] = ACTIONS(694), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(692), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(692), + [aux_sym_gateway_ports_token1] = ACTIONS(692), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(692), + [aux_sym_gssapi_authentication_token1] = ACTIONS(692), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(692), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(692), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(692), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(692), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(692), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(692), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(692), + [aux_sym_hash_known_hosts_token1] = ACTIONS(692), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(692), + [aux_sym_hostbased_authentication_token1] = ACTIONS(692), + [aux_sym_host_key_algorithms_token1] = ACTIONS(692), + [aux_sym_host_key_alias_token1] = ACTIONS(692), + [aux_sym_hostname_token1] = ACTIONS(692), + [aux_sym_identities_only_token1] = ACTIONS(692), + [aux_sym_identity_agent_token1] = ACTIONS(692), + [aux_sym_identity_file_token1] = ACTIONS(692), + [aux_sym_ignore_unknown_token1] = ACTIONS(692), + [aux_sym_include_token1] = ACTIONS(692), + [aux_sym_ip_qos_token1] = ACTIONS(692), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(692), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(692), + [aux_sym_kex_algorithms_token1] = ACTIONS(692), + [aux_sym_known_hosts_command_token1] = ACTIONS(692), + [aux_sym_local_command_token1] = ACTIONS(692), + [aux_sym_local_forward_token1] = ACTIONS(692), + [aux_sym_log_level_token1] = ACTIONS(692), + [aux_sym_log_verbose_token1] = ACTIONS(692), + [aux_sym_macs_token1] = ACTIONS(692), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(692), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(692), + [aux_sym_password_authentication_token1] = ACTIONS(692), + [aux_sym_permit_local_command_token1] = ACTIONS(692), + [aux_sym_permit_remote_open_token1] = ACTIONS(692), + [aux_sym_pkcs11_provider_token1] = ACTIONS(692), + [aux_sym_port_token1] = ACTIONS(692), + [aux_sym_preferred_authentications_token1] = ACTIONS(692), + [aux_sym_protocol_token1] = ACTIONS(692), + [aux_sym_proxy_command_token1] = ACTIONS(692), + [aux_sym_proxy_jump_token1] = ACTIONS(692), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(692), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(692), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(692), + [aux_sym_pubkey_authentication_token1] = ACTIONS(692), + [aux_sym_rekey_limit_token1] = ACTIONS(692), + [aux_sym_remote_command_token1] = ACTIONS(692), + [aux_sym_remote_forward_token1] = ACTIONS(692), + [aux_sym_request_tty_token1] = ACTIONS(692), + [aux_sym_required_rsa_size_token1] = ACTIONS(692), + [aux_sym_revoked_host_keys_token1] = ACTIONS(692), + [aux_sym_security_key_provider_token1] = ACTIONS(692), + [aux_sym_send_env_token1] = ACTIONS(692), + [aux_sym_server_alive_count_max_token1] = ACTIONS(692), + [aux_sym_server_alive_interval_token1] = ACTIONS(692), + [aux_sym_session_type_token1] = ACTIONS(692), + [aux_sym_set_env_token1] = ACTIONS(692), + [aux_sym_stdin_null_token1] = ACTIONS(692), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(692), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(692), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(692), + [aux_sym_syslog_facility_token1] = ACTIONS(692), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(692), + [aux_sym_keep_alive_token1] = ACTIONS(692), + [aux_sym_tunnel_token1] = ACTIONS(694), + [aux_sym_tunnel_device_token1] = ACTIONS(692), + [aux_sym_update_host_keys_token1] = ACTIONS(692), + [aux_sym_use_keychain_token1] = ACTIONS(692), + [aux_sym_use_roaming_token1] = ACTIONS(692), + [aux_sym_user_token1] = ACTIONS(694), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(692), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(692), + [aux_sym_visual_host_key_token1] = ACTIONS(692), + [aux_sym_xauth_location_token1] = ACTIONS(692), }, [26] = { - [ts_builtin_sym_end] = ACTIONS(693), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(697), - [aux_sym_match_token1] = ACTIONS(693), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(693), - [aux_sym_address_family_token1] = ACTIONS(693), - [aux_sym_batch_mode_token1] = ACTIONS(693), - [aux_sym_bind_address_token1] = ACTIONS(693), - [aux_sym_bind_interface_token1] = ACTIONS(693), - [aux_sym_canonical_domains_token1] = ACTIONS(693), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(693), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(693), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(693), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(693), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(693), - [aux_sym_certificate_file_token1] = ACTIONS(693), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(693), - [aux_sym_check_host_ip_token1] = ACTIONS(693), - [aux_sym_ciphers_token1] = ACTIONS(693), - [aux_sym_cipher_token1] = ACTIONS(695), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(693), - [aux_sym_compression_token1] = ACTIONS(693), - [aux_sym_connection_attempts_token1] = ACTIONS(693), - [aux_sym_connect_timeout_token1] = ACTIONS(693), - [aux_sym_control_master_token1] = ACTIONS(693), - [aux_sym_control_path_token1] = ACTIONS(693), - [aux_sym_control_persist_token1] = ACTIONS(693), - [aux_sym_dynamic_forward_token1] = ACTIONS(693), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(693), - [aux_sym_escape_char_token1] = ACTIONS(693), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(693), - [aux_sym_fingerprint_hash_token1] = ACTIONS(693), - [aux_sym_fork_after_authentication_token1] = ACTIONS(693), - [aux_sym_forward_agent_token1] = ACTIONS(693), - [aux_sym_forward_x11_token1] = ACTIONS(695), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(693), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(693), - [aux_sym_gateway_ports_token1] = ACTIONS(693), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(693), - [aux_sym_gssapi_authentication_token1] = ACTIONS(693), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(693), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(693), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(693), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(693), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(693), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(693), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(693), - [aux_sym_hash_known_hosts_token1] = ACTIONS(693), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(693), - [aux_sym_hostbased_authentication_token1] = ACTIONS(693), - [aux_sym_host_key_algorithms_token1] = ACTIONS(693), - [aux_sym_host_key_alias_token1] = ACTIONS(693), - [aux_sym_hostname_token1] = ACTIONS(693), - [aux_sym_identities_only_token1] = ACTIONS(693), - [aux_sym_identity_agent_token1] = ACTIONS(693), - [aux_sym_identity_file_token1] = ACTIONS(693), - [aux_sym_ignore_unknown_token1] = ACTIONS(693), - [aux_sym_include_token1] = ACTIONS(693), - [aux_sym_ip_qos_token1] = ACTIONS(693), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(693), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(693), - [aux_sym_kex_algorithms_token1] = ACTIONS(693), - [aux_sym_known_hosts_command_token1] = ACTIONS(693), - [aux_sym_local_command_token1] = ACTIONS(693), - [aux_sym_local_forward_token1] = ACTIONS(693), - [aux_sym_log_level_token1] = ACTIONS(693), - [aux_sym_log_verbose_token1] = ACTIONS(693), - [aux_sym_macs_token1] = ACTIONS(693), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(693), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(693), - [aux_sym_password_authentication_token1] = ACTIONS(693), - [aux_sym_permit_local_command_token1] = ACTIONS(693), - [aux_sym_permit_remote_open_token1] = ACTIONS(693), - [aux_sym_pkcs11_provider_token1] = ACTIONS(693), - [aux_sym_port_token1] = ACTIONS(693), - [aux_sym_preferred_authentications_token1] = ACTIONS(693), - [aux_sym_protocol_token1] = ACTIONS(693), - [aux_sym_proxy_command_token1] = ACTIONS(693), - [aux_sym_proxy_jump_token1] = ACTIONS(693), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(693), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(693), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(693), - [aux_sym_pubkey_authentication_token1] = ACTIONS(693), - [aux_sym_rekey_limit_token1] = ACTIONS(693), - [aux_sym_remote_command_token1] = ACTIONS(693), - [aux_sym_remote_forward_token1] = ACTIONS(693), - [aux_sym_request_tty_token1] = ACTIONS(693), - [aux_sym_required_rsa_size_token1] = ACTIONS(693), - [aux_sym_revoked_host_keys_token1] = ACTIONS(693), - [aux_sym_security_key_provider_token1] = ACTIONS(693), - [aux_sym_send_env_token1] = ACTIONS(693), - [aux_sym_server_alive_count_max_token1] = ACTIONS(693), - [aux_sym_server_alive_interval_token1] = ACTIONS(693), - [aux_sym_session_type_token1] = ACTIONS(693), - [aux_sym_set_env_token1] = ACTIONS(693), - [aux_sym_stdin_null_token1] = ACTIONS(693), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(693), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(693), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(693), - [aux_sym_syslog_facility_token1] = ACTIONS(693), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(693), - [aux_sym_keep_alive_token1] = ACTIONS(693), - [aux_sym_tunnel_token1] = ACTIONS(695), - [aux_sym_tunnel_device_token1] = ACTIONS(693), - [aux_sym_update_host_keys_token1] = ACTIONS(693), - [aux_sym_use_keychain_token1] = ACTIONS(693), - [aux_sym_use_roaming_token1] = ACTIONS(693), - [aux_sym_user_token1] = ACTIONS(695), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(693), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(693), - [aux_sym_visual_host_key_token1] = ACTIONS(693), - [aux_sym_xauth_location_token1] = ACTIONS(693), + [ts_builtin_sym_end] = ACTIONS(698), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(702), + [aux_sym_match_token1] = ACTIONS(698), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(698), + [aux_sym_address_family_token1] = ACTIONS(698), + [aux_sym_batch_mode_token1] = ACTIONS(698), + [aux_sym_bind_address_token1] = ACTIONS(698), + [aux_sym_bind_interface_token1] = ACTIONS(698), + [aux_sym_canonical_domains_token1] = ACTIONS(698), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(698), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(698), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(698), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(698), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(698), + [aux_sym_certificate_file_token1] = ACTIONS(698), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(698), + [aux_sym_check_host_ip_token1] = ACTIONS(698), + [aux_sym_ciphers_token1] = ACTIONS(698), + [aux_sym_cipher_token1] = ACTIONS(700), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(698), + [aux_sym_compression_token1] = ACTIONS(698), + [aux_sym_connection_attempts_token1] = ACTIONS(698), + [aux_sym_connect_timeout_token1] = ACTIONS(698), + [aux_sym_control_master_token1] = ACTIONS(698), + [aux_sym_control_path_token1] = ACTIONS(698), + [aux_sym_control_persist_token1] = ACTIONS(698), + [aux_sym_dynamic_forward_token1] = ACTIONS(698), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(698), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(698), + [aux_sym_escape_char_token1] = ACTIONS(698), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(698), + [aux_sym_fingerprint_hash_token1] = ACTIONS(698), + [aux_sym_fork_after_authentication_token1] = ACTIONS(698), + [aux_sym_forward_agent_token1] = ACTIONS(698), + [aux_sym_forward_x11_token1] = ACTIONS(700), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(698), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(698), + [aux_sym_gateway_ports_token1] = ACTIONS(698), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(698), + [aux_sym_gssapi_authentication_token1] = ACTIONS(698), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(698), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(698), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(698), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(698), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(698), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(698), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(698), + [aux_sym_hash_known_hosts_token1] = ACTIONS(698), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(698), + [aux_sym_hostbased_authentication_token1] = ACTIONS(698), + [aux_sym_host_key_algorithms_token1] = ACTIONS(698), + [aux_sym_host_key_alias_token1] = ACTIONS(698), + [aux_sym_hostname_token1] = ACTIONS(698), + [aux_sym_identities_only_token1] = ACTIONS(698), + [aux_sym_identity_agent_token1] = ACTIONS(698), + [aux_sym_identity_file_token1] = ACTIONS(698), + [aux_sym_ignore_unknown_token1] = ACTIONS(698), + [aux_sym_include_token1] = ACTIONS(698), + [aux_sym_ip_qos_token1] = ACTIONS(698), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(698), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(698), + [aux_sym_kex_algorithms_token1] = ACTIONS(698), + [aux_sym_known_hosts_command_token1] = ACTIONS(698), + [aux_sym_local_command_token1] = ACTIONS(698), + [aux_sym_local_forward_token1] = ACTIONS(698), + [aux_sym_log_level_token1] = ACTIONS(698), + [aux_sym_log_verbose_token1] = ACTIONS(698), + [aux_sym_macs_token1] = ACTIONS(698), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(698), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(698), + [aux_sym_password_authentication_token1] = ACTIONS(698), + [aux_sym_permit_local_command_token1] = ACTIONS(698), + [aux_sym_permit_remote_open_token1] = ACTIONS(698), + [aux_sym_pkcs11_provider_token1] = ACTIONS(698), + [aux_sym_port_token1] = ACTIONS(698), + [aux_sym_preferred_authentications_token1] = ACTIONS(698), + [aux_sym_protocol_token1] = ACTIONS(698), + [aux_sym_proxy_command_token1] = ACTIONS(698), + [aux_sym_proxy_jump_token1] = ACTIONS(698), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(698), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(698), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(698), + [aux_sym_pubkey_authentication_token1] = ACTIONS(698), + [aux_sym_rekey_limit_token1] = ACTIONS(698), + [aux_sym_remote_command_token1] = ACTIONS(698), + [aux_sym_remote_forward_token1] = ACTIONS(698), + [aux_sym_request_tty_token1] = ACTIONS(698), + [aux_sym_required_rsa_size_token1] = ACTIONS(698), + [aux_sym_revoked_host_keys_token1] = ACTIONS(698), + [aux_sym_security_key_provider_token1] = ACTIONS(698), + [aux_sym_send_env_token1] = ACTIONS(698), + [aux_sym_server_alive_count_max_token1] = ACTIONS(698), + [aux_sym_server_alive_interval_token1] = ACTIONS(698), + [aux_sym_session_type_token1] = ACTIONS(698), + [aux_sym_set_env_token1] = ACTIONS(698), + [aux_sym_stdin_null_token1] = ACTIONS(698), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(698), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(698), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(698), + [aux_sym_syslog_facility_token1] = ACTIONS(698), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(698), + [aux_sym_keep_alive_token1] = ACTIONS(698), + [aux_sym_tunnel_token1] = ACTIONS(700), + [aux_sym_tunnel_device_token1] = ACTIONS(698), + [aux_sym_update_host_keys_token1] = ACTIONS(698), + [aux_sym_use_keychain_token1] = ACTIONS(698), + [aux_sym_use_roaming_token1] = ACTIONS(698), + [aux_sym_user_token1] = ACTIONS(700), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(698), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(698), + [aux_sym_visual_host_key_token1] = ACTIONS(698), + [aux_sym_xauth_location_token1] = ACTIONS(698), }, [27] = { - [ts_builtin_sym_end] = ACTIONS(699), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(703), - [aux_sym_match_token1] = ACTIONS(699), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(699), - [aux_sym_address_family_token1] = ACTIONS(699), - [aux_sym_batch_mode_token1] = ACTIONS(699), - [aux_sym_bind_address_token1] = ACTIONS(699), - [aux_sym_bind_interface_token1] = ACTIONS(699), - [aux_sym_canonical_domains_token1] = ACTIONS(699), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(699), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(699), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(699), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(699), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(699), - [aux_sym_certificate_file_token1] = ACTIONS(699), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(699), - [aux_sym_check_host_ip_token1] = ACTIONS(699), - [aux_sym_ciphers_token1] = ACTIONS(699), - [aux_sym_cipher_token1] = ACTIONS(701), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(699), - [aux_sym_compression_token1] = ACTIONS(699), - [aux_sym_connection_attempts_token1] = ACTIONS(699), - [aux_sym_connect_timeout_token1] = ACTIONS(699), - [aux_sym_control_master_token1] = ACTIONS(699), - [aux_sym_control_path_token1] = ACTIONS(699), - [aux_sym_control_persist_token1] = ACTIONS(699), - [aux_sym_dynamic_forward_token1] = ACTIONS(699), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(699), - [aux_sym_escape_char_token1] = ACTIONS(699), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(699), - [aux_sym_fingerprint_hash_token1] = ACTIONS(699), - [aux_sym_fork_after_authentication_token1] = ACTIONS(699), - [aux_sym_forward_agent_token1] = ACTIONS(699), - [aux_sym_forward_x11_token1] = ACTIONS(701), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(699), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(699), - [aux_sym_gateway_ports_token1] = ACTIONS(699), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(699), - [aux_sym_gssapi_authentication_token1] = ACTIONS(699), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(699), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(699), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(699), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(699), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(699), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(699), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(699), - [aux_sym_hash_known_hosts_token1] = ACTIONS(699), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(699), - [aux_sym_hostbased_authentication_token1] = ACTIONS(699), - [aux_sym_host_key_algorithms_token1] = ACTIONS(699), - [aux_sym_host_key_alias_token1] = ACTIONS(699), - [aux_sym_hostname_token1] = ACTIONS(699), - [aux_sym_identities_only_token1] = ACTIONS(699), - [aux_sym_identity_agent_token1] = ACTIONS(699), - [aux_sym_identity_file_token1] = ACTIONS(699), - [aux_sym_ignore_unknown_token1] = ACTIONS(699), - [aux_sym_include_token1] = ACTIONS(699), - [aux_sym_ip_qos_token1] = ACTIONS(699), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(699), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(699), - [aux_sym_kex_algorithms_token1] = ACTIONS(699), - [aux_sym_known_hosts_command_token1] = ACTIONS(699), - [aux_sym_local_command_token1] = ACTIONS(699), - [aux_sym_local_forward_token1] = ACTIONS(699), - [aux_sym_log_level_token1] = ACTIONS(699), - [aux_sym_log_verbose_token1] = ACTIONS(699), - [aux_sym_macs_token1] = ACTIONS(699), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(699), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(699), - [aux_sym_password_authentication_token1] = ACTIONS(699), - [aux_sym_permit_local_command_token1] = ACTIONS(699), - [aux_sym_permit_remote_open_token1] = ACTIONS(699), - [aux_sym_pkcs11_provider_token1] = ACTIONS(699), - [aux_sym_port_token1] = ACTIONS(699), - [aux_sym_preferred_authentications_token1] = ACTIONS(699), - [aux_sym_protocol_token1] = ACTIONS(699), - [aux_sym_proxy_command_token1] = ACTIONS(699), - [aux_sym_proxy_jump_token1] = ACTIONS(699), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(699), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(699), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(699), - [aux_sym_pubkey_authentication_token1] = ACTIONS(699), - [aux_sym_rekey_limit_token1] = ACTIONS(699), - [aux_sym_remote_command_token1] = ACTIONS(699), - [aux_sym_remote_forward_token1] = ACTIONS(699), - [aux_sym_request_tty_token1] = ACTIONS(699), - [aux_sym_required_rsa_size_token1] = ACTIONS(699), - [aux_sym_revoked_host_keys_token1] = ACTIONS(699), - [aux_sym_security_key_provider_token1] = ACTIONS(699), - [aux_sym_send_env_token1] = ACTIONS(699), - [aux_sym_server_alive_count_max_token1] = ACTIONS(699), - [aux_sym_server_alive_interval_token1] = ACTIONS(699), - [aux_sym_session_type_token1] = ACTIONS(699), - [aux_sym_set_env_token1] = ACTIONS(699), - [aux_sym_stdin_null_token1] = ACTIONS(699), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(699), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(699), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(699), - [aux_sym_syslog_facility_token1] = ACTIONS(699), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(699), - [aux_sym_keep_alive_token1] = ACTIONS(699), - [aux_sym_tunnel_token1] = ACTIONS(701), - [aux_sym_tunnel_device_token1] = ACTIONS(699), - [aux_sym_update_host_keys_token1] = ACTIONS(699), - [aux_sym_use_keychain_token1] = ACTIONS(699), - [aux_sym_use_roaming_token1] = ACTIONS(699), - [aux_sym_user_token1] = ACTIONS(701), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(699), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(699), - [aux_sym_visual_host_key_token1] = ACTIONS(699), - [aux_sym_xauth_location_token1] = ACTIONS(699), + [ts_builtin_sym_end] = ACTIONS(704), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(706), + [anon_sym_DQUOTE] = ACTIONS(708), + [aux_sym_match_token1] = ACTIONS(704), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(704), + [aux_sym_address_family_token1] = ACTIONS(704), + [aux_sym_batch_mode_token1] = ACTIONS(704), + [aux_sym_bind_address_token1] = ACTIONS(704), + [aux_sym_bind_interface_token1] = ACTIONS(704), + [aux_sym_canonical_domains_token1] = ACTIONS(704), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(704), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(704), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(704), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(704), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(704), + [aux_sym_certificate_file_token1] = ACTIONS(704), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(704), + [aux_sym_check_host_ip_token1] = ACTIONS(704), + [aux_sym_ciphers_token1] = ACTIONS(704), + [aux_sym_cipher_token1] = ACTIONS(706), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(704), + [aux_sym_compression_token1] = ACTIONS(704), + [aux_sym_connection_attempts_token1] = ACTIONS(704), + [aux_sym_connect_timeout_token1] = ACTIONS(704), + [aux_sym_control_master_token1] = ACTIONS(704), + [aux_sym_control_path_token1] = ACTIONS(704), + [aux_sym_control_persist_token1] = ACTIONS(704), + [aux_sym_dynamic_forward_token1] = ACTIONS(704), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(704), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(704), + [aux_sym_escape_char_token1] = ACTIONS(704), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(704), + [aux_sym_fingerprint_hash_token1] = ACTIONS(704), + [aux_sym_fork_after_authentication_token1] = ACTIONS(704), + [aux_sym_forward_agent_token1] = ACTIONS(704), + [aux_sym_forward_x11_token1] = ACTIONS(706), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(704), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(704), + [aux_sym_gateway_ports_token1] = ACTIONS(704), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(704), + [aux_sym_gssapi_authentication_token1] = ACTIONS(704), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(704), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(704), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(704), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(704), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(704), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(704), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(704), + [aux_sym_hash_known_hosts_token1] = ACTIONS(704), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(704), + [aux_sym_hostbased_authentication_token1] = ACTIONS(704), + [aux_sym_host_key_algorithms_token1] = ACTIONS(704), + [aux_sym_host_key_alias_token1] = ACTIONS(704), + [aux_sym_hostname_token1] = ACTIONS(704), + [aux_sym_identities_only_token1] = ACTIONS(704), + [aux_sym_identity_agent_token1] = ACTIONS(704), + [aux_sym_identity_file_token1] = ACTIONS(704), + [aux_sym_ignore_unknown_token1] = ACTIONS(704), + [aux_sym_include_token1] = ACTIONS(704), + [aux_sym_ip_qos_token1] = ACTIONS(704), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(704), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(704), + [aux_sym_kex_algorithms_token1] = ACTIONS(704), + [aux_sym_known_hosts_command_token1] = ACTIONS(704), + [aux_sym_local_command_token1] = ACTIONS(704), + [aux_sym_local_forward_token1] = ACTIONS(704), + [aux_sym_log_level_token1] = ACTIONS(704), + [aux_sym_log_verbose_token1] = ACTIONS(704), + [aux_sym_macs_token1] = ACTIONS(704), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(704), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(704), + [aux_sym_password_authentication_token1] = ACTIONS(704), + [aux_sym_permit_local_command_token1] = ACTIONS(704), + [aux_sym_permit_remote_open_token1] = ACTIONS(704), + [aux_sym_pkcs11_provider_token1] = ACTIONS(704), + [aux_sym_port_token1] = ACTIONS(704), + [aux_sym_preferred_authentications_token1] = ACTIONS(704), + [aux_sym_protocol_token1] = ACTIONS(704), + [aux_sym_proxy_command_token1] = ACTIONS(704), + [aux_sym_proxy_jump_token1] = ACTIONS(704), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(704), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(704), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(704), + [aux_sym_pubkey_authentication_token1] = ACTIONS(704), + [aux_sym_rekey_limit_token1] = ACTIONS(704), + [aux_sym_remote_command_token1] = ACTIONS(704), + [aux_sym_remote_forward_token1] = ACTIONS(704), + [aux_sym_request_tty_token1] = ACTIONS(704), + [aux_sym_required_rsa_size_token1] = ACTIONS(704), + [aux_sym_revoked_host_keys_token1] = ACTIONS(704), + [aux_sym_security_key_provider_token1] = ACTIONS(704), + [aux_sym_send_env_token1] = ACTIONS(704), + [aux_sym_server_alive_count_max_token1] = ACTIONS(704), + [aux_sym_server_alive_interval_token1] = ACTIONS(704), + [aux_sym_session_type_token1] = ACTIONS(704), + [aux_sym_set_env_token1] = ACTIONS(704), + [aux_sym_stdin_null_token1] = ACTIONS(704), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(704), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(704), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(704), + [aux_sym_syslog_facility_token1] = ACTIONS(704), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(704), + [aux_sym_keep_alive_token1] = ACTIONS(704), + [aux_sym_tunnel_token1] = ACTIONS(706), + [aux_sym_tunnel_device_token1] = ACTIONS(704), + [aux_sym_update_host_keys_token1] = ACTIONS(704), + [aux_sym_use_keychain_token1] = ACTIONS(704), + [aux_sym_use_roaming_token1] = ACTIONS(704), + [aux_sym_user_token1] = ACTIONS(706), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(704), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(704), + [aux_sym_visual_host_key_token1] = ACTIONS(704), + [aux_sym_xauth_location_token1] = ACTIONS(704), }, [28] = { - [ts_builtin_sym_end] = ACTIONS(705), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(709), - [aux_sym_match_token1] = ACTIONS(705), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(705), - [aux_sym_address_family_token1] = ACTIONS(705), - [aux_sym_batch_mode_token1] = ACTIONS(705), - [aux_sym_bind_address_token1] = ACTIONS(705), - [aux_sym_bind_interface_token1] = ACTIONS(705), - [aux_sym_canonical_domains_token1] = ACTIONS(705), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(705), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(705), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(705), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(705), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(705), - [aux_sym_certificate_file_token1] = ACTIONS(705), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(705), - [aux_sym_check_host_ip_token1] = ACTIONS(705), - [aux_sym_ciphers_token1] = ACTIONS(705), - [aux_sym_cipher_token1] = ACTIONS(707), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(705), - [aux_sym_compression_token1] = ACTIONS(705), - [aux_sym_connection_attempts_token1] = ACTIONS(705), - [aux_sym_connect_timeout_token1] = ACTIONS(705), - [aux_sym_control_master_token1] = ACTIONS(705), - [aux_sym_control_path_token1] = ACTIONS(705), - [aux_sym_control_persist_token1] = ACTIONS(705), - [aux_sym_dynamic_forward_token1] = ACTIONS(705), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(705), - [aux_sym_escape_char_token1] = ACTIONS(705), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(705), - [aux_sym_fingerprint_hash_token1] = ACTIONS(705), - [aux_sym_fork_after_authentication_token1] = ACTIONS(705), - [aux_sym_forward_agent_token1] = ACTIONS(705), - [aux_sym_forward_x11_token1] = ACTIONS(707), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(705), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(705), - [aux_sym_gateway_ports_token1] = ACTIONS(705), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(705), - [aux_sym_gssapi_authentication_token1] = ACTIONS(705), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(705), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(705), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(705), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(705), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(705), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(705), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(705), - [aux_sym_hash_known_hosts_token1] = ACTIONS(705), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(705), - [aux_sym_hostbased_authentication_token1] = ACTIONS(705), - [aux_sym_host_key_algorithms_token1] = ACTIONS(705), - [aux_sym_host_key_alias_token1] = ACTIONS(705), - [aux_sym_hostname_token1] = ACTIONS(705), - [aux_sym_identities_only_token1] = ACTIONS(705), - [aux_sym_identity_agent_token1] = ACTIONS(705), - [aux_sym_identity_file_token1] = ACTIONS(705), - [aux_sym_ignore_unknown_token1] = ACTIONS(705), - [aux_sym_include_token1] = ACTIONS(705), - [aux_sym_ip_qos_token1] = ACTIONS(705), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(705), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(705), - [aux_sym_kex_algorithms_token1] = ACTIONS(705), - [aux_sym_known_hosts_command_token1] = ACTIONS(705), - [aux_sym_local_command_token1] = ACTIONS(705), - [aux_sym_local_forward_token1] = ACTIONS(705), - [aux_sym_log_level_token1] = ACTIONS(705), - [aux_sym_log_verbose_token1] = ACTIONS(705), - [aux_sym_macs_token1] = ACTIONS(705), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(705), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(705), - [aux_sym_password_authentication_token1] = ACTIONS(705), - [aux_sym_permit_local_command_token1] = ACTIONS(705), - [aux_sym_permit_remote_open_token1] = ACTIONS(705), - [aux_sym_pkcs11_provider_token1] = ACTIONS(705), - [aux_sym_port_token1] = ACTIONS(705), - [aux_sym_preferred_authentications_token1] = ACTIONS(705), - [aux_sym_protocol_token1] = ACTIONS(705), - [aux_sym_proxy_command_token1] = ACTIONS(705), - [aux_sym_proxy_jump_token1] = ACTIONS(705), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(705), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(705), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(705), - [aux_sym_pubkey_authentication_token1] = ACTIONS(705), - [aux_sym_rekey_limit_token1] = ACTIONS(705), - [aux_sym_remote_command_token1] = ACTIONS(705), - [aux_sym_remote_forward_token1] = ACTIONS(705), - [aux_sym_request_tty_token1] = ACTIONS(705), - [aux_sym_required_rsa_size_token1] = ACTIONS(705), - [aux_sym_revoked_host_keys_token1] = ACTIONS(705), - [aux_sym_security_key_provider_token1] = ACTIONS(705), - [aux_sym_send_env_token1] = ACTIONS(705), - [aux_sym_server_alive_count_max_token1] = ACTIONS(705), - [aux_sym_server_alive_interval_token1] = ACTIONS(705), - [aux_sym_session_type_token1] = ACTIONS(705), - [aux_sym_set_env_token1] = ACTIONS(705), - [aux_sym_stdin_null_token1] = ACTIONS(705), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(705), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(705), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(705), - [aux_sym_syslog_facility_token1] = ACTIONS(705), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(705), - [aux_sym_keep_alive_token1] = ACTIONS(705), - [aux_sym_tunnel_token1] = ACTIONS(707), - [aux_sym_tunnel_device_token1] = ACTIONS(705), - [aux_sym_update_host_keys_token1] = ACTIONS(705), - [aux_sym_use_keychain_token1] = ACTIONS(705), - [aux_sym_use_roaming_token1] = ACTIONS(705), - [aux_sym_user_token1] = ACTIONS(707), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(705), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(705), - [aux_sym_visual_host_key_token1] = ACTIONS(705), - [aux_sym_xauth_location_token1] = ACTIONS(705), + [ts_builtin_sym_end] = ACTIONS(710), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(712), + [anon_sym_DQUOTE] = ACTIONS(714), + [aux_sym_match_token1] = ACTIONS(710), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(710), + [aux_sym_address_family_token1] = ACTIONS(710), + [aux_sym_batch_mode_token1] = ACTIONS(710), + [aux_sym_bind_address_token1] = ACTIONS(710), + [aux_sym_bind_interface_token1] = ACTIONS(710), + [aux_sym_canonical_domains_token1] = ACTIONS(710), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(710), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(710), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(710), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(710), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(710), + [aux_sym_certificate_file_token1] = ACTIONS(710), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(710), + [aux_sym_check_host_ip_token1] = ACTIONS(710), + [aux_sym_ciphers_token1] = ACTIONS(710), + [aux_sym_cipher_token1] = ACTIONS(712), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(710), + [aux_sym_compression_token1] = ACTIONS(710), + [aux_sym_connection_attempts_token1] = ACTIONS(710), + [aux_sym_connect_timeout_token1] = ACTIONS(710), + [aux_sym_control_master_token1] = ACTIONS(710), + [aux_sym_control_path_token1] = ACTIONS(710), + [aux_sym_control_persist_token1] = ACTIONS(710), + [aux_sym_dynamic_forward_token1] = ACTIONS(710), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(710), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(710), + [aux_sym_escape_char_token1] = ACTIONS(710), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(710), + [aux_sym_fingerprint_hash_token1] = ACTIONS(710), + [aux_sym_fork_after_authentication_token1] = ACTIONS(710), + [aux_sym_forward_agent_token1] = ACTIONS(710), + [aux_sym_forward_x11_token1] = ACTIONS(712), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(710), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(710), + [aux_sym_gateway_ports_token1] = ACTIONS(710), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(710), + [aux_sym_gssapi_authentication_token1] = ACTIONS(710), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(710), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(710), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(710), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(710), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(710), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(710), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(710), + [aux_sym_hash_known_hosts_token1] = ACTIONS(710), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(710), + [aux_sym_hostbased_authentication_token1] = ACTIONS(710), + [aux_sym_host_key_algorithms_token1] = ACTIONS(710), + [aux_sym_host_key_alias_token1] = ACTIONS(710), + [aux_sym_hostname_token1] = ACTIONS(710), + [aux_sym_identities_only_token1] = ACTIONS(710), + [aux_sym_identity_agent_token1] = ACTIONS(710), + [aux_sym_identity_file_token1] = ACTIONS(710), + [aux_sym_ignore_unknown_token1] = ACTIONS(710), + [aux_sym_include_token1] = ACTIONS(710), + [aux_sym_ip_qos_token1] = ACTIONS(710), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(710), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(710), + [aux_sym_kex_algorithms_token1] = ACTIONS(710), + [aux_sym_known_hosts_command_token1] = ACTIONS(710), + [aux_sym_local_command_token1] = ACTIONS(710), + [aux_sym_local_forward_token1] = ACTIONS(710), + [aux_sym_log_level_token1] = ACTIONS(710), + [aux_sym_log_verbose_token1] = ACTIONS(710), + [aux_sym_macs_token1] = ACTIONS(710), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(710), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(710), + [aux_sym_password_authentication_token1] = ACTIONS(710), + [aux_sym_permit_local_command_token1] = ACTIONS(710), + [aux_sym_permit_remote_open_token1] = ACTIONS(710), + [aux_sym_pkcs11_provider_token1] = ACTIONS(710), + [aux_sym_port_token1] = ACTIONS(710), + [aux_sym_preferred_authentications_token1] = ACTIONS(710), + [aux_sym_protocol_token1] = ACTIONS(710), + [aux_sym_proxy_command_token1] = ACTIONS(710), + [aux_sym_proxy_jump_token1] = ACTIONS(710), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(710), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(710), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(710), + [aux_sym_pubkey_authentication_token1] = ACTIONS(710), + [aux_sym_rekey_limit_token1] = ACTIONS(710), + [aux_sym_remote_command_token1] = ACTIONS(710), + [aux_sym_remote_forward_token1] = ACTIONS(710), + [aux_sym_request_tty_token1] = ACTIONS(710), + [aux_sym_required_rsa_size_token1] = ACTIONS(710), + [aux_sym_revoked_host_keys_token1] = ACTIONS(710), + [aux_sym_security_key_provider_token1] = ACTIONS(710), + [aux_sym_send_env_token1] = ACTIONS(710), + [aux_sym_server_alive_count_max_token1] = ACTIONS(710), + [aux_sym_server_alive_interval_token1] = ACTIONS(710), + [aux_sym_session_type_token1] = ACTIONS(710), + [aux_sym_set_env_token1] = ACTIONS(710), + [aux_sym_stdin_null_token1] = ACTIONS(710), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(710), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(710), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(710), + [aux_sym_syslog_facility_token1] = ACTIONS(710), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(710), + [aux_sym_keep_alive_token1] = ACTIONS(710), + [aux_sym_tunnel_token1] = ACTIONS(712), + [aux_sym_tunnel_device_token1] = ACTIONS(710), + [aux_sym_update_host_keys_token1] = ACTIONS(710), + [aux_sym_use_keychain_token1] = ACTIONS(710), + [aux_sym_use_roaming_token1] = ACTIONS(710), + [aux_sym_user_token1] = ACTIONS(712), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(710), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(710), + [aux_sym_visual_host_key_token1] = ACTIONS(710), + [aux_sym_xauth_location_token1] = ACTIONS(710), }, [29] = { - [ts_builtin_sym_end] = ACTIONS(711), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [aux_sym_match_token1] = ACTIONS(711), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(711), - [aux_sym_address_family_token1] = ACTIONS(711), - [aux_sym_batch_mode_token1] = ACTIONS(711), - [aux_sym_bind_address_token1] = ACTIONS(711), - [aux_sym_bind_interface_token1] = ACTIONS(711), - [aux_sym_canonical_domains_token1] = ACTIONS(711), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(711), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(711), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(711), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(711), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(711), - [aux_sym_certificate_file_token1] = ACTIONS(711), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(711), - [aux_sym_check_host_ip_token1] = ACTIONS(711), - [aux_sym_ciphers_token1] = ACTIONS(711), - [aux_sym_cipher_token1] = ACTIONS(713), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(711), - [aux_sym_compression_token1] = ACTIONS(711), - [aux_sym_connection_attempts_token1] = ACTIONS(711), - [aux_sym_connect_timeout_token1] = ACTIONS(711), - [aux_sym_control_master_token1] = ACTIONS(711), - [aux_sym_control_path_token1] = ACTIONS(711), - [aux_sym_control_persist_token1] = ACTIONS(711), - [aux_sym_dynamic_forward_token1] = ACTIONS(711), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(711), - [aux_sym_escape_char_token1] = ACTIONS(711), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(711), - [aux_sym_fingerprint_hash_token1] = ACTIONS(711), - [aux_sym_fork_after_authentication_token1] = ACTIONS(711), - [aux_sym_forward_agent_token1] = ACTIONS(711), - [aux_sym_forward_x11_token1] = ACTIONS(713), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(711), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(711), - [aux_sym_gateway_ports_token1] = ACTIONS(711), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(711), - [aux_sym_gssapi_authentication_token1] = ACTIONS(711), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(711), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(711), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(711), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(711), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(711), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(711), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(711), - [aux_sym_hash_known_hosts_token1] = ACTIONS(711), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(711), - [aux_sym_hostbased_authentication_token1] = ACTIONS(711), - [aux_sym_host_key_algorithms_token1] = ACTIONS(711), - [aux_sym_host_key_alias_token1] = ACTIONS(711), - [aux_sym_hostname_token1] = ACTIONS(711), - [aux_sym_identities_only_token1] = ACTIONS(711), - [aux_sym_identity_agent_token1] = ACTIONS(711), - [aux_sym_identity_file_token1] = ACTIONS(711), - [aux_sym_ignore_unknown_token1] = ACTIONS(711), - [aux_sym_include_token1] = ACTIONS(711), - [aux_sym_ip_qos_token1] = ACTIONS(711), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(711), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(711), - [aux_sym_kex_algorithms_token1] = ACTIONS(711), - [aux_sym_known_hosts_command_token1] = ACTIONS(711), - [aux_sym_local_command_token1] = ACTIONS(711), - [aux_sym_local_forward_token1] = ACTIONS(711), - [aux_sym_log_level_token1] = ACTIONS(711), - [aux_sym_log_verbose_token1] = ACTIONS(711), - [aux_sym_macs_token1] = ACTIONS(711), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(711), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(711), - [aux_sym_password_authentication_token1] = ACTIONS(711), - [aux_sym_permit_local_command_token1] = ACTIONS(711), - [aux_sym_permit_remote_open_token1] = ACTIONS(711), - [aux_sym_pkcs11_provider_token1] = ACTIONS(711), - [aux_sym_port_token1] = ACTIONS(711), - [aux_sym_preferred_authentications_token1] = ACTIONS(711), - [aux_sym_protocol_token1] = ACTIONS(711), - [aux_sym_proxy_command_token1] = ACTIONS(711), - [aux_sym_proxy_jump_token1] = ACTIONS(711), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(711), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(711), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(711), - [aux_sym_pubkey_authentication_token1] = ACTIONS(711), - [aux_sym_rekey_limit_token1] = ACTIONS(711), - [aux_sym_remote_command_token1] = ACTIONS(711), - [aux_sym_remote_forward_token1] = ACTIONS(711), - [aux_sym_request_tty_token1] = ACTIONS(711), - [aux_sym_required_rsa_size_token1] = ACTIONS(711), - [aux_sym_revoked_host_keys_token1] = ACTIONS(711), - [aux_sym_security_key_provider_token1] = ACTIONS(711), - [aux_sym_send_env_token1] = ACTIONS(711), - [aux_sym_server_alive_count_max_token1] = ACTIONS(711), - [aux_sym_server_alive_interval_token1] = ACTIONS(711), - [aux_sym_session_type_token1] = ACTIONS(711), - [aux_sym_set_env_token1] = ACTIONS(711), - [aux_sym_stdin_null_token1] = ACTIONS(711), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(711), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(711), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(711), - [aux_sym_syslog_facility_token1] = ACTIONS(711), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(711), - [aux_sym_keep_alive_token1] = ACTIONS(711), - [aux_sym_tunnel_token1] = ACTIONS(713), - [aux_sym_tunnel_device_token1] = ACTIONS(711), - [aux_sym_update_host_keys_token1] = ACTIONS(711), - [aux_sym_use_keychain_token1] = ACTIONS(711), - [aux_sym_use_roaming_token1] = ACTIONS(711), - [aux_sym_user_token1] = ACTIONS(713), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(711), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(711), - [aux_sym_visual_host_key_token1] = ACTIONS(711), - [aux_sym_xauth_location_token1] = ACTIONS(711), + [ts_builtin_sym_end] = ACTIONS(716), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(718), + [anon_sym_DQUOTE] = ACTIONS(720), + [aux_sym_match_token1] = ACTIONS(716), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(716), + [aux_sym_address_family_token1] = ACTIONS(716), + [aux_sym_batch_mode_token1] = ACTIONS(716), + [aux_sym_bind_address_token1] = ACTIONS(716), + [aux_sym_bind_interface_token1] = ACTIONS(716), + [aux_sym_canonical_domains_token1] = ACTIONS(716), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(716), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(716), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(716), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(716), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(716), + [aux_sym_certificate_file_token1] = ACTIONS(716), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(716), + [aux_sym_check_host_ip_token1] = ACTIONS(716), + [aux_sym_ciphers_token1] = ACTIONS(716), + [aux_sym_cipher_token1] = ACTIONS(718), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(716), + [aux_sym_compression_token1] = ACTIONS(716), + [aux_sym_connection_attempts_token1] = ACTIONS(716), + [aux_sym_connect_timeout_token1] = ACTIONS(716), + [aux_sym_control_master_token1] = ACTIONS(716), + [aux_sym_control_path_token1] = ACTIONS(716), + [aux_sym_control_persist_token1] = ACTIONS(716), + [aux_sym_dynamic_forward_token1] = ACTIONS(716), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(716), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(716), + [aux_sym_escape_char_token1] = ACTIONS(716), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(716), + [aux_sym_fingerprint_hash_token1] = ACTIONS(716), + [aux_sym_fork_after_authentication_token1] = ACTIONS(716), + [aux_sym_forward_agent_token1] = ACTIONS(716), + [aux_sym_forward_x11_token1] = ACTIONS(718), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(716), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(716), + [aux_sym_gateway_ports_token1] = ACTIONS(716), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(716), + [aux_sym_gssapi_authentication_token1] = ACTIONS(716), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(716), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(716), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(716), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(716), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(716), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(716), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(716), + [aux_sym_hash_known_hosts_token1] = ACTIONS(716), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(716), + [aux_sym_hostbased_authentication_token1] = ACTIONS(716), + [aux_sym_host_key_algorithms_token1] = ACTIONS(716), + [aux_sym_host_key_alias_token1] = ACTIONS(716), + [aux_sym_hostname_token1] = ACTIONS(716), + [aux_sym_identities_only_token1] = ACTIONS(716), + [aux_sym_identity_agent_token1] = ACTIONS(716), + [aux_sym_identity_file_token1] = ACTIONS(716), + [aux_sym_ignore_unknown_token1] = ACTIONS(716), + [aux_sym_include_token1] = ACTIONS(716), + [aux_sym_ip_qos_token1] = ACTIONS(716), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(716), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(716), + [aux_sym_kex_algorithms_token1] = ACTIONS(716), + [aux_sym_known_hosts_command_token1] = ACTIONS(716), + [aux_sym_local_command_token1] = ACTIONS(716), + [aux_sym_local_forward_token1] = ACTIONS(716), + [aux_sym_log_level_token1] = ACTIONS(716), + [aux_sym_log_verbose_token1] = ACTIONS(716), + [aux_sym_macs_token1] = ACTIONS(716), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(716), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(716), + [aux_sym_password_authentication_token1] = ACTIONS(716), + [aux_sym_permit_local_command_token1] = ACTIONS(716), + [aux_sym_permit_remote_open_token1] = ACTIONS(716), + [aux_sym_pkcs11_provider_token1] = ACTIONS(716), + [aux_sym_port_token1] = ACTIONS(716), + [aux_sym_preferred_authentications_token1] = ACTIONS(716), + [aux_sym_protocol_token1] = ACTIONS(716), + [aux_sym_proxy_command_token1] = ACTIONS(716), + [aux_sym_proxy_jump_token1] = ACTIONS(716), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(716), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(716), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(716), + [aux_sym_pubkey_authentication_token1] = ACTIONS(716), + [aux_sym_rekey_limit_token1] = ACTIONS(716), + [aux_sym_remote_command_token1] = ACTIONS(716), + [aux_sym_remote_forward_token1] = ACTIONS(716), + [aux_sym_request_tty_token1] = ACTIONS(716), + [aux_sym_required_rsa_size_token1] = ACTIONS(716), + [aux_sym_revoked_host_keys_token1] = ACTIONS(716), + [aux_sym_security_key_provider_token1] = ACTIONS(716), + [aux_sym_send_env_token1] = ACTIONS(716), + [aux_sym_server_alive_count_max_token1] = ACTIONS(716), + [aux_sym_server_alive_interval_token1] = ACTIONS(716), + [aux_sym_session_type_token1] = ACTIONS(716), + [aux_sym_set_env_token1] = ACTIONS(716), + [aux_sym_stdin_null_token1] = ACTIONS(716), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(716), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(716), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(716), + [aux_sym_syslog_facility_token1] = ACTIONS(716), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(716), + [aux_sym_keep_alive_token1] = ACTIONS(716), + [aux_sym_tunnel_token1] = ACTIONS(718), + [aux_sym_tunnel_device_token1] = ACTIONS(716), + [aux_sym_update_host_keys_token1] = ACTIONS(716), + [aux_sym_use_keychain_token1] = ACTIONS(716), + [aux_sym_use_roaming_token1] = ACTIONS(716), + [aux_sym_user_token1] = ACTIONS(718), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(716), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(716), + [aux_sym_visual_host_key_token1] = ACTIONS(716), + [aux_sym_xauth_location_token1] = ACTIONS(716), }, [30] = { - [ts_builtin_sym_end] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [aux_sym_match_token1] = ACTIONS(717), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(717), - [aux_sym_address_family_token1] = ACTIONS(717), - [aux_sym_batch_mode_token1] = ACTIONS(717), - [aux_sym_bind_address_token1] = ACTIONS(717), - [aux_sym_bind_interface_token1] = ACTIONS(717), - [aux_sym_canonical_domains_token1] = ACTIONS(717), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(717), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(717), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(717), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(717), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(717), - [aux_sym_certificate_file_token1] = ACTIONS(717), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(717), - [aux_sym_check_host_ip_token1] = ACTIONS(717), - [aux_sym_ciphers_token1] = ACTIONS(717), - [aux_sym_cipher_token1] = ACTIONS(719), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(717), - [aux_sym_compression_token1] = ACTIONS(717), - [aux_sym_connection_attempts_token1] = ACTIONS(717), - [aux_sym_connect_timeout_token1] = ACTIONS(717), - [aux_sym_control_master_token1] = ACTIONS(717), - [aux_sym_control_path_token1] = ACTIONS(717), - [aux_sym_control_persist_token1] = ACTIONS(717), - [aux_sym_dynamic_forward_token1] = ACTIONS(717), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(717), - [aux_sym_escape_char_token1] = ACTIONS(717), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(717), - [aux_sym_fingerprint_hash_token1] = ACTIONS(717), - [aux_sym_fork_after_authentication_token1] = ACTIONS(717), - [aux_sym_forward_agent_token1] = ACTIONS(717), - [aux_sym_forward_x11_token1] = ACTIONS(719), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(717), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(717), - [aux_sym_gateway_ports_token1] = ACTIONS(717), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(717), - [aux_sym_gssapi_authentication_token1] = ACTIONS(717), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(717), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(717), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(717), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(717), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(717), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(717), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(717), - [aux_sym_hash_known_hosts_token1] = ACTIONS(717), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(717), - [aux_sym_hostbased_authentication_token1] = ACTIONS(717), - [aux_sym_host_key_algorithms_token1] = ACTIONS(717), - [aux_sym_host_key_alias_token1] = ACTIONS(717), - [aux_sym_hostname_token1] = ACTIONS(717), - [aux_sym_identities_only_token1] = ACTIONS(717), - [aux_sym_identity_agent_token1] = ACTIONS(717), - [aux_sym_identity_file_token1] = ACTIONS(717), - [aux_sym_ignore_unknown_token1] = ACTIONS(717), - [aux_sym_include_token1] = ACTIONS(717), - [aux_sym_ip_qos_token1] = ACTIONS(717), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(717), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(717), - [aux_sym_kex_algorithms_token1] = ACTIONS(717), - [aux_sym_known_hosts_command_token1] = ACTIONS(717), - [aux_sym_local_command_token1] = ACTIONS(717), - [aux_sym_local_forward_token1] = ACTIONS(717), - [aux_sym_log_level_token1] = ACTIONS(717), - [aux_sym_log_verbose_token1] = ACTIONS(717), - [aux_sym_macs_token1] = ACTIONS(717), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(717), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(717), - [aux_sym_password_authentication_token1] = ACTIONS(717), - [aux_sym_permit_local_command_token1] = ACTIONS(717), - [aux_sym_permit_remote_open_token1] = ACTIONS(717), - [aux_sym_pkcs11_provider_token1] = ACTIONS(717), - [aux_sym_port_token1] = ACTIONS(717), - [aux_sym_preferred_authentications_token1] = ACTIONS(717), - [aux_sym_protocol_token1] = ACTIONS(717), - [aux_sym_proxy_command_token1] = ACTIONS(717), - [aux_sym_proxy_jump_token1] = ACTIONS(717), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(717), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(717), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(717), - [aux_sym_pubkey_authentication_token1] = ACTIONS(717), - [aux_sym_rekey_limit_token1] = ACTIONS(717), - [aux_sym_remote_command_token1] = ACTIONS(717), - [aux_sym_remote_forward_token1] = ACTIONS(717), - [aux_sym_request_tty_token1] = ACTIONS(717), - [aux_sym_required_rsa_size_token1] = ACTIONS(717), - [aux_sym_revoked_host_keys_token1] = ACTIONS(717), - [aux_sym_security_key_provider_token1] = ACTIONS(717), - [aux_sym_send_env_token1] = ACTIONS(717), - [aux_sym_server_alive_count_max_token1] = ACTIONS(717), - [aux_sym_server_alive_interval_token1] = ACTIONS(717), - [aux_sym_session_type_token1] = ACTIONS(717), - [aux_sym_set_env_token1] = ACTIONS(717), - [aux_sym_stdin_null_token1] = ACTIONS(717), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(717), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(717), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(717), - [aux_sym_syslog_facility_token1] = ACTIONS(717), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(717), - [aux_sym_keep_alive_token1] = ACTIONS(717), - [aux_sym_tunnel_token1] = ACTIONS(719), - [aux_sym_tunnel_device_token1] = ACTIONS(717), - [aux_sym_update_host_keys_token1] = ACTIONS(717), - [aux_sym_use_keychain_token1] = ACTIONS(717), - [aux_sym_use_roaming_token1] = ACTIONS(717), - [aux_sym_user_token1] = ACTIONS(719), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(717), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(717), - [aux_sym_visual_host_key_token1] = ACTIONS(717), - [aux_sym_xauth_location_token1] = ACTIONS(717), + [ts_builtin_sym_end] = ACTIONS(722), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(724), + [anon_sym_DQUOTE] = ACTIONS(726), + [aux_sym_match_token1] = ACTIONS(722), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(722), + [aux_sym_address_family_token1] = ACTIONS(722), + [aux_sym_batch_mode_token1] = ACTIONS(722), + [aux_sym_bind_address_token1] = ACTIONS(722), + [aux_sym_bind_interface_token1] = ACTIONS(722), + [aux_sym_canonical_domains_token1] = ACTIONS(722), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(722), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(722), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(722), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(722), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(722), + [aux_sym_certificate_file_token1] = ACTIONS(722), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(722), + [aux_sym_check_host_ip_token1] = ACTIONS(722), + [aux_sym_ciphers_token1] = ACTIONS(722), + [aux_sym_cipher_token1] = ACTIONS(724), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(722), + [aux_sym_compression_token1] = ACTIONS(722), + [aux_sym_connection_attempts_token1] = ACTIONS(722), + [aux_sym_connect_timeout_token1] = ACTIONS(722), + [aux_sym_control_master_token1] = ACTIONS(722), + [aux_sym_control_path_token1] = ACTIONS(722), + [aux_sym_control_persist_token1] = ACTIONS(722), + [aux_sym_dynamic_forward_token1] = ACTIONS(722), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(722), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(722), + [aux_sym_escape_char_token1] = ACTIONS(722), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(722), + [aux_sym_fingerprint_hash_token1] = ACTIONS(722), + [aux_sym_fork_after_authentication_token1] = ACTIONS(722), + [aux_sym_forward_agent_token1] = ACTIONS(722), + [aux_sym_forward_x11_token1] = ACTIONS(724), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(722), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(722), + [aux_sym_gateway_ports_token1] = ACTIONS(722), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(722), + [aux_sym_gssapi_authentication_token1] = ACTIONS(722), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(722), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(722), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(722), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(722), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(722), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(722), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(722), + [aux_sym_hash_known_hosts_token1] = ACTIONS(722), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(722), + [aux_sym_hostbased_authentication_token1] = ACTIONS(722), + [aux_sym_host_key_algorithms_token1] = ACTIONS(722), + [aux_sym_host_key_alias_token1] = ACTIONS(722), + [aux_sym_hostname_token1] = ACTIONS(722), + [aux_sym_identities_only_token1] = ACTIONS(722), + [aux_sym_identity_agent_token1] = ACTIONS(722), + [aux_sym_identity_file_token1] = ACTIONS(722), + [aux_sym_ignore_unknown_token1] = ACTIONS(722), + [aux_sym_include_token1] = ACTIONS(722), + [aux_sym_ip_qos_token1] = ACTIONS(722), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(722), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(722), + [aux_sym_kex_algorithms_token1] = ACTIONS(722), + [aux_sym_known_hosts_command_token1] = ACTIONS(722), + [aux_sym_local_command_token1] = ACTIONS(722), + [aux_sym_local_forward_token1] = ACTIONS(722), + [aux_sym_log_level_token1] = ACTIONS(722), + [aux_sym_log_verbose_token1] = ACTIONS(722), + [aux_sym_macs_token1] = ACTIONS(722), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(722), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(722), + [aux_sym_password_authentication_token1] = ACTIONS(722), + [aux_sym_permit_local_command_token1] = ACTIONS(722), + [aux_sym_permit_remote_open_token1] = ACTIONS(722), + [aux_sym_pkcs11_provider_token1] = ACTIONS(722), + [aux_sym_port_token1] = ACTIONS(722), + [aux_sym_preferred_authentications_token1] = ACTIONS(722), + [aux_sym_protocol_token1] = ACTIONS(722), + [aux_sym_proxy_command_token1] = ACTIONS(722), + [aux_sym_proxy_jump_token1] = ACTIONS(722), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(722), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(722), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(722), + [aux_sym_pubkey_authentication_token1] = ACTIONS(722), + [aux_sym_rekey_limit_token1] = ACTIONS(722), + [aux_sym_remote_command_token1] = ACTIONS(722), + [aux_sym_remote_forward_token1] = ACTIONS(722), + [aux_sym_request_tty_token1] = ACTIONS(722), + [aux_sym_required_rsa_size_token1] = ACTIONS(722), + [aux_sym_revoked_host_keys_token1] = ACTIONS(722), + [aux_sym_security_key_provider_token1] = ACTIONS(722), + [aux_sym_send_env_token1] = ACTIONS(722), + [aux_sym_server_alive_count_max_token1] = ACTIONS(722), + [aux_sym_server_alive_interval_token1] = ACTIONS(722), + [aux_sym_session_type_token1] = ACTIONS(722), + [aux_sym_set_env_token1] = ACTIONS(722), + [aux_sym_stdin_null_token1] = ACTIONS(722), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(722), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(722), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(722), + [aux_sym_syslog_facility_token1] = ACTIONS(722), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(722), + [aux_sym_keep_alive_token1] = ACTIONS(722), + [aux_sym_tunnel_token1] = ACTIONS(724), + [aux_sym_tunnel_device_token1] = ACTIONS(722), + [aux_sym_update_host_keys_token1] = ACTIONS(722), + [aux_sym_use_keychain_token1] = ACTIONS(722), + [aux_sym_use_roaming_token1] = ACTIONS(722), + [aux_sym_user_token1] = ACTIONS(724), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(722), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(722), + [aux_sym_visual_host_key_token1] = ACTIONS(722), + [aux_sym_xauth_location_token1] = ACTIONS(722), }, [31] = { - [ts_builtin_sym_end] = ACTIONS(723), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(725), - [anon_sym_DQUOTE] = ACTIONS(727), - [aux_sym_match_token1] = ACTIONS(723), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(723), - [aux_sym_address_family_token1] = ACTIONS(723), - [aux_sym_batch_mode_token1] = ACTIONS(723), - [aux_sym_bind_address_token1] = ACTIONS(723), - [aux_sym_bind_interface_token1] = ACTIONS(723), - [aux_sym_canonical_domains_token1] = ACTIONS(723), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(723), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(723), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(723), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(723), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(723), - [aux_sym_certificate_file_token1] = ACTIONS(723), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(723), - [aux_sym_check_host_ip_token1] = ACTIONS(723), - [aux_sym_ciphers_token1] = ACTIONS(723), - [aux_sym_cipher_token1] = ACTIONS(725), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(723), - [aux_sym_compression_token1] = ACTIONS(723), - [aux_sym_connection_attempts_token1] = ACTIONS(723), - [aux_sym_connect_timeout_token1] = ACTIONS(723), - [aux_sym_control_master_token1] = ACTIONS(723), - [aux_sym_control_path_token1] = ACTIONS(723), - [aux_sym_control_persist_token1] = ACTIONS(723), - [aux_sym_dynamic_forward_token1] = ACTIONS(723), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(723), - [aux_sym_escape_char_token1] = ACTIONS(723), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(723), - [aux_sym_fingerprint_hash_token1] = ACTIONS(723), - [aux_sym_fork_after_authentication_token1] = ACTIONS(723), - [aux_sym_forward_agent_token1] = ACTIONS(723), - [aux_sym_forward_x11_token1] = ACTIONS(725), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(723), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(723), - [aux_sym_gateway_ports_token1] = ACTIONS(723), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(723), - [aux_sym_gssapi_authentication_token1] = ACTIONS(723), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(723), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(723), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(723), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(723), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(723), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(723), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(723), - [aux_sym_hash_known_hosts_token1] = ACTIONS(723), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(723), - [aux_sym_hostbased_authentication_token1] = ACTIONS(723), - [aux_sym_host_key_algorithms_token1] = ACTIONS(723), - [aux_sym_host_key_alias_token1] = ACTIONS(723), - [aux_sym_hostname_token1] = ACTIONS(723), - [aux_sym_identities_only_token1] = ACTIONS(723), - [aux_sym_identity_agent_token1] = ACTIONS(723), - [aux_sym_identity_file_token1] = ACTIONS(723), - [aux_sym_ignore_unknown_token1] = ACTIONS(723), - [aux_sym_include_token1] = ACTIONS(723), - [aux_sym_ip_qos_token1] = ACTIONS(723), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(723), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(723), - [aux_sym_kex_algorithms_token1] = ACTIONS(723), - [aux_sym_known_hosts_command_token1] = ACTIONS(723), - [aux_sym_local_command_token1] = ACTIONS(723), - [aux_sym_local_forward_token1] = ACTIONS(723), - [aux_sym_log_level_token1] = ACTIONS(723), - [aux_sym_log_verbose_token1] = ACTIONS(723), - [aux_sym_macs_token1] = ACTIONS(723), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(723), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(723), - [aux_sym_password_authentication_token1] = ACTIONS(723), - [aux_sym_permit_local_command_token1] = ACTIONS(723), - [aux_sym_permit_remote_open_token1] = ACTIONS(723), - [aux_sym_pkcs11_provider_token1] = ACTIONS(723), - [aux_sym_port_token1] = ACTIONS(723), - [aux_sym_preferred_authentications_token1] = ACTIONS(723), - [aux_sym_protocol_token1] = ACTIONS(723), - [aux_sym_proxy_command_token1] = ACTIONS(723), - [aux_sym_proxy_jump_token1] = ACTIONS(723), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(723), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(723), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(723), - [aux_sym_pubkey_authentication_token1] = ACTIONS(723), - [aux_sym_rekey_limit_token1] = ACTIONS(723), - [aux_sym_remote_command_token1] = ACTIONS(723), - [aux_sym_remote_forward_token1] = ACTIONS(723), - [aux_sym_request_tty_token1] = ACTIONS(723), - [aux_sym_required_rsa_size_token1] = ACTIONS(723), - [aux_sym_revoked_host_keys_token1] = ACTIONS(723), - [aux_sym_security_key_provider_token1] = ACTIONS(723), - [aux_sym_send_env_token1] = ACTIONS(723), - [aux_sym_server_alive_count_max_token1] = ACTIONS(723), - [aux_sym_server_alive_interval_token1] = ACTIONS(723), - [aux_sym_session_type_token1] = ACTIONS(723), - [aux_sym_set_env_token1] = ACTIONS(723), - [aux_sym_stdin_null_token1] = ACTIONS(723), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(723), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(723), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(723), - [aux_sym_syslog_facility_token1] = ACTIONS(723), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(723), - [aux_sym_keep_alive_token1] = ACTIONS(723), - [aux_sym_tunnel_token1] = ACTIONS(725), - [aux_sym_tunnel_device_token1] = ACTIONS(723), - [aux_sym_update_host_keys_token1] = ACTIONS(723), - [aux_sym_use_keychain_token1] = ACTIONS(723), - [aux_sym_use_roaming_token1] = ACTIONS(723), - [aux_sym_user_token1] = ACTIONS(725), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(723), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(723), - [aux_sym_visual_host_key_token1] = ACTIONS(723), - [aux_sym_xauth_location_token1] = ACTIONS(723), + [ts_builtin_sym_end] = ACTIONS(728), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(732), + [aux_sym_match_token1] = ACTIONS(728), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(728), + [aux_sym_address_family_token1] = ACTIONS(728), + [aux_sym_batch_mode_token1] = ACTIONS(728), + [aux_sym_bind_address_token1] = ACTIONS(728), + [aux_sym_bind_interface_token1] = ACTIONS(728), + [aux_sym_canonical_domains_token1] = ACTIONS(728), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(728), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(728), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(728), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(728), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(728), + [aux_sym_certificate_file_token1] = ACTIONS(728), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(728), + [aux_sym_check_host_ip_token1] = ACTIONS(728), + [aux_sym_ciphers_token1] = ACTIONS(728), + [aux_sym_cipher_token1] = ACTIONS(730), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(728), + [aux_sym_compression_token1] = ACTIONS(728), + [aux_sym_connection_attempts_token1] = ACTIONS(728), + [aux_sym_connect_timeout_token1] = ACTIONS(728), + [aux_sym_control_master_token1] = ACTIONS(728), + [aux_sym_control_path_token1] = ACTIONS(728), + [aux_sym_control_persist_token1] = ACTIONS(728), + [aux_sym_dynamic_forward_token1] = ACTIONS(728), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(728), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(728), + [aux_sym_escape_char_token1] = ACTIONS(728), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(728), + [aux_sym_fingerprint_hash_token1] = ACTIONS(728), + [aux_sym_fork_after_authentication_token1] = ACTIONS(728), + [aux_sym_forward_agent_token1] = ACTIONS(728), + [aux_sym_forward_x11_token1] = ACTIONS(730), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(728), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(728), + [aux_sym_gateway_ports_token1] = ACTIONS(728), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(728), + [aux_sym_gssapi_authentication_token1] = ACTIONS(728), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(728), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(728), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(728), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(728), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(728), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(728), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(728), + [aux_sym_hash_known_hosts_token1] = ACTIONS(728), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(728), + [aux_sym_hostbased_authentication_token1] = ACTIONS(728), + [aux_sym_host_key_algorithms_token1] = ACTIONS(728), + [aux_sym_host_key_alias_token1] = ACTIONS(728), + [aux_sym_hostname_token1] = ACTIONS(728), + [aux_sym_identities_only_token1] = ACTIONS(728), + [aux_sym_identity_agent_token1] = ACTIONS(728), + [aux_sym_identity_file_token1] = ACTIONS(728), + [aux_sym_ignore_unknown_token1] = ACTIONS(728), + [aux_sym_include_token1] = ACTIONS(728), + [aux_sym_ip_qos_token1] = ACTIONS(728), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(728), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(728), + [aux_sym_kex_algorithms_token1] = ACTIONS(728), + [aux_sym_known_hosts_command_token1] = ACTIONS(728), + [aux_sym_local_command_token1] = ACTIONS(728), + [aux_sym_local_forward_token1] = ACTIONS(728), + [aux_sym_log_level_token1] = ACTIONS(728), + [aux_sym_log_verbose_token1] = ACTIONS(728), + [aux_sym_macs_token1] = ACTIONS(728), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(728), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(728), + [aux_sym_password_authentication_token1] = ACTIONS(728), + [aux_sym_permit_local_command_token1] = ACTIONS(728), + [aux_sym_permit_remote_open_token1] = ACTIONS(728), + [aux_sym_pkcs11_provider_token1] = ACTIONS(728), + [aux_sym_port_token1] = ACTIONS(728), + [aux_sym_preferred_authentications_token1] = ACTIONS(728), + [aux_sym_protocol_token1] = ACTIONS(728), + [aux_sym_proxy_command_token1] = ACTIONS(728), + [aux_sym_proxy_jump_token1] = ACTIONS(728), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(728), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(728), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(728), + [aux_sym_pubkey_authentication_token1] = ACTIONS(728), + [aux_sym_rekey_limit_token1] = ACTIONS(728), + [aux_sym_remote_command_token1] = ACTIONS(728), + [aux_sym_remote_forward_token1] = ACTIONS(728), + [aux_sym_request_tty_token1] = ACTIONS(728), + [aux_sym_required_rsa_size_token1] = ACTIONS(728), + [aux_sym_revoked_host_keys_token1] = ACTIONS(728), + [aux_sym_security_key_provider_token1] = ACTIONS(728), + [aux_sym_send_env_token1] = ACTIONS(728), + [aux_sym_server_alive_count_max_token1] = ACTIONS(728), + [aux_sym_server_alive_interval_token1] = ACTIONS(728), + [aux_sym_session_type_token1] = ACTIONS(728), + [aux_sym_set_env_token1] = ACTIONS(728), + [aux_sym_stdin_null_token1] = ACTIONS(728), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(728), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(728), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(728), + [aux_sym_syslog_facility_token1] = ACTIONS(728), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(728), + [aux_sym_keep_alive_token1] = ACTIONS(728), + [aux_sym_tunnel_token1] = ACTIONS(730), + [aux_sym_tunnel_device_token1] = ACTIONS(728), + [aux_sym_update_host_keys_token1] = ACTIONS(728), + [aux_sym_use_keychain_token1] = ACTIONS(728), + [aux_sym_use_roaming_token1] = ACTIONS(728), + [aux_sym_user_token1] = ACTIONS(730), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(728), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(728), + [aux_sym_visual_host_key_token1] = ACTIONS(728), + [aux_sym_xauth_location_token1] = ACTIONS(728), }, [32] = { - [ts_builtin_sym_end] = ACTIONS(729), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(733), - [aux_sym_match_token1] = ACTIONS(729), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(729), - [aux_sym_address_family_token1] = ACTIONS(729), - [aux_sym_batch_mode_token1] = ACTIONS(729), - [aux_sym_bind_address_token1] = ACTIONS(729), - [aux_sym_bind_interface_token1] = ACTIONS(729), - [aux_sym_canonical_domains_token1] = ACTIONS(729), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(729), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(729), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(729), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(729), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(729), - [aux_sym_certificate_file_token1] = ACTIONS(729), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(729), - [aux_sym_check_host_ip_token1] = ACTIONS(729), - [aux_sym_ciphers_token1] = ACTIONS(729), - [aux_sym_cipher_token1] = ACTIONS(731), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(729), - [aux_sym_compression_token1] = ACTIONS(729), - [aux_sym_connection_attempts_token1] = ACTIONS(729), - [aux_sym_connect_timeout_token1] = ACTIONS(729), - [aux_sym_control_master_token1] = ACTIONS(729), - [aux_sym_control_path_token1] = ACTIONS(729), - [aux_sym_control_persist_token1] = ACTIONS(729), - [aux_sym_dynamic_forward_token1] = ACTIONS(729), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(729), - [aux_sym_escape_char_token1] = ACTIONS(729), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(729), - [aux_sym_fingerprint_hash_token1] = ACTIONS(729), - [aux_sym_fork_after_authentication_token1] = ACTIONS(729), - [aux_sym_forward_agent_token1] = ACTIONS(729), - [aux_sym_forward_x11_token1] = ACTIONS(731), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(729), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(729), - [aux_sym_gateway_ports_token1] = ACTIONS(729), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(729), - [aux_sym_gssapi_authentication_token1] = ACTIONS(729), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(729), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(729), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(729), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(729), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(729), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(729), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(729), - [aux_sym_hash_known_hosts_token1] = ACTIONS(729), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(729), - [aux_sym_hostbased_authentication_token1] = ACTIONS(729), - [aux_sym_host_key_algorithms_token1] = ACTIONS(729), - [aux_sym_host_key_alias_token1] = ACTIONS(729), - [aux_sym_hostname_token1] = ACTIONS(729), - [aux_sym_identities_only_token1] = ACTIONS(729), - [aux_sym_identity_agent_token1] = ACTIONS(729), - [aux_sym_identity_file_token1] = ACTIONS(729), - [aux_sym_ignore_unknown_token1] = ACTIONS(729), - [aux_sym_include_token1] = ACTIONS(729), - [aux_sym_ip_qos_token1] = ACTIONS(729), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(729), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(729), - [aux_sym_kex_algorithms_token1] = ACTIONS(729), - [aux_sym_known_hosts_command_token1] = ACTIONS(729), - [aux_sym_local_command_token1] = ACTIONS(729), - [aux_sym_local_forward_token1] = ACTIONS(729), - [aux_sym_log_level_token1] = ACTIONS(729), - [aux_sym_log_verbose_token1] = ACTIONS(729), - [aux_sym_macs_token1] = ACTIONS(729), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(729), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(729), - [aux_sym_password_authentication_token1] = ACTIONS(729), - [aux_sym_permit_local_command_token1] = ACTIONS(729), - [aux_sym_permit_remote_open_token1] = ACTIONS(729), - [aux_sym_pkcs11_provider_token1] = ACTIONS(729), - [aux_sym_port_token1] = ACTIONS(729), - [aux_sym_preferred_authentications_token1] = ACTIONS(729), - [aux_sym_protocol_token1] = ACTIONS(729), - [aux_sym_proxy_command_token1] = ACTIONS(729), - [aux_sym_proxy_jump_token1] = ACTIONS(729), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(729), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(729), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(729), - [aux_sym_pubkey_authentication_token1] = ACTIONS(729), - [aux_sym_rekey_limit_token1] = ACTIONS(729), - [aux_sym_remote_command_token1] = ACTIONS(729), - [aux_sym_remote_forward_token1] = ACTIONS(729), - [aux_sym_request_tty_token1] = ACTIONS(729), - [aux_sym_required_rsa_size_token1] = ACTIONS(729), - [aux_sym_revoked_host_keys_token1] = ACTIONS(729), - [aux_sym_security_key_provider_token1] = ACTIONS(729), - [aux_sym_send_env_token1] = ACTIONS(729), - [aux_sym_server_alive_count_max_token1] = ACTIONS(729), - [aux_sym_server_alive_interval_token1] = ACTIONS(729), - [aux_sym_session_type_token1] = ACTIONS(729), - [aux_sym_set_env_token1] = ACTIONS(729), - [aux_sym_stdin_null_token1] = ACTIONS(729), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(729), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(729), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(729), - [aux_sym_syslog_facility_token1] = ACTIONS(729), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(729), - [aux_sym_keep_alive_token1] = ACTIONS(729), - [aux_sym_tunnel_token1] = ACTIONS(731), - [aux_sym_tunnel_device_token1] = ACTIONS(729), - [aux_sym_update_host_keys_token1] = ACTIONS(729), - [aux_sym_use_keychain_token1] = ACTIONS(729), - [aux_sym_use_roaming_token1] = ACTIONS(729), - [aux_sym_user_token1] = ACTIONS(731), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(729), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(729), - [aux_sym_visual_host_key_token1] = ACTIONS(729), - [aux_sym_xauth_location_token1] = ACTIONS(729), + [ts_builtin_sym_end] = ACTIONS(734), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(738), + [aux_sym_match_token1] = ACTIONS(734), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(734), + [aux_sym_address_family_token1] = ACTIONS(734), + [aux_sym_batch_mode_token1] = ACTIONS(734), + [aux_sym_bind_address_token1] = ACTIONS(734), + [aux_sym_bind_interface_token1] = ACTIONS(734), + [aux_sym_canonical_domains_token1] = ACTIONS(734), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(734), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(734), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(734), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(734), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(734), + [aux_sym_certificate_file_token1] = ACTIONS(734), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(734), + [aux_sym_check_host_ip_token1] = ACTIONS(734), + [aux_sym_ciphers_token1] = ACTIONS(734), + [aux_sym_cipher_token1] = ACTIONS(736), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(734), + [aux_sym_compression_token1] = ACTIONS(734), + [aux_sym_connection_attempts_token1] = ACTIONS(734), + [aux_sym_connect_timeout_token1] = ACTIONS(734), + [aux_sym_control_master_token1] = ACTIONS(734), + [aux_sym_control_path_token1] = ACTIONS(734), + [aux_sym_control_persist_token1] = ACTIONS(734), + [aux_sym_dynamic_forward_token1] = ACTIONS(734), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(734), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(734), + [aux_sym_escape_char_token1] = ACTIONS(734), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(734), + [aux_sym_fingerprint_hash_token1] = ACTIONS(734), + [aux_sym_fork_after_authentication_token1] = ACTIONS(734), + [aux_sym_forward_agent_token1] = ACTIONS(734), + [aux_sym_forward_x11_token1] = ACTIONS(736), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(734), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(734), + [aux_sym_gateway_ports_token1] = ACTIONS(734), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(734), + [aux_sym_gssapi_authentication_token1] = ACTIONS(734), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(734), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(734), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(734), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(734), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(734), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(734), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(734), + [aux_sym_hash_known_hosts_token1] = ACTIONS(734), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(734), + [aux_sym_hostbased_authentication_token1] = ACTIONS(734), + [aux_sym_host_key_algorithms_token1] = ACTIONS(734), + [aux_sym_host_key_alias_token1] = ACTIONS(734), + [aux_sym_hostname_token1] = ACTIONS(734), + [aux_sym_identities_only_token1] = ACTIONS(734), + [aux_sym_identity_agent_token1] = ACTIONS(734), + [aux_sym_identity_file_token1] = ACTIONS(734), + [aux_sym_ignore_unknown_token1] = ACTIONS(734), + [aux_sym_include_token1] = ACTIONS(734), + [aux_sym_ip_qos_token1] = ACTIONS(734), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(734), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(734), + [aux_sym_kex_algorithms_token1] = ACTIONS(734), + [aux_sym_known_hosts_command_token1] = ACTIONS(734), + [aux_sym_local_command_token1] = ACTIONS(734), + [aux_sym_local_forward_token1] = ACTIONS(734), + [aux_sym_log_level_token1] = ACTIONS(734), + [aux_sym_log_verbose_token1] = ACTIONS(734), + [aux_sym_macs_token1] = ACTIONS(734), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(734), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(734), + [aux_sym_password_authentication_token1] = ACTIONS(734), + [aux_sym_permit_local_command_token1] = ACTIONS(734), + [aux_sym_permit_remote_open_token1] = ACTIONS(734), + [aux_sym_pkcs11_provider_token1] = ACTIONS(734), + [aux_sym_port_token1] = ACTIONS(734), + [aux_sym_preferred_authentications_token1] = ACTIONS(734), + [aux_sym_protocol_token1] = ACTIONS(734), + [aux_sym_proxy_command_token1] = ACTIONS(734), + [aux_sym_proxy_jump_token1] = ACTIONS(734), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(734), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(734), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(734), + [aux_sym_pubkey_authentication_token1] = ACTIONS(734), + [aux_sym_rekey_limit_token1] = ACTIONS(734), + [aux_sym_remote_command_token1] = ACTIONS(734), + [aux_sym_remote_forward_token1] = ACTIONS(734), + [aux_sym_request_tty_token1] = ACTIONS(734), + [aux_sym_required_rsa_size_token1] = ACTIONS(734), + [aux_sym_revoked_host_keys_token1] = ACTIONS(734), + [aux_sym_security_key_provider_token1] = ACTIONS(734), + [aux_sym_send_env_token1] = ACTIONS(734), + [aux_sym_server_alive_count_max_token1] = ACTIONS(734), + [aux_sym_server_alive_interval_token1] = ACTIONS(734), + [aux_sym_session_type_token1] = ACTIONS(734), + [aux_sym_set_env_token1] = ACTIONS(734), + [aux_sym_stdin_null_token1] = ACTIONS(734), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(734), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(734), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(734), + [aux_sym_syslog_facility_token1] = ACTIONS(734), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(734), + [aux_sym_keep_alive_token1] = ACTIONS(734), + [aux_sym_tunnel_token1] = ACTIONS(736), + [aux_sym_tunnel_device_token1] = ACTIONS(734), + [aux_sym_update_host_keys_token1] = ACTIONS(734), + [aux_sym_use_keychain_token1] = ACTIONS(734), + [aux_sym_use_roaming_token1] = ACTIONS(734), + [aux_sym_user_token1] = ACTIONS(736), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(734), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(734), + [aux_sym_visual_host_key_token1] = ACTIONS(734), + [aux_sym_xauth_location_token1] = ACTIONS(734), }, [33] = { - [ts_builtin_sym_end] = ACTIONS(735), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(739), - [aux_sym_match_token1] = ACTIONS(735), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(735), - [aux_sym_address_family_token1] = ACTIONS(735), - [aux_sym_batch_mode_token1] = ACTIONS(735), - [aux_sym_bind_address_token1] = ACTIONS(735), - [aux_sym_bind_interface_token1] = ACTIONS(735), - [aux_sym_canonical_domains_token1] = ACTIONS(735), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(735), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(735), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(735), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(735), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(735), - [aux_sym_certificate_file_token1] = ACTIONS(735), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(735), - [aux_sym_check_host_ip_token1] = ACTIONS(735), - [aux_sym_ciphers_token1] = ACTIONS(735), - [aux_sym_cipher_token1] = ACTIONS(737), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(735), - [aux_sym_compression_token1] = ACTIONS(735), - [aux_sym_connection_attempts_token1] = ACTIONS(735), - [aux_sym_connect_timeout_token1] = ACTIONS(735), - [aux_sym_control_master_token1] = ACTIONS(735), - [aux_sym_control_path_token1] = ACTIONS(735), - [aux_sym_control_persist_token1] = ACTIONS(735), - [aux_sym_dynamic_forward_token1] = ACTIONS(735), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(735), - [aux_sym_escape_char_token1] = ACTIONS(735), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(735), - [aux_sym_fingerprint_hash_token1] = ACTIONS(735), - [aux_sym_fork_after_authentication_token1] = ACTIONS(735), - [aux_sym_forward_agent_token1] = ACTIONS(735), - [aux_sym_forward_x11_token1] = ACTIONS(737), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(735), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(735), - [aux_sym_gateway_ports_token1] = ACTIONS(735), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(735), - [aux_sym_gssapi_authentication_token1] = ACTIONS(735), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(735), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(735), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(735), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(735), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(735), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(735), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(735), - [aux_sym_hash_known_hosts_token1] = ACTIONS(735), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(735), - [aux_sym_hostbased_authentication_token1] = ACTIONS(735), - [aux_sym_host_key_algorithms_token1] = ACTIONS(735), - [aux_sym_host_key_alias_token1] = ACTIONS(735), - [aux_sym_hostname_token1] = ACTIONS(735), - [aux_sym_identities_only_token1] = ACTIONS(735), - [aux_sym_identity_agent_token1] = ACTIONS(735), - [aux_sym_identity_file_token1] = ACTIONS(735), - [aux_sym_ignore_unknown_token1] = ACTIONS(735), - [aux_sym_include_token1] = ACTIONS(735), - [aux_sym_ip_qos_token1] = ACTIONS(735), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(735), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(735), - [aux_sym_kex_algorithms_token1] = ACTIONS(735), - [aux_sym_known_hosts_command_token1] = ACTIONS(735), - [aux_sym_local_command_token1] = ACTIONS(735), - [aux_sym_local_forward_token1] = ACTIONS(735), - [aux_sym_log_level_token1] = ACTIONS(735), - [aux_sym_log_verbose_token1] = ACTIONS(735), - [aux_sym_macs_token1] = ACTIONS(735), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(735), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(735), - [aux_sym_password_authentication_token1] = ACTIONS(735), - [aux_sym_permit_local_command_token1] = ACTIONS(735), - [aux_sym_permit_remote_open_token1] = ACTIONS(735), - [aux_sym_pkcs11_provider_token1] = ACTIONS(735), - [aux_sym_port_token1] = ACTIONS(735), - [aux_sym_preferred_authentications_token1] = ACTIONS(735), - [aux_sym_protocol_token1] = ACTIONS(735), - [aux_sym_proxy_command_token1] = ACTIONS(735), - [aux_sym_proxy_jump_token1] = ACTIONS(735), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(735), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(735), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(735), - [aux_sym_pubkey_authentication_token1] = ACTIONS(735), - [aux_sym_rekey_limit_token1] = ACTIONS(735), - [aux_sym_remote_command_token1] = ACTIONS(735), - [aux_sym_remote_forward_token1] = ACTIONS(735), - [aux_sym_request_tty_token1] = ACTIONS(735), - [aux_sym_required_rsa_size_token1] = ACTIONS(735), - [aux_sym_revoked_host_keys_token1] = ACTIONS(735), - [aux_sym_security_key_provider_token1] = ACTIONS(735), - [aux_sym_send_env_token1] = ACTIONS(735), - [aux_sym_server_alive_count_max_token1] = ACTIONS(735), - [aux_sym_server_alive_interval_token1] = ACTIONS(735), - [aux_sym_session_type_token1] = ACTIONS(735), - [aux_sym_set_env_token1] = ACTIONS(735), - [aux_sym_stdin_null_token1] = ACTIONS(735), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(735), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(735), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(735), - [aux_sym_syslog_facility_token1] = ACTIONS(735), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(735), - [aux_sym_keep_alive_token1] = ACTIONS(735), - [aux_sym_tunnel_token1] = ACTIONS(737), - [aux_sym_tunnel_device_token1] = ACTIONS(735), - [aux_sym_update_host_keys_token1] = ACTIONS(735), - [aux_sym_use_keychain_token1] = ACTIONS(735), - [aux_sym_use_roaming_token1] = ACTIONS(735), - [aux_sym_user_token1] = ACTIONS(737), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(735), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(735), - [aux_sym_visual_host_key_token1] = ACTIONS(735), - [aux_sym_xauth_location_token1] = ACTIONS(735), + [ts_builtin_sym_end] = ACTIONS(740), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [aux_sym_match_token1] = ACTIONS(740), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(740), + [aux_sym_address_family_token1] = ACTIONS(740), + [aux_sym_batch_mode_token1] = ACTIONS(740), + [aux_sym_bind_address_token1] = ACTIONS(740), + [aux_sym_bind_interface_token1] = ACTIONS(740), + [aux_sym_canonical_domains_token1] = ACTIONS(740), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(740), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(740), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(740), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(740), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(740), + [aux_sym_certificate_file_token1] = ACTIONS(740), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(740), + [aux_sym_check_host_ip_token1] = ACTIONS(740), + [aux_sym_ciphers_token1] = ACTIONS(740), + [aux_sym_cipher_token1] = ACTIONS(742), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(740), + [aux_sym_compression_token1] = ACTIONS(740), + [aux_sym_connection_attempts_token1] = ACTIONS(740), + [aux_sym_connect_timeout_token1] = ACTIONS(740), + [aux_sym_control_master_token1] = ACTIONS(740), + [aux_sym_control_path_token1] = ACTIONS(740), + [aux_sym_control_persist_token1] = ACTIONS(740), + [aux_sym_dynamic_forward_token1] = ACTIONS(740), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(740), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(740), + [aux_sym_escape_char_token1] = ACTIONS(740), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(740), + [aux_sym_fingerprint_hash_token1] = ACTIONS(740), + [aux_sym_fork_after_authentication_token1] = ACTIONS(740), + [aux_sym_forward_agent_token1] = ACTIONS(740), + [aux_sym_forward_x11_token1] = ACTIONS(742), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(740), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(740), + [aux_sym_gateway_ports_token1] = ACTIONS(740), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(740), + [aux_sym_gssapi_authentication_token1] = ACTIONS(740), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(740), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(740), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(740), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(740), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(740), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(740), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(740), + [aux_sym_hash_known_hosts_token1] = ACTIONS(740), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(740), + [aux_sym_hostbased_authentication_token1] = ACTIONS(740), + [aux_sym_host_key_algorithms_token1] = ACTIONS(740), + [aux_sym_host_key_alias_token1] = ACTIONS(740), + [aux_sym_hostname_token1] = ACTIONS(740), + [aux_sym_identities_only_token1] = ACTIONS(740), + [aux_sym_identity_agent_token1] = ACTIONS(740), + [aux_sym_identity_file_token1] = ACTIONS(740), + [aux_sym_ignore_unknown_token1] = ACTIONS(740), + [aux_sym_include_token1] = ACTIONS(740), + [aux_sym_ip_qos_token1] = ACTIONS(740), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(740), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(740), + [aux_sym_kex_algorithms_token1] = ACTIONS(740), + [aux_sym_known_hosts_command_token1] = ACTIONS(740), + [aux_sym_local_command_token1] = ACTIONS(740), + [aux_sym_local_forward_token1] = ACTIONS(740), + [aux_sym_log_level_token1] = ACTIONS(740), + [aux_sym_log_verbose_token1] = ACTIONS(740), + [aux_sym_macs_token1] = ACTIONS(740), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(740), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(740), + [aux_sym_password_authentication_token1] = ACTIONS(740), + [aux_sym_permit_local_command_token1] = ACTIONS(740), + [aux_sym_permit_remote_open_token1] = ACTIONS(740), + [aux_sym_pkcs11_provider_token1] = ACTIONS(740), + [aux_sym_port_token1] = ACTIONS(740), + [aux_sym_preferred_authentications_token1] = ACTIONS(740), + [aux_sym_protocol_token1] = ACTIONS(740), + [aux_sym_proxy_command_token1] = ACTIONS(740), + [aux_sym_proxy_jump_token1] = ACTIONS(740), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(740), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(740), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(740), + [aux_sym_pubkey_authentication_token1] = ACTIONS(740), + [aux_sym_rekey_limit_token1] = ACTIONS(740), + [aux_sym_remote_command_token1] = ACTIONS(740), + [aux_sym_remote_forward_token1] = ACTIONS(740), + [aux_sym_request_tty_token1] = ACTIONS(740), + [aux_sym_required_rsa_size_token1] = ACTIONS(740), + [aux_sym_revoked_host_keys_token1] = ACTIONS(740), + [aux_sym_security_key_provider_token1] = ACTIONS(740), + [aux_sym_send_env_token1] = ACTIONS(740), + [aux_sym_server_alive_count_max_token1] = ACTIONS(740), + [aux_sym_server_alive_interval_token1] = ACTIONS(740), + [aux_sym_session_type_token1] = ACTIONS(740), + [aux_sym_set_env_token1] = ACTIONS(740), + [aux_sym_stdin_null_token1] = ACTIONS(740), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(740), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(740), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(740), + [aux_sym_syslog_facility_token1] = ACTIONS(740), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(740), + [aux_sym_keep_alive_token1] = ACTIONS(740), + [aux_sym_tunnel_token1] = ACTIONS(742), + [aux_sym_tunnel_device_token1] = ACTIONS(740), + [aux_sym_update_host_keys_token1] = ACTIONS(740), + [aux_sym_use_keychain_token1] = ACTIONS(740), + [aux_sym_use_roaming_token1] = ACTIONS(740), + [aux_sym_user_token1] = ACTIONS(742), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(740), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(740), + [aux_sym_visual_host_key_token1] = ACTIONS(740), + [aux_sym_xauth_location_token1] = ACTIONS(740), }, [34] = { - [ts_builtin_sym_end] = ACTIONS(741), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(743), - [anon_sym_DQUOTE] = ACTIONS(745), - [aux_sym_match_token1] = ACTIONS(741), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(741), - [aux_sym_address_family_token1] = ACTIONS(741), - [aux_sym_batch_mode_token1] = ACTIONS(741), - [aux_sym_bind_address_token1] = ACTIONS(741), - [aux_sym_bind_interface_token1] = ACTIONS(741), - [aux_sym_canonical_domains_token1] = ACTIONS(741), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(741), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(741), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(741), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(741), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(741), - [aux_sym_certificate_file_token1] = ACTIONS(741), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(741), - [aux_sym_check_host_ip_token1] = ACTIONS(741), - [aux_sym_ciphers_token1] = ACTIONS(741), - [aux_sym_cipher_token1] = ACTIONS(743), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(741), - [aux_sym_compression_token1] = ACTIONS(741), - [aux_sym_connection_attempts_token1] = ACTIONS(741), - [aux_sym_connect_timeout_token1] = ACTIONS(741), - [aux_sym_control_master_token1] = ACTIONS(741), - [aux_sym_control_path_token1] = ACTIONS(741), - [aux_sym_control_persist_token1] = ACTIONS(741), - [aux_sym_dynamic_forward_token1] = ACTIONS(741), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(741), - [aux_sym_escape_char_token1] = ACTIONS(741), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(741), - [aux_sym_fingerprint_hash_token1] = ACTIONS(741), - [aux_sym_fork_after_authentication_token1] = ACTIONS(741), - [aux_sym_forward_agent_token1] = ACTIONS(741), - [aux_sym_forward_x11_token1] = ACTIONS(743), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(741), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(741), - [aux_sym_gateway_ports_token1] = ACTIONS(741), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(741), - [aux_sym_gssapi_authentication_token1] = ACTIONS(741), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(741), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(741), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(741), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(741), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(741), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(741), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(741), - [aux_sym_hash_known_hosts_token1] = ACTIONS(741), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(741), - [aux_sym_hostbased_authentication_token1] = ACTIONS(741), - [aux_sym_host_key_algorithms_token1] = ACTIONS(741), - [aux_sym_host_key_alias_token1] = ACTIONS(741), - [aux_sym_hostname_token1] = ACTIONS(741), - [aux_sym_identities_only_token1] = ACTIONS(741), - [aux_sym_identity_agent_token1] = ACTIONS(741), - [aux_sym_identity_file_token1] = ACTIONS(741), - [aux_sym_ignore_unknown_token1] = ACTIONS(741), - [aux_sym_include_token1] = ACTIONS(741), - [aux_sym_ip_qos_token1] = ACTIONS(741), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(741), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(741), - [aux_sym_kex_algorithms_token1] = ACTIONS(741), - [aux_sym_known_hosts_command_token1] = ACTIONS(741), - [aux_sym_local_command_token1] = ACTIONS(741), - [aux_sym_local_forward_token1] = ACTIONS(741), - [aux_sym_log_level_token1] = ACTIONS(741), - [aux_sym_log_verbose_token1] = ACTIONS(741), - [aux_sym_macs_token1] = ACTIONS(741), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(741), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(741), - [aux_sym_password_authentication_token1] = ACTIONS(741), - [aux_sym_permit_local_command_token1] = ACTIONS(741), - [aux_sym_permit_remote_open_token1] = ACTIONS(741), - [aux_sym_pkcs11_provider_token1] = ACTIONS(741), - [aux_sym_port_token1] = ACTIONS(741), - [aux_sym_preferred_authentications_token1] = ACTIONS(741), - [aux_sym_protocol_token1] = ACTIONS(741), - [aux_sym_proxy_command_token1] = ACTIONS(741), - [aux_sym_proxy_jump_token1] = ACTIONS(741), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(741), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(741), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(741), - [aux_sym_pubkey_authentication_token1] = ACTIONS(741), - [aux_sym_rekey_limit_token1] = ACTIONS(741), - [aux_sym_remote_command_token1] = ACTIONS(741), - [aux_sym_remote_forward_token1] = ACTIONS(741), - [aux_sym_request_tty_token1] = ACTIONS(741), - [aux_sym_required_rsa_size_token1] = ACTIONS(741), - [aux_sym_revoked_host_keys_token1] = ACTIONS(741), - [aux_sym_security_key_provider_token1] = ACTIONS(741), - [aux_sym_send_env_token1] = ACTIONS(741), - [aux_sym_server_alive_count_max_token1] = ACTIONS(741), - [aux_sym_server_alive_interval_token1] = ACTIONS(741), - [aux_sym_session_type_token1] = ACTIONS(741), - [aux_sym_set_env_token1] = ACTIONS(741), - [aux_sym_stdin_null_token1] = ACTIONS(741), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(741), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(741), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(741), - [aux_sym_syslog_facility_token1] = ACTIONS(741), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(741), - [aux_sym_keep_alive_token1] = ACTIONS(741), - [aux_sym_tunnel_token1] = ACTIONS(743), - [aux_sym_tunnel_device_token1] = ACTIONS(741), - [aux_sym_update_host_keys_token1] = ACTIONS(741), - [aux_sym_use_keychain_token1] = ACTIONS(741), - [aux_sym_use_roaming_token1] = ACTIONS(741), - [aux_sym_user_token1] = ACTIONS(743), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(741), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(741), - [aux_sym_visual_host_key_token1] = ACTIONS(741), - [aux_sym_xauth_location_token1] = ACTIONS(741), + [ts_builtin_sym_end] = ACTIONS(746), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(750), + [aux_sym_match_token1] = ACTIONS(746), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(746), + [aux_sym_address_family_token1] = ACTIONS(746), + [aux_sym_batch_mode_token1] = ACTIONS(746), + [aux_sym_bind_address_token1] = ACTIONS(746), + [aux_sym_bind_interface_token1] = ACTIONS(746), + [aux_sym_canonical_domains_token1] = ACTIONS(746), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(746), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(746), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(746), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(746), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(746), + [aux_sym_certificate_file_token1] = ACTIONS(746), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(746), + [aux_sym_check_host_ip_token1] = ACTIONS(746), + [aux_sym_ciphers_token1] = ACTIONS(746), + [aux_sym_cipher_token1] = ACTIONS(748), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(746), + [aux_sym_compression_token1] = ACTIONS(746), + [aux_sym_connection_attempts_token1] = ACTIONS(746), + [aux_sym_connect_timeout_token1] = ACTIONS(746), + [aux_sym_control_master_token1] = ACTIONS(746), + [aux_sym_control_path_token1] = ACTIONS(746), + [aux_sym_control_persist_token1] = ACTIONS(746), + [aux_sym_dynamic_forward_token1] = ACTIONS(746), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(746), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(746), + [aux_sym_escape_char_token1] = ACTIONS(746), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(746), + [aux_sym_fingerprint_hash_token1] = ACTIONS(746), + [aux_sym_fork_after_authentication_token1] = ACTIONS(746), + [aux_sym_forward_agent_token1] = ACTIONS(746), + [aux_sym_forward_x11_token1] = ACTIONS(748), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(746), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(746), + [aux_sym_gateway_ports_token1] = ACTIONS(746), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(746), + [aux_sym_gssapi_authentication_token1] = ACTIONS(746), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(746), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(746), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(746), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(746), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(746), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(746), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(746), + [aux_sym_hash_known_hosts_token1] = ACTIONS(746), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(746), + [aux_sym_hostbased_authentication_token1] = ACTIONS(746), + [aux_sym_host_key_algorithms_token1] = ACTIONS(746), + [aux_sym_host_key_alias_token1] = ACTIONS(746), + [aux_sym_hostname_token1] = ACTIONS(746), + [aux_sym_identities_only_token1] = ACTIONS(746), + [aux_sym_identity_agent_token1] = ACTIONS(746), + [aux_sym_identity_file_token1] = ACTIONS(746), + [aux_sym_ignore_unknown_token1] = ACTIONS(746), + [aux_sym_include_token1] = ACTIONS(746), + [aux_sym_ip_qos_token1] = ACTIONS(746), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(746), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(746), + [aux_sym_kex_algorithms_token1] = ACTIONS(746), + [aux_sym_known_hosts_command_token1] = ACTIONS(746), + [aux_sym_local_command_token1] = ACTIONS(746), + [aux_sym_local_forward_token1] = ACTIONS(746), + [aux_sym_log_level_token1] = ACTIONS(746), + [aux_sym_log_verbose_token1] = ACTIONS(746), + [aux_sym_macs_token1] = ACTIONS(746), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(746), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(746), + [aux_sym_password_authentication_token1] = ACTIONS(746), + [aux_sym_permit_local_command_token1] = ACTIONS(746), + [aux_sym_permit_remote_open_token1] = ACTIONS(746), + [aux_sym_pkcs11_provider_token1] = ACTIONS(746), + [aux_sym_port_token1] = ACTIONS(746), + [aux_sym_preferred_authentications_token1] = ACTIONS(746), + [aux_sym_protocol_token1] = ACTIONS(746), + [aux_sym_proxy_command_token1] = ACTIONS(746), + [aux_sym_proxy_jump_token1] = ACTIONS(746), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(746), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(746), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(746), + [aux_sym_pubkey_authentication_token1] = ACTIONS(746), + [aux_sym_rekey_limit_token1] = ACTIONS(746), + [aux_sym_remote_command_token1] = ACTIONS(746), + [aux_sym_remote_forward_token1] = ACTIONS(746), + [aux_sym_request_tty_token1] = ACTIONS(746), + [aux_sym_required_rsa_size_token1] = ACTIONS(746), + [aux_sym_revoked_host_keys_token1] = ACTIONS(746), + [aux_sym_security_key_provider_token1] = ACTIONS(746), + [aux_sym_send_env_token1] = ACTIONS(746), + [aux_sym_server_alive_count_max_token1] = ACTIONS(746), + [aux_sym_server_alive_interval_token1] = ACTIONS(746), + [aux_sym_session_type_token1] = ACTIONS(746), + [aux_sym_set_env_token1] = ACTIONS(746), + [aux_sym_stdin_null_token1] = ACTIONS(746), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(746), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(746), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(746), + [aux_sym_syslog_facility_token1] = ACTIONS(746), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(746), + [aux_sym_keep_alive_token1] = ACTIONS(746), + [aux_sym_tunnel_token1] = ACTIONS(748), + [aux_sym_tunnel_device_token1] = ACTIONS(746), + [aux_sym_update_host_keys_token1] = ACTIONS(746), + [aux_sym_use_keychain_token1] = ACTIONS(746), + [aux_sym_use_roaming_token1] = ACTIONS(746), + [aux_sym_user_token1] = ACTIONS(748), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(746), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(746), + [aux_sym_visual_host_key_token1] = ACTIONS(746), + [aux_sym_xauth_location_token1] = ACTIONS(746), }, [35] = { - [ts_builtin_sym_end] = ACTIONS(747), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(751), - [aux_sym_match_token1] = ACTIONS(747), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(747), - [aux_sym_address_family_token1] = ACTIONS(747), - [aux_sym_batch_mode_token1] = ACTIONS(747), - [aux_sym_bind_address_token1] = ACTIONS(747), - [aux_sym_bind_interface_token1] = ACTIONS(747), - [aux_sym_canonical_domains_token1] = ACTIONS(747), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(747), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(747), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(747), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(747), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(747), - [aux_sym_certificate_file_token1] = ACTIONS(747), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(747), - [aux_sym_check_host_ip_token1] = ACTIONS(747), - [aux_sym_ciphers_token1] = ACTIONS(747), - [aux_sym_cipher_token1] = ACTIONS(749), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(747), - [aux_sym_compression_token1] = ACTIONS(747), - [aux_sym_connection_attempts_token1] = ACTIONS(747), - [aux_sym_connect_timeout_token1] = ACTIONS(747), - [aux_sym_control_master_token1] = ACTIONS(747), - [aux_sym_control_path_token1] = ACTIONS(747), - [aux_sym_control_persist_token1] = ACTIONS(747), - [aux_sym_dynamic_forward_token1] = ACTIONS(747), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(747), - [aux_sym_escape_char_token1] = ACTIONS(747), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(747), - [aux_sym_fingerprint_hash_token1] = ACTIONS(747), - [aux_sym_fork_after_authentication_token1] = ACTIONS(747), - [aux_sym_forward_agent_token1] = ACTIONS(747), - [aux_sym_forward_x11_token1] = ACTIONS(749), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(747), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(747), - [aux_sym_gateway_ports_token1] = ACTIONS(747), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(747), - [aux_sym_gssapi_authentication_token1] = ACTIONS(747), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(747), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(747), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(747), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(747), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(747), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(747), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(747), - [aux_sym_hash_known_hosts_token1] = ACTIONS(747), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(747), - [aux_sym_hostbased_authentication_token1] = ACTIONS(747), - [aux_sym_host_key_algorithms_token1] = ACTIONS(747), - [aux_sym_host_key_alias_token1] = ACTIONS(747), - [aux_sym_hostname_token1] = ACTIONS(747), - [aux_sym_identities_only_token1] = ACTIONS(747), - [aux_sym_identity_agent_token1] = ACTIONS(747), - [aux_sym_identity_file_token1] = ACTIONS(747), - [aux_sym_ignore_unknown_token1] = ACTIONS(747), - [aux_sym_include_token1] = ACTIONS(747), - [aux_sym_ip_qos_token1] = ACTIONS(747), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(747), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(747), - [aux_sym_kex_algorithms_token1] = ACTIONS(747), - [aux_sym_known_hosts_command_token1] = ACTIONS(747), - [aux_sym_local_command_token1] = ACTIONS(747), - [aux_sym_local_forward_token1] = ACTIONS(747), - [aux_sym_log_level_token1] = ACTIONS(747), - [aux_sym_log_verbose_token1] = ACTIONS(747), - [aux_sym_macs_token1] = ACTIONS(747), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(747), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(747), - [aux_sym_password_authentication_token1] = ACTIONS(747), - [aux_sym_permit_local_command_token1] = ACTIONS(747), - [aux_sym_permit_remote_open_token1] = ACTIONS(747), - [aux_sym_pkcs11_provider_token1] = ACTIONS(747), - [aux_sym_port_token1] = ACTIONS(747), - [aux_sym_preferred_authentications_token1] = ACTIONS(747), - [aux_sym_protocol_token1] = ACTIONS(747), - [aux_sym_proxy_command_token1] = ACTIONS(747), - [aux_sym_proxy_jump_token1] = ACTIONS(747), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(747), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(747), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(747), - [aux_sym_pubkey_authentication_token1] = ACTIONS(747), - [aux_sym_rekey_limit_token1] = ACTIONS(747), - [aux_sym_remote_command_token1] = ACTIONS(747), - [aux_sym_remote_forward_token1] = ACTIONS(747), - [aux_sym_request_tty_token1] = ACTIONS(747), - [aux_sym_required_rsa_size_token1] = ACTIONS(747), - [aux_sym_revoked_host_keys_token1] = ACTIONS(747), - [aux_sym_security_key_provider_token1] = ACTIONS(747), - [aux_sym_send_env_token1] = ACTIONS(747), - [aux_sym_server_alive_count_max_token1] = ACTIONS(747), - [aux_sym_server_alive_interval_token1] = ACTIONS(747), - [aux_sym_session_type_token1] = ACTIONS(747), - [aux_sym_set_env_token1] = ACTIONS(747), - [aux_sym_stdin_null_token1] = ACTIONS(747), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(747), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(747), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(747), - [aux_sym_syslog_facility_token1] = ACTIONS(747), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(747), - [aux_sym_keep_alive_token1] = ACTIONS(747), - [aux_sym_tunnel_token1] = ACTIONS(749), - [aux_sym_tunnel_device_token1] = ACTIONS(747), - [aux_sym_update_host_keys_token1] = ACTIONS(747), - [aux_sym_use_keychain_token1] = ACTIONS(747), - [aux_sym_use_roaming_token1] = ACTIONS(747), - [aux_sym_user_token1] = ACTIONS(749), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(747), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(747), - [aux_sym_visual_host_key_token1] = ACTIONS(747), - [aux_sym_xauth_location_token1] = ACTIONS(747), + [ts_builtin_sym_end] = ACTIONS(752), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(754), + [anon_sym_DQUOTE] = ACTIONS(756), + [aux_sym_match_token1] = ACTIONS(752), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(752), + [aux_sym_address_family_token1] = ACTIONS(752), + [aux_sym_batch_mode_token1] = ACTIONS(752), + [aux_sym_bind_address_token1] = ACTIONS(752), + [aux_sym_bind_interface_token1] = ACTIONS(752), + [aux_sym_canonical_domains_token1] = ACTIONS(752), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(752), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(752), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(752), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(752), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(752), + [aux_sym_certificate_file_token1] = ACTIONS(752), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(752), + [aux_sym_check_host_ip_token1] = ACTIONS(752), + [aux_sym_ciphers_token1] = ACTIONS(752), + [aux_sym_cipher_token1] = ACTIONS(754), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(752), + [aux_sym_compression_token1] = ACTIONS(752), + [aux_sym_connection_attempts_token1] = ACTIONS(752), + [aux_sym_connect_timeout_token1] = ACTIONS(752), + [aux_sym_control_master_token1] = ACTIONS(752), + [aux_sym_control_path_token1] = ACTIONS(752), + [aux_sym_control_persist_token1] = ACTIONS(752), + [aux_sym_dynamic_forward_token1] = ACTIONS(752), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(752), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(752), + [aux_sym_escape_char_token1] = ACTIONS(752), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(752), + [aux_sym_fingerprint_hash_token1] = ACTIONS(752), + [aux_sym_fork_after_authentication_token1] = ACTIONS(752), + [aux_sym_forward_agent_token1] = ACTIONS(752), + [aux_sym_forward_x11_token1] = ACTIONS(754), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(752), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(752), + [aux_sym_gateway_ports_token1] = ACTIONS(752), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(752), + [aux_sym_gssapi_authentication_token1] = ACTIONS(752), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(752), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(752), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(752), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(752), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(752), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(752), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(752), + [aux_sym_hash_known_hosts_token1] = ACTIONS(752), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(752), + [aux_sym_hostbased_authentication_token1] = ACTIONS(752), + [aux_sym_host_key_algorithms_token1] = ACTIONS(752), + [aux_sym_host_key_alias_token1] = ACTIONS(752), + [aux_sym_hostname_token1] = ACTIONS(752), + [aux_sym_identities_only_token1] = ACTIONS(752), + [aux_sym_identity_agent_token1] = ACTIONS(752), + [aux_sym_identity_file_token1] = ACTIONS(752), + [aux_sym_ignore_unknown_token1] = ACTIONS(752), + [aux_sym_include_token1] = ACTIONS(752), + [aux_sym_ip_qos_token1] = ACTIONS(752), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(752), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(752), + [aux_sym_kex_algorithms_token1] = ACTIONS(752), + [aux_sym_known_hosts_command_token1] = ACTIONS(752), + [aux_sym_local_command_token1] = ACTIONS(752), + [aux_sym_local_forward_token1] = ACTIONS(752), + [aux_sym_log_level_token1] = ACTIONS(752), + [aux_sym_log_verbose_token1] = ACTIONS(752), + [aux_sym_macs_token1] = ACTIONS(752), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(752), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(752), + [aux_sym_password_authentication_token1] = ACTIONS(752), + [aux_sym_permit_local_command_token1] = ACTIONS(752), + [aux_sym_permit_remote_open_token1] = ACTIONS(752), + [aux_sym_pkcs11_provider_token1] = ACTIONS(752), + [aux_sym_port_token1] = ACTIONS(752), + [aux_sym_preferred_authentications_token1] = ACTIONS(752), + [aux_sym_protocol_token1] = ACTIONS(752), + [aux_sym_proxy_command_token1] = ACTIONS(752), + [aux_sym_proxy_jump_token1] = ACTIONS(752), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(752), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(752), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(752), + [aux_sym_pubkey_authentication_token1] = ACTIONS(752), + [aux_sym_rekey_limit_token1] = ACTIONS(752), + [aux_sym_remote_command_token1] = ACTIONS(752), + [aux_sym_remote_forward_token1] = ACTIONS(752), + [aux_sym_request_tty_token1] = ACTIONS(752), + [aux_sym_required_rsa_size_token1] = ACTIONS(752), + [aux_sym_revoked_host_keys_token1] = ACTIONS(752), + [aux_sym_security_key_provider_token1] = ACTIONS(752), + [aux_sym_send_env_token1] = ACTIONS(752), + [aux_sym_server_alive_count_max_token1] = ACTIONS(752), + [aux_sym_server_alive_interval_token1] = ACTIONS(752), + [aux_sym_session_type_token1] = ACTIONS(752), + [aux_sym_set_env_token1] = ACTIONS(752), + [aux_sym_stdin_null_token1] = ACTIONS(752), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(752), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(752), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(752), + [aux_sym_syslog_facility_token1] = ACTIONS(752), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(752), + [aux_sym_keep_alive_token1] = ACTIONS(752), + [aux_sym_tunnel_token1] = ACTIONS(754), + [aux_sym_tunnel_device_token1] = ACTIONS(752), + [aux_sym_update_host_keys_token1] = ACTIONS(752), + [aux_sym_use_keychain_token1] = ACTIONS(752), + [aux_sym_use_roaming_token1] = ACTIONS(752), + [aux_sym_user_token1] = ACTIONS(754), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(752), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(752), + [aux_sym_visual_host_key_token1] = ACTIONS(752), + [aux_sym_xauth_location_token1] = ACTIONS(752), }, [36] = { - [ts_builtin_sym_end] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(757), - [aux_sym_match_token1] = ACTIONS(753), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(753), - [aux_sym_address_family_token1] = ACTIONS(753), - [aux_sym_batch_mode_token1] = ACTIONS(753), - [aux_sym_bind_address_token1] = ACTIONS(753), - [aux_sym_bind_interface_token1] = ACTIONS(753), - [aux_sym_canonical_domains_token1] = ACTIONS(753), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(753), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(753), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(753), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(753), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(753), - [aux_sym_certificate_file_token1] = ACTIONS(753), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(753), - [aux_sym_check_host_ip_token1] = ACTIONS(753), - [aux_sym_ciphers_token1] = ACTIONS(753), - [aux_sym_cipher_token1] = ACTIONS(755), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(753), - [aux_sym_compression_token1] = ACTIONS(753), - [aux_sym_connection_attempts_token1] = ACTIONS(753), - [aux_sym_connect_timeout_token1] = ACTIONS(753), - [aux_sym_control_master_token1] = ACTIONS(753), - [aux_sym_control_path_token1] = ACTIONS(753), - [aux_sym_control_persist_token1] = ACTIONS(753), - [aux_sym_dynamic_forward_token1] = ACTIONS(753), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(753), - [aux_sym_escape_char_token1] = ACTIONS(753), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(753), - [aux_sym_fingerprint_hash_token1] = ACTIONS(753), - [aux_sym_fork_after_authentication_token1] = ACTIONS(753), - [aux_sym_forward_agent_token1] = ACTIONS(753), - [aux_sym_forward_x11_token1] = ACTIONS(755), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(753), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(753), - [aux_sym_gateway_ports_token1] = ACTIONS(753), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(753), - [aux_sym_gssapi_authentication_token1] = ACTIONS(753), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(753), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(753), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(753), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(753), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(753), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(753), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(753), - [aux_sym_hash_known_hosts_token1] = ACTIONS(753), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(753), - [aux_sym_hostbased_authentication_token1] = ACTIONS(753), - [aux_sym_host_key_algorithms_token1] = ACTIONS(753), - [aux_sym_host_key_alias_token1] = ACTIONS(753), - [aux_sym_hostname_token1] = ACTIONS(753), - [aux_sym_identities_only_token1] = ACTIONS(753), - [aux_sym_identity_agent_token1] = ACTIONS(753), - [aux_sym_identity_file_token1] = ACTIONS(753), - [aux_sym_ignore_unknown_token1] = ACTIONS(753), - [aux_sym_include_token1] = ACTIONS(753), - [aux_sym_ip_qos_token1] = ACTIONS(753), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(753), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(753), - [aux_sym_kex_algorithms_token1] = ACTIONS(753), - [aux_sym_known_hosts_command_token1] = ACTIONS(753), - [aux_sym_local_command_token1] = ACTIONS(753), - [aux_sym_local_forward_token1] = ACTIONS(753), - [aux_sym_log_level_token1] = ACTIONS(753), - [aux_sym_log_verbose_token1] = ACTIONS(753), - [aux_sym_macs_token1] = ACTIONS(753), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(753), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(753), - [aux_sym_password_authentication_token1] = ACTIONS(753), - [aux_sym_permit_local_command_token1] = ACTIONS(753), - [aux_sym_permit_remote_open_token1] = ACTIONS(753), - [aux_sym_pkcs11_provider_token1] = ACTIONS(753), - [aux_sym_port_token1] = ACTIONS(753), - [aux_sym_preferred_authentications_token1] = ACTIONS(753), - [aux_sym_protocol_token1] = ACTIONS(753), - [aux_sym_proxy_command_token1] = ACTIONS(753), - [aux_sym_proxy_jump_token1] = ACTIONS(753), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(753), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(753), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(753), - [aux_sym_pubkey_authentication_token1] = ACTIONS(753), - [aux_sym_rekey_limit_token1] = ACTIONS(753), - [aux_sym_remote_command_token1] = ACTIONS(753), - [aux_sym_remote_forward_token1] = ACTIONS(753), - [aux_sym_request_tty_token1] = ACTIONS(753), - [aux_sym_required_rsa_size_token1] = ACTIONS(753), - [aux_sym_revoked_host_keys_token1] = ACTIONS(753), - [aux_sym_security_key_provider_token1] = ACTIONS(753), - [aux_sym_send_env_token1] = ACTIONS(753), - [aux_sym_server_alive_count_max_token1] = ACTIONS(753), - [aux_sym_server_alive_interval_token1] = ACTIONS(753), - [aux_sym_session_type_token1] = ACTIONS(753), - [aux_sym_set_env_token1] = ACTIONS(753), - [aux_sym_stdin_null_token1] = ACTIONS(753), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(753), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(753), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(753), - [aux_sym_syslog_facility_token1] = ACTIONS(753), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(753), - [aux_sym_keep_alive_token1] = ACTIONS(753), - [aux_sym_tunnel_token1] = ACTIONS(755), - [aux_sym_tunnel_device_token1] = ACTIONS(753), - [aux_sym_update_host_keys_token1] = ACTIONS(753), - [aux_sym_use_keychain_token1] = ACTIONS(753), - [aux_sym_use_roaming_token1] = ACTIONS(753), - [aux_sym_user_token1] = ACTIONS(755), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(753), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(753), - [aux_sym_visual_host_key_token1] = ACTIONS(753), - [aux_sym_xauth_location_token1] = ACTIONS(753), + [ts_builtin_sym_end] = ACTIONS(758), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(762), + [aux_sym_match_token1] = ACTIONS(758), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(758), + [aux_sym_address_family_token1] = ACTIONS(758), + [aux_sym_batch_mode_token1] = ACTIONS(758), + [aux_sym_bind_address_token1] = ACTIONS(758), + [aux_sym_bind_interface_token1] = ACTIONS(758), + [aux_sym_canonical_domains_token1] = ACTIONS(758), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(758), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(758), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(758), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(758), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(758), + [aux_sym_certificate_file_token1] = ACTIONS(758), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(758), + [aux_sym_check_host_ip_token1] = ACTIONS(758), + [aux_sym_ciphers_token1] = ACTIONS(758), + [aux_sym_cipher_token1] = ACTIONS(760), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(758), + [aux_sym_compression_token1] = ACTIONS(758), + [aux_sym_connection_attempts_token1] = ACTIONS(758), + [aux_sym_connect_timeout_token1] = ACTIONS(758), + [aux_sym_control_master_token1] = ACTIONS(758), + [aux_sym_control_path_token1] = ACTIONS(758), + [aux_sym_control_persist_token1] = ACTIONS(758), + [aux_sym_dynamic_forward_token1] = ACTIONS(758), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(758), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(758), + [aux_sym_escape_char_token1] = ACTIONS(758), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(758), + [aux_sym_fingerprint_hash_token1] = ACTIONS(758), + [aux_sym_fork_after_authentication_token1] = ACTIONS(758), + [aux_sym_forward_agent_token1] = ACTIONS(758), + [aux_sym_forward_x11_token1] = ACTIONS(760), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(758), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(758), + [aux_sym_gateway_ports_token1] = ACTIONS(758), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(758), + [aux_sym_gssapi_authentication_token1] = ACTIONS(758), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(758), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(758), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(758), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(758), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(758), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(758), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(758), + [aux_sym_hash_known_hosts_token1] = ACTIONS(758), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(758), + [aux_sym_hostbased_authentication_token1] = ACTIONS(758), + [aux_sym_host_key_algorithms_token1] = ACTIONS(758), + [aux_sym_host_key_alias_token1] = ACTIONS(758), + [aux_sym_hostname_token1] = ACTIONS(758), + [aux_sym_identities_only_token1] = ACTIONS(758), + [aux_sym_identity_agent_token1] = ACTIONS(758), + [aux_sym_identity_file_token1] = ACTIONS(758), + [aux_sym_ignore_unknown_token1] = ACTIONS(758), + [aux_sym_include_token1] = ACTIONS(758), + [aux_sym_ip_qos_token1] = ACTIONS(758), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(758), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(758), + [aux_sym_kex_algorithms_token1] = ACTIONS(758), + [aux_sym_known_hosts_command_token1] = ACTIONS(758), + [aux_sym_local_command_token1] = ACTIONS(758), + [aux_sym_local_forward_token1] = ACTIONS(758), + [aux_sym_log_level_token1] = ACTIONS(758), + [aux_sym_log_verbose_token1] = ACTIONS(758), + [aux_sym_macs_token1] = ACTIONS(758), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(758), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(758), + [aux_sym_password_authentication_token1] = ACTIONS(758), + [aux_sym_permit_local_command_token1] = ACTIONS(758), + [aux_sym_permit_remote_open_token1] = ACTIONS(758), + [aux_sym_pkcs11_provider_token1] = ACTIONS(758), + [aux_sym_port_token1] = ACTIONS(758), + [aux_sym_preferred_authentications_token1] = ACTIONS(758), + [aux_sym_protocol_token1] = ACTIONS(758), + [aux_sym_proxy_command_token1] = ACTIONS(758), + [aux_sym_proxy_jump_token1] = ACTIONS(758), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(758), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(758), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(758), + [aux_sym_pubkey_authentication_token1] = ACTIONS(758), + [aux_sym_rekey_limit_token1] = ACTIONS(758), + [aux_sym_remote_command_token1] = ACTIONS(758), + [aux_sym_remote_forward_token1] = ACTIONS(758), + [aux_sym_request_tty_token1] = ACTIONS(758), + [aux_sym_required_rsa_size_token1] = ACTIONS(758), + [aux_sym_revoked_host_keys_token1] = ACTIONS(758), + [aux_sym_security_key_provider_token1] = ACTIONS(758), + [aux_sym_send_env_token1] = ACTIONS(758), + [aux_sym_server_alive_count_max_token1] = ACTIONS(758), + [aux_sym_server_alive_interval_token1] = ACTIONS(758), + [aux_sym_session_type_token1] = ACTIONS(758), + [aux_sym_set_env_token1] = ACTIONS(758), + [aux_sym_stdin_null_token1] = ACTIONS(758), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(758), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(758), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(758), + [aux_sym_syslog_facility_token1] = ACTIONS(758), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(758), + [aux_sym_keep_alive_token1] = ACTIONS(758), + [aux_sym_tunnel_token1] = ACTIONS(760), + [aux_sym_tunnel_device_token1] = ACTIONS(758), + [aux_sym_update_host_keys_token1] = ACTIONS(758), + [aux_sym_use_keychain_token1] = ACTIONS(758), + [aux_sym_use_roaming_token1] = ACTIONS(758), + [aux_sym_user_token1] = ACTIONS(760), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(758), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(758), + [aux_sym_visual_host_key_token1] = ACTIONS(758), + [aux_sym_xauth_location_token1] = ACTIONS(758), }, [37] = { - [ts_builtin_sym_end] = ACTIONS(759), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(761), - [anon_sym_DQUOTE] = ACTIONS(763), - [aux_sym_match_token1] = ACTIONS(759), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(759), - [aux_sym_address_family_token1] = ACTIONS(759), - [aux_sym_batch_mode_token1] = ACTIONS(759), - [aux_sym_bind_address_token1] = ACTIONS(759), - [aux_sym_bind_interface_token1] = ACTIONS(759), - [aux_sym_canonical_domains_token1] = ACTIONS(759), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(759), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(759), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(759), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(759), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(759), - [aux_sym_certificate_file_token1] = ACTIONS(759), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(759), - [aux_sym_check_host_ip_token1] = ACTIONS(759), - [aux_sym_ciphers_token1] = ACTIONS(759), - [aux_sym_cipher_token1] = ACTIONS(761), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(759), - [aux_sym_compression_token1] = ACTIONS(759), - [aux_sym_connection_attempts_token1] = ACTIONS(759), - [aux_sym_connect_timeout_token1] = ACTIONS(759), - [aux_sym_control_master_token1] = ACTIONS(759), - [aux_sym_control_path_token1] = ACTIONS(759), - [aux_sym_control_persist_token1] = ACTIONS(759), - [aux_sym_dynamic_forward_token1] = ACTIONS(759), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(759), - [aux_sym_escape_char_token1] = ACTIONS(759), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(759), - [aux_sym_fingerprint_hash_token1] = ACTIONS(759), - [aux_sym_fork_after_authentication_token1] = ACTIONS(759), - [aux_sym_forward_agent_token1] = ACTIONS(759), - [aux_sym_forward_x11_token1] = ACTIONS(761), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(759), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(759), - [aux_sym_gateway_ports_token1] = ACTIONS(759), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(759), - [aux_sym_gssapi_authentication_token1] = ACTIONS(759), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(759), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(759), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(759), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(759), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(759), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(759), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(759), - [aux_sym_hash_known_hosts_token1] = ACTIONS(759), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(759), - [aux_sym_hostbased_authentication_token1] = ACTIONS(759), - [aux_sym_host_key_algorithms_token1] = ACTIONS(759), - [aux_sym_host_key_alias_token1] = ACTIONS(759), - [aux_sym_hostname_token1] = ACTIONS(759), - [aux_sym_identities_only_token1] = ACTIONS(759), - [aux_sym_identity_agent_token1] = ACTIONS(759), - [aux_sym_identity_file_token1] = ACTIONS(759), - [aux_sym_ignore_unknown_token1] = ACTIONS(759), - [aux_sym_include_token1] = ACTIONS(759), - [aux_sym_ip_qos_token1] = ACTIONS(759), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(759), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(759), - [aux_sym_kex_algorithms_token1] = ACTIONS(759), - [aux_sym_known_hosts_command_token1] = ACTIONS(759), - [aux_sym_local_command_token1] = ACTIONS(759), - [aux_sym_local_forward_token1] = ACTIONS(759), - [aux_sym_log_level_token1] = ACTIONS(759), - [aux_sym_log_verbose_token1] = ACTIONS(759), - [aux_sym_macs_token1] = ACTIONS(759), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(759), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(759), - [aux_sym_password_authentication_token1] = ACTIONS(759), - [aux_sym_permit_local_command_token1] = ACTIONS(759), - [aux_sym_permit_remote_open_token1] = ACTIONS(759), - [aux_sym_pkcs11_provider_token1] = ACTIONS(759), - [aux_sym_port_token1] = ACTIONS(759), - [aux_sym_preferred_authentications_token1] = ACTIONS(759), - [aux_sym_protocol_token1] = ACTIONS(759), - [aux_sym_proxy_command_token1] = ACTIONS(759), - [aux_sym_proxy_jump_token1] = ACTIONS(759), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(759), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(759), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(759), - [aux_sym_pubkey_authentication_token1] = ACTIONS(759), - [aux_sym_rekey_limit_token1] = ACTIONS(759), - [aux_sym_remote_command_token1] = ACTIONS(759), - [aux_sym_remote_forward_token1] = ACTIONS(759), - [aux_sym_request_tty_token1] = ACTIONS(759), - [aux_sym_required_rsa_size_token1] = ACTIONS(759), - [aux_sym_revoked_host_keys_token1] = ACTIONS(759), - [aux_sym_security_key_provider_token1] = ACTIONS(759), - [aux_sym_send_env_token1] = ACTIONS(759), - [aux_sym_server_alive_count_max_token1] = ACTIONS(759), - [aux_sym_server_alive_interval_token1] = ACTIONS(759), - [aux_sym_session_type_token1] = ACTIONS(759), - [aux_sym_set_env_token1] = ACTIONS(759), - [aux_sym_stdin_null_token1] = ACTIONS(759), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(759), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(759), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(759), - [aux_sym_syslog_facility_token1] = ACTIONS(759), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(759), - [aux_sym_keep_alive_token1] = ACTIONS(759), - [aux_sym_tunnel_token1] = ACTIONS(761), - [aux_sym_tunnel_device_token1] = ACTIONS(759), - [aux_sym_update_host_keys_token1] = ACTIONS(759), - [aux_sym_use_keychain_token1] = ACTIONS(759), - [aux_sym_use_roaming_token1] = ACTIONS(759), - [aux_sym_user_token1] = ACTIONS(761), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(759), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(759), - [aux_sym_visual_host_key_token1] = ACTIONS(759), - [aux_sym_xauth_location_token1] = ACTIONS(759), + [ts_builtin_sym_end] = ACTIONS(764), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(766), + [anon_sym_DQUOTE] = ACTIONS(768), + [aux_sym_match_token1] = ACTIONS(764), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(764), + [aux_sym_address_family_token1] = ACTIONS(764), + [aux_sym_batch_mode_token1] = ACTIONS(764), + [aux_sym_bind_address_token1] = ACTIONS(764), + [aux_sym_bind_interface_token1] = ACTIONS(764), + [aux_sym_canonical_domains_token1] = ACTIONS(764), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(764), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(764), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(764), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(764), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(764), + [aux_sym_certificate_file_token1] = ACTIONS(764), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(764), + [aux_sym_check_host_ip_token1] = ACTIONS(764), + [aux_sym_ciphers_token1] = ACTIONS(764), + [aux_sym_cipher_token1] = ACTIONS(766), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(764), + [aux_sym_compression_token1] = ACTIONS(764), + [aux_sym_connection_attempts_token1] = ACTIONS(764), + [aux_sym_connect_timeout_token1] = ACTIONS(764), + [aux_sym_control_master_token1] = ACTIONS(764), + [aux_sym_control_path_token1] = ACTIONS(764), + [aux_sym_control_persist_token1] = ACTIONS(764), + [aux_sym_dynamic_forward_token1] = ACTIONS(764), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(764), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(764), + [aux_sym_escape_char_token1] = ACTIONS(764), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(764), + [aux_sym_fingerprint_hash_token1] = ACTIONS(764), + [aux_sym_fork_after_authentication_token1] = ACTIONS(764), + [aux_sym_forward_agent_token1] = ACTIONS(764), + [aux_sym_forward_x11_token1] = ACTIONS(766), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(764), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(764), + [aux_sym_gateway_ports_token1] = ACTIONS(764), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(764), + [aux_sym_gssapi_authentication_token1] = ACTIONS(764), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(764), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(764), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(764), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(764), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(764), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(764), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(764), + [aux_sym_hash_known_hosts_token1] = ACTIONS(764), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(764), + [aux_sym_hostbased_authentication_token1] = ACTIONS(764), + [aux_sym_host_key_algorithms_token1] = ACTIONS(764), + [aux_sym_host_key_alias_token1] = ACTIONS(764), + [aux_sym_hostname_token1] = ACTIONS(764), + [aux_sym_identities_only_token1] = ACTIONS(764), + [aux_sym_identity_agent_token1] = ACTIONS(764), + [aux_sym_identity_file_token1] = ACTIONS(764), + [aux_sym_ignore_unknown_token1] = ACTIONS(764), + [aux_sym_include_token1] = ACTIONS(764), + [aux_sym_ip_qos_token1] = ACTIONS(764), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(764), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(764), + [aux_sym_kex_algorithms_token1] = ACTIONS(764), + [aux_sym_known_hosts_command_token1] = ACTIONS(764), + [aux_sym_local_command_token1] = ACTIONS(764), + [aux_sym_local_forward_token1] = ACTIONS(764), + [aux_sym_log_level_token1] = ACTIONS(764), + [aux_sym_log_verbose_token1] = ACTIONS(764), + [aux_sym_macs_token1] = ACTIONS(764), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(764), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(764), + [aux_sym_password_authentication_token1] = ACTIONS(764), + [aux_sym_permit_local_command_token1] = ACTIONS(764), + [aux_sym_permit_remote_open_token1] = ACTIONS(764), + [aux_sym_pkcs11_provider_token1] = ACTIONS(764), + [aux_sym_port_token1] = ACTIONS(764), + [aux_sym_preferred_authentications_token1] = ACTIONS(764), + [aux_sym_protocol_token1] = ACTIONS(764), + [aux_sym_proxy_command_token1] = ACTIONS(764), + [aux_sym_proxy_jump_token1] = ACTIONS(764), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(764), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(764), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(764), + [aux_sym_pubkey_authentication_token1] = ACTIONS(764), + [aux_sym_rekey_limit_token1] = ACTIONS(764), + [aux_sym_remote_command_token1] = ACTIONS(764), + [aux_sym_remote_forward_token1] = ACTIONS(764), + [aux_sym_request_tty_token1] = ACTIONS(764), + [aux_sym_required_rsa_size_token1] = ACTIONS(764), + [aux_sym_revoked_host_keys_token1] = ACTIONS(764), + [aux_sym_security_key_provider_token1] = ACTIONS(764), + [aux_sym_send_env_token1] = ACTIONS(764), + [aux_sym_server_alive_count_max_token1] = ACTIONS(764), + [aux_sym_server_alive_interval_token1] = ACTIONS(764), + [aux_sym_session_type_token1] = ACTIONS(764), + [aux_sym_set_env_token1] = ACTIONS(764), + [aux_sym_stdin_null_token1] = ACTIONS(764), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(764), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(764), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(764), + [aux_sym_syslog_facility_token1] = ACTIONS(764), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(764), + [aux_sym_keep_alive_token1] = ACTIONS(764), + [aux_sym_tunnel_token1] = ACTIONS(766), + [aux_sym_tunnel_device_token1] = ACTIONS(764), + [aux_sym_update_host_keys_token1] = ACTIONS(764), + [aux_sym_use_keychain_token1] = ACTIONS(764), + [aux_sym_use_roaming_token1] = ACTIONS(764), + [aux_sym_user_token1] = ACTIONS(766), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(764), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(764), + [aux_sym_visual_host_key_token1] = ACTIONS(764), + [aux_sym_xauth_location_token1] = ACTIONS(764), }, [38] = { - [ts_builtin_sym_end] = ACTIONS(765), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(769), - [aux_sym_match_token1] = ACTIONS(765), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(765), - [aux_sym_address_family_token1] = ACTIONS(765), - [aux_sym_batch_mode_token1] = ACTIONS(765), - [aux_sym_bind_address_token1] = ACTIONS(765), - [aux_sym_bind_interface_token1] = ACTIONS(765), - [aux_sym_canonical_domains_token1] = ACTIONS(765), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(765), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(765), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(765), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(765), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(765), - [aux_sym_certificate_file_token1] = ACTIONS(765), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(765), - [aux_sym_check_host_ip_token1] = ACTIONS(765), - [aux_sym_ciphers_token1] = ACTIONS(765), - [aux_sym_cipher_token1] = ACTIONS(767), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(765), - [aux_sym_compression_token1] = ACTIONS(765), - [aux_sym_connection_attempts_token1] = ACTIONS(765), - [aux_sym_connect_timeout_token1] = ACTIONS(765), - [aux_sym_control_master_token1] = ACTIONS(765), - [aux_sym_control_path_token1] = ACTIONS(765), - [aux_sym_control_persist_token1] = ACTIONS(765), - [aux_sym_dynamic_forward_token1] = ACTIONS(765), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(765), - [aux_sym_escape_char_token1] = ACTIONS(765), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(765), - [aux_sym_fingerprint_hash_token1] = ACTIONS(765), - [aux_sym_fork_after_authentication_token1] = ACTIONS(765), - [aux_sym_forward_agent_token1] = ACTIONS(765), - [aux_sym_forward_x11_token1] = ACTIONS(767), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(765), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(765), - [aux_sym_gateway_ports_token1] = ACTIONS(765), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(765), - [aux_sym_gssapi_authentication_token1] = ACTIONS(765), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(765), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(765), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(765), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(765), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(765), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(765), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(765), - [aux_sym_hash_known_hosts_token1] = ACTIONS(765), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(765), - [aux_sym_hostbased_authentication_token1] = ACTIONS(765), - [aux_sym_host_key_algorithms_token1] = ACTIONS(765), - [aux_sym_host_key_alias_token1] = ACTIONS(765), - [aux_sym_hostname_token1] = ACTIONS(765), - [aux_sym_identities_only_token1] = ACTIONS(765), - [aux_sym_identity_agent_token1] = ACTIONS(765), - [aux_sym_identity_file_token1] = ACTIONS(765), - [aux_sym_ignore_unknown_token1] = ACTIONS(765), - [aux_sym_include_token1] = ACTIONS(765), - [aux_sym_ip_qos_token1] = ACTIONS(765), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(765), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(765), - [aux_sym_kex_algorithms_token1] = ACTIONS(765), - [aux_sym_known_hosts_command_token1] = ACTIONS(765), - [aux_sym_local_command_token1] = ACTIONS(765), - [aux_sym_local_forward_token1] = ACTIONS(765), - [aux_sym_log_level_token1] = ACTIONS(765), - [aux_sym_log_verbose_token1] = ACTIONS(765), - [aux_sym_macs_token1] = ACTIONS(765), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(765), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(765), - [aux_sym_password_authentication_token1] = ACTIONS(765), - [aux_sym_permit_local_command_token1] = ACTIONS(765), - [aux_sym_permit_remote_open_token1] = ACTIONS(765), - [aux_sym_pkcs11_provider_token1] = ACTIONS(765), - [aux_sym_port_token1] = ACTIONS(765), - [aux_sym_preferred_authentications_token1] = ACTIONS(765), - [aux_sym_protocol_token1] = ACTIONS(765), - [aux_sym_proxy_command_token1] = ACTIONS(765), - [aux_sym_proxy_jump_token1] = ACTIONS(765), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(765), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(765), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(765), - [aux_sym_pubkey_authentication_token1] = ACTIONS(765), - [aux_sym_rekey_limit_token1] = ACTIONS(765), - [aux_sym_remote_command_token1] = ACTIONS(765), - [aux_sym_remote_forward_token1] = ACTIONS(765), - [aux_sym_request_tty_token1] = ACTIONS(765), - [aux_sym_required_rsa_size_token1] = ACTIONS(765), - [aux_sym_revoked_host_keys_token1] = ACTIONS(765), - [aux_sym_security_key_provider_token1] = ACTIONS(765), - [aux_sym_send_env_token1] = ACTIONS(765), - [aux_sym_server_alive_count_max_token1] = ACTIONS(765), - [aux_sym_server_alive_interval_token1] = ACTIONS(765), - [aux_sym_session_type_token1] = ACTIONS(765), - [aux_sym_set_env_token1] = ACTIONS(765), - [aux_sym_stdin_null_token1] = ACTIONS(765), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(765), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(765), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(765), - [aux_sym_syslog_facility_token1] = ACTIONS(765), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(765), - [aux_sym_keep_alive_token1] = ACTIONS(765), - [aux_sym_tunnel_token1] = ACTIONS(767), - [aux_sym_tunnel_device_token1] = ACTIONS(765), - [aux_sym_update_host_keys_token1] = ACTIONS(765), - [aux_sym_use_keychain_token1] = ACTIONS(765), - [aux_sym_use_roaming_token1] = ACTIONS(765), - [aux_sym_user_token1] = ACTIONS(767), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(765), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(765), - [aux_sym_visual_host_key_token1] = ACTIONS(765), - [aux_sym_xauth_location_token1] = ACTIONS(765), + [ts_builtin_sym_end] = ACTIONS(770), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(774), + [aux_sym_match_token1] = ACTIONS(770), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(770), + [aux_sym_address_family_token1] = ACTIONS(770), + [aux_sym_batch_mode_token1] = ACTIONS(770), + [aux_sym_bind_address_token1] = ACTIONS(770), + [aux_sym_bind_interface_token1] = ACTIONS(770), + [aux_sym_canonical_domains_token1] = ACTIONS(770), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(770), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(770), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(770), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(770), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(770), + [aux_sym_certificate_file_token1] = ACTIONS(770), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(770), + [aux_sym_check_host_ip_token1] = ACTIONS(770), + [aux_sym_ciphers_token1] = ACTIONS(770), + [aux_sym_cipher_token1] = ACTIONS(772), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(770), + [aux_sym_compression_token1] = ACTIONS(770), + [aux_sym_connection_attempts_token1] = ACTIONS(770), + [aux_sym_connect_timeout_token1] = ACTIONS(770), + [aux_sym_control_master_token1] = ACTIONS(770), + [aux_sym_control_path_token1] = ACTIONS(770), + [aux_sym_control_persist_token1] = ACTIONS(770), + [aux_sym_dynamic_forward_token1] = ACTIONS(770), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(770), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(770), + [aux_sym_escape_char_token1] = ACTIONS(770), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(770), + [aux_sym_fingerprint_hash_token1] = ACTIONS(770), + [aux_sym_fork_after_authentication_token1] = ACTIONS(770), + [aux_sym_forward_agent_token1] = ACTIONS(770), + [aux_sym_forward_x11_token1] = ACTIONS(772), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(770), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(770), + [aux_sym_gateway_ports_token1] = ACTIONS(770), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(770), + [aux_sym_gssapi_authentication_token1] = ACTIONS(770), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(770), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(770), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(770), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(770), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(770), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(770), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(770), + [aux_sym_hash_known_hosts_token1] = ACTIONS(770), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(770), + [aux_sym_hostbased_authentication_token1] = ACTIONS(770), + [aux_sym_host_key_algorithms_token1] = ACTIONS(770), + [aux_sym_host_key_alias_token1] = ACTIONS(770), + [aux_sym_hostname_token1] = ACTIONS(770), + [aux_sym_identities_only_token1] = ACTIONS(770), + [aux_sym_identity_agent_token1] = ACTIONS(770), + [aux_sym_identity_file_token1] = ACTIONS(770), + [aux_sym_ignore_unknown_token1] = ACTIONS(770), + [aux_sym_include_token1] = ACTIONS(770), + [aux_sym_ip_qos_token1] = ACTIONS(770), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(770), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(770), + [aux_sym_kex_algorithms_token1] = ACTIONS(770), + [aux_sym_known_hosts_command_token1] = ACTIONS(770), + [aux_sym_local_command_token1] = ACTIONS(770), + [aux_sym_local_forward_token1] = ACTIONS(770), + [aux_sym_log_level_token1] = ACTIONS(770), + [aux_sym_log_verbose_token1] = ACTIONS(770), + [aux_sym_macs_token1] = ACTIONS(770), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(770), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(770), + [aux_sym_password_authentication_token1] = ACTIONS(770), + [aux_sym_permit_local_command_token1] = ACTIONS(770), + [aux_sym_permit_remote_open_token1] = ACTIONS(770), + [aux_sym_pkcs11_provider_token1] = ACTIONS(770), + [aux_sym_port_token1] = ACTIONS(770), + [aux_sym_preferred_authentications_token1] = ACTIONS(770), + [aux_sym_protocol_token1] = ACTIONS(770), + [aux_sym_proxy_command_token1] = ACTIONS(770), + [aux_sym_proxy_jump_token1] = ACTIONS(770), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(770), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(770), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(770), + [aux_sym_pubkey_authentication_token1] = ACTIONS(770), + [aux_sym_rekey_limit_token1] = ACTIONS(770), + [aux_sym_remote_command_token1] = ACTIONS(770), + [aux_sym_remote_forward_token1] = ACTIONS(770), + [aux_sym_request_tty_token1] = ACTIONS(770), + [aux_sym_required_rsa_size_token1] = ACTIONS(770), + [aux_sym_revoked_host_keys_token1] = ACTIONS(770), + [aux_sym_security_key_provider_token1] = ACTIONS(770), + [aux_sym_send_env_token1] = ACTIONS(770), + [aux_sym_server_alive_count_max_token1] = ACTIONS(770), + [aux_sym_server_alive_interval_token1] = ACTIONS(770), + [aux_sym_session_type_token1] = ACTIONS(770), + [aux_sym_set_env_token1] = ACTIONS(770), + [aux_sym_stdin_null_token1] = ACTIONS(770), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(770), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(770), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(770), + [aux_sym_syslog_facility_token1] = ACTIONS(770), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(770), + [aux_sym_keep_alive_token1] = ACTIONS(770), + [aux_sym_tunnel_token1] = ACTIONS(772), + [aux_sym_tunnel_device_token1] = ACTIONS(770), + [aux_sym_update_host_keys_token1] = ACTIONS(770), + [aux_sym_use_keychain_token1] = ACTIONS(770), + [aux_sym_use_roaming_token1] = ACTIONS(770), + [aux_sym_user_token1] = ACTIONS(772), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(770), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(770), + [aux_sym_visual_host_key_token1] = ACTIONS(770), + [aux_sym_xauth_location_token1] = ACTIONS(770), }, [39] = { - [ts_builtin_sym_end] = ACTIONS(771), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(775), - [aux_sym_match_token1] = ACTIONS(771), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(771), - [aux_sym_address_family_token1] = ACTIONS(771), - [aux_sym_batch_mode_token1] = ACTIONS(771), - [aux_sym_bind_address_token1] = ACTIONS(771), - [aux_sym_bind_interface_token1] = ACTIONS(771), - [aux_sym_canonical_domains_token1] = ACTIONS(771), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(771), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(771), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(771), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(771), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(771), - [aux_sym_certificate_file_token1] = ACTIONS(771), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(771), - [aux_sym_check_host_ip_token1] = ACTIONS(771), - [aux_sym_ciphers_token1] = ACTIONS(771), - [aux_sym_cipher_token1] = ACTIONS(773), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(771), - [aux_sym_compression_token1] = ACTIONS(771), - [aux_sym_connection_attempts_token1] = ACTIONS(771), - [aux_sym_connect_timeout_token1] = ACTIONS(771), - [aux_sym_control_master_token1] = ACTIONS(771), - [aux_sym_control_path_token1] = ACTIONS(771), - [aux_sym_control_persist_token1] = ACTIONS(771), - [aux_sym_dynamic_forward_token1] = ACTIONS(771), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(771), - [aux_sym_escape_char_token1] = ACTIONS(771), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(771), - [aux_sym_fingerprint_hash_token1] = ACTIONS(771), - [aux_sym_fork_after_authentication_token1] = ACTIONS(771), - [aux_sym_forward_agent_token1] = ACTIONS(771), - [aux_sym_forward_x11_token1] = ACTIONS(773), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(771), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(771), - [aux_sym_gateway_ports_token1] = ACTIONS(771), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(771), - [aux_sym_gssapi_authentication_token1] = ACTIONS(771), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(771), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(771), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(771), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(771), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(771), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(771), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(771), - [aux_sym_hash_known_hosts_token1] = ACTIONS(771), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(771), - [aux_sym_hostbased_authentication_token1] = ACTIONS(771), - [aux_sym_host_key_algorithms_token1] = ACTIONS(771), - [aux_sym_host_key_alias_token1] = ACTIONS(771), - [aux_sym_hostname_token1] = ACTIONS(771), - [aux_sym_identities_only_token1] = ACTIONS(771), - [aux_sym_identity_agent_token1] = ACTIONS(771), - [aux_sym_identity_file_token1] = ACTIONS(771), - [aux_sym_ignore_unknown_token1] = ACTIONS(771), - [aux_sym_include_token1] = ACTIONS(771), - [aux_sym_ip_qos_token1] = ACTIONS(771), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(771), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(771), - [aux_sym_kex_algorithms_token1] = ACTIONS(771), - [aux_sym_known_hosts_command_token1] = ACTIONS(771), - [aux_sym_local_command_token1] = ACTIONS(771), - [aux_sym_local_forward_token1] = ACTIONS(771), - [aux_sym_log_level_token1] = ACTIONS(771), - [aux_sym_log_verbose_token1] = ACTIONS(771), - [aux_sym_macs_token1] = ACTIONS(771), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(771), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(771), - [aux_sym_password_authentication_token1] = ACTIONS(771), - [aux_sym_permit_local_command_token1] = ACTIONS(771), - [aux_sym_permit_remote_open_token1] = ACTIONS(771), - [aux_sym_pkcs11_provider_token1] = ACTIONS(771), - [aux_sym_port_token1] = ACTIONS(771), - [aux_sym_preferred_authentications_token1] = ACTIONS(771), - [aux_sym_protocol_token1] = ACTIONS(771), - [aux_sym_proxy_command_token1] = ACTIONS(771), - [aux_sym_proxy_jump_token1] = ACTIONS(771), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(771), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(771), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(771), - [aux_sym_pubkey_authentication_token1] = ACTIONS(771), - [aux_sym_rekey_limit_token1] = ACTIONS(771), - [aux_sym_remote_command_token1] = ACTIONS(771), - [aux_sym_remote_forward_token1] = ACTIONS(771), - [aux_sym_request_tty_token1] = ACTIONS(771), - [aux_sym_required_rsa_size_token1] = ACTIONS(771), - [aux_sym_revoked_host_keys_token1] = ACTIONS(771), - [aux_sym_security_key_provider_token1] = ACTIONS(771), - [aux_sym_send_env_token1] = ACTIONS(771), - [aux_sym_server_alive_count_max_token1] = ACTIONS(771), - [aux_sym_server_alive_interval_token1] = ACTIONS(771), - [aux_sym_session_type_token1] = ACTIONS(771), - [aux_sym_set_env_token1] = ACTIONS(771), - [aux_sym_stdin_null_token1] = ACTIONS(771), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(771), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(771), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(771), - [aux_sym_syslog_facility_token1] = ACTIONS(771), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(771), - [aux_sym_keep_alive_token1] = ACTIONS(771), - [aux_sym_tunnel_token1] = ACTIONS(773), - [aux_sym_tunnel_device_token1] = ACTIONS(771), - [aux_sym_update_host_keys_token1] = ACTIONS(771), - [aux_sym_use_keychain_token1] = ACTIONS(771), - [aux_sym_use_roaming_token1] = ACTIONS(771), - [aux_sym_user_token1] = ACTIONS(773), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(771), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(771), - [aux_sym_visual_host_key_token1] = ACTIONS(771), - [aux_sym_xauth_location_token1] = ACTIONS(771), + [ts_builtin_sym_end] = ACTIONS(776), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(778), + [anon_sym_DQUOTE] = ACTIONS(780), + [aux_sym_match_token1] = ACTIONS(776), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(776), + [aux_sym_address_family_token1] = ACTIONS(776), + [aux_sym_batch_mode_token1] = ACTIONS(776), + [aux_sym_bind_address_token1] = ACTIONS(776), + [aux_sym_bind_interface_token1] = ACTIONS(776), + [aux_sym_canonical_domains_token1] = ACTIONS(776), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(776), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(776), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(776), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(776), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(776), + [aux_sym_certificate_file_token1] = ACTIONS(776), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(776), + [aux_sym_check_host_ip_token1] = ACTIONS(776), + [aux_sym_ciphers_token1] = ACTIONS(776), + [aux_sym_cipher_token1] = ACTIONS(778), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(776), + [aux_sym_compression_token1] = ACTIONS(776), + [aux_sym_connection_attempts_token1] = ACTIONS(776), + [aux_sym_connect_timeout_token1] = ACTIONS(776), + [aux_sym_control_master_token1] = ACTIONS(776), + [aux_sym_control_path_token1] = ACTIONS(776), + [aux_sym_control_persist_token1] = ACTIONS(776), + [aux_sym_dynamic_forward_token1] = ACTIONS(776), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(776), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(776), + [aux_sym_escape_char_token1] = ACTIONS(776), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(776), + [aux_sym_fingerprint_hash_token1] = ACTIONS(776), + [aux_sym_fork_after_authentication_token1] = ACTIONS(776), + [aux_sym_forward_agent_token1] = ACTIONS(776), + [aux_sym_forward_x11_token1] = ACTIONS(778), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(776), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(776), + [aux_sym_gateway_ports_token1] = ACTIONS(776), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(776), + [aux_sym_gssapi_authentication_token1] = ACTIONS(776), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(776), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(776), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(776), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(776), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(776), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(776), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(776), + [aux_sym_hash_known_hosts_token1] = ACTIONS(776), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(776), + [aux_sym_hostbased_authentication_token1] = ACTIONS(776), + [aux_sym_host_key_algorithms_token1] = ACTIONS(776), + [aux_sym_host_key_alias_token1] = ACTIONS(776), + [aux_sym_hostname_token1] = ACTIONS(776), + [aux_sym_identities_only_token1] = ACTIONS(776), + [aux_sym_identity_agent_token1] = ACTIONS(776), + [aux_sym_identity_file_token1] = ACTIONS(776), + [aux_sym_ignore_unknown_token1] = ACTIONS(776), + [aux_sym_include_token1] = ACTIONS(776), + [aux_sym_ip_qos_token1] = ACTIONS(776), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(776), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(776), + [aux_sym_kex_algorithms_token1] = ACTIONS(776), + [aux_sym_known_hosts_command_token1] = ACTIONS(776), + [aux_sym_local_command_token1] = ACTIONS(776), + [aux_sym_local_forward_token1] = ACTIONS(776), + [aux_sym_log_level_token1] = ACTIONS(776), + [aux_sym_log_verbose_token1] = ACTIONS(776), + [aux_sym_macs_token1] = ACTIONS(776), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(776), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(776), + [aux_sym_password_authentication_token1] = ACTIONS(776), + [aux_sym_permit_local_command_token1] = ACTIONS(776), + [aux_sym_permit_remote_open_token1] = ACTIONS(776), + [aux_sym_pkcs11_provider_token1] = ACTIONS(776), + [aux_sym_port_token1] = ACTIONS(776), + [aux_sym_preferred_authentications_token1] = ACTIONS(776), + [aux_sym_protocol_token1] = ACTIONS(776), + [aux_sym_proxy_command_token1] = ACTIONS(776), + [aux_sym_proxy_jump_token1] = ACTIONS(776), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(776), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(776), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(776), + [aux_sym_pubkey_authentication_token1] = ACTIONS(776), + [aux_sym_rekey_limit_token1] = ACTIONS(776), + [aux_sym_remote_command_token1] = ACTIONS(776), + [aux_sym_remote_forward_token1] = ACTIONS(776), + [aux_sym_request_tty_token1] = ACTIONS(776), + [aux_sym_required_rsa_size_token1] = ACTIONS(776), + [aux_sym_revoked_host_keys_token1] = ACTIONS(776), + [aux_sym_security_key_provider_token1] = ACTIONS(776), + [aux_sym_send_env_token1] = ACTIONS(776), + [aux_sym_server_alive_count_max_token1] = ACTIONS(776), + [aux_sym_server_alive_interval_token1] = ACTIONS(776), + [aux_sym_session_type_token1] = ACTIONS(776), + [aux_sym_set_env_token1] = ACTIONS(776), + [aux_sym_stdin_null_token1] = ACTIONS(776), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(776), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(776), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(776), + [aux_sym_syslog_facility_token1] = ACTIONS(776), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(776), + [aux_sym_keep_alive_token1] = ACTIONS(776), + [aux_sym_tunnel_token1] = ACTIONS(778), + [aux_sym_tunnel_device_token1] = ACTIONS(776), + [aux_sym_update_host_keys_token1] = ACTIONS(776), + [aux_sym_use_keychain_token1] = ACTIONS(776), + [aux_sym_use_roaming_token1] = ACTIONS(776), + [aux_sym_user_token1] = ACTIONS(778), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(776), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(776), + [aux_sym_visual_host_key_token1] = ACTIONS(776), + [aux_sym_xauth_location_token1] = ACTIONS(776), }, [40] = { - [ts_builtin_sym_end] = ACTIONS(777), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(779), - [anon_sym_DQUOTE] = ACTIONS(781), - [aux_sym_match_token1] = ACTIONS(777), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(777), - [aux_sym_address_family_token1] = ACTIONS(777), - [aux_sym_batch_mode_token1] = ACTIONS(777), - [aux_sym_bind_address_token1] = ACTIONS(777), - [aux_sym_bind_interface_token1] = ACTIONS(777), - [aux_sym_canonical_domains_token1] = ACTIONS(777), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(777), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(777), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(777), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(777), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(777), - [aux_sym_certificate_file_token1] = ACTIONS(777), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(777), - [aux_sym_check_host_ip_token1] = ACTIONS(777), - [aux_sym_ciphers_token1] = ACTIONS(777), - [aux_sym_cipher_token1] = ACTIONS(779), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(777), - [aux_sym_compression_token1] = ACTIONS(777), - [aux_sym_connection_attempts_token1] = ACTIONS(777), - [aux_sym_connect_timeout_token1] = ACTIONS(777), - [aux_sym_control_master_token1] = ACTIONS(777), - [aux_sym_control_path_token1] = ACTIONS(777), - [aux_sym_control_persist_token1] = ACTIONS(777), - [aux_sym_dynamic_forward_token1] = ACTIONS(777), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(777), - [aux_sym_escape_char_token1] = ACTIONS(777), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(777), - [aux_sym_fingerprint_hash_token1] = ACTIONS(777), - [aux_sym_fork_after_authentication_token1] = ACTIONS(777), - [aux_sym_forward_agent_token1] = ACTIONS(777), - [aux_sym_forward_x11_token1] = ACTIONS(779), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(777), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(777), - [aux_sym_gateway_ports_token1] = ACTIONS(777), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(777), - [aux_sym_gssapi_authentication_token1] = ACTIONS(777), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(777), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(777), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(777), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(777), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(777), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(777), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(777), - [aux_sym_hash_known_hosts_token1] = ACTIONS(777), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(777), - [aux_sym_hostbased_authentication_token1] = ACTIONS(777), - [aux_sym_host_key_algorithms_token1] = ACTIONS(777), - [aux_sym_host_key_alias_token1] = ACTIONS(777), - [aux_sym_hostname_token1] = ACTIONS(777), - [aux_sym_identities_only_token1] = ACTIONS(777), - [aux_sym_identity_agent_token1] = ACTIONS(777), - [aux_sym_identity_file_token1] = ACTIONS(777), - [aux_sym_ignore_unknown_token1] = ACTIONS(777), - [aux_sym_include_token1] = ACTIONS(777), - [aux_sym_ip_qos_token1] = ACTIONS(777), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(777), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(777), - [aux_sym_kex_algorithms_token1] = ACTIONS(777), - [aux_sym_known_hosts_command_token1] = ACTIONS(777), - [aux_sym_local_command_token1] = ACTIONS(777), - [aux_sym_local_forward_token1] = ACTIONS(777), - [aux_sym_log_level_token1] = ACTIONS(777), - [aux_sym_log_verbose_token1] = ACTIONS(777), - [aux_sym_macs_token1] = ACTIONS(777), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(777), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(777), - [aux_sym_password_authentication_token1] = ACTIONS(777), - [aux_sym_permit_local_command_token1] = ACTIONS(777), - [aux_sym_permit_remote_open_token1] = ACTIONS(777), - [aux_sym_pkcs11_provider_token1] = ACTIONS(777), - [aux_sym_port_token1] = ACTIONS(777), - [aux_sym_preferred_authentications_token1] = ACTIONS(777), - [aux_sym_protocol_token1] = ACTIONS(777), - [aux_sym_proxy_command_token1] = ACTIONS(777), - [aux_sym_proxy_jump_token1] = ACTIONS(777), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(777), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(777), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(777), - [aux_sym_pubkey_authentication_token1] = ACTIONS(777), - [aux_sym_rekey_limit_token1] = ACTIONS(777), - [aux_sym_remote_command_token1] = ACTIONS(777), - [aux_sym_remote_forward_token1] = ACTIONS(777), - [aux_sym_request_tty_token1] = ACTIONS(777), - [aux_sym_required_rsa_size_token1] = ACTIONS(777), - [aux_sym_revoked_host_keys_token1] = ACTIONS(777), - [aux_sym_security_key_provider_token1] = ACTIONS(777), - [aux_sym_send_env_token1] = ACTIONS(777), - [aux_sym_server_alive_count_max_token1] = ACTIONS(777), - [aux_sym_server_alive_interval_token1] = ACTIONS(777), - [aux_sym_session_type_token1] = ACTIONS(777), - [aux_sym_set_env_token1] = ACTIONS(777), - [aux_sym_stdin_null_token1] = ACTIONS(777), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(777), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(777), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(777), - [aux_sym_syslog_facility_token1] = ACTIONS(777), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(777), - [aux_sym_keep_alive_token1] = ACTIONS(777), - [aux_sym_tunnel_token1] = ACTIONS(779), - [aux_sym_tunnel_device_token1] = ACTIONS(777), - [aux_sym_update_host_keys_token1] = ACTIONS(777), - [aux_sym_use_keychain_token1] = ACTIONS(777), - [aux_sym_use_roaming_token1] = ACTIONS(777), - [aux_sym_user_token1] = ACTIONS(779), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(777), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(777), - [aux_sym_visual_host_key_token1] = ACTIONS(777), - [aux_sym_xauth_location_token1] = ACTIONS(777), + [ts_builtin_sym_end] = ACTIONS(782), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(786), + [aux_sym_match_token1] = ACTIONS(782), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(782), + [aux_sym_address_family_token1] = ACTIONS(782), + [aux_sym_batch_mode_token1] = ACTIONS(782), + [aux_sym_bind_address_token1] = ACTIONS(782), + [aux_sym_bind_interface_token1] = ACTIONS(782), + [aux_sym_canonical_domains_token1] = ACTIONS(782), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(782), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(782), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(782), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(782), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(782), + [aux_sym_certificate_file_token1] = ACTIONS(782), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(782), + [aux_sym_check_host_ip_token1] = ACTIONS(782), + [aux_sym_ciphers_token1] = ACTIONS(782), + [aux_sym_cipher_token1] = ACTIONS(784), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(782), + [aux_sym_compression_token1] = ACTIONS(782), + [aux_sym_connection_attempts_token1] = ACTIONS(782), + [aux_sym_connect_timeout_token1] = ACTIONS(782), + [aux_sym_control_master_token1] = ACTIONS(782), + [aux_sym_control_path_token1] = ACTIONS(782), + [aux_sym_control_persist_token1] = ACTIONS(782), + [aux_sym_dynamic_forward_token1] = ACTIONS(782), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(782), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(782), + [aux_sym_escape_char_token1] = ACTIONS(782), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(782), + [aux_sym_fingerprint_hash_token1] = ACTIONS(782), + [aux_sym_fork_after_authentication_token1] = ACTIONS(782), + [aux_sym_forward_agent_token1] = ACTIONS(782), + [aux_sym_forward_x11_token1] = ACTIONS(784), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(782), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(782), + [aux_sym_gateway_ports_token1] = ACTIONS(782), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(782), + [aux_sym_gssapi_authentication_token1] = ACTIONS(782), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(782), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(782), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(782), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(782), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(782), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(782), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(782), + [aux_sym_hash_known_hosts_token1] = ACTIONS(782), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(782), + [aux_sym_hostbased_authentication_token1] = ACTIONS(782), + [aux_sym_host_key_algorithms_token1] = ACTIONS(782), + [aux_sym_host_key_alias_token1] = ACTIONS(782), + [aux_sym_hostname_token1] = ACTIONS(782), + [aux_sym_identities_only_token1] = ACTIONS(782), + [aux_sym_identity_agent_token1] = ACTIONS(782), + [aux_sym_identity_file_token1] = ACTIONS(782), + [aux_sym_ignore_unknown_token1] = ACTIONS(782), + [aux_sym_include_token1] = ACTIONS(782), + [aux_sym_ip_qos_token1] = ACTIONS(782), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(782), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(782), + [aux_sym_kex_algorithms_token1] = ACTIONS(782), + [aux_sym_known_hosts_command_token1] = ACTIONS(782), + [aux_sym_local_command_token1] = ACTIONS(782), + [aux_sym_local_forward_token1] = ACTIONS(782), + [aux_sym_log_level_token1] = ACTIONS(782), + [aux_sym_log_verbose_token1] = ACTIONS(782), + [aux_sym_macs_token1] = ACTIONS(782), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(782), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(782), + [aux_sym_password_authentication_token1] = ACTIONS(782), + [aux_sym_permit_local_command_token1] = ACTIONS(782), + [aux_sym_permit_remote_open_token1] = ACTIONS(782), + [aux_sym_pkcs11_provider_token1] = ACTIONS(782), + [aux_sym_port_token1] = ACTIONS(782), + [aux_sym_preferred_authentications_token1] = ACTIONS(782), + [aux_sym_protocol_token1] = ACTIONS(782), + [aux_sym_proxy_command_token1] = ACTIONS(782), + [aux_sym_proxy_jump_token1] = ACTIONS(782), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(782), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(782), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(782), + [aux_sym_pubkey_authentication_token1] = ACTIONS(782), + [aux_sym_rekey_limit_token1] = ACTIONS(782), + [aux_sym_remote_command_token1] = ACTIONS(782), + [aux_sym_remote_forward_token1] = ACTIONS(782), + [aux_sym_request_tty_token1] = ACTIONS(782), + [aux_sym_required_rsa_size_token1] = ACTIONS(782), + [aux_sym_revoked_host_keys_token1] = ACTIONS(782), + [aux_sym_security_key_provider_token1] = ACTIONS(782), + [aux_sym_send_env_token1] = ACTIONS(782), + [aux_sym_server_alive_count_max_token1] = ACTIONS(782), + [aux_sym_server_alive_interval_token1] = ACTIONS(782), + [aux_sym_session_type_token1] = ACTIONS(782), + [aux_sym_set_env_token1] = ACTIONS(782), + [aux_sym_stdin_null_token1] = ACTIONS(782), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(782), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(782), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(782), + [aux_sym_syslog_facility_token1] = ACTIONS(782), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(782), + [aux_sym_keep_alive_token1] = ACTIONS(782), + [aux_sym_tunnel_token1] = ACTIONS(784), + [aux_sym_tunnel_device_token1] = ACTIONS(782), + [aux_sym_update_host_keys_token1] = ACTIONS(782), + [aux_sym_use_keychain_token1] = ACTIONS(782), + [aux_sym_use_roaming_token1] = ACTIONS(782), + [aux_sym_user_token1] = ACTIONS(784), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(782), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(782), + [aux_sym_visual_host_key_token1] = ACTIONS(782), + [aux_sym_xauth_location_token1] = ACTIONS(782), }, [41] = { - [ts_builtin_sym_end] = ACTIONS(783), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(785), - [anon_sym_DQUOTE] = ACTIONS(787), - [aux_sym_match_token1] = ACTIONS(783), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(783), - [aux_sym_address_family_token1] = ACTIONS(783), - [aux_sym_batch_mode_token1] = ACTIONS(783), - [aux_sym_bind_address_token1] = ACTIONS(783), - [aux_sym_bind_interface_token1] = ACTIONS(783), - [aux_sym_canonical_domains_token1] = ACTIONS(783), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(783), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(783), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(783), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(783), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(783), - [aux_sym_certificate_file_token1] = ACTIONS(783), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(783), - [aux_sym_check_host_ip_token1] = ACTIONS(783), - [aux_sym_ciphers_token1] = ACTIONS(783), - [aux_sym_cipher_token1] = ACTIONS(785), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(783), - [aux_sym_compression_token1] = ACTIONS(783), - [aux_sym_connection_attempts_token1] = ACTIONS(783), - [aux_sym_connect_timeout_token1] = ACTIONS(783), - [aux_sym_control_master_token1] = ACTIONS(783), - [aux_sym_control_path_token1] = ACTIONS(783), - [aux_sym_control_persist_token1] = ACTIONS(783), - [aux_sym_dynamic_forward_token1] = ACTIONS(783), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(783), - [aux_sym_escape_char_token1] = ACTIONS(783), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(783), - [aux_sym_fingerprint_hash_token1] = ACTIONS(783), - [aux_sym_fork_after_authentication_token1] = ACTIONS(783), - [aux_sym_forward_agent_token1] = ACTIONS(783), - [aux_sym_forward_x11_token1] = ACTIONS(785), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(783), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(783), - [aux_sym_gateway_ports_token1] = ACTIONS(783), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(783), - [aux_sym_gssapi_authentication_token1] = ACTIONS(783), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(783), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(783), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(783), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(783), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(783), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(783), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(783), - [aux_sym_hash_known_hosts_token1] = ACTIONS(783), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(783), - [aux_sym_hostbased_authentication_token1] = ACTIONS(783), - [aux_sym_host_key_algorithms_token1] = ACTIONS(783), - [aux_sym_host_key_alias_token1] = ACTIONS(783), - [aux_sym_hostname_token1] = ACTIONS(783), - [aux_sym_identities_only_token1] = ACTIONS(783), - [aux_sym_identity_agent_token1] = ACTIONS(783), - [aux_sym_identity_file_token1] = ACTIONS(783), - [aux_sym_ignore_unknown_token1] = ACTIONS(783), - [aux_sym_include_token1] = ACTIONS(783), - [aux_sym_ip_qos_token1] = ACTIONS(783), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(783), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(783), - [aux_sym_kex_algorithms_token1] = ACTIONS(783), - [aux_sym_known_hosts_command_token1] = ACTIONS(783), - [aux_sym_local_command_token1] = ACTIONS(783), - [aux_sym_local_forward_token1] = ACTIONS(783), - [aux_sym_log_level_token1] = ACTIONS(783), - [aux_sym_log_verbose_token1] = ACTIONS(783), - [aux_sym_macs_token1] = ACTIONS(783), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(783), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(783), - [aux_sym_password_authentication_token1] = ACTIONS(783), - [aux_sym_permit_local_command_token1] = ACTIONS(783), - [aux_sym_permit_remote_open_token1] = ACTIONS(783), - [aux_sym_pkcs11_provider_token1] = ACTIONS(783), - [aux_sym_port_token1] = ACTIONS(783), - [aux_sym_preferred_authentications_token1] = ACTIONS(783), - [aux_sym_protocol_token1] = ACTIONS(783), - [aux_sym_proxy_command_token1] = ACTIONS(783), - [aux_sym_proxy_jump_token1] = ACTIONS(783), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(783), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(783), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(783), - [aux_sym_pubkey_authentication_token1] = ACTIONS(783), - [aux_sym_rekey_limit_token1] = ACTIONS(783), - [aux_sym_remote_command_token1] = ACTIONS(783), - [aux_sym_remote_forward_token1] = ACTIONS(783), - [aux_sym_request_tty_token1] = ACTIONS(783), - [aux_sym_required_rsa_size_token1] = ACTIONS(783), - [aux_sym_revoked_host_keys_token1] = ACTIONS(783), - [aux_sym_security_key_provider_token1] = ACTIONS(783), - [aux_sym_send_env_token1] = ACTIONS(783), - [aux_sym_server_alive_count_max_token1] = ACTIONS(783), - [aux_sym_server_alive_interval_token1] = ACTIONS(783), - [aux_sym_session_type_token1] = ACTIONS(783), - [aux_sym_set_env_token1] = ACTIONS(783), - [aux_sym_stdin_null_token1] = ACTIONS(783), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(783), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(783), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(783), - [aux_sym_syslog_facility_token1] = ACTIONS(783), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(783), - [aux_sym_keep_alive_token1] = ACTIONS(783), - [aux_sym_tunnel_token1] = ACTIONS(785), - [aux_sym_tunnel_device_token1] = ACTIONS(783), - [aux_sym_update_host_keys_token1] = ACTIONS(783), - [aux_sym_use_keychain_token1] = ACTIONS(783), - [aux_sym_use_roaming_token1] = ACTIONS(783), - [aux_sym_user_token1] = ACTIONS(785), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(783), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(783), - [aux_sym_visual_host_key_token1] = ACTIONS(783), - [aux_sym_xauth_location_token1] = ACTIONS(783), + [ts_builtin_sym_end] = ACTIONS(788), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(790), + [anon_sym_DQUOTE] = ACTIONS(792), + [aux_sym_match_token1] = ACTIONS(788), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(788), + [aux_sym_address_family_token1] = ACTIONS(788), + [aux_sym_batch_mode_token1] = ACTIONS(788), + [aux_sym_bind_address_token1] = ACTIONS(788), + [aux_sym_bind_interface_token1] = ACTIONS(788), + [aux_sym_canonical_domains_token1] = ACTIONS(788), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(788), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(788), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(788), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(788), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(788), + [aux_sym_certificate_file_token1] = ACTIONS(788), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(788), + [aux_sym_check_host_ip_token1] = ACTIONS(788), + [aux_sym_ciphers_token1] = ACTIONS(788), + [aux_sym_cipher_token1] = ACTIONS(790), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(788), + [aux_sym_compression_token1] = ACTIONS(788), + [aux_sym_connection_attempts_token1] = ACTIONS(788), + [aux_sym_connect_timeout_token1] = ACTIONS(788), + [aux_sym_control_master_token1] = ACTIONS(788), + [aux_sym_control_path_token1] = ACTIONS(788), + [aux_sym_control_persist_token1] = ACTIONS(788), + [aux_sym_dynamic_forward_token1] = ACTIONS(788), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(788), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(788), + [aux_sym_escape_char_token1] = ACTIONS(788), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(788), + [aux_sym_fingerprint_hash_token1] = ACTIONS(788), + [aux_sym_fork_after_authentication_token1] = ACTIONS(788), + [aux_sym_forward_agent_token1] = ACTIONS(788), + [aux_sym_forward_x11_token1] = ACTIONS(790), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(788), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(788), + [aux_sym_gateway_ports_token1] = ACTIONS(788), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(788), + [aux_sym_gssapi_authentication_token1] = ACTIONS(788), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(788), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(788), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(788), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(788), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(788), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(788), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(788), + [aux_sym_hash_known_hosts_token1] = ACTIONS(788), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(788), + [aux_sym_hostbased_authentication_token1] = ACTIONS(788), + [aux_sym_host_key_algorithms_token1] = ACTIONS(788), + [aux_sym_host_key_alias_token1] = ACTIONS(788), + [aux_sym_hostname_token1] = ACTIONS(788), + [aux_sym_identities_only_token1] = ACTIONS(788), + [aux_sym_identity_agent_token1] = ACTIONS(788), + [aux_sym_identity_file_token1] = ACTIONS(788), + [aux_sym_ignore_unknown_token1] = ACTIONS(788), + [aux_sym_include_token1] = ACTIONS(788), + [aux_sym_ip_qos_token1] = ACTIONS(788), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(788), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(788), + [aux_sym_kex_algorithms_token1] = ACTIONS(788), + [aux_sym_known_hosts_command_token1] = ACTIONS(788), + [aux_sym_local_command_token1] = ACTIONS(788), + [aux_sym_local_forward_token1] = ACTIONS(788), + [aux_sym_log_level_token1] = ACTIONS(788), + [aux_sym_log_verbose_token1] = ACTIONS(788), + [aux_sym_macs_token1] = ACTIONS(788), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(788), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(788), + [aux_sym_password_authentication_token1] = ACTIONS(788), + [aux_sym_permit_local_command_token1] = ACTIONS(788), + [aux_sym_permit_remote_open_token1] = ACTIONS(788), + [aux_sym_pkcs11_provider_token1] = ACTIONS(788), + [aux_sym_port_token1] = ACTIONS(788), + [aux_sym_preferred_authentications_token1] = ACTIONS(788), + [aux_sym_protocol_token1] = ACTIONS(788), + [aux_sym_proxy_command_token1] = ACTIONS(788), + [aux_sym_proxy_jump_token1] = ACTIONS(788), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(788), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(788), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(788), + [aux_sym_pubkey_authentication_token1] = ACTIONS(788), + [aux_sym_rekey_limit_token1] = ACTIONS(788), + [aux_sym_remote_command_token1] = ACTIONS(788), + [aux_sym_remote_forward_token1] = ACTIONS(788), + [aux_sym_request_tty_token1] = ACTIONS(788), + [aux_sym_required_rsa_size_token1] = ACTIONS(788), + [aux_sym_revoked_host_keys_token1] = ACTIONS(788), + [aux_sym_security_key_provider_token1] = ACTIONS(788), + [aux_sym_send_env_token1] = ACTIONS(788), + [aux_sym_server_alive_count_max_token1] = ACTIONS(788), + [aux_sym_server_alive_interval_token1] = ACTIONS(788), + [aux_sym_session_type_token1] = ACTIONS(788), + [aux_sym_set_env_token1] = ACTIONS(788), + [aux_sym_stdin_null_token1] = ACTIONS(788), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(788), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(788), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(788), + [aux_sym_syslog_facility_token1] = ACTIONS(788), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(788), + [aux_sym_keep_alive_token1] = ACTIONS(788), + [aux_sym_tunnel_token1] = ACTIONS(790), + [aux_sym_tunnel_device_token1] = ACTIONS(788), + [aux_sym_update_host_keys_token1] = ACTIONS(788), + [aux_sym_use_keychain_token1] = ACTIONS(788), + [aux_sym_use_roaming_token1] = ACTIONS(788), + [aux_sym_user_token1] = ACTIONS(790), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(788), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(788), + [aux_sym_visual_host_key_token1] = ACTIONS(788), + [aux_sym_xauth_location_token1] = ACTIONS(788), }, [42] = { - [ts_builtin_sym_end] = ACTIONS(789), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(791), - [anon_sym_DQUOTE] = ACTIONS(793), - [aux_sym_match_token1] = ACTIONS(789), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(789), - [aux_sym_address_family_token1] = ACTIONS(789), - [aux_sym_batch_mode_token1] = ACTIONS(789), - [aux_sym_bind_address_token1] = ACTIONS(789), - [aux_sym_bind_interface_token1] = ACTIONS(789), - [aux_sym_canonical_domains_token1] = ACTIONS(789), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(789), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(789), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(789), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(789), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(789), - [aux_sym_certificate_file_token1] = ACTIONS(789), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(789), - [aux_sym_check_host_ip_token1] = ACTIONS(789), - [aux_sym_ciphers_token1] = ACTIONS(789), - [aux_sym_cipher_token1] = ACTIONS(791), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(789), - [aux_sym_compression_token1] = ACTIONS(789), - [aux_sym_connection_attempts_token1] = ACTIONS(789), - [aux_sym_connect_timeout_token1] = ACTIONS(789), - [aux_sym_control_master_token1] = ACTIONS(789), - [aux_sym_control_path_token1] = ACTIONS(789), - [aux_sym_control_persist_token1] = ACTIONS(789), - [aux_sym_dynamic_forward_token1] = ACTIONS(789), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(789), - [aux_sym_escape_char_token1] = ACTIONS(789), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(789), - [aux_sym_fingerprint_hash_token1] = ACTIONS(789), - [aux_sym_fork_after_authentication_token1] = ACTIONS(789), - [aux_sym_forward_agent_token1] = ACTIONS(789), - [aux_sym_forward_x11_token1] = ACTIONS(791), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(789), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(789), - [aux_sym_gateway_ports_token1] = ACTIONS(789), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(789), - [aux_sym_gssapi_authentication_token1] = ACTIONS(789), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(789), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(789), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(789), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(789), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(789), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(789), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(789), - [aux_sym_hash_known_hosts_token1] = ACTIONS(789), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(789), - [aux_sym_hostbased_authentication_token1] = ACTIONS(789), - [aux_sym_host_key_algorithms_token1] = ACTIONS(789), - [aux_sym_host_key_alias_token1] = ACTIONS(789), - [aux_sym_hostname_token1] = ACTIONS(789), - [aux_sym_identities_only_token1] = ACTIONS(789), - [aux_sym_identity_agent_token1] = ACTIONS(789), - [aux_sym_identity_file_token1] = ACTIONS(789), - [aux_sym_ignore_unknown_token1] = ACTIONS(789), - [aux_sym_include_token1] = ACTIONS(789), - [aux_sym_ip_qos_token1] = ACTIONS(789), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(789), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(789), - [aux_sym_kex_algorithms_token1] = ACTIONS(789), - [aux_sym_known_hosts_command_token1] = ACTIONS(789), - [aux_sym_local_command_token1] = ACTIONS(789), - [aux_sym_local_forward_token1] = ACTIONS(789), - [aux_sym_log_level_token1] = ACTIONS(789), - [aux_sym_log_verbose_token1] = ACTIONS(789), - [aux_sym_macs_token1] = ACTIONS(789), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(789), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(789), - [aux_sym_password_authentication_token1] = ACTIONS(789), - [aux_sym_permit_local_command_token1] = ACTIONS(789), - [aux_sym_permit_remote_open_token1] = ACTIONS(789), - [aux_sym_pkcs11_provider_token1] = ACTIONS(789), - [aux_sym_port_token1] = ACTIONS(789), - [aux_sym_preferred_authentications_token1] = ACTIONS(789), - [aux_sym_protocol_token1] = ACTIONS(789), - [aux_sym_proxy_command_token1] = ACTIONS(789), - [aux_sym_proxy_jump_token1] = ACTIONS(789), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(789), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(789), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(789), - [aux_sym_pubkey_authentication_token1] = ACTIONS(789), - [aux_sym_rekey_limit_token1] = ACTIONS(789), - [aux_sym_remote_command_token1] = ACTIONS(789), - [aux_sym_remote_forward_token1] = ACTIONS(789), - [aux_sym_request_tty_token1] = ACTIONS(789), - [aux_sym_required_rsa_size_token1] = ACTIONS(789), - [aux_sym_revoked_host_keys_token1] = ACTIONS(789), - [aux_sym_security_key_provider_token1] = ACTIONS(789), - [aux_sym_send_env_token1] = ACTIONS(789), - [aux_sym_server_alive_count_max_token1] = ACTIONS(789), - [aux_sym_server_alive_interval_token1] = ACTIONS(789), - [aux_sym_session_type_token1] = ACTIONS(789), - [aux_sym_set_env_token1] = ACTIONS(789), - [aux_sym_stdin_null_token1] = ACTIONS(789), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(789), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(789), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(789), - [aux_sym_syslog_facility_token1] = ACTIONS(789), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(789), - [aux_sym_keep_alive_token1] = ACTIONS(789), - [aux_sym_tunnel_token1] = ACTIONS(791), - [aux_sym_tunnel_device_token1] = ACTIONS(789), - [aux_sym_update_host_keys_token1] = ACTIONS(789), - [aux_sym_use_keychain_token1] = ACTIONS(789), - [aux_sym_use_roaming_token1] = ACTIONS(789), - [aux_sym_user_token1] = ACTIONS(791), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(789), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(789), - [aux_sym_visual_host_key_token1] = ACTIONS(789), - [aux_sym_xauth_location_token1] = ACTIONS(789), + [ts_builtin_sym_end] = ACTIONS(794), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [aux_sym_match_token1] = ACTIONS(794), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(794), + [aux_sym_address_family_token1] = ACTIONS(794), + [aux_sym_batch_mode_token1] = ACTIONS(794), + [aux_sym_bind_address_token1] = ACTIONS(794), + [aux_sym_bind_interface_token1] = ACTIONS(794), + [aux_sym_canonical_domains_token1] = ACTIONS(794), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(794), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(794), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(794), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(794), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(794), + [aux_sym_certificate_file_token1] = ACTIONS(794), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(794), + [aux_sym_check_host_ip_token1] = ACTIONS(794), + [aux_sym_ciphers_token1] = ACTIONS(794), + [aux_sym_cipher_token1] = ACTIONS(796), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(794), + [aux_sym_compression_token1] = ACTIONS(794), + [aux_sym_connection_attempts_token1] = ACTIONS(794), + [aux_sym_connect_timeout_token1] = ACTIONS(794), + [aux_sym_control_master_token1] = ACTIONS(794), + [aux_sym_control_path_token1] = ACTIONS(794), + [aux_sym_control_persist_token1] = ACTIONS(794), + [aux_sym_dynamic_forward_token1] = ACTIONS(794), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(794), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(794), + [aux_sym_escape_char_token1] = ACTIONS(794), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(794), + [aux_sym_fingerprint_hash_token1] = ACTIONS(794), + [aux_sym_fork_after_authentication_token1] = ACTIONS(794), + [aux_sym_forward_agent_token1] = ACTIONS(794), + [aux_sym_forward_x11_token1] = ACTIONS(796), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(794), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(794), + [aux_sym_gateway_ports_token1] = ACTIONS(794), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(794), + [aux_sym_gssapi_authentication_token1] = ACTIONS(794), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(794), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(794), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(794), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(794), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(794), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(794), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(794), + [aux_sym_hash_known_hosts_token1] = ACTIONS(794), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(794), + [aux_sym_hostbased_authentication_token1] = ACTIONS(794), + [aux_sym_host_key_algorithms_token1] = ACTIONS(794), + [aux_sym_host_key_alias_token1] = ACTIONS(794), + [aux_sym_hostname_token1] = ACTIONS(794), + [aux_sym_identities_only_token1] = ACTIONS(794), + [aux_sym_identity_agent_token1] = ACTIONS(794), + [aux_sym_identity_file_token1] = ACTIONS(794), + [aux_sym_ignore_unknown_token1] = ACTIONS(794), + [aux_sym_include_token1] = ACTIONS(794), + [aux_sym_ip_qos_token1] = ACTIONS(794), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(794), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(794), + [aux_sym_kex_algorithms_token1] = ACTIONS(794), + [aux_sym_known_hosts_command_token1] = ACTIONS(794), + [aux_sym_local_command_token1] = ACTIONS(794), + [aux_sym_local_forward_token1] = ACTIONS(794), + [aux_sym_log_level_token1] = ACTIONS(794), + [aux_sym_log_verbose_token1] = ACTIONS(794), + [aux_sym_macs_token1] = ACTIONS(794), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(794), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(794), + [aux_sym_password_authentication_token1] = ACTIONS(794), + [aux_sym_permit_local_command_token1] = ACTIONS(794), + [aux_sym_permit_remote_open_token1] = ACTIONS(794), + [aux_sym_pkcs11_provider_token1] = ACTIONS(794), + [aux_sym_port_token1] = ACTIONS(794), + [aux_sym_preferred_authentications_token1] = ACTIONS(794), + [aux_sym_protocol_token1] = ACTIONS(794), + [aux_sym_proxy_command_token1] = ACTIONS(794), + [aux_sym_proxy_jump_token1] = ACTIONS(794), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(794), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(794), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(794), + [aux_sym_pubkey_authentication_token1] = ACTIONS(794), + [aux_sym_rekey_limit_token1] = ACTIONS(794), + [aux_sym_remote_command_token1] = ACTIONS(794), + [aux_sym_remote_forward_token1] = ACTIONS(794), + [aux_sym_request_tty_token1] = ACTIONS(794), + [aux_sym_required_rsa_size_token1] = ACTIONS(794), + [aux_sym_revoked_host_keys_token1] = ACTIONS(794), + [aux_sym_security_key_provider_token1] = ACTIONS(794), + [aux_sym_send_env_token1] = ACTIONS(794), + [aux_sym_server_alive_count_max_token1] = ACTIONS(794), + [aux_sym_server_alive_interval_token1] = ACTIONS(794), + [aux_sym_session_type_token1] = ACTIONS(794), + [aux_sym_set_env_token1] = ACTIONS(794), + [aux_sym_stdin_null_token1] = ACTIONS(794), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(794), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(794), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(794), + [aux_sym_syslog_facility_token1] = ACTIONS(794), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(794), + [aux_sym_keep_alive_token1] = ACTIONS(794), + [aux_sym_tunnel_token1] = ACTIONS(796), + [aux_sym_tunnel_device_token1] = ACTIONS(794), + [aux_sym_update_host_keys_token1] = ACTIONS(794), + [aux_sym_use_keychain_token1] = ACTIONS(794), + [aux_sym_use_roaming_token1] = ACTIONS(794), + [aux_sym_user_token1] = ACTIONS(796), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(794), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(794), + [aux_sym_visual_host_key_token1] = ACTIONS(794), + [aux_sym_xauth_location_token1] = ACTIONS(794), }, [43] = { - [ts_builtin_sym_end] = ACTIONS(795), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(797), - [anon_sym_DQUOTE] = ACTIONS(799), - [aux_sym_match_token1] = ACTIONS(795), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(795), - [aux_sym_address_family_token1] = ACTIONS(795), - [aux_sym_batch_mode_token1] = ACTIONS(795), - [aux_sym_bind_address_token1] = ACTIONS(795), - [aux_sym_bind_interface_token1] = ACTIONS(795), - [aux_sym_canonical_domains_token1] = ACTIONS(795), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(795), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(795), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(795), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(795), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(795), - [aux_sym_certificate_file_token1] = ACTIONS(795), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(795), - [aux_sym_check_host_ip_token1] = ACTIONS(795), - [aux_sym_ciphers_token1] = ACTIONS(795), - [aux_sym_cipher_token1] = ACTIONS(797), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(795), - [aux_sym_compression_token1] = ACTIONS(795), - [aux_sym_connection_attempts_token1] = ACTIONS(795), - [aux_sym_connect_timeout_token1] = ACTIONS(795), - [aux_sym_control_master_token1] = ACTIONS(795), - [aux_sym_control_path_token1] = ACTIONS(795), - [aux_sym_control_persist_token1] = ACTIONS(795), - [aux_sym_dynamic_forward_token1] = ACTIONS(795), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(795), - [aux_sym_escape_char_token1] = ACTIONS(795), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(795), - [aux_sym_fingerprint_hash_token1] = ACTIONS(795), - [aux_sym_fork_after_authentication_token1] = ACTIONS(795), - [aux_sym_forward_agent_token1] = ACTIONS(795), - [aux_sym_forward_x11_token1] = ACTIONS(797), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(795), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(795), - [aux_sym_gateway_ports_token1] = ACTIONS(795), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(795), - [aux_sym_gssapi_authentication_token1] = ACTIONS(795), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(795), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(795), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(795), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(795), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(795), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(795), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(795), - [aux_sym_hash_known_hosts_token1] = ACTIONS(795), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(795), - [aux_sym_hostbased_authentication_token1] = ACTIONS(795), - [aux_sym_host_key_algorithms_token1] = ACTIONS(795), - [aux_sym_host_key_alias_token1] = ACTIONS(795), - [aux_sym_hostname_token1] = ACTIONS(795), - [aux_sym_identities_only_token1] = ACTIONS(795), - [aux_sym_identity_agent_token1] = ACTIONS(795), - [aux_sym_identity_file_token1] = ACTIONS(795), - [aux_sym_ignore_unknown_token1] = ACTIONS(795), - [aux_sym_include_token1] = ACTIONS(795), - [aux_sym_ip_qos_token1] = ACTIONS(795), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(795), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(795), - [aux_sym_kex_algorithms_token1] = ACTIONS(795), - [aux_sym_known_hosts_command_token1] = ACTIONS(795), - [aux_sym_local_command_token1] = ACTIONS(795), - [aux_sym_local_forward_token1] = ACTIONS(795), - [aux_sym_log_level_token1] = ACTIONS(795), - [aux_sym_log_verbose_token1] = ACTIONS(795), - [aux_sym_macs_token1] = ACTIONS(795), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(795), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(795), - [aux_sym_password_authentication_token1] = ACTIONS(795), - [aux_sym_permit_local_command_token1] = ACTIONS(795), - [aux_sym_permit_remote_open_token1] = ACTIONS(795), - [aux_sym_pkcs11_provider_token1] = ACTIONS(795), - [aux_sym_port_token1] = ACTIONS(795), - [aux_sym_preferred_authentications_token1] = ACTIONS(795), - [aux_sym_protocol_token1] = ACTIONS(795), - [aux_sym_proxy_command_token1] = ACTIONS(795), - [aux_sym_proxy_jump_token1] = ACTIONS(795), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(795), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(795), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(795), - [aux_sym_pubkey_authentication_token1] = ACTIONS(795), - [aux_sym_rekey_limit_token1] = ACTIONS(795), - [aux_sym_remote_command_token1] = ACTIONS(795), - [aux_sym_remote_forward_token1] = ACTIONS(795), - [aux_sym_request_tty_token1] = ACTIONS(795), - [aux_sym_required_rsa_size_token1] = ACTIONS(795), - [aux_sym_revoked_host_keys_token1] = ACTIONS(795), - [aux_sym_security_key_provider_token1] = ACTIONS(795), - [aux_sym_send_env_token1] = ACTIONS(795), - [aux_sym_server_alive_count_max_token1] = ACTIONS(795), - [aux_sym_server_alive_interval_token1] = ACTIONS(795), - [aux_sym_session_type_token1] = ACTIONS(795), - [aux_sym_set_env_token1] = ACTIONS(795), - [aux_sym_stdin_null_token1] = ACTIONS(795), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(795), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(795), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(795), - [aux_sym_syslog_facility_token1] = ACTIONS(795), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(795), - [aux_sym_keep_alive_token1] = ACTIONS(795), - [aux_sym_tunnel_token1] = ACTIONS(797), - [aux_sym_tunnel_device_token1] = ACTIONS(795), - [aux_sym_update_host_keys_token1] = ACTIONS(795), - [aux_sym_use_keychain_token1] = ACTIONS(795), - [aux_sym_use_roaming_token1] = ACTIONS(795), - [aux_sym_user_token1] = ACTIONS(797), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(795), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(795), - [aux_sym_visual_host_key_token1] = ACTIONS(795), - [aux_sym_xauth_location_token1] = ACTIONS(795), + [ts_builtin_sym_end] = ACTIONS(800), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(804), + [aux_sym_match_token1] = ACTIONS(800), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(800), + [aux_sym_address_family_token1] = ACTIONS(800), + [aux_sym_batch_mode_token1] = ACTIONS(800), + [aux_sym_bind_address_token1] = ACTIONS(800), + [aux_sym_bind_interface_token1] = ACTIONS(800), + [aux_sym_canonical_domains_token1] = ACTIONS(800), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(800), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(800), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(800), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(800), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(800), + [aux_sym_certificate_file_token1] = ACTIONS(800), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(800), + [aux_sym_check_host_ip_token1] = ACTIONS(800), + [aux_sym_ciphers_token1] = ACTIONS(800), + [aux_sym_cipher_token1] = ACTIONS(802), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(800), + [aux_sym_compression_token1] = ACTIONS(800), + [aux_sym_connection_attempts_token1] = ACTIONS(800), + [aux_sym_connect_timeout_token1] = ACTIONS(800), + [aux_sym_control_master_token1] = ACTIONS(800), + [aux_sym_control_path_token1] = ACTIONS(800), + [aux_sym_control_persist_token1] = ACTIONS(800), + [aux_sym_dynamic_forward_token1] = ACTIONS(800), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(800), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(800), + [aux_sym_escape_char_token1] = ACTIONS(800), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(800), + [aux_sym_fingerprint_hash_token1] = ACTIONS(800), + [aux_sym_fork_after_authentication_token1] = ACTIONS(800), + [aux_sym_forward_agent_token1] = ACTIONS(800), + [aux_sym_forward_x11_token1] = ACTIONS(802), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(800), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(800), + [aux_sym_gateway_ports_token1] = ACTIONS(800), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(800), + [aux_sym_gssapi_authentication_token1] = ACTIONS(800), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(800), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(800), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(800), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(800), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(800), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(800), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(800), + [aux_sym_hash_known_hosts_token1] = ACTIONS(800), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(800), + [aux_sym_hostbased_authentication_token1] = ACTIONS(800), + [aux_sym_host_key_algorithms_token1] = ACTIONS(800), + [aux_sym_host_key_alias_token1] = ACTIONS(800), + [aux_sym_hostname_token1] = ACTIONS(800), + [aux_sym_identities_only_token1] = ACTIONS(800), + [aux_sym_identity_agent_token1] = ACTIONS(800), + [aux_sym_identity_file_token1] = ACTIONS(800), + [aux_sym_ignore_unknown_token1] = ACTIONS(800), + [aux_sym_include_token1] = ACTIONS(800), + [aux_sym_ip_qos_token1] = ACTIONS(800), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(800), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(800), + [aux_sym_kex_algorithms_token1] = ACTIONS(800), + [aux_sym_known_hosts_command_token1] = ACTIONS(800), + [aux_sym_local_command_token1] = ACTIONS(800), + [aux_sym_local_forward_token1] = ACTIONS(800), + [aux_sym_log_level_token1] = ACTIONS(800), + [aux_sym_log_verbose_token1] = ACTIONS(800), + [aux_sym_macs_token1] = ACTIONS(800), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(800), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(800), + [aux_sym_password_authentication_token1] = ACTIONS(800), + [aux_sym_permit_local_command_token1] = ACTIONS(800), + [aux_sym_permit_remote_open_token1] = ACTIONS(800), + [aux_sym_pkcs11_provider_token1] = ACTIONS(800), + [aux_sym_port_token1] = ACTIONS(800), + [aux_sym_preferred_authentications_token1] = ACTIONS(800), + [aux_sym_protocol_token1] = ACTIONS(800), + [aux_sym_proxy_command_token1] = ACTIONS(800), + [aux_sym_proxy_jump_token1] = ACTIONS(800), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(800), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(800), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(800), + [aux_sym_pubkey_authentication_token1] = ACTIONS(800), + [aux_sym_rekey_limit_token1] = ACTIONS(800), + [aux_sym_remote_command_token1] = ACTIONS(800), + [aux_sym_remote_forward_token1] = ACTIONS(800), + [aux_sym_request_tty_token1] = ACTIONS(800), + [aux_sym_required_rsa_size_token1] = ACTIONS(800), + [aux_sym_revoked_host_keys_token1] = ACTIONS(800), + [aux_sym_security_key_provider_token1] = ACTIONS(800), + [aux_sym_send_env_token1] = ACTIONS(800), + [aux_sym_server_alive_count_max_token1] = ACTIONS(800), + [aux_sym_server_alive_interval_token1] = ACTIONS(800), + [aux_sym_session_type_token1] = ACTIONS(800), + [aux_sym_set_env_token1] = ACTIONS(800), + [aux_sym_stdin_null_token1] = ACTIONS(800), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(800), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(800), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(800), + [aux_sym_syslog_facility_token1] = ACTIONS(800), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(800), + [aux_sym_keep_alive_token1] = ACTIONS(800), + [aux_sym_tunnel_token1] = ACTIONS(802), + [aux_sym_tunnel_device_token1] = ACTIONS(800), + [aux_sym_update_host_keys_token1] = ACTIONS(800), + [aux_sym_use_keychain_token1] = ACTIONS(800), + [aux_sym_use_roaming_token1] = ACTIONS(800), + [aux_sym_user_token1] = ACTIONS(802), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(800), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(800), + [aux_sym_visual_host_key_token1] = ACTIONS(800), + [aux_sym_xauth_location_token1] = ACTIONS(800), }, [44] = { - [ts_builtin_sym_end] = ACTIONS(801), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(803), - [anon_sym_DQUOTE] = ACTIONS(805), - [aux_sym_match_token1] = ACTIONS(801), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(801), - [aux_sym_address_family_token1] = ACTIONS(801), - [aux_sym_batch_mode_token1] = ACTIONS(801), - [aux_sym_bind_address_token1] = ACTIONS(801), - [aux_sym_bind_interface_token1] = ACTIONS(801), - [aux_sym_canonical_domains_token1] = ACTIONS(801), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(801), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(801), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(801), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(801), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(801), - [aux_sym_certificate_file_token1] = ACTIONS(801), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(801), - [aux_sym_check_host_ip_token1] = ACTIONS(801), - [aux_sym_ciphers_token1] = ACTIONS(801), - [aux_sym_cipher_token1] = ACTIONS(803), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(801), - [aux_sym_compression_token1] = ACTIONS(801), - [aux_sym_connection_attempts_token1] = ACTIONS(801), - [aux_sym_connect_timeout_token1] = ACTIONS(801), - [aux_sym_control_master_token1] = ACTIONS(801), - [aux_sym_control_path_token1] = ACTIONS(801), - [aux_sym_control_persist_token1] = ACTIONS(801), - [aux_sym_dynamic_forward_token1] = ACTIONS(801), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(801), - [aux_sym_escape_char_token1] = ACTIONS(801), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(801), - [aux_sym_fingerprint_hash_token1] = ACTIONS(801), - [aux_sym_fork_after_authentication_token1] = ACTIONS(801), - [aux_sym_forward_agent_token1] = ACTIONS(801), - [aux_sym_forward_x11_token1] = ACTIONS(803), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(801), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(801), - [aux_sym_gateway_ports_token1] = ACTIONS(801), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(801), - [aux_sym_gssapi_authentication_token1] = ACTIONS(801), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(801), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(801), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(801), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(801), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(801), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(801), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(801), - [aux_sym_hash_known_hosts_token1] = ACTIONS(801), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(801), - [aux_sym_hostbased_authentication_token1] = ACTIONS(801), - [aux_sym_host_key_algorithms_token1] = ACTIONS(801), - [aux_sym_host_key_alias_token1] = ACTIONS(801), - [aux_sym_hostname_token1] = ACTIONS(801), - [aux_sym_identities_only_token1] = ACTIONS(801), - [aux_sym_identity_agent_token1] = ACTIONS(801), - [aux_sym_identity_file_token1] = ACTIONS(801), - [aux_sym_ignore_unknown_token1] = ACTIONS(801), - [aux_sym_include_token1] = ACTIONS(801), - [aux_sym_ip_qos_token1] = ACTIONS(801), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(801), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(801), - [aux_sym_kex_algorithms_token1] = ACTIONS(801), - [aux_sym_known_hosts_command_token1] = ACTIONS(801), - [aux_sym_local_command_token1] = ACTIONS(801), - [aux_sym_local_forward_token1] = ACTIONS(801), - [aux_sym_log_level_token1] = ACTIONS(801), - [aux_sym_log_verbose_token1] = ACTIONS(801), - [aux_sym_macs_token1] = ACTIONS(801), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(801), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(801), - [aux_sym_password_authentication_token1] = ACTIONS(801), - [aux_sym_permit_local_command_token1] = ACTIONS(801), - [aux_sym_permit_remote_open_token1] = ACTIONS(801), - [aux_sym_pkcs11_provider_token1] = ACTIONS(801), - [aux_sym_port_token1] = ACTIONS(801), - [aux_sym_preferred_authentications_token1] = ACTIONS(801), - [aux_sym_protocol_token1] = ACTIONS(801), - [aux_sym_proxy_command_token1] = ACTIONS(801), - [aux_sym_proxy_jump_token1] = ACTIONS(801), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(801), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(801), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(801), - [aux_sym_pubkey_authentication_token1] = ACTIONS(801), - [aux_sym_rekey_limit_token1] = ACTIONS(801), - [aux_sym_remote_command_token1] = ACTIONS(801), - [aux_sym_remote_forward_token1] = ACTIONS(801), - [aux_sym_request_tty_token1] = ACTIONS(801), - [aux_sym_required_rsa_size_token1] = ACTIONS(801), - [aux_sym_revoked_host_keys_token1] = ACTIONS(801), - [aux_sym_security_key_provider_token1] = ACTIONS(801), - [aux_sym_send_env_token1] = ACTIONS(801), - [aux_sym_server_alive_count_max_token1] = ACTIONS(801), - [aux_sym_server_alive_interval_token1] = ACTIONS(801), - [aux_sym_session_type_token1] = ACTIONS(801), - [aux_sym_set_env_token1] = ACTIONS(801), - [aux_sym_stdin_null_token1] = ACTIONS(801), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(801), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(801), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(801), - [aux_sym_syslog_facility_token1] = ACTIONS(801), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(801), - [aux_sym_keep_alive_token1] = ACTIONS(801), - [aux_sym_tunnel_token1] = ACTIONS(803), - [aux_sym_tunnel_device_token1] = ACTIONS(801), - [aux_sym_update_host_keys_token1] = ACTIONS(801), - [aux_sym_use_keychain_token1] = ACTIONS(801), - [aux_sym_use_roaming_token1] = ACTIONS(801), - [aux_sym_user_token1] = ACTIONS(803), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(801), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(801), - [aux_sym_visual_host_key_token1] = ACTIONS(801), - [aux_sym_xauth_location_token1] = ACTIONS(801), + [ts_builtin_sym_end] = ACTIONS(806), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(808), + [anon_sym_DQUOTE] = ACTIONS(810), + [aux_sym_match_token1] = ACTIONS(806), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(806), + [aux_sym_address_family_token1] = ACTIONS(806), + [aux_sym_batch_mode_token1] = ACTIONS(806), + [aux_sym_bind_address_token1] = ACTIONS(806), + [aux_sym_bind_interface_token1] = ACTIONS(806), + [aux_sym_canonical_domains_token1] = ACTIONS(806), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(806), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(806), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(806), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(806), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(806), + [aux_sym_certificate_file_token1] = ACTIONS(806), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(806), + [aux_sym_check_host_ip_token1] = ACTIONS(806), + [aux_sym_ciphers_token1] = ACTIONS(806), + [aux_sym_cipher_token1] = ACTIONS(808), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(806), + [aux_sym_compression_token1] = ACTIONS(806), + [aux_sym_connection_attempts_token1] = ACTIONS(806), + [aux_sym_connect_timeout_token1] = ACTIONS(806), + [aux_sym_control_master_token1] = ACTIONS(806), + [aux_sym_control_path_token1] = ACTIONS(806), + [aux_sym_control_persist_token1] = ACTIONS(806), + [aux_sym_dynamic_forward_token1] = ACTIONS(806), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(806), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(806), + [aux_sym_escape_char_token1] = ACTIONS(806), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(806), + [aux_sym_fingerprint_hash_token1] = ACTIONS(806), + [aux_sym_fork_after_authentication_token1] = ACTIONS(806), + [aux_sym_forward_agent_token1] = ACTIONS(806), + [aux_sym_forward_x11_token1] = ACTIONS(808), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(806), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(806), + [aux_sym_gateway_ports_token1] = ACTIONS(806), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(806), + [aux_sym_gssapi_authentication_token1] = ACTIONS(806), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(806), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(806), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(806), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(806), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(806), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(806), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(806), + [aux_sym_hash_known_hosts_token1] = ACTIONS(806), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(806), + [aux_sym_hostbased_authentication_token1] = ACTIONS(806), + [aux_sym_host_key_algorithms_token1] = ACTIONS(806), + [aux_sym_host_key_alias_token1] = ACTIONS(806), + [aux_sym_hostname_token1] = ACTIONS(806), + [aux_sym_identities_only_token1] = ACTIONS(806), + [aux_sym_identity_agent_token1] = ACTIONS(806), + [aux_sym_identity_file_token1] = ACTIONS(806), + [aux_sym_ignore_unknown_token1] = ACTIONS(806), + [aux_sym_include_token1] = ACTIONS(806), + [aux_sym_ip_qos_token1] = ACTIONS(806), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(806), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(806), + [aux_sym_kex_algorithms_token1] = ACTIONS(806), + [aux_sym_known_hosts_command_token1] = ACTIONS(806), + [aux_sym_local_command_token1] = ACTIONS(806), + [aux_sym_local_forward_token1] = ACTIONS(806), + [aux_sym_log_level_token1] = ACTIONS(806), + [aux_sym_log_verbose_token1] = ACTIONS(806), + [aux_sym_macs_token1] = ACTIONS(806), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(806), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(806), + [aux_sym_password_authentication_token1] = ACTIONS(806), + [aux_sym_permit_local_command_token1] = ACTIONS(806), + [aux_sym_permit_remote_open_token1] = ACTIONS(806), + [aux_sym_pkcs11_provider_token1] = ACTIONS(806), + [aux_sym_port_token1] = ACTIONS(806), + [aux_sym_preferred_authentications_token1] = ACTIONS(806), + [aux_sym_protocol_token1] = ACTIONS(806), + [aux_sym_proxy_command_token1] = ACTIONS(806), + [aux_sym_proxy_jump_token1] = ACTIONS(806), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(806), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(806), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(806), + [aux_sym_pubkey_authentication_token1] = ACTIONS(806), + [aux_sym_rekey_limit_token1] = ACTIONS(806), + [aux_sym_remote_command_token1] = ACTIONS(806), + [aux_sym_remote_forward_token1] = ACTIONS(806), + [aux_sym_request_tty_token1] = ACTIONS(806), + [aux_sym_required_rsa_size_token1] = ACTIONS(806), + [aux_sym_revoked_host_keys_token1] = ACTIONS(806), + [aux_sym_security_key_provider_token1] = ACTIONS(806), + [aux_sym_send_env_token1] = ACTIONS(806), + [aux_sym_server_alive_count_max_token1] = ACTIONS(806), + [aux_sym_server_alive_interval_token1] = ACTIONS(806), + [aux_sym_session_type_token1] = ACTIONS(806), + [aux_sym_set_env_token1] = ACTIONS(806), + [aux_sym_stdin_null_token1] = ACTIONS(806), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(806), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(806), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(806), + [aux_sym_syslog_facility_token1] = ACTIONS(806), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(806), + [aux_sym_keep_alive_token1] = ACTIONS(806), + [aux_sym_tunnel_token1] = ACTIONS(808), + [aux_sym_tunnel_device_token1] = ACTIONS(806), + [aux_sym_update_host_keys_token1] = ACTIONS(806), + [aux_sym_use_keychain_token1] = ACTIONS(806), + [aux_sym_use_roaming_token1] = ACTIONS(806), + [aux_sym_user_token1] = ACTIONS(808), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(806), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(806), + [aux_sym_visual_host_key_token1] = ACTIONS(806), + [aux_sym_xauth_location_token1] = ACTIONS(806), }, [45] = { - [ts_builtin_sym_end] = ACTIONS(807), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [aux_sym_match_token1] = ACTIONS(807), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(807), - [aux_sym_address_family_token1] = ACTIONS(807), - [aux_sym_batch_mode_token1] = ACTIONS(807), - [aux_sym_bind_address_token1] = ACTIONS(807), - [aux_sym_bind_interface_token1] = ACTIONS(807), - [aux_sym_canonical_domains_token1] = ACTIONS(807), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(807), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(807), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(807), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(807), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(807), - [aux_sym_certificate_file_token1] = ACTIONS(807), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(807), - [aux_sym_check_host_ip_token1] = ACTIONS(807), - [aux_sym_ciphers_token1] = ACTIONS(807), - [aux_sym_cipher_token1] = ACTIONS(809), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(807), - [aux_sym_compression_token1] = ACTIONS(807), - [aux_sym_connection_attempts_token1] = ACTIONS(807), - [aux_sym_connect_timeout_token1] = ACTIONS(807), - [aux_sym_control_master_token1] = ACTIONS(807), - [aux_sym_control_path_token1] = ACTIONS(807), - [aux_sym_control_persist_token1] = ACTIONS(807), - [aux_sym_dynamic_forward_token1] = ACTIONS(807), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(807), - [aux_sym_escape_char_token1] = ACTIONS(807), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(807), - [aux_sym_fingerprint_hash_token1] = ACTIONS(807), - [aux_sym_fork_after_authentication_token1] = ACTIONS(807), - [aux_sym_forward_agent_token1] = ACTIONS(807), - [aux_sym_forward_x11_token1] = ACTIONS(809), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(807), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(807), - [aux_sym_gateway_ports_token1] = ACTIONS(807), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(807), - [aux_sym_gssapi_authentication_token1] = ACTIONS(807), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(807), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(807), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(807), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(807), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(807), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(807), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(807), - [aux_sym_hash_known_hosts_token1] = ACTIONS(807), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(807), - [aux_sym_hostbased_authentication_token1] = ACTIONS(807), - [aux_sym_host_key_algorithms_token1] = ACTIONS(807), - [aux_sym_host_key_alias_token1] = ACTIONS(807), - [aux_sym_hostname_token1] = ACTIONS(807), - [aux_sym_identities_only_token1] = ACTIONS(807), - [aux_sym_identity_agent_token1] = ACTIONS(807), - [aux_sym_identity_file_token1] = ACTIONS(807), - [aux_sym_ignore_unknown_token1] = ACTIONS(807), - [aux_sym_include_token1] = ACTIONS(807), - [aux_sym_ip_qos_token1] = ACTIONS(807), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(807), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(807), - [aux_sym_kex_algorithms_token1] = ACTIONS(807), - [aux_sym_known_hosts_command_token1] = ACTIONS(807), - [aux_sym_local_command_token1] = ACTIONS(807), - [aux_sym_local_forward_token1] = ACTIONS(807), - [aux_sym_log_level_token1] = ACTIONS(807), - [aux_sym_log_verbose_token1] = ACTIONS(807), - [aux_sym_macs_token1] = ACTIONS(807), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(807), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(807), - [aux_sym_password_authentication_token1] = ACTIONS(807), - [aux_sym_permit_local_command_token1] = ACTIONS(807), - [aux_sym_permit_remote_open_token1] = ACTIONS(807), - [aux_sym_pkcs11_provider_token1] = ACTIONS(807), - [aux_sym_port_token1] = ACTIONS(807), - [aux_sym_preferred_authentications_token1] = ACTIONS(807), - [aux_sym_protocol_token1] = ACTIONS(807), - [aux_sym_proxy_command_token1] = ACTIONS(807), - [aux_sym_proxy_jump_token1] = ACTIONS(807), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(807), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(807), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(807), - [aux_sym_pubkey_authentication_token1] = ACTIONS(807), - [aux_sym_rekey_limit_token1] = ACTIONS(807), - [aux_sym_remote_command_token1] = ACTIONS(807), - [aux_sym_remote_forward_token1] = ACTIONS(807), - [aux_sym_request_tty_token1] = ACTIONS(807), - [aux_sym_required_rsa_size_token1] = ACTIONS(807), - [aux_sym_revoked_host_keys_token1] = ACTIONS(807), - [aux_sym_security_key_provider_token1] = ACTIONS(807), - [aux_sym_send_env_token1] = ACTIONS(807), - [aux_sym_server_alive_count_max_token1] = ACTIONS(807), - [aux_sym_server_alive_interval_token1] = ACTIONS(807), - [aux_sym_session_type_token1] = ACTIONS(807), - [aux_sym_set_env_token1] = ACTIONS(807), - [aux_sym_stdin_null_token1] = ACTIONS(807), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(807), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(807), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(807), - [aux_sym_syslog_facility_token1] = ACTIONS(807), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(807), - [aux_sym_keep_alive_token1] = ACTIONS(807), - [aux_sym_tunnel_token1] = ACTIONS(809), - [aux_sym_tunnel_device_token1] = ACTIONS(807), - [aux_sym_update_host_keys_token1] = ACTIONS(807), - [aux_sym_use_keychain_token1] = ACTIONS(807), - [aux_sym_use_roaming_token1] = ACTIONS(807), - [aux_sym_user_token1] = ACTIONS(809), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(807), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(807), - [aux_sym_visual_host_key_token1] = ACTIONS(807), - [aux_sym_xauth_location_token1] = ACTIONS(807), + [ts_builtin_sym_end] = ACTIONS(812), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(816), + [aux_sym_match_token1] = ACTIONS(812), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(812), + [aux_sym_address_family_token1] = ACTIONS(812), + [aux_sym_batch_mode_token1] = ACTIONS(812), + [aux_sym_bind_address_token1] = ACTIONS(812), + [aux_sym_bind_interface_token1] = ACTIONS(812), + [aux_sym_canonical_domains_token1] = ACTIONS(812), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(812), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(812), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(812), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(812), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(812), + [aux_sym_certificate_file_token1] = ACTIONS(812), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(812), + [aux_sym_check_host_ip_token1] = ACTIONS(812), + [aux_sym_ciphers_token1] = ACTIONS(812), + [aux_sym_cipher_token1] = ACTIONS(814), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(812), + [aux_sym_compression_token1] = ACTIONS(812), + [aux_sym_connection_attempts_token1] = ACTIONS(812), + [aux_sym_connect_timeout_token1] = ACTIONS(812), + [aux_sym_control_master_token1] = ACTIONS(812), + [aux_sym_control_path_token1] = ACTIONS(812), + [aux_sym_control_persist_token1] = ACTIONS(812), + [aux_sym_dynamic_forward_token1] = ACTIONS(812), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(812), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(812), + [aux_sym_escape_char_token1] = ACTIONS(812), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(812), + [aux_sym_fingerprint_hash_token1] = ACTIONS(812), + [aux_sym_fork_after_authentication_token1] = ACTIONS(812), + [aux_sym_forward_agent_token1] = ACTIONS(812), + [aux_sym_forward_x11_token1] = ACTIONS(814), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(812), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(812), + [aux_sym_gateway_ports_token1] = ACTIONS(812), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(812), + [aux_sym_gssapi_authentication_token1] = ACTIONS(812), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(812), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(812), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(812), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(812), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(812), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(812), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(812), + [aux_sym_hash_known_hosts_token1] = ACTIONS(812), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(812), + [aux_sym_hostbased_authentication_token1] = ACTIONS(812), + [aux_sym_host_key_algorithms_token1] = ACTIONS(812), + [aux_sym_host_key_alias_token1] = ACTIONS(812), + [aux_sym_hostname_token1] = ACTIONS(812), + [aux_sym_identities_only_token1] = ACTIONS(812), + [aux_sym_identity_agent_token1] = ACTIONS(812), + [aux_sym_identity_file_token1] = ACTIONS(812), + [aux_sym_ignore_unknown_token1] = ACTIONS(812), + [aux_sym_include_token1] = ACTIONS(812), + [aux_sym_ip_qos_token1] = ACTIONS(812), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(812), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(812), + [aux_sym_kex_algorithms_token1] = ACTIONS(812), + [aux_sym_known_hosts_command_token1] = ACTIONS(812), + [aux_sym_local_command_token1] = ACTIONS(812), + [aux_sym_local_forward_token1] = ACTIONS(812), + [aux_sym_log_level_token1] = ACTIONS(812), + [aux_sym_log_verbose_token1] = ACTIONS(812), + [aux_sym_macs_token1] = ACTIONS(812), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(812), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(812), + [aux_sym_password_authentication_token1] = ACTIONS(812), + [aux_sym_permit_local_command_token1] = ACTIONS(812), + [aux_sym_permit_remote_open_token1] = ACTIONS(812), + [aux_sym_pkcs11_provider_token1] = ACTIONS(812), + [aux_sym_port_token1] = ACTIONS(812), + [aux_sym_preferred_authentications_token1] = ACTIONS(812), + [aux_sym_protocol_token1] = ACTIONS(812), + [aux_sym_proxy_command_token1] = ACTIONS(812), + [aux_sym_proxy_jump_token1] = ACTIONS(812), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(812), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(812), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(812), + [aux_sym_pubkey_authentication_token1] = ACTIONS(812), + [aux_sym_rekey_limit_token1] = ACTIONS(812), + [aux_sym_remote_command_token1] = ACTIONS(812), + [aux_sym_remote_forward_token1] = ACTIONS(812), + [aux_sym_request_tty_token1] = ACTIONS(812), + [aux_sym_required_rsa_size_token1] = ACTIONS(812), + [aux_sym_revoked_host_keys_token1] = ACTIONS(812), + [aux_sym_security_key_provider_token1] = ACTIONS(812), + [aux_sym_send_env_token1] = ACTIONS(812), + [aux_sym_server_alive_count_max_token1] = ACTIONS(812), + [aux_sym_server_alive_interval_token1] = ACTIONS(812), + [aux_sym_session_type_token1] = ACTIONS(812), + [aux_sym_set_env_token1] = ACTIONS(812), + [aux_sym_stdin_null_token1] = ACTIONS(812), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(812), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(812), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(812), + [aux_sym_syslog_facility_token1] = ACTIONS(812), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(812), + [aux_sym_keep_alive_token1] = ACTIONS(812), + [aux_sym_tunnel_token1] = ACTIONS(814), + [aux_sym_tunnel_device_token1] = ACTIONS(812), + [aux_sym_update_host_keys_token1] = ACTIONS(812), + [aux_sym_use_keychain_token1] = ACTIONS(812), + [aux_sym_use_roaming_token1] = ACTIONS(812), + [aux_sym_user_token1] = ACTIONS(814), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(812), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(812), + [aux_sym_visual_host_key_token1] = ACTIONS(812), + [aux_sym_xauth_location_token1] = ACTIONS(812), }, [46] = { - [ts_builtin_sym_end] = ACTIONS(813), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(817), - [aux_sym_match_token1] = ACTIONS(813), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(813), - [aux_sym_address_family_token1] = ACTIONS(813), - [aux_sym_batch_mode_token1] = ACTIONS(813), - [aux_sym_bind_address_token1] = ACTIONS(813), - [aux_sym_bind_interface_token1] = ACTIONS(813), - [aux_sym_canonical_domains_token1] = ACTIONS(813), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(813), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(813), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(813), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(813), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(813), - [aux_sym_certificate_file_token1] = ACTIONS(813), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(813), - [aux_sym_check_host_ip_token1] = ACTIONS(813), - [aux_sym_ciphers_token1] = ACTIONS(813), - [aux_sym_cipher_token1] = ACTIONS(815), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(813), - [aux_sym_compression_token1] = ACTIONS(813), - [aux_sym_connection_attempts_token1] = ACTIONS(813), - [aux_sym_connect_timeout_token1] = ACTIONS(813), - [aux_sym_control_master_token1] = ACTIONS(813), - [aux_sym_control_path_token1] = ACTIONS(813), - [aux_sym_control_persist_token1] = ACTIONS(813), - [aux_sym_dynamic_forward_token1] = ACTIONS(813), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(813), - [aux_sym_escape_char_token1] = ACTIONS(813), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(813), - [aux_sym_fingerprint_hash_token1] = ACTIONS(813), - [aux_sym_fork_after_authentication_token1] = ACTIONS(813), - [aux_sym_forward_agent_token1] = ACTIONS(813), - [aux_sym_forward_x11_token1] = ACTIONS(815), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(813), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(813), - [aux_sym_gateway_ports_token1] = ACTIONS(813), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(813), - [aux_sym_gssapi_authentication_token1] = ACTIONS(813), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(813), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(813), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(813), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(813), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(813), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(813), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(813), - [aux_sym_hash_known_hosts_token1] = ACTIONS(813), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(813), - [aux_sym_hostbased_authentication_token1] = ACTIONS(813), - [aux_sym_host_key_algorithms_token1] = ACTIONS(813), - [aux_sym_host_key_alias_token1] = ACTIONS(813), - [aux_sym_hostname_token1] = ACTIONS(813), - [aux_sym_identities_only_token1] = ACTIONS(813), - [aux_sym_identity_agent_token1] = ACTIONS(813), - [aux_sym_identity_file_token1] = ACTIONS(813), - [aux_sym_ignore_unknown_token1] = ACTIONS(813), - [aux_sym_include_token1] = ACTIONS(813), - [aux_sym_ip_qos_token1] = ACTIONS(813), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(813), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(813), - [aux_sym_kex_algorithms_token1] = ACTIONS(813), - [aux_sym_known_hosts_command_token1] = ACTIONS(813), - [aux_sym_local_command_token1] = ACTIONS(813), - [aux_sym_local_forward_token1] = ACTIONS(813), - [aux_sym_log_level_token1] = ACTIONS(813), - [aux_sym_log_verbose_token1] = ACTIONS(813), - [aux_sym_macs_token1] = ACTIONS(813), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(813), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(813), - [aux_sym_password_authentication_token1] = ACTIONS(813), - [aux_sym_permit_local_command_token1] = ACTIONS(813), - [aux_sym_permit_remote_open_token1] = ACTIONS(813), - [aux_sym_pkcs11_provider_token1] = ACTIONS(813), - [aux_sym_port_token1] = ACTIONS(813), - [aux_sym_preferred_authentications_token1] = ACTIONS(813), - [aux_sym_protocol_token1] = ACTIONS(813), - [aux_sym_proxy_command_token1] = ACTIONS(813), - [aux_sym_proxy_jump_token1] = ACTIONS(813), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(813), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(813), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(813), - [aux_sym_pubkey_authentication_token1] = ACTIONS(813), - [aux_sym_rekey_limit_token1] = ACTIONS(813), - [aux_sym_remote_command_token1] = ACTIONS(813), - [aux_sym_remote_forward_token1] = ACTIONS(813), - [aux_sym_request_tty_token1] = ACTIONS(813), - [aux_sym_required_rsa_size_token1] = ACTIONS(813), - [aux_sym_revoked_host_keys_token1] = ACTIONS(813), - [aux_sym_security_key_provider_token1] = ACTIONS(813), - [aux_sym_send_env_token1] = ACTIONS(813), - [aux_sym_server_alive_count_max_token1] = ACTIONS(813), - [aux_sym_server_alive_interval_token1] = ACTIONS(813), - [aux_sym_session_type_token1] = ACTIONS(813), - [aux_sym_set_env_token1] = ACTIONS(813), - [aux_sym_stdin_null_token1] = ACTIONS(813), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(813), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(813), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(813), - [aux_sym_syslog_facility_token1] = ACTIONS(813), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(813), - [aux_sym_keep_alive_token1] = ACTIONS(813), - [aux_sym_tunnel_token1] = ACTIONS(815), - [aux_sym_tunnel_device_token1] = ACTIONS(813), - [aux_sym_update_host_keys_token1] = ACTIONS(813), - [aux_sym_use_keychain_token1] = ACTIONS(813), - [aux_sym_use_roaming_token1] = ACTIONS(813), - [aux_sym_user_token1] = ACTIONS(815), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(813), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(813), - [aux_sym_visual_host_key_token1] = ACTIONS(813), - [aux_sym_xauth_location_token1] = ACTIONS(813), + [ts_builtin_sym_end] = ACTIONS(818), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(822), + [aux_sym_match_token1] = ACTIONS(818), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(818), + [aux_sym_address_family_token1] = ACTIONS(818), + [aux_sym_batch_mode_token1] = ACTIONS(818), + [aux_sym_bind_address_token1] = ACTIONS(818), + [aux_sym_bind_interface_token1] = ACTIONS(818), + [aux_sym_canonical_domains_token1] = ACTIONS(818), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(818), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(818), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(818), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(818), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(818), + [aux_sym_certificate_file_token1] = ACTIONS(818), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(818), + [aux_sym_check_host_ip_token1] = ACTIONS(818), + [aux_sym_ciphers_token1] = ACTIONS(818), + [aux_sym_cipher_token1] = ACTIONS(820), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(818), + [aux_sym_compression_token1] = ACTIONS(818), + [aux_sym_connection_attempts_token1] = ACTIONS(818), + [aux_sym_connect_timeout_token1] = ACTIONS(818), + [aux_sym_control_master_token1] = ACTIONS(818), + [aux_sym_control_path_token1] = ACTIONS(818), + [aux_sym_control_persist_token1] = ACTIONS(818), + [aux_sym_dynamic_forward_token1] = ACTIONS(818), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(818), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(818), + [aux_sym_escape_char_token1] = ACTIONS(818), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(818), + [aux_sym_fingerprint_hash_token1] = ACTIONS(818), + [aux_sym_fork_after_authentication_token1] = ACTIONS(818), + [aux_sym_forward_agent_token1] = ACTIONS(818), + [aux_sym_forward_x11_token1] = ACTIONS(820), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(818), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(818), + [aux_sym_gateway_ports_token1] = ACTIONS(818), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(818), + [aux_sym_gssapi_authentication_token1] = ACTIONS(818), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(818), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(818), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(818), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(818), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(818), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(818), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(818), + [aux_sym_hash_known_hosts_token1] = ACTIONS(818), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(818), + [aux_sym_hostbased_authentication_token1] = ACTIONS(818), + [aux_sym_host_key_algorithms_token1] = ACTIONS(818), + [aux_sym_host_key_alias_token1] = ACTIONS(818), + [aux_sym_hostname_token1] = ACTIONS(818), + [aux_sym_identities_only_token1] = ACTIONS(818), + [aux_sym_identity_agent_token1] = ACTIONS(818), + [aux_sym_identity_file_token1] = ACTIONS(818), + [aux_sym_ignore_unknown_token1] = ACTIONS(818), + [aux_sym_include_token1] = ACTIONS(818), + [aux_sym_ip_qos_token1] = ACTIONS(818), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(818), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(818), + [aux_sym_kex_algorithms_token1] = ACTIONS(818), + [aux_sym_known_hosts_command_token1] = ACTIONS(818), + [aux_sym_local_command_token1] = ACTIONS(818), + [aux_sym_local_forward_token1] = ACTIONS(818), + [aux_sym_log_level_token1] = ACTIONS(818), + [aux_sym_log_verbose_token1] = ACTIONS(818), + [aux_sym_macs_token1] = ACTIONS(818), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(818), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(818), + [aux_sym_password_authentication_token1] = ACTIONS(818), + [aux_sym_permit_local_command_token1] = ACTIONS(818), + [aux_sym_permit_remote_open_token1] = ACTIONS(818), + [aux_sym_pkcs11_provider_token1] = ACTIONS(818), + [aux_sym_port_token1] = ACTIONS(818), + [aux_sym_preferred_authentications_token1] = ACTIONS(818), + [aux_sym_protocol_token1] = ACTIONS(818), + [aux_sym_proxy_command_token1] = ACTIONS(818), + [aux_sym_proxy_jump_token1] = ACTIONS(818), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(818), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(818), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(818), + [aux_sym_pubkey_authentication_token1] = ACTIONS(818), + [aux_sym_rekey_limit_token1] = ACTIONS(818), + [aux_sym_remote_command_token1] = ACTIONS(818), + [aux_sym_remote_forward_token1] = ACTIONS(818), + [aux_sym_request_tty_token1] = ACTIONS(818), + [aux_sym_required_rsa_size_token1] = ACTIONS(818), + [aux_sym_revoked_host_keys_token1] = ACTIONS(818), + [aux_sym_security_key_provider_token1] = ACTIONS(818), + [aux_sym_send_env_token1] = ACTIONS(818), + [aux_sym_server_alive_count_max_token1] = ACTIONS(818), + [aux_sym_server_alive_interval_token1] = ACTIONS(818), + [aux_sym_session_type_token1] = ACTIONS(818), + [aux_sym_set_env_token1] = ACTIONS(818), + [aux_sym_stdin_null_token1] = ACTIONS(818), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(818), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(818), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(818), + [aux_sym_syslog_facility_token1] = ACTIONS(818), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(818), + [aux_sym_keep_alive_token1] = ACTIONS(818), + [aux_sym_tunnel_token1] = ACTIONS(820), + [aux_sym_tunnel_device_token1] = ACTIONS(818), + [aux_sym_update_host_keys_token1] = ACTIONS(818), + [aux_sym_use_keychain_token1] = ACTIONS(818), + [aux_sym_use_roaming_token1] = ACTIONS(818), + [aux_sym_user_token1] = ACTIONS(820), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(818), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(818), + [aux_sym_visual_host_key_token1] = ACTIONS(818), + [aux_sym_xauth_location_token1] = ACTIONS(818), }, [47] = { - [ts_builtin_sym_end] = ACTIONS(819), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [aux_sym_match_token1] = ACTIONS(819), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(819), - [aux_sym_address_family_token1] = ACTIONS(819), - [aux_sym_batch_mode_token1] = ACTIONS(819), - [aux_sym_bind_address_token1] = ACTIONS(819), - [aux_sym_bind_interface_token1] = ACTIONS(819), - [aux_sym_canonical_domains_token1] = ACTIONS(819), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(819), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(819), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(819), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(819), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(819), - [aux_sym_certificate_file_token1] = ACTIONS(819), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(819), - [aux_sym_check_host_ip_token1] = ACTIONS(819), - [aux_sym_ciphers_token1] = ACTIONS(819), - [aux_sym_cipher_token1] = ACTIONS(821), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(819), - [aux_sym_compression_token1] = ACTIONS(819), - [aux_sym_connection_attempts_token1] = ACTIONS(819), - [aux_sym_connect_timeout_token1] = ACTIONS(819), - [aux_sym_control_master_token1] = ACTIONS(819), - [aux_sym_control_path_token1] = ACTIONS(819), - [aux_sym_control_persist_token1] = ACTIONS(819), - [aux_sym_dynamic_forward_token1] = ACTIONS(819), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(819), - [aux_sym_escape_char_token1] = ACTIONS(819), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(819), - [aux_sym_fingerprint_hash_token1] = ACTIONS(819), - [aux_sym_fork_after_authentication_token1] = ACTIONS(819), - [aux_sym_forward_agent_token1] = ACTIONS(819), - [aux_sym_forward_x11_token1] = ACTIONS(821), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(819), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(819), - [aux_sym_gateway_ports_token1] = ACTIONS(819), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(819), - [aux_sym_gssapi_authentication_token1] = ACTIONS(819), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(819), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(819), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(819), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(819), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(819), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(819), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(819), - [aux_sym_hash_known_hosts_token1] = ACTIONS(819), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(819), - [aux_sym_hostbased_authentication_token1] = ACTIONS(819), - [aux_sym_host_key_algorithms_token1] = ACTIONS(819), - [aux_sym_host_key_alias_token1] = ACTIONS(819), - [aux_sym_hostname_token1] = ACTIONS(819), - [aux_sym_identities_only_token1] = ACTIONS(819), - [aux_sym_identity_agent_token1] = ACTIONS(819), - [aux_sym_identity_file_token1] = ACTIONS(819), - [aux_sym_ignore_unknown_token1] = ACTIONS(819), - [aux_sym_include_token1] = ACTIONS(819), - [aux_sym_ip_qos_token1] = ACTIONS(819), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(819), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(819), - [aux_sym_kex_algorithms_token1] = ACTIONS(819), - [aux_sym_known_hosts_command_token1] = ACTIONS(819), - [aux_sym_local_command_token1] = ACTIONS(819), - [aux_sym_local_forward_token1] = ACTIONS(819), - [aux_sym_log_level_token1] = ACTIONS(819), - [aux_sym_log_verbose_token1] = ACTIONS(819), - [aux_sym_macs_token1] = ACTIONS(819), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(819), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(819), - [aux_sym_password_authentication_token1] = ACTIONS(819), - [aux_sym_permit_local_command_token1] = ACTIONS(819), - [aux_sym_permit_remote_open_token1] = ACTIONS(819), - [aux_sym_pkcs11_provider_token1] = ACTIONS(819), - [aux_sym_port_token1] = ACTIONS(819), - [aux_sym_preferred_authentications_token1] = ACTIONS(819), - [aux_sym_protocol_token1] = ACTIONS(819), - [aux_sym_proxy_command_token1] = ACTIONS(819), - [aux_sym_proxy_jump_token1] = ACTIONS(819), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(819), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(819), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(819), - [aux_sym_pubkey_authentication_token1] = ACTIONS(819), - [aux_sym_rekey_limit_token1] = ACTIONS(819), - [aux_sym_remote_command_token1] = ACTIONS(819), - [aux_sym_remote_forward_token1] = ACTIONS(819), - [aux_sym_request_tty_token1] = ACTIONS(819), - [aux_sym_required_rsa_size_token1] = ACTIONS(819), - [aux_sym_revoked_host_keys_token1] = ACTIONS(819), - [aux_sym_security_key_provider_token1] = ACTIONS(819), - [aux_sym_send_env_token1] = ACTIONS(819), - [aux_sym_server_alive_count_max_token1] = ACTIONS(819), - [aux_sym_server_alive_interval_token1] = ACTIONS(819), - [aux_sym_session_type_token1] = ACTIONS(819), - [aux_sym_set_env_token1] = ACTIONS(819), - [aux_sym_stdin_null_token1] = ACTIONS(819), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(819), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(819), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(819), - [aux_sym_syslog_facility_token1] = ACTIONS(819), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(819), - [aux_sym_keep_alive_token1] = ACTIONS(819), - [aux_sym_tunnel_token1] = ACTIONS(821), - [aux_sym_tunnel_device_token1] = ACTIONS(819), - [aux_sym_update_host_keys_token1] = ACTIONS(819), - [aux_sym_use_keychain_token1] = ACTIONS(819), - [aux_sym_use_roaming_token1] = ACTIONS(819), - [aux_sym_user_token1] = ACTIONS(821), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(819), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(819), - [aux_sym_visual_host_key_token1] = ACTIONS(819), - [aux_sym_xauth_location_token1] = ACTIONS(819), + [ts_builtin_sym_end] = ACTIONS(824), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(828), + [aux_sym_match_token1] = ACTIONS(824), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(824), + [aux_sym_address_family_token1] = ACTIONS(824), + [aux_sym_batch_mode_token1] = ACTIONS(824), + [aux_sym_bind_address_token1] = ACTIONS(824), + [aux_sym_bind_interface_token1] = ACTIONS(824), + [aux_sym_canonical_domains_token1] = ACTIONS(824), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(824), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(824), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(824), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(824), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(824), + [aux_sym_certificate_file_token1] = ACTIONS(824), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(824), + [aux_sym_check_host_ip_token1] = ACTIONS(824), + [aux_sym_ciphers_token1] = ACTIONS(824), + [aux_sym_cipher_token1] = ACTIONS(826), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(824), + [aux_sym_compression_token1] = ACTIONS(824), + [aux_sym_connection_attempts_token1] = ACTIONS(824), + [aux_sym_connect_timeout_token1] = ACTIONS(824), + [aux_sym_control_master_token1] = ACTIONS(824), + [aux_sym_control_path_token1] = ACTIONS(824), + [aux_sym_control_persist_token1] = ACTIONS(824), + [aux_sym_dynamic_forward_token1] = ACTIONS(824), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(824), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(824), + [aux_sym_escape_char_token1] = ACTIONS(824), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(824), + [aux_sym_fingerprint_hash_token1] = ACTIONS(824), + [aux_sym_fork_after_authentication_token1] = ACTIONS(824), + [aux_sym_forward_agent_token1] = ACTIONS(824), + [aux_sym_forward_x11_token1] = ACTIONS(826), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(824), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(824), + [aux_sym_gateway_ports_token1] = ACTIONS(824), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(824), + [aux_sym_gssapi_authentication_token1] = ACTIONS(824), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(824), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(824), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(824), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(824), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(824), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(824), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(824), + [aux_sym_hash_known_hosts_token1] = ACTIONS(824), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(824), + [aux_sym_hostbased_authentication_token1] = ACTIONS(824), + [aux_sym_host_key_algorithms_token1] = ACTIONS(824), + [aux_sym_host_key_alias_token1] = ACTIONS(824), + [aux_sym_hostname_token1] = ACTIONS(824), + [aux_sym_identities_only_token1] = ACTIONS(824), + [aux_sym_identity_agent_token1] = ACTIONS(824), + [aux_sym_identity_file_token1] = ACTIONS(824), + [aux_sym_ignore_unknown_token1] = ACTIONS(824), + [aux_sym_include_token1] = ACTIONS(824), + [aux_sym_ip_qos_token1] = ACTIONS(824), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(824), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(824), + [aux_sym_kex_algorithms_token1] = ACTIONS(824), + [aux_sym_known_hosts_command_token1] = ACTIONS(824), + [aux_sym_local_command_token1] = ACTIONS(824), + [aux_sym_local_forward_token1] = ACTIONS(824), + [aux_sym_log_level_token1] = ACTIONS(824), + [aux_sym_log_verbose_token1] = ACTIONS(824), + [aux_sym_macs_token1] = ACTIONS(824), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(824), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(824), + [aux_sym_password_authentication_token1] = ACTIONS(824), + [aux_sym_permit_local_command_token1] = ACTIONS(824), + [aux_sym_permit_remote_open_token1] = ACTIONS(824), + [aux_sym_pkcs11_provider_token1] = ACTIONS(824), + [aux_sym_port_token1] = ACTIONS(824), + [aux_sym_preferred_authentications_token1] = ACTIONS(824), + [aux_sym_protocol_token1] = ACTIONS(824), + [aux_sym_proxy_command_token1] = ACTIONS(824), + [aux_sym_proxy_jump_token1] = ACTIONS(824), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(824), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(824), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(824), + [aux_sym_pubkey_authentication_token1] = ACTIONS(824), + [aux_sym_rekey_limit_token1] = ACTIONS(824), + [aux_sym_remote_command_token1] = ACTIONS(824), + [aux_sym_remote_forward_token1] = ACTIONS(824), + [aux_sym_request_tty_token1] = ACTIONS(824), + [aux_sym_required_rsa_size_token1] = ACTIONS(824), + [aux_sym_revoked_host_keys_token1] = ACTIONS(824), + [aux_sym_security_key_provider_token1] = ACTIONS(824), + [aux_sym_send_env_token1] = ACTIONS(824), + [aux_sym_server_alive_count_max_token1] = ACTIONS(824), + [aux_sym_server_alive_interval_token1] = ACTIONS(824), + [aux_sym_session_type_token1] = ACTIONS(824), + [aux_sym_set_env_token1] = ACTIONS(824), + [aux_sym_stdin_null_token1] = ACTIONS(824), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(824), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(824), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(824), + [aux_sym_syslog_facility_token1] = ACTIONS(824), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(824), + [aux_sym_keep_alive_token1] = ACTIONS(824), + [aux_sym_tunnel_token1] = ACTIONS(826), + [aux_sym_tunnel_device_token1] = ACTIONS(824), + [aux_sym_update_host_keys_token1] = ACTIONS(824), + [aux_sym_use_keychain_token1] = ACTIONS(824), + [aux_sym_use_roaming_token1] = ACTIONS(824), + [aux_sym_user_token1] = ACTIONS(826), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(824), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(824), + [aux_sym_visual_host_key_token1] = ACTIONS(824), + [aux_sym_xauth_location_token1] = ACTIONS(824), }, [48] = { - [ts_builtin_sym_end] = ACTIONS(825), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [aux_sym_match_token1] = ACTIONS(825), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(825), - [aux_sym_address_family_token1] = ACTIONS(825), - [aux_sym_batch_mode_token1] = ACTIONS(825), - [aux_sym_bind_address_token1] = ACTIONS(825), - [aux_sym_bind_interface_token1] = ACTIONS(825), - [aux_sym_canonical_domains_token1] = ACTIONS(825), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(825), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(825), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(825), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(825), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(825), - [aux_sym_certificate_file_token1] = ACTIONS(825), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(825), - [aux_sym_check_host_ip_token1] = ACTIONS(825), - [aux_sym_ciphers_token1] = ACTIONS(825), - [aux_sym_cipher_token1] = ACTIONS(827), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(825), - [aux_sym_compression_token1] = ACTIONS(825), - [aux_sym_connection_attempts_token1] = ACTIONS(825), - [aux_sym_connect_timeout_token1] = ACTIONS(825), - [aux_sym_control_master_token1] = ACTIONS(825), - [aux_sym_control_path_token1] = ACTIONS(825), - [aux_sym_control_persist_token1] = ACTIONS(825), - [aux_sym_dynamic_forward_token1] = ACTIONS(825), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(825), - [aux_sym_escape_char_token1] = ACTIONS(825), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(825), - [aux_sym_fingerprint_hash_token1] = ACTIONS(825), - [aux_sym_fork_after_authentication_token1] = ACTIONS(825), - [aux_sym_forward_agent_token1] = ACTIONS(825), - [aux_sym_forward_x11_token1] = ACTIONS(827), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(825), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(825), - [aux_sym_gateway_ports_token1] = ACTIONS(825), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(825), - [aux_sym_gssapi_authentication_token1] = ACTIONS(825), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(825), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(825), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(825), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(825), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(825), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(825), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(825), - [aux_sym_hash_known_hosts_token1] = ACTIONS(825), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(825), - [aux_sym_hostbased_authentication_token1] = ACTIONS(825), - [aux_sym_host_key_algorithms_token1] = ACTIONS(825), - [aux_sym_host_key_alias_token1] = ACTIONS(825), - [aux_sym_hostname_token1] = ACTIONS(825), - [aux_sym_identities_only_token1] = ACTIONS(825), - [aux_sym_identity_agent_token1] = ACTIONS(825), - [aux_sym_identity_file_token1] = ACTIONS(825), - [aux_sym_ignore_unknown_token1] = ACTIONS(825), - [aux_sym_include_token1] = ACTIONS(825), - [aux_sym_ip_qos_token1] = ACTIONS(825), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(825), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(825), - [aux_sym_kex_algorithms_token1] = ACTIONS(825), - [aux_sym_known_hosts_command_token1] = ACTIONS(825), - [aux_sym_local_command_token1] = ACTIONS(825), - [aux_sym_local_forward_token1] = ACTIONS(825), - [aux_sym_log_level_token1] = ACTIONS(825), - [aux_sym_log_verbose_token1] = ACTIONS(825), - [aux_sym_macs_token1] = ACTIONS(825), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(825), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(825), - [aux_sym_password_authentication_token1] = ACTIONS(825), - [aux_sym_permit_local_command_token1] = ACTIONS(825), - [aux_sym_permit_remote_open_token1] = ACTIONS(825), - [aux_sym_pkcs11_provider_token1] = ACTIONS(825), - [aux_sym_port_token1] = ACTIONS(825), - [aux_sym_preferred_authentications_token1] = ACTIONS(825), - [aux_sym_protocol_token1] = ACTIONS(825), - [aux_sym_proxy_command_token1] = ACTIONS(825), - [aux_sym_proxy_jump_token1] = ACTIONS(825), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(825), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(825), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(825), - [aux_sym_pubkey_authentication_token1] = ACTIONS(825), - [aux_sym_rekey_limit_token1] = ACTIONS(825), - [aux_sym_remote_command_token1] = ACTIONS(825), - [aux_sym_remote_forward_token1] = ACTIONS(825), - [aux_sym_request_tty_token1] = ACTIONS(825), - [aux_sym_required_rsa_size_token1] = ACTIONS(825), - [aux_sym_revoked_host_keys_token1] = ACTIONS(825), - [aux_sym_security_key_provider_token1] = ACTIONS(825), - [aux_sym_send_env_token1] = ACTIONS(825), - [aux_sym_server_alive_count_max_token1] = ACTIONS(825), - [aux_sym_server_alive_interval_token1] = ACTIONS(825), - [aux_sym_session_type_token1] = ACTIONS(825), - [aux_sym_set_env_token1] = ACTIONS(825), - [aux_sym_stdin_null_token1] = ACTIONS(825), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(825), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(825), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(825), - [aux_sym_syslog_facility_token1] = ACTIONS(825), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(825), - [aux_sym_keep_alive_token1] = ACTIONS(825), - [aux_sym_tunnel_token1] = ACTIONS(827), - [aux_sym_tunnel_device_token1] = ACTIONS(825), - [aux_sym_update_host_keys_token1] = ACTIONS(825), - [aux_sym_use_keychain_token1] = ACTIONS(825), - [aux_sym_use_roaming_token1] = ACTIONS(825), - [aux_sym_user_token1] = ACTIONS(827), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(825), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(825), - [aux_sym_visual_host_key_token1] = ACTIONS(825), - [aux_sym_xauth_location_token1] = ACTIONS(825), + [ts_builtin_sym_end] = ACTIONS(830), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(834), + [aux_sym_match_token1] = ACTIONS(830), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(830), + [aux_sym_address_family_token1] = ACTIONS(830), + [aux_sym_batch_mode_token1] = ACTIONS(830), + [aux_sym_bind_address_token1] = ACTIONS(830), + [aux_sym_bind_interface_token1] = ACTIONS(830), + [aux_sym_canonical_domains_token1] = ACTIONS(830), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(830), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(830), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(830), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(830), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(830), + [aux_sym_certificate_file_token1] = ACTIONS(830), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(830), + [aux_sym_check_host_ip_token1] = ACTIONS(830), + [aux_sym_ciphers_token1] = ACTIONS(830), + [aux_sym_cipher_token1] = ACTIONS(832), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(830), + [aux_sym_compression_token1] = ACTIONS(830), + [aux_sym_connection_attempts_token1] = ACTIONS(830), + [aux_sym_connect_timeout_token1] = ACTIONS(830), + [aux_sym_control_master_token1] = ACTIONS(830), + [aux_sym_control_path_token1] = ACTIONS(830), + [aux_sym_control_persist_token1] = ACTIONS(830), + [aux_sym_dynamic_forward_token1] = ACTIONS(830), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(830), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(830), + [aux_sym_escape_char_token1] = ACTIONS(830), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(830), + [aux_sym_fingerprint_hash_token1] = ACTIONS(830), + [aux_sym_fork_after_authentication_token1] = ACTIONS(830), + [aux_sym_forward_agent_token1] = ACTIONS(830), + [aux_sym_forward_x11_token1] = ACTIONS(832), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(830), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(830), + [aux_sym_gateway_ports_token1] = ACTIONS(830), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(830), + [aux_sym_gssapi_authentication_token1] = ACTIONS(830), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(830), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(830), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(830), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(830), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(830), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(830), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(830), + [aux_sym_hash_known_hosts_token1] = ACTIONS(830), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(830), + [aux_sym_hostbased_authentication_token1] = ACTIONS(830), + [aux_sym_host_key_algorithms_token1] = ACTIONS(830), + [aux_sym_host_key_alias_token1] = ACTIONS(830), + [aux_sym_hostname_token1] = ACTIONS(830), + [aux_sym_identities_only_token1] = ACTIONS(830), + [aux_sym_identity_agent_token1] = ACTIONS(830), + [aux_sym_identity_file_token1] = ACTIONS(830), + [aux_sym_ignore_unknown_token1] = ACTIONS(830), + [aux_sym_include_token1] = ACTIONS(830), + [aux_sym_ip_qos_token1] = ACTIONS(830), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(830), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(830), + [aux_sym_kex_algorithms_token1] = ACTIONS(830), + [aux_sym_known_hosts_command_token1] = ACTIONS(830), + [aux_sym_local_command_token1] = ACTIONS(830), + [aux_sym_local_forward_token1] = ACTIONS(830), + [aux_sym_log_level_token1] = ACTIONS(830), + [aux_sym_log_verbose_token1] = ACTIONS(830), + [aux_sym_macs_token1] = ACTIONS(830), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(830), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(830), + [aux_sym_password_authentication_token1] = ACTIONS(830), + [aux_sym_permit_local_command_token1] = ACTIONS(830), + [aux_sym_permit_remote_open_token1] = ACTIONS(830), + [aux_sym_pkcs11_provider_token1] = ACTIONS(830), + [aux_sym_port_token1] = ACTIONS(830), + [aux_sym_preferred_authentications_token1] = ACTIONS(830), + [aux_sym_protocol_token1] = ACTIONS(830), + [aux_sym_proxy_command_token1] = ACTIONS(830), + [aux_sym_proxy_jump_token1] = ACTIONS(830), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(830), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(830), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(830), + [aux_sym_pubkey_authentication_token1] = ACTIONS(830), + [aux_sym_rekey_limit_token1] = ACTIONS(830), + [aux_sym_remote_command_token1] = ACTIONS(830), + [aux_sym_remote_forward_token1] = ACTIONS(830), + [aux_sym_request_tty_token1] = ACTIONS(830), + [aux_sym_required_rsa_size_token1] = ACTIONS(830), + [aux_sym_revoked_host_keys_token1] = ACTIONS(830), + [aux_sym_security_key_provider_token1] = ACTIONS(830), + [aux_sym_send_env_token1] = ACTIONS(830), + [aux_sym_server_alive_count_max_token1] = ACTIONS(830), + [aux_sym_server_alive_interval_token1] = ACTIONS(830), + [aux_sym_session_type_token1] = ACTIONS(830), + [aux_sym_set_env_token1] = ACTIONS(830), + [aux_sym_stdin_null_token1] = ACTIONS(830), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(830), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(830), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(830), + [aux_sym_syslog_facility_token1] = ACTIONS(830), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(830), + [aux_sym_keep_alive_token1] = ACTIONS(830), + [aux_sym_tunnel_token1] = ACTIONS(832), + [aux_sym_tunnel_device_token1] = ACTIONS(830), + [aux_sym_update_host_keys_token1] = ACTIONS(830), + [aux_sym_use_keychain_token1] = ACTIONS(830), + [aux_sym_use_roaming_token1] = ACTIONS(830), + [aux_sym_user_token1] = ACTIONS(832), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(830), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(830), + [aux_sym_visual_host_key_token1] = ACTIONS(830), + [aux_sym_xauth_location_token1] = ACTIONS(830), }, [49] = { - [ts_builtin_sym_end] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(833), - [anon_sym_DQUOTE] = ACTIONS(835), - [aux_sym_match_token1] = ACTIONS(831), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(831), - [aux_sym_address_family_token1] = ACTIONS(831), - [aux_sym_batch_mode_token1] = ACTIONS(831), - [aux_sym_bind_address_token1] = ACTIONS(831), - [aux_sym_bind_interface_token1] = ACTIONS(831), - [aux_sym_canonical_domains_token1] = ACTIONS(831), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(831), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(831), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(831), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(831), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(831), - [aux_sym_certificate_file_token1] = ACTIONS(831), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(831), - [aux_sym_check_host_ip_token1] = ACTIONS(831), - [aux_sym_ciphers_token1] = ACTIONS(831), - [aux_sym_cipher_token1] = ACTIONS(833), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(831), - [aux_sym_compression_token1] = ACTIONS(831), - [aux_sym_connection_attempts_token1] = ACTIONS(831), - [aux_sym_connect_timeout_token1] = ACTIONS(831), - [aux_sym_control_master_token1] = ACTIONS(831), - [aux_sym_control_path_token1] = ACTIONS(831), - [aux_sym_control_persist_token1] = ACTIONS(831), - [aux_sym_dynamic_forward_token1] = ACTIONS(831), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(831), - [aux_sym_escape_char_token1] = ACTIONS(831), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(831), - [aux_sym_fingerprint_hash_token1] = ACTIONS(831), - [aux_sym_fork_after_authentication_token1] = ACTIONS(831), - [aux_sym_forward_agent_token1] = ACTIONS(831), - [aux_sym_forward_x11_token1] = ACTIONS(833), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(831), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(831), - [aux_sym_gateway_ports_token1] = ACTIONS(831), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(831), - [aux_sym_gssapi_authentication_token1] = ACTIONS(831), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(831), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(831), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(831), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(831), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(831), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(831), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(831), - [aux_sym_hash_known_hosts_token1] = ACTIONS(831), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(831), - [aux_sym_hostbased_authentication_token1] = ACTIONS(831), - [aux_sym_host_key_algorithms_token1] = ACTIONS(831), - [aux_sym_host_key_alias_token1] = ACTIONS(831), - [aux_sym_hostname_token1] = ACTIONS(831), - [aux_sym_identities_only_token1] = ACTIONS(831), - [aux_sym_identity_agent_token1] = ACTIONS(831), - [aux_sym_identity_file_token1] = ACTIONS(831), - [aux_sym_ignore_unknown_token1] = ACTIONS(831), - [aux_sym_include_token1] = ACTIONS(831), - [aux_sym_ip_qos_token1] = ACTIONS(831), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(831), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(831), - [aux_sym_kex_algorithms_token1] = ACTIONS(831), - [aux_sym_known_hosts_command_token1] = ACTIONS(831), - [aux_sym_local_command_token1] = ACTIONS(831), - [aux_sym_local_forward_token1] = ACTIONS(831), - [aux_sym_log_level_token1] = ACTIONS(831), - [aux_sym_log_verbose_token1] = ACTIONS(831), - [aux_sym_macs_token1] = ACTIONS(831), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(831), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(831), - [aux_sym_password_authentication_token1] = ACTIONS(831), - [aux_sym_permit_local_command_token1] = ACTIONS(831), - [aux_sym_permit_remote_open_token1] = ACTIONS(831), - [aux_sym_pkcs11_provider_token1] = ACTIONS(831), - [aux_sym_port_token1] = ACTIONS(831), - [aux_sym_preferred_authentications_token1] = ACTIONS(831), - [aux_sym_protocol_token1] = ACTIONS(831), - [aux_sym_proxy_command_token1] = ACTIONS(831), - [aux_sym_proxy_jump_token1] = ACTIONS(831), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(831), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(831), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(831), - [aux_sym_pubkey_authentication_token1] = ACTIONS(831), - [aux_sym_rekey_limit_token1] = ACTIONS(831), - [aux_sym_remote_command_token1] = ACTIONS(831), - [aux_sym_remote_forward_token1] = ACTIONS(831), - [aux_sym_request_tty_token1] = ACTIONS(831), - [aux_sym_required_rsa_size_token1] = ACTIONS(831), - [aux_sym_revoked_host_keys_token1] = ACTIONS(831), - [aux_sym_security_key_provider_token1] = ACTIONS(831), - [aux_sym_send_env_token1] = ACTIONS(831), - [aux_sym_server_alive_count_max_token1] = ACTIONS(831), - [aux_sym_server_alive_interval_token1] = ACTIONS(831), - [aux_sym_session_type_token1] = ACTIONS(831), - [aux_sym_set_env_token1] = ACTIONS(831), - [aux_sym_stdin_null_token1] = ACTIONS(831), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(831), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(831), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(831), - [aux_sym_syslog_facility_token1] = ACTIONS(831), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(831), - [aux_sym_keep_alive_token1] = ACTIONS(831), - [aux_sym_tunnel_token1] = ACTIONS(833), - [aux_sym_tunnel_device_token1] = ACTIONS(831), - [aux_sym_update_host_keys_token1] = ACTIONS(831), - [aux_sym_use_keychain_token1] = ACTIONS(831), - [aux_sym_use_roaming_token1] = ACTIONS(831), - [aux_sym_user_token1] = ACTIONS(833), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(831), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(831), - [aux_sym_visual_host_key_token1] = ACTIONS(831), - [aux_sym_xauth_location_token1] = ACTIONS(831), + [ts_builtin_sym_end] = ACTIONS(836), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(840), + [aux_sym_match_token1] = ACTIONS(836), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(836), + [aux_sym_address_family_token1] = ACTIONS(836), + [aux_sym_batch_mode_token1] = ACTIONS(836), + [aux_sym_bind_address_token1] = ACTIONS(836), + [aux_sym_bind_interface_token1] = ACTIONS(836), + [aux_sym_canonical_domains_token1] = ACTIONS(836), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(836), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(836), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(836), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(836), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(836), + [aux_sym_certificate_file_token1] = ACTIONS(836), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(836), + [aux_sym_check_host_ip_token1] = ACTIONS(836), + [aux_sym_ciphers_token1] = ACTIONS(836), + [aux_sym_cipher_token1] = ACTIONS(838), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(836), + [aux_sym_compression_token1] = ACTIONS(836), + [aux_sym_connection_attempts_token1] = ACTIONS(836), + [aux_sym_connect_timeout_token1] = ACTIONS(836), + [aux_sym_control_master_token1] = ACTIONS(836), + [aux_sym_control_path_token1] = ACTIONS(836), + [aux_sym_control_persist_token1] = ACTIONS(836), + [aux_sym_dynamic_forward_token1] = ACTIONS(836), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(836), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(836), + [aux_sym_escape_char_token1] = ACTIONS(836), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(836), + [aux_sym_fingerprint_hash_token1] = ACTIONS(836), + [aux_sym_fork_after_authentication_token1] = ACTIONS(836), + [aux_sym_forward_agent_token1] = ACTIONS(836), + [aux_sym_forward_x11_token1] = ACTIONS(838), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(836), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(836), + [aux_sym_gateway_ports_token1] = ACTIONS(836), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(836), + [aux_sym_gssapi_authentication_token1] = ACTIONS(836), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(836), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(836), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(836), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(836), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(836), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(836), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(836), + [aux_sym_hash_known_hosts_token1] = ACTIONS(836), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(836), + [aux_sym_hostbased_authentication_token1] = ACTIONS(836), + [aux_sym_host_key_algorithms_token1] = ACTIONS(836), + [aux_sym_host_key_alias_token1] = ACTIONS(836), + [aux_sym_hostname_token1] = ACTIONS(836), + [aux_sym_identities_only_token1] = ACTIONS(836), + [aux_sym_identity_agent_token1] = ACTIONS(836), + [aux_sym_identity_file_token1] = ACTIONS(836), + [aux_sym_ignore_unknown_token1] = ACTIONS(836), + [aux_sym_include_token1] = ACTIONS(836), + [aux_sym_ip_qos_token1] = ACTIONS(836), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(836), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(836), + [aux_sym_kex_algorithms_token1] = ACTIONS(836), + [aux_sym_known_hosts_command_token1] = ACTIONS(836), + [aux_sym_local_command_token1] = ACTIONS(836), + [aux_sym_local_forward_token1] = ACTIONS(836), + [aux_sym_log_level_token1] = ACTIONS(836), + [aux_sym_log_verbose_token1] = ACTIONS(836), + [aux_sym_macs_token1] = ACTIONS(836), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(836), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(836), + [aux_sym_password_authentication_token1] = ACTIONS(836), + [aux_sym_permit_local_command_token1] = ACTIONS(836), + [aux_sym_permit_remote_open_token1] = ACTIONS(836), + [aux_sym_pkcs11_provider_token1] = ACTIONS(836), + [aux_sym_port_token1] = ACTIONS(836), + [aux_sym_preferred_authentications_token1] = ACTIONS(836), + [aux_sym_protocol_token1] = ACTIONS(836), + [aux_sym_proxy_command_token1] = ACTIONS(836), + [aux_sym_proxy_jump_token1] = ACTIONS(836), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(836), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(836), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(836), + [aux_sym_pubkey_authentication_token1] = ACTIONS(836), + [aux_sym_rekey_limit_token1] = ACTIONS(836), + [aux_sym_remote_command_token1] = ACTIONS(836), + [aux_sym_remote_forward_token1] = ACTIONS(836), + [aux_sym_request_tty_token1] = ACTIONS(836), + [aux_sym_required_rsa_size_token1] = ACTIONS(836), + [aux_sym_revoked_host_keys_token1] = ACTIONS(836), + [aux_sym_security_key_provider_token1] = ACTIONS(836), + [aux_sym_send_env_token1] = ACTIONS(836), + [aux_sym_server_alive_count_max_token1] = ACTIONS(836), + [aux_sym_server_alive_interval_token1] = ACTIONS(836), + [aux_sym_session_type_token1] = ACTIONS(836), + [aux_sym_set_env_token1] = ACTIONS(836), + [aux_sym_stdin_null_token1] = ACTIONS(836), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(836), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(836), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(836), + [aux_sym_syslog_facility_token1] = ACTIONS(836), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(836), + [aux_sym_keep_alive_token1] = ACTIONS(836), + [aux_sym_tunnel_token1] = ACTIONS(838), + [aux_sym_tunnel_device_token1] = ACTIONS(836), + [aux_sym_update_host_keys_token1] = ACTIONS(836), + [aux_sym_use_keychain_token1] = ACTIONS(836), + [aux_sym_use_roaming_token1] = ACTIONS(836), + [aux_sym_user_token1] = ACTIONS(838), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(836), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(836), + [aux_sym_visual_host_key_token1] = ACTIONS(836), + [aux_sym_xauth_location_token1] = ACTIONS(836), }, [50] = { - [ts_builtin_sym_end] = ACTIONS(837), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(839), - [anon_sym_DQUOTE] = ACTIONS(841), - [aux_sym_match_token1] = ACTIONS(837), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(837), - [aux_sym_address_family_token1] = ACTIONS(837), - [aux_sym_batch_mode_token1] = ACTIONS(837), - [aux_sym_bind_address_token1] = ACTIONS(837), - [aux_sym_bind_interface_token1] = ACTIONS(837), - [aux_sym_canonical_domains_token1] = ACTIONS(837), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(837), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(837), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(837), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(837), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(837), - [aux_sym_certificate_file_token1] = ACTIONS(837), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(837), - [aux_sym_check_host_ip_token1] = ACTIONS(837), - [aux_sym_ciphers_token1] = ACTIONS(837), - [aux_sym_cipher_token1] = ACTIONS(839), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(837), - [aux_sym_compression_token1] = ACTIONS(837), - [aux_sym_connection_attempts_token1] = ACTIONS(837), - [aux_sym_connect_timeout_token1] = ACTIONS(837), - [aux_sym_control_master_token1] = ACTIONS(837), - [aux_sym_control_path_token1] = ACTIONS(837), - [aux_sym_control_persist_token1] = ACTIONS(837), - [aux_sym_dynamic_forward_token1] = ACTIONS(837), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(837), - [aux_sym_escape_char_token1] = ACTIONS(837), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(837), - [aux_sym_fingerprint_hash_token1] = ACTIONS(837), - [aux_sym_fork_after_authentication_token1] = ACTIONS(837), - [aux_sym_forward_agent_token1] = ACTIONS(837), - [aux_sym_forward_x11_token1] = ACTIONS(839), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(837), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(837), - [aux_sym_gateway_ports_token1] = ACTIONS(837), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(837), - [aux_sym_gssapi_authentication_token1] = ACTIONS(837), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(837), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(837), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(837), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(837), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(837), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(837), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(837), - [aux_sym_hash_known_hosts_token1] = ACTIONS(837), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(837), - [aux_sym_hostbased_authentication_token1] = ACTIONS(837), - [aux_sym_host_key_algorithms_token1] = ACTIONS(837), - [aux_sym_host_key_alias_token1] = ACTIONS(837), - [aux_sym_hostname_token1] = ACTIONS(837), - [aux_sym_identities_only_token1] = ACTIONS(837), - [aux_sym_identity_agent_token1] = ACTIONS(837), - [aux_sym_identity_file_token1] = ACTIONS(837), - [aux_sym_ignore_unknown_token1] = ACTIONS(837), - [aux_sym_include_token1] = ACTIONS(837), - [aux_sym_ip_qos_token1] = ACTIONS(837), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(837), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(837), - [aux_sym_kex_algorithms_token1] = ACTIONS(837), - [aux_sym_known_hosts_command_token1] = ACTIONS(837), - [aux_sym_local_command_token1] = ACTIONS(837), - [aux_sym_local_forward_token1] = ACTIONS(837), - [aux_sym_log_level_token1] = ACTIONS(837), - [aux_sym_log_verbose_token1] = ACTIONS(837), - [aux_sym_macs_token1] = ACTIONS(837), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(837), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(837), - [aux_sym_password_authentication_token1] = ACTIONS(837), - [aux_sym_permit_local_command_token1] = ACTIONS(837), - [aux_sym_permit_remote_open_token1] = ACTIONS(837), - [aux_sym_pkcs11_provider_token1] = ACTIONS(837), - [aux_sym_port_token1] = ACTIONS(837), - [aux_sym_preferred_authentications_token1] = ACTIONS(837), - [aux_sym_protocol_token1] = ACTIONS(837), - [aux_sym_proxy_command_token1] = ACTIONS(837), - [aux_sym_proxy_jump_token1] = ACTIONS(837), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(837), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(837), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(837), - [aux_sym_pubkey_authentication_token1] = ACTIONS(837), - [aux_sym_rekey_limit_token1] = ACTIONS(837), - [aux_sym_remote_command_token1] = ACTIONS(837), - [aux_sym_remote_forward_token1] = ACTIONS(837), - [aux_sym_request_tty_token1] = ACTIONS(837), - [aux_sym_required_rsa_size_token1] = ACTIONS(837), - [aux_sym_revoked_host_keys_token1] = ACTIONS(837), - [aux_sym_security_key_provider_token1] = ACTIONS(837), - [aux_sym_send_env_token1] = ACTIONS(837), - [aux_sym_server_alive_count_max_token1] = ACTIONS(837), - [aux_sym_server_alive_interval_token1] = ACTIONS(837), - [aux_sym_session_type_token1] = ACTIONS(837), - [aux_sym_set_env_token1] = ACTIONS(837), - [aux_sym_stdin_null_token1] = ACTIONS(837), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(837), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(837), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(837), - [aux_sym_syslog_facility_token1] = ACTIONS(837), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(837), - [aux_sym_keep_alive_token1] = ACTIONS(837), - [aux_sym_tunnel_token1] = ACTIONS(839), - [aux_sym_tunnel_device_token1] = ACTIONS(837), - [aux_sym_update_host_keys_token1] = ACTIONS(837), - [aux_sym_use_keychain_token1] = ACTIONS(837), - [aux_sym_use_roaming_token1] = ACTIONS(837), - [aux_sym_user_token1] = ACTIONS(839), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(837), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(837), - [aux_sym_visual_host_key_token1] = ACTIONS(837), - [aux_sym_xauth_location_token1] = ACTIONS(837), + [ts_builtin_sym_end] = ACTIONS(842), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [aux_sym_match_token1] = ACTIONS(842), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(842), + [aux_sym_address_family_token1] = ACTIONS(842), + [aux_sym_batch_mode_token1] = ACTIONS(842), + [aux_sym_bind_address_token1] = ACTIONS(842), + [aux_sym_bind_interface_token1] = ACTIONS(842), + [aux_sym_canonical_domains_token1] = ACTIONS(842), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(842), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(842), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(842), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(842), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(842), + [aux_sym_certificate_file_token1] = ACTIONS(842), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(842), + [aux_sym_check_host_ip_token1] = ACTIONS(842), + [aux_sym_ciphers_token1] = ACTIONS(842), + [aux_sym_cipher_token1] = ACTIONS(844), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(842), + [aux_sym_compression_token1] = ACTIONS(842), + [aux_sym_connection_attempts_token1] = ACTIONS(842), + [aux_sym_connect_timeout_token1] = ACTIONS(842), + [aux_sym_control_master_token1] = ACTIONS(842), + [aux_sym_control_path_token1] = ACTIONS(842), + [aux_sym_control_persist_token1] = ACTIONS(842), + [aux_sym_dynamic_forward_token1] = ACTIONS(842), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(842), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(842), + [aux_sym_escape_char_token1] = ACTIONS(842), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(842), + [aux_sym_fingerprint_hash_token1] = ACTIONS(842), + [aux_sym_fork_after_authentication_token1] = ACTIONS(842), + [aux_sym_forward_agent_token1] = ACTIONS(842), + [aux_sym_forward_x11_token1] = ACTIONS(844), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(842), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(842), + [aux_sym_gateway_ports_token1] = ACTIONS(842), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(842), + [aux_sym_gssapi_authentication_token1] = ACTIONS(842), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(842), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(842), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(842), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(842), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(842), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(842), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(842), + [aux_sym_hash_known_hosts_token1] = ACTIONS(842), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(842), + [aux_sym_hostbased_authentication_token1] = ACTIONS(842), + [aux_sym_host_key_algorithms_token1] = ACTIONS(842), + [aux_sym_host_key_alias_token1] = ACTIONS(842), + [aux_sym_hostname_token1] = ACTIONS(842), + [aux_sym_identities_only_token1] = ACTIONS(842), + [aux_sym_identity_agent_token1] = ACTIONS(842), + [aux_sym_identity_file_token1] = ACTIONS(842), + [aux_sym_ignore_unknown_token1] = ACTIONS(842), + [aux_sym_include_token1] = ACTIONS(842), + [aux_sym_ip_qos_token1] = ACTIONS(842), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(842), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(842), + [aux_sym_kex_algorithms_token1] = ACTIONS(842), + [aux_sym_known_hosts_command_token1] = ACTIONS(842), + [aux_sym_local_command_token1] = ACTIONS(842), + [aux_sym_local_forward_token1] = ACTIONS(842), + [aux_sym_log_level_token1] = ACTIONS(842), + [aux_sym_log_verbose_token1] = ACTIONS(842), + [aux_sym_macs_token1] = ACTIONS(842), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(842), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(842), + [aux_sym_password_authentication_token1] = ACTIONS(842), + [aux_sym_permit_local_command_token1] = ACTIONS(842), + [aux_sym_permit_remote_open_token1] = ACTIONS(842), + [aux_sym_pkcs11_provider_token1] = ACTIONS(842), + [aux_sym_port_token1] = ACTIONS(842), + [aux_sym_preferred_authentications_token1] = ACTIONS(842), + [aux_sym_protocol_token1] = ACTIONS(842), + [aux_sym_proxy_command_token1] = ACTIONS(842), + [aux_sym_proxy_jump_token1] = ACTIONS(842), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(842), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(842), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(842), + [aux_sym_pubkey_authentication_token1] = ACTIONS(842), + [aux_sym_rekey_limit_token1] = ACTIONS(842), + [aux_sym_remote_command_token1] = ACTIONS(842), + [aux_sym_remote_forward_token1] = ACTIONS(842), + [aux_sym_request_tty_token1] = ACTIONS(842), + [aux_sym_required_rsa_size_token1] = ACTIONS(842), + [aux_sym_revoked_host_keys_token1] = ACTIONS(842), + [aux_sym_security_key_provider_token1] = ACTIONS(842), + [aux_sym_send_env_token1] = ACTIONS(842), + [aux_sym_server_alive_count_max_token1] = ACTIONS(842), + [aux_sym_server_alive_interval_token1] = ACTIONS(842), + [aux_sym_session_type_token1] = ACTIONS(842), + [aux_sym_set_env_token1] = ACTIONS(842), + [aux_sym_stdin_null_token1] = ACTIONS(842), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(842), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(842), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(842), + [aux_sym_syslog_facility_token1] = ACTIONS(842), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(842), + [aux_sym_keep_alive_token1] = ACTIONS(842), + [aux_sym_tunnel_token1] = ACTIONS(844), + [aux_sym_tunnel_device_token1] = ACTIONS(842), + [aux_sym_update_host_keys_token1] = ACTIONS(842), + [aux_sym_use_keychain_token1] = ACTIONS(842), + [aux_sym_use_roaming_token1] = ACTIONS(842), + [aux_sym_user_token1] = ACTIONS(844), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(842), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(842), + [aux_sym_visual_host_key_token1] = ACTIONS(842), + [aux_sym_xauth_location_token1] = ACTIONS(842), }, [51] = { - [ts_builtin_sym_end] = ACTIONS(843), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [aux_sym_match_token1] = ACTIONS(843), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(843), - [aux_sym_address_family_token1] = ACTIONS(843), - [aux_sym_batch_mode_token1] = ACTIONS(843), - [aux_sym_bind_address_token1] = ACTIONS(843), - [aux_sym_bind_interface_token1] = ACTIONS(843), - [aux_sym_canonical_domains_token1] = ACTIONS(843), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(843), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(843), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(843), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(843), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(843), - [aux_sym_certificate_file_token1] = ACTIONS(843), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(843), - [aux_sym_check_host_ip_token1] = ACTIONS(843), - [aux_sym_ciphers_token1] = ACTIONS(843), - [aux_sym_cipher_token1] = ACTIONS(845), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(843), - [aux_sym_compression_token1] = ACTIONS(843), - [aux_sym_connection_attempts_token1] = ACTIONS(843), - [aux_sym_connect_timeout_token1] = ACTIONS(843), - [aux_sym_control_master_token1] = ACTIONS(843), - [aux_sym_control_path_token1] = ACTIONS(843), - [aux_sym_control_persist_token1] = ACTIONS(843), - [aux_sym_dynamic_forward_token1] = ACTIONS(843), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(843), - [aux_sym_escape_char_token1] = ACTIONS(843), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(843), - [aux_sym_fingerprint_hash_token1] = ACTIONS(843), - [aux_sym_fork_after_authentication_token1] = ACTIONS(843), - [aux_sym_forward_agent_token1] = ACTIONS(843), - [aux_sym_forward_x11_token1] = ACTIONS(845), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(843), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(843), - [aux_sym_gateway_ports_token1] = ACTIONS(843), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(843), - [aux_sym_gssapi_authentication_token1] = ACTIONS(843), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(843), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(843), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(843), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(843), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(843), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(843), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(843), - [aux_sym_hash_known_hosts_token1] = ACTIONS(843), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(843), - [aux_sym_hostbased_authentication_token1] = ACTIONS(843), - [aux_sym_host_key_algorithms_token1] = ACTIONS(843), - [aux_sym_host_key_alias_token1] = ACTIONS(843), - [aux_sym_hostname_token1] = ACTIONS(843), - [aux_sym_identities_only_token1] = ACTIONS(843), - [aux_sym_identity_agent_token1] = ACTIONS(843), - [aux_sym_identity_file_token1] = ACTIONS(843), - [aux_sym_ignore_unknown_token1] = ACTIONS(843), - [aux_sym_include_token1] = ACTIONS(843), - [aux_sym_ip_qos_token1] = ACTIONS(843), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(843), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(843), - [aux_sym_kex_algorithms_token1] = ACTIONS(843), - [aux_sym_known_hosts_command_token1] = ACTIONS(843), - [aux_sym_local_command_token1] = ACTIONS(843), - [aux_sym_local_forward_token1] = ACTIONS(843), - [aux_sym_log_level_token1] = ACTIONS(843), - [aux_sym_log_verbose_token1] = ACTIONS(843), - [aux_sym_macs_token1] = ACTIONS(843), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(843), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(843), - [aux_sym_password_authentication_token1] = ACTIONS(843), - [aux_sym_permit_local_command_token1] = ACTIONS(843), - [aux_sym_permit_remote_open_token1] = ACTIONS(843), - [aux_sym_pkcs11_provider_token1] = ACTIONS(843), - [aux_sym_port_token1] = ACTIONS(843), - [aux_sym_preferred_authentications_token1] = ACTIONS(843), - [aux_sym_protocol_token1] = ACTIONS(843), - [aux_sym_proxy_command_token1] = ACTIONS(843), - [aux_sym_proxy_jump_token1] = ACTIONS(843), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(843), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(843), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(843), - [aux_sym_pubkey_authentication_token1] = ACTIONS(843), - [aux_sym_rekey_limit_token1] = ACTIONS(843), - [aux_sym_remote_command_token1] = ACTIONS(843), - [aux_sym_remote_forward_token1] = ACTIONS(843), - [aux_sym_request_tty_token1] = ACTIONS(843), - [aux_sym_required_rsa_size_token1] = ACTIONS(843), - [aux_sym_revoked_host_keys_token1] = ACTIONS(843), - [aux_sym_security_key_provider_token1] = ACTIONS(843), - [aux_sym_send_env_token1] = ACTIONS(843), - [aux_sym_server_alive_count_max_token1] = ACTIONS(843), - [aux_sym_server_alive_interval_token1] = ACTIONS(843), - [aux_sym_session_type_token1] = ACTIONS(843), - [aux_sym_set_env_token1] = ACTIONS(843), - [aux_sym_stdin_null_token1] = ACTIONS(843), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(843), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(843), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(843), - [aux_sym_syslog_facility_token1] = ACTIONS(843), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(843), - [aux_sym_keep_alive_token1] = ACTIONS(843), - [aux_sym_tunnel_token1] = ACTIONS(845), - [aux_sym_tunnel_device_token1] = ACTIONS(843), - [aux_sym_update_host_keys_token1] = ACTIONS(843), - [aux_sym_use_keychain_token1] = ACTIONS(843), - [aux_sym_use_roaming_token1] = ACTIONS(843), - [aux_sym_user_token1] = ACTIONS(845), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(843), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(843), - [aux_sym_visual_host_key_token1] = ACTIONS(843), - [aux_sym_xauth_location_token1] = ACTIONS(843), + [ts_builtin_sym_end] = ACTIONS(848), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(852), + [aux_sym_match_token1] = ACTIONS(848), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(848), + [aux_sym_address_family_token1] = ACTIONS(848), + [aux_sym_batch_mode_token1] = ACTIONS(848), + [aux_sym_bind_address_token1] = ACTIONS(848), + [aux_sym_bind_interface_token1] = ACTIONS(848), + [aux_sym_canonical_domains_token1] = ACTIONS(848), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(848), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(848), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(848), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(848), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(848), + [aux_sym_certificate_file_token1] = ACTIONS(848), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(848), + [aux_sym_check_host_ip_token1] = ACTIONS(848), + [aux_sym_ciphers_token1] = ACTIONS(848), + [aux_sym_cipher_token1] = ACTIONS(850), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(848), + [aux_sym_compression_token1] = ACTIONS(848), + [aux_sym_connection_attempts_token1] = ACTIONS(848), + [aux_sym_connect_timeout_token1] = ACTIONS(848), + [aux_sym_control_master_token1] = ACTIONS(848), + [aux_sym_control_path_token1] = ACTIONS(848), + [aux_sym_control_persist_token1] = ACTIONS(848), + [aux_sym_dynamic_forward_token1] = ACTIONS(848), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(848), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(848), + [aux_sym_escape_char_token1] = ACTIONS(848), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(848), + [aux_sym_fingerprint_hash_token1] = ACTIONS(848), + [aux_sym_fork_after_authentication_token1] = ACTIONS(848), + [aux_sym_forward_agent_token1] = ACTIONS(848), + [aux_sym_forward_x11_token1] = ACTIONS(850), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(848), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(848), + [aux_sym_gateway_ports_token1] = ACTIONS(848), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(848), + [aux_sym_gssapi_authentication_token1] = ACTIONS(848), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(848), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(848), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(848), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(848), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(848), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(848), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(848), + [aux_sym_hash_known_hosts_token1] = ACTIONS(848), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(848), + [aux_sym_hostbased_authentication_token1] = ACTIONS(848), + [aux_sym_host_key_algorithms_token1] = ACTIONS(848), + [aux_sym_host_key_alias_token1] = ACTIONS(848), + [aux_sym_hostname_token1] = ACTIONS(848), + [aux_sym_identities_only_token1] = ACTIONS(848), + [aux_sym_identity_agent_token1] = ACTIONS(848), + [aux_sym_identity_file_token1] = ACTIONS(848), + [aux_sym_ignore_unknown_token1] = ACTIONS(848), + [aux_sym_include_token1] = ACTIONS(848), + [aux_sym_ip_qos_token1] = ACTIONS(848), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(848), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(848), + [aux_sym_kex_algorithms_token1] = ACTIONS(848), + [aux_sym_known_hosts_command_token1] = ACTIONS(848), + [aux_sym_local_command_token1] = ACTIONS(848), + [aux_sym_local_forward_token1] = ACTIONS(848), + [aux_sym_log_level_token1] = ACTIONS(848), + [aux_sym_log_verbose_token1] = ACTIONS(848), + [aux_sym_macs_token1] = ACTIONS(848), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(848), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(848), + [aux_sym_password_authentication_token1] = ACTIONS(848), + [aux_sym_permit_local_command_token1] = ACTIONS(848), + [aux_sym_permit_remote_open_token1] = ACTIONS(848), + [aux_sym_pkcs11_provider_token1] = ACTIONS(848), + [aux_sym_port_token1] = ACTIONS(848), + [aux_sym_preferred_authentications_token1] = ACTIONS(848), + [aux_sym_protocol_token1] = ACTIONS(848), + [aux_sym_proxy_command_token1] = ACTIONS(848), + [aux_sym_proxy_jump_token1] = ACTIONS(848), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(848), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(848), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(848), + [aux_sym_pubkey_authentication_token1] = ACTIONS(848), + [aux_sym_rekey_limit_token1] = ACTIONS(848), + [aux_sym_remote_command_token1] = ACTIONS(848), + [aux_sym_remote_forward_token1] = ACTIONS(848), + [aux_sym_request_tty_token1] = ACTIONS(848), + [aux_sym_required_rsa_size_token1] = ACTIONS(848), + [aux_sym_revoked_host_keys_token1] = ACTIONS(848), + [aux_sym_security_key_provider_token1] = ACTIONS(848), + [aux_sym_send_env_token1] = ACTIONS(848), + [aux_sym_server_alive_count_max_token1] = ACTIONS(848), + [aux_sym_server_alive_interval_token1] = ACTIONS(848), + [aux_sym_session_type_token1] = ACTIONS(848), + [aux_sym_set_env_token1] = ACTIONS(848), + [aux_sym_stdin_null_token1] = ACTIONS(848), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(848), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(848), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(848), + [aux_sym_syslog_facility_token1] = ACTIONS(848), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(848), + [aux_sym_keep_alive_token1] = ACTIONS(848), + [aux_sym_tunnel_token1] = ACTIONS(850), + [aux_sym_tunnel_device_token1] = ACTIONS(848), + [aux_sym_update_host_keys_token1] = ACTIONS(848), + [aux_sym_use_keychain_token1] = ACTIONS(848), + [aux_sym_use_roaming_token1] = ACTIONS(848), + [aux_sym_user_token1] = ACTIONS(850), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(848), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(848), + [aux_sym_visual_host_key_token1] = ACTIONS(848), + [aux_sym_xauth_location_token1] = ACTIONS(848), }, [52] = { - [ts_builtin_sym_end] = ACTIONS(849), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(851), - [anon_sym_DQUOTE] = ACTIONS(853), - [aux_sym_match_token1] = ACTIONS(849), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(849), - [aux_sym_address_family_token1] = ACTIONS(849), - [aux_sym_batch_mode_token1] = ACTIONS(849), - [aux_sym_bind_address_token1] = ACTIONS(849), - [aux_sym_bind_interface_token1] = ACTIONS(849), - [aux_sym_canonical_domains_token1] = ACTIONS(849), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(849), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(849), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(849), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(849), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(849), - [aux_sym_certificate_file_token1] = ACTIONS(849), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(849), - [aux_sym_check_host_ip_token1] = ACTIONS(849), - [aux_sym_ciphers_token1] = ACTIONS(849), - [aux_sym_cipher_token1] = ACTIONS(851), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(849), - [aux_sym_compression_token1] = ACTIONS(849), - [aux_sym_connection_attempts_token1] = ACTIONS(849), - [aux_sym_connect_timeout_token1] = ACTIONS(849), - [aux_sym_control_master_token1] = ACTIONS(849), - [aux_sym_control_path_token1] = ACTIONS(849), - [aux_sym_control_persist_token1] = ACTIONS(849), - [aux_sym_dynamic_forward_token1] = ACTIONS(849), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(849), - [aux_sym_escape_char_token1] = ACTIONS(849), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(849), - [aux_sym_fingerprint_hash_token1] = ACTIONS(849), - [aux_sym_fork_after_authentication_token1] = ACTIONS(849), - [aux_sym_forward_agent_token1] = ACTIONS(849), - [aux_sym_forward_x11_token1] = ACTIONS(851), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(849), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(849), - [aux_sym_gateway_ports_token1] = ACTIONS(849), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(849), - [aux_sym_gssapi_authentication_token1] = ACTIONS(849), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(849), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(849), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(849), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(849), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(849), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(849), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(849), - [aux_sym_hash_known_hosts_token1] = ACTIONS(849), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(849), - [aux_sym_hostbased_authentication_token1] = ACTIONS(849), - [aux_sym_host_key_algorithms_token1] = ACTIONS(849), - [aux_sym_host_key_alias_token1] = ACTIONS(849), - [aux_sym_hostname_token1] = ACTIONS(849), - [aux_sym_identities_only_token1] = ACTIONS(849), - [aux_sym_identity_agent_token1] = ACTIONS(849), - [aux_sym_identity_file_token1] = ACTIONS(849), - [aux_sym_ignore_unknown_token1] = ACTIONS(849), - [aux_sym_include_token1] = ACTIONS(849), - [aux_sym_ip_qos_token1] = ACTIONS(849), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(849), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(849), - [aux_sym_kex_algorithms_token1] = ACTIONS(849), - [aux_sym_known_hosts_command_token1] = ACTIONS(849), - [aux_sym_local_command_token1] = ACTIONS(849), - [aux_sym_local_forward_token1] = ACTIONS(849), - [aux_sym_log_level_token1] = ACTIONS(849), - [aux_sym_log_verbose_token1] = ACTIONS(849), - [aux_sym_macs_token1] = ACTIONS(849), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(849), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(849), - [aux_sym_password_authentication_token1] = ACTIONS(849), - [aux_sym_permit_local_command_token1] = ACTIONS(849), - [aux_sym_permit_remote_open_token1] = ACTIONS(849), - [aux_sym_pkcs11_provider_token1] = ACTIONS(849), - [aux_sym_port_token1] = ACTIONS(849), - [aux_sym_preferred_authentications_token1] = ACTIONS(849), - [aux_sym_protocol_token1] = ACTIONS(849), - [aux_sym_proxy_command_token1] = ACTIONS(849), - [aux_sym_proxy_jump_token1] = ACTIONS(849), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(849), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(849), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(849), - [aux_sym_pubkey_authentication_token1] = ACTIONS(849), - [aux_sym_rekey_limit_token1] = ACTIONS(849), - [aux_sym_remote_command_token1] = ACTIONS(849), - [aux_sym_remote_forward_token1] = ACTIONS(849), - [aux_sym_request_tty_token1] = ACTIONS(849), - [aux_sym_required_rsa_size_token1] = ACTIONS(849), - [aux_sym_revoked_host_keys_token1] = ACTIONS(849), - [aux_sym_security_key_provider_token1] = ACTIONS(849), - [aux_sym_send_env_token1] = ACTIONS(849), - [aux_sym_server_alive_count_max_token1] = ACTIONS(849), - [aux_sym_server_alive_interval_token1] = ACTIONS(849), - [aux_sym_session_type_token1] = ACTIONS(849), - [aux_sym_set_env_token1] = ACTIONS(849), - [aux_sym_stdin_null_token1] = ACTIONS(849), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(849), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(849), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(849), - [aux_sym_syslog_facility_token1] = ACTIONS(849), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(849), - [aux_sym_keep_alive_token1] = ACTIONS(849), - [aux_sym_tunnel_token1] = ACTIONS(851), - [aux_sym_tunnel_device_token1] = ACTIONS(849), - [aux_sym_update_host_keys_token1] = ACTIONS(849), - [aux_sym_use_keychain_token1] = ACTIONS(849), - [aux_sym_use_roaming_token1] = ACTIONS(849), - [aux_sym_user_token1] = ACTIONS(851), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(849), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(849), - [aux_sym_visual_host_key_token1] = ACTIONS(849), - [aux_sym_xauth_location_token1] = ACTIONS(849), + [ts_builtin_sym_end] = ACTIONS(854), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(858), + [aux_sym_match_token1] = ACTIONS(854), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(854), + [aux_sym_address_family_token1] = ACTIONS(854), + [aux_sym_batch_mode_token1] = ACTIONS(854), + [aux_sym_bind_address_token1] = ACTIONS(854), + [aux_sym_bind_interface_token1] = ACTIONS(854), + [aux_sym_canonical_domains_token1] = ACTIONS(854), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(854), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(854), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(854), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(854), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(854), + [aux_sym_certificate_file_token1] = ACTIONS(854), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(854), + [aux_sym_check_host_ip_token1] = ACTIONS(854), + [aux_sym_ciphers_token1] = ACTIONS(854), + [aux_sym_cipher_token1] = ACTIONS(856), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(854), + [aux_sym_compression_token1] = ACTIONS(854), + [aux_sym_connection_attempts_token1] = ACTIONS(854), + [aux_sym_connect_timeout_token1] = ACTIONS(854), + [aux_sym_control_master_token1] = ACTIONS(854), + [aux_sym_control_path_token1] = ACTIONS(854), + [aux_sym_control_persist_token1] = ACTIONS(854), + [aux_sym_dynamic_forward_token1] = ACTIONS(854), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(854), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(854), + [aux_sym_escape_char_token1] = ACTIONS(854), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(854), + [aux_sym_fingerprint_hash_token1] = ACTIONS(854), + [aux_sym_fork_after_authentication_token1] = ACTIONS(854), + [aux_sym_forward_agent_token1] = ACTIONS(854), + [aux_sym_forward_x11_token1] = ACTIONS(856), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(854), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(854), + [aux_sym_gateway_ports_token1] = ACTIONS(854), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(854), + [aux_sym_gssapi_authentication_token1] = ACTIONS(854), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(854), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(854), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(854), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(854), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(854), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(854), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(854), + [aux_sym_hash_known_hosts_token1] = ACTIONS(854), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(854), + [aux_sym_hostbased_authentication_token1] = ACTIONS(854), + [aux_sym_host_key_algorithms_token1] = ACTIONS(854), + [aux_sym_host_key_alias_token1] = ACTIONS(854), + [aux_sym_hostname_token1] = ACTIONS(854), + [aux_sym_identities_only_token1] = ACTIONS(854), + [aux_sym_identity_agent_token1] = ACTIONS(854), + [aux_sym_identity_file_token1] = ACTIONS(854), + [aux_sym_ignore_unknown_token1] = ACTIONS(854), + [aux_sym_include_token1] = ACTIONS(854), + [aux_sym_ip_qos_token1] = ACTIONS(854), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(854), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(854), + [aux_sym_kex_algorithms_token1] = ACTIONS(854), + [aux_sym_known_hosts_command_token1] = ACTIONS(854), + [aux_sym_local_command_token1] = ACTIONS(854), + [aux_sym_local_forward_token1] = ACTIONS(854), + [aux_sym_log_level_token1] = ACTIONS(854), + [aux_sym_log_verbose_token1] = ACTIONS(854), + [aux_sym_macs_token1] = ACTIONS(854), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(854), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(854), + [aux_sym_password_authentication_token1] = ACTIONS(854), + [aux_sym_permit_local_command_token1] = ACTIONS(854), + [aux_sym_permit_remote_open_token1] = ACTIONS(854), + [aux_sym_pkcs11_provider_token1] = ACTIONS(854), + [aux_sym_port_token1] = ACTIONS(854), + [aux_sym_preferred_authentications_token1] = ACTIONS(854), + [aux_sym_protocol_token1] = ACTIONS(854), + [aux_sym_proxy_command_token1] = ACTIONS(854), + [aux_sym_proxy_jump_token1] = ACTIONS(854), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(854), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(854), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(854), + [aux_sym_pubkey_authentication_token1] = ACTIONS(854), + [aux_sym_rekey_limit_token1] = ACTIONS(854), + [aux_sym_remote_command_token1] = ACTIONS(854), + [aux_sym_remote_forward_token1] = ACTIONS(854), + [aux_sym_request_tty_token1] = ACTIONS(854), + [aux_sym_required_rsa_size_token1] = ACTIONS(854), + [aux_sym_revoked_host_keys_token1] = ACTIONS(854), + [aux_sym_security_key_provider_token1] = ACTIONS(854), + [aux_sym_send_env_token1] = ACTIONS(854), + [aux_sym_server_alive_count_max_token1] = ACTIONS(854), + [aux_sym_server_alive_interval_token1] = ACTIONS(854), + [aux_sym_session_type_token1] = ACTIONS(854), + [aux_sym_set_env_token1] = ACTIONS(854), + [aux_sym_stdin_null_token1] = ACTIONS(854), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(854), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(854), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(854), + [aux_sym_syslog_facility_token1] = ACTIONS(854), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(854), + [aux_sym_keep_alive_token1] = ACTIONS(854), + [aux_sym_tunnel_token1] = ACTIONS(856), + [aux_sym_tunnel_device_token1] = ACTIONS(854), + [aux_sym_update_host_keys_token1] = ACTIONS(854), + [aux_sym_use_keychain_token1] = ACTIONS(854), + [aux_sym_use_roaming_token1] = ACTIONS(854), + [aux_sym_user_token1] = ACTIONS(856), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(854), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(854), + [aux_sym_visual_host_key_token1] = ACTIONS(854), + [aux_sym_xauth_location_token1] = ACTIONS(854), }, [53] = { - [ts_builtin_sym_end] = ACTIONS(855), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(857), - [anon_sym_DQUOTE] = ACTIONS(859), - [aux_sym_match_token1] = ACTIONS(855), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(855), - [aux_sym_address_family_token1] = ACTIONS(855), - [aux_sym_batch_mode_token1] = ACTIONS(855), - [aux_sym_bind_address_token1] = ACTIONS(855), - [aux_sym_bind_interface_token1] = ACTIONS(855), - [aux_sym_canonical_domains_token1] = ACTIONS(855), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(855), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(855), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(855), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(855), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(855), - [aux_sym_certificate_file_token1] = ACTIONS(855), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(855), - [aux_sym_check_host_ip_token1] = ACTIONS(855), - [aux_sym_ciphers_token1] = ACTIONS(855), - [aux_sym_cipher_token1] = ACTIONS(857), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(855), - [aux_sym_compression_token1] = ACTIONS(855), - [aux_sym_connection_attempts_token1] = ACTIONS(855), - [aux_sym_connect_timeout_token1] = ACTIONS(855), - [aux_sym_control_master_token1] = ACTIONS(855), - [aux_sym_control_path_token1] = ACTIONS(855), - [aux_sym_control_persist_token1] = ACTIONS(855), - [aux_sym_dynamic_forward_token1] = ACTIONS(855), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(855), - [aux_sym_escape_char_token1] = ACTIONS(855), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(855), - [aux_sym_fingerprint_hash_token1] = ACTIONS(855), - [aux_sym_fork_after_authentication_token1] = ACTIONS(855), - [aux_sym_forward_agent_token1] = ACTIONS(855), - [aux_sym_forward_x11_token1] = ACTIONS(857), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(855), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(855), - [aux_sym_gateway_ports_token1] = ACTIONS(855), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(855), - [aux_sym_gssapi_authentication_token1] = ACTIONS(855), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(855), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(855), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(855), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(855), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(855), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(855), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(855), - [aux_sym_hash_known_hosts_token1] = ACTIONS(855), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(855), - [aux_sym_hostbased_authentication_token1] = ACTIONS(855), - [aux_sym_host_key_algorithms_token1] = ACTIONS(855), - [aux_sym_host_key_alias_token1] = ACTIONS(855), - [aux_sym_hostname_token1] = ACTIONS(855), - [aux_sym_identities_only_token1] = ACTIONS(855), - [aux_sym_identity_agent_token1] = ACTIONS(855), - [aux_sym_identity_file_token1] = ACTIONS(855), - [aux_sym_ignore_unknown_token1] = ACTIONS(855), - [aux_sym_include_token1] = ACTIONS(855), - [aux_sym_ip_qos_token1] = ACTIONS(855), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(855), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(855), - [aux_sym_kex_algorithms_token1] = ACTIONS(855), - [aux_sym_known_hosts_command_token1] = ACTIONS(855), - [aux_sym_local_command_token1] = ACTIONS(855), - [aux_sym_local_forward_token1] = ACTIONS(855), - [aux_sym_log_level_token1] = ACTIONS(855), - [aux_sym_log_verbose_token1] = ACTIONS(855), - [aux_sym_macs_token1] = ACTIONS(855), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(855), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(855), - [aux_sym_password_authentication_token1] = ACTIONS(855), - [aux_sym_permit_local_command_token1] = ACTIONS(855), - [aux_sym_permit_remote_open_token1] = ACTIONS(855), - [aux_sym_pkcs11_provider_token1] = ACTIONS(855), - [aux_sym_port_token1] = ACTIONS(855), - [aux_sym_preferred_authentications_token1] = ACTIONS(855), - [aux_sym_protocol_token1] = ACTIONS(855), - [aux_sym_proxy_command_token1] = ACTIONS(855), - [aux_sym_proxy_jump_token1] = ACTIONS(855), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(855), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(855), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(855), - [aux_sym_pubkey_authentication_token1] = ACTIONS(855), - [aux_sym_rekey_limit_token1] = ACTIONS(855), - [aux_sym_remote_command_token1] = ACTIONS(855), - [aux_sym_remote_forward_token1] = ACTIONS(855), - [aux_sym_request_tty_token1] = ACTIONS(855), - [aux_sym_required_rsa_size_token1] = ACTIONS(855), - [aux_sym_revoked_host_keys_token1] = ACTIONS(855), - [aux_sym_security_key_provider_token1] = ACTIONS(855), - [aux_sym_send_env_token1] = ACTIONS(855), - [aux_sym_server_alive_count_max_token1] = ACTIONS(855), - [aux_sym_server_alive_interval_token1] = ACTIONS(855), - [aux_sym_session_type_token1] = ACTIONS(855), - [aux_sym_set_env_token1] = ACTIONS(855), - [aux_sym_stdin_null_token1] = ACTIONS(855), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(855), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(855), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(855), - [aux_sym_syslog_facility_token1] = ACTIONS(855), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(855), - [aux_sym_keep_alive_token1] = ACTIONS(855), - [aux_sym_tunnel_token1] = ACTIONS(857), - [aux_sym_tunnel_device_token1] = ACTIONS(855), - [aux_sym_update_host_keys_token1] = ACTIONS(855), - [aux_sym_use_keychain_token1] = ACTIONS(855), - [aux_sym_use_roaming_token1] = ACTIONS(855), - [aux_sym_user_token1] = ACTIONS(857), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(855), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(855), - [aux_sym_visual_host_key_token1] = ACTIONS(855), - [aux_sym_xauth_location_token1] = ACTIONS(855), + [ts_builtin_sym_end] = ACTIONS(860), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(862), + [anon_sym_DQUOTE] = ACTIONS(864), + [aux_sym_match_token1] = ACTIONS(860), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(860), + [aux_sym_address_family_token1] = ACTIONS(860), + [aux_sym_batch_mode_token1] = ACTIONS(860), + [aux_sym_bind_address_token1] = ACTIONS(860), + [aux_sym_bind_interface_token1] = ACTIONS(860), + [aux_sym_canonical_domains_token1] = ACTIONS(860), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(860), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(860), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(860), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(860), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(860), + [aux_sym_certificate_file_token1] = ACTIONS(860), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(860), + [aux_sym_check_host_ip_token1] = ACTIONS(860), + [aux_sym_ciphers_token1] = ACTIONS(860), + [aux_sym_cipher_token1] = ACTIONS(862), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(860), + [aux_sym_compression_token1] = ACTIONS(860), + [aux_sym_connection_attempts_token1] = ACTIONS(860), + [aux_sym_connect_timeout_token1] = ACTIONS(860), + [aux_sym_control_master_token1] = ACTIONS(860), + [aux_sym_control_path_token1] = ACTIONS(860), + [aux_sym_control_persist_token1] = ACTIONS(860), + [aux_sym_dynamic_forward_token1] = ACTIONS(860), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(860), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(860), + [aux_sym_escape_char_token1] = ACTIONS(860), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(860), + [aux_sym_fingerprint_hash_token1] = ACTIONS(860), + [aux_sym_fork_after_authentication_token1] = ACTIONS(860), + [aux_sym_forward_agent_token1] = ACTIONS(860), + [aux_sym_forward_x11_token1] = ACTIONS(862), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(860), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(860), + [aux_sym_gateway_ports_token1] = ACTIONS(860), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(860), + [aux_sym_gssapi_authentication_token1] = ACTIONS(860), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(860), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(860), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(860), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(860), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(860), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(860), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(860), + [aux_sym_hash_known_hosts_token1] = ACTIONS(860), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(860), + [aux_sym_hostbased_authentication_token1] = ACTIONS(860), + [aux_sym_host_key_algorithms_token1] = ACTIONS(860), + [aux_sym_host_key_alias_token1] = ACTIONS(860), + [aux_sym_hostname_token1] = ACTIONS(860), + [aux_sym_identities_only_token1] = ACTIONS(860), + [aux_sym_identity_agent_token1] = ACTIONS(860), + [aux_sym_identity_file_token1] = ACTIONS(860), + [aux_sym_ignore_unknown_token1] = ACTIONS(860), + [aux_sym_include_token1] = ACTIONS(860), + [aux_sym_ip_qos_token1] = ACTIONS(860), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(860), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(860), + [aux_sym_kex_algorithms_token1] = ACTIONS(860), + [aux_sym_known_hosts_command_token1] = ACTIONS(860), + [aux_sym_local_command_token1] = ACTIONS(860), + [aux_sym_local_forward_token1] = ACTIONS(860), + [aux_sym_log_level_token1] = ACTIONS(860), + [aux_sym_log_verbose_token1] = ACTIONS(860), + [aux_sym_macs_token1] = ACTIONS(860), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(860), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(860), + [aux_sym_password_authentication_token1] = ACTIONS(860), + [aux_sym_permit_local_command_token1] = ACTIONS(860), + [aux_sym_permit_remote_open_token1] = ACTIONS(860), + [aux_sym_pkcs11_provider_token1] = ACTIONS(860), + [aux_sym_port_token1] = ACTIONS(860), + [aux_sym_preferred_authentications_token1] = ACTIONS(860), + [aux_sym_protocol_token1] = ACTIONS(860), + [aux_sym_proxy_command_token1] = ACTIONS(860), + [aux_sym_proxy_jump_token1] = ACTIONS(860), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(860), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(860), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(860), + [aux_sym_pubkey_authentication_token1] = ACTIONS(860), + [aux_sym_rekey_limit_token1] = ACTIONS(860), + [aux_sym_remote_command_token1] = ACTIONS(860), + [aux_sym_remote_forward_token1] = ACTIONS(860), + [aux_sym_request_tty_token1] = ACTIONS(860), + [aux_sym_required_rsa_size_token1] = ACTIONS(860), + [aux_sym_revoked_host_keys_token1] = ACTIONS(860), + [aux_sym_security_key_provider_token1] = ACTIONS(860), + [aux_sym_send_env_token1] = ACTIONS(860), + [aux_sym_server_alive_count_max_token1] = ACTIONS(860), + [aux_sym_server_alive_interval_token1] = ACTIONS(860), + [aux_sym_session_type_token1] = ACTIONS(860), + [aux_sym_set_env_token1] = ACTIONS(860), + [aux_sym_stdin_null_token1] = ACTIONS(860), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(860), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(860), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(860), + [aux_sym_syslog_facility_token1] = ACTIONS(860), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(860), + [aux_sym_keep_alive_token1] = ACTIONS(860), + [aux_sym_tunnel_token1] = ACTIONS(862), + [aux_sym_tunnel_device_token1] = ACTIONS(860), + [aux_sym_update_host_keys_token1] = ACTIONS(860), + [aux_sym_use_keychain_token1] = ACTIONS(860), + [aux_sym_use_roaming_token1] = ACTIONS(860), + [aux_sym_user_token1] = ACTIONS(862), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(860), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(860), + [aux_sym_visual_host_key_token1] = ACTIONS(860), + [aux_sym_xauth_location_token1] = ACTIONS(860), }, [54] = { - [ts_builtin_sym_end] = ACTIONS(861), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(863), - [anon_sym_DQUOTE] = ACTIONS(865), - [aux_sym_match_token1] = ACTIONS(861), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(861), - [aux_sym_address_family_token1] = ACTIONS(861), - [aux_sym_batch_mode_token1] = ACTIONS(861), - [aux_sym_bind_address_token1] = ACTIONS(861), - [aux_sym_bind_interface_token1] = ACTIONS(861), - [aux_sym_canonical_domains_token1] = ACTIONS(861), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(861), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(861), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(861), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(861), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(861), - [aux_sym_certificate_file_token1] = ACTIONS(861), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(861), - [aux_sym_check_host_ip_token1] = ACTIONS(861), - [aux_sym_ciphers_token1] = ACTIONS(861), - [aux_sym_cipher_token1] = ACTIONS(863), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(861), - [aux_sym_compression_token1] = ACTIONS(861), - [aux_sym_connection_attempts_token1] = ACTIONS(861), - [aux_sym_connect_timeout_token1] = ACTIONS(861), - [aux_sym_control_master_token1] = ACTIONS(861), - [aux_sym_control_path_token1] = ACTIONS(861), - [aux_sym_control_persist_token1] = ACTIONS(861), - [aux_sym_dynamic_forward_token1] = ACTIONS(861), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(861), - [aux_sym_escape_char_token1] = ACTIONS(861), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(861), - [aux_sym_fingerprint_hash_token1] = ACTIONS(861), - [aux_sym_fork_after_authentication_token1] = ACTIONS(861), - [aux_sym_forward_agent_token1] = ACTIONS(861), - [aux_sym_forward_x11_token1] = ACTIONS(863), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(861), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(861), - [aux_sym_gateway_ports_token1] = ACTIONS(861), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(861), - [aux_sym_gssapi_authentication_token1] = ACTIONS(861), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(861), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(861), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(861), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(861), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(861), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(861), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(861), - [aux_sym_hash_known_hosts_token1] = ACTIONS(861), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(861), - [aux_sym_hostbased_authentication_token1] = ACTIONS(861), - [aux_sym_host_key_algorithms_token1] = ACTIONS(861), - [aux_sym_host_key_alias_token1] = ACTIONS(861), - [aux_sym_hostname_token1] = ACTIONS(861), - [aux_sym_identities_only_token1] = ACTIONS(861), - [aux_sym_identity_agent_token1] = ACTIONS(861), - [aux_sym_identity_file_token1] = ACTIONS(861), - [aux_sym_ignore_unknown_token1] = ACTIONS(861), - [aux_sym_include_token1] = ACTIONS(861), - [aux_sym_ip_qos_token1] = ACTIONS(861), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(861), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(861), - [aux_sym_kex_algorithms_token1] = ACTIONS(861), - [aux_sym_known_hosts_command_token1] = ACTIONS(861), - [aux_sym_local_command_token1] = ACTIONS(861), - [aux_sym_local_forward_token1] = ACTIONS(861), - [aux_sym_log_level_token1] = ACTIONS(861), - [aux_sym_log_verbose_token1] = ACTIONS(861), - [aux_sym_macs_token1] = ACTIONS(861), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(861), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(861), - [aux_sym_password_authentication_token1] = ACTIONS(861), - [aux_sym_permit_local_command_token1] = ACTIONS(861), - [aux_sym_permit_remote_open_token1] = ACTIONS(861), - [aux_sym_pkcs11_provider_token1] = ACTIONS(861), - [aux_sym_port_token1] = ACTIONS(861), - [aux_sym_preferred_authentications_token1] = ACTIONS(861), - [aux_sym_protocol_token1] = ACTIONS(861), - [aux_sym_proxy_command_token1] = ACTIONS(861), - [aux_sym_proxy_jump_token1] = ACTIONS(861), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(861), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(861), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(861), - [aux_sym_pubkey_authentication_token1] = ACTIONS(861), - [aux_sym_rekey_limit_token1] = ACTIONS(861), - [aux_sym_remote_command_token1] = ACTIONS(861), - [aux_sym_remote_forward_token1] = ACTIONS(861), - [aux_sym_request_tty_token1] = ACTIONS(861), - [aux_sym_required_rsa_size_token1] = ACTIONS(861), - [aux_sym_revoked_host_keys_token1] = ACTIONS(861), - [aux_sym_security_key_provider_token1] = ACTIONS(861), - [aux_sym_send_env_token1] = ACTIONS(861), - [aux_sym_server_alive_count_max_token1] = ACTIONS(861), - [aux_sym_server_alive_interval_token1] = ACTIONS(861), - [aux_sym_session_type_token1] = ACTIONS(861), - [aux_sym_set_env_token1] = ACTIONS(861), - [aux_sym_stdin_null_token1] = ACTIONS(861), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(861), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(861), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(861), - [aux_sym_syslog_facility_token1] = ACTIONS(861), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(861), - [aux_sym_keep_alive_token1] = ACTIONS(861), - [aux_sym_tunnel_token1] = ACTIONS(863), - [aux_sym_tunnel_device_token1] = ACTIONS(861), - [aux_sym_update_host_keys_token1] = ACTIONS(861), - [aux_sym_use_keychain_token1] = ACTIONS(861), - [aux_sym_use_roaming_token1] = ACTIONS(861), - [aux_sym_user_token1] = ACTIONS(863), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(861), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(861), - [aux_sym_visual_host_key_token1] = ACTIONS(861), - [aux_sym_xauth_location_token1] = ACTIONS(861), + [ts_builtin_sym_end] = ACTIONS(866), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(868), + [anon_sym_DQUOTE] = ACTIONS(870), + [aux_sym_match_token1] = ACTIONS(866), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(866), + [aux_sym_address_family_token1] = ACTIONS(866), + [aux_sym_batch_mode_token1] = ACTIONS(866), + [aux_sym_bind_address_token1] = ACTIONS(866), + [aux_sym_bind_interface_token1] = ACTIONS(866), + [aux_sym_canonical_domains_token1] = ACTIONS(866), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(866), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(866), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(866), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(866), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(866), + [aux_sym_certificate_file_token1] = ACTIONS(866), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(866), + [aux_sym_check_host_ip_token1] = ACTIONS(866), + [aux_sym_ciphers_token1] = ACTIONS(866), + [aux_sym_cipher_token1] = ACTIONS(868), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(866), + [aux_sym_compression_token1] = ACTIONS(866), + [aux_sym_connection_attempts_token1] = ACTIONS(866), + [aux_sym_connect_timeout_token1] = ACTIONS(866), + [aux_sym_control_master_token1] = ACTIONS(866), + [aux_sym_control_path_token1] = ACTIONS(866), + [aux_sym_control_persist_token1] = ACTIONS(866), + [aux_sym_dynamic_forward_token1] = ACTIONS(866), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(866), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(866), + [aux_sym_escape_char_token1] = ACTIONS(866), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(866), + [aux_sym_fingerprint_hash_token1] = ACTIONS(866), + [aux_sym_fork_after_authentication_token1] = ACTIONS(866), + [aux_sym_forward_agent_token1] = ACTIONS(866), + [aux_sym_forward_x11_token1] = ACTIONS(868), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(866), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(866), + [aux_sym_gateway_ports_token1] = ACTIONS(866), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(866), + [aux_sym_gssapi_authentication_token1] = ACTIONS(866), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(866), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(866), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(866), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(866), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(866), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(866), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(866), + [aux_sym_hash_known_hosts_token1] = ACTIONS(866), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(866), + [aux_sym_hostbased_authentication_token1] = ACTIONS(866), + [aux_sym_host_key_algorithms_token1] = ACTIONS(866), + [aux_sym_host_key_alias_token1] = ACTIONS(866), + [aux_sym_hostname_token1] = ACTIONS(866), + [aux_sym_identities_only_token1] = ACTIONS(866), + [aux_sym_identity_agent_token1] = ACTIONS(866), + [aux_sym_identity_file_token1] = ACTIONS(866), + [aux_sym_ignore_unknown_token1] = ACTIONS(866), + [aux_sym_include_token1] = ACTIONS(866), + [aux_sym_ip_qos_token1] = ACTIONS(866), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(866), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(866), + [aux_sym_kex_algorithms_token1] = ACTIONS(866), + [aux_sym_known_hosts_command_token1] = ACTIONS(866), + [aux_sym_local_command_token1] = ACTIONS(866), + [aux_sym_local_forward_token1] = ACTIONS(866), + [aux_sym_log_level_token1] = ACTIONS(866), + [aux_sym_log_verbose_token1] = ACTIONS(866), + [aux_sym_macs_token1] = ACTIONS(866), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(866), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(866), + [aux_sym_password_authentication_token1] = ACTIONS(866), + [aux_sym_permit_local_command_token1] = ACTIONS(866), + [aux_sym_permit_remote_open_token1] = ACTIONS(866), + [aux_sym_pkcs11_provider_token1] = ACTIONS(866), + [aux_sym_port_token1] = ACTIONS(866), + [aux_sym_preferred_authentications_token1] = ACTIONS(866), + [aux_sym_protocol_token1] = ACTIONS(866), + [aux_sym_proxy_command_token1] = ACTIONS(866), + [aux_sym_proxy_jump_token1] = ACTIONS(866), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(866), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(866), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(866), + [aux_sym_pubkey_authentication_token1] = ACTIONS(866), + [aux_sym_rekey_limit_token1] = ACTIONS(866), + [aux_sym_remote_command_token1] = ACTIONS(866), + [aux_sym_remote_forward_token1] = ACTIONS(866), + [aux_sym_request_tty_token1] = ACTIONS(866), + [aux_sym_required_rsa_size_token1] = ACTIONS(866), + [aux_sym_revoked_host_keys_token1] = ACTIONS(866), + [aux_sym_security_key_provider_token1] = ACTIONS(866), + [aux_sym_send_env_token1] = ACTIONS(866), + [aux_sym_server_alive_count_max_token1] = ACTIONS(866), + [aux_sym_server_alive_interval_token1] = ACTIONS(866), + [aux_sym_session_type_token1] = ACTIONS(866), + [aux_sym_set_env_token1] = ACTIONS(866), + [aux_sym_stdin_null_token1] = ACTIONS(866), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(866), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(866), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(866), + [aux_sym_syslog_facility_token1] = ACTIONS(866), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(866), + [aux_sym_keep_alive_token1] = ACTIONS(866), + [aux_sym_tunnel_token1] = ACTIONS(868), + [aux_sym_tunnel_device_token1] = ACTIONS(866), + [aux_sym_update_host_keys_token1] = ACTIONS(866), + [aux_sym_use_keychain_token1] = ACTIONS(866), + [aux_sym_use_roaming_token1] = ACTIONS(866), + [aux_sym_user_token1] = ACTIONS(868), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(866), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(866), + [aux_sym_visual_host_key_token1] = ACTIONS(866), + [aux_sym_xauth_location_token1] = ACTIONS(866), }, [55] = { - [ts_builtin_sym_end] = ACTIONS(867), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(869), - [anon_sym_DQUOTE] = ACTIONS(871), - [aux_sym_match_token1] = ACTIONS(867), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(867), - [aux_sym_address_family_token1] = ACTIONS(867), - [aux_sym_batch_mode_token1] = ACTIONS(867), - [aux_sym_bind_address_token1] = ACTIONS(867), - [aux_sym_bind_interface_token1] = ACTIONS(867), - [aux_sym_canonical_domains_token1] = ACTIONS(867), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(867), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(867), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(867), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(867), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(867), - [aux_sym_certificate_file_token1] = ACTIONS(867), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(867), - [aux_sym_check_host_ip_token1] = ACTIONS(867), - [aux_sym_ciphers_token1] = ACTIONS(867), - [aux_sym_cipher_token1] = ACTIONS(869), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(867), - [aux_sym_compression_token1] = ACTIONS(867), - [aux_sym_connection_attempts_token1] = ACTIONS(867), - [aux_sym_connect_timeout_token1] = ACTIONS(867), - [aux_sym_control_master_token1] = ACTIONS(867), - [aux_sym_control_path_token1] = ACTIONS(867), - [aux_sym_control_persist_token1] = ACTIONS(867), - [aux_sym_dynamic_forward_token1] = ACTIONS(867), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(867), - [aux_sym_escape_char_token1] = ACTIONS(867), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(867), - [aux_sym_fingerprint_hash_token1] = ACTIONS(867), - [aux_sym_fork_after_authentication_token1] = ACTIONS(867), - [aux_sym_forward_agent_token1] = ACTIONS(867), - [aux_sym_forward_x11_token1] = ACTIONS(869), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(867), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(867), - [aux_sym_gateway_ports_token1] = ACTIONS(867), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(867), - [aux_sym_gssapi_authentication_token1] = ACTIONS(867), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(867), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(867), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(867), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(867), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(867), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(867), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(867), - [aux_sym_hash_known_hosts_token1] = ACTIONS(867), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(867), - [aux_sym_hostbased_authentication_token1] = ACTIONS(867), - [aux_sym_host_key_algorithms_token1] = ACTIONS(867), - [aux_sym_host_key_alias_token1] = ACTIONS(867), - [aux_sym_hostname_token1] = ACTIONS(867), - [aux_sym_identities_only_token1] = ACTIONS(867), - [aux_sym_identity_agent_token1] = ACTIONS(867), - [aux_sym_identity_file_token1] = ACTIONS(867), - [aux_sym_ignore_unknown_token1] = ACTIONS(867), - [aux_sym_include_token1] = ACTIONS(867), - [aux_sym_ip_qos_token1] = ACTIONS(867), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(867), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(867), - [aux_sym_kex_algorithms_token1] = ACTIONS(867), - [aux_sym_known_hosts_command_token1] = ACTIONS(867), - [aux_sym_local_command_token1] = ACTIONS(867), - [aux_sym_local_forward_token1] = ACTIONS(867), - [aux_sym_log_level_token1] = ACTIONS(867), - [aux_sym_log_verbose_token1] = ACTIONS(867), - [aux_sym_macs_token1] = ACTIONS(867), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(867), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(867), - [aux_sym_password_authentication_token1] = ACTIONS(867), - [aux_sym_permit_local_command_token1] = ACTIONS(867), - [aux_sym_permit_remote_open_token1] = ACTIONS(867), - [aux_sym_pkcs11_provider_token1] = ACTIONS(867), - [aux_sym_port_token1] = ACTIONS(867), - [aux_sym_preferred_authentications_token1] = ACTIONS(867), - [aux_sym_protocol_token1] = ACTIONS(867), - [aux_sym_proxy_command_token1] = ACTIONS(867), - [aux_sym_proxy_jump_token1] = ACTIONS(867), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(867), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(867), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(867), - [aux_sym_pubkey_authentication_token1] = ACTIONS(867), - [aux_sym_rekey_limit_token1] = ACTIONS(867), - [aux_sym_remote_command_token1] = ACTIONS(867), - [aux_sym_remote_forward_token1] = ACTIONS(867), - [aux_sym_request_tty_token1] = ACTIONS(867), - [aux_sym_required_rsa_size_token1] = ACTIONS(867), - [aux_sym_revoked_host_keys_token1] = ACTIONS(867), - [aux_sym_security_key_provider_token1] = ACTIONS(867), - [aux_sym_send_env_token1] = ACTIONS(867), - [aux_sym_server_alive_count_max_token1] = ACTIONS(867), - [aux_sym_server_alive_interval_token1] = ACTIONS(867), - [aux_sym_session_type_token1] = ACTIONS(867), - [aux_sym_set_env_token1] = ACTIONS(867), - [aux_sym_stdin_null_token1] = ACTIONS(867), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(867), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(867), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(867), - [aux_sym_syslog_facility_token1] = ACTIONS(867), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(867), - [aux_sym_keep_alive_token1] = ACTIONS(867), - [aux_sym_tunnel_token1] = ACTIONS(869), - [aux_sym_tunnel_device_token1] = ACTIONS(867), - [aux_sym_update_host_keys_token1] = ACTIONS(867), - [aux_sym_use_keychain_token1] = ACTIONS(867), - [aux_sym_use_roaming_token1] = ACTIONS(867), - [aux_sym_user_token1] = ACTIONS(869), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(867), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(867), - [aux_sym_visual_host_key_token1] = ACTIONS(867), - [aux_sym_xauth_location_token1] = ACTIONS(867), + [ts_builtin_sym_end] = ACTIONS(872), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(876), + [aux_sym_match_token1] = ACTIONS(872), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(872), + [aux_sym_address_family_token1] = ACTIONS(872), + [aux_sym_batch_mode_token1] = ACTIONS(872), + [aux_sym_bind_address_token1] = ACTIONS(872), + [aux_sym_bind_interface_token1] = ACTIONS(872), + [aux_sym_canonical_domains_token1] = ACTIONS(872), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(872), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(872), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(872), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(872), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(872), + [aux_sym_certificate_file_token1] = ACTIONS(872), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(872), + [aux_sym_check_host_ip_token1] = ACTIONS(872), + [aux_sym_ciphers_token1] = ACTIONS(872), + [aux_sym_cipher_token1] = ACTIONS(874), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(872), + [aux_sym_compression_token1] = ACTIONS(872), + [aux_sym_connection_attempts_token1] = ACTIONS(872), + [aux_sym_connect_timeout_token1] = ACTIONS(872), + [aux_sym_control_master_token1] = ACTIONS(872), + [aux_sym_control_path_token1] = ACTIONS(872), + [aux_sym_control_persist_token1] = ACTIONS(872), + [aux_sym_dynamic_forward_token1] = ACTIONS(872), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(872), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(872), + [aux_sym_escape_char_token1] = ACTIONS(872), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(872), + [aux_sym_fingerprint_hash_token1] = ACTIONS(872), + [aux_sym_fork_after_authentication_token1] = ACTIONS(872), + [aux_sym_forward_agent_token1] = ACTIONS(872), + [aux_sym_forward_x11_token1] = ACTIONS(874), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(872), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(872), + [aux_sym_gateway_ports_token1] = ACTIONS(872), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(872), + [aux_sym_gssapi_authentication_token1] = ACTIONS(872), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(872), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(872), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(872), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(872), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(872), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(872), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(872), + [aux_sym_hash_known_hosts_token1] = ACTIONS(872), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(872), + [aux_sym_hostbased_authentication_token1] = ACTIONS(872), + [aux_sym_host_key_algorithms_token1] = ACTIONS(872), + [aux_sym_host_key_alias_token1] = ACTIONS(872), + [aux_sym_hostname_token1] = ACTIONS(872), + [aux_sym_identities_only_token1] = ACTIONS(872), + [aux_sym_identity_agent_token1] = ACTIONS(872), + [aux_sym_identity_file_token1] = ACTIONS(872), + [aux_sym_ignore_unknown_token1] = ACTIONS(872), + [aux_sym_include_token1] = ACTIONS(872), + [aux_sym_ip_qos_token1] = ACTIONS(872), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(872), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(872), + [aux_sym_kex_algorithms_token1] = ACTIONS(872), + [aux_sym_known_hosts_command_token1] = ACTIONS(872), + [aux_sym_local_command_token1] = ACTIONS(872), + [aux_sym_local_forward_token1] = ACTIONS(872), + [aux_sym_log_level_token1] = ACTIONS(872), + [aux_sym_log_verbose_token1] = ACTIONS(872), + [aux_sym_macs_token1] = ACTIONS(872), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(872), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(872), + [aux_sym_password_authentication_token1] = ACTIONS(872), + [aux_sym_permit_local_command_token1] = ACTIONS(872), + [aux_sym_permit_remote_open_token1] = ACTIONS(872), + [aux_sym_pkcs11_provider_token1] = ACTIONS(872), + [aux_sym_port_token1] = ACTIONS(872), + [aux_sym_preferred_authentications_token1] = ACTIONS(872), + [aux_sym_protocol_token1] = ACTIONS(872), + [aux_sym_proxy_command_token1] = ACTIONS(872), + [aux_sym_proxy_jump_token1] = ACTIONS(872), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(872), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(872), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(872), + [aux_sym_pubkey_authentication_token1] = ACTIONS(872), + [aux_sym_rekey_limit_token1] = ACTIONS(872), + [aux_sym_remote_command_token1] = ACTIONS(872), + [aux_sym_remote_forward_token1] = ACTIONS(872), + [aux_sym_request_tty_token1] = ACTIONS(872), + [aux_sym_required_rsa_size_token1] = ACTIONS(872), + [aux_sym_revoked_host_keys_token1] = ACTIONS(872), + [aux_sym_security_key_provider_token1] = ACTIONS(872), + [aux_sym_send_env_token1] = ACTIONS(872), + [aux_sym_server_alive_count_max_token1] = ACTIONS(872), + [aux_sym_server_alive_interval_token1] = ACTIONS(872), + [aux_sym_session_type_token1] = ACTIONS(872), + [aux_sym_set_env_token1] = ACTIONS(872), + [aux_sym_stdin_null_token1] = ACTIONS(872), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(872), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(872), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(872), + [aux_sym_syslog_facility_token1] = ACTIONS(872), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(872), + [aux_sym_keep_alive_token1] = ACTIONS(872), + [aux_sym_tunnel_token1] = ACTIONS(874), + [aux_sym_tunnel_device_token1] = ACTIONS(872), + [aux_sym_update_host_keys_token1] = ACTIONS(872), + [aux_sym_use_keychain_token1] = ACTIONS(872), + [aux_sym_use_roaming_token1] = ACTIONS(872), + [aux_sym_user_token1] = ACTIONS(874), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(872), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(872), + [aux_sym_visual_host_key_token1] = ACTIONS(872), + [aux_sym_xauth_location_token1] = ACTIONS(872), }, [56] = { - [ts_builtin_sym_end] = ACTIONS(873), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(875), - [anon_sym_DQUOTE] = ACTIONS(877), - [aux_sym_match_token1] = ACTIONS(873), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(873), - [aux_sym_address_family_token1] = ACTIONS(873), - [aux_sym_batch_mode_token1] = ACTIONS(873), - [aux_sym_bind_address_token1] = ACTIONS(873), - [aux_sym_bind_interface_token1] = ACTIONS(873), - [aux_sym_canonical_domains_token1] = ACTIONS(873), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(873), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(873), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(873), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(873), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(873), - [aux_sym_certificate_file_token1] = ACTIONS(873), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(873), - [aux_sym_check_host_ip_token1] = ACTIONS(873), - [aux_sym_ciphers_token1] = ACTIONS(873), - [aux_sym_cipher_token1] = ACTIONS(875), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(873), - [aux_sym_compression_token1] = ACTIONS(873), - [aux_sym_connection_attempts_token1] = ACTIONS(873), - [aux_sym_connect_timeout_token1] = ACTIONS(873), - [aux_sym_control_master_token1] = ACTIONS(873), - [aux_sym_control_path_token1] = ACTIONS(873), - [aux_sym_control_persist_token1] = ACTIONS(873), - [aux_sym_dynamic_forward_token1] = ACTIONS(873), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(873), - [aux_sym_escape_char_token1] = ACTIONS(873), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(873), - [aux_sym_fingerprint_hash_token1] = ACTIONS(873), - [aux_sym_fork_after_authentication_token1] = ACTIONS(873), - [aux_sym_forward_agent_token1] = ACTIONS(873), - [aux_sym_forward_x11_token1] = ACTIONS(875), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(873), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(873), - [aux_sym_gateway_ports_token1] = ACTIONS(873), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(873), - [aux_sym_gssapi_authentication_token1] = ACTIONS(873), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(873), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(873), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(873), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(873), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(873), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(873), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(873), - [aux_sym_hash_known_hosts_token1] = ACTIONS(873), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(873), - [aux_sym_hostbased_authentication_token1] = ACTIONS(873), - [aux_sym_host_key_algorithms_token1] = ACTIONS(873), - [aux_sym_host_key_alias_token1] = ACTIONS(873), - [aux_sym_hostname_token1] = ACTIONS(873), - [aux_sym_identities_only_token1] = ACTIONS(873), - [aux_sym_identity_agent_token1] = ACTIONS(873), - [aux_sym_identity_file_token1] = ACTIONS(873), - [aux_sym_ignore_unknown_token1] = ACTIONS(873), - [aux_sym_include_token1] = ACTIONS(873), - [aux_sym_ip_qos_token1] = ACTIONS(873), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(873), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(873), - [aux_sym_kex_algorithms_token1] = ACTIONS(873), - [aux_sym_known_hosts_command_token1] = ACTIONS(873), - [aux_sym_local_command_token1] = ACTIONS(873), - [aux_sym_local_forward_token1] = ACTIONS(873), - [aux_sym_log_level_token1] = ACTIONS(873), - [aux_sym_log_verbose_token1] = ACTIONS(873), - [aux_sym_macs_token1] = ACTIONS(873), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(873), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(873), - [aux_sym_password_authentication_token1] = ACTIONS(873), - [aux_sym_permit_local_command_token1] = ACTIONS(873), - [aux_sym_permit_remote_open_token1] = ACTIONS(873), - [aux_sym_pkcs11_provider_token1] = ACTIONS(873), - [aux_sym_port_token1] = ACTIONS(873), - [aux_sym_preferred_authentications_token1] = ACTIONS(873), - [aux_sym_protocol_token1] = ACTIONS(873), - [aux_sym_proxy_command_token1] = ACTIONS(873), - [aux_sym_proxy_jump_token1] = ACTIONS(873), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(873), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(873), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(873), - [aux_sym_pubkey_authentication_token1] = ACTIONS(873), - [aux_sym_rekey_limit_token1] = ACTIONS(873), - [aux_sym_remote_command_token1] = ACTIONS(873), - [aux_sym_remote_forward_token1] = ACTIONS(873), - [aux_sym_request_tty_token1] = ACTIONS(873), - [aux_sym_required_rsa_size_token1] = ACTIONS(873), - [aux_sym_revoked_host_keys_token1] = ACTIONS(873), - [aux_sym_security_key_provider_token1] = ACTIONS(873), - [aux_sym_send_env_token1] = ACTIONS(873), - [aux_sym_server_alive_count_max_token1] = ACTIONS(873), - [aux_sym_server_alive_interval_token1] = ACTIONS(873), - [aux_sym_session_type_token1] = ACTIONS(873), - [aux_sym_set_env_token1] = ACTIONS(873), - [aux_sym_stdin_null_token1] = ACTIONS(873), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(873), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(873), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(873), - [aux_sym_syslog_facility_token1] = ACTIONS(873), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(873), - [aux_sym_keep_alive_token1] = ACTIONS(873), - [aux_sym_tunnel_token1] = ACTIONS(875), - [aux_sym_tunnel_device_token1] = ACTIONS(873), - [aux_sym_update_host_keys_token1] = ACTIONS(873), - [aux_sym_use_keychain_token1] = ACTIONS(873), - [aux_sym_use_roaming_token1] = ACTIONS(873), - [aux_sym_user_token1] = ACTIONS(875), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(873), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(873), - [aux_sym_visual_host_key_token1] = ACTIONS(873), - [aux_sym_xauth_location_token1] = ACTIONS(873), + [ts_builtin_sym_end] = ACTIONS(878), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(880), + [anon_sym_DQUOTE] = ACTIONS(882), + [aux_sym_match_token1] = ACTIONS(878), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(878), + [aux_sym_address_family_token1] = ACTIONS(878), + [aux_sym_batch_mode_token1] = ACTIONS(878), + [aux_sym_bind_address_token1] = ACTIONS(878), + [aux_sym_bind_interface_token1] = ACTIONS(878), + [aux_sym_canonical_domains_token1] = ACTIONS(878), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(878), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(878), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(878), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(878), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(878), + [aux_sym_certificate_file_token1] = ACTIONS(878), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(878), + [aux_sym_check_host_ip_token1] = ACTIONS(878), + [aux_sym_ciphers_token1] = ACTIONS(878), + [aux_sym_cipher_token1] = ACTIONS(880), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(878), + [aux_sym_compression_token1] = ACTIONS(878), + [aux_sym_connection_attempts_token1] = ACTIONS(878), + [aux_sym_connect_timeout_token1] = ACTIONS(878), + [aux_sym_control_master_token1] = ACTIONS(878), + [aux_sym_control_path_token1] = ACTIONS(878), + [aux_sym_control_persist_token1] = ACTIONS(878), + [aux_sym_dynamic_forward_token1] = ACTIONS(878), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(878), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(878), + [aux_sym_escape_char_token1] = ACTIONS(878), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(878), + [aux_sym_fingerprint_hash_token1] = ACTIONS(878), + [aux_sym_fork_after_authentication_token1] = ACTIONS(878), + [aux_sym_forward_agent_token1] = ACTIONS(878), + [aux_sym_forward_x11_token1] = ACTIONS(880), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(878), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(878), + [aux_sym_gateway_ports_token1] = ACTIONS(878), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(878), + [aux_sym_gssapi_authentication_token1] = ACTIONS(878), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(878), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(878), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(878), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(878), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(878), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(878), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(878), + [aux_sym_hash_known_hosts_token1] = ACTIONS(878), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(878), + [aux_sym_hostbased_authentication_token1] = ACTIONS(878), + [aux_sym_host_key_algorithms_token1] = ACTIONS(878), + [aux_sym_host_key_alias_token1] = ACTIONS(878), + [aux_sym_hostname_token1] = ACTIONS(878), + [aux_sym_identities_only_token1] = ACTIONS(878), + [aux_sym_identity_agent_token1] = ACTIONS(878), + [aux_sym_identity_file_token1] = ACTIONS(878), + [aux_sym_ignore_unknown_token1] = ACTIONS(878), + [aux_sym_include_token1] = ACTIONS(878), + [aux_sym_ip_qos_token1] = ACTIONS(878), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(878), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(878), + [aux_sym_kex_algorithms_token1] = ACTIONS(878), + [aux_sym_known_hosts_command_token1] = ACTIONS(878), + [aux_sym_local_command_token1] = ACTIONS(878), + [aux_sym_local_forward_token1] = ACTIONS(878), + [aux_sym_log_level_token1] = ACTIONS(878), + [aux_sym_log_verbose_token1] = ACTIONS(878), + [aux_sym_macs_token1] = ACTIONS(878), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(878), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(878), + [aux_sym_password_authentication_token1] = ACTIONS(878), + [aux_sym_permit_local_command_token1] = ACTIONS(878), + [aux_sym_permit_remote_open_token1] = ACTIONS(878), + [aux_sym_pkcs11_provider_token1] = ACTIONS(878), + [aux_sym_port_token1] = ACTIONS(878), + [aux_sym_preferred_authentications_token1] = ACTIONS(878), + [aux_sym_protocol_token1] = ACTIONS(878), + [aux_sym_proxy_command_token1] = ACTIONS(878), + [aux_sym_proxy_jump_token1] = ACTIONS(878), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(878), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(878), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(878), + [aux_sym_pubkey_authentication_token1] = ACTIONS(878), + [aux_sym_rekey_limit_token1] = ACTIONS(878), + [aux_sym_remote_command_token1] = ACTIONS(878), + [aux_sym_remote_forward_token1] = ACTIONS(878), + [aux_sym_request_tty_token1] = ACTIONS(878), + [aux_sym_required_rsa_size_token1] = ACTIONS(878), + [aux_sym_revoked_host_keys_token1] = ACTIONS(878), + [aux_sym_security_key_provider_token1] = ACTIONS(878), + [aux_sym_send_env_token1] = ACTIONS(878), + [aux_sym_server_alive_count_max_token1] = ACTIONS(878), + [aux_sym_server_alive_interval_token1] = ACTIONS(878), + [aux_sym_session_type_token1] = ACTIONS(878), + [aux_sym_set_env_token1] = ACTIONS(878), + [aux_sym_stdin_null_token1] = ACTIONS(878), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(878), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(878), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(878), + [aux_sym_syslog_facility_token1] = ACTIONS(878), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(878), + [aux_sym_keep_alive_token1] = ACTIONS(878), + [aux_sym_tunnel_token1] = ACTIONS(880), + [aux_sym_tunnel_device_token1] = ACTIONS(878), + [aux_sym_update_host_keys_token1] = ACTIONS(878), + [aux_sym_use_keychain_token1] = ACTIONS(878), + [aux_sym_use_roaming_token1] = ACTIONS(878), + [aux_sym_user_token1] = ACTIONS(880), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(878), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(878), + [aux_sym_visual_host_key_token1] = ACTIONS(878), + [aux_sym_xauth_location_token1] = ACTIONS(878), }, [57] = { - [ts_builtin_sym_end] = ACTIONS(879), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(883), - [aux_sym_match_token1] = ACTIONS(879), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(879), - [aux_sym_address_family_token1] = ACTIONS(879), - [aux_sym_batch_mode_token1] = ACTIONS(879), - [aux_sym_bind_address_token1] = ACTIONS(879), - [aux_sym_bind_interface_token1] = ACTIONS(879), - [aux_sym_canonical_domains_token1] = ACTIONS(879), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(879), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(879), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(879), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(879), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(879), - [aux_sym_certificate_file_token1] = ACTIONS(879), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(879), - [aux_sym_check_host_ip_token1] = ACTIONS(879), - [aux_sym_ciphers_token1] = ACTIONS(879), - [aux_sym_cipher_token1] = ACTIONS(881), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(879), - [aux_sym_compression_token1] = ACTIONS(879), - [aux_sym_connection_attempts_token1] = ACTIONS(879), - [aux_sym_connect_timeout_token1] = ACTIONS(879), - [aux_sym_control_master_token1] = ACTIONS(879), - [aux_sym_control_path_token1] = ACTIONS(879), - [aux_sym_control_persist_token1] = ACTIONS(879), - [aux_sym_dynamic_forward_token1] = ACTIONS(879), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(879), - [aux_sym_escape_char_token1] = ACTIONS(879), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(879), - [aux_sym_fingerprint_hash_token1] = ACTIONS(879), - [aux_sym_fork_after_authentication_token1] = ACTIONS(879), - [aux_sym_forward_agent_token1] = ACTIONS(879), - [aux_sym_forward_x11_token1] = ACTIONS(881), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(879), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(879), - [aux_sym_gateway_ports_token1] = ACTIONS(879), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(879), - [aux_sym_gssapi_authentication_token1] = ACTIONS(879), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(879), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(879), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(879), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(879), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(879), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(879), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(879), - [aux_sym_hash_known_hosts_token1] = ACTIONS(879), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(879), - [aux_sym_hostbased_authentication_token1] = ACTIONS(879), - [aux_sym_host_key_algorithms_token1] = ACTIONS(879), - [aux_sym_host_key_alias_token1] = ACTIONS(879), - [aux_sym_hostname_token1] = ACTIONS(879), - [aux_sym_identities_only_token1] = ACTIONS(879), - [aux_sym_identity_agent_token1] = ACTIONS(879), - [aux_sym_identity_file_token1] = ACTIONS(879), - [aux_sym_ignore_unknown_token1] = ACTIONS(879), - [aux_sym_include_token1] = ACTIONS(879), - [aux_sym_ip_qos_token1] = ACTIONS(879), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(879), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(879), - [aux_sym_kex_algorithms_token1] = ACTIONS(879), - [aux_sym_known_hosts_command_token1] = ACTIONS(879), - [aux_sym_local_command_token1] = ACTIONS(879), - [aux_sym_local_forward_token1] = ACTIONS(879), - [aux_sym_log_level_token1] = ACTIONS(879), - [aux_sym_log_verbose_token1] = ACTIONS(879), - [aux_sym_macs_token1] = ACTIONS(879), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(879), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(879), - [aux_sym_password_authentication_token1] = ACTIONS(879), - [aux_sym_permit_local_command_token1] = ACTIONS(879), - [aux_sym_permit_remote_open_token1] = ACTIONS(879), - [aux_sym_pkcs11_provider_token1] = ACTIONS(879), - [aux_sym_port_token1] = ACTIONS(879), - [aux_sym_preferred_authentications_token1] = ACTIONS(879), - [aux_sym_protocol_token1] = ACTIONS(879), - [aux_sym_proxy_command_token1] = ACTIONS(879), - [aux_sym_proxy_jump_token1] = ACTIONS(879), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(879), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(879), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(879), - [aux_sym_pubkey_authentication_token1] = ACTIONS(879), - [aux_sym_rekey_limit_token1] = ACTIONS(879), - [aux_sym_remote_command_token1] = ACTIONS(879), - [aux_sym_remote_forward_token1] = ACTIONS(879), - [aux_sym_request_tty_token1] = ACTIONS(879), - [aux_sym_required_rsa_size_token1] = ACTIONS(879), - [aux_sym_revoked_host_keys_token1] = ACTIONS(879), - [aux_sym_security_key_provider_token1] = ACTIONS(879), - [aux_sym_send_env_token1] = ACTIONS(879), - [aux_sym_server_alive_count_max_token1] = ACTIONS(879), - [aux_sym_server_alive_interval_token1] = ACTIONS(879), - [aux_sym_session_type_token1] = ACTIONS(879), - [aux_sym_set_env_token1] = ACTIONS(879), - [aux_sym_stdin_null_token1] = ACTIONS(879), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(879), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(879), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(879), - [aux_sym_syslog_facility_token1] = ACTIONS(879), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(879), - [aux_sym_keep_alive_token1] = ACTIONS(879), - [aux_sym_tunnel_token1] = ACTIONS(881), - [aux_sym_tunnel_device_token1] = ACTIONS(879), - [aux_sym_update_host_keys_token1] = ACTIONS(879), - [aux_sym_use_keychain_token1] = ACTIONS(879), - [aux_sym_use_roaming_token1] = ACTIONS(879), - [aux_sym_user_token1] = ACTIONS(881), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(879), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(879), - [aux_sym_visual_host_key_token1] = ACTIONS(879), - [aux_sym_xauth_location_token1] = ACTIONS(879), + [ts_builtin_sym_end] = ACTIONS(884), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(886), + [anon_sym_DQUOTE] = ACTIONS(888), + [aux_sym_match_token1] = ACTIONS(884), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(884), + [aux_sym_address_family_token1] = ACTIONS(884), + [aux_sym_batch_mode_token1] = ACTIONS(884), + [aux_sym_bind_address_token1] = ACTIONS(884), + [aux_sym_bind_interface_token1] = ACTIONS(884), + [aux_sym_canonical_domains_token1] = ACTIONS(884), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(884), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(884), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(884), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(884), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(884), + [aux_sym_certificate_file_token1] = ACTIONS(884), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(884), + [aux_sym_check_host_ip_token1] = ACTIONS(884), + [aux_sym_ciphers_token1] = ACTIONS(884), + [aux_sym_cipher_token1] = ACTIONS(886), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(884), + [aux_sym_compression_token1] = ACTIONS(884), + [aux_sym_connection_attempts_token1] = ACTIONS(884), + [aux_sym_connect_timeout_token1] = ACTIONS(884), + [aux_sym_control_master_token1] = ACTIONS(884), + [aux_sym_control_path_token1] = ACTIONS(884), + [aux_sym_control_persist_token1] = ACTIONS(884), + [aux_sym_dynamic_forward_token1] = ACTIONS(884), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(884), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(884), + [aux_sym_escape_char_token1] = ACTIONS(884), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(884), + [aux_sym_fingerprint_hash_token1] = ACTIONS(884), + [aux_sym_fork_after_authentication_token1] = ACTIONS(884), + [aux_sym_forward_agent_token1] = ACTIONS(884), + [aux_sym_forward_x11_token1] = ACTIONS(886), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(884), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(884), + [aux_sym_gateway_ports_token1] = ACTIONS(884), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(884), + [aux_sym_gssapi_authentication_token1] = ACTIONS(884), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(884), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(884), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(884), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(884), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(884), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(884), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(884), + [aux_sym_hash_known_hosts_token1] = ACTIONS(884), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(884), + [aux_sym_hostbased_authentication_token1] = ACTIONS(884), + [aux_sym_host_key_algorithms_token1] = ACTIONS(884), + [aux_sym_host_key_alias_token1] = ACTIONS(884), + [aux_sym_hostname_token1] = ACTIONS(884), + [aux_sym_identities_only_token1] = ACTIONS(884), + [aux_sym_identity_agent_token1] = ACTIONS(884), + [aux_sym_identity_file_token1] = ACTIONS(884), + [aux_sym_ignore_unknown_token1] = ACTIONS(884), + [aux_sym_include_token1] = ACTIONS(884), + [aux_sym_ip_qos_token1] = ACTIONS(884), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(884), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(884), + [aux_sym_kex_algorithms_token1] = ACTIONS(884), + [aux_sym_known_hosts_command_token1] = ACTIONS(884), + [aux_sym_local_command_token1] = ACTIONS(884), + [aux_sym_local_forward_token1] = ACTIONS(884), + [aux_sym_log_level_token1] = ACTIONS(884), + [aux_sym_log_verbose_token1] = ACTIONS(884), + [aux_sym_macs_token1] = ACTIONS(884), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(884), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(884), + [aux_sym_password_authentication_token1] = ACTIONS(884), + [aux_sym_permit_local_command_token1] = ACTIONS(884), + [aux_sym_permit_remote_open_token1] = ACTIONS(884), + [aux_sym_pkcs11_provider_token1] = ACTIONS(884), + [aux_sym_port_token1] = ACTIONS(884), + [aux_sym_preferred_authentications_token1] = ACTIONS(884), + [aux_sym_protocol_token1] = ACTIONS(884), + [aux_sym_proxy_command_token1] = ACTIONS(884), + [aux_sym_proxy_jump_token1] = ACTIONS(884), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(884), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(884), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(884), + [aux_sym_pubkey_authentication_token1] = ACTIONS(884), + [aux_sym_rekey_limit_token1] = ACTIONS(884), + [aux_sym_remote_command_token1] = ACTIONS(884), + [aux_sym_remote_forward_token1] = ACTIONS(884), + [aux_sym_request_tty_token1] = ACTIONS(884), + [aux_sym_required_rsa_size_token1] = ACTIONS(884), + [aux_sym_revoked_host_keys_token1] = ACTIONS(884), + [aux_sym_security_key_provider_token1] = ACTIONS(884), + [aux_sym_send_env_token1] = ACTIONS(884), + [aux_sym_server_alive_count_max_token1] = ACTIONS(884), + [aux_sym_server_alive_interval_token1] = ACTIONS(884), + [aux_sym_session_type_token1] = ACTIONS(884), + [aux_sym_set_env_token1] = ACTIONS(884), + [aux_sym_stdin_null_token1] = ACTIONS(884), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(884), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(884), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(884), + [aux_sym_syslog_facility_token1] = ACTIONS(884), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(884), + [aux_sym_keep_alive_token1] = ACTIONS(884), + [aux_sym_tunnel_token1] = ACTIONS(886), + [aux_sym_tunnel_device_token1] = ACTIONS(884), + [aux_sym_update_host_keys_token1] = ACTIONS(884), + [aux_sym_use_keychain_token1] = ACTIONS(884), + [aux_sym_use_roaming_token1] = ACTIONS(884), + [aux_sym_user_token1] = ACTIONS(886), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(884), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(884), + [aux_sym_visual_host_key_token1] = ACTIONS(884), + [aux_sym_xauth_location_token1] = ACTIONS(884), }, [58] = { - [ts_builtin_sym_end] = ACTIONS(885), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(887), - [anon_sym_DQUOTE] = ACTIONS(889), - [aux_sym_match_token1] = ACTIONS(885), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(885), - [aux_sym_address_family_token1] = ACTIONS(885), - [aux_sym_batch_mode_token1] = ACTIONS(885), - [aux_sym_bind_address_token1] = ACTIONS(885), - [aux_sym_bind_interface_token1] = ACTIONS(885), - [aux_sym_canonical_domains_token1] = ACTIONS(885), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(885), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(885), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(885), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(885), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(885), - [aux_sym_certificate_file_token1] = ACTIONS(885), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(885), - [aux_sym_check_host_ip_token1] = ACTIONS(885), - [aux_sym_ciphers_token1] = ACTIONS(885), - [aux_sym_cipher_token1] = ACTIONS(887), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(885), - [aux_sym_compression_token1] = ACTIONS(885), - [aux_sym_connection_attempts_token1] = ACTIONS(885), - [aux_sym_connect_timeout_token1] = ACTIONS(885), - [aux_sym_control_master_token1] = ACTIONS(885), - [aux_sym_control_path_token1] = ACTIONS(885), - [aux_sym_control_persist_token1] = ACTIONS(885), - [aux_sym_dynamic_forward_token1] = ACTIONS(885), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(885), - [aux_sym_escape_char_token1] = ACTIONS(885), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(885), - [aux_sym_fingerprint_hash_token1] = ACTIONS(885), - [aux_sym_fork_after_authentication_token1] = ACTIONS(885), - [aux_sym_forward_agent_token1] = ACTIONS(885), - [aux_sym_forward_x11_token1] = ACTIONS(887), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(885), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(885), - [aux_sym_gateway_ports_token1] = ACTIONS(885), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(885), - [aux_sym_gssapi_authentication_token1] = ACTIONS(885), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(885), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(885), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(885), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(885), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(885), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(885), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(885), - [aux_sym_hash_known_hosts_token1] = ACTIONS(885), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(885), - [aux_sym_hostbased_authentication_token1] = ACTIONS(885), - [aux_sym_host_key_algorithms_token1] = ACTIONS(885), - [aux_sym_host_key_alias_token1] = ACTIONS(885), - [aux_sym_hostname_token1] = ACTIONS(885), - [aux_sym_identities_only_token1] = ACTIONS(885), - [aux_sym_identity_agent_token1] = ACTIONS(885), - [aux_sym_identity_file_token1] = ACTIONS(885), - [aux_sym_ignore_unknown_token1] = ACTIONS(885), - [aux_sym_include_token1] = ACTIONS(885), - [aux_sym_ip_qos_token1] = ACTIONS(885), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(885), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(885), - [aux_sym_kex_algorithms_token1] = ACTIONS(885), - [aux_sym_known_hosts_command_token1] = ACTIONS(885), - [aux_sym_local_command_token1] = ACTIONS(885), - [aux_sym_local_forward_token1] = ACTIONS(885), - [aux_sym_log_level_token1] = ACTIONS(885), - [aux_sym_log_verbose_token1] = ACTIONS(885), - [aux_sym_macs_token1] = ACTIONS(885), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(885), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(885), - [aux_sym_password_authentication_token1] = ACTIONS(885), - [aux_sym_permit_local_command_token1] = ACTIONS(885), - [aux_sym_permit_remote_open_token1] = ACTIONS(885), - [aux_sym_pkcs11_provider_token1] = ACTIONS(885), - [aux_sym_port_token1] = ACTIONS(885), - [aux_sym_preferred_authentications_token1] = ACTIONS(885), - [aux_sym_protocol_token1] = ACTIONS(885), - [aux_sym_proxy_command_token1] = ACTIONS(885), - [aux_sym_proxy_jump_token1] = ACTIONS(885), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(885), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(885), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(885), - [aux_sym_pubkey_authentication_token1] = ACTIONS(885), - [aux_sym_rekey_limit_token1] = ACTIONS(885), - [aux_sym_remote_command_token1] = ACTIONS(885), - [aux_sym_remote_forward_token1] = ACTIONS(885), - [aux_sym_request_tty_token1] = ACTIONS(885), - [aux_sym_required_rsa_size_token1] = ACTIONS(885), - [aux_sym_revoked_host_keys_token1] = ACTIONS(885), - [aux_sym_security_key_provider_token1] = ACTIONS(885), - [aux_sym_send_env_token1] = ACTIONS(885), - [aux_sym_server_alive_count_max_token1] = ACTIONS(885), - [aux_sym_server_alive_interval_token1] = ACTIONS(885), - [aux_sym_session_type_token1] = ACTIONS(885), - [aux_sym_set_env_token1] = ACTIONS(885), - [aux_sym_stdin_null_token1] = ACTIONS(885), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(885), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(885), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(885), - [aux_sym_syslog_facility_token1] = ACTIONS(885), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(885), - [aux_sym_keep_alive_token1] = ACTIONS(885), - [aux_sym_tunnel_token1] = ACTIONS(887), - [aux_sym_tunnel_device_token1] = ACTIONS(885), - [aux_sym_update_host_keys_token1] = ACTIONS(885), - [aux_sym_use_keychain_token1] = ACTIONS(885), - [aux_sym_use_roaming_token1] = ACTIONS(885), - [aux_sym_user_token1] = ACTIONS(887), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(885), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(885), - [aux_sym_visual_host_key_token1] = ACTIONS(885), - [aux_sym_xauth_location_token1] = ACTIONS(885), + [ts_builtin_sym_end] = ACTIONS(890), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(892), + [anon_sym_DQUOTE] = ACTIONS(894), + [aux_sym_match_token1] = ACTIONS(890), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(890), + [aux_sym_address_family_token1] = ACTIONS(890), + [aux_sym_batch_mode_token1] = ACTIONS(890), + [aux_sym_bind_address_token1] = ACTIONS(890), + [aux_sym_bind_interface_token1] = ACTIONS(890), + [aux_sym_canonical_domains_token1] = ACTIONS(890), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(890), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(890), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(890), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(890), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(890), + [aux_sym_certificate_file_token1] = ACTIONS(890), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(890), + [aux_sym_check_host_ip_token1] = ACTIONS(890), + [aux_sym_ciphers_token1] = ACTIONS(890), + [aux_sym_cipher_token1] = ACTIONS(892), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(890), + [aux_sym_compression_token1] = ACTIONS(890), + [aux_sym_connection_attempts_token1] = ACTIONS(890), + [aux_sym_connect_timeout_token1] = ACTIONS(890), + [aux_sym_control_master_token1] = ACTIONS(890), + [aux_sym_control_path_token1] = ACTIONS(890), + [aux_sym_control_persist_token1] = ACTIONS(890), + [aux_sym_dynamic_forward_token1] = ACTIONS(890), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(890), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(890), + [aux_sym_escape_char_token1] = ACTIONS(890), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(890), + [aux_sym_fingerprint_hash_token1] = ACTIONS(890), + [aux_sym_fork_after_authentication_token1] = ACTIONS(890), + [aux_sym_forward_agent_token1] = ACTIONS(890), + [aux_sym_forward_x11_token1] = ACTIONS(892), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(890), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(890), + [aux_sym_gateway_ports_token1] = ACTIONS(890), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(890), + [aux_sym_gssapi_authentication_token1] = ACTIONS(890), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(890), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(890), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(890), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(890), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(890), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(890), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(890), + [aux_sym_hash_known_hosts_token1] = ACTIONS(890), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(890), + [aux_sym_hostbased_authentication_token1] = ACTIONS(890), + [aux_sym_host_key_algorithms_token1] = ACTIONS(890), + [aux_sym_host_key_alias_token1] = ACTIONS(890), + [aux_sym_hostname_token1] = ACTIONS(890), + [aux_sym_identities_only_token1] = ACTIONS(890), + [aux_sym_identity_agent_token1] = ACTIONS(890), + [aux_sym_identity_file_token1] = ACTIONS(890), + [aux_sym_ignore_unknown_token1] = ACTIONS(890), + [aux_sym_include_token1] = ACTIONS(890), + [aux_sym_ip_qos_token1] = ACTIONS(890), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(890), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(890), + [aux_sym_kex_algorithms_token1] = ACTIONS(890), + [aux_sym_known_hosts_command_token1] = ACTIONS(890), + [aux_sym_local_command_token1] = ACTIONS(890), + [aux_sym_local_forward_token1] = ACTIONS(890), + [aux_sym_log_level_token1] = ACTIONS(890), + [aux_sym_log_verbose_token1] = ACTIONS(890), + [aux_sym_macs_token1] = ACTIONS(890), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(890), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(890), + [aux_sym_password_authentication_token1] = ACTIONS(890), + [aux_sym_permit_local_command_token1] = ACTIONS(890), + [aux_sym_permit_remote_open_token1] = ACTIONS(890), + [aux_sym_pkcs11_provider_token1] = ACTIONS(890), + [aux_sym_port_token1] = ACTIONS(890), + [aux_sym_preferred_authentications_token1] = ACTIONS(890), + [aux_sym_protocol_token1] = ACTIONS(890), + [aux_sym_proxy_command_token1] = ACTIONS(890), + [aux_sym_proxy_jump_token1] = ACTIONS(890), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(890), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(890), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(890), + [aux_sym_pubkey_authentication_token1] = ACTIONS(890), + [aux_sym_rekey_limit_token1] = ACTIONS(890), + [aux_sym_remote_command_token1] = ACTIONS(890), + [aux_sym_remote_forward_token1] = ACTIONS(890), + [aux_sym_request_tty_token1] = ACTIONS(890), + [aux_sym_required_rsa_size_token1] = ACTIONS(890), + [aux_sym_revoked_host_keys_token1] = ACTIONS(890), + [aux_sym_security_key_provider_token1] = ACTIONS(890), + [aux_sym_send_env_token1] = ACTIONS(890), + [aux_sym_server_alive_count_max_token1] = ACTIONS(890), + [aux_sym_server_alive_interval_token1] = ACTIONS(890), + [aux_sym_session_type_token1] = ACTIONS(890), + [aux_sym_set_env_token1] = ACTIONS(890), + [aux_sym_stdin_null_token1] = ACTIONS(890), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(890), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(890), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(890), + [aux_sym_syslog_facility_token1] = ACTIONS(890), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(890), + [aux_sym_keep_alive_token1] = ACTIONS(890), + [aux_sym_tunnel_token1] = ACTIONS(892), + [aux_sym_tunnel_device_token1] = ACTIONS(890), + [aux_sym_update_host_keys_token1] = ACTIONS(890), + [aux_sym_use_keychain_token1] = ACTIONS(890), + [aux_sym_use_roaming_token1] = ACTIONS(890), + [aux_sym_user_token1] = ACTIONS(892), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(890), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(890), + [aux_sym_visual_host_key_token1] = ACTIONS(890), + [aux_sym_xauth_location_token1] = ACTIONS(890), }, [59] = { - [ts_builtin_sym_end] = ACTIONS(891), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(893), - [anon_sym_DQUOTE] = ACTIONS(895), - [aux_sym_match_token1] = ACTIONS(891), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(891), - [aux_sym_address_family_token1] = ACTIONS(891), - [aux_sym_batch_mode_token1] = ACTIONS(891), - [aux_sym_bind_address_token1] = ACTIONS(891), - [aux_sym_bind_interface_token1] = ACTIONS(891), - [aux_sym_canonical_domains_token1] = ACTIONS(891), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(891), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(891), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(891), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(891), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(891), - [aux_sym_certificate_file_token1] = ACTIONS(891), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(891), - [aux_sym_check_host_ip_token1] = ACTIONS(891), - [aux_sym_ciphers_token1] = ACTIONS(891), - [aux_sym_cipher_token1] = ACTIONS(893), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(891), - [aux_sym_compression_token1] = ACTIONS(891), - [aux_sym_connection_attempts_token1] = ACTIONS(891), - [aux_sym_connect_timeout_token1] = ACTIONS(891), - [aux_sym_control_master_token1] = ACTIONS(891), - [aux_sym_control_path_token1] = ACTIONS(891), - [aux_sym_control_persist_token1] = ACTIONS(891), - [aux_sym_dynamic_forward_token1] = ACTIONS(891), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(891), - [aux_sym_escape_char_token1] = ACTIONS(891), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(891), - [aux_sym_fingerprint_hash_token1] = ACTIONS(891), - [aux_sym_fork_after_authentication_token1] = ACTIONS(891), - [aux_sym_forward_agent_token1] = ACTIONS(891), - [aux_sym_forward_x11_token1] = ACTIONS(893), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(891), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(891), - [aux_sym_gateway_ports_token1] = ACTIONS(891), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(891), - [aux_sym_gssapi_authentication_token1] = ACTIONS(891), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(891), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(891), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(891), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(891), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(891), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(891), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(891), - [aux_sym_hash_known_hosts_token1] = ACTIONS(891), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(891), - [aux_sym_hostbased_authentication_token1] = ACTIONS(891), - [aux_sym_host_key_algorithms_token1] = ACTIONS(891), - [aux_sym_host_key_alias_token1] = ACTIONS(891), - [aux_sym_hostname_token1] = ACTIONS(891), - [aux_sym_identities_only_token1] = ACTIONS(891), - [aux_sym_identity_agent_token1] = ACTIONS(891), - [aux_sym_identity_file_token1] = ACTIONS(891), - [aux_sym_ignore_unknown_token1] = ACTIONS(891), - [aux_sym_include_token1] = ACTIONS(891), - [aux_sym_ip_qos_token1] = ACTIONS(891), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(891), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(891), - [aux_sym_kex_algorithms_token1] = ACTIONS(891), - [aux_sym_known_hosts_command_token1] = ACTIONS(891), - [aux_sym_local_command_token1] = ACTIONS(891), - [aux_sym_local_forward_token1] = ACTIONS(891), - [aux_sym_log_level_token1] = ACTIONS(891), - [aux_sym_log_verbose_token1] = ACTIONS(891), - [aux_sym_macs_token1] = ACTIONS(891), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(891), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(891), - [aux_sym_password_authentication_token1] = ACTIONS(891), - [aux_sym_permit_local_command_token1] = ACTIONS(891), - [aux_sym_permit_remote_open_token1] = ACTIONS(891), - [aux_sym_pkcs11_provider_token1] = ACTIONS(891), - [aux_sym_port_token1] = ACTIONS(891), - [aux_sym_preferred_authentications_token1] = ACTIONS(891), - [aux_sym_protocol_token1] = ACTIONS(891), - [aux_sym_proxy_command_token1] = ACTIONS(891), - [aux_sym_proxy_jump_token1] = ACTIONS(891), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(891), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(891), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(891), - [aux_sym_pubkey_authentication_token1] = ACTIONS(891), - [aux_sym_rekey_limit_token1] = ACTIONS(891), - [aux_sym_remote_command_token1] = ACTIONS(891), - [aux_sym_remote_forward_token1] = ACTIONS(891), - [aux_sym_request_tty_token1] = ACTIONS(891), - [aux_sym_required_rsa_size_token1] = ACTIONS(891), - [aux_sym_revoked_host_keys_token1] = ACTIONS(891), - [aux_sym_security_key_provider_token1] = ACTIONS(891), - [aux_sym_send_env_token1] = ACTIONS(891), - [aux_sym_server_alive_count_max_token1] = ACTIONS(891), - [aux_sym_server_alive_interval_token1] = ACTIONS(891), - [aux_sym_session_type_token1] = ACTIONS(891), - [aux_sym_set_env_token1] = ACTIONS(891), - [aux_sym_stdin_null_token1] = ACTIONS(891), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(891), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(891), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(891), - [aux_sym_syslog_facility_token1] = ACTIONS(891), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(891), - [aux_sym_keep_alive_token1] = ACTIONS(891), - [aux_sym_tunnel_token1] = ACTIONS(893), - [aux_sym_tunnel_device_token1] = ACTIONS(891), - [aux_sym_update_host_keys_token1] = ACTIONS(891), - [aux_sym_use_keychain_token1] = ACTIONS(891), - [aux_sym_use_roaming_token1] = ACTIONS(891), - [aux_sym_user_token1] = ACTIONS(893), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(891), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(891), - [aux_sym_visual_host_key_token1] = ACTIONS(891), - [aux_sym_xauth_location_token1] = ACTIONS(891), + [ts_builtin_sym_end] = ACTIONS(896), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(898), + [anon_sym_DQUOTE] = ACTIONS(900), + [aux_sym_match_token1] = ACTIONS(896), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(896), + [aux_sym_address_family_token1] = ACTIONS(896), + [aux_sym_batch_mode_token1] = ACTIONS(896), + [aux_sym_bind_address_token1] = ACTIONS(896), + [aux_sym_bind_interface_token1] = ACTIONS(896), + [aux_sym_canonical_domains_token1] = ACTIONS(896), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(896), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(896), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(896), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(896), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(896), + [aux_sym_certificate_file_token1] = ACTIONS(896), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(896), + [aux_sym_check_host_ip_token1] = ACTIONS(896), + [aux_sym_ciphers_token1] = ACTIONS(896), + [aux_sym_cipher_token1] = ACTIONS(898), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(896), + [aux_sym_compression_token1] = ACTIONS(896), + [aux_sym_connection_attempts_token1] = ACTIONS(896), + [aux_sym_connect_timeout_token1] = ACTIONS(896), + [aux_sym_control_master_token1] = ACTIONS(896), + [aux_sym_control_path_token1] = ACTIONS(896), + [aux_sym_control_persist_token1] = ACTIONS(896), + [aux_sym_dynamic_forward_token1] = ACTIONS(896), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(896), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(896), + [aux_sym_escape_char_token1] = ACTIONS(896), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(896), + [aux_sym_fingerprint_hash_token1] = ACTIONS(896), + [aux_sym_fork_after_authentication_token1] = ACTIONS(896), + [aux_sym_forward_agent_token1] = ACTIONS(896), + [aux_sym_forward_x11_token1] = ACTIONS(898), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(896), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(896), + [aux_sym_gateway_ports_token1] = ACTIONS(896), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(896), + [aux_sym_gssapi_authentication_token1] = ACTIONS(896), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(896), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(896), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(896), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(896), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(896), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(896), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(896), + [aux_sym_hash_known_hosts_token1] = ACTIONS(896), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(896), + [aux_sym_hostbased_authentication_token1] = ACTIONS(896), + [aux_sym_host_key_algorithms_token1] = ACTIONS(896), + [aux_sym_host_key_alias_token1] = ACTIONS(896), + [aux_sym_hostname_token1] = ACTIONS(896), + [aux_sym_identities_only_token1] = ACTIONS(896), + [aux_sym_identity_agent_token1] = ACTIONS(896), + [aux_sym_identity_file_token1] = ACTIONS(896), + [aux_sym_ignore_unknown_token1] = ACTIONS(896), + [aux_sym_include_token1] = ACTIONS(896), + [aux_sym_ip_qos_token1] = ACTIONS(896), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(896), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(896), + [aux_sym_kex_algorithms_token1] = ACTIONS(896), + [aux_sym_known_hosts_command_token1] = ACTIONS(896), + [aux_sym_local_command_token1] = ACTIONS(896), + [aux_sym_local_forward_token1] = ACTIONS(896), + [aux_sym_log_level_token1] = ACTIONS(896), + [aux_sym_log_verbose_token1] = ACTIONS(896), + [aux_sym_macs_token1] = ACTIONS(896), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(896), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(896), + [aux_sym_password_authentication_token1] = ACTIONS(896), + [aux_sym_permit_local_command_token1] = ACTIONS(896), + [aux_sym_permit_remote_open_token1] = ACTIONS(896), + [aux_sym_pkcs11_provider_token1] = ACTIONS(896), + [aux_sym_port_token1] = ACTIONS(896), + [aux_sym_preferred_authentications_token1] = ACTIONS(896), + [aux_sym_protocol_token1] = ACTIONS(896), + [aux_sym_proxy_command_token1] = ACTIONS(896), + [aux_sym_proxy_jump_token1] = ACTIONS(896), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(896), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(896), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(896), + [aux_sym_pubkey_authentication_token1] = ACTIONS(896), + [aux_sym_rekey_limit_token1] = ACTIONS(896), + [aux_sym_remote_command_token1] = ACTIONS(896), + [aux_sym_remote_forward_token1] = ACTIONS(896), + [aux_sym_request_tty_token1] = ACTIONS(896), + [aux_sym_required_rsa_size_token1] = ACTIONS(896), + [aux_sym_revoked_host_keys_token1] = ACTIONS(896), + [aux_sym_security_key_provider_token1] = ACTIONS(896), + [aux_sym_send_env_token1] = ACTIONS(896), + [aux_sym_server_alive_count_max_token1] = ACTIONS(896), + [aux_sym_server_alive_interval_token1] = ACTIONS(896), + [aux_sym_session_type_token1] = ACTIONS(896), + [aux_sym_set_env_token1] = ACTIONS(896), + [aux_sym_stdin_null_token1] = ACTIONS(896), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(896), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(896), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(896), + [aux_sym_syslog_facility_token1] = ACTIONS(896), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(896), + [aux_sym_keep_alive_token1] = ACTIONS(896), + [aux_sym_tunnel_token1] = ACTIONS(898), + [aux_sym_tunnel_device_token1] = ACTIONS(896), + [aux_sym_update_host_keys_token1] = ACTIONS(896), + [aux_sym_use_keychain_token1] = ACTIONS(896), + [aux_sym_use_roaming_token1] = ACTIONS(896), + [aux_sym_user_token1] = ACTIONS(898), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(896), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(896), + [aux_sym_visual_host_key_token1] = ACTIONS(896), + [aux_sym_xauth_location_token1] = ACTIONS(896), }, [60] = { - [ts_builtin_sym_end] = ACTIONS(897), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(899), - [anon_sym_DQUOTE] = ACTIONS(901), - [aux_sym_match_token1] = ACTIONS(897), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(897), - [aux_sym_address_family_token1] = ACTIONS(897), - [aux_sym_batch_mode_token1] = ACTIONS(897), - [aux_sym_bind_address_token1] = ACTIONS(897), - [aux_sym_bind_interface_token1] = ACTIONS(897), - [aux_sym_canonical_domains_token1] = ACTIONS(897), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(897), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(897), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(897), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(897), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(897), - [aux_sym_certificate_file_token1] = ACTIONS(897), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(897), - [aux_sym_check_host_ip_token1] = ACTIONS(897), - [aux_sym_ciphers_token1] = ACTIONS(897), - [aux_sym_cipher_token1] = ACTIONS(899), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(897), - [aux_sym_compression_token1] = ACTIONS(897), - [aux_sym_connection_attempts_token1] = ACTIONS(897), - [aux_sym_connect_timeout_token1] = ACTIONS(897), - [aux_sym_control_master_token1] = ACTIONS(897), - [aux_sym_control_path_token1] = ACTIONS(897), - [aux_sym_control_persist_token1] = ACTIONS(897), - [aux_sym_dynamic_forward_token1] = ACTIONS(897), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(897), - [aux_sym_escape_char_token1] = ACTIONS(897), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(897), - [aux_sym_fingerprint_hash_token1] = ACTIONS(897), - [aux_sym_fork_after_authentication_token1] = ACTIONS(897), - [aux_sym_forward_agent_token1] = ACTIONS(897), - [aux_sym_forward_x11_token1] = ACTIONS(899), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(897), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(897), - [aux_sym_gateway_ports_token1] = ACTIONS(897), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(897), - [aux_sym_gssapi_authentication_token1] = ACTIONS(897), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(897), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(897), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(897), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(897), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(897), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(897), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(897), - [aux_sym_hash_known_hosts_token1] = ACTIONS(897), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(897), - [aux_sym_hostbased_authentication_token1] = ACTIONS(897), - [aux_sym_host_key_algorithms_token1] = ACTIONS(897), - [aux_sym_host_key_alias_token1] = ACTIONS(897), - [aux_sym_hostname_token1] = ACTIONS(897), - [aux_sym_identities_only_token1] = ACTIONS(897), - [aux_sym_identity_agent_token1] = ACTIONS(897), - [aux_sym_identity_file_token1] = ACTIONS(897), - [aux_sym_ignore_unknown_token1] = ACTIONS(897), - [aux_sym_include_token1] = ACTIONS(897), - [aux_sym_ip_qos_token1] = ACTIONS(897), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(897), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(897), - [aux_sym_kex_algorithms_token1] = ACTIONS(897), - [aux_sym_known_hosts_command_token1] = ACTIONS(897), - [aux_sym_local_command_token1] = ACTIONS(897), - [aux_sym_local_forward_token1] = ACTIONS(897), - [aux_sym_log_level_token1] = ACTIONS(897), - [aux_sym_log_verbose_token1] = ACTIONS(897), - [aux_sym_macs_token1] = ACTIONS(897), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(897), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(897), - [aux_sym_password_authentication_token1] = ACTIONS(897), - [aux_sym_permit_local_command_token1] = ACTIONS(897), - [aux_sym_permit_remote_open_token1] = ACTIONS(897), - [aux_sym_pkcs11_provider_token1] = ACTIONS(897), - [aux_sym_port_token1] = ACTIONS(897), - [aux_sym_preferred_authentications_token1] = ACTIONS(897), - [aux_sym_protocol_token1] = ACTIONS(897), - [aux_sym_proxy_command_token1] = ACTIONS(897), - [aux_sym_proxy_jump_token1] = ACTIONS(897), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(897), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(897), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(897), - [aux_sym_pubkey_authentication_token1] = ACTIONS(897), - [aux_sym_rekey_limit_token1] = ACTIONS(897), - [aux_sym_remote_command_token1] = ACTIONS(897), - [aux_sym_remote_forward_token1] = ACTIONS(897), - [aux_sym_request_tty_token1] = ACTIONS(897), - [aux_sym_required_rsa_size_token1] = ACTIONS(897), - [aux_sym_revoked_host_keys_token1] = ACTIONS(897), - [aux_sym_security_key_provider_token1] = ACTIONS(897), - [aux_sym_send_env_token1] = ACTIONS(897), - [aux_sym_server_alive_count_max_token1] = ACTIONS(897), - [aux_sym_server_alive_interval_token1] = ACTIONS(897), - [aux_sym_session_type_token1] = ACTIONS(897), - [aux_sym_set_env_token1] = ACTIONS(897), - [aux_sym_stdin_null_token1] = ACTIONS(897), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(897), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(897), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(897), - [aux_sym_syslog_facility_token1] = ACTIONS(897), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(897), - [aux_sym_keep_alive_token1] = ACTIONS(897), - [aux_sym_tunnel_token1] = ACTIONS(899), - [aux_sym_tunnel_device_token1] = ACTIONS(897), - [aux_sym_update_host_keys_token1] = ACTIONS(897), - [aux_sym_use_keychain_token1] = ACTIONS(897), - [aux_sym_use_roaming_token1] = ACTIONS(897), - [aux_sym_user_token1] = ACTIONS(899), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(897), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(897), - [aux_sym_visual_host_key_token1] = ACTIONS(897), - [aux_sym_xauth_location_token1] = ACTIONS(897), + [ts_builtin_sym_end] = ACTIONS(902), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(904), + [anon_sym_DQUOTE] = ACTIONS(906), + [aux_sym_match_token1] = ACTIONS(902), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(902), + [aux_sym_address_family_token1] = ACTIONS(902), + [aux_sym_batch_mode_token1] = ACTIONS(902), + [aux_sym_bind_address_token1] = ACTIONS(902), + [aux_sym_bind_interface_token1] = ACTIONS(902), + [aux_sym_canonical_domains_token1] = ACTIONS(902), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(902), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(902), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(902), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(902), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(902), + [aux_sym_certificate_file_token1] = ACTIONS(902), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(902), + [aux_sym_check_host_ip_token1] = ACTIONS(902), + [aux_sym_ciphers_token1] = ACTIONS(902), + [aux_sym_cipher_token1] = ACTIONS(904), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(902), + [aux_sym_compression_token1] = ACTIONS(902), + [aux_sym_connection_attempts_token1] = ACTIONS(902), + [aux_sym_connect_timeout_token1] = ACTIONS(902), + [aux_sym_control_master_token1] = ACTIONS(902), + [aux_sym_control_path_token1] = ACTIONS(902), + [aux_sym_control_persist_token1] = ACTIONS(902), + [aux_sym_dynamic_forward_token1] = ACTIONS(902), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(902), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(902), + [aux_sym_escape_char_token1] = ACTIONS(902), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(902), + [aux_sym_fingerprint_hash_token1] = ACTIONS(902), + [aux_sym_fork_after_authentication_token1] = ACTIONS(902), + [aux_sym_forward_agent_token1] = ACTIONS(902), + [aux_sym_forward_x11_token1] = ACTIONS(904), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(902), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(902), + [aux_sym_gateway_ports_token1] = ACTIONS(902), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(902), + [aux_sym_gssapi_authentication_token1] = ACTIONS(902), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(902), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(902), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(902), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(902), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(902), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(902), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(902), + [aux_sym_hash_known_hosts_token1] = ACTIONS(902), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(902), + [aux_sym_hostbased_authentication_token1] = ACTIONS(902), + [aux_sym_host_key_algorithms_token1] = ACTIONS(902), + [aux_sym_host_key_alias_token1] = ACTIONS(902), + [aux_sym_hostname_token1] = ACTIONS(902), + [aux_sym_identities_only_token1] = ACTIONS(902), + [aux_sym_identity_agent_token1] = ACTIONS(902), + [aux_sym_identity_file_token1] = ACTIONS(902), + [aux_sym_ignore_unknown_token1] = ACTIONS(902), + [aux_sym_include_token1] = ACTIONS(902), + [aux_sym_ip_qos_token1] = ACTIONS(902), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(902), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(902), + [aux_sym_kex_algorithms_token1] = ACTIONS(902), + [aux_sym_known_hosts_command_token1] = ACTIONS(902), + [aux_sym_local_command_token1] = ACTIONS(902), + [aux_sym_local_forward_token1] = ACTIONS(902), + [aux_sym_log_level_token1] = ACTIONS(902), + [aux_sym_log_verbose_token1] = ACTIONS(902), + [aux_sym_macs_token1] = ACTIONS(902), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(902), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(902), + [aux_sym_password_authentication_token1] = ACTIONS(902), + [aux_sym_permit_local_command_token1] = ACTIONS(902), + [aux_sym_permit_remote_open_token1] = ACTIONS(902), + [aux_sym_pkcs11_provider_token1] = ACTIONS(902), + [aux_sym_port_token1] = ACTIONS(902), + [aux_sym_preferred_authentications_token1] = ACTIONS(902), + [aux_sym_protocol_token1] = ACTIONS(902), + [aux_sym_proxy_command_token1] = ACTIONS(902), + [aux_sym_proxy_jump_token1] = ACTIONS(902), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(902), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(902), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(902), + [aux_sym_pubkey_authentication_token1] = ACTIONS(902), + [aux_sym_rekey_limit_token1] = ACTIONS(902), + [aux_sym_remote_command_token1] = ACTIONS(902), + [aux_sym_remote_forward_token1] = ACTIONS(902), + [aux_sym_request_tty_token1] = ACTIONS(902), + [aux_sym_required_rsa_size_token1] = ACTIONS(902), + [aux_sym_revoked_host_keys_token1] = ACTIONS(902), + [aux_sym_security_key_provider_token1] = ACTIONS(902), + [aux_sym_send_env_token1] = ACTIONS(902), + [aux_sym_server_alive_count_max_token1] = ACTIONS(902), + [aux_sym_server_alive_interval_token1] = ACTIONS(902), + [aux_sym_session_type_token1] = ACTIONS(902), + [aux_sym_set_env_token1] = ACTIONS(902), + [aux_sym_stdin_null_token1] = ACTIONS(902), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(902), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(902), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(902), + [aux_sym_syslog_facility_token1] = ACTIONS(902), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(902), + [aux_sym_keep_alive_token1] = ACTIONS(902), + [aux_sym_tunnel_token1] = ACTIONS(904), + [aux_sym_tunnel_device_token1] = ACTIONS(902), + [aux_sym_update_host_keys_token1] = ACTIONS(902), + [aux_sym_use_keychain_token1] = ACTIONS(902), + [aux_sym_use_roaming_token1] = ACTIONS(902), + [aux_sym_user_token1] = ACTIONS(904), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(902), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(902), + [aux_sym_visual_host_key_token1] = ACTIONS(902), + [aux_sym_xauth_location_token1] = ACTIONS(902), }, [61] = { - [ts_builtin_sym_end] = ACTIONS(903), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(907), - [aux_sym_match_token1] = ACTIONS(903), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(903), - [aux_sym_address_family_token1] = ACTIONS(903), - [aux_sym_batch_mode_token1] = ACTIONS(903), - [aux_sym_bind_address_token1] = ACTIONS(903), - [aux_sym_bind_interface_token1] = ACTIONS(903), - [aux_sym_canonical_domains_token1] = ACTIONS(903), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(903), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(903), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(903), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(903), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(903), - [aux_sym_certificate_file_token1] = ACTIONS(903), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(903), - [aux_sym_check_host_ip_token1] = ACTIONS(903), - [aux_sym_ciphers_token1] = ACTIONS(903), - [aux_sym_cipher_token1] = ACTIONS(905), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(903), - [aux_sym_compression_token1] = ACTIONS(903), - [aux_sym_connection_attempts_token1] = ACTIONS(903), - [aux_sym_connect_timeout_token1] = ACTIONS(903), - [aux_sym_control_master_token1] = ACTIONS(903), - [aux_sym_control_path_token1] = ACTIONS(903), - [aux_sym_control_persist_token1] = ACTIONS(903), - [aux_sym_dynamic_forward_token1] = ACTIONS(903), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(903), - [aux_sym_escape_char_token1] = ACTIONS(903), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(903), - [aux_sym_fingerprint_hash_token1] = ACTIONS(903), - [aux_sym_fork_after_authentication_token1] = ACTIONS(903), - [aux_sym_forward_agent_token1] = ACTIONS(903), - [aux_sym_forward_x11_token1] = ACTIONS(905), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(903), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(903), - [aux_sym_gateway_ports_token1] = ACTIONS(903), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(903), - [aux_sym_gssapi_authentication_token1] = ACTIONS(903), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(903), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(903), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(903), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(903), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(903), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(903), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(903), - [aux_sym_hash_known_hosts_token1] = ACTIONS(903), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(903), - [aux_sym_hostbased_authentication_token1] = ACTIONS(903), - [aux_sym_host_key_algorithms_token1] = ACTIONS(903), - [aux_sym_host_key_alias_token1] = ACTIONS(903), - [aux_sym_hostname_token1] = ACTIONS(903), - [aux_sym_identities_only_token1] = ACTIONS(903), - [aux_sym_identity_agent_token1] = ACTIONS(903), - [aux_sym_identity_file_token1] = ACTIONS(903), - [aux_sym_ignore_unknown_token1] = ACTIONS(903), - [aux_sym_include_token1] = ACTIONS(903), - [aux_sym_ip_qos_token1] = ACTIONS(903), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(903), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(903), - [aux_sym_kex_algorithms_token1] = ACTIONS(903), - [aux_sym_known_hosts_command_token1] = ACTIONS(903), - [aux_sym_local_command_token1] = ACTIONS(903), - [aux_sym_local_forward_token1] = ACTIONS(903), - [aux_sym_log_level_token1] = ACTIONS(903), - [aux_sym_log_verbose_token1] = ACTIONS(903), - [aux_sym_macs_token1] = ACTIONS(903), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(903), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(903), - [aux_sym_password_authentication_token1] = ACTIONS(903), - [aux_sym_permit_local_command_token1] = ACTIONS(903), - [aux_sym_permit_remote_open_token1] = ACTIONS(903), - [aux_sym_pkcs11_provider_token1] = ACTIONS(903), - [aux_sym_port_token1] = ACTIONS(903), - [aux_sym_preferred_authentications_token1] = ACTIONS(903), - [aux_sym_protocol_token1] = ACTIONS(903), - [aux_sym_proxy_command_token1] = ACTIONS(903), - [aux_sym_proxy_jump_token1] = ACTIONS(903), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(903), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(903), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(903), - [aux_sym_pubkey_authentication_token1] = ACTIONS(903), - [aux_sym_rekey_limit_token1] = ACTIONS(903), - [aux_sym_remote_command_token1] = ACTIONS(903), - [aux_sym_remote_forward_token1] = ACTIONS(903), - [aux_sym_request_tty_token1] = ACTIONS(903), - [aux_sym_required_rsa_size_token1] = ACTIONS(903), - [aux_sym_revoked_host_keys_token1] = ACTIONS(903), - [aux_sym_security_key_provider_token1] = ACTIONS(903), - [aux_sym_send_env_token1] = ACTIONS(903), - [aux_sym_server_alive_count_max_token1] = ACTIONS(903), - [aux_sym_server_alive_interval_token1] = ACTIONS(903), - [aux_sym_session_type_token1] = ACTIONS(903), - [aux_sym_set_env_token1] = ACTIONS(903), - [aux_sym_stdin_null_token1] = ACTIONS(903), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(903), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(903), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(903), - [aux_sym_syslog_facility_token1] = ACTIONS(903), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(903), - [aux_sym_keep_alive_token1] = ACTIONS(903), - [aux_sym_tunnel_token1] = ACTIONS(905), - [aux_sym_tunnel_device_token1] = ACTIONS(903), - [aux_sym_update_host_keys_token1] = ACTIONS(903), - [aux_sym_use_keychain_token1] = ACTIONS(903), - [aux_sym_use_roaming_token1] = ACTIONS(903), - [aux_sym_user_token1] = ACTIONS(905), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(903), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(903), - [aux_sym_visual_host_key_token1] = ACTIONS(903), - [aux_sym_xauth_location_token1] = ACTIONS(903), + [ts_builtin_sym_end] = ACTIONS(908), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(910), + [anon_sym_DQUOTE] = ACTIONS(912), + [aux_sym_match_token1] = ACTIONS(908), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(908), + [aux_sym_address_family_token1] = ACTIONS(908), + [aux_sym_batch_mode_token1] = ACTIONS(908), + [aux_sym_bind_address_token1] = ACTIONS(908), + [aux_sym_bind_interface_token1] = ACTIONS(908), + [aux_sym_canonical_domains_token1] = ACTIONS(908), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(908), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(908), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(908), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(908), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(908), + [aux_sym_certificate_file_token1] = ACTIONS(908), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(908), + [aux_sym_check_host_ip_token1] = ACTIONS(908), + [aux_sym_ciphers_token1] = ACTIONS(908), + [aux_sym_cipher_token1] = ACTIONS(910), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(908), + [aux_sym_compression_token1] = ACTIONS(908), + [aux_sym_connection_attempts_token1] = ACTIONS(908), + [aux_sym_connect_timeout_token1] = ACTIONS(908), + [aux_sym_control_master_token1] = ACTIONS(908), + [aux_sym_control_path_token1] = ACTIONS(908), + [aux_sym_control_persist_token1] = ACTIONS(908), + [aux_sym_dynamic_forward_token1] = ACTIONS(908), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(908), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(908), + [aux_sym_escape_char_token1] = ACTIONS(908), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(908), + [aux_sym_fingerprint_hash_token1] = ACTIONS(908), + [aux_sym_fork_after_authentication_token1] = ACTIONS(908), + [aux_sym_forward_agent_token1] = ACTIONS(908), + [aux_sym_forward_x11_token1] = ACTIONS(910), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(908), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(908), + [aux_sym_gateway_ports_token1] = ACTIONS(908), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(908), + [aux_sym_gssapi_authentication_token1] = ACTIONS(908), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(908), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(908), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(908), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(908), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(908), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(908), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(908), + [aux_sym_hash_known_hosts_token1] = ACTIONS(908), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(908), + [aux_sym_hostbased_authentication_token1] = ACTIONS(908), + [aux_sym_host_key_algorithms_token1] = ACTIONS(908), + [aux_sym_host_key_alias_token1] = ACTIONS(908), + [aux_sym_hostname_token1] = ACTIONS(908), + [aux_sym_identities_only_token1] = ACTIONS(908), + [aux_sym_identity_agent_token1] = ACTIONS(908), + [aux_sym_identity_file_token1] = ACTIONS(908), + [aux_sym_ignore_unknown_token1] = ACTIONS(908), + [aux_sym_include_token1] = ACTIONS(908), + [aux_sym_ip_qos_token1] = ACTIONS(908), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(908), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(908), + [aux_sym_kex_algorithms_token1] = ACTIONS(908), + [aux_sym_known_hosts_command_token1] = ACTIONS(908), + [aux_sym_local_command_token1] = ACTIONS(908), + [aux_sym_local_forward_token1] = ACTIONS(908), + [aux_sym_log_level_token1] = ACTIONS(908), + [aux_sym_log_verbose_token1] = ACTIONS(908), + [aux_sym_macs_token1] = ACTIONS(908), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(908), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(908), + [aux_sym_password_authentication_token1] = ACTIONS(908), + [aux_sym_permit_local_command_token1] = ACTIONS(908), + [aux_sym_permit_remote_open_token1] = ACTIONS(908), + [aux_sym_pkcs11_provider_token1] = ACTIONS(908), + [aux_sym_port_token1] = ACTIONS(908), + [aux_sym_preferred_authentications_token1] = ACTIONS(908), + [aux_sym_protocol_token1] = ACTIONS(908), + [aux_sym_proxy_command_token1] = ACTIONS(908), + [aux_sym_proxy_jump_token1] = ACTIONS(908), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(908), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(908), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(908), + [aux_sym_pubkey_authentication_token1] = ACTIONS(908), + [aux_sym_rekey_limit_token1] = ACTIONS(908), + [aux_sym_remote_command_token1] = ACTIONS(908), + [aux_sym_remote_forward_token1] = ACTIONS(908), + [aux_sym_request_tty_token1] = ACTIONS(908), + [aux_sym_required_rsa_size_token1] = ACTIONS(908), + [aux_sym_revoked_host_keys_token1] = ACTIONS(908), + [aux_sym_security_key_provider_token1] = ACTIONS(908), + [aux_sym_send_env_token1] = ACTIONS(908), + [aux_sym_server_alive_count_max_token1] = ACTIONS(908), + [aux_sym_server_alive_interval_token1] = ACTIONS(908), + [aux_sym_session_type_token1] = ACTIONS(908), + [aux_sym_set_env_token1] = ACTIONS(908), + [aux_sym_stdin_null_token1] = ACTIONS(908), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(908), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(908), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(908), + [aux_sym_syslog_facility_token1] = ACTIONS(908), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(908), + [aux_sym_keep_alive_token1] = ACTIONS(908), + [aux_sym_tunnel_token1] = ACTIONS(910), + [aux_sym_tunnel_device_token1] = ACTIONS(908), + [aux_sym_update_host_keys_token1] = ACTIONS(908), + [aux_sym_use_keychain_token1] = ACTIONS(908), + [aux_sym_use_roaming_token1] = ACTIONS(908), + [aux_sym_user_token1] = ACTIONS(910), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(908), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(908), + [aux_sym_visual_host_key_token1] = ACTIONS(908), + [aux_sym_xauth_location_token1] = ACTIONS(908), }, [62] = { - [ts_builtin_sym_end] = ACTIONS(909), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(911), - [anon_sym_DQUOTE] = ACTIONS(913), - [aux_sym_match_token1] = ACTIONS(909), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(909), - [aux_sym_address_family_token1] = ACTIONS(909), - [aux_sym_batch_mode_token1] = ACTIONS(909), - [aux_sym_bind_address_token1] = ACTIONS(909), - [aux_sym_bind_interface_token1] = ACTIONS(909), - [aux_sym_canonical_domains_token1] = ACTIONS(909), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(909), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(909), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(909), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(909), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(909), - [aux_sym_certificate_file_token1] = ACTIONS(909), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(909), - [aux_sym_check_host_ip_token1] = ACTIONS(909), - [aux_sym_ciphers_token1] = ACTIONS(909), - [aux_sym_cipher_token1] = ACTIONS(911), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(909), - [aux_sym_compression_token1] = ACTIONS(909), - [aux_sym_connection_attempts_token1] = ACTIONS(909), - [aux_sym_connect_timeout_token1] = ACTIONS(909), - [aux_sym_control_master_token1] = ACTIONS(909), - [aux_sym_control_path_token1] = ACTIONS(909), - [aux_sym_control_persist_token1] = ACTIONS(909), - [aux_sym_dynamic_forward_token1] = ACTIONS(909), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(909), - [aux_sym_escape_char_token1] = ACTIONS(909), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(909), - [aux_sym_fingerprint_hash_token1] = ACTIONS(909), - [aux_sym_fork_after_authentication_token1] = ACTIONS(909), - [aux_sym_forward_agent_token1] = ACTIONS(909), - [aux_sym_forward_x11_token1] = ACTIONS(911), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(909), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(909), - [aux_sym_gateway_ports_token1] = ACTIONS(909), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(909), - [aux_sym_gssapi_authentication_token1] = ACTIONS(909), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(909), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(909), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(909), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(909), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(909), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(909), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(909), - [aux_sym_hash_known_hosts_token1] = ACTIONS(909), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(909), - [aux_sym_hostbased_authentication_token1] = ACTIONS(909), - [aux_sym_host_key_algorithms_token1] = ACTIONS(909), - [aux_sym_host_key_alias_token1] = ACTIONS(909), - [aux_sym_hostname_token1] = ACTIONS(909), - [aux_sym_identities_only_token1] = ACTIONS(909), - [aux_sym_identity_agent_token1] = ACTIONS(909), - [aux_sym_identity_file_token1] = ACTIONS(909), - [aux_sym_ignore_unknown_token1] = ACTIONS(909), - [aux_sym_include_token1] = ACTIONS(909), - [aux_sym_ip_qos_token1] = ACTIONS(909), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(909), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(909), - [aux_sym_kex_algorithms_token1] = ACTIONS(909), - [aux_sym_known_hosts_command_token1] = ACTIONS(909), - [aux_sym_local_command_token1] = ACTIONS(909), - [aux_sym_local_forward_token1] = ACTIONS(909), - [aux_sym_log_level_token1] = ACTIONS(909), - [aux_sym_log_verbose_token1] = ACTIONS(909), - [aux_sym_macs_token1] = ACTIONS(909), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(909), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(909), - [aux_sym_password_authentication_token1] = ACTIONS(909), - [aux_sym_permit_local_command_token1] = ACTIONS(909), - [aux_sym_permit_remote_open_token1] = ACTIONS(909), - [aux_sym_pkcs11_provider_token1] = ACTIONS(909), - [aux_sym_port_token1] = ACTIONS(909), - [aux_sym_preferred_authentications_token1] = ACTIONS(909), - [aux_sym_protocol_token1] = ACTIONS(909), - [aux_sym_proxy_command_token1] = ACTIONS(909), - [aux_sym_proxy_jump_token1] = ACTIONS(909), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(909), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(909), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(909), - [aux_sym_pubkey_authentication_token1] = ACTIONS(909), - [aux_sym_rekey_limit_token1] = ACTIONS(909), - [aux_sym_remote_command_token1] = ACTIONS(909), - [aux_sym_remote_forward_token1] = ACTIONS(909), - [aux_sym_request_tty_token1] = ACTIONS(909), - [aux_sym_required_rsa_size_token1] = ACTIONS(909), - [aux_sym_revoked_host_keys_token1] = ACTIONS(909), - [aux_sym_security_key_provider_token1] = ACTIONS(909), - [aux_sym_send_env_token1] = ACTIONS(909), - [aux_sym_server_alive_count_max_token1] = ACTIONS(909), - [aux_sym_server_alive_interval_token1] = ACTIONS(909), - [aux_sym_session_type_token1] = ACTIONS(909), - [aux_sym_set_env_token1] = ACTIONS(909), - [aux_sym_stdin_null_token1] = ACTIONS(909), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(909), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(909), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(909), - [aux_sym_syslog_facility_token1] = ACTIONS(909), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(909), - [aux_sym_keep_alive_token1] = ACTIONS(909), - [aux_sym_tunnel_token1] = ACTIONS(911), - [aux_sym_tunnel_device_token1] = ACTIONS(909), - [aux_sym_update_host_keys_token1] = ACTIONS(909), - [aux_sym_use_keychain_token1] = ACTIONS(909), - [aux_sym_use_roaming_token1] = ACTIONS(909), - [aux_sym_user_token1] = ACTIONS(911), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(909), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(909), - [aux_sym_visual_host_key_token1] = ACTIONS(909), - [aux_sym_xauth_location_token1] = ACTIONS(909), + [ts_builtin_sym_end] = ACTIONS(914), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(916), + [anon_sym_DQUOTE] = ACTIONS(918), + [aux_sym_match_token1] = ACTIONS(914), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(914), + [aux_sym_address_family_token1] = ACTIONS(914), + [aux_sym_batch_mode_token1] = ACTIONS(914), + [aux_sym_bind_address_token1] = ACTIONS(914), + [aux_sym_bind_interface_token1] = ACTIONS(914), + [aux_sym_canonical_domains_token1] = ACTIONS(914), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(914), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(914), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(914), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(914), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(914), + [aux_sym_certificate_file_token1] = ACTIONS(914), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(914), + [aux_sym_check_host_ip_token1] = ACTIONS(914), + [aux_sym_ciphers_token1] = ACTIONS(914), + [aux_sym_cipher_token1] = ACTIONS(916), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(914), + [aux_sym_compression_token1] = ACTIONS(914), + [aux_sym_connection_attempts_token1] = ACTIONS(914), + [aux_sym_connect_timeout_token1] = ACTIONS(914), + [aux_sym_control_master_token1] = ACTIONS(914), + [aux_sym_control_path_token1] = ACTIONS(914), + [aux_sym_control_persist_token1] = ACTIONS(914), + [aux_sym_dynamic_forward_token1] = ACTIONS(914), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(914), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(914), + [aux_sym_escape_char_token1] = ACTIONS(914), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(914), + [aux_sym_fingerprint_hash_token1] = ACTIONS(914), + [aux_sym_fork_after_authentication_token1] = ACTIONS(914), + [aux_sym_forward_agent_token1] = ACTIONS(914), + [aux_sym_forward_x11_token1] = ACTIONS(916), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(914), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(914), + [aux_sym_gateway_ports_token1] = ACTIONS(914), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(914), + [aux_sym_gssapi_authentication_token1] = ACTIONS(914), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(914), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(914), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(914), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(914), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(914), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(914), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(914), + [aux_sym_hash_known_hosts_token1] = ACTIONS(914), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(914), + [aux_sym_hostbased_authentication_token1] = ACTIONS(914), + [aux_sym_host_key_algorithms_token1] = ACTIONS(914), + [aux_sym_host_key_alias_token1] = ACTIONS(914), + [aux_sym_hostname_token1] = ACTIONS(914), + [aux_sym_identities_only_token1] = ACTIONS(914), + [aux_sym_identity_agent_token1] = ACTIONS(914), + [aux_sym_identity_file_token1] = ACTIONS(914), + [aux_sym_ignore_unknown_token1] = ACTIONS(914), + [aux_sym_include_token1] = ACTIONS(914), + [aux_sym_ip_qos_token1] = ACTIONS(914), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(914), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(914), + [aux_sym_kex_algorithms_token1] = ACTIONS(914), + [aux_sym_known_hosts_command_token1] = ACTIONS(914), + [aux_sym_local_command_token1] = ACTIONS(914), + [aux_sym_local_forward_token1] = ACTIONS(914), + [aux_sym_log_level_token1] = ACTIONS(914), + [aux_sym_log_verbose_token1] = ACTIONS(914), + [aux_sym_macs_token1] = ACTIONS(914), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(914), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(914), + [aux_sym_password_authentication_token1] = ACTIONS(914), + [aux_sym_permit_local_command_token1] = ACTIONS(914), + [aux_sym_permit_remote_open_token1] = ACTIONS(914), + [aux_sym_pkcs11_provider_token1] = ACTIONS(914), + [aux_sym_port_token1] = ACTIONS(914), + [aux_sym_preferred_authentications_token1] = ACTIONS(914), + [aux_sym_protocol_token1] = ACTIONS(914), + [aux_sym_proxy_command_token1] = ACTIONS(914), + [aux_sym_proxy_jump_token1] = ACTIONS(914), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(914), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(914), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(914), + [aux_sym_pubkey_authentication_token1] = ACTIONS(914), + [aux_sym_rekey_limit_token1] = ACTIONS(914), + [aux_sym_remote_command_token1] = ACTIONS(914), + [aux_sym_remote_forward_token1] = ACTIONS(914), + [aux_sym_request_tty_token1] = ACTIONS(914), + [aux_sym_required_rsa_size_token1] = ACTIONS(914), + [aux_sym_revoked_host_keys_token1] = ACTIONS(914), + [aux_sym_security_key_provider_token1] = ACTIONS(914), + [aux_sym_send_env_token1] = ACTIONS(914), + [aux_sym_server_alive_count_max_token1] = ACTIONS(914), + [aux_sym_server_alive_interval_token1] = ACTIONS(914), + [aux_sym_session_type_token1] = ACTIONS(914), + [aux_sym_set_env_token1] = ACTIONS(914), + [aux_sym_stdin_null_token1] = ACTIONS(914), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(914), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(914), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(914), + [aux_sym_syslog_facility_token1] = ACTIONS(914), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(914), + [aux_sym_keep_alive_token1] = ACTIONS(914), + [aux_sym_tunnel_token1] = ACTIONS(916), + [aux_sym_tunnel_device_token1] = ACTIONS(914), + [aux_sym_update_host_keys_token1] = ACTIONS(914), + [aux_sym_use_keychain_token1] = ACTIONS(914), + [aux_sym_use_roaming_token1] = ACTIONS(914), + [aux_sym_user_token1] = ACTIONS(916), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(914), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(914), + [aux_sym_visual_host_key_token1] = ACTIONS(914), + [aux_sym_xauth_location_token1] = ACTIONS(914), }, [63] = { - [ts_builtin_sym_end] = ACTIONS(915), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(919), - [aux_sym_match_token1] = ACTIONS(915), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(915), - [aux_sym_address_family_token1] = ACTIONS(915), - [aux_sym_batch_mode_token1] = ACTIONS(915), - [aux_sym_bind_address_token1] = ACTIONS(915), - [aux_sym_bind_interface_token1] = ACTIONS(915), - [aux_sym_canonical_domains_token1] = ACTIONS(915), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(915), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(915), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(915), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(915), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(915), - [aux_sym_certificate_file_token1] = ACTIONS(915), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(915), - [aux_sym_check_host_ip_token1] = ACTIONS(915), - [aux_sym_ciphers_token1] = ACTIONS(915), - [aux_sym_cipher_token1] = ACTIONS(917), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(915), - [aux_sym_compression_token1] = ACTIONS(915), - [aux_sym_connection_attempts_token1] = ACTIONS(915), - [aux_sym_connect_timeout_token1] = ACTIONS(915), - [aux_sym_control_master_token1] = ACTIONS(915), - [aux_sym_control_path_token1] = ACTIONS(915), - [aux_sym_control_persist_token1] = ACTIONS(915), - [aux_sym_dynamic_forward_token1] = ACTIONS(915), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(915), - [aux_sym_escape_char_token1] = ACTIONS(915), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(915), - [aux_sym_fingerprint_hash_token1] = ACTIONS(915), - [aux_sym_fork_after_authentication_token1] = ACTIONS(915), - [aux_sym_forward_agent_token1] = ACTIONS(915), - [aux_sym_forward_x11_token1] = ACTIONS(917), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(915), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(915), - [aux_sym_gateway_ports_token1] = ACTIONS(915), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(915), - [aux_sym_gssapi_authentication_token1] = ACTIONS(915), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(915), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(915), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(915), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(915), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(915), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(915), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(915), - [aux_sym_hash_known_hosts_token1] = ACTIONS(915), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(915), - [aux_sym_hostbased_authentication_token1] = ACTIONS(915), - [aux_sym_host_key_algorithms_token1] = ACTIONS(915), - [aux_sym_host_key_alias_token1] = ACTIONS(915), - [aux_sym_hostname_token1] = ACTIONS(915), - [aux_sym_identities_only_token1] = ACTIONS(915), - [aux_sym_identity_agent_token1] = ACTIONS(915), - [aux_sym_identity_file_token1] = ACTIONS(915), - [aux_sym_ignore_unknown_token1] = ACTIONS(915), - [aux_sym_include_token1] = ACTIONS(915), - [aux_sym_ip_qos_token1] = ACTIONS(915), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(915), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(915), - [aux_sym_kex_algorithms_token1] = ACTIONS(915), - [aux_sym_known_hosts_command_token1] = ACTIONS(915), - [aux_sym_local_command_token1] = ACTIONS(915), - [aux_sym_local_forward_token1] = ACTIONS(915), - [aux_sym_log_level_token1] = ACTIONS(915), - [aux_sym_log_verbose_token1] = ACTIONS(915), - [aux_sym_macs_token1] = ACTIONS(915), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(915), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(915), - [aux_sym_password_authentication_token1] = ACTIONS(915), - [aux_sym_permit_local_command_token1] = ACTIONS(915), - [aux_sym_permit_remote_open_token1] = ACTIONS(915), - [aux_sym_pkcs11_provider_token1] = ACTIONS(915), - [aux_sym_port_token1] = ACTIONS(915), - [aux_sym_preferred_authentications_token1] = ACTIONS(915), - [aux_sym_protocol_token1] = ACTIONS(915), - [aux_sym_proxy_command_token1] = ACTIONS(915), - [aux_sym_proxy_jump_token1] = ACTIONS(915), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(915), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(915), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(915), - [aux_sym_pubkey_authentication_token1] = ACTIONS(915), - [aux_sym_rekey_limit_token1] = ACTIONS(915), - [aux_sym_remote_command_token1] = ACTIONS(915), - [aux_sym_remote_forward_token1] = ACTIONS(915), - [aux_sym_request_tty_token1] = ACTIONS(915), - [aux_sym_required_rsa_size_token1] = ACTIONS(915), - [aux_sym_revoked_host_keys_token1] = ACTIONS(915), - [aux_sym_security_key_provider_token1] = ACTIONS(915), - [aux_sym_send_env_token1] = ACTIONS(915), - [aux_sym_server_alive_count_max_token1] = ACTIONS(915), - [aux_sym_server_alive_interval_token1] = ACTIONS(915), - [aux_sym_session_type_token1] = ACTIONS(915), - [aux_sym_set_env_token1] = ACTIONS(915), - [aux_sym_stdin_null_token1] = ACTIONS(915), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(915), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(915), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(915), - [aux_sym_syslog_facility_token1] = ACTIONS(915), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(915), - [aux_sym_keep_alive_token1] = ACTIONS(915), - [aux_sym_tunnel_token1] = ACTIONS(917), - [aux_sym_tunnel_device_token1] = ACTIONS(915), - [aux_sym_update_host_keys_token1] = ACTIONS(915), - [aux_sym_use_keychain_token1] = ACTIONS(915), - [aux_sym_use_roaming_token1] = ACTIONS(915), - [aux_sym_user_token1] = ACTIONS(917), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(915), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(915), - [aux_sym_visual_host_key_token1] = ACTIONS(915), - [aux_sym_xauth_location_token1] = ACTIONS(915), + [ts_builtin_sym_end] = ACTIONS(920), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(924), + [aux_sym_match_token1] = ACTIONS(920), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(920), + [aux_sym_address_family_token1] = ACTIONS(920), + [aux_sym_batch_mode_token1] = ACTIONS(920), + [aux_sym_bind_address_token1] = ACTIONS(920), + [aux_sym_bind_interface_token1] = ACTIONS(920), + [aux_sym_canonical_domains_token1] = ACTIONS(920), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(920), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(920), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(920), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(920), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(920), + [aux_sym_certificate_file_token1] = ACTIONS(920), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(920), + [aux_sym_check_host_ip_token1] = ACTIONS(920), + [aux_sym_ciphers_token1] = ACTIONS(920), + [aux_sym_cipher_token1] = ACTIONS(922), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(920), + [aux_sym_compression_token1] = ACTIONS(920), + [aux_sym_connection_attempts_token1] = ACTIONS(920), + [aux_sym_connect_timeout_token1] = ACTIONS(920), + [aux_sym_control_master_token1] = ACTIONS(920), + [aux_sym_control_path_token1] = ACTIONS(920), + [aux_sym_control_persist_token1] = ACTIONS(920), + [aux_sym_dynamic_forward_token1] = ACTIONS(920), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(920), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(920), + [aux_sym_escape_char_token1] = ACTIONS(920), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(920), + [aux_sym_fingerprint_hash_token1] = ACTIONS(920), + [aux_sym_fork_after_authentication_token1] = ACTIONS(920), + [aux_sym_forward_agent_token1] = ACTIONS(920), + [aux_sym_forward_x11_token1] = ACTIONS(922), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(920), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(920), + [aux_sym_gateway_ports_token1] = ACTIONS(920), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(920), + [aux_sym_gssapi_authentication_token1] = ACTIONS(920), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(920), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(920), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(920), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(920), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(920), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(920), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(920), + [aux_sym_hash_known_hosts_token1] = ACTIONS(920), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(920), + [aux_sym_hostbased_authentication_token1] = ACTIONS(920), + [aux_sym_host_key_algorithms_token1] = ACTIONS(920), + [aux_sym_host_key_alias_token1] = ACTIONS(920), + [aux_sym_hostname_token1] = ACTIONS(920), + [aux_sym_identities_only_token1] = ACTIONS(920), + [aux_sym_identity_agent_token1] = ACTIONS(920), + [aux_sym_identity_file_token1] = ACTIONS(920), + [aux_sym_ignore_unknown_token1] = ACTIONS(920), + [aux_sym_include_token1] = ACTIONS(920), + [aux_sym_ip_qos_token1] = ACTIONS(920), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(920), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(920), + [aux_sym_kex_algorithms_token1] = ACTIONS(920), + [aux_sym_known_hosts_command_token1] = ACTIONS(920), + [aux_sym_local_command_token1] = ACTIONS(920), + [aux_sym_local_forward_token1] = ACTIONS(920), + [aux_sym_log_level_token1] = ACTIONS(920), + [aux_sym_log_verbose_token1] = ACTIONS(920), + [aux_sym_macs_token1] = ACTIONS(920), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(920), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(920), + [aux_sym_password_authentication_token1] = ACTIONS(920), + [aux_sym_permit_local_command_token1] = ACTIONS(920), + [aux_sym_permit_remote_open_token1] = ACTIONS(920), + [aux_sym_pkcs11_provider_token1] = ACTIONS(920), + [aux_sym_port_token1] = ACTIONS(920), + [aux_sym_preferred_authentications_token1] = ACTIONS(920), + [aux_sym_protocol_token1] = ACTIONS(920), + [aux_sym_proxy_command_token1] = ACTIONS(920), + [aux_sym_proxy_jump_token1] = ACTIONS(920), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(920), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(920), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(920), + [aux_sym_pubkey_authentication_token1] = ACTIONS(920), + [aux_sym_rekey_limit_token1] = ACTIONS(920), + [aux_sym_remote_command_token1] = ACTIONS(920), + [aux_sym_remote_forward_token1] = ACTIONS(920), + [aux_sym_request_tty_token1] = ACTIONS(920), + [aux_sym_required_rsa_size_token1] = ACTIONS(920), + [aux_sym_revoked_host_keys_token1] = ACTIONS(920), + [aux_sym_security_key_provider_token1] = ACTIONS(920), + [aux_sym_send_env_token1] = ACTIONS(920), + [aux_sym_server_alive_count_max_token1] = ACTIONS(920), + [aux_sym_server_alive_interval_token1] = ACTIONS(920), + [aux_sym_session_type_token1] = ACTIONS(920), + [aux_sym_set_env_token1] = ACTIONS(920), + [aux_sym_stdin_null_token1] = ACTIONS(920), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(920), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(920), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(920), + [aux_sym_syslog_facility_token1] = ACTIONS(920), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(920), + [aux_sym_keep_alive_token1] = ACTIONS(920), + [aux_sym_tunnel_token1] = ACTIONS(922), + [aux_sym_tunnel_device_token1] = ACTIONS(920), + [aux_sym_update_host_keys_token1] = ACTIONS(920), + [aux_sym_use_keychain_token1] = ACTIONS(920), + [aux_sym_use_roaming_token1] = ACTIONS(920), + [aux_sym_user_token1] = ACTIONS(922), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(920), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(920), + [aux_sym_visual_host_key_token1] = ACTIONS(920), + [aux_sym_xauth_location_token1] = ACTIONS(920), }, [64] = { - [ts_builtin_sym_end] = ACTIONS(921), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(925), - [aux_sym_match_token1] = ACTIONS(921), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(921), - [aux_sym_address_family_token1] = ACTIONS(921), - [aux_sym_batch_mode_token1] = ACTIONS(921), - [aux_sym_bind_address_token1] = ACTIONS(921), - [aux_sym_bind_interface_token1] = ACTIONS(921), - [aux_sym_canonical_domains_token1] = ACTIONS(921), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(921), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(921), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(921), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(921), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(921), - [aux_sym_certificate_file_token1] = ACTIONS(921), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(921), - [aux_sym_check_host_ip_token1] = ACTIONS(921), - [aux_sym_ciphers_token1] = ACTIONS(921), - [aux_sym_cipher_token1] = ACTIONS(923), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(921), - [aux_sym_compression_token1] = ACTIONS(921), - [aux_sym_connection_attempts_token1] = ACTIONS(921), - [aux_sym_connect_timeout_token1] = ACTIONS(921), - [aux_sym_control_master_token1] = ACTIONS(921), - [aux_sym_control_path_token1] = ACTIONS(921), - [aux_sym_control_persist_token1] = ACTIONS(921), - [aux_sym_dynamic_forward_token1] = ACTIONS(921), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(921), - [aux_sym_escape_char_token1] = ACTIONS(921), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(921), - [aux_sym_fingerprint_hash_token1] = ACTIONS(921), - [aux_sym_fork_after_authentication_token1] = ACTIONS(921), - [aux_sym_forward_agent_token1] = ACTIONS(921), - [aux_sym_forward_x11_token1] = ACTIONS(923), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(921), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(921), - [aux_sym_gateway_ports_token1] = ACTIONS(921), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(921), - [aux_sym_gssapi_authentication_token1] = ACTIONS(921), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(921), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(921), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(921), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(921), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(921), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(921), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(921), - [aux_sym_hash_known_hosts_token1] = ACTIONS(921), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(921), - [aux_sym_hostbased_authentication_token1] = ACTIONS(921), - [aux_sym_host_key_algorithms_token1] = ACTIONS(921), - [aux_sym_host_key_alias_token1] = ACTIONS(921), - [aux_sym_hostname_token1] = ACTIONS(921), - [aux_sym_identities_only_token1] = ACTIONS(921), - [aux_sym_identity_agent_token1] = ACTIONS(921), - [aux_sym_identity_file_token1] = ACTIONS(921), - [aux_sym_ignore_unknown_token1] = ACTIONS(921), - [aux_sym_include_token1] = ACTIONS(921), - [aux_sym_ip_qos_token1] = ACTIONS(921), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(921), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(921), - [aux_sym_kex_algorithms_token1] = ACTIONS(921), - [aux_sym_known_hosts_command_token1] = ACTIONS(921), - [aux_sym_local_command_token1] = ACTIONS(921), - [aux_sym_local_forward_token1] = ACTIONS(921), - [aux_sym_log_level_token1] = ACTIONS(921), - [aux_sym_log_verbose_token1] = ACTIONS(921), - [aux_sym_macs_token1] = ACTIONS(921), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(921), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(921), - [aux_sym_password_authentication_token1] = ACTIONS(921), - [aux_sym_permit_local_command_token1] = ACTIONS(921), - [aux_sym_permit_remote_open_token1] = ACTIONS(921), - [aux_sym_pkcs11_provider_token1] = ACTIONS(921), - [aux_sym_port_token1] = ACTIONS(921), - [aux_sym_preferred_authentications_token1] = ACTIONS(921), - [aux_sym_protocol_token1] = ACTIONS(921), - [aux_sym_proxy_command_token1] = ACTIONS(921), - [aux_sym_proxy_jump_token1] = ACTIONS(921), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(921), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(921), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(921), - [aux_sym_pubkey_authentication_token1] = ACTIONS(921), - [aux_sym_rekey_limit_token1] = ACTIONS(921), - [aux_sym_remote_command_token1] = ACTIONS(921), - [aux_sym_remote_forward_token1] = ACTIONS(921), - [aux_sym_request_tty_token1] = ACTIONS(921), - [aux_sym_required_rsa_size_token1] = ACTIONS(921), - [aux_sym_revoked_host_keys_token1] = ACTIONS(921), - [aux_sym_security_key_provider_token1] = ACTIONS(921), - [aux_sym_send_env_token1] = ACTIONS(921), - [aux_sym_server_alive_count_max_token1] = ACTIONS(921), - [aux_sym_server_alive_interval_token1] = ACTIONS(921), - [aux_sym_session_type_token1] = ACTIONS(921), - [aux_sym_set_env_token1] = ACTIONS(921), - [aux_sym_stdin_null_token1] = ACTIONS(921), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(921), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(921), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(921), - [aux_sym_syslog_facility_token1] = ACTIONS(921), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(921), - [aux_sym_keep_alive_token1] = ACTIONS(921), - [aux_sym_tunnel_token1] = ACTIONS(923), - [aux_sym_tunnel_device_token1] = ACTIONS(921), - [aux_sym_update_host_keys_token1] = ACTIONS(921), - [aux_sym_use_keychain_token1] = ACTIONS(921), - [aux_sym_use_roaming_token1] = ACTIONS(921), - [aux_sym_user_token1] = ACTIONS(923), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(921), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(921), - [aux_sym_visual_host_key_token1] = ACTIONS(921), - [aux_sym_xauth_location_token1] = ACTIONS(921), + [ts_builtin_sym_end] = ACTIONS(926), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(930), + [aux_sym_match_token1] = ACTIONS(926), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(926), + [aux_sym_address_family_token1] = ACTIONS(926), + [aux_sym_batch_mode_token1] = ACTIONS(926), + [aux_sym_bind_address_token1] = ACTIONS(926), + [aux_sym_bind_interface_token1] = ACTIONS(926), + [aux_sym_canonical_domains_token1] = ACTIONS(926), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(926), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(926), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(926), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(926), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(926), + [aux_sym_certificate_file_token1] = ACTIONS(926), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(926), + [aux_sym_check_host_ip_token1] = ACTIONS(926), + [aux_sym_ciphers_token1] = ACTIONS(926), + [aux_sym_cipher_token1] = ACTIONS(928), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(926), + [aux_sym_compression_token1] = ACTIONS(926), + [aux_sym_connection_attempts_token1] = ACTIONS(926), + [aux_sym_connect_timeout_token1] = ACTIONS(926), + [aux_sym_control_master_token1] = ACTIONS(926), + [aux_sym_control_path_token1] = ACTIONS(926), + [aux_sym_control_persist_token1] = ACTIONS(926), + [aux_sym_dynamic_forward_token1] = ACTIONS(926), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(926), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(926), + [aux_sym_escape_char_token1] = ACTIONS(926), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(926), + [aux_sym_fingerprint_hash_token1] = ACTIONS(926), + [aux_sym_fork_after_authentication_token1] = ACTIONS(926), + [aux_sym_forward_agent_token1] = ACTIONS(926), + [aux_sym_forward_x11_token1] = ACTIONS(928), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(926), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(926), + [aux_sym_gateway_ports_token1] = ACTIONS(926), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(926), + [aux_sym_gssapi_authentication_token1] = ACTIONS(926), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(926), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(926), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(926), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(926), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(926), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(926), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(926), + [aux_sym_hash_known_hosts_token1] = ACTIONS(926), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(926), + [aux_sym_hostbased_authentication_token1] = ACTIONS(926), + [aux_sym_host_key_algorithms_token1] = ACTIONS(926), + [aux_sym_host_key_alias_token1] = ACTIONS(926), + [aux_sym_hostname_token1] = ACTIONS(926), + [aux_sym_identities_only_token1] = ACTIONS(926), + [aux_sym_identity_agent_token1] = ACTIONS(926), + [aux_sym_identity_file_token1] = ACTIONS(926), + [aux_sym_ignore_unknown_token1] = ACTIONS(926), + [aux_sym_include_token1] = ACTIONS(926), + [aux_sym_ip_qos_token1] = ACTIONS(926), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(926), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(926), + [aux_sym_kex_algorithms_token1] = ACTIONS(926), + [aux_sym_known_hosts_command_token1] = ACTIONS(926), + [aux_sym_local_command_token1] = ACTIONS(926), + [aux_sym_local_forward_token1] = ACTIONS(926), + [aux_sym_log_level_token1] = ACTIONS(926), + [aux_sym_log_verbose_token1] = ACTIONS(926), + [aux_sym_macs_token1] = ACTIONS(926), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(926), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(926), + [aux_sym_password_authentication_token1] = ACTIONS(926), + [aux_sym_permit_local_command_token1] = ACTIONS(926), + [aux_sym_permit_remote_open_token1] = ACTIONS(926), + [aux_sym_pkcs11_provider_token1] = ACTIONS(926), + [aux_sym_port_token1] = ACTIONS(926), + [aux_sym_preferred_authentications_token1] = ACTIONS(926), + [aux_sym_protocol_token1] = ACTIONS(926), + [aux_sym_proxy_command_token1] = ACTIONS(926), + [aux_sym_proxy_jump_token1] = ACTIONS(926), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(926), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(926), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(926), + [aux_sym_pubkey_authentication_token1] = ACTIONS(926), + [aux_sym_rekey_limit_token1] = ACTIONS(926), + [aux_sym_remote_command_token1] = ACTIONS(926), + [aux_sym_remote_forward_token1] = ACTIONS(926), + [aux_sym_request_tty_token1] = ACTIONS(926), + [aux_sym_required_rsa_size_token1] = ACTIONS(926), + [aux_sym_revoked_host_keys_token1] = ACTIONS(926), + [aux_sym_security_key_provider_token1] = ACTIONS(926), + [aux_sym_send_env_token1] = ACTIONS(926), + [aux_sym_server_alive_count_max_token1] = ACTIONS(926), + [aux_sym_server_alive_interval_token1] = ACTIONS(926), + [aux_sym_session_type_token1] = ACTIONS(926), + [aux_sym_set_env_token1] = ACTIONS(926), + [aux_sym_stdin_null_token1] = ACTIONS(926), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(926), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(926), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(926), + [aux_sym_syslog_facility_token1] = ACTIONS(926), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(926), + [aux_sym_keep_alive_token1] = ACTIONS(926), + [aux_sym_tunnel_token1] = ACTIONS(928), + [aux_sym_tunnel_device_token1] = ACTIONS(926), + [aux_sym_update_host_keys_token1] = ACTIONS(926), + [aux_sym_use_keychain_token1] = ACTIONS(926), + [aux_sym_use_roaming_token1] = ACTIONS(926), + [aux_sym_user_token1] = ACTIONS(928), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(926), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(926), + [aux_sym_visual_host_key_token1] = ACTIONS(926), + [aux_sym_xauth_location_token1] = ACTIONS(926), }, [65] = { - [ts_builtin_sym_end] = ACTIONS(927), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(929), - [anon_sym_DQUOTE] = ACTIONS(931), - [aux_sym_match_token1] = ACTIONS(927), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(927), - [aux_sym_address_family_token1] = ACTIONS(927), - [aux_sym_batch_mode_token1] = ACTIONS(927), - [aux_sym_bind_address_token1] = ACTIONS(927), - [aux_sym_bind_interface_token1] = ACTIONS(927), - [aux_sym_canonical_domains_token1] = ACTIONS(927), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(927), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(927), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(927), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(927), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(927), - [aux_sym_certificate_file_token1] = ACTIONS(927), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(927), - [aux_sym_check_host_ip_token1] = ACTIONS(927), - [aux_sym_ciphers_token1] = ACTIONS(927), - [aux_sym_cipher_token1] = ACTIONS(929), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(927), - [aux_sym_compression_token1] = ACTIONS(927), - [aux_sym_connection_attempts_token1] = ACTIONS(927), - [aux_sym_connect_timeout_token1] = ACTIONS(927), - [aux_sym_control_master_token1] = ACTIONS(927), - [aux_sym_control_path_token1] = ACTIONS(927), - [aux_sym_control_persist_token1] = ACTIONS(927), - [aux_sym_dynamic_forward_token1] = ACTIONS(927), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(927), - [aux_sym_escape_char_token1] = ACTIONS(927), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(927), - [aux_sym_fingerprint_hash_token1] = ACTIONS(927), - [aux_sym_fork_after_authentication_token1] = ACTIONS(927), - [aux_sym_forward_agent_token1] = ACTIONS(927), - [aux_sym_forward_x11_token1] = ACTIONS(929), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(927), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(927), - [aux_sym_gateway_ports_token1] = ACTIONS(927), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(927), - [aux_sym_gssapi_authentication_token1] = ACTIONS(927), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(927), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(927), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(927), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(927), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(927), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(927), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(927), - [aux_sym_hash_known_hosts_token1] = ACTIONS(927), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(927), - [aux_sym_hostbased_authentication_token1] = ACTIONS(927), - [aux_sym_host_key_algorithms_token1] = ACTIONS(927), - [aux_sym_host_key_alias_token1] = ACTIONS(927), - [aux_sym_hostname_token1] = ACTIONS(927), - [aux_sym_identities_only_token1] = ACTIONS(927), - [aux_sym_identity_agent_token1] = ACTIONS(927), - [aux_sym_identity_file_token1] = ACTIONS(927), - [aux_sym_ignore_unknown_token1] = ACTIONS(927), - [aux_sym_include_token1] = ACTIONS(927), - [aux_sym_ip_qos_token1] = ACTIONS(927), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(927), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(927), - [aux_sym_kex_algorithms_token1] = ACTIONS(927), - [aux_sym_known_hosts_command_token1] = ACTIONS(927), - [aux_sym_local_command_token1] = ACTIONS(927), - [aux_sym_local_forward_token1] = ACTIONS(927), - [aux_sym_log_level_token1] = ACTIONS(927), - [aux_sym_log_verbose_token1] = ACTIONS(927), - [aux_sym_macs_token1] = ACTIONS(927), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(927), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(927), - [aux_sym_password_authentication_token1] = ACTIONS(927), - [aux_sym_permit_local_command_token1] = ACTIONS(927), - [aux_sym_permit_remote_open_token1] = ACTIONS(927), - [aux_sym_pkcs11_provider_token1] = ACTIONS(927), - [aux_sym_port_token1] = ACTIONS(927), - [aux_sym_preferred_authentications_token1] = ACTIONS(927), - [aux_sym_protocol_token1] = ACTIONS(927), - [aux_sym_proxy_command_token1] = ACTIONS(927), - [aux_sym_proxy_jump_token1] = ACTIONS(927), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(927), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(927), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(927), - [aux_sym_pubkey_authentication_token1] = ACTIONS(927), - [aux_sym_rekey_limit_token1] = ACTIONS(927), - [aux_sym_remote_command_token1] = ACTIONS(927), - [aux_sym_remote_forward_token1] = ACTIONS(927), - [aux_sym_request_tty_token1] = ACTIONS(927), - [aux_sym_required_rsa_size_token1] = ACTIONS(927), - [aux_sym_revoked_host_keys_token1] = ACTIONS(927), - [aux_sym_security_key_provider_token1] = ACTIONS(927), - [aux_sym_send_env_token1] = ACTIONS(927), - [aux_sym_server_alive_count_max_token1] = ACTIONS(927), - [aux_sym_server_alive_interval_token1] = ACTIONS(927), - [aux_sym_session_type_token1] = ACTIONS(927), - [aux_sym_set_env_token1] = ACTIONS(927), - [aux_sym_stdin_null_token1] = ACTIONS(927), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(927), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(927), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(927), - [aux_sym_syslog_facility_token1] = ACTIONS(927), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(927), - [aux_sym_keep_alive_token1] = ACTIONS(927), - [aux_sym_tunnel_token1] = ACTIONS(929), - [aux_sym_tunnel_device_token1] = ACTIONS(927), - [aux_sym_update_host_keys_token1] = ACTIONS(927), - [aux_sym_use_keychain_token1] = ACTIONS(927), - [aux_sym_use_roaming_token1] = ACTIONS(927), - [aux_sym_user_token1] = ACTIONS(929), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(927), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(927), - [aux_sym_visual_host_key_token1] = ACTIONS(927), - [aux_sym_xauth_location_token1] = ACTIONS(927), + [ts_builtin_sym_end] = ACTIONS(932), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(936), + [aux_sym_match_token1] = ACTIONS(932), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(932), + [aux_sym_address_family_token1] = ACTIONS(932), + [aux_sym_batch_mode_token1] = ACTIONS(932), + [aux_sym_bind_address_token1] = ACTIONS(932), + [aux_sym_bind_interface_token1] = ACTIONS(932), + [aux_sym_canonical_domains_token1] = ACTIONS(932), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(932), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(932), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(932), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(932), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(932), + [aux_sym_certificate_file_token1] = ACTIONS(932), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(932), + [aux_sym_check_host_ip_token1] = ACTIONS(932), + [aux_sym_ciphers_token1] = ACTIONS(932), + [aux_sym_cipher_token1] = ACTIONS(934), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(932), + [aux_sym_compression_token1] = ACTIONS(932), + [aux_sym_connection_attempts_token1] = ACTIONS(932), + [aux_sym_connect_timeout_token1] = ACTIONS(932), + [aux_sym_control_master_token1] = ACTIONS(932), + [aux_sym_control_path_token1] = ACTIONS(932), + [aux_sym_control_persist_token1] = ACTIONS(932), + [aux_sym_dynamic_forward_token1] = ACTIONS(932), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(932), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(932), + [aux_sym_escape_char_token1] = ACTIONS(932), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(932), + [aux_sym_fingerprint_hash_token1] = ACTIONS(932), + [aux_sym_fork_after_authentication_token1] = ACTIONS(932), + [aux_sym_forward_agent_token1] = ACTIONS(932), + [aux_sym_forward_x11_token1] = ACTIONS(934), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(932), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(932), + [aux_sym_gateway_ports_token1] = ACTIONS(932), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(932), + [aux_sym_gssapi_authentication_token1] = ACTIONS(932), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(932), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(932), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(932), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(932), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(932), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(932), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(932), + [aux_sym_hash_known_hosts_token1] = ACTIONS(932), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(932), + [aux_sym_hostbased_authentication_token1] = ACTIONS(932), + [aux_sym_host_key_algorithms_token1] = ACTIONS(932), + [aux_sym_host_key_alias_token1] = ACTIONS(932), + [aux_sym_hostname_token1] = ACTIONS(932), + [aux_sym_identities_only_token1] = ACTIONS(932), + [aux_sym_identity_agent_token1] = ACTIONS(932), + [aux_sym_identity_file_token1] = ACTIONS(932), + [aux_sym_ignore_unknown_token1] = ACTIONS(932), + [aux_sym_include_token1] = ACTIONS(932), + [aux_sym_ip_qos_token1] = ACTIONS(932), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(932), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(932), + [aux_sym_kex_algorithms_token1] = ACTIONS(932), + [aux_sym_known_hosts_command_token1] = ACTIONS(932), + [aux_sym_local_command_token1] = ACTIONS(932), + [aux_sym_local_forward_token1] = ACTIONS(932), + [aux_sym_log_level_token1] = ACTIONS(932), + [aux_sym_log_verbose_token1] = ACTIONS(932), + [aux_sym_macs_token1] = ACTIONS(932), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(932), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(932), + [aux_sym_password_authentication_token1] = ACTIONS(932), + [aux_sym_permit_local_command_token1] = ACTIONS(932), + [aux_sym_permit_remote_open_token1] = ACTIONS(932), + [aux_sym_pkcs11_provider_token1] = ACTIONS(932), + [aux_sym_port_token1] = ACTIONS(932), + [aux_sym_preferred_authentications_token1] = ACTIONS(932), + [aux_sym_protocol_token1] = ACTIONS(932), + [aux_sym_proxy_command_token1] = ACTIONS(932), + [aux_sym_proxy_jump_token1] = ACTIONS(932), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(932), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(932), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(932), + [aux_sym_pubkey_authentication_token1] = ACTIONS(932), + [aux_sym_rekey_limit_token1] = ACTIONS(932), + [aux_sym_remote_command_token1] = ACTIONS(932), + [aux_sym_remote_forward_token1] = ACTIONS(932), + [aux_sym_request_tty_token1] = ACTIONS(932), + [aux_sym_required_rsa_size_token1] = ACTIONS(932), + [aux_sym_revoked_host_keys_token1] = ACTIONS(932), + [aux_sym_security_key_provider_token1] = ACTIONS(932), + [aux_sym_send_env_token1] = ACTIONS(932), + [aux_sym_server_alive_count_max_token1] = ACTIONS(932), + [aux_sym_server_alive_interval_token1] = ACTIONS(932), + [aux_sym_session_type_token1] = ACTIONS(932), + [aux_sym_set_env_token1] = ACTIONS(932), + [aux_sym_stdin_null_token1] = ACTIONS(932), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(932), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(932), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(932), + [aux_sym_syslog_facility_token1] = ACTIONS(932), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(932), + [aux_sym_keep_alive_token1] = ACTIONS(932), + [aux_sym_tunnel_token1] = ACTIONS(934), + [aux_sym_tunnel_device_token1] = ACTIONS(932), + [aux_sym_update_host_keys_token1] = ACTIONS(932), + [aux_sym_use_keychain_token1] = ACTIONS(932), + [aux_sym_use_roaming_token1] = ACTIONS(932), + [aux_sym_user_token1] = ACTIONS(934), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(932), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(932), + [aux_sym_visual_host_key_token1] = ACTIONS(932), + [aux_sym_xauth_location_token1] = ACTIONS(932), }, [66] = { - [ts_builtin_sym_end] = ACTIONS(933), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(937), - [aux_sym_match_token1] = ACTIONS(933), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(933), - [aux_sym_address_family_token1] = ACTIONS(933), - [aux_sym_batch_mode_token1] = ACTIONS(933), - [aux_sym_bind_address_token1] = ACTIONS(933), - [aux_sym_bind_interface_token1] = ACTIONS(933), - [aux_sym_canonical_domains_token1] = ACTIONS(933), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(933), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(933), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(933), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(933), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(933), - [aux_sym_certificate_file_token1] = ACTIONS(933), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(933), - [aux_sym_check_host_ip_token1] = ACTIONS(933), - [aux_sym_ciphers_token1] = ACTIONS(933), - [aux_sym_cipher_token1] = ACTIONS(935), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(933), - [aux_sym_compression_token1] = ACTIONS(933), - [aux_sym_connection_attempts_token1] = ACTIONS(933), - [aux_sym_connect_timeout_token1] = ACTIONS(933), - [aux_sym_control_master_token1] = ACTIONS(933), - [aux_sym_control_path_token1] = ACTIONS(933), - [aux_sym_control_persist_token1] = ACTIONS(933), - [aux_sym_dynamic_forward_token1] = ACTIONS(933), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(933), - [aux_sym_escape_char_token1] = ACTIONS(933), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(933), - [aux_sym_fingerprint_hash_token1] = ACTIONS(933), - [aux_sym_fork_after_authentication_token1] = ACTIONS(933), - [aux_sym_forward_agent_token1] = ACTIONS(933), - [aux_sym_forward_x11_token1] = ACTIONS(935), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(933), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(933), - [aux_sym_gateway_ports_token1] = ACTIONS(933), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(933), - [aux_sym_gssapi_authentication_token1] = ACTIONS(933), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(933), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(933), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(933), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(933), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(933), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(933), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(933), - [aux_sym_hash_known_hosts_token1] = ACTIONS(933), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(933), - [aux_sym_hostbased_authentication_token1] = ACTIONS(933), - [aux_sym_host_key_algorithms_token1] = ACTIONS(933), - [aux_sym_host_key_alias_token1] = ACTIONS(933), - [aux_sym_hostname_token1] = ACTIONS(933), - [aux_sym_identities_only_token1] = ACTIONS(933), - [aux_sym_identity_agent_token1] = ACTIONS(933), - [aux_sym_identity_file_token1] = ACTIONS(933), - [aux_sym_ignore_unknown_token1] = ACTIONS(933), - [aux_sym_include_token1] = ACTIONS(933), - [aux_sym_ip_qos_token1] = ACTIONS(933), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(933), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(933), - [aux_sym_kex_algorithms_token1] = ACTIONS(933), - [aux_sym_known_hosts_command_token1] = ACTIONS(933), - [aux_sym_local_command_token1] = ACTIONS(933), - [aux_sym_local_forward_token1] = ACTIONS(933), - [aux_sym_log_level_token1] = ACTIONS(933), - [aux_sym_log_verbose_token1] = ACTIONS(933), - [aux_sym_macs_token1] = ACTIONS(933), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(933), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(933), - [aux_sym_password_authentication_token1] = ACTIONS(933), - [aux_sym_permit_local_command_token1] = ACTIONS(933), - [aux_sym_permit_remote_open_token1] = ACTIONS(933), - [aux_sym_pkcs11_provider_token1] = ACTIONS(933), - [aux_sym_port_token1] = ACTIONS(933), - [aux_sym_preferred_authentications_token1] = ACTIONS(933), - [aux_sym_protocol_token1] = ACTIONS(933), - [aux_sym_proxy_command_token1] = ACTIONS(933), - [aux_sym_proxy_jump_token1] = ACTIONS(933), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(933), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(933), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(933), - [aux_sym_pubkey_authentication_token1] = ACTIONS(933), - [aux_sym_rekey_limit_token1] = ACTIONS(933), - [aux_sym_remote_command_token1] = ACTIONS(933), - [aux_sym_remote_forward_token1] = ACTIONS(933), - [aux_sym_request_tty_token1] = ACTIONS(933), - [aux_sym_required_rsa_size_token1] = ACTIONS(933), - [aux_sym_revoked_host_keys_token1] = ACTIONS(933), - [aux_sym_security_key_provider_token1] = ACTIONS(933), - [aux_sym_send_env_token1] = ACTIONS(933), - [aux_sym_server_alive_count_max_token1] = ACTIONS(933), - [aux_sym_server_alive_interval_token1] = ACTIONS(933), - [aux_sym_session_type_token1] = ACTIONS(933), - [aux_sym_set_env_token1] = ACTIONS(933), - [aux_sym_stdin_null_token1] = ACTIONS(933), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(933), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(933), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(933), - [aux_sym_syslog_facility_token1] = ACTIONS(933), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(933), - [aux_sym_keep_alive_token1] = ACTIONS(933), - [aux_sym_tunnel_token1] = ACTIONS(935), - [aux_sym_tunnel_device_token1] = ACTIONS(933), - [aux_sym_update_host_keys_token1] = ACTIONS(933), - [aux_sym_use_keychain_token1] = ACTIONS(933), - [aux_sym_use_roaming_token1] = ACTIONS(933), - [aux_sym_user_token1] = ACTIONS(935), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(933), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(933), - [aux_sym_visual_host_key_token1] = ACTIONS(933), - [aux_sym_xauth_location_token1] = ACTIONS(933), + [ts_builtin_sym_end] = ACTIONS(938), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(942), + [aux_sym_match_token1] = ACTIONS(938), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(938), + [aux_sym_address_family_token1] = ACTIONS(938), + [aux_sym_batch_mode_token1] = ACTIONS(938), + [aux_sym_bind_address_token1] = ACTIONS(938), + [aux_sym_bind_interface_token1] = ACTIONS(938), + [aux_sym_canonical_domains_token1] = ACTIONS(938), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(938), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(938), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(938), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(938), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(938), + [aux_sym_certificate_file_token1] = ACTIONS(938), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(938), + [aux_sym_check_host_ip_token1] = ACTIONS(938), + [aux_sym_ciphers_token1] = ACTIONS(938), + [aux_sym_cipher_token1] = ACTIONS(940), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(938), + [aux_sym_compression_token1] = ACTIONS(938), + [aux_sym_connection_attempts_token1] = ACTIONS(938), + [aux_sym_connect_timeout_token1] = ACTIONS(938), + [aux_sym_control_master_token1] = ACTIONS(938), + [aux_sym_control_path_token1] = ACTIONS(938), + [aux_sym_control_persist_token1] = ACTIONS(938), + [aux_sym_dynamic_forward_token1] = ACTIONS(938), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(938), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(938), + [aux_sym_escape_char_token1] = ACTIONS(938), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(938), + [aux_sym_fingerprint_hash_token1] = ACTIONS(938), + [aux_sym_fork_after_authentication_token1] = ACTIONS(938), + [aux_sym_forward_agent_token1] = ACTIONS(938), + [aux_sym_forward_x11_token1] = ACTIONS(940), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(938), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(938), + [aux_sym_gateway_ports_token1] = ACTIONS(938), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(938), + [aux_sym_gssapi_authentication_token1] = ACTIONS(938), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(938), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(938), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(938), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(938), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(938), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(938), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(938), + [aux_sym_hash_known_hosts_token1] = ACTIONS(938), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(938), + [aux_sym_hostbased_authentication_token1] = ACTIONS(938), + [aux_sym_host_key_algorithms_token1] = ACTIONS(938), + [aux_sym_host_key_alias_token1] = ACTIONS(938), + [aux_sym_hostname_token1] = ACTIONS(938), + [aux_sym_identities_only_token1] = ACTIONS(938), + [aux_sym_identity_agent_token1] = ACTIONS(938), + [aux_sym_identity_file_token1] = ACTIONS(938), + [aux_sym_ignore_unknown_token1] = ACTIONS(938), + [aux_sym_include_token1] = ACTIONS(938), + [aux_sym_ip_qos_token1] = ACTIONS(938), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(938), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(938), + [aux_sym_kex_algorithms_token1] = ACTIONS(938), + [aux_sym_known_hosts_command_token1] = ACTIONS(938), + [aux_sym_local_command_token1] = ACTIONS(938), + [aux_sym_local_forward_token1] = ACTIONS(938), + [aux_sym_log_level_token1] = ACTIONS(938), + [aux_sym_log_verbose_token1] = ACTIONS(938), + [aux_sym_macs_token1] = ACTIONS(938), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(938), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(938), + [aux_sym_password_authentication_token1] = ACTIONS(938), + [aux_sym_permit_local_command_token1] = ACTIONS(938), + [aux_sym_permit_remote_open_token1] = ACTIONS(938), + [aux_sym_pkcs11_provider_token1] = ACTIONS(938), + [aux_sym_port_token1] = ACTIONS(938), + [aux_sym_preferred_authentications_token1] = ACTIONS(938), + [aux_sym_protocol_token1] = ACTIONS(938), + [aux_sym_proxy_command_token1] = ACTIONS(938), + [aux_sym_proxy_jump_token1] = ACTIONS(938), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(938), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(938), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(938), + [aux_sym_pubkey_authentication_token1] = ACTIONS(938), + [aux_sym_rekey_limit_token1] = ACTIONS(938), + [aux_sym_remote_command_token1] = ACTIONS(938), + [aux_sym_remote_forward_token1] = ACTIONS(938), + [aux_sym_request_tty_token1] = ACTIONS(938), + [aux_sym_required_rsa_size_token1] = ACTIONS(938), + [aux_sym_revoked_host_keys_token1] = ACTIONS(938), + [aux_sym_security_key_provider_token1] = ACTIONS(938), + [aux_sym_send_env_token1] = ACTIONS(938), + [aux_sym_server_alive_count_max_token1] = ACTIONS(938), + [aux_sym_server_alive_interval_token1] = ACTIONS(938), + [aux_sym_session_type_token1] = ACTIONS(938), + [aux_sym_set_env_token1] = ACTIONS(938), + [aux_sym_stdin_null_token1] = ACTIONS(938), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(938), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(938), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(938), + [aux_sym_syslog_facility_token1] = ACTIONS(938), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(938), + [aux_sym_keep_alive_token1] = ACTIONS(938), + [aux_sym_tunnel_token1] = ACTIONS(940), + [aux_sym_tunnel_device_token1] = ACTIONS(938), + [aux_sym_update_host_keys_token1] = ACTIONS(938), + [aux_sym_use_keychain_token1] = ACTIONS(938), + [aux_sym_use_roaming_token1] = ACTIONS(938), + [aux_sym_user_token1] = ACTIONS(940), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(938), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(938), + [aux_sym_visual_host_key_token1] = ACTIONS(938), + [aux_sym_xauth_location_token1] = ACTIONS(938), }, [67] = { - [ts_builtin_sym_end] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(941), - [anon_sym_DQUOTE] = ACTIONS(943), - [aux_sym_match_token1] = ACTIONS(939), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(939), - [aux_sym_address_family_token1] = ACTIONS(939), - [aux_sym_batch_mode_token1] = ACTIONS(939), - [aux_sym_bind_address_token1] = ACTIONS(939), - [aux_sym_bind_interface_token1] = ACTIONS(939), - [aux_sym_canonical_domains_token1] = ACTIONS(939), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(939), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(939), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(939), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(939), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(939), - [aux_sym_certificate_file_token1] = ACTIONS(939), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(939), - [aux_sym_check_host_ip_token1] = ACTIONS(939), - [aux_sym_ciphers_token1] = ACTIONS(939), - [aux_sym_cipher_token1] = ACTIONS(941), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(939), - [aux_sym_compression_token1] = ACTIONS(939), - [aux_sym_connection_attempts_token1] = ACTIONS(939), - [aux_sym_connect_timeout_token1] = ACTIONS(939), - [aux_sym_control_master_token1] = ACTIONS(939), - [aux_sym_control_path_token1] = ACTIONS(939), - [aux_sym_control_persist_token1] = ACTIONS(939), - [aux_sym_dynamic_forward_token1] = ACTIONS(939), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(939), - [aux_sym_escape_char_token1] = ACTIONS(939), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(939), - [aux_sym_fingerprint_hash_token1] = ACTIONS(939), - [aux_sym_fork_after_authentication_token1] = ACTIONS(939), - [aux_sym_forward_agent_token1] = ACTIONS(939), - [aux_sym_forward_x11_token1] = ACTIONS(941), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(939), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(939), - [aux_sym_gateway_ports_token1] = ACTIONS(939), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(939), - [aux_sym_gssapi_authentication_token1] = ACTIONS(939), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(939), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(939), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(939), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(939), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(939), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(939), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(939), - [aux_sym_hash_known_hosts_token1] = ACTIONS(939), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(939), - [aux_sym_hostbased_authentication_token1] = ACTIONS(939), - [aux_sym_host_key_algorithms_token1] = ACTIONS(939), - [aux_sym_host_key_alias_token1] = ACTIONS(939), - [aux_sym_hostname_token1] = ACTIONS(939), - [aux_sym_identities_only_token1] = ACTIONS(939), - [aux_sym_identity_agent_token1] = ACTIONS(939), - [aux_sym_identity_file_token1] = ACTIONS(939), - [aux_sym_ignore_unknown_token1] = ACTIONS(939), - [aux_sym_include_token1] = ACTIONS(939), - [aux_sym_ip_qos_token1] = ACTIONS(939), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(939), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(939), - [aux_sym_kex_algorithms_token1] = ACTIONS(939), - [aux_sym_known_hosts_command_token1] = ACTIONS(939), - [aux_sym_local_command_token1] = ACTIONS(939), - [aux_sym_local_forward_token1] = ACTIONS(939), - [aux_sym_log_level_token1] = ACTIONS(939), - [aux_sym_log_verbose_token1] = ACTIONS(939), - [aux_sym_macs_token1] = ACTIONS(939), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(939), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(939), - [aux_sym_password_authentication_token1] = ACTIONS(939), - [aux_sym_permit_local_command_token1] = ACTIONS(939), - [aux_sym_permit_remote_open_token1] = ACTIONS(939), - [aux_sym_pkcs11_provider_token1] = ACTIONS(939), - [aux_sym_port_token1] = ACTIONS(939), - [aux_sym_preferred_authentications_token1] = ACTIONS(939), - [aux_sym_protocol_token1] = ACTIONS(939), - [aux_sym_proxy_command_token1] = ACTIONS(939), - [aux_sym_proxy_jump_token1] = ACTIONS(939), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(939), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(939), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(939), - [aux_sym_pubkey_authentication_token1] = ACTIONS(939), - [aux_sym_rekey_limit_token1] = ACTIONS(939), - [aux_sym_remote_command_token1] = ACTIONS(939), - [aux_sym_remote_forward_token1] = ACTIONS(939), - [aux_sym_request_tty_token1] = ACTIONS(939), - [aux_sym_required_rsa_size_token1] = ACTIONS(939), - [aux_sym_revoked_host_keys_token1] = ACTIONS(939), - [aux_sym_security_key_provider_token1] = ACTIONS(939), - [aux_sym_send_env_token1] = ACTIONS(939), - [aux_sym_server_alive_count_max_token1] = ACTIONS(939), - [aux_sym_server_alive_interval_token1] = ACTIONS(939), - [aux_sym_session_type_token1] = ACTIONS(939), - [aux_sym_set_env_token1] = ACTIONS(939), - [aux_sym_stdin_null_token1] = ACTIONS(939), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(939), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(939), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(939), - [aux_sym_syslog_facility_token1] = ACTIONS(939), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(939), - [aux_sym_keep_alive_token1] = ACTIONS(939), - [aux_sym_tunnel_token1] = ACTIONS(941), - [aux_sym_tunnel_device_token1] = ACTIONS(939), - [aux_sym_update_host_keys_token1] = ACTIONS(939), - [aux_sym_use_keychain_token1] = ACTIONS(939), - [aux_sym_use_roaming_token1] = ACTIONS(939), - [aux_sym_user_token1] = ACTIONS(941), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(939), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(939), - [aux_sym_visual_host_key_token1] = ACTIONS(939), - [aux_sym_xauth_location_token1] = ACTIONS(939), + [ts_builtin_sym_end] = ACTIONS(944), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(948), + [aux_sym_match_token1] = ACTIONS(944), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(944), + [aux_sym_address_family_token1] = ACTIONS(944), + [aux_sym_batch_mode_token1] = ACTIONS(944), + [aux_sym_bind_address_token1] = ACTIONS(944), + [aux_sym_bind_interface_token1] = ACTIONS(944), + [aux_sym_canonical_domains_token1] = ACTIONS(944), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(944), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(944), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(944), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(944), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(944), + [aux_sym_certificate_file_token1] = ACTIONS(944), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(944), + [aux_sym_check_host_ip_token1] = ACTIONS(944), + [aux_sym_ciphers_token1] = ACTIONS(944), + [aux_sym_cipher_token1] = ACTIONS(946), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(944), + [aux_sym_compression_token1] = ACTIONS(944), + [aux_sym_connection_attempts_token1] = ACTIONS(944), + [aux_sym_connect_timeout_token1] = ACTIONS(944), + [aux_sym_control_master_token1] = ACTIONS(944), + [aux_sym_control_path_token1] = ACTIONS(944), + [aux_sym_control_persist_token1] = ACTIONS(944), + [aux_sym_dynamic_forward_token1] = ACTIONS(944), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(944), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(944), + [aux_sym_escape_char_token1] = ACTIONS(944), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(944), + [aux_sym_fingerprint_hash_token1] = ACTIONS(944), + [aux_sym_fork_after_authentication_token1] = ACTIONS(944), + [aux_sym_forward_agent_token1] = ACTIONS(944), + [aux_sym_forward_x11_token1] = ACTIONS(946), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(944), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(944), + [aux_sym_gateway_ports_token1] = ACTIONS(944), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(944), + [aux_sym_gssapi_authentication_token1] = ACTIONS(944), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(944), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(944), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(944), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(944), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(944), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(944), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(944), + [aux_sym_hash_known_hosts_token1] = ACTIONS(944), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(944), + [aux_sym_hostbased_authentication_token1] = ACTIONS(944), + [aux_sym_host_key_algorithms_token1] = ACTIONS(944), + [aux_sym_host_key_alias_token1] = ACTIONS(944), + [aux_sym_hostname_token1] = ACTIONS(944), + [aux_sym_identities_only_token1] = ACTIONS(944), + [aux_sym_identity_agent_token1] = ACTIONS(944), + [aux_sym_identity_file_token1] = ACTIONS(944), + [aux_sym_ignore_unknown_token1] = ACTIONS(944), + [aux_sym_include_token1] = ACTIONS(944), + [aux_sym_ip_qos_token1] = ACTIONS(944), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(944), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(944), + [aux_sym_kex_algorithms_token1] = ACTIONS(944), + [aux_sym_known_hosts_command_token1] = ACTIONS(944), + [aux_sym_local_command_token1] = ACTIONS(944), + [aux_sym_local_forward_token1] = ACTIONS(944), + [aux_sym_log_level_token1] = ACTIONS(944), + [aux_sym_log_verbose_token1] = ACTIONS(944), + [aux_sym_macs_token1] = ACTIONS(944), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(944), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(944), + [aux_sym_password_authentication_token1] = ACTIONS(944), + [aux_sym_permit_local_command_token1] = ACTIONS(944), + [aux_sym_permit_remote_open_token1] = ACTIONS(944), + [aux_sym_pkcs11_provider_token1] = ACTIONS(944), + [aux_sym_port_token1] = ACTIONS(944), + [aux_sym_preferred_authentications_token1] = ACTIONS(944), + [aux_sym_protocol_token1] = ACTIONS(944), + [aux_sym_proxy_command_token1] = ACTIONS(944), + [aux_sym_proxy_jump_token1] = ACTIONS(944), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(944), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(944), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(944), + [aux_sym_pubkey_authentication_token1] = ACTIONS(944), + [aux_sym_rekey_limit_token1] = ACTIONS(944), + [aux_sym_remote_command_token1] = ACTIONS(944), + [aux_sym_remote_forward_token1] = ACTIONS(944), + [aux_sym_request_tty_token1] = ACTIONS(944), + [aux_sym_required_rsa_size_token1] = ACTIONS(944), + [aux_sym_revoked_host_keys_token1] = ACTIONS(944), + [aux_sym_security_key_provider_token1] = ACTIONS(944), + [aux_sym_send_env_token1] = ACTIONS(944), + [aux_sym_server_alive_count_max_token1] = ACTIONS(944), + [aux_sym_server_alive_interval_token1] = ACTIONS(944), + [aux_sym_session_type_token1] = ACTIONS(944), + [aux_sym_set_env_token1] = ACTIONS(944), + [aux_sym_stdin_null_token1] = ACTIONS(944), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(944), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(944), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(944), + [aux_sym_syslog_facility_token1] = ACTIONS(944), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(944), + [aux_sym_keep_alive_token1] = ACTIONS(944), + [aux_sym_tunnel_token1] = ACTIONS(946), + [aux_sym_tunnel_device_token1] = ACTIONS(944), + [aux_sym_update_host_keys_token1] = ACTIONS(944), + [aux_sym_use_keychain_token1] = ACTIONS(944), + [aux_sym_use_roaming_token1] = ACTIONS(944), + [aux_sym_user_token1] = ACTIONS(946), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(944), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(944), + [aux_sym_visual_host_key_token1] = ACTIONS(944), + [aux_sym_xauth_location_token1] = ACTIONS(944), }, [68] = { - [ts_builtin_sym_end] = ACTIONS(945), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(949), - [aux_sym_match_token1] = ACTIONS(945), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(945), - [aux_sym_address_family_token1] = ACTIONS(945), - [aux_sym_batch_mode_token1] = ACTIONS(945), - [aux_sym_bind_address_token1] = ACTIONS(945), - [aux_sym_bind_interface_token1] = ACTIONS(945), - [aux_sym_canonical_domains_token1] = ACTIONS(945), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(945), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(945), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(945), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(945), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(945), - [aux_sym_certificate_file_token1] = ACTIONS(945), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(945), - [aux_sym_check_host_ip_token1] = ACTIONS(945), - [aux_sym_ciphers_token1] = ACTIONS(945), - [aux_sym_cipher_token1] = ACTIONS(947), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(945), - [aux_sym_compression_token1] = ACTIONS(945), - [aux_sym_connection_attempts_token1] = ACTIONS(945), - [aux_sym_connect_timeout_token1] = ACTIONS(945), - [aux_sym_control_master_token1] = ACTIONS(945), - [aux_sym_control_path_token1] = ACTIONS(945), - [aux_sym_control_persist_token1] = ACTIONS(945), - [aux_sym_dynamic_forward_token1] = ACTIONS(945), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(945), - [aux_sym_escape_char_token1] = ACTIONS(945), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(945), - [aux_sym_fingerprint_hash_token1] = ACTIONS(945), - [aux_sym_fork_after_authentication_token1] = ACTIONS(945), - [aux_sym_forward_agent_token1] = ACTIONS(945), - [aux_sym_forward_x11_token1] = ACTIONS(947), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(945), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(945), - [aux_sym_gateway_ports_token1] = ACTIONS(945), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(945), - [aux_sym_gssapi_authentication_token1] = ACTIONS(945), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(945), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(945), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(945), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(945), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(945), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(945), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(945), - [aux_sym_hash_known_hosts_token1] = ACTIONS(945), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(945), - [aux_sym_hostbased_authentication_token1] = ACTIONS(945), - [aux_sym_host_key_algorithms_token1] = ACTIONS(945), - [aux_sym_host_key_alias_token1] = ACTIONS(945), - [aux_sym_hostname_token1] = ACTIONS(945), - [aux_sym_identities_only_token1] = ACTIONS(945), - [aux_sym_identity_agent_token1] = ACTIONS(945), - [aux_sym_identity_file_token1] = ACTIONS(945), - [aux_sym_ignore_unknown_token1] = ACTIONS(945), - [aux_sym_include_token1] = ACTIONS(945), - [aux_sym_ip_qos_token1] = ACTIONS(945), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(945), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(945), - [aux_sym_kex_algorithms_token1] = ACTIONS(945), - [aux_sym_known_hosts_command_token1] = ACTIONS(945), - [aux_sym_local_command_token1] = ACTIONS(945), - [aux_sym_local_forward_token1] = ACTIONS(945), - [aux_sym_log_level_token1] = ACTIONS(945), - [aux_sym_log_verbose_token1] = ACTIONS(945), - [aux_sym_macs_token1] = ACTIONS(945), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(945), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(945), - [aux_sym_password_authentication_token1] = ACTIONS(945), - [aux_sym_permit_local_command_token1] = ACTIONS(945), - [aux_sym_permit_remote_open_token1] = ACTIONS(945), - [aux_sym_pkcs11_provider_token1] = ACTIONS(945), - [aux_sym_port_token1] = ACTIONS(945), - [aux_sym_preferred_authentications_token1] = ACTIONS(945), - [aux_sym_protocol_token1] = ACTIONS(945), - [aux_sym_proxy_command_token1] = ACTIONS(945), - [aux_sym_proxy_jump_token1] = ACTIONS(945), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(945), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(945), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(945), - [aux_sym_pubkey_authentication_token1] = ACTIONS(945), - [aux_sym_rekey_limit_token1] = ACTIONS(945), - [aux_sym_remote_command_token1] = ACTIONS(945), - [aux_sym_remote_forward_token1] = ACTIONS(945), - [aux_sym_request_tty_token1] = ACTIONS(945), - [aux_sym_required_rsa_size_token1] = ACTIONS(945), - [aux_sym_revoked_host_keys_token1] = ACTIONS(945), - [aux_sym_security_key_provider_token1] = ACTIONS(945), - [aux_sym_send_env_token1] = ACTIONS(945), - [aux_sym_server_alive_count_max_token1] = ACTIONS(945), - [aux_sym_server_alive_interval_token1] = ACTIONS(945), - [aux_sym_session_type_token1] = ACTIONS(945), - [aux_sym_set_env_token1] = ACTIONS(945), - [aux_sym_stdin_null_token1] = ACTIONS(945), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(945), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(945), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(945), - [aux_sym_syslog_facility_token1] = ACTIONS(945), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(945), - [aux_sym_keep_alive_token1] = ACTIONS(945), - [aux_sym_tunnel_token1] = ACTIONS(947), - [aux_sym_tunnel_device_token1] = ACTIONS(945), - [aux_sym_update_host_keys_token1] = ACTIONS(945), - [aux_sym_use_keychain_token1] = ACTIONS(945), - [aux_sym_use_roaming_token1] = ACTIONS(945), - [aux_sym_user_token1] = ACTIONS(947), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(945), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(945), - [aux_sym_visual_host_key_token1] = ACTIONS(945), - [aux_sym_xauth_location_token1] = ACTIONS(945), + [ts_builtin_sym_end] = ACTIONS(950), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(954), + [aux_sym_match_token1] = ACTIONS(950), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(950), + [aux_sym_address_family_token1] = ACTIONS(950), + [aux_sym_batch_mode_token1] = ACTIONS(950), + [aux_sym_bind_address_token1] = ACTIONS(950), + [aux_sym_bind_interface_token1] = ACTIONS(950), + [aux_sym_canonical_domains_token1] = ACTIONS(950), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(950), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(950), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(950), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(950), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(950), + [aux_sym_certificate_file_token1] = ACTIONS(950), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(950), + [aux_sym_check_host_ip_token1] = ACTIONS(950), + [aux_sym_ciphers_token1] = ACTIONS(950), + [aux_sym_cipher_token1] = ACTIONS(952), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(950), + [aux_sym_compression_token1] = ACTIONS(950), + [aux_sym_connection_attempts_token1] = ACTIONS(950), + [aux_sym_connect_timeout_token1] = ACTIONS(950), + [aux_sym_control_master_token1] = ACTIONS(950), + [aux_sym_control_path_token1] = ACTIONS(950), + [aux_sym_control_persist_token1] = ACTIONS(950), + [aux_sym_dynamic_forward_token1] = ACTIONS(950), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(950), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(950), + [aux_sym_escape_char_token1] = ACTIONS(950), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(950), + [aux_sym_fingerprint_hash_token1] = ACTIONS(950), + [aux_sym_fork_after_authentication_token1] = ACTIONS(950), + [aux_sym_forward_agent_token1] = ACTIONS(950), + [aux_sym_forward_x11_token1] = ACTIONS(952), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(950), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(950), + [aux_sym_gateway_ports_token1] = ACTIONS(950), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(950), + [aux_sym_gssapi_authentication_token1] = ACTIONS(950), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(950), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(950), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(950), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(950), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(950), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(950), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(950), + [aux_sym_hash_known_hosts_token1] = ACTIONS(950), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(950), + [aux_sym_hostbased_authentication_token1] = ACTIONS(950), + [aux_sym_host_key_algorithms_token1] = ACTIONS(950), + [aux_sym_host_key_alias_token1] = ACTIONS(950), + [aux_sym_hostname_token1] = ACTIONS(950), + [aux_sym_identities_only_token1] = ACTIONS(950), + [aux_sym_identity_agent_token1] = ACTIONS(950), + [aux_sym_identity_file_token1] = ACTIONS(950), + [aux_sym_ignore_unknown_token1] = ACTIONS(950), + [aux_sym_include_token1] = ACTIONS(950), + [aux_sym_ip_qos_token1] = ACTIONS(950), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(950), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(950), + [aux_sym_kex_algorithms_token1] = ACTIONS(950), + [aux_sym_known_hosts_command_token1] = ACTIONS(950), + [aux_sym_local_command_token1] = ACTIONS(950), + [aux_sym_local_forward_token1] = ACTIONS(950), + [aux_sym_log_level_token1] = ACTIONS(950), + [aux_sym_log_verbose_token1] = ACTIONS(950), + [aux_sym_macs_token1] = ACTIONS(950), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(950), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(950), + [aux_sym_password_authentication_token1] = ACTIONS(950), + [aux_sym_permit_local_command_token1] = ACTIONS(950), + [aux_sym_permit_remote_open_token1] = ACTIONS(950), + [aux_sym_pkcs11_provider_token1] = ACTIONS(950), + [aux_sym_port_token1] = ACTIONS(950), + [aux_sym_preferred_authentications_token1] = ACTIONS(950), + [aux_sym_protocol_token1] = ACTIONS(950), + [aux_sym_proxy_command_token1] = ACTIONS(950), + [aux_sym_proxy_jump_token1] = ACTIONS(950), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(950), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(950), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(950), + [aux_sym_pubkey_authentication_token1] = ACTIONS(950), + [aux_sym_rekey_limit_token1] = ACTIONS(950), + [aux_sym_remote_command_token1] = ACTIONS(950), + [aux_sym_remote_forward_token1] = ACTIONS(950), + [aux_sym_request_tty_token1] = ACTIONS(950), + [aux_sym_required_rsa_size_token1] = ACTIONS(950), + [aux_sym_revoked_host_keys_token1] = ACTIONS(950), + [aux_sym_security_key_provider_token1] = ACTIONS(950), + [aux_sym_send_env_token1] = ACTIONS(950), + [aux_sym_server_alive_count_max_token1] = ACTIONS(950), + [aux_sym_server_alive_interval_token1] = ACTIONS(950), + [aux_sym_session_type_token1] = ACTIONS(950), + [aux_sym_set_env_token1] = ACTIONS(950), + [aux_sym_stdin_null_token1] = ACTIONS(950), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(950), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(950), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(950), + [aux_sym_syslog_facility_token1] = ACTIONS(950), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(950), + [aux_sym_keep_alive_token1] = ACTIONS(950), + [aux_sym_tunnel_token1] = ACTIONS(952), + [aux_sym_tunnel_device_token1] = ACTIONS(950), + [aux_sym_update_host_keys_token1] = ACTIONS(950), + [aux_sym_use_keychain_token1] = ACTIONS(950), + [aux_sym_use_roaming_token1] = ACTIONS(950), + [aux_sym_user_token1] = ACTIONS(952), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(950), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(950), + [aux_sym_visual_host_key_token1] = ACTIONS(950), + [aux_sym_xauth_location_token1] = ACTIONS(950), }, [69] = { - [ts_builtin_sym_end] = ACTIONS(951), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(955), - [aux_sym_match_token1] = ACTIONS(951), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(951), - [aux_sym_address_family_token1] = ACTIONS(951), - [aux_sym_batch_mode_token1] = ACTIONS(951), - [aux_sym_bind_address_token1] = ACTIONS(951), - [aux_sym_bind_interface_token1] = ACTIONS(951), - [aux_sym_canonical_domains_token1] = ACTIONS(951), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(951), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(951), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(951), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(951), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(951), - [aux_sym_certificate_file_token1] = ACTIONS(951), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(951), - [aux_sym_check_host_ip_token1] = ACTIONS(951), - [aux_sym_ciphers_token1] = ACTIONS(951), - [aux_sym_cipher_token1] = ACTIONS(953), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(951), - [aux_sym_compression_token1] = ACTIONS(951), - [aux_sym_connection_attempts_token1] = ACTIONS(951), - [aux_sym_connect_timeout_token1] = ACTIONS(951), - [aux_sym_control_master_token1] = ACTIONS(951), - [aux_sym_control_path_token1] = ACTIONS(951), - [aux_sym_control_persist_token1] = ACTIONS(951), - [aux_sym_dynamic_forward_token1] = ACTIONS(951), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(951), - [aux_sym_escape_char_token1] = ACTIONS(951), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(951), - [aux_sym_fingerprint_hash_token1] = ACTIONS(951), - [aux_sym_fork_after_authentication_token1] = ACTIONS(951), - [aux_sym_forward_agent_token1] = ACTIONS(951), - [aux_sym_forward_x11_token1] = ACTIONS(953), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(951), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(951), - [aux_sym_gateway_ports_token1] = ACTIONS(951), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(951), - [aux_sym_gssapi_authentication_token1] = ACTIONS(951), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(951), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(951), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(951), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(951), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(951), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(951), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(951), - [aux_sym_hash_known_hosts_token1] = ACTIONS(951), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(951), - [aux_sym_hostbased_authentication_token1] = ACTIONS(951), - [aux_sym_host_key_algorithms_token1] = ACTIONS(951), - [aux_sym_host_key_alias_token1] = ACTIONS(951), - [aux_sym_hostname_token1] = ACTIONS(951), - [aux_sym_identities_only_token1] = ACTIONS(951), - [aux_sym_identity_agent_token1] = ACTIONS(951), - [aux_sym_identity_file_token1] = ACTIONS(951), - [aux_sym_ignore_unknown_token1] = ACTIONS(951), - [aux_sym_include_token1] = ACTIONS(951), - [aux_sym_ip_qos_token1] = ACTIONS(951), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(951), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(951), - [aux_sym_kex_algorithms_token1] = ACTIONS(951), - [aux_sym_known_hosts_command_token1] = ACTIONS(951), - [aux_sym_local_command_token1] = ACTIONS(951), - [aux_sym_local_forward_token1] = ACTIONS(951), - [aux_sym_log_level_token1] = ACTIONS(951), - [aux_sym_log_verbose_token1] = ACTIONS(951), - [aux_sym_macs_token1] = ACTIONS(951), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(951), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(951), - [aux_sym_password_authentication_token1] = ACTIONS(951), - [aux_sym_permit_local_command_token1] = ACTIONS(951), - [aux_sym_permit_remote_open_token1] = ACTIONS(951), - [aux_sym_pkcs11_provider_token1] = ACTIONS(951), - [aux_sym_port_token1] = ACTIONS(951), - [aux_sym_preferred_authentications_token1] = ACTIONS(951), - [aux_sym_protocol_token1] = ACTIONS(951), - [aux_sym_proxy_command_token1] = ACTIONS(951), - [aux_sym_proxy_jump_token1] = ACTIONS(951), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(951), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(951), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(951), - [aux_sym_pubkey_authentication_token1] = ACTIONS(951), - [aux_sym_rekey_limit_token1] = ACTIONS(951), - [aux_sym_remote_command_token1] = ACTIONS(951), - [aux_sym_remote_forward_token1] = ACTIONS(951), - [aux_sym_request_tty_token1] = ACTIONS(951), - [aux_sym_required_rsa_size_token1] = ACTIONS(951), - [aux_sym_revoked_host_keys_token1] = ACTIONS(951), - [aux_sym_security_key_provider_token1] = ACTIONS(951), - [aux_sym_send_env_token1] = ACTIONS(951), - [aux_sym_server_alive_count_max_token1] = ACTIONS(951), - [aux_sym_server_alive_interval_token1] = ACTIONS(951), - [aux_sym_session_type_token1] = ACTIONS(951), - [aux_sym_set_env_token1] = ACTIONS(951), - [aux_sym_stdin_null_token1] = ACTIONS(951), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(951), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(951), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(951), - [aux_sym_syslog_facility_token1] = ACTIONS(951), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(951), - [aux_sym_keep_alive_token1] = ACTIONS(951), - [aux_sym_tunnel_token1] = ACTIONS(953), - [aux_sym_tunnel_device_token1] = ACTIONS(951), - [aux_sym_update_host_keys_token1] = ACTIONS(951), - [aux_sym_use_keychain_token1] = ACTIONS(951), - [aux_sym_use_roaming_token1] = ACTIONS(951), - [aux_sym_user_token1] = ACTIONS(953), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(951), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(951), - [aux_sym_visual_host_key_token1] = ACTIONS(951), - [aux_sym_xauth_location_token1] = ACTIONS(951), + [ts_builtin_sym_end] = ACTIONS(956), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(960), + [aux_sym_match_token1] = ACTIONS(956), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(956), + [aux_sym_address_family_token1] = ACTIONS(956), + [aux_sym_batch_mode_token1] = ACTIONS(956), + [aux_sym_bind_address_token1] = ACTIONS(956), + [aux_sym_bind_interface_token1] = ACTIONS(956), + [aux_sym_canonical_domains_token1] = ACTIONS(956), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(956), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(956), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(956), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(956), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(956), + [aux_sym_certificate_file_token1] = ACTIONS(956), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(956), + [aux_sym_check_host_ip_token1] = ACTIONS(956), + [aux_sym_ciphers_token1] = ACTIONS(956), + [aux_sym_cipher_token1] = ACTIONS(958), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(956), + [aux_sym_compression_token1] = ACTIONS(956), + [aux_sym_connection_attempts_token1] = ACTIONS(956), + [aux_sym_connect_timeout_token1] = ACTIONS(956), + [aux_sym_control_master_token1] = ACTIONS(956), + [aux_sym_control_path_token1] = ACTIONS(956), + [aux_sym_control_persist_token1] = ACTIONS(956), + [aux_sym_dynamic_forward_token1] = ACTIONS(956), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(956), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(956), + [aux_sym_escape_char_token1] = ACTIONS(956), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(956), + [aux_sym_fingerprint_hash_token1] = ACTIONS(956), + [aux_sym_fork_after_authentication_token1] = ACTIONS(956), + [aux_sym_forward_agent_token1] = ACTIONS(956), + [aux_sym_forward_x11_token1] = ACTIONS(958), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(956), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(956), + [aux_sym_gateway_ports_token1] = ACTIONS(956), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(956), + [aux_sym_gssapi_authentication_token1] = ACTIONS(956), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(956), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(956), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(956), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(956), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(956), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(956), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(956), + [aux_sym_hash_known_hosts_token1] = ACTIONS(956), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(956), + [aux_sym_hostbased_authentication_token1] = ACTIONS(956), + [aux_sym_host_key_algorithms_token1] = ACTIONS(956), + [aux_sym_host_key_alias_token1] = ACTIONS(956), + [aux_sym_hostname_token1] = ACTIONS(956), + [aux_sym_identities_only_token1] = ACTIONS(956), + [aux_sym_identity_agent_token1] = ACTIONS(956), + [aux_sym_identity_file_token1] = ACTIONS(956), + [aux_sym_ignore_unknown_token1] = ACTIONS(956), + [aux_sym_include_token1] = ACTIONS(956), + [aux_sym_ip_qos_token1] = ACTIONS(956), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(956), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(956), + [aux_sym_kex_algorithms_token1] = ACTIONS(956), + [aux_sym_known_hosts_command_token1] = ACTIONS(956), + [aux_sym_local_command_token1] = ACTIONS(956), + [aux_sym_local_forward_token1] = ACTIONS(956), + [aux_sym_log_level_token1] = ACTIONS(956), + [aux_sym_log_verbose_token1] = ACTIONS(956), + [aux_sym_macs_token1] = ACTIONS(956), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(956), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(956), + [aux_sym_password_authentication_token1] = ACTIONS(956), + [aux_sym_permit_local_command_token1] = ACTIONS(956), + [aux_sym_permit_remote_open_token1] = ACTIONS(956), + [aux_sym_pkcs11_provider_token1] = ACTIONS(956), + [aux_sym_port_token1] = ACTIONS(956), + [aux_sym_preferred_authentications_token1] = ACTIONS(956), + [aux_sym_protocol_token1] = ACTIONS(956), + [aux_sym_proxy_command_token1] = ACTIONS(956), + [aux_sym_proxy_jump_token1] = ACTIONS(956), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(956), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(956), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(956), + [aux_sym_pubkey_authentication_token1] = ACTIONS(956), + [aux_sym_rekey_limit_token1] = ACTIONS(956), + [aux_sym_remote_command_token1] = ACTIONS(956), + [aux_sym_remote_forward_token1] = ACTIONS(956), + [aux_sym_request_tty_token1] = ACTIONS(956), + [aux_sym_required_rsa_size_token1] = ACTIONS(956), + [aux_sym_revoked_host_keys_token1] = ACTIONS(956), + [aux_sym_security_key_provider_token1] = ACTIONS(956), + [aux_sym_send_env_token1] = ACTIONS(956), + [aux_sym_server_alive_count_max_token1] = ACTIONS(956), + [aux_sym_server_alive_interval_token1] = ACTIONS(956), + [aux_sym_session_type_token1] = ACTIONS(956), + [aux_sym_set_env_token1] = ACTIONS(956), + [aux_sym_stdin_null_token1] = ACTIONS(956), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(956), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(956), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(956), + [aux_sym_syslog_facility_token1] = ACTIONS(956), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(956), + [aux_sym_keep_alive_token1] = ACTIONS(956), + [aux_sym_tunnel_token1] = ACTIONS(958), + [aux_sym_tunnel_device_token1] = ACTIONS(956), + [aux_sym_update_host_keys_token1] = ACTIONS(956), + [aux_sym_use_keychain_token1] = ACTIONS(956), + [aux_sym_use_roaming_token1] = ACTIONS(956), + [aux_sym_user_token1] = ACTIONS(958), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(956), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(956), + [aux_sym_visual_host_key_token1] = ACTIONS(956), + [aux_sym_xauth_location_token1] = ACTIONS(956), }, [70] = { - [ts_builtin_sym_end] = ACTIONS(957), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(961), - [aux_sym_match_token1] = ACTIONS(957), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(957), - [aux_sym_address_family_token1] = ACTIONS(957), - [aux_sym_batch_mode_token1] = ACTIONS(957), - [aux_sym_bind_address_token1] = ACTIONS(957), - [aux_sym_bind_interface_token1] = ACTIONS(957), - [aux_sym_canonical_domains_token1] = ACTIONS(957), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(957), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(957), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(957), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(957), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(957), - [aux_sym_certificate_file_token1] = ACTIONS(957), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(957), - [aux_sym_check_host_ip_token1] = ACTIONS(957), - [aux_sym_ciphers_token1] = ACTIONS(957), - [aux_sym_cipher_token1] = ACTIONS(959), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(957), - [aux_sym_compression_token1] = ACTIONS(957), - [aux_sym_connection_attempts_token1] = ACTIONS(957), - [aux_sym_connect_timeout_token1] = ACTIONS(957), - [aux_sym_control_master_token1] = ACTIONS(957), - [aux_sym_control_path_token1] = ACTIONS(957), - [aux_sym_control_persist_token1] = ACTIONS(957), - [aux_sym_dynamic_forward_token1] = ACTIONS(957), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(957), - [aux_sym_escape_char_token1] = ACTIONS(957), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(957), - [aux_sym_fingerprint_hash_token1] = ACTIONS(957), - [aux_sym_fork_after_authentication_token1] = ACTIONS(957), - [aux_sym_forward_agent_token1] = ACTIONS(957), - [aux_sym_forward_x11_token1] = ACTIONS(959), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(957), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(957), - [aux_sym_gateway_ports_token1] = ACTIONS(957), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(957), - [aux_sym_gssapi_authentication_token1] = ACTIONS(957), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(957), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(957), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(957), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(957), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(957), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(957), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(957), - [aux_sym_hash_known_hosts_token1] = ACTIONS(957), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(957), - [aux_sym_hostbased_authentication_token1] = ACTIONS(957), - [aux_sym_host_key_algorithms_token1] = ACTIONS(957), - [aux_sym_host_key_alias_token1] = ACTIONS(957), - [aux_sym_hostname_token1] = ACTIONS(957), - [aux_sym_identities_only_token1] = ACTIONS(957), - [aux_sym_identity_agent_token1] = ACTIONS(957), - [aux_sym_identity_file_token1] = ACTIONS(957), - [aux_sym_ignore_unknown_token1] = ACTIONS(957), - [aux_sym_include_token1] = ACTIONS(957), - [aux_sym_ip_qos_token1] = ACTIONS(957), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(957), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(957), - [aux_sym_kex_algorithms_token1] = ACTIONS(957), - [aux_sym_known_hosts_command_token1] = ACTIONS(957), - [aux_sym_local_command_token1] = ACTIONS(957), - [aux_sym_local_forward_token1] = ACTIONS(957), - [aux_sym_log_level_token1] = ACTIONS(957), - [aux_sym_log_verbose_token1] = ACTIONS(957), - [aux_sym_macs_token1] = ACTIONS(957), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(957), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(957), - [aux_sym_password_authentication_token1] = ACTIONS(957), - [aux_sym_permit_local_command_token1] = ACTIONS(957), - [aux_sym_permit_remote_open_token1] = ACTIONS(957), - [aux_sym_pkcs11_provider_token1] = ACTIONS(957), - [aux_sym_port_token1] = ACTIONS(957), - [aux_sym_preferred_authentications_token1] = ACTIONS(957), - [aux_sym_protocol_token1] = ACTIONS(957), - [aux_sym_proxy_command_token1] = ACTIONS(957), - [aux_sym_proxy_jump_token1] = ACTIONS(957), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(957), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(957), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(957), - [aux_sym_pubkey_authentication_token1] = ACTIONS(957), - [aux_sym_rekey_limit_token1] = ACTIONS(957), - [aux_sym_remote_command_token1] = ACTIONS(957), - [aux_sym_remote_forward_token1] = ACTIONS(957), - [aux_sym_request_tty_token1] = ACTIONS(957), - [aux_sym_required_rsa_size_token1] = ACTIONS(957), - [aux_sym_revoked_host_keys_token1] = ACTIONS(957), - [aux_sym_security_key_provider_token1] = ACTIONS(957), - [aux_sym_send_env_token1] = ACTIONS(957), - [aux_sym_server_alive_count_max_token1] = ACTIONS(957), - [aux_sym_server_alive_interval_token1] = ACTIONS(957), - [aux_sym_session_type_token1] = ACTIONS(957), - [aux_sym_set_env_token1] = ACTIONS(957), - [aux_sym_stdin_null_token1] = ACTIONS(957), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(957), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(957), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(957), - [aux_sym_syslog_facility_token1] = ACTIONS(957), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(957), - [aux_sym_keep_alive_token1] = ACTIONS(957), - [aux_sym_tunnel_token1] = ACTIONS(959), - [aux_sym_tunnel_device_token1] = ACTIONS(957), - [aux_sym_update_host_keys_token1] = ACTIONS(957), - [aux_sym_use_keychain_token1] = ACTIONS(957), - [aux_sym_use_roaming_token1] = ACTIONS(957), - [aux_sym_user_token1] = ACTIONS(959), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(957), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(957), - [aux_sym_visual_host_key_token1] = ACTIONS(957), - [aux_sym_xauth_location_token1] = ACTIONS(957), + [ts_builtin_sym_end] = ACTIONS(962), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(966), + [aux_sym_match_token1] = ACTIONS(962), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(962), + [aux_sym_address_family_token1] = ACTIONS(962), + [aux_sym_batch_mode_token1] = ACTIONS(962), + [aux_sym_bind_address_token1] = ACTIONS(962), + [aux_sym_bind_interface_token1] = ACTIONS(962), + [aux_sym_canonical_domains_token1] = ACTIONS(962), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(962), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(962), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(962), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(962), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(962), + [aux_sym_certificate_file_token1] = ACTIONS(962), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(962), + [aux_sym_check_host_ip_token1] = ACTIONS(962), + [aux_sym_ciphers_token1] = ACTIONS(962), + [aux_sym_cipher_token1] = ACTIONS(964), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(962), + [aux_sym_compression_token1] = ACTIONS(962), + [aux_sym_connection_attempts_token1] = ACTIONS(962), + [aux_sym_connect_timeout_token1] = ACTIONS(962), + [aux_sym_control_master_token1] = ACTIONS(962), + [aux_sym_control_path_token1] = ACTIONS(962), + [aux_sym_control_persist_token1] = ACTIONS(962), + [aux_sym_dynamic_forward_token1] = ACTIONS(962), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(962), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(962), + [aux_sym_escape_char_token1] = ACTIONS(962), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(962), + [aux_sym_fingerprint_hash_token1] = ACTIONS(962), + [aux_sym_fork_after_authentication_token1] = ACTIONS(962), + [aux_sym_forward_agent_token1] = ACTIONS(962), + [aux_sym_forward_x11_token1] = ACTIONS(964), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(962), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(962), + [aux_sym_gateway_ports_token1] = ACTIONS(962), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(962), + [aux_sym_gssapi_authentication_token1] = ACTIONS(962), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(962), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(962), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(962), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(962), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(962), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(962), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(962), + [aux_sym_hash_known_hosts_token1] = ACTIONS(962), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(962), + [aux_sym_hostbased_authentication_token1] = ACTIONS(962), + [aux_sym_host_key_algorithms_token1] = ACTIONS(962), + [aux_sym_host_key_alias_token1] = ACTIONS(962), + [aux_sym_hostname_token1] = ACTIONS(962), + [aux_sym_identities_only_token1] = ACTIONS(962), + [aux_sym_identity_agent_token1] = ACTIONS(962), + [aux_sym_identity_file_token1] = ACTIONS(962), + [aux_sym_ignore_unknown_token1] = ACTIONS(962), + [aux_sym_include_token1] = ACTIONS(962), + [aux_sym_ip_qos_token1] = ACTIONS(962), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(962), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(962), + [aux_sym_kex_algorithms_token1] = ACTIONS(962), + [aux_sym_known_hosts_command_token1] = ACTIONS(962), + [aux_sym_local_command_token1] = ACTIONS(962), + [aux_sym_local_forward_token1] = ACTIONS(962), + [aux_sym_log_level_token1] = ACTIONS(962), + [aux_sym_log_verbose_token1] = ACTIONS(962), + [aux_sym_macs_token1] = ACTIONS(962), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(962), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(962), + [aux_sym_password_authentication_token1] = ACTIONS(962), + [aux_sym_permit_local_command_token1] = ACTIONS(962), + [aux_sym_permit_remote_open_token1] = ACTIONS(962), + [aux_sym_pkcs11_provider_token1] = ACTIONS(962), + [aux_sym_port_token1] = ACTIONS(962), + [aux_sym_preferred_authentications_token1] = ACTIONS(962), + [aux_sym_protocol_token1] = ACTIONS(962), + [aux_sym_proxy_command_token1] = ACTIONS(962), + [aux_sym_proxy_jump_token1] = ACTIONS(962), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(962), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(962), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(962), + [aux_sym_pubkey_authentication_token1] = ACTIONS(962), + [aux_sym_rekey_limit_token1] = ACTIONS(962), + [aux_sym_remote_command_token1] = ACTIONS(962), + [aux_sym_remote_forward_token1] = ACTIONS(962), + [aux_sym_request_tty_token1] = ACTIONS(962), + [aux_sym_required_rsa_size_token1] = ACTIONS(962), + [aux_sym_revoked_host_keys_token1] = ACTIONS(962), + [aux_sym_security_key_provider_token1] = ACTIONS(962), + [aux_sym_send_env_token1] = ACTIONS(962), + [aux_sym_server_alive_count_max_token1] = ACTIONS(962), + [aux_sym_server_alive_interval_token1] = ACTIONS(962), + [aux_sym_session_type_token1] = ACTIONS(962), + [aux_sym_set_env_token1] = ACTIONS(962), + [aux_sym_stdin_null_token1] = ACTIONS(962), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(962), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(962), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(962), + [aux_sym_syslog_facility_token1] = ACTIONS(962), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(962), + [aux_sym_keep_alive_token1] = ACTIONS(962), + [aux_sym_tunnel_token1] = ACTIONS(964), + [aux_sym_tunnel_device_token1] = ACTIONS(962), + [aux_sym_update_host_keys_token1] = ACTIONS(962), + [aux_sym_use_keychain_token1] = ACTIONS(962), + [aux_sym_use_roaming_token1] = ACTIONS(962), + [aux_sym_user_token1] = ACTIONS(964), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(962), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(962), + [aux_sym_visual_host_key_token1] = ACTIONS(962), + [aux_sym_xauth_location_token1] = ACTIONS(962), }, [71] = { - [ts_builtin_sym_end] = ACTIONS(963), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(965), - [anon_sym_DQUOTE] = ACTIONS(967), - [aux_sym_match_token1] = ACTIONS(963), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(963), - [aux_sym_address_family_token1] = ACTIONS(963), - [aux_sym_batch_mode_token1] = ACTIONS(963), - [aux_sym_bind_address_token1] = ACTIONS(963), - [aux_sym_bind_interface_token1] = ACTIONS(963), - [aux_sym_canonical_domains_token1] = ACTIONS(963), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(963), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(963), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(963), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(963), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(963), - [aux_sym_certificate_file_token1] = ACTIONS(963), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(963), - [aux_sym_check_host_ip_token1] = ACTIONS(963), - [aux_sym_ciphers_token1] = ACTIONS(963), - [aux_sym_cipher_token1] = ACTIONS(965), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(963), - [aux_sym_compression_token1] = ACTIONS(963), - [aux_sym_connection_attempts_token1] = ACTIONS(963), - [aux_sym_connect_timeout_token1] = ACTIONS(963), - [aux_sym_control_master_token1] = ACTIONS(963), - [aux_sym_control_path_token1] = ACTIONS(963), - [aux_sym_control_persist_token1] = ACTIONS(963), - [aux_sym_dynamic_forward_token1] = ACTIONS(963), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(963), - [aux_sym_escape_char_token1] = ACTIONS(963), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(963), - [aux_sym_fingerprint_hash_token1] = ACTIONS(963), - [aux_sym_fork_after_authentication_token1] = ACTIONS(963), - [aux_sym_forward_agent_token1] = ACTIONS(963), - [aux_sym_forward_x11_token1] = ACTIONS(965), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(963), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(963), - [aux_sym_gateway_ports_token1] = ACTIONS(963), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(963), - [aux_sym_gssapi_authentication_token1] = ACTIONS(963), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(963), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(963), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(963), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(963), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(963), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(963), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(963), - [aux_sym_hash_known_hosts_token1] = ACTIONS(963), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(963), - [aux_sym_hostbased_authentication_token1] = ACTIONS(963), - [aux_sym_host_key_algorithms_token1] = ACTIONS(963), - [aux_sym_host_key_alias_token1] = ACTIONS(963), - [aux_sym_hostname_token1] = ACTIONS(963), - [aux_sym_identities_only_token1] = ACTIONS(963), - [aux_sym_identity_agent_token1] = ACTIONS(963), - [aux_sym_identity_file_token1] = ACTIONS(963), - [aux_sym_ignore_unknown_token1] = ACTIONS(963), - [aux_sym_include_token1] = ACTIONS(963), - [aux_sym_ip_qos_token1] = ACTIONS(963), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(963), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(963), - [aux_sym_kex_algorithms_token1] = ACTIONS(963), - [aux_sym_known_hosts_command_token1] = ACTIONS(963), - [aux_sym_local_command_token1] = ACTIONS(963), - [aux_sym_local_forward_token1] = ACTIONS(963), - [aux_sym_log_level_token1] = ACTIONS(963), - [aux_sym_log_verbose_token1] = ACTIONS(963), - [aux_sym_macs_token1] = ACTIONS(963), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(963), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(963), - [aux_sym_password_authentication_token1] = ACTIONS(963), - [aux_sym_permit_local_command_token1] = ACTIONS(963), - [aux_sym_permit_remote_open_token1] = ACTIONS(963), - [aux_sym_pkcs11_provider_token1] = ACTIONS(963), - [aux_sym_port_token1] = ACTIONS(963), - [aux_sym_preferred_authentications_token1] = ACTIONS(963), - [aux_sym_protocol_token1] = ACTIONS(963), - [aux_sym_proxy_command_token1] = ACTIONS(963), - [aux_sym_proxy_jump_token1] = ACTIONS(963), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(963), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(963), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(963), - [aux_sym_pubkey_authentication_token1] = ACTIONS(963), - [aux_sym_rekey_limit_token1] = ACTIONS(963), - [aux_sym_remote_command_token1] = ACTIONS(963), - [aux_sym_remote_forward_token1] = ACTIONS(963), - [aux_sym_request_tty_token1] = ACTIONS(963), - [aux_sym_required_rsa_size_token1] = ACTIONS(963), - [aux_sym_revoked_host_keys_token1] = ACTIONS(963), - [aux_sym_security_key_provider_token1] = ACTIONS(963), - [aux_sym_send_env_token1] = ACTIONS(963), - [aux_sym_server_alive_count_max_token1] = ACTIONS(963), - [aux_sym_server_alive_interval_token1] = ACTIONS(963), - [aux_sym_session_type_token1] = ACTIONS(963), - [aux_sym_set_env_token1] = ACTIONS(963), - [aux_sym_stdin_null_token1] = ACTIONS(963), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(963), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(963), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(963), - [aux_sym_syslog_facility_token1] = ACTIONS(963), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(963), - [aux_sym_keep_alive_token1] = ACTIONS(963), - [aux_sym_tunnel_token1] = ACTIONS(965), - [aux_sym_tunnel_device_token1] = ACTIONS(963), - [aux_sym_update_host_keys_token1] = ACTIONS(963), - [aux_sym_use_keychain_token1] = ACTIONS(963), - [aux_sym_use_roaming_token1] = ACTIONS(963), - [aux_sym_user_token1] = ACTIONS(965), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(963), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(963), - [aux_sym_visual_host_key_token1] = ACTIONS(963), - [aux_sym_xauth_location_token1] = ACTIONS(963), + [ts_builtin_sym_end] = ACTIONS(968), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(972), + [aux_sym_match_token1] = ACTIONS(968), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(968), + [aux_sym_address_family_token1] = ACTIONS(968), + [aux_sym_batch_mode_token1] = ACTIONS(968), + [aux_sym_bind_address_token1] = ACTIONS(968), + [aux_sym_bind_interface_token1] = ACTIONS(968), + [aux_sym_canonical_domains_token1] = ACTIONS(968), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(968), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(968), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(968), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(968), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(968), + [aux_sym_certificate_file_token1] = ACTIONS(968), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(968), + [aux_sym_check_host_ip_token1] = ACTIONS(968), + [aux_sym_ciphers_token1] = ACTIONS(968), + [aux_sym_cipher_token1] = ACTIONS(970), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(968), + [aux_sym_compression_token1] = ACTIONS(968), + [aux_sym_connection_attempts_token1] = ACTIONS(968), + [aux_sym_connect_timeout_token1] = ACTIONS(968), + [aux_sym_control_master_token1] = ACTIONS(968), + [aux_sym_control_path_token1] = ACTIONS(968), + [aux_sym_control_persist_token1] = ACTIONS(968), + [aux_sym_dynamic_forward_token1] = ACTIONS(968), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(968), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(968), + [aux_sym_escape_char_token1] = ACTIONS(968), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(968), + [aux_sym_fingerprint_hash_token1] = ACTIONS(968), + [aux_sym_fork_after_authentication_token1] = ACTIONS(968), + [aux_sym_forward_agent_token1] = ACTIONS(968), + [aux_sym_forward_x11_token1] = ACTIONS(970), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(968), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(968), + [aux_sym_gateway_ports_token1] = ACTIONS(968), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(968), + [aux_sym_gssapi_authentication_token1] = ACTIONS(968), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(968), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(968), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(968), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(968), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(968), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(968), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(968), + [aux_sym_hash_known_hosts_token1] = ACTIONS(968), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(968), + [aux_sym_hostbased_authentication_token1] = ACTIONS(968), + [aux_sym_host_key_algorithms_token1] = ACTIONS(968), + [aux_sym_host_key_alias_token1] = ACTIONS(968), + [aux_sym_hostname_token1] = ACTIONS(968), + [aux_sym_identities_only_token1] = ACTIONS(968), + [aux_sym_identity_agent_token1] = ACTIONS(968), + [aux_sym_identity_file_token1] = ACTIONS(968), + [aux_sym_ignore_unknown_token1] = ACTIONS(968), + [aux_sym_include_token1] = ACTIONS(968), + [aux_sym_ip_qos_token1] = ACTIONS(968), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(968), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(968), + [aux_sym_kex_algorithms_token1] = ACTIONS(968), + [aux_sym_known_hosts_command_token1] = ACTIONS(968), + [aux_sym_local_command_token1] = ACTIONS(968), + [aux_sym_local_forward_token1] = ACTIONS(968), + [aux_sym_log_level_token1] = ACTIONS(968), + [aux_sym_log_verbose_token1] = ACTIONS(968), + [aux_sym_macs_token1] = ACTIONS(968), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(968), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(968), + [aux_sym_password_authentication_token1] = ACTIONS(968), + [aux_sym_permit_local_command_token1] = ACTIONS(968), + [aux_sym_permit_remote_open_token1] = ACTIONS(968), + [aux_sym_pkcs11_provider_token1] = ACTIONS(968), + [aux_sym_port_token1] = ACTIONS(968), + [aux_sym_preferred_authentications_token1] = ACTIONS(968), + [aux_sym_protocol_token1] = ACTIONS(968), + [aux_sym_proxy_command_token1] = ACTIONS(968), + [aux_sym_proxy_jump_token1] = ACTIONS(968), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(968), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(968), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(968), + [aux_sym_pubkey_authentication_token1] = ACTIONS(968), + [aux_sym_rekey_limit_token1] = ACTIONS(968), + [aux_sym_remote_command_token1] = ACTIONS(968), + [aux_sym_remote_forward_token1] = ACTIONS(968), + [aux_sym_request_tty_token1] = ACTIONS(968), + [aux_sym_required_rsa_size_token1] = ACTIONS(968), + [aux_sym_revoked_host_keys_token1] = ACTIONS(968), + [aux_sym_security_key_provider_token1] = ACTIONS(968), + [aux_sym_send_env_token1] = ACTIONS(968), + [aux_sym_server_alive_count_max_token1] = ACTIONS(968), + [aux_sym_server_alive_interval_token1] = ACTIONS(968), + [aux_sym_session_type_token1] = ACTIONS(968), + [aux_sym_set_env_token1] = ACTIONS(968), + [aux_sym_stdin_null_token1] = ACTIONS(968), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(968), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(968), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(968), + [aux_sym_syslog_facility_token1] = ACTIONS(968), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(968), + [aux_sym_keep_alive_token1] = ACTIONS(968), + [aux_sym_tunnel_token1] = ACTIONS(970), + [aux_sym_tunnel_device_token1] = ACTIONS(968), + [aux_sym_update_host_keys_token1] = ACTIONS(968), + [aux_sym_use_keychain_token1] = ACTIONS(968), + [aux_sym_use_roaming_token1] = ACTIONS(968), + [aux_sym_user_token1] = ACTIONS(970), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(968), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(968), + [aux_sym_visual_host_key_token1] = ACTIONS(968), + [aux_sym_xauth_location_token1] = ACTIONS(968), }, [72] = { - [ts_builtin_sym_end] = ACTIONS(969), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(973), - [aux_sym_match_token1] = ACTIONS(969), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(969), - [aux_sym_address_family_token1] = ACTIONS(969), - [aux_sym_batch_mode_token1] = ACTIONS(969), - [aux_sym_bind_address_token1] = ACTIONS(969), - [aux_sym_bind_interface_token1] = ACTIONS(969), - [aux_sym_canonical_domains_token1] = ACTIONS(969), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(969), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(969), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(969), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(969), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(969), - [aux_sym_certificate_file_token1] = ACTIONS(969), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(969), - [aux_sym_check_host_ip_token1] = ACTIONS(969), - [aux_sym_ciphers_token1] = ACTIONS(969), - [aux_sym_cipher_token1] = ACTIONS(971), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(969), - [aux_sym_compression_token1] = ACTIONS(969), - [aux_sym_connection_attempts_token1] = ACTIONS(969), - [aux_sym_connect_timeout_token1] = ACTIONS(969), - [aux_sym_control_master_token1] = ACTIONS(969), - [aux_sym_control_path_token1] = ACTIONS(969), - [aux_sym_control_persist_token1] = ACTIONS(969), - [aux_sym_dynamic_forward_token1] = ACTIONS(969), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(969), - [aux_sym_escape_char_token1] = ACTIONS(969), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(969), - [aux_sym_fingerprint_hash_token1] = ACTIONS(969), - [aux_sym_fork_after_authentication_token1] = ACTIONS(969), - [aux_sym_forward_agent_token1] = ACTIONS(969), - [aux_sym_forward_x11_token1] = ACTIONS(971), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(969), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(969), - [aux_sym_gateway_ports_token1] = ACTIONS(969), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(969), - [aux_sym_gssapi_authentication_token1] = ACTIONS(969), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(969), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(969), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(969), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(969), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(969), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(969), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(969), - [aux_sym_hash_known_hosts_token1] = ACTIONS(969), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(969), - [aux_sym_hostbased_authentication_token1] = ACTIONS(969), - [aux_sym_host_key_algorithms_token1] = ACTIONS(969), - [aux_sym_host_key_alias_token1] = ACTIONS(969), - [aux_sym_hostname_token1] = ACTIONS(969), - [aux_sym_identities_only_token1] = ACTIONS(969), - [aux_sym_identity_agent_token1] = ACTIONS(969), - [aux_sym_identity_file_token1] = ACTIONS(969), - [aux_sym_ignore_unknown_token1] = ACTIONS(969), - [aux_sym_include_token1] = ACTIONS(969), - [aux_sym_ip_qos_token1] = ACTIONS(969), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(969), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(969), - [aux_sym_kex_algorithms_token1] = ACTIONS(969), - [aux_sym_known_hosts_command_token1] = ACTIONS(969), - [aux_sym_local_command_token1] = ACTIONS(969), - [aux_sym_local_forward_token1] = ACTIONS(969), - [aux_sym_log_level_token1] = ACTIONS(969), - [aux_sym_log_verbose_token1] = ACTIONS(969), - [aux_sym_macs_token1] = ACTIONS(969), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(969), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(969), - [aux_sym_password_authentication_token1] = ACTIONS(969), - [aux_sym_permit_local_command_token1] = ACTIONS(969), - [aux_sym_permit_remote_open_token1] = ACTIONS(969), - [aux_sym_pkcs11_provider_token1] = ACTIONS(969), - [aux_sym_port_token1] = ACTIONS(969), - [aux_sym_preferred_authentications_token1] = ACTIONS(969), - [aux_sym_protocol_token1] = ACTIONS(969), - [aux_sym_proxy_command_token1] = ACTIONS(969), - [aux_sym_proxy_jump_token1] = ACTIONS(969), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(969), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(969), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(969), - [aux_sym_pubkey_authentication_token1] = ACTIONS(969), - [aux_sym_rekey_limit_token1] = ACTIONS(969), - [aux_sym_remote_command_token1] = ACTIONS(969), - [aux_sym_remote_forward_token1] = ACTIONS(969), - [aux_sym_request_tty_token1] = ACTIONS(969), - [aux_sym_required_rsa_size_token1] = ACTIONS(969), - [aux_sym_revoked_host_keys_token1] = ACTIONS(969), - [aux_sym_security_key_provider_token1] = ACTIONS(969), - [aux_sym_send_env_token1] = ACTIONS(969), - [aux_sym_server_alive_count_max_token1] = ACTIONS(969), - [aux_sym_server_alive_interval_token1] = ACTIONS(969), - [aux_sym_session_type_token1] = ACTIONS(969), - [aux_sym_set_env_token1] = ACTIONS(969), - [aux_sym_stdin_null_token1] = ACTIONS(969), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(969), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(969), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(969), - [aux_sym_syslog_facility_token1] = ACTIONS(969), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(969), - [aux_sym_keep_alive_token1] = ACTIONS(969), - [aux_sym_tunnel_token1] = ACTIONS(971), - [aux_sym_tunnel_device_token1] = ACTIONS(969), - [aux_sym_update_host_keys_token1] = ACTIONS(969), - [aux_sym_use_keychain_token1] = ACTIONS(969), - [aux_sym_use_roaming_token1] = ACTIONS(969), - [aux_sym_user_token1] = ACTIONS(971), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(969), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(969), - [aux_sym_visual_host_key_token1] = ACTIONS(969), - [aux_sym_xauth_location_token1] = ACTIONS(969), + [ts_builtin_sym_end] = ACTIONS(974), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(978), + [aux_sym_match_token1] = ACTIONS(974), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(974), + [aux_sym_address_family_token1] = ACTIONS(974), + [aux_sym_batch_mode_token1] = ACTIONS(974), + [aux_sym_bind_address_token1] = ACTIONS(974), + [aux_sym_bind_interface_token1] = ACTIONS(974), + [aux_sym_canonical_domains_token1] = ACTIONS(974), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(974), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(974), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(974), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(974), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(974), + [aux_sym_certificate_file_token1] = ACTIONS(974), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(974), + [aux_sym_check_host_ip_token1] = ACTIONS(974), + [aux_sym_ciphers_token1] = ACTIONS(974), + [aux_sym_cipher_token1] = ACTIONS(976), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(974), + [aux_sym_compression_token1] = ACTIONS(974), + [aux_sym_connection_attempts_token1] = ACTIONS(974), + [aux_sym_connect_timeout_token1] = ACTIONS(974), + [aux_sym_control_master_token1] = ACTIONS(974), + [aux_sym_control_path_token1] = ACTIONS(974), + [aux_sym_control_persist_token1] = ACTIONS(974), + [aux_sym_dynamic_forward_token1] = ACTIONS(974), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(974), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(974), + [aux_sym_escape_char_token1] = ACTIONS(974), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(974), + [aux_sym_fingerprint_hash_token1] = ACTIONS(974), + [aux_sym_fork_after_authentication_token1] = ACTIONS(974), + [aux_sym_forward_agent_token1] = ACTIONS(974), + [aux_sym_forward_x11_token1] = ACTIONS(976), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(974), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(974), + [aux_sym_gateway_ports_token1] = ACTIONS(974), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(974), + [aux_sym_gssapi_authentication_token1] = ACTIONS(974), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(974), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(974), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(974), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(974), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(974), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(974), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(974), + [aux_sym_hash_known_hosts_token1] = ACTIONS(974), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(974), + [aux_sym_hostbased_authentication_token1] = ACTIONS(974), + [aux_sym_host_key_algorithms_token1] = ACTIONS(974), + [aux_sym_host_key_alias_token1] = ACTIONS(974), + [aux_sym_hostname_token1] = ACTIONS(974), + [aux_sym_identities_only_token1] = ACTIONS(974), + [aux_sym_identity_agent_token1] = ACTIONS(974), + [aux_sym_identity_file_token1] = ACTIONS(974), + [aux_sym_ignore_unknown_token1] = ACTIONS(974), + [aux_sym_include_token1] = ACTIONS(974), + [aux_sym_ip_qos_token1] = ACTIONS(974), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(974), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(974), + [aux_sym_kex_algorithms_token1] = ACTIONS(974), + [aux_sym_known_hosts_command_token1] = ACTIONS(974), + [aux_sym_local_command_token1] = ACTIONS(974), + [aux_sym_local_forward_token1] = ACTIONS(974), + [aux_sym_log_level_token1] = ACTIONS(974), + [aux_sym_log_verbose_token1] = ACTIONS(974), + [aux_sym_macs_token1] = ACTIONS(974), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(974), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(974), + [aux_sym_password_authentication_token1] = ACTIONS(974), + [aux_sym_permit_local_command_token1] = ACTIONS(974), + [aux_sym_permit_remote_open_token1] = ACTIONS(974), + [aux_sym_pkcs11_provider_token1] = ACTIONS(974), + [aux_sym_port_token1] = ACTIONS(974), + [aux_sym_preferred_authentications_token1] = ACTIONS(974), + [aux_sym_protocol_token1] = ACTIONS(974), + [aux_sym_proxy_command_token1] = ACTIONS(974), + [aux_sym_proxy_jump_token1] = ACTIONS(974), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(974), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(974), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(974), + [aux_sym_pubkey_authentication_token1] = ACTIONS(974), + [aux_sym_rekey_limit_token1] = ACTIONS(974), + [aux_sym_remote_command_token1] = ACTIONS(974), + [aux_sym_remote_forward_token1] = ACTIONS(974), + [aux_sym_request_tty_token1] = ACTIONS(974), + [aux_sym_required_rsa_size_token1] = ACTIONS(974), + [aux_sym_revoked_host_keys_token1] = ACTIONS(974), + [aux_sym_security_key_provider_token1] = ACTIONS(974), + [aux_sym_send_env_token1] = ACTIONS(974), + [aux_sym_server_alive_count_max_token1] = ACTIONS(974), + [aux_sym_server_alive_interval_token1] = ACTIONS(974), + [aux_sym_session_type_token1] = ACTIONS(974), + [aux_sym_set_env_token1] = ACTIONS(974), + [aux_sym_stdin_null_token1] = ACTIONS(974), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(974), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(974), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(974), + [aux_sym_syslog_facility_token1] = ACTIONS(974), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(974), + [aux_sym_keep_alive_token1] = ACTIONS(974), + [aux_sym_tunnel_token1] = ACTIONS(976), + [aux_sym_tunnel_device_token1] = ACTIONS(974), + [aux_sym_update_host_keys_token1] = ACTIONS(974), + [aux_sym_use_keychain_token1] = ACTIONS(974), + [aux_sym_use_roaming_token1] = ACTIONS(974), + [aux_sym_user_token1] = ACTIONS(976), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(974), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(974), + [aux_sym_visual_host_key_token1] = ACTIONS(974), + [aux_sym_xauth_location_token1] = ACTIONS(974), }, [73] = { - [ts_builtin_sym_end] = ACTIONS(975), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(979), - [aux_sym_match_token1] = ACTIONS(975), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(975), - [aux_sym_address_family_token1] = ACTIONS(975), - [aux_sym_batch_mode_token1] = ACTIONS(975), - [aux_sym_bind_address_token1] = ACTIONS(975), - [aux_sym_bind_interface_token1] = ACTIONS(975), - [aux_sym_canonical_domains_token1] = ACTIONS(975), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(975), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(975), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(975), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(975), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(975), - [aux_sym_certificate_file_token1] = ACTIONS(975), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(975), - [aux_sym_check_host_ip_token1] = ACTIONS(975), - [aux_sym_ciphers_token1] = ACTIONS(975), - [aux_sym_cipher_token1] = ACTIONS(977), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(975), - [aux_sym_compression_token1] = ACTIONS(975), - [aux_sym_connection_attempts_token1] = ACTIONS(975), - [aux_sym_connect_timeout_token1] = ACTIONS(975), - [aux_sym_control_master_token1] = ACTIONS(975), - [aux_sym_control_path_token1] = ACTIONS(975), - [aux_sym_control_persist_token1] = ACTIONS(975), - [aux_sym_dynamic_forward_token1] = ACTIONS(975), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(975), - [aux_sym_escape_char_token1] = ACTIONS(975), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(975), - [aux_sym_fingerprint_hash_token1] = ACTIONS(975), - [aux_sym_fork_after_authentication_token1] = ACTIONS(975), - [aux_sym_forward_agent_token1] = ACTIONS(975), - [aux_sym_forward_x11_token1] = ACTIONS(977), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(975), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(975), - [aux_sym_gateway_ports_token1] = ACTIONS(975), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(975), - [aux_sym_gssapi_authentication_token1] = ACTIONS(975), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(975), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(975), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(975), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(975), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(975), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(975), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(975), - [aux_sym_hash_known_hosts_token1] = ACTIONS(975), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(975), - [aux_sym_hostbased_authentication_token1] = ACTIONS(975), - [aux_sym_host_key_algorithms_token1] = ACTIONS(975), - [aux_sym_host_key_alias_token1] = ACTIONS(975), - [aux_sym_hostname_token1] = ACTIONS(975), - [aux_sym_identities_only_token1] = ACTIONS(975), - [aux_sym_identity_agent_token1] = ACTIONS(975), - [aux_sym_identity_file_token1] = ACTIONS(975), - [aux_sym_ignore_unknown_token1] = ACTIONS(975), - [aux_sym_include_token1] = ACTIONS(975), - [aux_sym_ip_qos_token1] = ACTIONS(975), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(975), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(975), - [aux_sym_kex_algorithms_token1] = ACTIONS(975), - [aux_sym_known_hosts_command_token1] = ACTIONS(975), - [aux_sym_local_command_token1] = ACTIONS(975), - [aux_sym_local_forward_token1] = ACTIONS(975), - [aux_sym_log_level_token1] = ACTIONS(975), - [aux_sym_log_verbose_token1] = ACTIONS(975), - [aux_sym_macs_token1] = ACTIONS(975), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(975), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(975), - [aux_sym_password_authentication_token1] = ACTIONS(975), - [aux_sym_permit_local_command_token1] = ACTIONS(975), - [aux_sym_permit_remote_open_token1] = ACTIONS(975), - [aux_sym_pkcs11_provider_token1] = ACTIONS(975), - [aux_sym_port_token1] = ACTIONS(975), - [aux_sym_preferred_authentications_token1] = ACTIONS(975), - [aux_sym_protocol_token1] = ACTIONS(975), - [aux_sym_proxy_command_token1] = ACTIONS(975), - [aux_sym_proxy_jump_token1] = ACTIONS(975), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(975), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(975), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(975), - [aux_sym_pubkey_authentication_token1] = ACTIONS(975), - [aux_sym_rekey_limit_token1] = ACTIONS(975), - [aux_sym_remote_command_token1] = ACTIONS(975), - [aux_sym_remote_forward_token1] = ACTIONS(975), - [aux_sym_request_tty_token1] = ACTIONS(975), - [aux_sym_required_rsa_size_token1] = ACTIONS(975), - [aux_sym_revoked_host_keys_token1] = ACTIONS(975), - [aux_sym_security_key_provider_token1] = ACTIONS(975), - [aux_sym_send_env_token1] = ACTIONS(975), - [aux_sym_server_alive_count_max_token1] = ACTIONS(975), - [aux_sym_server_alive_interval_token1] = ACTIONS(975), - [aux_sym_session_type_token1] = ACTIONS(975), - [aux_sym_set_env_token1] = ACTIONS(975), - [aux_sym_stdin_null_token1] = ACTIONS(975), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(975), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(975), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(975), - [aux_sym_syslog_facility_token1] = ACTIONS(975), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(975), - [aux_sym_keep_alive_token1] = ACTIONS(975), - [aux_sym_tunnel_token1] = ACTIONS(977), - [aux_sym_tunnel_device_token1] = ACTIONS(975), - [aux_sym_update_host_keys_token1] = ACTIONS(975), - [aux_sym_use_keychain_token1] = ACTIONS(975), - [aux_sym_use_roaming_token1] = ACTIONS(975), - [aux_sym_user_token1] = ACTIONS(977), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(975), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(975), - [aux_sym_visual_host_key_token1] = ACTIONS(975), - [aux_sym_xauth_location_token1] = ACTIONS(975), + [ts_builtin_sym_end] = ACTIONS(980), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(984), + [aux_sym_match_token1] = ACTIONS(980), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(980), + [aux_sym_address_family_token1] = ACTIONS(980), + [aux_sym_batch_mode_token1] = ACTIONS(980), + [aux_sym_bind_address_token1] = ACTIONS(980), + [aux_sym_bind_interface_token1] = ACTIONS(980), + [aux_sym_canonical_domains_token1] = ACTIONS(980), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(980), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(980), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(980), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(980), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(980), + [aux_sym_certificate_file_token1] = ACTIONS(980), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(980), + [aux_sym_check_host_ip_token1] = ACTIONS(980), + [aux_sym_ciphers_token1] = ACTIONS(980), + [aux_sym_cipher_token1] = ACTIONS(982), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(980), + [aux_sym_compression_token1] = ACTIONS(980), + [aux_sym_connection_attempts_token1] = ACTIONS(980), + [aux_sym_connect_timeout_token1] = ACTIONS(980), + [aux_sym_control_master_token1] = ACTIONS(980), + [aux_sym_control_path_token1] = ACTIONS(980), + [aux_sym_control_persist_token1] = ACTIONS(980), + [aux_sym_dynamic_forward_token1] = ACTIONS(980), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(980), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(980), + [aux_sym_escape_char_token1] = ACTIONS(980), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(980), + [aux_sym_fingerprint_hash_token1] = ACTIONS(980), + [aux_sym_fork_after_authentication_token1] = ACTIONS(980), + [aux_sym_forward_agent_token1] = ACTIONS(980), + [aux_sym_forward_x11_token1] = ACTIONS(982), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(980), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(980), + [aux_sym_gateway_ports_token1] = ACTIONS(980), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(980), + [aux_sym_gssapi_authentication_token1] = ACTIONS(980), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(980), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(980), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(980), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(980), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(980), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(980), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(980), + [aux_sym_hash_known_hosts_token1] = ACTIONS(980), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(980), + [aux_sym_hostbased_authentication_token1] = ACTIONS(980), + [aux_sym_host_key_algorithms_token1] = ACTIONS(980), + [aux_sym_host_key_alias_token1] = ACTIONS(980), + [aux_sym_hostname_token1] = ACTIONS(980), + [aux_sym_identities_only_token1] = ACTIONS(980), + [aux_sym_identity_agent_token1] = ACTIONS(980), + [aux_sym_identity_file_token1] = ACTIONS(980), + [aux_sym_ignore_unknown_token1] = ACTIONS(980), + [aux_sym_include_token1] = ACTIONS(980), + [aux_sym_ip_qos_token1] = ACTIONS(980), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(980), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(980), + [aux_sym_kex_algorithms_token1] = ACTIONS(980), + [aux_sym_known_hosts_command_token1] = ACTIONS(980), + [aux_sym_local_command_token1] = ACTIONS(980), + [aux_sym_local_forward_token1] = ACTIONS(980), + [aux_sym_log_level_token1] = ACTIONS(980), + [aux_sym_log_verbose_token1] = ACTIONS(980), + [aux_sym_macs_token1] = ACTIONS(980), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(980), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(980), + [aux_sym_password_authentication_token1] = ACTIONS(980), + [aux_sym_permit_local_command_token1] = ACTIONS(980), + [aux_sym_permit_remote_open_token1] = ACTIONS(980), + [aux_sym_pkcs11_provider_token1] = ACTIONS(980), + [aux_sym_port_token1] = ACTIONS(980), + [aux_sym_preferred_authentications_token1] = ACTIONS(980), + [aux_sym_protocol_token1] = ACTIONS(980), + [aux_sym_proxy_command_token1] = ACTIONS(980), + [aux_sym_proxy_jump_token1] = ACTIONS(980), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(980), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(980), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(980), + [aux_sym_pubkey_authentication_token1] = ACTIONS(980), + [aux_sym_rekey_limit_token1] = ACTIONS(980), + [aux_sym_remote_command_token1] = ACTIONS(980), + [aux_sym_remote_forward_token1] = ACTIONS(980), + [aux_sym_request_tty_token1] = ACTIONS(980), + [aux_sym_required_rsa_size_token1] = ACTIONS(980), + [aux_sym_revoked_host_keys_token1] = ACTIONS(980), + [aux_sym_security_key_provider_token1] = ACTIONS(980), + [aux_sym_send_env_token1] = ACTIONS(980), + [aux_sym_server_alive_count_max_token1] = ACTIONS(980), + [aux_sym_server_alive_interval_token1] = ACTIONS(980), + [aux_sym_session_type_token1] = ACTIONS(980), + [aux_sym_set_env_token1] = ACTIONS(980), + [aux_sym_stdin_null_token1] = ACTIONS(980), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(980), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(980), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(980), + [aux_sym_syslog_facility_token1] = ACTIONS(980), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(980), + [aux_sym_keep_alive_token1] = ACTIONS(980), + [aux_sym_tunnel_token1] = ACTIONS(982), + [aux_sym_tunnel_device_token1] = ACTIONS(980), + [aux_sym_update_host_keys_token1] = ACTIONS(980), + [aux_sym_use_keychain_token1] = ACTIONS(980), + [aux_sym_use_roaming_token1] = ACTIONS(980), + [aux_sym_user_token1] = ACTIONS(982), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(980), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(980), + [aux_sym_visual_host_key_token1] = ACTIONS(980), + [aux_sym_xauth_location_token1] = ACTIONS(980), }, [74] = { - [ts_builtin_sym_end] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(983), - [anon_sym_DQUOTE] = ACTIONS(985), - [aux_sym_match_token1] = ACTIONS(981), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(981), - [aux_sym_address_family_token1] = ACTIONS(981), - [aux_sym_batch_mode_token1] = ACTIONS(981), - [aux_sym_bind_address_token1] = ACTIONS(981), - [aux_sym_bind_interface_token1] = ACTIONS(981), - [aux_sym_canonical_domains_token1] = ACTIONS(981), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(981), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(981), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(981), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(981), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(981), - [aux_sym_certificate_file_token1] = ACTIONS(981), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(981), - [aux_sym_check_host_ip_token1] = ACTIONS(981), - [aux_sym_ciphers_token1] = ACTIONS(981), - [aux_sym_cipher_token1] = ACTIONS(983), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(981), - [aux_sym_compression_token1] = ACTIONS(981), - [aux_sym_connection_attempts_token1] = ACTIONS(981), - [aux_sym_connect_timeout_token1] = ACTIONS(981), - [aux_sym_control_master_token1] = ACTIONS(981), - [aux_sym_control_path_token1] = ACTIONS(981), - [aux_sym_control_persist_token1] = ACTIONS(981), - [aux_sym_dynamic_forward_token1] = ACTIONS(981), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(981), - [aux_sym_escape_char_token1] = ACTIONS(981), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(981), - [aux_sym_fingerprint_hash_token1] = ACTIONS(981), - [aux_sym_fork_after_authentication_token1] = ACTIONS(981), - [aux_sym_forward_agent_token1] = ACTIONS(981), - [aux_sym_forward_x11_token1] = ACTIONS(983), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(981), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(981), - [aux_sym_gateway_ports_token1] = ACTIONS(981), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(981), - [aux_sym_gssapi_authentication_token1] = ACTIONS(981), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(981), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(981), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(981), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(981), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(981), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(981), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(981), - [aux_sym_hash_known_hosts_token1] = ACTIONS(981), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(981), - [aux_sym_hostbased_authentication_token1] = ACTIONS(981), - [aux_sym_host_key_algorithms_token1] = ACTIONS(981), - [aux_sym_host_key_alias_token1] = ACTIONS(981), - [aux_sym_hostname_token1] = ACTIONS(981), - [aux_sym_identities_only_token1] = ACTIONS(981), - [aux_sym_identity_agent_token1] = ACTIONS(981), - [aux_sym_identity_file_token1] = ACTIONS(981), - [aux_sym_ignore_unknown_token1] = ACTIONS(981), - [aux_sym_include_token1] = ACTIONS(981), - [aux_sym_ip_qos_token1] = ACTIONS(981), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(981), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(981), - [aux_sym_kex_algorithms_token1] = ACTIONS(981), - [aux_sym_known_hosts_command_token1] = ACTIONS(981), - [aux_sym_local_command_token1] = ACTIONS(981), - [aux_sym_local_forward_token1] = ACTIONS(981), - [aux_sym_log_level_token1] = ACTIONS(981), - [aux_sym_log_verbose_token1] = ACTIONS(981), - [aux_sym_macs_token1] = ACTIONS(981), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(981), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(981), - [aux_sym_password_authentication_token1] = ACTIONS(981), - [aux_sym_permit_local_command_token1] = ACTIONS(981), - [aux_sym_permit_remote_open_token1] = ACTIONS(981), - [aux_sym_pkcs11_provider_token1] = ACTIONS(981), - [aux_sym_port_token1] = ACTIONS(981), - [aux_sym_preferred_authentications_token1] = ACTIONS(981), - [aux_sym_protocol_token1] = ACTIONS(981), - [aux_sym_proxy_command_token1] = ACTIONS(981), - [aux_sym_proxy_jump_token1] = ACTIONS(981), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(981), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(981), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(981), - [aux_sym_pubkey_authentication_token1] = ACTIONS(981), - [aux_sym_rekey_limit_token1] = ACTIONS(981), - [aux_sym_remote_command_token1] = ACTIONS(981), - [aux_sym_remote_forward_token1] = ACTIONS(981), - [aux_sym_request_tty_token1] = ACTIONS(981), - [aux_sym_required_rsa_size_token1] = ACTIONS(981), - [aux_sym_revoked_host_keys_token1] = ACTIONS(981), - [aux_sym_security_key_provider_token1] = ACTIONS(981), - [aux_sym_send_env_token1] = ACTIONS(981), - [aux_sym_server_alive_count_max_token1] = ACTIONS(981), - [aux_sym_server_alive_interval_token1] = ACTIONS(981), - [aux_sym_session_type_token1] = ACTIONS(981), - [aux_sym_set_env_token1] = ACTIONS(981), - [aux_sym_stdin_null_token1] = ACTIONS(981), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(981), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(981), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(981), - [aux_sym_syslog_facility_token1] = ACTIONS(981), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(981), - [aux_sym_keep_alive_token1] = ACTIONS(981), - [aux_sym_tunnel_token1] = ACTIONS(983), - [aux_sym_tunnel_device_token1] = ACTIONS(981), - [aux_sym_update_host_keys_token1] = ACTIONS(981), - [aux_sym_use_keychain_token1] = ACTIONS(981), - [aux_sym_use_roaming_token1] = ACTIONS(981), - [aux_sym_user_token1] = ACTIONS(983), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(981), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(981), - [aux_sym_visual_host_key_token1] = ACTIONS(981), - [aux_sym_xauth_location_token1] = ACTIONS(981), + [ts_builtin_sym_end] = ACTIONS(986), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(990), + [aux_sym_match_token1] = ACTIONS(986), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(986), + [aux_sym_address_family_token1] = ACTIONS(986), + [aux_sym_batch_mode_token1] = ACTIONS(986), + [aux_sym_bind_address_token1] = ACTIONS(986), + [aux_sym_bind_interface_token1] = ACTIONS(986), + [aux_sym_canonical_domains_token1] = ACTIONS(986), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(986), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(986), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(986), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(986), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(986), + [aux_sym_certificate_file_token1] = ACTIONS(986), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(986), + [aux_sym_check_host_ip_token1] = ACTIONS(986), + [aux_sym_ciphers_token1] = ACTIONS(986), + [aux_sym_cipher_token1] = ACTIONS(988), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(986), + [aux_sym_compression_token1] = ACTIONS(986), + [aux_sym_connection_attempts_token1] = ACTIONS(986), + [aux_sym_connect_timeout_token1] = ACTIONS(986), + [aux_sym_control_master_token1] = ACTIONS(986), + [aux_sym_control_path_token1] = ACTIONS(986), + [aux_sym_control_persist_token1] = ACTIONS(986), + [aux_sym_dynamic_forward_token1] = ACTIONS(986), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(986), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(986), + [aux_sym_escape_char_token1] = ACTIONS(986), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(986), + [aux_sym_fingerprint_hash_token1] = ACTIONS(986), + [aux_sym_fork_after_authentication_token1] = ACTIONS(986), + [aux_sym_forward_agent_token1] = ACTIONS(986), + [aux_sym_forward_x11_token1] = ACTIONS(988), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(986), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(986), + [aux_sym_gateway_ports_token1] = ACTIONS(986), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(986), + [aux_sym_gssapi_authentication_token1] = ACTIONS(986), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(986), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(986), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(986), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(986), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(986), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(986), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(986), + [aux_sym_hash_known_hosts_token1] = ACTIONS(986), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(986), + [aux_sym_hostbased_authentication_token1] = ACTIONS(986), + [aux_sym_host_key_algorithms_token1] = ACTIONS(986), + [aux_sym_host_key_alias_token1] = ACTIONS(986), + [aux_sym_hostname_token1] = ACTIONS(986), + [aux_sym_identities_only_token1] = ACTIONS(986), + [aux_sym_identity_agent_token1] = ACTIONS(986), + [aux_sym_identity_file_token1] = ACTIONS(986), + [aux_sym_ignore_unknown_token1] = ACTIONS(986), + [aux_sym_include_token1] = ACTIONS(986), + [aux_sym_ip_qos_token1] = ACTIONS(986), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(986), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(986), + [aux_sym_kex_algorithms_token1] = ACTIONS(986), + [aux_sym_known_hosts_command_token1] = ACTIONS(986), + [aux_sym_local_command_token1] = ACTIONS(986), + [aux_sym_local_forward_token1] = ACTIONS(986), + [aux_sym_log_level_token1] = ACTIONS(986), + [aux_sym_log_verbose_token1] = ACTIONS(986), + [aux_sym_macs_token1] = ACTIONS(986), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(986), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(986), + [aux_sym_password_authentication_token1] = ACTIONS(986), + [aux_sym_permit_local_command_token1] = ACTIONS(986), + [aux_sym_permit_remote_open_token1] = ACTIONS(986), + [aux_sym_pkcs11_provider_token1] = ACTIONS(986), + [aux_sym_port_token1] = ACTIONS(986), + [aux_sym_preferred_authentications_token1] = ACTIONS(986), + [aux_sym_protocol_token1] = ACTIONS(986), + [aux_sym_proxy_command_token1] = ACTIONS(986), + [aux_sym_proxy_jump_token1] = ACTIONS(986), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(986), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(986), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(986), + [aux_sym_pubkey_authentication_token1] = ACTIONS(986), + [aux_sym_rekey_limit_token1] = ACTIONS(986), + [aux_sym_remote_command_token1] = ACTIONS(986), + [aux_sym_remote_forward_token1] = ACTIONS(986), + [aux_sym_request_tty_token1] = ACTIONS(986), + [aux_sym_required_rsa_size_token1] = ACTIONS(986), + [aux_sym_revoked_host_keys_token1] = ACTIONS(986), + [aux_sym_security_key_provider_token1] = ACTIONS(986), + [aux_sym_send_env_token1] = ACTIONS(986), + [aux_sym_server_alive_count_max_token1] = ACTIONS(986), + [aux_sym_server_alive_interval_token1] = ACTIONS(986), + [aux_sym_session_type_token1] = ACTIONS(986), + [aux_sym_set_env_token1] = ACTIONS(986), + [aux_sym_stdin_null_token1] = ACTIONS(986), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(986), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(986), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(986), + [aux_sym_syslog_facility_token1] = ACTIONS(986), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(986), + [aux_sym_keep_alive_token1] = ACTIONS(986), + [aux_sym_tunnel_token1] = ACTIONS(988), + [aux_sym_tunnel_device_token1] = ACTIONS(986), + [aux_sym_update_host_keys_token1] = ACTIONS(986), + [aux_sym_use_keychain_token1] = ACTIONS(986), + [aux_sym_use_roaming_token1] = ACTIONS(986), + [aux_sym_user_token1] = ACTIONS(988), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(986), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(986), + [aux_sym_visual_host_key_token1] = ACTIONS(986), + [aux_sym_xauth_location_token1] = ACTIONS(986), }, [75] = { - [ts_builtin_sym_end] = ACTIONS(987), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(989), - [anon_sym_DQUOTE] = ACTIONS(991), - [aux_sym_match_token1] = ACTIONS(987), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(987), - [aux_sym_address_family_token1] = ACTIONS(987), - [aux_sym_batch_mode_token1] = ACTIONS(987), - [aux_sym_bind_address_token1] = ACTIONS(987), - [aux_sym_bind_interface_token1] = ACTIONS(987), - [aux_sym_canonical_domains_token1] = ACTIONS(987), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(987), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(987), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(987), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(987), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(987), - [aux_sym_certificate_file_token1] = ACTIONS(987), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(987), - [aux_sym_check_host_ip_token1] = ACTIONS(987), - [aux_sym_ciphers_token1] = ACTIONS(987), - [aux_sym_cipher_token1] = ACTIONS(989), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(987), - [aux_sym_compression_token1] = ACTIONS(987), - [aux_sym_connection_attempts_token1] = ACTIONS(987), - [aux_sym_connect_timeout_token1] = ACTIONS(987), - [aux_sym_control_master_token1] = ACTIONS(987), - [aux_sym_control_path_token1] = ACTIONS(987), - [aux_sym_control_persist_token1] = ACTIONS(987), - [aux_sym_dynamic_forward_token1] = ACTIONS(987), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(987), - [aux_sym_escape_char_token1] = ACTIONS(987), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(987), - [aux_sym_fingerprint_hash_token1] = ACTIONS(987), - [aux_sym_fork_after_authentication_token1] = ACTIONS(987), - [aux_sym_forward_agent_token1] = ACTIONS(987), - [aux_sym_forward_x11_token1] = ACTIONS(989), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(987), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(987), - [aux_sym_gateway_ports_token1] = ACTIONS(987), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(987), - [aux_sym_gssapi_authentication_token1] = ACTIONS(987), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(987), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(987), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(987), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(987), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(987), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(987), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(987), - [aux_sym_hash_known_hosts_token1] = ACTIONS(987), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(987), - [aux_sym_hostbased_authentication_token1] = ACTIONS(987), - [aux_sym_host_key_algorithms_token1] = ACTIONS(987), - [aux_sym_host_key_alias_token1] = ACTIONS(987), - [aux_sym_hostname_token1] = ACTIONS(987), - [aux_sym_identities_only_token1] = ACTIONS(987), - [aux_sym_identity_agent_token1] = ACTIONS(987), - [aux_sym_identity_file_token1] = ACTIONS(987), - [aux_sym_ignore_unknown_token1] = ACTIONS(987), - [aux_sym_include_token1] = ACTIONS(987), - [aux_sym_ip_qos_token1] = ACTIONS(987), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(987), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(987), - [aux_sym_kex_algorithms_token1] = ACTIONS(987), - [aux_sym_known_hosts_command_token1] = ACTIONS(987), - [aux_sym_local_command_token1] = ACTIONS(987), - [aux_sym_local_forward_token1] = ACTIONS(987), - [aux_sym_log_level_token1] = ACTIONS(987), - [aux_sym_log_verbose_token1] = ACTIONS(987), - [aux_sym_macs_token1] = ACTIONS(987), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(987), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(987), - [aux_sym_password_authentication_token1] = ACTIONS(987), - [aux_sym_permit_local_command_token1] = ACTIONS(987), - [aux_sym_permit_remote_open_token1] = ACTIONS(987), - [aux_sym_pkcs11_provider_token1] = ACTIONS(987), - [aux_sym_port_token1] = ACTIONS(987), - [aux_sym_preferred_authentications_token1] = ACTIONS(987), - [aux_sym_protocol_token1] = ACTIONS(987), - [aux_sym_proxy_command_token1] = ACTIONS(987), - [aux_sym_proxy_jump_token1] = ACTIONS(987), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(987), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(987), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(987), - [aux_sym_pubkey_authentication_token1] = ACTIONS(987), - [aux_sym_rekey_limit_token1] = ACTIONS(987), - [aux_sym_remote_command_token1] = ACTIONS(987), - [aux_sym_remote_forward_token1] = ACTIONS(987), - [aux_sym_request_tty_token1] = ACTIONS(987), - [aux_sym_required_rsa_size_token1] = ACTIONS(987), - [aux_sym_revoked_host_keys_token1] = ACTIONS(987), - [aux_sym_security_key_provider_token1] = ACTIONS(987), - [aux_sym_send_env_token1] = ACTIONS(987), - [aux_sym_server_alive_count_max_token1] = ACTIONS(987), - [aux_sym_server_alive_interval_token1] = ACTIONS(987), - [aux_sym_session_type_token1] = ACTIONS(987), - [aux_sym_set_env_token1] = ACTIONS(987), - [aux_sym_stdin_null_token1] = ACTIONS(987), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(987), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(987), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(987), - [aux_sym_syslog_facility_token1] = ACTIONS(987), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(987), - [aux_sym_keep_alive_token1] = ACTIONS(987), - [aux_sym_tunnel_token1] = ACTIONS(989), - [aux_sym_tunnel_device_token1] = ACTIONS(987), - [aux_sym_update_host_keys_token1] = ACTIONS(987), - [aux_sym_use_keychain_token1] = ACTIONS(987), - [aux_sym_use_roaming_token1] = ACTIONS(987), - [aux_sym_user_token1] = ACTIONS(989), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(987), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(987), - [aux_sym_visual_host_key_token1] = ACTIONS(987), - [aux_sym_xauth_location_token1] = ACTIONS(987), + [ts_builtin_sym_end] = ACTIONS(992), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(996), + [aux_sym_match_token1] = ACTIONS(992), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(992), + [aux_sym_address_family_token1] = ACTIONS(992), + [aux_sym_batch_mode_token1] = ACTIONS(992), + [aux_sym_bind_address_token1] = ACTIONS(992), + [aux_sym_bind_interface_token1] = ACTIONS(992), + [aux_sym_canonical_domains_token1] = ACTIONS(992), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(992), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(992), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(992), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(992), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(992), + [aux_sym_certificate_file_token1] = ACTIONS(992), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(992), + [aux_sym_check_host_ip_token1] = ACTIONS(992), + [aux_sym_ciphers_token1] = ACTIONS(992), + [aux_sym_cipher_token1] = ACTIONS(994), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(992), + [aux_sym_compression_token1] = ACTIONS(992), + [aux_sym_connection_attempts_token1] = ACTIONS(992), + [aux_sym_connect_timeout_token1] = ACTIONS(992), + [aux_sym_control_master_token1] = ACTIONS(992), + [aux_sym_control_path_token1] = ACTIONS(992), + [aux_sym_control_persist_token1] = ACTIONS(992), + [aux_sym_dynamic_forward_token1] = ACTIONS(992), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(992), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(992), + [aux_sym_escape_char_token1] = ACTIONS(992), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(992), + [aux_sym_fingerprint_hash_token1] = ACTIONS(992), + [aux_sym_fork_after_authentication_token1] = ACTIONS(992), + [aux_sym_forward_agent_token1] = ACTIONS(992), + [aux_sym_forward_x11_token1] = ACTIONS(994), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(992), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(992), + [aux_sym_gateway_ports_token1] = ACTIONS(992), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(992), + [aux_sym_gssapi_authentication_token1] = ACTIONS(992), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(992), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(992), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(992), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(992), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(992), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(992), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(992), + [aux_sym_hash_known_hosts_token1] = ACTIONS(992), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(992), + [aux_sym_hostbased_authentication_token1] = ACTIONS(992), + [aux_sym_host_key_algorithms_token1] = ACTIONS(992), + [aux_sym_host_key_alias_token1] = ACTIONS(992), + [aux_sym_hostname_token1] = ACTIONS(992), + [aux_sym_identities_only_token1] = ACTIONS(992), + [aux_sym_identity_agent_token1] = ACTIONS(992), + [aux_sym_identity_file_token1] = ACTIONS(992), + [aux_sym_ignore_unknown_token1] = ACTIONS(992), + [aux_sym_include_token1] = ACTIONS(992), + [aux_sym_ip_qos_token1] = ACTIONS(992), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(992), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(992), + [aux_sym_kex_algorithms_token1] = ACTIONS(992), + [aux_sym_known_hosts_command_token1] = ACTIONS(992), + [aux_sym_local_command_token1] = ACTIONS(992), + [aux_sym_local_forward_token1] = ACTIONS(992), + [aux_sym_log_level_token1] = ACTIONS(992), + [aux_sym_log_verbose_token1] = ACTIONS(992), + [aux_sym_macs_token1] = ACTIONS(992), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(992), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(992), + [aux_sym_password_authentication_token1] = ACTIONS(992), + [aux_sym_permit_local_command_token1] = ACTIONS(992), + [aux_sym_permit_remote_open_token1] = ACTIONS(992), + [aux_sym_pkcs11_provider_token1] = ACTIONS(992), + [aux_sym_port_token1] = ACTIONS(992), + [aux_sym_preferred_authentications_token1] = ACTIONS(992), + [aux_sym_protocol_token1] = ACTIONS(992), + [aux_sym_proxy_command_token1] = ACTIONS(992), + [aux_sym_proxy_jump_token1] = ACTIONS(992), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(992), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(992), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(992), + [aux_sym_pubkey_authentication_token1] = ACTIONS(992), + [aux_sym_rekey_limit_token1] = ACTIONS(992), + [aux_sym_remote_command_token1] = ACTIONS(992), + [aux_sym_remote_forward_token1] = ACTIONS(992), + [aux_sym_request_tty_token1] = ACTIONS(992), + [aux_sym_required_rsa_size_token1] = ACTIONS(992), + [aux_sym_revoked_host_keys_token1] = ACTIONS(992), + [aux_sym_security_key_provider_token1] = ACTIONS(992), + [aux_sym_send_env_token1] = ACTIONS(992), + [aux_sym_server_alive_count_max_token1] = ACTIONS(992), + [aux_sym_server_alive_interval_token1] = ACTIONS(992), + [aux_sym_session_type_token1] = ACTIONS(992), + [aux_sym_set_env_token1] = ACTIONS(992), + [aux_sym_stdin_null_token1] = ACTIONS(992), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(992), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(992), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(992), + [aux_sym_syslog_facility_token1] = ACTIONS(992), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(992), + [aux_sym_keep_alive_token1] = ACTIONS(992), + [aux_sym_tunnel_token1] = ACTIONS(994), + [aux_sym_tunnel_device_token1] = ACTIONS(992), + [aux_sym_update_host_keys_token1] = ACTIONS(992), + [aux_sym_use_keychain_token1] = ACTIONS(992), + [aux_sym_use_roaming_token1] = ACTIONS(992), + [aux_sym_user_token1] = ACTIONS(994), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(992), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(992), + [aux_sym_visual_host_key_token1] = ACTIONS(992), + [aux_sym_xauth_location_token1] = ACTIONS(992), }, [76] = { - [ts_builtin_sym_end] = ACTIONS(993), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(995), - [anon_sym_DQUOTE] = ACTIONS(997), - [aux_sym_match_token1] = ACTIONS(993), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(993), - [aux_sym_address_family_token1] = ACTIONS(993), - [aux_sym_batch_mode_token1] = ACTIONS(993), - [aux_sym_bind_address_token1] = ACTIONS(993), - [aux_sym_bind_interface_token1] = ACTIONS(993), - [aux_sym_canonical_domains_token1] = ACTIONS(993), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(993), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(993), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(993), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(993), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(993), - [aux_sym_certificate_file_token1] = ACTIONS(993), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(993), - [aux_sym_check_host_ip_token1] = ACTIONS(993), - [aux_sym_ciphers_token1] = ACTIONS(993), - [aux_sym_cipher_token1] = ACTIONS(995), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(993), - [aux_sym_compression_token1] = ACTIONS(993), - [aux_sym_connection_attempts_token1] = ACTIONS(993), - [aux_sym_connect_timeout_token1] = ACTIONS(993), - [aux_sym_control_master_token1] = ACTIONS(993), - [aux_sym_control_path_token1] = ACTIONS(993), - [aux_sym_control_persist_token1] = ACTIONS(993), - [aux_sym_dynamic_forward_token1] = ACTIONS(993), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(993), - [aux_sym_escape_char_token1] = ACTIONS(993), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(993), - [aux_sym_fingerprint_hash_token1] = ACTIONS(993), - [aux_sym_fork_after_authentication_token1] = ACTIONS(993), - [aux_sym_forward_agent_token1] = ACTIONS(993), - [aux_sym_forward_x11_token1] = ACTIONS(995), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(993), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(993), - [aux_sym_gateway_ports_token1] = ACTIONS(993), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(993), - [aux_sym_gssapi_authentication_token1] = ACTIONS(993), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(993), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(993), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(993), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(993), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(993), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(993), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(993), - [aux_sym_hash_known_hosts_token1] = ACTIONS(993), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(993), - [aux_sym_hostbased_authentication_token1] = ACTIONS(993), - [aux_sym_host_key_algorithms_token1] = ACTIONS(993), - [aux_sym_host_key_alias_token1] = ACTIONS(993), - [aux_sym_hostname_token1] = ACTIONS(993), - [aux_sym_identities_only_token1] = ACTIONS(993), - [aux_sym_identity_agent_token1] = ACTIONS(993), - [aux_sym_identity_file_token1] = ACTIONS(993), - [aux_sym_ignore_unknown_token1] = ACTIONS(993), - [aux_sym_include_token1] = ACTIONS(993), - [aux_sym_ip_qos_token1] = ACTIONS(993), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(993), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(993), - [aux_sym_kex_algorithms_token1] = ACTIONS(993), - [aux_sym_known_hosts_command_token1] = ACTIONS(993), - [aux_sym_local_command_token1] = ACTIONS(993), - [aux_sym_local_forward_token1] = ACTIONS(993), - [aux_sym_log_level_token1] = ACTIONS(993), - [aux_sym_log_verbose_token1] = ACTIONS(993), - [aux_sym_macs_token1] = ACTIONS(993), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(993), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(993), - [aux_sym_password_authentication_token1] = ACTIONS(993), - [aux_sym_permit_local_command_token1] = ACTIONS(993), - [aux_sym_permit_remote_open_token1] = ACTIONS(993), - [aux_sym_pkcs11_provider_token1] = ACTIONS(993), - [aux_sym_port_token1] = ACTIONS(993), - [aux_sym_preferred_authentications_token1] = ACTIONS(993), - [aux_sym_protocol_token1] = ACTIONS(993), - [aux_sym_proxy_command_token1] = ACTIONS(993), - [aux_sym_proxy_jump_token1] = ACTIONS(993), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(993), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(993), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(993), - [aux_sym_pubkey_authentication_token1] = ACTIONS(993), - [aux_sym_rekey_limit_token1] = ACTIONS(993), - [aux_sym_remote_command_token1] = ACTIONS(993), - [aux_sym_remote_forward_token1] = ACTIONS(993), - [aux_sym_request_tty_token1] = ACTIONS(993), - [aux_sym_required_rsa_size_token1] = ACTIONS(993), - [aux_sym_revoked_host_keys_token1] = ACTIONS(993), - [aux_sym_security_key_provider_token1] = ACTIONS(993), - [aux_sym_send_env_token1] = ACTIONS(993), - [aux_sym_server_alive_count_max_token1] = ACTIONS(993), - [aux_sym_server_alive_interval_token1] = ACTIONS(993), - [aux_sym_session_type_token1] = ACTIONS(993), - [aux_sym_set_env_token1] = ACTIONS(993), - [aux_sym_stdin_null_token1] = ACTIONS(993), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(993), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(993), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(993), - [aux_sym_syslog_facility_token1] = ACTIONS(993), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(993), - [aux_sym_keep_alive_token1] = ACTIONS(993), - [aux_sym_tunnel_token1] = ACTIONS(995), - [aux_sym_tunnel_device_token1] = ACTIONS(993), - [aux_sym_update_host_keys_token1] = ACTIONS(993), - [aux_sym_use_keychain_token1] = ACTIONS(993), - [aux_sym_use_roaming_token1] = ACTIONS(993), - [aux_sym_user_token1] = ACTIONS(995), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(993), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(993), - [aux_sym_visual_host_key_token1] = ACTIONS(993), - [aux_sym_xauth_location_token1] = ACTIONS(993), + [ts_builtin_sym_end] = ACTIONS(998), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1000), + [anon_sym_DQUOTE] = ACTIONS(1002), + [aux_sym_match_token1] = ACTIONS(998), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(998), + [aux_sym_address_family_token1] = ACTIONS(998), + [aux_sym_batch_mode_token1] = ACTIONS(998), + [aux_sym_bind_address_token1] = ACTIONS(998), + [aux_sym_bind_interface_token1] = ACTIONS(998), + [aux_sym_canonical_domains_token1] = ACTIONS(998), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(998), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(998), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(998), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(998), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(998), + [aux_sym_certificate_file_token1] = ACTIONS(998), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(998), + [aux_sym_check_host_ip_token1] = ACTIONS(998), + [aux_sym_ciphers_token1] = ACTIONS(998), + [aux_sym_cipher_token1] = ACTIONS(1000), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(998), + [aux_sym_compression_token1] = ACTIONS(998), + [aux_sym_connection_attempts_token1] = ACTIONS(998), + [aux_sym_connect_timeout_token1] = ACTIONS(998), + [aux_sym_control_master_token1] = ACTIONS(998), + [aux_sym_control_path_token1] = ACTIONS(998), + [aux_sym_control_persist_token1] = ACTIONS(998), + [aux_sym_dynamic_forward_token1] = ACTIONS(998), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(998), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(998), + [aux_sym_escape_char_token1] = ACTIONS(998), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(998), + [aux_sym_fingerprint_hash_token1] = ACTIONS(998), + [aux_sym_fork_after_authentication_token1] = ACTIONS(998), + [aux_sym_forward_agent_token1] = ACTIONS(998), + [aux_sym_forward_x11_token1] = ACTIONS(1000), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(998), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(998), + [aux_sym_gateway_ports_token1] = ACTIONS(998), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(998), + [aux_sym_gssapi_authentication_token1] = ACTIONS(998), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(998), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(998), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(998), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(998), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(998), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(998), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(998), + [aux_sym_hash_known_hosts_token1] = ACTIONS(998), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(998), + [aux_sym_hostbased_authentication_token1] = ACTIONS(998), + [aux_sym_host_key_algorithms_token1] = ACTIONS(998), + [aux_sym_host_key_alias_token1] = ACTIONS(998), + [aux_sym_hostname_token1] = ACTIONS(998), + [aux_sym_identities_only_token1] = ACTIONS(998), + [aux_sym_identity_agent_token1] = ACTIONS(998), + [aux_sym_identity_file_token1] = ACTIONS(998), + [aux_sym_ignore_unknown_token1] = ACTIONS(998), + [aux_sym_include_token1] = ACTIONS(998), + [aux_sym_ip_qos_token1] = ACTIONS(998), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(998), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(998), + [aux_sym_kex_algorithms_token1] = ACTIONS(998), + [aux_sym_known_hosts_command_token1] = ACTIONS(998), + [aux_sym_local_command_token1] = ACTIONS(998), + [aux_sym_local_forward_token1] = ACTIONS(998), + [aux_sym_log_level_token1] = ACTIONS(998), + [aux_sym_log_verbose_token1] = ACTIONS(998), + [aux_sym_macs_token1] = ACTIONS(998), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(998), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(998), + [aux_sym_password_authentication_token1] = ACTIONS(998), + [aux_sym_permit_local_command_token1] = ACTIONS(998), + [aux_sym_permit_remote_open_token1] = ACTIONS(998), + [aux_sym_pkcs11_provider_token1] = ACTIONS(998), + [aux_sym_port_token1] = ACTIONS(998), + [aux_sym_preferred_authentications_token1] = ACTIONS(998), + [aux_sym_protocol_token1] = ACTIONS(998), + [aux_sym_proxy_command_token1] = ACTIONS(998), + [aux_sym_proxy_jump_token1] = ACTIONS(998), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(998), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(998), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(998), + [aux_sym_pubkey_authentication_token1] = ACTIONS(998), + [aux_sym_rekey_limit_token1] = ACTIONS(998), + [aux_sym_remote_command_token1] = ACTIONS(998), + [aux_sym_remote_forward_token1] = ACTIONS(998), + [aux_sym_request_tty_token1] = ACTIONS(998), + [aux_sym_required_rsa_size_token1] = ACTIONS(998), + [aux_sym_revoked_host_keys_token1] = ACTIONS(998), + [aux_sym_security_key_provider_token1] = ACTIONS(998), + [aux_sym_send_env_token1] = ACTIONS(998), + [aux_sym_server_alive_count_max_token1] = ACTIONS(998), + [aux_sym_server_alive_interval_token1] = ACTIONS(998), + [aux_sym_session_type_token1] = ACTIONS(998), + [aux_sym_set_env_token1] = ACTIONS(998), + [aux_sym_stdin_null_token1] = ACTIONS(998), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(998), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(998), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(998), + [aux_sym_syslog_facility_token1] = ACTIONS(998), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(998), + [aux_sym_keep_alive_token1] = ACTIONS(998), + [aux_sym_tunnel_token1] = ACTIONS(1000), + [aux_sym_tunnel_device_token1] = ACTIONS(998), + [aux_sym_update_host_keys_token1] = ACTIONS(998), + [aux_sym_use_keychain_token1] = ACTIONS(998), + [aux_sym_use_roaming_token1] = ACTIONS(998), + [aux_sym_user_token1] = ACTIONS(1000), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(998), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(998), + [aux_sym_visual_host_key_token1] = ACTIONS(998), + [aux_sym_xauth_location_token1] = ACTIONS(998), }, [77] = { - [ts_builtin_sym_end] = ACTIONS(999), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1001), - [anon_sym_DQUOTE] = ACTIONS(1003), - [aux_sym_match_token1] = ACTIONS(999), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(999), - [aux_sym_address_family_token1] = ACTIONS(999), - [aux_sym_batch_mode_token1] = ACTIONS(999), - [aux_sym_bind_address_token1] = ACTIONS(999), - [aux_sym_bind_interface_token1] = ACTIONS(999), - [aux_sym_canonical_domains_token1] = ACTIONS(999), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(999), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(999), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(999), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(999), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(999), - [aux_sym_certificate_file_token1] = ACTIONS(999), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(999), - [aux_sym_check_host_ip_token1] = ACTIONS(999), - [aux_sym_ciphers_token1] = ACTIONS(999), - [aux_sym_cipher_token1] = ACTIONS(1001), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(999), - [aux_sym_compression_token1] = ACTIONS(999), - [aux_sym_connection_attempts_token1] = ACTIONS(999), - [aux_sym_connect_timeout_token1] = ACTIONS(999), - [aux_sym_control_master_token1] = ACTIONS(999), - [aux_sym_control_path_token1] = ACTIONS(999), - [aux_sym_control_persist_token1] = ACTIONS(999), - [aux_sym_dynamic_forward_token1] = ACTIONS(999), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(999), - [aux_sym_escape_char_token1] = ACTIONS(999), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(999), - [aux_sym_fingerprint_hash_token1] = ACTIONS(999), - [aux_sym_fork_after_authentication_token1] = ACTIONS(999), - [aux_sym_forward_agent_token1] = ACTIONS(999), - [aux_sym_forward_x11_token1] = ACTIONS(1001), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(999), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(999), - [aux_sym_gateway_ports_token1] = ACTIONS(999), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(999), - [aux_sym_gssapi_authentication_token1] = ACTIONS(999), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(999), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(999), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(999), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(999), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(999), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(999), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(999), - [aux_sym_hash_known_hosts_token1] = ACTIONS(999), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(999), - [aux_sym_hostbased_authentication_token1] = ACTIONS(999), - [aux_sym_host_key_algorithms_token1] = ACTIONS(999), - [aux_sym_host_key_alias_token1] = ACTIONS(999), - [aux_sym_hostname_token1] = ACTIONS(999), - [aux_sym_identities_only_token1] = ACTIONS(999), - [aux_sym_identity_agent_token1] = ACTIONS(999), - [aux_sym_identity_file_token1] = ACTIONS(999), - [aux_sym_ignore_unknown_token1] = ACTIONS(999), - [aux_sym_include_token1] = ACTIONS(999), - [aux_sym_ip_qos_token1] = ACTIONS(999), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(999), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(999), - [aux_sym_kex_algorithms_token1] = ACTIONS(999), - [aux_sym_known_hosts_command_token1] = ACTIONS(999), - [aux_sym_local_command_token1] = ACTIONS(999), - [aux_sym_local_forward_token1] = ACTIONS(999), - [aux_sym_log_level_token1] = ACTIONS(999), - [aux_sym_log_verbose_token1] = ACTIONS(999), - [aux_sym_macs_token1] = ACTIONS(999), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(999), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(999), - [aux_sym_password_authentication_token1] = ACTIONS(999), - [aux_sym_permit_local_command_token1] = ACTIONS(999), - [aux_sym_permit_remote_open_token1] = ACTIONS(999), - [aux_sym_pkcs11_provider_token1] = ACTIONS(999), - [aux_sym_port_token1] = ACTIONS(999), - [aux_sym_preferred_authentications_token1] = ACTIONS(999), - [aux_sym_protocol_token1] = ACTIONS(999), - [aux_sym_proxy_command_token1] = ACTIONS(999), - [aux_sym_proxy_jump_token1] = ACTIONS(999), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(999), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(999), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(999), - [aux_sym_pubkey_authentication_token1] = ACTIONS(999), - [aux_sym_rekey_limit_token1] = ACTIONS(999), - [aux_sym_remote_command_token1] = ACTIONS(999), - [aux_sym_remote_forward_token1] = ACTIONS(999), - [aux_sym_request_tty_token1] = ACTIONS(999), - [aux_sym_required_rsa_size_token1] = ACTIONS(999), - [aux_sym_revoked_host_keys_token1] = ACTIONS(999), - [aux_sym_security_key_provider_token1] = ACTIONS(999), - [aux_sym_send_env_token1] = ACTIONS(999), - [aux_sym_server_alive_count_max_token1] = ACTIONS(999), - [aux_sym_server_alive_interval_token1] = ACTIONS(999), - [aux_sym_session_type_token1] = ACTIONS(999), - [aux_sym_set_env_token1] = ACTIONS(999), - [aux_sym_stdin_null_token1] = ACTIONS(999), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(999), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(999), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(999), - [aux_sym_syslog_facility_token1] = ACTIONS(999), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(999), - [aux_sym_keep_alive_token1] = ACTIONS(999), - [aux_sym_tunnel_token1] = ACTIONS(1001), - [aux_sym_tunnel_device_token1] = ACTIONS(999), - [aux_sym_update_host_keys_token1] = ACTIONS(999), - [aux_sym_use_keychain_token1] = ACTIONS(999), - [aux_sym_use_roaming_token1] = ACTIONS(999), - [aux_sym_user_token1] = ACTIONS(1001), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(999), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(999), - [aux_sym_visual_host_key_token1] = ACTIONS(999), - [aux_sym_xauth_location_token1] = ACTIONS(999), + [ts_builtin_sym_end] = ACTIONS(1004), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1008), + [aux_sym_match_token1] = ACTIONS(1004), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1004), + [aux_sym_address_family_token1] = ACTIONS(1004), + [aux_sym_batch_mode_token1] = ACTIONS(1004), + [aux_sym_bind_address_token1] = ACTIONS(1004), + [aux_sym_bind_interface_token1] = ACTIONS(1004), + [aux_sym_canonical_domains_token1] = ACTIONS(1004), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1004), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1004), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1004), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1004), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1004), + [aux_sym_certificate_file_token1] = ACTIONS(1004), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1004), + [aux_sym_check_host_ip_token1] = ACTIONS(1004), + [aux_sym_ciphers_token1] = ACTIONS(1004), + [aux_sym_cipher_token1] = ACTIONS(1006), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1004), + [aux_sym_compression_token1] = ACTIONS(1004), + [aux_sym_connection_attempts_token1] = ACTIONS(1004), + [aux_sym_connect_timeout_token1] = ACTIONS(1004), + [aux_sym_control_master_token1] = ACTIONS(1004), + [aux_sym_control_path_token1] = ACTIONS(1004), + [aux_sym_control_persist_token1] = ACTIONS(1004), + [aux_sym_dynamic_forward_token1] = ACTIONS(1004), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1004), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1004), + [aux_sym_escape_char_token1] = ACTIONS(1004), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1004), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1004), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1004), + [aux_sym_forward_agent_token1] = ACTIONS(1004), + [aux_sym_forward_x11_token1] = ACTIONS(1006), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1004), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1004), + [aux_sym_gateway_ports_token1] = ACTIONS(1004), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1004), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1004), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1004), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1004), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1004), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1004), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1004), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1004), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1004), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1004), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1004), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1004), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1004), + [aux_sym_host_key_alias_token1] = ACTIONS(1004), + [aux_sym_hostname_token1] = ACTIONS(1004), + [aux_sym_identities_only_token1] = ACTIONS(1004), + [aux_sym_identity_agent_token1] = ACTIONS(1004), + [aux_sym_identity_file_token1] = ACTIONS(1004), + [aux_sym_ignore_unknown_token1] = ACTIONS(1004), + [aux_sym_include_token1] = ACTIONS(1004), + [aux_sym_ip_qos_token1] = ACTIONS(1004), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1004), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1004), + [aux_sym_kex_algorithms_token1] = ACTIONS(1004), + [aux_sym_known_hosts_command_token1] = ACTIONS(1004), + [aux_sym_local_command_token1] = ACTIONS(1004), + [aux_sym_local_forward_token1] = ACTIONS(1004), + [aux_sym_log_level_token1] = ACTIONS(1004), + [aux_sym_log_verbose_token1] = ACTIONS(1004), + [aux_sym_macs_token1] = ACTIONS(1004), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1004), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1004), + [aux_sym_password_authentication_token1] = ACTIONS(1004), + [aux_sym_permit_local_command_token1] = ACTIONS(1004), + [aux_sym_permit_remote_open_token1] = ACTIONS(1004), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1004), + [aux_sym_port_token1] = ACTIONS(1004), + [aux_sym_preferred_authentications_token1] = ACTIONS(1004), + [aux_sym_protocol_token1] = ACTIONS(1004), + [aux_sym_proxy_command_token1] = ACTIONS(1004), + [aux_sym_proxy_jump_token1] = ACTIONS(1004), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1004), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1004), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1004), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1004), + [aux_sym_rekey_limit_token1] = ACTIONS(1004), + [aux_sym_remote_command_token1] = ACTIONS(1004), + [aux_sym_remote_forward_token1] = ACTIONS(1004), + [aux_sym_request_tty_token1] = ACTIONS(1004), + [aux_sym_required_rsa_size_token1] = ACTIONS(1004), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1004), + [aux_sym_security_key_provider_token1] = ACTIONS(1004), + [aux_sym_send_env_token1] = ACTIONS(1004), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1004), + [aux_sym_server_alive_interval_token1] = ACTIONS(1004), + [aux_sym_session_type_token1] = ACTIONS(1004), + [aux_sym_set_env_token1] = ACTIONS(1004), + [aux_sym_stdin_null_token1] = ACTIONS(1004), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1004), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1004), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1004), + [aux_sym_syslog_facility_token1] = ACTIONS(1004), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1004), + [aux_sym_keep_alive_token1] = ACTIONS(1004), + [aux_sym_tunnel_token1] = ACTIONS(1006), + [aux_sym_tunnel_device_token1] = ACTIONS(1004), + [aux_sym_update_host_keys_token1] = ACTIONS(1004), + [aux_sym_use_keychain_token1] = ACTIONS(1004), + [aux_sym_use_roaming_token1] = ACTIONS(1004), + [aux_sym_user_token1] = ACTIONS(1006), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1004), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1004), + [aux_sym_visual_host_key_token1] = ACTIONS(1004), + [aux_sym_xauth_location_token1] = ACTIONS(1004), }, [78] = { - [ts_builtin_sym_end] = ACTIONS(1005), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1007), - [anon_sym_DQUOTE] = ACTIONS(1009), - [aux_sym_match_token1] = ACTIONS(1005), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1005), - [aux_sym_address_family_token1] = ACTIONS(1005), - [aux_sym_batch_mode_token1] = ACTIONS(1005), - [aux_sym_bind_address_token1] = ACTIONS(1005), - [aux_sym_bind_interface_token1] = ACTIONS(1005), - [aux_sym_canonical_domains_token1] = ACTIONS(1005), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1005), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1005), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1005), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1005), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1005), - [aux_sym_certificate_file_token1] = ACTIONS(1005), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1005), - [aux_sym_check_host_ip_token1] = ACTIONS(1005), - [aux_sym_ciphers_token1] = ACTIONS(1005), - [aux_sym_cipher_token1] = ACTIONS(1007), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1005), - [aux_sym_compression_token1] = ACTIONS(1005), - [aux_sym_connection_attempts_token1] = ACTIONS(1005), - [aux_sym_connect_timeout_token1] = ACTIONS(1005), - [aux_sym_control_master_token1] = ACTIONS(1005), - [aux_sym_control_path_token1] = ACTIONS(1005), - [aux_sym_control_persist_token1] = ACTIONS(1005), - [aux_sym_dynamic_forward_token1] = ACTIONS(1005), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1005), - [aux_sym_escape_char_token1] = ACTIONS(1005), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1005), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1005), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1005), - [aux_sym_forward_agent_token1] = ACTIONS(1005), - [aux_sym_forward_x11_token1] = ACTIONS(1007), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1005), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1005), - [aux_sym_gateway_ports_token1] = ACTIONS(1005), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1005), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1005), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1005), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1005), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1005), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1005), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1005), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1005), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1005), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1005), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1005), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1005), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1005), - [aux_sym_host_key_alias_token1] = ACTIONS(1005), - [aux_sym_hostname_token1] = ACTIONS(1005), - [aux_sym_identities_only_token1] = ACTIONS(1005), - [aux_sym_identity_agent_token1] = ACTIONS(1005), - [aux_sym_identity_file_token1] = ACTIONS(1005), - [aux_sym_ignore_unknown_token1] = ACTIONS(1005), - [aux_sym_include_token1] = ACTIONS(1005), - [aux_sym_ip_qos_token1] = ACTIONS(1005), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1005), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1005), - [aux_sym_kex_algorithms_token1] = ACTIONS(1005), - [aux_sym_known_hosts_command_token1] = ACTIONS(1005), - [aux_sym_local_command_token1] = ACTIONS(1005), - [aux_sym_local_forward_token1] = ACTIONS(1005), - [aux_sym_log_level_token1] = ACTIONS(1005), - [aux_sym_log_verbose_token1] = ACTIONS(1005), - [aux_sym_macs_token1] = ACTIONS(1005), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1005), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1005), - [aux_sym_password_authentication_token1] = ACTIONS(1005), - [aux_sym_permit_local_command_token1] = ACTIONS(1005), - [aux_sym_permit_remote_open_token1] = ACTIONS(1005), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1005), - [aux_sym_port_token1] = ACTIONS(1005), - [aux_sym_preferred_authentications_token1] = ACTIONS(1005), - [aux_sym_protocol_token1] = ACTIONS(1005), - [aux_sym_proxy_command_token1] = ACTIONS(1005), - [aux_sym_proxy_jump_token1] = ACTIONS(1005), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1005), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1005), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1005), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1005), - [aux_sym_rekey_limit_token1] = ACTIONS(1005), - [aux_sym_remote_command_token1] = ACTIONS(1005), - [aux_sym_remote_forward_token1] = ACTIONS(1005), - [aux_sym_request_tty_token1] = ACTIONS(1005), - [aux_sym_required_rsa_size_token1] = ACTIONS(1005), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1005), - [aux_sym_security_key_provider_token1] = ACTIONS(1005), - [aux_sym_send_env_token1] = ACTIONS(1005), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1005), - [aux_sym_server_alive_interval_token1] = ACTIONS(1005), - [aux_sym_session_type_token1] = ACTIONS(1005), - [aux_sym_set_env_token1] = ACTIONS(1005), - [aux_sym_stdin_null_token1] = ACTIONS(1005), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1005), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1005), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1005), - [aux_sym_syslog_facility_token1] = ACTIONS(1005), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1005), - [aux_sym_keep_alive_token1] = ACTIONS(1005), - [aux_sym_tunnel_token1] = ACTIONS(1007), - [aux_sym_tunnel_device_token1] = ACTIONS(1005), - [aux_sym_update_host_keys_token1] = ACTIONS(1005), - [aux_sym_use_keychain_token1] = ACTIONS(1005), - [aux_sym_use_roaming_token1] = ACTIONS(1005), - [aux_sym_user_token1] = ACTIONS(1007), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1005), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1005), - [aux_sym_visual_host_key_token1] = ACTIONS(1005), - [aux_sym_xauth_location_token1] = ACTIONS(1005), + [ts_builtin_sym_end] = ACTIONS(1010), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1012), + [anon_sym_DQUOTE] = ACTIONS(1014), + [aux_sym_match_token1] = ACTIONS(1010), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1010), + [aux_sym_address_family_token1] = ACTIONS(1010), + [aux_sym_batch_mode_token1] = ACTIONS(1010), + [aux_sym_bind_address_token1] = ACTIONS(1010), + [aux_sym_bind_interface_token1] = ACTIONS(1010), + [aux_sym_canonical_domains_token1] = ACTIONS(1010), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1010), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1010), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1010), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1010), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1010), + [aux_sym_certificate_file_token1] = ACTIONS(1010), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1010), + [aux_sym_check_host_ip_token1] = ACTIONS(1010), + [aux_sym_ciphers_token1] = ACTIONS(1010), + [aux_sym_cipher_token1] = ACTIONS(1012), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1010), + [aux_sym_compression_token1] = ACTIONS(1010), + [aux_sym_connection_attempts_token1] = ACTIONS(1010), + [aux_sym_connect_timeout_token1] = ACTIONS(1010), + [aux_sym_control_master_token1] = ACTIONS(1010), + [aux_sym_control_path_token1] = ACTIONS(1010), + [aux_sym_control_persist_token1] = ACTIONS(1010), + [aux_sym_dynamic_forward_token1] = ACTIONS(1010), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1010), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1010), + [aux_sym_escape_char_token1] = ACTIONS(1010), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1010), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1010), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1010), + [aux_sym_forward_agent_token1] = ACTIONS(1010), + [aux_sym_forward_x11_token1] = ACTIONS(1012), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1010), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1010), + [aux_sym_gateway_ports_token1] = ACTIONS(1010), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1010), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1010), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1010), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1010), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1010), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1010), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1010), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1010), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1010), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1010), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1010), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1010), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1010), + [aux_sym_host_key_alias_token1] = ACTIONS(1010), + [aux_sym_hostname_token1] = ACTIONS(1010), + [aux_sym_identities_only_token1] = ACTIONS(1010), + [aux_sym_identity_agent_token1] = ACTIONS(1010), + [aux_sym_identity_file_token1] = ACTIONS(1010), + [aux_sym_ignore_unknown_token1] = ACTIONS(1010), + [aux_sym_include_token1] = ACTIONS(1010), + [aux_sym_ip_qos_token1] = ACTIONS(1010), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1010), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1010), + [aux_sym_kex_algorithms_token1] = ACTIONS(1010), + [aux_sym_known_hosts_command_token1] = ACTIONS(1010), + [aux_sym_local_command_token1] = ACTIONS(1010), + [aux_sym_local_forward_token1] = ACTIONS(1010), + [aux_sym_log_level_token1] = ACTIONS(1010), + [aux_sym_log_verbose_token1] = ACTIONS(1010), + [aux_sym_macs_token1] = ACTIONS(1010), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1010), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1010), + [aux_sym_password_authentication_token1] = ACTIONS(1010), + [aux_sym_permit_local_command_token1] = ACTIONS(1010), + [aux_sym_permit_remote_open_token1] = ACTIONS(1010), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1010), + [aux_sym_port_token1] = ACTIONS(1010), + [aux_sym_preferred_authentications_token1] = ACTIONS(1010), + [aux_sym_protocol_token1] = ACTIONS(1010), + [aux_sym_proxy_command_token1] = ACTIONS(1010), + [aux_sym_proxy_jump_token1] = ACTIONS(1010), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1010), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1010), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1010), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1010), + [aux_sym_rekey_limit_token1] = ACTIONS(1010), + [aux_sym_remote_command_token1] = ACTIONS(1010), + [aux_sym_remote_forward_token1] = ACTIONS(1010), + [aux_sym_request_tty_token1] = ACTIONS(1010), + [aux_sym_required_rsa_size_token1] = ACTIONS(1010), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1010), + [aux_sym_security_key_provider_token1] = ACTIONS(1010), + [aux_sym_send_env_token1] = ACTIONS(1010), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1010), + [aux_sym_server_alive_interval_token1] = ACTIONS(1010), + [aux_sym_session_type_token1] = ACTIONS(1010), + [aux_sym_set_env_token1] = ACTIONS(1010), + [aux_sym_stdin_null_token1] = ACTIONS(1010), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1010), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1010), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1010), + [aux_sym_syslog_facility_token1] = ACTIONS(1010), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1010), + [aux_sym_keep_alive_token1] = ACTIONS(1010), + [aux_sym_tunnel_token1] = ACTIONS(1012), + [aux_sym_tunnel_device_token1] = ACTIONS(1010), + [aux_sym_update_host_keys_token1] = ACTIONS(1010), + [aux_sym_use_keychain_token1] = ACTIONS(1010), + [aux_sym_use_roaming_token1] = ACTIONS(1010), + [aux_sym_user_token1] = ACTIONS(1012), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1010), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1010), + [aux_sym_visual_host_key_token1] = ACTIONS(1010), + [aux_sym_xauth_location_token1] = ACTIONS(1010), }, [79] = { - [ts_builtin_sym_end] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1015), - [aux_sym_match_token1] = ACTIONS(1011), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1011), - [aux_sym_address_family_token1] = ACTIONS(1011), - [aux_sym_batch_mode_token1] = ACTIONS(1011), - [aux_sym_bind_address_token1] = ACTIONS(1011), - [aux_sym_bind_interface_token1] = ACTIONS(1011), - [aux_sym_canonical_domains_token1] = ACTIONS(1011), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1011), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1011), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1011), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1011), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1011), - [aux_sym_certificate_file_token1] = ACTIONS(1011), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1011), - [aux_sym_check_host_ip_token1] = ACTIONS(1011), - [aux_sym_ciphers_token1] = ACTIONS(1011), - [aux_sym_cipher_token1] = ACTIONS(1013), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1011), - [aux_sym_compression_token1] = ACTIONS(1011), - [aux_sym_connection_attempts_token1] = ACTIONS(1011), - [aux_sym_connect_timeout_token1] = ACTIONS(1011), - [aux_sym_control_master_token1] = ACTIONS(1011), - [aux_sym_control_path_token1] = ACTIONS(1011), - [aux_sym_control_persist_token1] = ACTIONS(1011), - [aux_sym_dynamic_forward_token1] = ACTIONS(1011), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1011), - [aux_sym_escape_char_token1] = ACTIONS(1011), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1011), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1011), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1011), - [aux_sym_forward_agent_token1] = ACTIONS(1011), - [aux_sym_forward_x11_token1] = ACTIONS(1013), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1011), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1011), - [aux_sym_gateway_ports_token1] = ACTIONS(1011), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1011), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1011), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1011), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1011), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1011), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1011), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1011), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1011), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1011), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1011), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1011), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1011), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1011), - [aux_sym_host_key_alias_token1] = ACTIONS(1011), - [aux_sym_hostname_token1] = ACTIONS(1011), - [aux_sym_identities_only_token1] = ACTIONS(1011), - [aux_sym_identity_agent_token1] = ACTIONS(1011), - [aux_sym_identity_file_token1] = ACTIONS(1011), - [aux_sym_ignore_unknown_token1] = ACTIONS(1011), - [aux_sym_include_token1] = ACTIONS(1011), - [aux_sym_ip_qos_token1] = ACTIONS(1011), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1011), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1011), - [aux_sym_kex_algorithms_token1] = ACTIONS(1011), - [aux_sym_known_hosts_command_token1] = ACTIONS(1011), - [aux_sym_local_command_token1] = ACTIONS(1011), - [aux_sym_local_forward_token1] = ACTIONS(1011), - [aux_sym_log_level_token1] = ACTIONS(1011), - [aux_sym_log_verbose_token1] = ACTIONS(1011), - [aux_sym_macs_token1] = ACTIONS(1011), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1011), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1011), - [aux_sym_password_authentication_token1] = ACTIONS(1011), - [aux_sym_permit_local_command_token1] = ACTIONS(1011), - [aux_sym_permit_remote_open_token1] = ACTIONS(1011), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1011), - [aux_sym_port_token1] = ACTIONS(1011), - [aux_sym_preferred_authentications_token1] = ACTIONS(1011), - [aux_sym_protocol_token1] = ACTIONS(1011), - [aux_sym_proxy_command_token1] = ACTIONS(1011), - [aux_sym_proxy_jump_token1] = ACTIONS(1011), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1011), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1011), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1011), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1011), - [aux_sym_rekey_limit_token1] = ACTIONS(1011), - [aux_sym_remote_command_token1] = ACTIONS(1011), - [aux_sym_remote_forward_token1] = ACTIONS(1011), - [aux_sym_request_tty_token1] = ACTIONS(1011), - [aux_sym_required_rsa_size_token1] = ACTIONS(1011), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1011), - [aux_sym_security_key_provider_token1] = ACTIONS(1011), - [aux_sym_send_env_token1] = ACTIONS(1011), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1011), - [aux_sym_server_alive_interval_token1] = ACTIONS(1011), - [aux_sym_session_type_token1] = ACTIONS(1011), - [aux_sym_set_env_token1] = ACTIONS(1011), - [aux_sym_stdin_null_token1] = ACTIONS(1011), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1011), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1011), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1011), - [aux_sym_syslog_facility_token1] = ACTIONS(1011), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1011), - [aux_sym_keep_alive_token1] = ACTIONS(1011), - [aux_sym_tunnel_token1] = ACTIONS(1013), - [aux_sym_tunnel_device_token1] = ACTIONS(1011), - [aux_sym_update_host_keys_token1] = ACTIONS(1011), - [aux_sym_use_keychain_token1] = ACTIONS(1011), - [aux_sym_use_roaming_token1] = ACTIONS(1011), - [aux_sym_user_token1] = ACTIONS(1013), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1011), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1011), - [aux_sym_visual_host_key_token1] = ACTIONS(1011), - [aux_sym_xauth_location_token1] = ACTIONS(1011), + [ts_builtin_sym_end] = ACTIONS(1016), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1020), + [aux_sym_match_token1] = ACTIONS(1016), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1016), + [aux_sym_address_family_token1] = ACTIONS(1016), + [aux_sym_batch_mode_token1] = ACTIONS(1016), + [aux_sym_bind_address_token1] = ACTIONS(1016), + [aux_sym_bind_interface_token1] = ACTIONS(1016), + [aux_sym_canonical_domains_token1] = ACTIONS(1016), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1016), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1016), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1016), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1016), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1016), + [aux_sym_certificate_file_token1] = ACTIONS(1016), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1016), + [aux_sym_check_host_ip_token1] = ACTIONS(1016), + [aux_sym_ciphers_token1] = ACTIONS(1016), + [aux_sym_cipher_token1] = ACTIONS(1018), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1016), + [aux_sym_compression_token1] = ACTIONS(1016), + [aux_sym_connection_attempts_token1] = ACTIONS(1016), + [aux_sym_connect_timeout_token1] = ACTIONS(1016), + [aux_sym_control_master_token1] = ACTIONS(1016), + [aux_sym_control_path_token1] = ACTIONS(1016), + [aux_sym_control_persist_token1] = ACTIONS(1016), + [aux_sym_dynamic_forward_token1] = ACTIONS(1016), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1016), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1016), + [aux_sym_escape_char_token1] = ACTIONS(1016), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1016), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1016), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1016), + [aux_sym_forward_agent_token1] = ACTIONS(1016), + [aux_sym_forward_x11_token1] = ACTIONS(1018), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1016), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1016), + [aux_sym_gateway_ports_token1] = ACTIONS(1016), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1016), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1016), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1016), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1016), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1016), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1016), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1016), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1016), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1016), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1016), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1016), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1016), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1016), + [aux_sym_host_key_alias_token1] = ACTIONS(1016), + [aux_sym_hostname_token1] = ACTIONS(1016), + [aux_sym_identities_only_token1] = ACTIONS(1016), + [aux_sym_identity_agent_token1] = ACTIONS(1016), + [aux_sym_identity_file_token1] = ACTIONS(1016), + [aux_sym_ignore_unknown_token1] = ACTIONS(1016), + [aux_sym_include_token1] = ACTIONS(1016), + [aux_sym_ip_qos_token1] = ACTIONS(1016), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1016), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1016), + [aux_sym_kex_algorithms_token1] = ACTIONS(1016), + [aux_sym_known_hosts_command_token1] = ACTIONS(1016), + [aux_sym_local_command_token1] = ACTIONS(1016), + [aux_sym_local_forward_token1] = ACTIONS(1016), + [aux_sym_log_level_token1] = ACTIONS(1016), + [aux_sym_log_verbose_token1] = ACTIONS(1016), + [aux_sym_macs_token1] = ACTIONS(1016), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1016), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1016), + [aux_sym_password_authentication_token1] = ACTIONS(1016), + [aux_sym_permit_local_command_token1] = ACTIONS(1016), + [aux_sym_permit_remote_open_token1] = ACTIONS(1016), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1016), + [aux_sym_port_token1] = ACTIONS(1016), + [aux_sym_preferred_authentications_token1] = ACTIONS(1016), + [aux_sym_protocol_token1] = ACTIONS(1016), + [aux_sym_proxy_command_token1] = ACTIONS(1016), + [aux_sym_proxy_jump_token1] = ACTIONS(1016), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1016), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1016), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1016), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1016), + [aux_sym_rekey_limit_token1] = ACTIONS(1016), + [aux_sym_remote_command_token1] = ACTIONS(1016), + [aux_sym_remote_forward_token1] = ACTIONS(1016), + [aux_sym_request_tty_token1] = ACTIONS(1016), + [aux_sym_required_rsa_size_token1] = ACTIONS(1016), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1016), + [aux_sym_security_key_provider_token1] = ACTIONS(1016), + [aux_sym_send_env_token1] = ACTIONS(1016), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1016), + [aux_sym_server_alive_interval_token1] = ACTIONS(1016), + [aux_sym_session_type_token1] = ACTIONS(1016), + [aux_sym_set_env_token1] = ACTIONS(1016), + [aux_sym_stdin_null_token1] = ACTIONS(1016), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1016), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1016), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1016), + [aux_sym_syslog_facility_token1] = ACTIONS(1016), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1016), + [aux_sym_keep_alive_token1] = ACTIONS(1016), + [aux_sym_tunnel_token1] = ACTIONS(1018), + [aux_sym_tunnel_device_token1] = ACTIONS(1016), + [aux_sym_update_host_keys_token1] = ACTIONS(1016), + [aux_sym_use_keychain_token1] = ACTIONS(1016), + [aux_sym_use_roaming_token1] = ACTIONS(1016), + [aux_sym_user_token1] = ACTIONS(1018), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1016), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1016), + [aux_sym_visual_host_key_token1] = ACTIONS(1016), + [aux_sym_xauth_location_token1] = ACTIONS(1016), }, [80] = { - [ts_builtin_sym_end] = ACTIONS(1017), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1019), - [anon_sym_DQUOTE] = ACTIONS(1021), - [aux_sym_match_token1] = ACTIONS(1017), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1017), - [aux_sym_address_family_token1] = ACTIONS(1017), - [aux_sym_batch_mode_token1] = ACTIONS(1017), - [aux_sym_bind_address_token1] = ACTIONS(1017), - [aux_sym_bind_interface_token1] = ACTIONS(1017), - [aux_sym_canonical_domains_token1] = ACTIONS(1017), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1017), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1017), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1017), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1017), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1017), - [aux_sym_certificate_file_token1] = ACTIONS(1017), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1017), - [aux_sym_check_host_ip_token1] = ACTIONS(1017), - [aux_sym_ciphers_token1] = ACTIONS(1017), - [aux_sym_cipher_token1] = ACTIONS(1019), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1017), - [aux_sym_compression_token1] = ACTIONS(1017), - [aux_sym_connection_attempts_token1] = ACTIONS(1017), - [aux_sym_connect_timeout_token1] = ACTIONS(1017), - [aux_sym_control_master_token1] = ACTIONS(1017), - [aux_sym_control_path_token1] = ACTIONS(1017), - [aux_sym_control_persist_token1] = ACTIONS(1017), - [aux_sym_dynamic_forward_token1] = ACTIONS(1017), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1017), - [aux_sym_escape_char_token1] = ACTIONS(1017), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1017), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1017), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1017), - [aux_sym_forward_agent_token1] = ACTIONS(1017), - [aux_sym_forward_x11_token1] = ACTIONS(1019), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1017), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1017), - [aux_sym_gateway_ports_token1] = ACTIONS(1017), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1017), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1017), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1017), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1017), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1017), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1017), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1017), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1017), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1017), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1017), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1017), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1017), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1017), - [aux_sym_host_key_alias_token1] = ACTIONS(1017), - [aux_sym_hostname_token1] = ACTIONS(1017), - [aux_sym_identities_only_token1] = ACTIONS(1017), - [aux_sym_identity_agent_token1] = ACTIONS(1017), - [aux_sym_identity_file_token1] = ACTIONS(1017), - [aux_sym_ignore_unknown_token1] = ACTIONS(1017), - [aux_sym_include_token1] = ACTIONS(1017), - [aux_sym_ip_qos_token1] = ACTIONS(1017), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1017), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1017), - [aux_sym_kex_algorithms_token1] = ACTIONS(1017), - [aux_sym_known_hosts_command_token1] = ACTIONS(1017), - [aux_sym_local_command_token1] = ACTIONS(1017), - [aux_sym_local_forward_token1] = ACTIONS(1017), - [aux_sym_log_level_token1] = ACTIONS(1017), - [aux_sym_log_verbose_token1] = ACTIONS(1017), - [aux_sym_macs_token1] = ACTIONS(1017), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1017), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1017), - [aux_sym_password_authentication_token1] = ACTIONS(1017), - [aux_sym_permit_local_command_token1] = ACTIONS(1017), - [aux_sym_permit_remote_open_token1] = ACTIONS(1017), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1017), - [aux_sym_port_token1] = ACTIONS(1017), - [aux_sym_preferred_authentications_token1] = ACTIONS(1017), - [aux_sym_protocol_token1] = ACTIONS(1017), - [aux_sym_proxy_command_token1] = ACTIONS(1017), - [aux_sym_proxy_jump_token1] = ACTIONS(1017), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1017), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1017), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1017), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1017), - [aux_sym_rekey_limit_token1] = ACTIONS(1017), - [aux_sym_remote_command_token1] = ACTIONS(1017), - [aux_sym_remote_forward_token1] = ACTIONS(1017), - [aux_sym_request_tty_token1] = ACTIONS(1017), - [aux_sym_required_rsa_size_token1] = ACTIONS(1017), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1017), - [aux_sym_security_key_provider_token1] = ACTIONS(1017), - [aux_sym_send_env_token1] = ACTIONS(1017), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1017), - [aux_sym_server_alive_interval_token1] = ACTIONS(1017), - [aux_sym_session_type_token1] = ACTIONS(1017), - [aux_sym_set_env_token1] = ACTIONS(1017), - [aux_sym_stdin_null_token1] = ACTIONS(1017), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1017), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1017), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1017), - [aux_sym_syslog_facility_token1] = ACTIONS(1017), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1017), - [aux_sym_keep_alive_token1] = ACTIONS(1017), - [aux_sym_tunnel_token1] = ACTIONS(1019), - [aux_sym_tunnel_device_token1] = ACTIONS(1017), - [aux_sym_update_host_keys_token1] = ACTIONS(1017), - [aux_sym_use_keychain_token1] = ACTIONS(1017), - [aux_sym_use_roaming_token1] = ACTIONS(1017), - [aux_sym_user_token1] = ACTIONS(1019), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1017), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1017), - [aux_sym_visual_host_key_token1] = ACTIONS(1017), - [aux_sym_xauth_location_token1] = ACTIONS(1017), + [ts_builtin_sym_end] = ACTIONS(1022), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1026), + [aux_sym_match_token1] = ACTIONS(1022), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1022), + [aux_sym_address_family_token1] = ACTIONS(1022), + [aux_sym_batch_mode_token1] = ACTIONS(1022), + [aux_sym_bind_address_token1] = ACTIONS(1022), + [aux_sym_bind_interface_token1] = ACTIONS(1022), + [aux_sym_canonical_domains_token1] = ACTIONS(1022), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1022), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1022), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1022), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1022), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1022), + [aux_sym_certificate_file_token1] = ACTIONS(1022), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1022), + [aux_sym_check_host_ip_token1] = ACTIONS(1022), + [aux_sym_ciphers_token1] = ACTIONS(1022), + [aux_sym_cipher_token1] = ACTIONS(1024), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1022), + [aux_sym_compression_token1] = ACTIONS(1022), + [aux_sym_connection_attempts_token1] = ACTIONS(1022), + [aux_sym_connect_timeout_token1] = ACTIONS(1022), + [aux_sym_control_master_token1] = ACTIONS(1022), + [aux_sym_control_path_token1] = ACTIONS(1022), + [aux_sym_control_persist_token1] = ACTIONS(1022), + [aux_sym_dynamic_forward_token1] = ACTIONS(1022), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1022), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1022), + [aux_sym_escape_char_token1] = ACTIONS(1022), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1022), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1022), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1022), + [aux_sym_forward_agent_token1] = ACTIONS(1022), + [aux_sym_forward_x11_token1] = ACTIONS(1024), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1022), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1022), + [aux_sym_gateway_ports_token1] = ACTIONS(1022), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1022), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1022), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1022), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1022), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1022), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1022), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1022), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1022), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1022), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1022), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1022), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1022), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1022), + [aux_sym_host_key_alias_token1] = ACTIONS(1022), + [aux_sym_hostname_token1] = ACTIONS(1022), + [aux_sym_identities_only_token1] = ACTIONS(1022), + [aux_sym_identity_agent_token1] = ACTIONS(1022), + [aux_sym_identity_file_token1] = ACTIONS(1022), + [aux_sym_ignore_unknown_token1] = ACTIONS(1022), + [aux_sym_include_token1] = ACTIONS(1022), + [aux_sym_ip_qos_token1] = ACTIONS(1022), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1022), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1022), + [aux_sym_kex_algorithms_token1] = ACTIONS(1022), + [aux_sym_known_hosts_command_token1] = ACTIONS(1022), + [aux_sym_local_command_token1] = ACTIONS(1022), + [aux_sym_local_forward_token1] = ACTIONS(1022), + [aux_sym_log_level_token1] = ACTIONS(1022), + [aux_sym_log_verbose_token1] = ACTIONS(1022), + [aux_sym_macs_token1] = ACTIONS(1022), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1022), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1022), + [aux_sym_password_authentication_token1] = ACTIONS(1022), + [aux_sym_permit_local_command_token1] = ACTIONS(1022), + [aux_sym_permit_remote_open_token1] = ACTIONS(1022), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1022), + [aux_sym_port_token1] = ACTIONS(1022), + [aux_sym_preferred_authentications_token1] = ACTIONS(1022), + [aux_sym_protocol_token1] = ACTIONS(1022), + [aux_sym_proxy_command_token1] = ACTIONS(1022), + [aux_sym_proxy_jump_token1] = ACTIONS(1022), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1022), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1022), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1022), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1022), + [aux_sym_rekey_limit_token1] = ACTIONS(1022), + [aux_sym_remote_command_token1] = ACTIONS(1022), + [aux_sym_remote_forward_token1] = ACTIONS(1022), + [aux_sym_request_tty_token1] = ACTIONS(1022), + [aux_sym_required_rsa_size_token1] = ACTIONS(1022), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1022), + [aux_sym_security_key_provider_token1] = ACTIONS(1022), + [aux_sym_send_env_token1] = ACTIONS(1022), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1022), + [aux_sym_server_alive_interval_token1] = ACTIONS(1022), + [aux_sym_session_type_token1] = ACTIONS(1022), + [aux_sym_set_env_token1] = ACTIONS(1022), + [aux_sym_stdin_null_token1] = ACTIONS(1022), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1022), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1022), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1022), + [aux_sym_syslog_facility_token1] = ACTIONS(1022), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1022), + [aux_sym_keep_alive_token1] = ACTIONS(1022), + [aux_sym_tunnel_token1] = ACTIONS(1024), + [aux_sym_tunnel_device_token1] = ACTIONS(1022), + [aux_sym_update_host_keys_token1] = ACTIONS(1022), + [aux_sym_use_keychain_token1] = ACTIONS(1022), + [aux_sym_use_roaming_token1] = ACTIONS(1022), + [aux_sym_user_token1] = ACTIONS(1024), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1022), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1022), + [aux_sym_visual_host_key_token1] = ACTIONS(1022), + [aux_sym_xauth_location_token1] = ACTIONS(1022), }, [81] = { - [ts_builtin_sym_end] = ACTIONS(1023), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1025), - [anon_sym_DQUOTE] = ACTIONS(1027), - [aux_sym_match_token1] = ACTIONS(1023), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1023), - [aux_sym_address_family_token1] = ACTIONS(1023), - [aux_sym_batch_mode_token1] = ACTIONS(1023), - [aux_sym_bind_address_token1] = ACTIONS(1023), - [aux_sym_bind_interface_token1] = ACTIONS(1023), - [aux_sym_canonical_domains_token1] = ACTIONS(1023), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1023), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1023), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1023), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1023), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1023), - [aux_sym_certificate_file_token1] = ACTIONS(1023), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1023), - [aux_sym_check_host_ip_token1] = ACTIONS(1023), - [aux_sym_ciphers_token1] = ACTIONS(1023), - [aux_sym_cipher_token1] = ACTIONS(1025), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1023), - [aux_sym_compression_token1] = ACTIONS(1023), - [aux_sym_connection_attempts_token1] = ACTIONS(1023), - [aux_sym_connect_timeout_token1] = ACTIONS(1023), - [aux_sym_control_master_token1] = ACTIONS(1023), - [aux_sym_control_path_token1] = ACTIONS(1023), - [aux_sym_control_persist_token1] = ACTIONS(1023), - [aux_sym_dynamic_forward_token1] = ACTIONS(1023), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1023), - [aux_sym_escape_char_token1] = ACTIONS(1023), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1023), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1023), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1023), - [aux_sym_forward_agent_token1] = ACTIONS(1023), - [aux_sym_forward_x11_token1] = ACTIONS(1025), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1023), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1023), - [aux_sym_gateway_ports_token1] = ACTIONS(1023), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1023), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1023), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1023), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1023), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1023), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1023), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1023), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1023), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1023), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1023), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1023), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1023), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1023), - [aux_sym_host_key_alias_token1] = ACTIONS(1023), - [aux_sym_hostname_token1] = ACTIONS(1023), - [aux_sym_identities_only_token1] = ACTIONS(1023), - [aux_sym_identity_agent_token1] = ACTIONS(1023), - [aux_sym_identity_file_token1] = ACTIONS(1023), - [aux_sym_ignore_unknown_token1] = ACTIONS(1023), - [aux_sym_include_token1] = ACTIONS(1023), - [aux_sym_ip_qos_token1] = ACTIONS(1023), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1023), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1023), - [aux_sym_kex_algorithms_token1] = ACTIONS(1023), - [aux_sym_known_hosts_command_token1] = ACTIONS(1023), - [aux_sym_local_command_token1] = ACTIONS(1023), - [aux_sym_local_forward_token1] = ACTIONS(1023), - [aux_sym_log_level_token1] = ACTIONS(1023), - [aux_sym_log_verbose_token1] = ACTIONS(1023), - [aux_sym_macs_token1] = ACTIONS(1023), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1023), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1023), - [aux_sym_password_authentication_token1] = ACTIONS(1023), - [aux_sym_permit_local_command_token1] = ACTIONS(1023), - [aux_sym_permit_remote_open_token1] = ACTIONS(1023), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1023), - [aux_sym_port_token1] = ACTIONS(1023), - [aux_sym_preferred_authentications_token1] = ACTIONS(1023), - [aux_sym_protocol_token1] = ACTIONS(1023), - [aux_sym_proxy_command_token1] = ACTIONS(1023), - [aux_sym_proxy_jump_token1] = ACTIONS(1023), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1023), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1023), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1023), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1023), - [aux_sym_rekey_limit_token1] = ACTIONS(1023), - [aux_sym_remote_command_token1] = ACTIONS(1023), - [aux_sym_remote_forward_token1] = ACTIONS(1023), - [aux_sym_request_tty_token1] = ACTIONS(1023), - [aux_sym_required_rsa_size_token1] = ACTIONS(1023), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1023), - [aux_sym_security_key_provider_token1] = ACTIONS(1023), - [aux_sym_send_env_token1] = ACTIONS(1023), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1023), - [aux_sym_server_alive_interval_token1] = ACTIONS(1023), - [aux_sym_session_type_token1] = ACTIONS(1023), - [aux_sym_set_env_token1] = ACTIONS(1023), - [aux_sym_stdin_null_token1] = ACTIONS(1023), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1023), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1023), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1023), - [aux_sym_syslog_facility_token1] = ACTIONS(1023), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1023), - [aux_sym_keep_alive_token1] = ACTIONS(1023), - [aux_sym_tunnel_token1] = ACTIONS(1025), - [aux_sym_tunnel_device_token1] = ACTIONS(1023), - [aux_sym_update_host_keys_token1] = ACTIONS(1023), - [aux_sym_use_keychain_token1] = ACTIONS(1023), - [aux_sym_use_roaming_token1] = ACTIONS(1023), - [aux_sym_user_token1] = ACTIONS(1025), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1023), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1023), - [aux_sym_visual_host_key_token1] = ACTIONS(1023), - [aux_sym_xauth_location_token1] = ACTIONS(1023), + [ts_builtin_sym_end] = ACTIONS(1028), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [aux_sym_match_token1] = ACTIONS(1028), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1028), + [aux_sym_address_family_token1] = ACTIONS(1028), + [aux_sym_batch_mode_token1] = ACTIONS(1028), + [aux_sym_bind_address_token1] = ACTIONS(1028), + [aux_sym_bind_interface_token1] = ACTIONS(1028), + [aux_sym_canonical_domains_token1] = ACTIONS(1028), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1028), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1028), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1028), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1028), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1028), + [aux_sym_certificate_file_token1] = ACTIONS(1028), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1028), + [aux_sym_check_host_ip_token1] = ACTIONS(1028), + [aux_sym_ciphers_token1] = ACTIONS(1028), + [aux_sym_cipher_token1] = ACTIONS(1030), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1028), + [aux_sym_compression_token1] = ACTIONS(1028), + [aux_sym_connection_attempts_token1] = ACTIONS(1028), + [aux_sym_connect_timeout_token1] = ACTIONS(1028), + [aux_sym_control_master_token1] = ACTIONS(1028), + [aux_sym_control_path_token1] = ACTIONS(1028), + [aux_sym_control_persist_token1] = ACTIONS(1028), + [aux_sym_dynamic_forward_token1] = ACTIONS(1028), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1028), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1028), + [aux_sym_escape_char_token1] = ACTIONS(1028), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1028), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1028), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1028), + [aux_sym_forward_agent_token1] = ACTIONS(1028), + [aux_sym_forward_x11_token1] = ACTIONS(1030), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1028), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1028), + [aux_sym_gateway_ports_token1] = ACTIONS(1028), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1028), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1028), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1028), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1028), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1028), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1028), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1028), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1028), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1028), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1028), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1028), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1028), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1028), + [aux_sym_host_key_alias_token1] = ACTIONS(1028), + [aux_sym_hostname_token1] = ACTIONS(1028), + [aux_sym_identities_only_token1] = ACTIONS(1028), + [aux_sym_identity_agent_token1] = ACTIONS(1028), + [aux_sym_identity_file_token1] = ACTIONS(1028), + [aux_sym_ignore_unknown_token1] = ACTIONS(1028), + [aux_sym_include_token1] = ACTIONS(1028), + [aux_sym_ip_qos_token1] = ACTIONS(1028), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1028), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1028), + [aux_sym_kex_algorithms_token1] = ACTIONS(1028), + [aux_sym_known_hosts_command_token1] = ACTIONS(1028), + [aux_sym_local_command_token1] = ACTIONS(1028), + [aux_sym_local_forward_token1] = ACTIONS(1028), + [aux_sym_log_level_token1] = ACTIONS(1028), + [aux_sym_log_verbose_token1] = ACTIONS(1028), + [aux_sym_macs_token1] = ACTIONS(1028), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1028), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1028), + [aux_sym_password_authentication_token1] = ACTIONS(1028), + [aux_sym_permit_local_command_token1] = ACTIONS(1028), + [aux_sym_permit_remote_open_token1] = ACTIONS(1028), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1028), + [aux_sym_port_token1] = ACTIONS(1028), + [aux_sym_preferred_authentications_token1] = ACTIONS(1028), + [aux_sym_protocol_token1] = ACTIONS(1028), + [aux_sym_proxy_command_token1] = ACTIONS(1028), + [aux_sym_proxy_jump_token1] = ACTIONS(1028), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1028), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1028), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1028), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1028), + [aux_sym_rekey_limit_token1] = ACTIONS(1028), + [aux_sym_remote_command_token1] = ACTIONS(1028), + [aux_sym_remote_forward_token1] = ACTIONS(1028), + [aux_sym_request_tty_token1] = ACTIONS(1028), + [aux_sym_required_rsa_size_token1] = ACTIONS(1028), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1028), + [aux_sym_security_key_provider_token1] = ACTIONS(1028), + [aux_sym_send_env_token1] = ACTIONS(1028), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1028), + [aux_sym_server_alive_interval_token1] = ACTIONS(1028), + [aux_sym_session_type_token1] = ACTIONS(1028), + [aux_sym_set_env_token1] = ACTIONS(1028), + [aux_sym_stdin_null_token1] = ACTIONS(1028), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1028), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1028), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1028), + [aux_sym_syslog_facility_token1] = ACTIONS(1028), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1028), + [aux_sym_keep_alive_token1] = ACTIONS(1028), + [aux_sym_tunnel_token1] = ACTIONS(1030), + [aux_sym_tunnel_device_token1] = ACTIONS(1028), + [aux_sym_update_host_keys_token1] = ACTIONS(1028), + [aux_sym_use_keychain_token1] = ACTIONS(1028), + [aux_sym_use_roaming_token1] = ACTIONS(1028), + [aux_sym_user_token1] = ACTIONS(1030), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1028), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1028), + [aux_sym_visual_host_key_token1] = ACTIONS(1028), + [aux_sym_xauth_location_token1] = ACTIONS(1028), }, [82] = { - [ts_builtin_sym_end] = ACTIONS(1029), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [aux_sym_match_token1] = ACTIONS(1029), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1029), - [aux_sym_address_family_token1] = ACTIONS(1029), - [aux_sym_batch_mode_token1] = ACTIONS(1029), - [aux_sym_bind_address_token1] = ACTIONS(1029), - [aux_sym_bind_interface_token1] = ACTIONS(1029), - [aux_sym_canonical_domains_token1] = ACTIONS(1029), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1029), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1029), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1029), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1029), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1029), - [aux_sym_certificate_file_token1] = ACTIONS(1029), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1029), - [aux_sym_check_host_ip_token1] = ACTIONS(1029), - [aux_sym_ciphers_token1] = ACTIONS(1029), - [aux_sym_cipher_token1] = ACTIONS(1031), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1029), - [aux_sym_compression_token1] = ACTIONS(1029), - [aux_sym_connection_attempts_token1] = ACTIONS(1029), - [aux_sym_connect_timeout_token1] = ACTIONS(1029), - [aux_sym_control_master_token1] = ACTIONS(1029), - [aux_sym_control_path_token1] = ACTIONS(1029), - [aux_sym_control_persist_token1] = ACTIONS(1029), - [aux_sym_dynamic_forward_token1] = ACTIONS(1029), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1029), - [aux_sym_escape_char_token1] = ACTIONS(1029), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1029), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1029), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1029), - [aux_sym_forward_agent_token1] = ACTIONS(1029), - [aux_sym_forward_x11_token1] = ACTIONS(1031), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1029), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1029), - [aux_sym_gateway_ports_token1] = ACTIONS(1029), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1029), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1029), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1029), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1029), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1029), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1029), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1029), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1029), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1029), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1029), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1029), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1029), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1029), - [aux_sym_host_key_alias_token1] = ACTIONS(1029), - [aux_sym_hostname_token1] = ACTIONS(1029), - [aux_sym_identities_only_token1] = ACTIONS(1029), - [aux_sym_identity_agent_token1] = ACTIONS(1029), - [aux_sym_identity_file_token1] = ACTIONS(1029), - [aux_sym_ignore_unknown_token1] = ACTIONS(1029), - [aux_sym_include_token1] = ACTIONS(1029), - [aux_sym_ip_qos_token1] = ACTIONS(1029), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1029), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1029), - [aux_sym_kex_algorithms_token1] = ACTIONS(1029), - [aux_sym_known_hosts_command_token1] = ACTIONS(1029), - [aux_sym_local_command_token1] = ACTIONS(1029), - [aux_sym_local_forward_token1] = ACTIONS(1029), - [aux_sym_log_level_token1] = ACTIONS(1029), - [aux_sym_log_verbose_token1] = ACTIONS(1029), - [aux_sym_macs_token1] = ACTIONS(1029), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1029), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1029), - [aux_sym_password_authentication_token1] = ACTIONS(1029), - [aux_sym_permit_local_command_token1] = ACTIONS(1029), - [aux_sym_permit_remote_open_token1] = ACTIONS(1029), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1029), - [aux_sym_port_token1] = ACTIONS(1029), - [aux_sym_preferred_authentications_token1] = ACTIONS(1029), - [aux_sym_protocol_token1] = ACTIONS(1029), - [aux_sym_proxy_command_token1] = ACTIONS(1029), - [aux_sym_proxy_jump_token1] = ACTIONS(1029), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1029), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1029), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1029), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1029), - [aux_sym_rekey_limit_token1] = ACTIONS(1029), - [aux_sym_remote_command_token1] = ACTIONS(1029), - [aux_sym_remote_forward_token1] = ACTIONS(1029), - [aux_sym_request_tty_token1] = ACTIONS(1029), - [aux_sym_required_rsa_size_token1] = ACTIONS(1029), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1029), - [aux_sym_security_key_provider_token1] = ACTIONS(1029), - [aux_sym_send_env_token1] = ACTIONS(1029), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1029), - [aux_sym_server_alive_interval_token1] = ACTIONS(1029), - [aux_sym_session_type_token1] = ACTIONS(1029), - [aux_sym_set_env_token1] = ACTIONS(1029), - [aux_sym_stdin_null_token1] = ACTIONS(1029), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1029), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1029), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1029), - [aux_sym_syslog_facility_token1] = ACTIONS(1029), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1029), - [aux_sym_keep_alive_token1] = ACTIONS(1029), - [aux_sym_tunnel_token1] = ACTIONS(1031), - [aux_sym_tunnel_device_token1] = ACTIONS(1029), - [aux_sym_update_host_keys_token1] = ACTIONS(1029), - [aux_sym_use_keychain_token1] = ACTIONS(1029), - [aux_sym_use_roaming_token1] = ACTIONS(1029), - [aux_sym_user_token1] = ACTIONS(1031), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1029), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1029), - [aux_sym_visual_host_key_token1] = ACTIONS(1029), - [aux_sym_xauth_location_token1] = ACTIONS(1029), + [ts_builtin_sym_end] = ACTIONS(1034), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1036), + [anon_sym_DQUOTE] = ACTIONS(1038), + [aux_sym_match_token1] = ACTIONS(1034), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1034), + [aux_sym_address_family_token1] = ACTIONS(1034), + [aux_sym_batch_mode_token1] = ACTIONS(1034), + [aux_sym_bind_address_token1] = ACTIONS(1034), + [aux_sym_bind_interface_token1] = ACTIONS(1034), + [aux_sym_canonical_domains_token1] = ACTIONS(1034), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1034), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1034), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1034), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1034), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1034), + [aux_sym_certificate_file_token1] = ACTIONS(1034), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1034), + [aux_sym_check_host_ip_token1] = ACTIONS(1034), + [aux_sym_ciphers_token1] = ACTIONS(1034), + [aux_sym_cipher_token1] = ACTIONS(1036), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1034), + [aux_sym_compression_token1] = ACTIONS(1034), + [aux_sym_connection_attempts_token1] = ACTIONS(1034), + [aux_sym_connect_timeout_token1] = ACTIONS(1034), + [aux_sym_control_master_token1] = ACTIONS(1034), + [aux_sym_control_path_token1] = ACTIONS(1034), + [aux_sym_control_persist_token1] = ACTIONS(1034), + [aux_sym_dynamic_forward_token1] = ACTIONS(1034), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1034), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1034), + [aux_sym_escape_char_token1] = ACTIONS(1034), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1034), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1034), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1034), + [aux_sym_forward_agent_token1] = ACTIONS(1034), + [aux_sym_forward_x11_token1] = ACTIONS(1036), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1034), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1034), + [aux_sym_gateway_ports_token1] = ACTIONS(1034), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1034), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1034), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1034), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1034), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1034), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1034), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1034), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1034), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1034), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1034), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1034), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1034), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1034), + [aux_sym_host_key_alias_token1] = ACTIONS(1034), + [aux_sym_hostname_token1] = ACTIONS(1034), + [aux_sym_identities_only_token1] = ACTIONS(1034), + [aux_sym_identity_agent_token1] = ACTIONS(1034), + [aux_sym_identity_file_token1] = ACTIONS(1034), + [aux_sym_ignore_unknown_token1] = ACTIONS(1034), + [aux_sym_include_token1] = ACTIONS(1034), + [aux_sym_ip_qos_token1] = ACTIONS(1034), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1034), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1034), + [aux_sym_kex_algorithms_token1] = ACTIONS(1034), + [aux_sym_known_hosts_command_token1] = ACTIONS(1034), + [aux_sym_local_command_token1] = ACTIONS(1034), + [aux_sym_local_forward_token1] = ACTIONS(1034), + [aux_sym_log_level_token1] = ACTIONS(1034), + [aux_sym_log_verbose_token1] = ACTIONS(1034), + [aux_sym_macs_token1] = ACTIONS(1034), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1034), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1034), + [aux_sym_password_authentication_token1] = ACTIONS(1034), + [aux_sym_permit_local_command_token1] = ACTIONS(1034), + [aux_sym_permit_remote_open_token1] = ACTIONS(1034), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1034), + [aux_sym_port_token1] = ACTIONS(1034), + [aux_sym_preferred_authentications_token1] = ACTIONS(1034), + [aux_sym_protocol_token1] = ACTIONS(1034), + [aux_sym_proxy_command_token1] = ACTIONS(1034), + [aux_sym_proxy_jump_token1] = ACTIONS(1034), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1034), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1034), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1034), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1034), + [aux_sym_rekey_limit_token1] = ACTIONS(1034), + [aux_sym_remote_command_token1] = ACTIONS(1034), + [aux_sym_remote_forward_token1] = ACTIONS(1034), + [aux_sym_request_tty_token1] = ACTIONS(1034), + [aux_sym_required_rsa_size_token1] = ACTIONS(1034), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1034), + [aux_sym_security_key_provider_token1] = ACTIONS(1034), + [aux_sym_send_env_token1] = ACTIONS(1034), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1034), + [aux_sym_server_alive_interval_token1] = ACTIONS(1034), + [aux_sym_session_type_token1] = ACTIONS(1034), + [aux_sym_set_env_token1] = ACTIONS(1034), + [aux_sym_stdin_null_token1] = ACTIONS(1034), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1034), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1034), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1034), + [aux_sym_syslog_facility_token1] = ACTIONS(1034), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1034), + [aux_sym_keep_alive_token1] = ACTIONS(1034), + [aux_sym_tunnel_token1] = ACTIONS(1036), + [aux_sym_tunnel_device_token1] = ACTIONS(1034), + [aux_sym_update_host_keys_token1] = ACTIONS(1034), + [aux_sym_use_keychain_token1] = ACTIONS(1034), + [aux_sym_use_roaming_token1] = ACTIONS(1034), + [aux_sym_user_token1] = ACTIONS(1036), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1034), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1034), + [aux_sym_visual_host_key_token1] = ACTIONS(1034), + [aux_sym_xauth_location_token1] = ACTIONS(1034), }, [83] = { - [ts_builtin_sym_end] = ACTIONS(1035), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1037), - [anon_sym_DQUOTE] = ACTIONS(1039), - [aux_sym_match_token1] = ACTIONS(1035), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1035), - [aux_sym_address_family_token1] = ACTIONS(1035), - [aux_sym_batch_mode_token1] = ACTIONS(1035), - [aux_sym_bind_address_token1] = ACTIONS(1035), - [aux_sym_bind_interface_token1] = ACTIONS(1035), - [aux_sym_canonical_domains_token1] = ACTIONS(1035), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1035), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1035), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1035), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1035), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1035), - [aux_sym_certificate_file_token1] = ACTIONS(1035), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1035), - [aux_sym_check_host_ip_token1] = ACTIONS(1035), - [aux_sym_ciphers_token1] = ACTIONS(1035), - [aux_sym_cipher_token1] = ACTIONS(1037), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1035), - [aux_sym_compression_token1] = ACTIONS(1035), - [aux_sym_connection_attempts_token1] = ACTIONS(1035), - [aux_sym_connect_timeout_token1] = ACTIONS(1035), - [aux_sym_control_master_token1] = ACTIONS(1035), - [aux_sym_control_path_token1] = ACTIONS(1035), - [aux_sym_control_persist_token1] = ACTIONS(1035), - [aux_sym_dynamic_forward_token1] = ACTIONS(1035), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1035), - [aux_sym_escape_char_token1] = ACTIONS(1035), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1035), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1035), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1035), - [aux_sym_forward_agent_token1] = ACTIONS(1035), - [aux_sym_forward_x11_token1] = ACTIONS(1037), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1035), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1035), - [aux_sym_gateway_ports_token1] = ACTIONS(1035), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1035), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1035), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1035), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1035), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1035), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1035), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1035), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1035), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1035), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1035), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1035), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1035), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1035), - [aux_sym_host_key_alias_token1] = ACTIONS(1035), - [aux_sym_hostname_token1] = ACTIONS(1035), - [aux_sym_identities_only_token1] = ACTIONS(1035), - [aux_sym_identity_agent_token1] = ACTIONS(1035), - [aux_sym_identity_file_token1] = ACTIONS(1035), - [aux_sym_ignore_unknown_token1] = ACTIONS(1035), - [aux_sym_include_token1] = ACTIONS(1035), - [aux_sym_ip_qos_token1] = ACTIONS(1035), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1035), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1035), - [aux_sym_kex_algorithms_token1] = ACTIONS(1035), - [aux_sym_known_hosts_command_token1] = ACTIONS(1035), - [aux_sym_local_command_token1] = ACTIONS(1035), - [aux_sym_local_forward_token1] = ACTIONS(1035), - [aux_sym_log_level_token1] = ACTIONS(1035), - [aux_sym_log_verbose_token1] = ACTIONS(1035), - [aux_sym_macs_token1] = ACTIONS(1035), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1035), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1035), - [aux_sym_password_authentication_token1] = ACTIONS(1035), - [aux_sym_permit_local_command_token1] = ACTIONS(1035), - [aux_sym_permit_remote_open_token1] = ACTIONS(1035), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1035), - [aux_sym_port_token1] = ACTIONS(1035), - [aux_sym_preferred_authentications_token1] = ACTIONS(1035), - [aux_sym_protocol_token1] = ACTIONS(1035), - [aux_sym_proxy_command_token1] = ACTIONS(1035), - [aux_sym_proxy_jump_token1] = ACTIONS(1035), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1035), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1035), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1035), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1035), - [aux_sym_rekey_limit_token1] = ACTIONS(1035), - [aux_sym_remote_command_token1] = ACTIONS(1035), - [aux_sym_remote_forward_token1] = ACTIONS(1035), - [aux_sym_request_tty_token1] = ACTIONS(1035), - [aux_sym_required_rsa_size_token1] = ACTIONS(1035), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1035), - [aux_sym_security_key_provider_token1] = ACTIONS(1035), - [aux_sym_send_env_token1] = ACTIONS(1035), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1035), - [aux_sym_server_alive_interval_token1] = ACTIONS(1035), - [aux_sym_session_type_token1] = ACTIONS(1035), - [aux_sym_set_env_token1] = ACTIONS(1035), - [aux_sym_stdin_null_token1] = ACTIONS(1035), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1035), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1035), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1035), - [aux_sym_syslog_facility_token1] = ACTIONS(1035), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1035), - [aux_sym_keep_alive_token1] = ACTIONS(1035), - [aux_sym_tunnel_token1] = ACTIONS(1037), - [aux_sym_tunnel_device_token1] = ACTIONS(1035), - [aux_sym_update_host_keys_token1] = ACTIONS(1035), - [aux_sym_use_keychain_token1] = ACTIONS(1035), - [aux_sym_use_roaming_token1] = ACTIONS(1035), - [aux_sym_user_token1] = ACTIONS(1037), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1035), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1035), - [aux_sym_visual_host_key_token1] = ACTIONS(1035), - [aux_sym_xauth_location_token1] = ACTIONS(1035), + [ts_builtin_sym_end] = ACTIONS(1040), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1044), + [aux_sym_match_token1] = ACTIONS(1040), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1040), + [aux_sym_address_family_token1] = ACTIONS(1040), + [aux_sym_batch_mode_token1] = ACTIONS(1040), + [aux_sym_bind_address_token1] = ACTIONS(1040), + [aux_sym_bind_interface_token1] = ACTIONS(1040), + [aux_sym_canonical_domains_token1] = ACTIONS(1040), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1040), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1040), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1040), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1040), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1040), + [aux_sym_certificate_file_token1] = ACTIONS(1040), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1040), + [aux_sym_check_host_ip_token1] = ACTIONS(1040), + [aux_sym_ciphers_token1] = ACTIONS(1040), + [aux_sym_cipher_token1] = ACTIONS(1042), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1040), + [aux_sym_compression_token1] = ACTIONS(1040), + [aux_sym_connection_attempts_token1] = ACTIONS(1040), + [aux_sym_connect_timeout_token1] = ACTIONS(1040), + [aux_sym_control_master_token1] = ACTIONS(1040), + [aux_sym_control_path_token1] = ACTIONS(1040), + [aux_sym_control_persist_token1] = ACTIONS(1040), + [aux_sym_dynamic_forward_token1] = ACTIONS(1040), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1040), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1040), + [aux_sym_escape_char_token1] = ACTIONS(1040), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1040), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1040), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1040), + [aux_sym_forward_agent_token1] = ACTIONS(1040), + [aux_sym_forward_x11_token1] = ACTIONS(1042), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1040), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1040), + [aux_sym_gateway_ports_token1] = ACTIONS(1040), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1040), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1040), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1040), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1040), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1040), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1040), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1040), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1040), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1040), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1040), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1040), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1040), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1040), + [aux_sym_host_key_alias_token1] = ACTIONS(1040), + [aux_sym_hostname_token1] = ACTIONS(1040), + [aux_sym_identities_only_token1] = ACTIONS(1040), + [aux_sym_identity_agent_token1] = ACTIONS(1040), + [aux_sym_identity_file_token1] = ACTIONS(1040), + [aux_sym_ignore_unknown_token1] = ACTIONS(1040), + [aux_sym_include_token1] = ACTIONS(1040), + [aux_sym_ip_qos_token1] = ACTIONS(1040), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1040), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1040), + [aux_sym_kex_algorithms_token1] = ACTIONS(1040), + [aux_sym_known_hosts_command_token1] = ACTIONS(1040), + [aux_sym_local_command_token1] = ACTIONS(1040), + [aux_sym_local_forward_token1] = ACTIONS(1040), + [aux_sym_log_level_token1] = ACTIONS(1040), + [aux_sym_log_verbose_token1] = ACTIONS(1040), + [aux_sym_macs_token1] = ACTIONS(1040), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1040), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1040), + [aux_sym_password_authentication_token1] = ACTIONS(1040), + [aux_sym_permit_local_command_token1] = ACTIONS(1040), + [aux_sym_permit_remote_open_token1] = ACTIONS(1040), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1040), + [aux_sym_port_token1] = ACTIONS(1040), + [aux_sym_preferred_authentications_token1] = ACTIONS(1040), + [aux_sym_protocol_token1] = ACTIONS(1040), + [aux_sym_proxy_command_token1] = ACTIONS(1040), + [aux_sym_proxy_jump_token1] = ACTIONS(1040), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1040), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1040), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1040), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1040), + [aux_sym_rekey_limit_token1] = ACTIONS(1040), + [aux_sym_remote_command_token1] = ACTIONS(1040), + [aux_sym_remote_forward_token1] = ACTIONS(1040), + [aux_sym_request_tty_token1] = ACTIONS(1040), + [aux_sym_required_rsa_size_token1] = ACTIONS(1040), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1040), + [aux_sym_security_key_provider_token1] = ACTIONS(1040), + [aux_sym_send_env_token1] = ACTIONS(1040), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1040), + [aux_sym_server_alive_interval_token1] = ACTIONS(1040), + [aux_sym_session_type_token1] = ACTIONS(1040), + [aux_sym_set_env_token1] = ACTIONS(1040), + [aux_sym_stdin_null_token1] = ACTIONS(1040), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1040), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1040), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1040), + [aux_sym_syslog_facility_token1] = ACTIONS(1040), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1040), + [aux_sym_keep_alive_token1] = ACTIONS(1040), + [aux_sym_tunnel_token1] = ACTIONS(1042), + [aux_sym_tunnel_device_token1] = ACTIONS(1040), + [aux_sym_update_host_keys_token1] = ACTIONS(1040), + [aux_sym_use_keychain_token1] = ACTIONS(1040), + [aux_sym_use_roaming_token1] = ACTIONS(1040), + [aux_sym_user_token1] = ACTIONS(1042), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1040), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1040), + [aux_sym_visual_host_key_token1] = ACTIONS(1040), + [aux_sym_xauth_location_token1] = ACTIONS(1040), }, [84] = { - [ts_builtin_sym_end] = ACTIONS(1041), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1043), - [anon_sym_DQUOTE] = ACTIONS(1045), - [aux_sym_match_token1] = ACTIONS(1041), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1041), - [aux_sym_address_family_token1] = ACTIONS(1041), - [aux_sym_batch_mode_token1] = ACTIONS(1041), - [aux_sym_bind_address_token1] = ACTIONS(1041), - [aux_sym_bind_interface_token1] = ACTIONS(1041), - [aux_sym_canonical_domains_token1] = ACTIONS(1041), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1041), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1041), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1041), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1041), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1041), - [aux_sym_certificate_file_token1] = ACTIONS(1041), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1041), - [aux_sym_check_host_ip_token1] = ACTIONS(1041), - [aux_sym_ciphers_token1] = ACTIONS(1041), - [aux_sym_cipher_token1] = ACTIONS(1043), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1041), - [aux_sym_compression_token1] = ACTIONS(1041), - [aux_sym_connection_attempts_token1] = ACTIONS(1041), - [aux_sym_connect_timeout_token1] = ACTIONS(1041), - [aux_sym_control_master_token1] = ACTIONS(1041), - [aux_sym_control_path_token1] = ACTIONS(1041), - [aux_sym_control_persist_token1] = ACTIONS(1041), - [aux_sym_dynamic_forward_token1] = ACTIONS(1041), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1041), - [aux_sym_escape_char_token1] = ACTIONS(1041), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1041), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1041), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1041), - [aux_sym_forward_agent_token1] = ACTIONS(1041), - [aux_sym_forward_x11_token1] = ACTIONS(1043), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1041), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1041), - [aux_sym_gateway_ports_token1] = ACTIONS(1041), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1041), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1041), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1041), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1041), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1041), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1041), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1041), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1041), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1041), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1041), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1041), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1041), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1041), - [aux_sym_host_key_alias_token1] = ACTIONS(1041), - [aux_sym_hostname_token1] = ACTIONS(1041), - [aux_sym_identities_only_token1] = ACTIONS(1041), - [aux_sym_identity_agent_token1] = ACTIONS(1041), - [aux_sym_identity_file_token1] = ACTIONS(1041), - [aux_sym_ignore_unknown_token1] = ACTIONS(1041), - [aux_sym_include_token1] = ACTIONS(1041), - [aux_sym_ip_qos_token1] = ACTIONS(1041), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1041), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1041), - [aux_sym_kex_algorithms_token1] = ACTIONS(1041), - [aux_sym_known_hosts_command_token1] = ACTIONS(1041), - [aux_sym_local_command_token1] = ACTIONS(1041), - [aux_sym_local_forward_token1] = ACTIONS(1041), - [aux_sym_log_level_token1] = ACTIONS(1041), - [aux_sym_log_verbose_token1] = ACTIONS(1041), - [aux_sym_macs_token1] = ACTIONS(1041), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1041), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1041), - [aux_sym_password_authentication_token1] = ACTIONS(1041), - [aux_sym_permit_local_command_token1] = ACTIONS(1041), - [aux_sym_permit_remote_open_token1] = ACTIONS(1041), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1041), - [aux_sym_port_token1] = ACTIONS(1041), - [aux_sym_preferred_authentications_token1] = ACTIONS(1041), - [aux_sym_protocol_token1] = ACTIONS(1041), - [aux_sym_proxy_command_token1] = ACTIONS(1041), - [aux_sym_proxy_jump_token1] = ACTIONS(1041), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1041), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1041), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1041), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1041), - [aux_sym_rekey_limit_token1] = ACTIONS(1041), - [aux_sym_remote_command_token1] = ACTIONS(1041), - [aux_sym_remote_forward_token1] = ACTIONS(1041), - [aux_sym_request_tty_token1] = ACTIONS(1041), - [aux_sym_required_rsa_size_token1] = ACTIONS(1041), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1041), - [aux_sym_security_key_provider_token1] = ACTIONS(1041), - [aux_sym_send_env_token1] = ACTIONS(1041), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1041), - [aux_sym_server_alive_interval_token1] = ACTIONS(1041), - [aux_sym_session_type_token1] = ACTIONS(1041), - [aux_sym_set_env_token1] = ACTIONS(1041), - [aux_sym_stdin_null_token1] = ACTIONS(1041), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1041), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1041), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1041), - [aux_sym_syslog_facility_token1] = ACTIONS(1041), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1041), - [aux_sym_keep_alive_token1] = ACTIONS(1041), - [aux_sym_tunnel_token1] = ACTIONS(1043), - [aux_sym_tunnel_device_token1] = ACTIONS(1041), - [aux_sym_update_host_keys_token1] = ACTIONS(1041), - [aux_sym_use_keychain_token1] = ACTIONS(1041), - [aux_sym_use_roaming_token1] = ACTIONS(1041), - [aux_sym_user_token1] = ACTIONS(1043), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1041), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1041), - [aux_sym_visual_host_key_token1] = ACTIONS(1041), - [aux_sym_xauth_location_token1] = ACTIONS(1041), + [ts_builtin_sym_end] = ACTIONS(1046), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1050), + [aux_sym_match_token1] = ACTIONS(1046), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1046), + [aux_sym_address_family_token1] = ACTIONS(1046), + [aux_sym_batch_mode_token1] = ACTIONS(1046), + [aux_sym_bind_address_token1] = ACTIONS(1046), + [aux_sym_bind_interface_token1] = ACTIONS(1046), + [aux_sym_canonical_domains_token1] = ACTIONS(1046), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1046), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1046), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1046), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1046), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1046), + [aux_sym_certificate_file_token1] = ACTIONS(1046), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1046), + [aux_sym_check_host_ip_token1] = ACTIONS(1046), + [aux_sym_ciphers_token1] = ACTIONS(1046), + [aux_sym_cipher_token1] = ACTIONS(1048), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1046), + [aux_sym_compression_token1] = ACTIONS(1046), + [aux_sym_connection_attempts_token1] = ACTIONS(1046), + [aux_sym_connect_timeout_token1] = ACTIONS(1046), + [aux_sym_control_master_token1] = ACTIONS(1046), + [aux_sym_control_path_token1] = ACTIONS(1046), + [aux_sym_control_persist_token1] = ACTIONS(1046), + [aux_sym_dynamic_forward_token1] = ACTIONS(1046), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1046), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1046), + [aux_sym_escape_char_token1] = ACTIONS(1046), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1046), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1046), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1046), + [aux_sym_forward_agent_token1] = ACTIONS(1046), + [aux_sym_forward_x11_token1] = ACTIONS(1048), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1046), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1046), + [aux_sym_gateway_ports_token1] = ACTIONS(1046), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1046), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1046), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1046), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1046), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1046), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1046), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1046), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1046), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1046), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1046), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1046), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1046), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1046), + [aux_sym_host_key_alias_token1] = ACTIONS(1046), + [aux_sym_hostname_token1] = ACTIONS(1046), + [aux_sym_identities_only_token1] = ACTIONS(1046), + [aux_sym_identity_agent_token1] = ACTIONS(1046), + [aux_sym_identity_file_token1] = ACTIONS(1046), + [aux_sym_ignore_unknown_token1] = ACTIONS(1046), + [aux_sym_include_token1] = ACTIONS(1046), + [aux_sym_ip_qos_token1] = ACTIONS(1046), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1046), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1046), + [aux_sym_kex_algorithms_token1] = ACTIONS(1046), + [aux_sym_known_hosts_command_token1] = ACTIONS(1046), + [aux_sym_local_command_token1] = ACTIONS(1046), + [aux_sym_local_forward_token1] = ACTIONS(1046), + [aux_sym_log_level_token1] = ACTIONS(1046), + [aux_sym_log_verbose_token1] = ACTIONS(1046), + [aux_sym_macs_token1] = ACTIONS(1046), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1046), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1046), + [aux_sym_password_authentication_token1] = ACTIONS(1046), + [aux_sym_permit_local_command_token1] = ACTIONS(1046), + [aux_sym_permit_remote_open_token1] = ACTIONS(1046), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1046), + [aux_sym_port_token1] = ACTIONS(1046), + [aux_sym_preferred_authentications_token1] = ACTIONS(1046), + [aux_sym_protocol_token1] = ACTIONS(1046), + [aux_sym_proxy_command_token1] = ACTIONS(1046), + [aux_sym_proxy_jump_token1] = ACTIONS(1046), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1046), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1046), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1046), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1046), + [aux_sym_rekey_limit_token1] = ACTIONS(1046), + [aux_sym_remote_command_token1] = ACTIONS(1046), + [aux_sym_remote_forward_token1] = ACTIONS(1046), + [aux_sym_request_tty_token1] = ACTIONS(1046), + [aux_sym_required_rsa_size_token1] = ACTIONS(1046), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1046), + [aux_sym_security_key_provider_token1] = ACTIONS(1046), + [aux_sym_send_env_token1] = ACTIONS(1046), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1046), + [aux_sym_server_alive_interval_token1] = ACTIONS(1046), + [aux_sym_session_type_token1] = ACTIONS(1046), + [aux_sym_set_env_token1] = ACTIONS(1046), + [aux_sym_stdin_null_token1] = ACTIONS(1046), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1046), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1046), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1046), + [aux_sym_syslog_facility_token1] = ACTIONS(1046), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1046), + [aux_sym_keep_alive_token1] = ACTIONS(1046), + [aux_sym_tunnel_token1] = ACTIONS(1048), + [aux_sym_tunnel_device_token1] = ACTIONS(1046), + [aux_sym_update_host_keys_token1] = ACTIONS(1046), + [aux_sym_use_keychain_token1] = ACTIONS(1046), + [aux_sym_use_roaming_token1] = ACTIONS(1046), + [aux_sym_user_token1] = ACTIONS(1048), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1046), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1046), + [aux_sym_visual_host_key_token1] = ACTIONS(1046), + [aux_sym_xauth_location_token1] = ACTIONS(1046), }, [85] = { - [ts_builtin_sym_end] = ACTIONS(1047), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1049), - [anon_sym_DQUOTE] = ACTIONS(1051), - [aux_sym_match_token1] = ACTIONS(1047), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1047), - [aux_sym_address_family_token1] = ACTIONS(1047), - [aux_sym_batch_mode_token1] = ACTIONS(1047), - [aux_sym_bind_address_token1] = ACTIONS(1047), - [aux_sym_bind_interface_token1] = ACTIONS(1047), - [aux_sym_canonical_domains_token1] = ACTIONS(1047), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1047), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1047), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1047), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1047), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1047), - [aux_sym_certificate_file_token1] = ACTIONS(1047), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1047), - [aux_sym_check_host_ip_token1] = ACTIONS(1047), - [aux_sym_ciphers_token1] = ACTIONS(1047), - [aux_sym_cipher_token1] = ACTIONS(1049), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1047), - [aux_sym_compression_token1] = ACTIONS(1047), - [aux_sym_connection_attempts_token1] = ACTIONS(1047), - [aux_sym_connect_timeout_token1] = ACTIONS(1047), - [aux_sym_control_master_token1] = ACTIONS(1047), - [aux_sym_control_path_token1] = ACTIONS(1047), - [aux_sym_control_persist_token1] = ACTIONS(1047), - [aux_sym_dynamic_forward_token1] = ACTIONS(1047), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1047), - [aux_sym_escape_char_token1] = ACTIONS(1047), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1047), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1047), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1047), - [aux_sym_forward_agent_token1] = ACTIONS(1047), - [aux_sym_forward_x11_token1] = ACTIONS(1049), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1047), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1047), - [aux_sym_gateway_ports_token1] = ACTIONS(1047), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1047), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1047), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1047), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1047), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1047), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1047), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1047), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1047), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1047), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1047), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1047), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1047), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1047), - [aux_sym_host_key_alias_token1] = ACTIONS(1047), - [aux_sym_hostname_token1] = ACTIONS(1047), - [aux_sym_identities_only_token1] = ACTIONS(1047), - [aux_sym_identity_agent_token1] = ACTIONS(1047), - [aux_sym_identity_file_token1] = ACTIONS(1047), - [aux_sym_ignore_unknown_token1] = ACTIONS(1047), - [aux_sym_include_token1] = ACTIONS(1047), - [aux_sym_ip_qos_token1] = ACTIONS(1047), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1047), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1047), - [aux_sym_kex_algorithms_token1] = ACTIONS(1047), - [aux_sym_known_hosts_command_token1] = ACTIONS(1047), - [aux_sym_local_command_token1] = ACTIONS(1047), - [aux_sym_local_forward_token1] = ACTIONS(1047), - [aux_sym_log_level_token1] = ACTIONS(1047), - [aux_sym_log_verbose_token1] = ACTIONS(1047), - [aux_sym_macs_token1] = ACTIONS(1047), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1047), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1047), - [aux_sym_password_authentication_token1] = ACTIONS(1047), - [aux_sym_permit_local_command_token1] = ACTIONS(1047), - [aux_sym_permit_remote_open_token1] = ACTIONS(1047), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1047), - [aux_sym_port_token1] = ACTIONS(1047), - [aux_sym_preferred_authentications_token1] = ACTIONS(1047), - [aux_sym_protocol_token1] = ACTIONS(1047), - [aux_sym_proxy_command_token1] = ACTIONS(1047), - [aux_sym_proxy_jump_token1] = ACTIONS(1047), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1047), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1047), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1047), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1047), - [aux_sym_rekey_limit_token1] = ACTIONS(1047), - [aux_sym_remote_command_token1] = ACTIONS(1047), - [aux_sym_remote_forward_token1] = ACTIONS(1047), - [aux_sym_request_tty_token1] = ACTIONS(1047), - [aux_sym_required_rsa_size_token1] = ACTIONS(1047), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1047), - [aux_sym_security_key_provider_token1] = ACTIONS(1047), - [aux_sym_send_env_token1] = ACTIONS(1047), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1047), - [aux_sym_server_alive_interval_token1] = ACTIONS(1047), - [aux_sym_session_type_token1] = ACTIONS(1047), - [aux_sym_set_env_token1] = ACTIONS(1047), - [aux_sym_stdin_null_token1] = ACTIONS(1047), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1047), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1047), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1047), - [aux_sym_syslog_facility_token1] = ACTIONS(1047), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1047), - [aux_sym_keep_alive_token1] = ACTIONS(1047), - [aux_sym_tunnel_token1] = ACTIONS(1049), - [aux_sym_tunnel_device_token1] = ACTIONS(1047), - [aux_sym_update_host_keys_token1] = ACTIONS(1047), - [aux_sym_use_keychain_token1] = ACTIONS(1047), - [aux_sym_use_roaming_token1] = ACTIONS(1047), - [aux_sym_user_token1] = ACTIONS(1049), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1047), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1047), - [aux_sym_visual_host_key_token1] = ACTIONS(1047), - [aux_sym_xauth_location_token1] = ACTIONS(1047), + [ts_builtin_sym_end] = ACTIONS(1052), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1056), + [aux_sym_match_token1] = ACTIONS(1052), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1052), + [aux_sym_address_family_token1] = ACTIONS(1052), + [aux_sym_batch_mode_token1] = ACTIONS(1052), + [aux_sym_bind_address_token1] = ACTIONS(1052), + [aux_sym_bind_interface_token1] = ACTIONS(1052), + [aux_sym_canonical_domains_token1] = ACTIONS(1052), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1052), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1052), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1052), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1052), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1052), + [aux_sym_certificate_file_token1] = ACTIONS(1052), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1052), + [aux_sym_check_host_ip_token1] = ACTIONS(1052), + [aux_sym_ciphers_token1] = ACTIONS(1052), + [aux_sym_cipher_token1] = ACTIONS(1054), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1052), + [aux_sym_compression_token1] = ACTIONS(1052), + [aux_sym_connection_attempts_token1] = ACTIONS(1052), + [aux_sym_connect_timeout_token1] = ACTIONS(1052), + [aux_sym_control_master_token1] = ACTIONS(1052), + [aux_sym_control_path_token1] = ACTIONS(1052), + [aux_sym_control_persist_token1] = ACTIONS(1052), + [aux_sym_dynamic_forward_token1] = ACTIONS(1052), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1052), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1052), + [aux_sym_escape_char_token1] = ACTIONS(1052), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1052), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1052), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1052), + [aux_sym_forward_agent_token1] = ACTIONS(1052), + [aux_sym_forward_x11_token1] = ACTIONS(1054), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1052), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1052), + [aux_sym_gateway_ports_token1] = ACTIONS(1052), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1052), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1052), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1052), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1052), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1052), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1052), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1052), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1052), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1052), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1052), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1052), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1052), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1052), + [aux_sym_host_key_alias_token1] = ACTIONS(1052), + [aux_sym_hostname_token1] = ACTIONS(1052), + [aux_sym_identities_only_token1] = ACTIONS(1052), + [aux_sym_identity_agent_token1] = ACTIONS(1052), + [aux_sym_identity_file_token1] = ACTIONS(1052), + [aux_sym_ignore_unknown_token1] = ACTIONS(1052), + [aux_sym_include_token1] = ACTIONS(1052), + [aux_sym_ip_qos_token1] = ACTIONS(1052), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1052), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1052), + [aux_sym_kex_algorithms_token1] = ACTIONS(1052), + [aux_sym_known_hosts_command_token1] = ACTIONS(1052), + [aux_sym_local_command_token1] = ACTIONS(1052), + [aux_sym_local_forward_token1] = ACTIONS(1052), + [aux_sym_log_level_token1] = ACTIONS(1052), + [aux_sym_log_verbose_token1] = ACTIONS(1052), + [aux_sym_macs_token1] = ACTIONS(1052), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1052), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1052), + [aux_sym_password_authentication_token1] = ACTIONS(1052), + [aux_sym_permit_local_command_token1] = ACTIONS(1052), + [aux_sym_permit_remote_open_token1] = ACTIONS(1052), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1052), + [aux_sym_port_token1] = ACTIONS(1052), + [aux_sym_preferred_authentications_token1] = ACTIONS(1052), + [aux_sym_protocol_token1] = ACTIONS(1052), + [aux_sym_proxy_command_token1] = ACTIONS(1052), + [aux_sym_proxy_jump_token1] = ACTIONS(1052), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1052), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1052), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1052), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1052), + [aux_sym_rekey_limit_token1] = ACTIONS(1052), + [aux_sym_remote_command_token1] = ACTIONS(1052), + [aux_sym_remote_forward_token1] = ACTIONS(1052), + [aux_sym_request_tty_token1] = ACTIONS(1052), + [aux_sym_required_rsa_size_token1] = ACTIONS(1052), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1052), + [aux_sym_security_key_provider_token1] = ACTIONS(1052), + [aux_sym_send_env_token1] = ACTIONS(1052), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1052), + [aux_sym_server_alive_interval_token1] = ACTIONS(1052), + [aux_sym_session_type_token1] = ACTIONS(1052), + [aux_sym_set_env_token1] = ACTIONS(1052), + [aux_sym_stdin_null_token1] = ACTIONS(1052), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1052), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1052), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1052), + [aux_sym_syslog_facility_token1] = ACTIONS(1052), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1052), + [aux_sym_keep_alive_token1] = ACTIONS(1052), + [aux_sym_tunnel_token1] = ACTIONS(1054), + [aux_sym_tunnel_device_token1] = ACTIONS(1052), + [aux_sym_update_host_keys_token1] = ACTIONS(1052), + [aux_sym_use_keychain_token1] = ACTIONS(1052), + [aux_sym_use_roaming_token1] = ACTIONS(1052), + [aux_sym_user_token1] = ACTIONS(1054), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1052), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1052), + [aux_sym_visual_host_key_token1] = ACTIONS(1052), + [aux_sym_xauth_location_token1] = ACTIONS(1052), }, [86] = { - [ts_builtin_sym_end] = ACTIONS(1053), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1055), - [anon_sym_DQUOTE] = ACTIONS(1057), - [aux_sym_match_token1] = ACTIONS(1053), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1053), - [aux_sym_address_family_token1] = ACTIONS(1053), - [aux_sym_batch_mode_token1] = ACTIONS(1053), - [aux_sym_bind_address_token1] = ACTIONS(1053), - [aux_sym_bind_interface_token1] = ACTIONS(1053), - [aux_sym_canonical_domains_token1] = ACTIONS(1053), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1053), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1053), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1053), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1053), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1053), - [aux_sym_certificate_file_token1] = ACTIONS(1053), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1053), - [aux_sym_check_host_ip_token1] = ACTIONS(1053), - [aux_sym_ciphers_token1] = ACTIONS(1053), - [aux_sym_cipher_token1] = ACTIONS(1055), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1053), - [aux_sym_compression_token1] = ACTIONS(1053), - [aux_sym_connection_attempts_token1] = ACTIONS(1053), - [aux_sym_connect_timeout_token1] = ACTIONS(1053), - [aux_sym_control_master_token1] = ACTIONS(1053), - [aux_sym_control_path_token1] = ACTIONS(1053), - [aux_sym_control_persist_token1] = ACTIONS(1053), - [aux_sym_dynamic_forward_token1] = ACTIONS(1053), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1053), - [aux_sym_escape_char_token1] = ACTIONS(1053), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1053), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1053), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1053), - [aux_sym_forward_agent_token1] = ACTIONS(1053), - [aux_sym_forward_x11_token1] = ACTIONS(1055), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1053), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1053), - [aux_sym_gateway_ports_token1] = ACTIONS(1053), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1053), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1053), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1053), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1053), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1053), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1053), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1053), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1053), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1053), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1053), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1053), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1053), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1053), - [aux_sym_host_key_alias_token1] = ACTIONS(1053), - [aux_sym_hostname_token1] = ACTIONS(1053), - [aux_sym_identities_only_token1] = ACTIONS(1053), - [aux_sym_identity_agent_token1] = ACTIONS(1053), - [aux_sym_identity_file_token1] = ACTIONS(1053), - [aux_sym_ignore_unknown_token1] = ACTIONS(1053), - [aux_sym_include_token1] = ACTIONS(1053), - [aux_sym_ip_qos_token1] = ACTIONS(1053), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1053), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1053), - [aux_sym_kex_algorithms_token1] = ACTIONS(1053), - [aux_sym_known_hosts_command_token1] = ACTIONS(1053), - [aux_sym_local_command_token1] = ACTIONS(1053), - [aux_sym_local_forward_token1] = ACTIONS(1053), - [aux_sym_log_level_token1] = ACTIONS(1053), - [aux_sym_log_verbose_token1] = ACTIONS(1053), - [aux_sym_macs_token1] = ACTIONS(1053), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1053), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1053), - [aux_sym_password_authentication_token1] = ACTIONS(1053), - [aux_sym_permit_local_command_token1] = ACTIONS(1053), - [aux_sym_permit_remote_open_token1] = ACTIONS(1053), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1053), - [aux_sym_port_token1] = ACTIONS(1053), - [aux_sym_preferred_authentications_token1] = ACTIONS(1053), - [aux_sym_protocol_token1] = ACTIONS(1053), - [aux_sym_proxy_command_token1] = ACTIONS(1053), - [aux_sym_proxy_jump_token1] = ACTIONS(1053), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1053), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1053), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1053), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1053), - [aux_sym_rekey_limit_token1] = ACTIONS(1053), - [aux_sym_remote_command_token1] = ACTIONS(1053), - [aux_sym_remote_forward_token1] = ACTIONS(1053), - [aux_sym_request_tty_token1] = ACTIONS(1053), - [aux_sym_required_rsa_size_token1] = ACTIONS(1053), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1053), - [aux_sym_security_key_provider_token1] = ACTIONS(1053), - [aux_sym_send_env_token1] = ACTIONS(1053), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1053), - [aux_sym_server_alive_interval_token1] = ACTIONS(1053), - [aux_sym_session_type_token1] = ACTIONS(1053), - [aux_sym_set_env_token1] = ACTIONS(1053), - [aux_sym_stdin_null_token1] = ACTIONS(1053), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1053), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1053), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1053), - [aux_sym_syslog_facility_token1] = ACTIONS(1053), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1053), - [aux_sym_keep_alive_token1] = ACTIONS(1053), - [aux_sym_tunnel_token1] = ACTIONS(1055), - [aux_sym_tunnel_device_token1] = ACTIONS(1053), - [aux_sym_update_host_keys_token1] = ACTIONS(1053), - [aux_sym_use_keychain_token1] = ACTIONS(1053), - [aux_sym_use_roaming_token1] = ACTIONS(1053), - [aux_sym_user_token1] = ACTIONS(1055), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1053), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1053), - [aux_sym_visual_host_key_token1] = ACTIONS(1053), - [aux_sym_xauth_location_token1] = ACTIONS(1053), + [ts_builtin_sym_end] = ACTIONS(1058), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1060), + [anon_sym_DQUOTE] = ACTIONS(1062), + [aux_sym_match_token1] = ACTIONS(1058), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1058), + [aux_sym_address_family_token1] = ACTIONS(1058), + [aux_sym_batch_mode_token1] = ACTIONS(1058), + [aux_sym_bind_address_token1] = ACTIONS(1058), + [aux_sym_bind_interface_token1] = ACTIONS(1058), + [aux_sym_canonical_domains_token1] = ACTIONS(1058), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1058), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1058), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1058), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1058), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1058), + [aux_sym_certificate_file_token1] = ACTIONS(1058), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1058), + [aux_sym_check_host_ip_token1] = ACTIONS(1058), + [aux_sym_ciphers_token1] = ACTIONS(1058), + [aux_sym_cipher_token1] = ACTIONS(1060), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1058), + [aux_sym_compression_token1] = ACTIONS(1058), + [aux_sym_connection_attempts_token1] = ACTIONS(1058), + [aux_sym_connect_timeout_token1] = ACTIONS(1058), + [aux_sym_control_master_token1] = ACTIONS(1058), + [aux_sym_control_path_token1] = ACTIONS(1058), + [aux_sym_control_persist_token1] = ACTIONS(1058), + [aux_sym_dynamic_forward_token1] = ACTIONS(1058), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1058), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1058), + [aux_sym_escape_char_token1] = ACTIONS(1058), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1058), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1058), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1058), + [aux_sym_forward_agent_token1] = ACTIONS(1058), + [aux_sym_forward_x11_token1] = ACTIONS(1060), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1058), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1058), + [aux_sym_gateway_ports_token1] = ACTIONS(1058), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1058), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1058), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1058), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1058), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1058), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1058), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1058), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1058), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1058), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1058), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1058), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1058), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1058), + [aux_sym_host_key_alias_token1] = ACTIONS(1058), + [aux_sym_hostname_token1] = ACTIONS(1058), + [aux_sym_identities_only_token1] = ACTIONS(1058), + [aux_sym_identity_agent_token1] = ACTIONS(1058), + [aux_sym_identity_file_token1] = ACTIONS(1058), + [aux_sym_ignore_unknown_token1] = ACTIONS(1058), + [aux_sym_include_token1] = ACTIONS(1058), + [aux_sym_ip_qos_token1] = ACTIONS(1058), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1058), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1058), + [aux_sym_kex_algorithms_token1] = ACTIONS(1058), + [aux_sym_known_hosts_command_token1] = ACTIONS(1058), + [aux_sym_local_command_token1] = ACTIONS(1058), + [aux_sym_local_forward_token1] = ACTIONS(1058), + [aux_sym_log_level_token1] = ACTIONS(1058), + [aux_sym_log_verbose_token1] = ACTIONS(1058), + [aux_sym_macs_token1] = ACTIONS(1058), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1058), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1058), + [aux_sym_password_authentication_token1] = ACTIONS(1058), + [aux_sym_permit_local_command_token1] = ACTIONS(1058), + [aux_sym_permit_remote_open_token1] = ACTIONS(1058), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1058), + [aux_sym_port_token1] = ACTIONS(1058), + [aux_sym_preferred_authentications_token1] = ACTIONS(1058), + [aux_sym_protocol_token1] = ACTIONS(1058), + [aux_sym_proxy_command_token1] = ACTIONS(1058), + [aux_sym_proxy_jump_token1] = ACTIONS(1058), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1058), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1058), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1058), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1058), + [aux_sym_rekey_limit_token1] = ACTIONS(1058), + [aux_sym_remote_command_token1] = ACTIONS(1058), + [aux_sym_remote_forward_token1] = ACTIONS(1058), + [aux_sym_request_tty_token1] = ACTIONS(1058), + [aux_sym_required_rsa_size_token1] = ACTIONS(1058), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1058), + [aux_sym_security_key_provider_token1] = ACTIONS(1058), + [aux_sym_send_env_token1] = ACTIONS(1058), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1058), + [aux_sym_server_alive_interval_token1] = ACTIONS(1058), + [aux_sym_session_type_token1] = ACTIONS(1058), + [aux_sym_set_env_token1] = ACTIONS(1058), + [aux_sym_stdin_null_token1] = ACTIONS(1058), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1058), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1058), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1058), + [aux_sym_syslog_facility_token1] = ACTIONS(1058), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1058), + [aux_sym_keep_alive_token1] = ACTIONS(1058), + [aux_sym_tunnel_token1] = ACTIONS(1060), + [aux_sym_tunnel_device_token1] = ACTIONS(1058), + [aux_sym_update_host_keys_token1] = ACTIONS(1058), + [aux_sym_use_keychain_token1] = ACTIONS(1058), + [aux_sym_use_roaming_token1] = ACTIONS(1058), + [aux_sym_user_token1] = ACTIONS(1060), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1058), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1058), + [aux_sym_visual_host_key_token1] = ACTIONS(1058), + [aux_sym_xauth_location_token1] = ACTIONS(1058), }, [87] = { - [ts_builtin_sym_end] = ACTIONS(1059), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1063), - [aux_sym_match_token1] = ACTIONS(1059), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1059), - [aux_sym_address_family_token1] = ACTIONS(1059), - [aux_sym_batch_mode_token1] = ACTIONS(1059), - [aux_sym_bind_address_token1] = ACTIONS(1059), - [aux_sym_bind_interface_token1] = ACTIONS(1059), - [aux_sym_canonical_domains_token1] = ACTIONS(1059), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1059), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1059), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1059), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1059), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1059), - [aux_sym_certificate_file_token1] = ACTIONS(1059), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1059), - [aux_sym_check_host_ip_token1] = ACTIONS(1059), - [aux_sym_ciphers_token1] = ACTIONS(1059), - [aux_sym_cipher_token1] = ACTIONS(1061), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1059), - [aux_sym_compression_token1] = ACTIONS(1059), - [aux_sym_connection_attempts_token1] = ACTIONS(1059), - [aux_sym_connect_timeout_token1] = ACTIONS(1059), - [aux_sym_control_master_token1] = ACTIONS(1059), - [aux_sym_control_path_token1] = ACTIONS(1059), - [aux_sym_control_persist_token1] = ACTIONS(1059), - [aux_sym_dynamic_forward_token1] = ACTIONS(1059), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1059), - [aux_sym_escape_char_token1] = ACTIONS(1059), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1059), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1059), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1059), - [aux_sym_forward_agent_token1] = ACTIONS(1059), - [aux_sym_forward_x11_token1] = ACTIONS(1061), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1059), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1059), - [aux_sym_gateway_ports_token1] = ACTIONS(1059), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1059), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1059), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1059), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1059), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1059), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1059), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1059), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1059), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1059), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1059), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1059), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1059), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1059), - [aux_sym_host_key_alias_token1] = ACTIONS(1059), - [aux_sym_hostname_token1] = ACTIONS(1059), - [aux_sym_identities_only_token1] = ACTIONS(1059), - [aux_sym_identity_agent_token1] = ACTIONS(1059), - [aux_sym_identity_file_token1] = ACTIONS(1059), - [aux_sym_ignore_unknown_token1] = ACTIONS(1059), - [aux_sym_include_token1] = ACTIONS(1059), - [aux_sym_ip_qos_token1] = ACTIONS(1059), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1059), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1059), - [aux_sym_kex_algorithms_token1] = ACTIONS(1059), - [aux_sym_known_hosts_command_token1] = ACTIONS(1059), - [aux_sym_local_command_token1] = ACTIONS(1059), - [aux_sym_local_forward_token1] = ACTIONS(1059), - [aux_sym_log_level_token1] = ACTIONS(1059), - [aux_sym_log_verbose_token1] = ACTIONS(1059), - [aux_sym_macs_token1] = ACTIONS(1059), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1059), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1059), - [aux_sym_password_authentication_token1] = ACTIONS(1059), - [aux_sym_permit_local_command_token1] = ACTIONS(1059), - [aux_sym_permit_remote_open_token1] = ACTIONS(1059), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1059), - [aux_sym_port_token1] = ACTIONS(1059), - [aux_sym_preferred_authentications_token1] = ACTIONS(1059), - [aux_sym_protocol_token1] = ACTIONS(1059), - [aux_sym_proxy_command_token1] = ACTIONS(1059), - [aux_sym_proxy_jump_token1] = ACTIONS(1059), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1059), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1059), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1059), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1059), - [aux_sym_rekey_limit_token1] = ACTIONS(1059), - [aux_sym_remote_command_token1] = ACTIONS(1059), - [aux_sym_remote_forward_token1] = ACTIONS(1059), - [aux_sym_request_tty_token1] = ACTIONS(1059), - [aux_sym_required_rsa_size_token1] = ACTIONS(1059), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1059), - [aux_sym_security_key_provider_token1] = ACTIONS(1059), - [aux_sym_send_env_token1] = ACTIONS(1059), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1059), - [aux_sym_server_alive_interval_token1] = ACTIONS(1059), - [aux_sym_session_type_token1] = ACTIONS(1059), - [aux_sym_set_env_token1] = ACTIONS(1059), - [aux_sym_stdin_null_token1] = ACTIONS(1059), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1059), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1059), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1059), - [aux_sym_syslog_facility_token1] = ACTIONS(1059), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1059), - [aux_sym_keep_alive_token1] = ACTIONS(1059), - [aux_sym_tunnel_token1] = ACTIONS(1061), - [aux_sym_tunnel_device_token1] = ACTIONS(1059), - [aux_sym_update_host_keys_token1] = ACTIONS(1059), - [aux_sym_use_keychain_token1] = ACTIONS(1059), - [aux_sym_use_roaming_token1] = ACTIONS(1059), - [aux_sym_user_token1] = ACTIONS(1061), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1059), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1059), - [aux_sym_visual_host_key_token1] = ACTIONS(1059), - [aux_sym_xauth_location_token1] = ACTIONS(1059), + [ts_builtin_sym_end] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1068), + [aux_sym_match_token1] = ACTIONS(1064), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1064), + [aux_sym_address_family_token1] = ACTIONS(1064), + [aux_sym_batch_mode_token1] = ACTIONS(1064), + [aux_sym_bind_address_token1] = ACTIONS(1064), + [aux_sym_bind_interface_token1] = ACTIONS(1064), + [aux_sym_canonical_domains_token1] = ACTIONS(1064), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1064), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1064), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1064), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1064), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1064), + [aux_sym_certificate_file_token1] = ACTIONS(1064), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1064), + [aux_sym_check_host_ip_token1] = ACTIONS(1064), + [aux_sym_ciphers_token1] = ACTIONS(1064), + [aux_sym_cipher_token1] = ACTIONS(1066), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1064), + [aux_sym_compression_token1] = ACTIONS(1064), + [aux_sym_connection_attempts_token1] = ACTIONS(1064), + [aux_sym_connect_timeout_token1] = ACTIONS(1064), + [aux_sym_control_master_token1] = ACTIONS(1064), + [aux_sym_control_path_token1] = ACTIONS(1064), + [aux_sym_control_persist_token1] = ACTIONS(1064), + [aux_sym_dynamic_forward_token1] = ACTIONS(1064), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1064), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1064), + [aux_sym_escape_char_token1] = ACTIONS(1064), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1064), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1064), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1064), + [aux_sym_forward_agent_token1] = ACTIONS(1064), + [aux_sym_forward_x11_token1] = ACTIONS(1066), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1064), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1064), + [aux_sym_gateway_ports_token1] = ACTIONS(1064), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1064), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1064), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1064), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1064), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1064), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1064), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1064), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1064), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1064), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1064), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1064), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1064), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1064), + [aux_sym_host_key_alias_token1] = ACTIONS(1064), + [aux_sym_hostname_token1] = ACTIONS(1064), + [aux_sym_identities_only_token1] = ACTIONS(1064), + [aux_sym_identity_agent_token1] = ACTIONS(1064), + [aux_sym_identity_file_token1] = ACTIONS(1064), + [aux_sym_ignore_unknown_token1] = ACTIONS(1064), + [aux_sym_include_token1] = ACTIONS(1064), + [aux_sym_ip_qos_token1] = ACTIONS(1064), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1064), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1064), + [aux_sym_kex_algorithms_token1] = ACTIONS(1064), + [aux_sym_known_hosts_command_token1] = ACTIONS(1064), + [aux_sym_local_command_token1] = ACTIONS(1064), + [aux_sym_local_forward_token1] = ACTIONS(1064), + [aux_sym_log_level_token1] = ACTIONS(1064), + [aux_sym_log_verbose_token1] = ACTIONS(1064), + [aux_sym_macs_token1] = ACTIONS(1064), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1064), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1064), + [aux_sym_password_authentication_token1] = ACTIONS(1064), + [aux_sym_permit_local_command_token1] = ACTIONS(1064), + [aux_sym_permit_remote_open_token1] = ACTIONS(1064), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1064), + [aux_sym_port_token1] = ACTIONS(1064), + [aux_sym_preferred_authentications_token1] = ACTIONS(1064), + [aux_sym_protocol_token1] = ACTIONS(1064), + [aux_sym_proxy_command_token1] = ACTIONS(1064), + [aux_sym_proxy_jump_token1] = ACTIONS(1064), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1064), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1064), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1064), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1064), + [aux_sym_rekey_limit_token1] = ACTIONS(1064), + [aux_sym_remote_command_token1] = ACTIONS(1064), + [aux_sym_remote_forward_token1] = ACTIONS(1064), + [aux_sym_request_tty_token1] = ACTIONS(1064), + [aux_sym_required_rsa_size_token1] = ACTIONS(1064), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1064), + [aux_sym_security_key_provider_token1] = ACTIONS(1064), + [aux_sym_send_env_token1] = ACTIONS(1064), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1064), + [aux_sym_server_alive_interval_token1] = ACTIONS(1064), + [aux_sym_session_type_token1] = ACTIONS(1064), + [aux_sym_set_env_token1] = ACTIONS(1064), + [aux_sym_stdin_null_token1] = ACTIONS(1064), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1064), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1064), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1064), + [aux_sym_syslog_facility_token1] = ACTIONS(1064), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1064), + [aux_sym_keep_alive_token1] = ACTIONS(1064), + [aux_sym_tunnel_token1] = ACTIONS(1066), + [aux_sym_tunnel_device_token1] = ACTIONS(1064), + [aux_sym_update_host_keys_token1] = ACTIONS(1064), + [aux_sym_use_keychain_token1] = ACTIONS(1064), + [aux_sym_use_roaming_token1] = ACTIONS(1064), + [aux_sym_user_token1] = ACTIONS(1066), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1064), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1064), + [aux_sym_visual_host_key_token1] = ACTIONS(1064), + [aux_sym_xauth_location_token1] = ACTIONS(1064), }, [88] = { - [ts_builtin_sym_end] = ACTIONS(1065), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1067), - [anon_sym_DQUOTE] = ACTIONS(1069), - [aux_sym_match_token1] = ACTIONS(1065), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1065), - [aux_sym_address_family_token1] = ACTIONS(1065), - [aux_sym_batch_mode_token1] = ACTIONS(1065), - [aux_sym_bind_address_token1] = ACTIONS(1065), - [aux_sym_bind_interface_token1] = ACTIONS(1065), - [aux_sym_canonical_domains_token1] = ACTIONS(1065), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1065), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1065), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1065), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1065), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1065), - [aux_sym_certificate_file_token1] = ACTIONS(1065), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1065), - [aux_sym_check_host_ip_token1] = ACTIONS(1065), - [aux_sym_ciphers_token1] = ACTIONS(1065), - [aux_sym_cipher_token1] = ACTIONS(1067), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1065), - [aux_sym_compression_token1] = ACTIONS(1065), - [aux_sym_connection_attempts_token1] = ACTIONS(1065), - [aux_sym_connect_timeout_token1] = ACTIONS(1065), - [aux_sym_control_master_token1] = ACTIONS(1065), - [aux_sym_control_path_token1] = ACTIONS(1065), - [aux_sym_control_persist_token1] = ACTIONS(1065), - [aux_sym_dynamic_forward_token1] = ACTIONS(1065), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1065), - [aux_sym_escape_char_token1] = ACTIONS(1065), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1065), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1065), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1065), - [aux_sym_forward_agent_token1] = ACTIONS(1065), - [aux_sym_forward_x11_token1] = ACTIONS(1067), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1065), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1065), - [aux_sym_gateway_ports_token1] = ACTIONS(1065), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1065), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1065), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1065), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1065), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1065), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1065), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1065), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1065), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1065), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1065), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1065), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1065), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1065), - [aux_sym_host_key_alias_token1] = ACTIONS(1065), - [aux_sym_hostname_token1] = ACTIONS(1065), - [aux_sym_identities_only_token1] = ACTIONS(1065), - [aux_sym_identity_agent_token1] = ACTIONS(1065), - [aux_sym_identity_file_token1] = ACTIONS(1065), - [aux_sym_ignore_unknown_token1] = ACTIONS(1065), - [aux_sym_include_token1] = ACTIONS(1065), - [aux_sym_ip_qos_token1] = ACTIONS(1065), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1065), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1065), - [aux_sym_kex_algorithms_token1] = ACTIONS(1065), - [aux_sym_known_hosts_command_token1] = ACTIONS(1065), - [aux_sym_local_command_token1] = ACTIONS(1065), - [aux_sym_local_forward_token1] = ACTIONS(1065), - [aux_sym_log_level_token1] = ACTIONS(1065), - [aux_sym_log_verbose_token1] = ACTIONS(1065), - [aux_sym_macs_token1] = ACTIONS(1065), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1065), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1065), - [aux_sym_password_authentication_token1] = ACTIONS(1065), - [aux_sym_permit_local_command_token1] = ACTIONS(1065), - [aux_sym_permit_remote_open_token1] = ACTIONS(1065), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1065), - [aux_sym_port_token1] = ACTIONS(1065), - [aux_sym_preferred_authentications_token1] = ACTIONS(1065), - [aux_sym_protocol_token1] = ACTIONS(1065), - [aux_sym_proxy_command_token1] = ACTIONS(1065), - [aux_sym_proxy_jump_token1] = ACTIONS(1065), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1065), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1065), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1065), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1065), - [aux_sym_rekey_limit_token1] = ACTIONS(1065), - [aux_sym_remote_command_token1] = ACTIONS(1065), - [aux_sym_remote_forward_token1] = ACTIONS(1065), - [aux_sym_request_tty_token1] = ACTIONS(1065), - [aux_sym_required_rsa_size_token1] = ACTIONS(1065), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1065), - [aux_sym_security_key_provider_token1] = ACTIONS(1065), - [aux_sym_send_env_token1] = ACTIONS(1065), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1065), - [aux_sym_server_alive_interval_token1] = ACTIONS(1065), - [aux_sym_session_type_token1] = ACTIONS(1065), - [aux_sym_set_env_token1] = ACTIONS(1065), - [aux_sym_stdin_null_token1] = ACTIONS(1065), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1065), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1065), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1065), - [aux_sym_syslog_facility_token1] = ACTIONS(1065), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1065), - [aux_sym_keep_alive_token1] = ACTIONS(1065), - [aux_sym_tunnel_token1] = ACTIONS(1067), - [aux_sym_tunnel_device_token1] = ACTIONS(1065), - [aux_sym_update_host_keys_token1] = ACTIONS(1065), - [aux_sym_use_keychain_token1] = ACTIONS(1065), - [aux_sym_use_roaming_token1] = ACTIONS(1065), - [aux_sym_user_token1] = ACTIONS(1067), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1065), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1065), - [aux_sym_visual_host_key_token1] = ACTIONS(1065), - [aux_sym_xauth_location_token1] = ACTIONS(1065), + [ts_builtin_sym_end] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1074), + [aux_sym_match_token1] = ACTIONS(1070), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1070), + [aux_sym_address_family_token1] = ACTIONS(1070), + [aux_sym_batch_mode_token1] = ACTIONS(1070), + [aux_sym_bind_address_token1] = ACTIONS(1070), + [aux_sym_bind_interface_token1] = ACTIONS(1070), + [aux_sym_canonical_domains_token1] = ACTIONS(1070), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1070), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1070), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1070), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1070), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1070), + [aux_sym_certificate_file_token1] = ACTIONS(1070), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1070), + [aux_sym_check_host_ip_token1] = ACTIONS(1070), + [aux_sym_ciphers_token1] = ACTIONS(1070), + [aux_sym_cipher_token1] = ACTIONS(1072), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1070), + [aux_sym_compression_token1] = ACTIONS(1070), + [aux_sym_connection_attempts_token1] = ACTIONS(1070), + [aux_sym_connect_timeout_token1] = ACTIONS(1070), + [aux_sym_control_master_token1] = ACTIONS(1070), + [aux_sym_control_path_token1] = ACTIONS(1070), + [aux_sym_control_persist_token1] = ACTIONS(1070), + [aux_sym_dynamic_forward_token1] = ACTIONS(1070), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1070), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1070), + [aux_sym_escape_char_token1] = ACTIONS(1070), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1070), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1070), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1070), + [aux_sym_forward_agent_token1] = ACTIONS(1070), + [aux_sym_forward_x11_token1] = ACTIONS(1072), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1070), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1070), + [aux_sym_gateway_ports_token1] = ACTIONS(1070), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1070), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1070), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1070), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1070), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1070), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1070), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1070), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1070), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1070), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1070), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1070), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1070), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1070), + [aux_sym_host_key_alias_token1] = ACTIONS(1070), + [aux_sym_hostname_token1] = ACTIONS(1070), + [aux_sym_identities_only_token1] = ACTIONS(1070), + [aux_sym_identity_agent_token1] = ACTIONS(1070), + [aux_sym_identity_file_token1] = ACTIONS(1070), + [aux_sym_ignore_unknown_token1] = ACTIONS(1070), + [aux_sym_include_token1] = ACTIONS(1070), + [aux_sym_ip_qos_token1] = ACTIONS(1070), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1070), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1070), + [aux_sym_kex_algorithms_token1] = ACTIONS(1070), + [aux_sym_known_hosts_command_token1] = ACTIONS(1070), + [aux_sym_local_command_token1] = ACTIONS(1070), + [aux_sym_local_forward_token1] = ACTIONS(1070), + [aux_sym_log_level_token1] = ACTIONS(1070), + [aux_sym_log_verbose_token1] = ACTIONS(1070), + [aux_sym_macs_token1] = ACTIONS(1070), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1070), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1070), + [aux_sym_password_authentication_token1] = ACTIONS(1070), + [aux_sym_permit_local_command_token1] = ACTIONS(1070), + [aux_sym_permit_remote_open_token1] = ACTIONS(1070), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1070), + [aux_sym_port_token1] = ACTIONS(1070), + [aux_sym_preferred_authentications_token1] = ACTIONS(1070), + [aux_sym_protocol_token1] = ACTIONS(1070), + [aux_sym_proxy_command_token1] = ACTIONS(1070), + [aux_sym_proxy_jump_token1] = ACTIONS(1070), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1070), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1070), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1070), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1070), + [aux_sym_rekey_limit_token1] = ACTIONS(1070), + [aux_sym_remote_command_token1] = ACTIONS(1070), + [aux_sym_remote_forward_token1] = ACTIONS(1070), + [aux_sym_request_tty_token1] = ACTIONS(1070), + [aux_sym_required_rsa_size_token1] = ACTIONS(1070), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1070), + [aux_sym_security_key_provider_token1] = ACTIONS(1070), + [aux_sym_send_env_token1] = ACTIONS(1070), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1070), + [aux_sym_server_alive_interval_token1] = ACTIONS(1070), + [aux_sym_session_type_token1] = ACTIONS(1070), + [aux_sym_set_env_token1] = ACTIONS(1070), + [aux_sym_stdin_null_token1] = ACTIONS(1070), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1070), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1070), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1070), + [aux_sym_syslog_facility_token1] = ACTIONS(1070), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1070), + [aux_sym_keep_alive_token1] = ACTIONS(1070), + [aux_sym_tunnel_token1] = ACTIONS(1072), + [aux_sym_tunnel_device_token1] = ACTIONS(1070), + [aux_sym_update_host_keys_token1] = ACTIONS(1070), + [aux_sym_use_keychain_token1] = ACTIONS(1070), + [aux_sym_use_roaming_token1] = ACTIONS(1070), + [aux_sym_user_token1] = ACTIONS(1072), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1070), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1070), + [aux_sym_visual_host_key_token1] = ACTIONS(1070), + [aux_sym_xauth_location_token1] = ACTIONS(1070), }, [89] = { - [ts_builtin_sym_end] = ACTIONS(1071), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1075), - [aux_sym_match_token1] = ACTIONS(1071), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1071), - [aux_sym_address_family_token1] = ACTIONS(1071), - [aux_sym_batch_mode_token1] = ACTIONS(1071), - [aux_sym_bind_address_token1] = ACTIONS(1071), - [aux_sym_bind_interface_token1] = ACTIONS(1071), - [aux_sym_canonical_domains_token1] = ACTIONS(1071), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1071), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1071), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1071), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1071), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1071), - [aux_sym_certificate_file_token1] = ACTIONS(1071), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1071), - [aux_sym_check_host_ip_token1] = ACTIONS(1071), - [aux_sym_ciphers_token1] = ACTIONS(1071), - [aux_sym_cipher_token1] = ACTIONS(1073), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1071), - [aux_sym_compression_token1] = ACTIONS(1071), - [aux_sym_connection_attempts_token1] = ACTIONS(1071), - [aux_sym_connect_timeout_token1] = ACTIONS(1071), - [aux_sym_control_master_token1] = ACTIONS(1071), - [aux_sym_control_path_token1] = ACTIONS(1071), - [aux_sym_control_persist_token1] = ACTIONS(1071), - [aux_sym_dynamic_forward_token1] = ACTIONS(1071), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1071), - [aux_sym_escape_char_token1] = ACTIONS(1071), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1071), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1071), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1071), - [aux_sym_forward_agent_token1] = ACTIONS(1071), - [aux_sym_forward_x11_token1] = ACTIONS(1073), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1071), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1071), - [aux_sym_gateway_ports_token1] = ACTIONS(1071), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1071), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1071), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1071), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1071), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1071), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1071), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1071), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1071), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1071), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1071), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1071), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1071), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1071), - [aux_sym_host_key_alias_token1] = ACTIONS(1071), - [aux_sym_hostname_token1] = ACTIONS(1071), - [aux_sym_identities_only_token1] = ACTIONS(1071), - [aux_sym_identity_agent_token1] = ACTIONS(1071), - [aux_sym_identity_file_token1] = ACTIONS(1071), - [aux_sym_ignore_unknown_token1] = ACTIONS(1071), - [aux_sym_include_token1] = ACTIONS(1071), - [aux_sym_ip_qos_token1] = ACTIONS(1071), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1071), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1071), - [aux_sym_kex_algorithms_token1] = ACTIONS(1071), - [aux_sym_known_hosts_command_token1] = ACTIONS(1071), - [aux_sym_local_command_token1] = ACTIONS(1071), - [aux_sym_local_forward_token1] = ACTIONS(1071), - [aux_sym_log_level_token1] = ACTIONS(1071), - [aux_sym_log_verbose_token1] = ACTIONS(1071), - [aux_sym_macs_token1] = ACTIONS(1071), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1071), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1071), - [aux_sym_password_authentication_token1] = ACTIONS(1071), - [aux_sym_permit_local_command_token1] = ACTIONS(1071), - [aux_sym_permit_remote_open_token1] = ACTIONS(1071), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1071), - [aux_sym_port_token1] = ACTIONS(1071), - [aux_sym_preferred_authentications_token1] = ACTIONS(1071), - [aux_sym_protocol_token1] = ACTIONS(1071), - [aux_sym_proxy_command_token1] = ACTIONS(1071), - [aux_sym_proxy_jump_token1] = ACTIONS(1071), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1071), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1071), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1071), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1071), - [aux_sym_rekey_limit_token1] = ACTIONS(1071), - [aux_sym_remote_command_token1] = ACTIONS(1071), - [aux_sym_remote_forward_token1] = ACTIONS(1071), - [aux_sym_request_tty_token1] = ACTIONS(1071), - [aux_sym_required_rsa_size_token1] = ACTIONS(1071), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1071), - [aux_sym_security_key_provider_token1] = ACTIONS(1071), - [aux_sym_send_env_token1] = ACTIONS(1071), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1071), - [aux_sym_server_alive_interval_token1] = ACTIONS(1071), - [aux_sym_session_type_token1] = ACTIONS(1071), - [aux_sym_set_env_token1] = ACTIONS(1071), - [aux_sym_stdin_null_token1] = ACTIONS(1071), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1071), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1071), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1071), - [aux_sym_syslog_facility_token1] = ACTIONS(1071), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1071), - [aux_sym_keep_alive_token1] = ACTIONS(1071), - [aux_sym_tunnel_token1] = ACTIONS(1073), - [aux_sym_tunnel_device_token1] = ACTIONS(1071), - [aux_sym_update_host_keys_token1] = ACTIONS(1071), - [aux_sym_use_keychain_token1] = ACTIONS(1071), - [aux_sym_use_roaming_token1] = ACTIONS(1071), - [aux_sym_user_token1] = ACTIONS(1073), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1071), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1071), - [aux_sym_visual_host_key_token1] = ACTIONS(1071), - [aux_sym_xauth_location_token1] = ACTIONS(1071), + [ts_builtin_sym_end] = ACTIONS(1076), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1080), + [aux_sym_match_token1] = ACTIONS(1076), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1076), + [aux_sym_address_family_token1] = ACTIONS(1076), + [aux_sym_batch_mode_token1] = ACTIONS(1076), + [aux_sym_bind_address_token1] = ACTIONS(1076), + [aux_sym_bind_interface_token1] = ACTIONS(1076), + [aux_sym_canonical_domains_token1] = ACTIONS(1076), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1076), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1076), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1076), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1076), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1076), + [aux_sym_certificate_file_token1] = ACTIONS(1076), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1076), + [aux_sym_check_host_ip_token1] = ACTIONS(1076), + [aux_sym_ciphers_token1] = ACTIONS(1076), + [aux_sym_cipher_token1] = ACTIONS(1078), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1076), + [aux_sym_compression_token1] = ACTIONS(1076), + [aux_sym_connection_attempts_token1] = ACTIONS(1076), + [aux_sym_connect_timeout_token1] = ACTIONS(1076), + [aux_sym_control_master_token1] = ACTIONS(1076), + [aux_sym_control_path_token1] = ACTIONS(1076), + [aux_sym_control_persist_token1] = ACTIONS(1076), + [aux_sym_dynamic_forward_token1] = ACTIONS(1076), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1076), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1076), + [aux_sym_escape_char_token1] = ACTIONS(1076), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1076), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1076), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1076), + [aux_sym_forward_agent_token1] = ACTIONS(1076), + [aux_sym_forward_x11_token1] = ACTIONS(1078), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1076), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1076), + [aux_sym_gateway_ports_token1] = ACTIONS(1076), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1076), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1076), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1076), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1076), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1076), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1076), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1076), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1076), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1076), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1076), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1076), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1076), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1076), + [aux_sym_host_key_alias_token1] = ACTIONS(1076), + [aux_sym_hostname_token1] = ACTIONS(1076), + [aux_sym_identities_only_token1] = ACTIONS(1076), + [aux_sym_identity_agent_token1] = ACTIONS(1076), + [aux_sym_identity_file_token1] = ACTIONS(1076), + [aux_sym_ignore_unknown_token1] = ACTIONS(1076), + [aux_sym_include_token1] = ACTIONS(1076), + [aux_sym_ip_qos_token1] = ACTIONS(1076), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1076), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1076), + [aux_sym_kex_algorithms_token1] = ACTIONS(1076), + [aux_sym_known_hosts_command_token1] = ACTIONS(1076), + [aux_sym_local_command_token1] = ACTIONS(1076), + [aux_sym_local_forward_token1] = ACTIONS(1076), + [aux_sym_log_level_token1] = ACTIONS(1076), + [aux_sym_log_verbose_token1] = ACTIONS(1076), + [aux_sym_macs_token1] = ACTIONS(1076), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1076), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1076), + [aux_sym_password_authentication_token1] = ACTIONS(1076), + [aux_sym_permit_local_command_token1] = ACTIONS(1076), + [aux_sym_permit_remote_open_token1] = ACTIONS(1076), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1076), + [aux_sym_port_token1] = ACTIONS(1076), + [aux_sym_preferred_authentications_token1] = ACTIONS(1076), + [aux_sym_protocol_token1] = ACTIONS(1076), + [aux_sym_proxy_command_token1] = ACTIONS(1076), + [aux_sym_proxy_jump_token1] = ACTIONS(1076), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1076), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1076), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1076), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1076), + [aux_sym_rekey_limit_token1] = ACTIONS(1076), + [aux_sym_remote_command_token1] = ACTIONS(1076), + [aux_sym_remote_forward_token1] = ACTIONS(1076), + [aux_sym_request_tty_token1] = ACTIONS(1076), + [aux_sym_required_rsa_size_token1] = ACTIONS(1076), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1076), + [aux_sym_security_key_provider_token1] = ACTIONS(1076), + [aux_sym_send_env_token1] = ACTIONS(1076), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1076), + [aux_sym_server_alive_interval_token1] = ACTIONS(1076), + [aux_sym_session_type_token1] = ACTIONS(1076), + [aux_sym_set_env_token1] = ACTIONS(1076), + [aux_sym_stdin_null_token1] = ACTIONS(1076), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1076), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1076), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1076), + [aux_sym_syslog_facility_token1] = ACTIONS(1076), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1076), + [aux_sym_keep_alive_token1] = ACTIONS(1076), + [aux_sym_tunnel_token1] = ACTIONS(1078), + [aux_sym_tunnel_device_token1] = ACTIONS(1076), + [aux_sym_update_host_keys_token1] = ACTIONS(1076), + [aux_sym_use_keychain_token1] = ACTIONS(1076), + [aux_sym_use_roaming_token1] = ACTIONS(1076), + [aux_sym_user_token1] = ACTIONS(1078), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1076), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1076), + [aux_sym_visual_host_key_token1] = ACTIONS(1076), + [aux_sym_xauth_location_token1] = ACTIONS(1076), }, [90] = { - [ts_builtin_sym_end] = ACTIONS(1077), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1079), - [anon_sym_DQUOTE] = ACTIONS(1081), - [aux_sym_match_token1] = ACTIONS(1077), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1077), - [aux_sym_address_family_token1] = ACTIONS(1077), - [aux_sym_batch_mode_token1] = ACTIONS(1077), - [aux_sym_bind_address_token1] = ACTIONS(1077), - [aux_sym_bind_interface_token1] = ACTIONS(1077), - [aux_sym_canonical_domains_token1] = ACTIONS(1077), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1077), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1077), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1077), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1077), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1077), - [aux_sym_certificate_file_token1] = ACTIONS(1077), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1077), - [aux_sym_check_host_ip_token1] = ACTIONS(1077), - [aux_sym_ciphers_token1] = ACTIONS(1077), - [aux_sym_cipher_token1] = ACTIONS(1079), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1077), - [aux_sym_compression_token1] = ACTIONS(1077), - [aux_sym_connection_attempts_token1] = ACTIONS(1077), - [aux_sym_connect_timeout_token1] = ACTIONS(1077), - [aux_sym_control_master_token1] = ACTIONS(1077), - [aux_sym_control_path_token1] = ACTIONS(1077), - [aux_sym_control_persist_token1] = ACTIONS(1077), - [aux_sym_dynamic_forward_token1] = ACTIONS(1077), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1077), - [aux_sym_escape_char_token1] = ACTIONS(1077), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1077), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1077), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1077), - [aux_sym_forward_agent_token1] = ACTIONS(1077), - [aux_sym_forward_x11_token1] = ACTIONS(1079), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1077), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1077), - [aux_sym_gateway_ports_token1] = ACTIONS(1077), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1077), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1077), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1077), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1077), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1077), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1077), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1077), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1077), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1077), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1077), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1077), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1077), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1077), - [aux_sym_host_key_alias_token1] = ACTIONS(1077), - [aux_sym_hostname_token1] = ACTIONS(1077), - [aux_sym_identities_only_token1] = ACTIONS(1077), - [aux_sym_identity_agent_token1] = ACTIONS(1077), - [aux_sym_identity_file_token1] = ACTIONS(1077), - [aux_sym_ignore_unknown_token1] = ACTIONS(1077), - [aux_sym_include_token1] = ACTIONS(1077), - [aux_sym_ip_qos_token1] = ACTIONS(1077), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1077), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1077), - [aux_sym_kex_algorithms_token1] = ACTIONS(1077), - [aux_sym_known_hosts_command_token1] = ACTIONS(1077), - [aux_sym_local_command_token1] = ACTIONS(1077), - [aux_sym_local_forward_token1] = ACTIONS(1077), - [aux_sym_log_level_token1] = ACTIONS(1077), - [aux_sym_log_verbose_token1] = ACTIONS(1077), - [aux_sym_macs_token1] = ACTIONS(1077), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1077), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1077), - [aux_sym_password_authentication_token1] = ACTIONS(1077), - [aux_sym_permit_local_command_token1] = ACTIONS(1077), - [aux_sym_permit_remote_open_token1] = ACTIONS(1077), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1077), - [aux_sym_port_token1] = ACTIONS(1077), - [aux_sym_preferred_authentications_token1] = ACTIONS(1077), - [aux_sym_protocol_token1] = ACTIONS(1077), - [aux_sym_proxy_command_token1] = ACTIONS(1077), - [aux_sym_proxy_jump_token1] = ACTIONS(1077), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1077), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1077), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1077), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1077), - [aux_sym_rekey_limit_token1] = ACTIONS(1077), - [aux_sym_remote_command_token1] = ACTIONS(1077), - [aux_sym_remote_forward_token1] = ACTIONS(1077), - [aux_sym_request_tty_token1] = ACTIONS(1077), - [aux_sym_required_rsa_size_token1] = ACTIONS(1077), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1077), - [aux_sym_security_key_provider_token1] = ACTIONS(1077), - [aux_sym_send_env_token1] = ACTIONS(1077), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1077), - [aux_sym_server_alive_interval_token1] = ACTIONS(1077), - [aux_sym_session_type_token1] = ACTIONS(1077), - [aux_sym_set_env_token1] = ACTIONS(1077), - [aux_sym_stdin_null_token1] = ACTIONS(1077), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1077), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1077), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1077), - [aux_sym_syslog_facility_token1] = ACTIONS(1077), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1077), - [aux_sym_keep_alive_token1] = ACTIONS(1077), - [aux_sym_tunnel_token1] = ACTIONS(1079), - [aux_sym_tunnel_device_token1] = ACTIONS(1077), - [aux_sym_update_host_keys_token1] = ACTIONS(1077), - [aux_sym_use_keychain_token1] = ACTIONS(1077), - [aux_sym_use_roaming_token1] = ACTIONS(1077), - [aux_sym_user_token1] = ACTIONS(1079), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1077), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1077), - [aux_sym_visual_host_key_token1] = ACTIONS(1077), - [aux_sym_xauth_location_token1] = ACTIONS(1077), + [ts_builtin_sym_end] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1086), + [aux_sym_match_token1] = ACTIONS(1082), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1082), + [aux_sym_address_family_token1] = ACTIONS(1082), + [aux_sym_batch_mode_token1] = ACTIONS(1082), + [aux_sym_bind_address_token1] = ACTIONS(1082), + [aux_sym_bind_interface_token1] = ACTIONS(1082), + [aux_sym_canonical_domains_token1] = ACTIONS(1082), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1082), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1082), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1082), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1082), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1082), + [aux_sym_certificate_file_token1] = ACTIONS(1082), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1082), + [aux_sym_check_host_ip_token1] = ACTIONS(1082), + [aux_sym_ciphers_token1] = ACTIONS(1082), + [aux_sym_cipher_token1] = ACTIONS(1084), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1082), + [aux_sym_compression_token1] = ACTIONS(1082), + [aux_sym_connection_attempts_token1] = ACTIONS(1082), + [aux_sym_connect_timeout_token1] = ACTIONS(1082), + [aux_sym_control_master_token1] = ACTIONS(1082), + [aux_sym_control_path_token1] = ACTIONS(1082), + [aux_sym_control_persist_token1] = ACTIONS(1082), + [aux_sym_dynamic_forward_token1] = ACTIONS(1082), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1082), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1082), + [aux_sym_escape_char_token1] = ACTIONS(1082), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1082), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1082), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1082), + [aux_sym_forward_agent_token1] = ACTIONS(1082), + [aux_sym_forward_x11_token1] = ACTIONS(1084), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1082), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1082), + [aux_sym_gateway_ports_token1] = ACTIONS(1082), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1082), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1082), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1082), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1082), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1082), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1082), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1082), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1082), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1082), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1082), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1082), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1082), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1082), + [aux_sym_host_key_alias_token1] = ACTIONS(1082), + [aux_sym_hostname_token1] = ACTIONS(1082), + [aux_sym_identities_only_token1] = ACTIONS(1082), + [aux_sym_identity_agent_token1] = ACTIONS(1082), + [aux_sym_identity_file_token1] = ACTIONS(1082), + [aux_sym_ignore_unknown_token1] = ACTIONS(1082), + [aux_sym_include_token1] = ACTIONS(1082), + [aux_sym_ip_qos_token1] = ACTIONS(1082), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1082), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1082), + [aux_sym_kex_algorithms_token1] = ACTIONS(1082), + [aux_sym_known_hosts_command_token1] = ACTIONS(1082), + [aux_sym_local_command_token1] = ACTIONS(1082), + [aux_sym_local_forward_token1] = ACTIONS(1082), + [aux_sym_log_level_token1] = ACTIONS(1082), + [aux_sym_log_verbose_token1] = ACTIONS(1082), + [aux_sym_macs_token1] = ACTIONS(1082), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1082), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1082), + [aux_sym_password_authentication_token1] = ACTIONS(1082), + [aux_sym_permit_local_command_token1] = ACTIONS(1082), + [aux_sym_permit_remote_open_token1] = ACTIONS(1082), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1082), + [aux_sym_port_token1] = ACTIONS(1082), + [aux_sym_preferred_authentications_token1] = ACTIONS(1082), + [aux_sym_protocol_token1] = ACTIONS(1082), + [aux_sym_proxy_command_token1] = ACTIONS(1082), + [aux_sym_proxy_jump_token1] = ACTIONS(1082), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1082), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1082), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1082), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1082), + [aux_sym_rekey_limit_token1] = ACTIONS(1082), + [aux_sym_remote_command_token1] = ACTIONS(1082), + [aux_sym_remote_forward_token1] = ACTIONS(1082), + [aux_sym_request_tty_token1] = ACTIONS(1082), + [aux_sym_required_rsa_size_token1] = ACTIONS(1082), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1082), + [aux_sym_security_key_provider_token1] = ACTIONS(1082), + [aux_sym_send_env_token1] = ACTIONS(1082), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1082), + [aux_sym_server_alive_interval_token1] = ACTIONS(1082), + [aux_sym_session_type_token1] = ACTIONS(1082), + [aux_sym_set_env_token1] = ACTIONS(1082), + [aux_sym_stdin_null_token1] = ACTIONS(1082), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1082), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1082), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1082), + [aux_sym_syslog_facility_token1] = ACTIONS(1082), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1082), + [aux_sym_keep_alive_token1] = ACTIONS(1082), + [aux_sym_tunnel_token1] = ACTIONS(1084), + [aux_sym_tunnel_device_token1] = ACTIONS(1082), + [aux_sym_update_host_keys_token1] = ACTIONS(1082), + [aux_sym_use_keychain_token1] = ACTIONS(1082), + [aux_sym_use_roaming_token1] = ACTIONS(1082), + [aux_sym_user_token1] = ACTIONS(1084), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1082), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1082), + [aux_sym_visual_host_key_token1] = ACTIONS(1082), + [aux_sym_xauth_location_token1] = ACTIONS(1082), }, [91] = { - [ts_builtin_sym_end] = ACTIONS(1083), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1085), - [anon_sym_DQUOTE] = ACTIONS(1087), - [aux_sym_match_token1] = ACTIONS(1083), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1083), - [aux_sym_address_family_token1] = ACTIONS(1083), - [aux_sym_batch_mode_token1] = ACTIONS(1083), - [aux_sym_bind_address_token1] = ACTIONS(1083), - [aux_sym_bind_interface_token1] = ACTIONS(1083), - [aux_sym_canonical_domains_token1] = ACTIONS(1083), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1083), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1083), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1083), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1083), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1083), - [aux_sym_certificate_file_token1] = ACTIONS(1083), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1083), - [aux_sym_check_host_ip_token1] = ACTIONS(1083), - [aux_sym_ciphers_token1] = ACTIONS(1083), - [aux_sym_cipher_token1] = ACTIONS(1085), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1083), - [aux_sym_compression_token1] = ACTIONS(1083), - [aux_sym_connection_attempts_token1] = ACTIONS(1083), - [aux_sym_connect_timeout_token1] = ACTIONS(1083), - [aux_sym_control_master_token1] = ACTIONS(1083), - [aux_sym_control_path_token1] = ACTIONS(1083), - [aux_sym_control_persist_token1] = ACTIONS(1083), - [aux_sym_dynamic_forward_token1] = ACTIONS(1083), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1083), - [aux_sym_escape_char_token1] = ACTIONS(1083), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1083), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1083), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1083), - [aux_sym_forward_agent_token1] = ACTIONS(1083), - [aux_sym_forward_x11_token1] = ACTIONS(1085), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1083), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1083), - [aux_sym_gateway_ports_token1] = ACTIONS(1083), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1083), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1083), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1083), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1083), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1083), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1083), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1083), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1083), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1083), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1083), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1083), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1083), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1083), - [aux_sym_host_key_alias_token1] = ACTIONS(1083), - [aux_sym_hostname_token1] = ACTIONS(1083), - [aux_sym_identities_only_token1] = ACTIONS(1083), - [aux_sym_identity_agent_token1] = ACTIONS(1083), - [aux_sym_identity_file_token1] = ACTIONS(1083), - [aux_sym_ignore_unknown_token1] = ACTIONS(1083), - [aux_sym_include_token1] = ACTIONS(1083), - [aux_sym_ip_qos_token1] = ACTIONS(1083), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1083), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1083), - [aux_sym_kex_algorithms_token1] = ACTIONS(1083), - [aux_sym_known_hosts_command_token1] = ACTIONS(1083), - [aux_sym_local_command_token1] = ACTIONS(1083), - [aux_sym_local_forward_token1] = ACTIONS(1083), - [aux_sym_log_level_token1] = ACTIONS(1083), - [aux_sym_log_verbose_token1] = ACTIONS(1083), - [aux_sym_macs_token1] = ACTIONS(1083), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1083), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1083), - [aux_sym_password_authentication_token1] = ACTIONS(1083), - [aux_sym_permit_local_command_token1] = ACTIONS(1083), - [aux_sym_permit_remote_open_token1] = ACTIONS(1083), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1083), - [aux_sym_port_token1] = ACTIONS(1083), - [aux_sym_preferred_authentications_token1] = ACTIONS(1083), - [aux_sym_protocol_token1] = ACTIONS(1083), - [aux_sym_proxy_command_token1] = ACTIONS(1083), - [aux_sym_proxy_jump_token1] = ACTIONS(1083), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1083), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1083), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1083), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1083), - [aux_sym_rekey_limit_token1] = ACTIONS(1083), - [aux_sym_remote_command_token1] = ACTIONS(1083), - [aux_sym_remote_forward_token1] = ACTIONS(1083), - [aux_sym_request_tty_token1] = ACTIONS(1083), - [aux_sym_required_rsa_size_token1] = ACTIONS(1083), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1083), - [aux_sym_security_key_provider_token1] = ACTIONS(1083), - [aux_sym_send_env_token1] = ACTIONS(1083), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1083), - [aux_sym_server_alive_interval_token1] = ACTIONS(1083), - [aux_sym_session_type_token1] = ACTIONS(1083), - [aux_sym_set_env_token1] = ACTIONS(1083), - [aux_sym_stdin_null_token1] = ACTIONS(1083), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1083), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1083), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1083), - [aux_sym_syslog_facility_token1] = ACTIONS(1083), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1083), - [aux_sym_keep_alive_token1] = ACTIONS(1083), - [aux_sym_tunnel_token1] = ACTIONS(1085), - [aux_sym_tunnel_device_token1] = ACTIONS(1083), - [aux_sym_update_host_keys_token1] = ACTIONS(1083), - [aux_sym_use_keychain_token1] = ACTIONS(1083), - [aux_sym_use_roaming_token1] = ACTIONS(1083), - [aux_sym_user_token1] = ACTIONS(1085), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1083), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1083), - [aux_sym_visual_host_key_token1] = ACTIONS(1083), - [aux_sym_xauth_location_token1] = ACTIONS(1083), + [ts_builtin_sym_end] = ACTIONS(1088), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1092), + [aux_sym_match_token1] = ACTIONS(1088), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1088), + [aux_sym_address_family_token1] = ACTIONS(1088), + [aux_sym_batch_mode_token1] = ACTIONS(1088), + [aux_sym_bind_address_token1] = ACTIONS(1088), + [aux_sym_bind_interface_token1] = ACTIONS(1088), + [aux_sym_canonical_domains_token1] = ACTIONS(1088), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1088), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1088), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1088), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1088), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1088), + [aux_sym_certificate_file_token1] = ACTIONS(1088), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1088), + [aux_sym_check_host_ip_token1] = ACTIONS(1088), + [aux_sym_ciphers_token1] = ACTIONS(1088), + [aux_sym_cipher_token1] = ACTIONS(1090), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1088), + [aux_sym_compression_token1] = ACTIONS(1088), + [aux_sym_connection_attempts_token1] = ACTIONS(1088), + [aux_sym_connect_timeout_token1] = ACTIONS(1088), + [aux_sym_control_master_token1] = ACTIONS(1088), + [aux_sym_control_path_token1] = ACTIONS(1088), + [aux_sym_control_persist_token1] = ACTIONS(1088), + [aux_sym_dynamic_forward_token1] = ACTIONS(1088), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1088), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1088), + [aux_sym_escape_char_token1] = ACTIONS(1088), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1088), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1088), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1088), + [aux_sym_forward_agent_token1] = ACTIONS(1088), + [aux_sym_forward_x11_token1] = ACTIONS(1090), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1088), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1088), + [aux_sym_gateway_ports_token1] = ACTIONS(1088), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1088), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1088), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1088), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1088), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1088), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1088), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1088), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1088), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1088), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1088), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1088), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1088), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1088), + [aux_sym_host_key_alias_token1] = ACTIONS(1088), + [aux_sym_hostname_token1] = ACTIONS(1088), + [aux_sym_identities_only_token1] = ACTIONS(1088), + [aux_sym_identity_agent_token1] = ACTIONS(1088), + [aux_sym_identity_file_token1] = ACTIONS(1088), + [aux_sym_ignore_unknown_token1] = ACTIONS(1088), + [aux_sym_include_token1] = ACTIONS(1088), + [aux_sym_ip_qos_token1] = ACTIONS(1088), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1088), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1088), + [aux_sym_kex_algorithms_token1] = ACTIONS(1088), + [aux_sym_known_hosts_command_token1] = ACTIONS(1088), + [aux_sym_local_command_token1] = ACTIONS(1088), + [aux_sym_local_forward_token1] = ACTIONS(1088), + [aux_sym_log_level_token1] = ACTIONS(1088), + [aux_sym_log_verbose_token1] = ACTIONS(1088), + [aux_sym_macs_token1] = ACTIONS(1088), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1088), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1088), + [aux_sym_password_authentication_token1] = ACTIONS(1088), + [aux_sym_permit_local_command_token1] = ACTIONS(1088), + [aux_sym_permit_remote_open_token1] = ACTIONS(1088), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1088), + [aux_sym_port_token1] = ACTIONS(1088), + [aux_sym_preferred_authentications_token1] = ACTIONS(1088), + [aux_sym_protocol_token1] = ACTIONS(1088), + [aux_sym_proxy_command_token1] = ACTIONS(1088), + [aux_sym_proxy_jump_token1] = ACTIONS(1088), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1088), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1088), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1088), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1088), + [aux_sym_rekey_limit_token1] = ACTIONS(1088), + [aux_sym_remote_command_token1] = ACTIONS(1088), + [aux_sym_remote_forward_token1] = ACTIONS(1088), + [aux_sym_request_tty_token1] = ACTIONS(1088), + [aux_sym_required_rsa_size_token1] = ACTIONS(1088), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1088), + [aux_sym_security_key_provider_token1] = ACTIONS(1088), + [aux_sym_send_env_token1] = ACTIONS(1088), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1088), + [aux_sym_server_alive_interval_token1] = ACTIONS(1088), + [aux_sym_session_type_token1] = ACTIONS(1088), + [aux_sym_set_env_token1] = ACTIONS(1088), + [aux_sym_stdin_null_token1] = ACTIONS(1088), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1088), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1088), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1088), + [aux_sym_syslog_facility_token1] = ACTIONS(1088), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1088), + [aux_sym_keep_alive_token1] = ACTIONS(1088), + [aux_sym_tunnel_token1] = ACTIONS(1090), + [aux_sym_tunnel_device_token1] = ACTIONS(1088), + [aux_sym_update_host_keys_token1] = ACTIONS(1088), + [aux_sym_use_keychain_token1] = ACTIONS(1088), + [aux_sym_use_roaming_token1] = ACTIONS(1088), + [aux_sym_user_token1] = ACTIONS(1090), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1088), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1088), + [aux_sym_visual_host_key_token1] = ACTIONS(1088), + [aux_sym_xauth_location_token1] = ACTIONS(1088), }, [92] = { - [ts_builtin_sym_end] = ACTIONS(1089), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(1093), - [aux_sym_match_token1] = ACTIONS(1089), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1089), - [aux_sym_address_family_token1] = ACTIONS(1089), - [aux_sym_batch_mode_token1] = ACTIONS(1089), - [aux_sym_bind_address_token1] = ACTIONS(1089), - [aux_sym_bind_interface_token1] = ACTIONS(1089), - [aux_sym_canonical_domains_token1] = ACTIONS(1089), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1089), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1089), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1089), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1089), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1089), - [aux_sym_certificate_file_token1] = ACTIONS(1089), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1089), - [aux_sym_check_host_ip_token1] = ACTIONS(1089), - [aux_sym_ciphers_token1] = ACTIONS(1089), - [aux_sym_cipher_token1] = ACTIONS(1091), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1089), - [aux_sym_compression_token1] = ACTIONS(1089), - [aux_sym_connection_attempts_token1] = ACTIONS(1089), - [aux_sym_connect_timeout_token1] = ACTIONS(1089), - [aux_sym_control_master_token1] = ACTIONS(1089), - [aux_sym_control_path_token1] = ACTIONS(1089), - [aux_sym_control_persist_token1] = ACTIONS(1089), - [aux_sym_dynamic_forward_token1] = ACTIONS(1089), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1089), - [aux_sym_escape_char_token1] = ACTIONS(1089), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1089), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1089), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1089), - [aux_sym_forward_agent_token1] = ACTIONS(1089), - [aux_sym_forward_x11_token1] = ACTIONS(1091), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1089), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1089), - [aux_sym_gateway_ports_token1] = ACTIONS(1089), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1089), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1089), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1089), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1089), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1089), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1089), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1089), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1089), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1089), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1089), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1089), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1089), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1089), - [aux_sym_host_key_alias_token1] = ACTIONS(1089), - [aux_sym_hostname_token1] = ACTIONS(1089), - [aux_sym_identities_only_token1] = ACTIONS(1089), - [aux_sym_identity_agent_token1] = ACTIONS(1089), - [aux_sym_identity_file_token1] = ACTIONS(1089), - [aux_sym_ignore_unknown_token1] = ACTIONS(1089), - [aux_sym_include_token1] = ACTIONS(1089), - [aux_sym_ip_qos_token1] = ACTIONS(1089), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1089), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1089), - [aux_sym_kex_algorithms_token1] = ACTIONS(1089), - [aux_sym_known_hosts_command_token1] = ACTIONS(1089), - [aux_sym_local_command_token1] = ACTIONS(1089), - [aux_sym_local_forward_token1] = ACTIONS(1089), - [aux_sym_log_level_token1] = ACTIONS(1089), - [aux_sym_log_verbose_token1] = ACTIONS(1089), - [aux_sym_macs_token1] = ACTIONS(1089), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1089), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1089), - [aux_sym_password_authentication_token1] = ACTIONS(1089), - [aux_sym_permit_local_command_token1] = ACTIONS(1089), - [aux_sym_permit_remote_open_token1] = ACTIONS(1089), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1089), - [aux_sym_port_token1] = ACTIONS(1089), - [aux_sym_preferred_authentications_token1] = ACTIONS(1089), - [aux_sym_protocol_token1] = ACTIONS(1089), - [aux_sym_proxy_command_token1] = ACTIONS(1089), - [aux_sym_proxy_jump_token1] = ACTIONS(1089), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1089), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1089), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1089), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1089), - [aux_sym_rekey_limit_token1] = ACTIONS(1089), - [aux_sym_remote_command_token1] = ACTIONS(1089), - [aux_sym_remote_forward_token1] = ACTIONS(1089), - [aux_sym_request_tty_token1] = ACTIONS(1089), - [aux_sym_required_rsa_size_token1] = ACTIONS(1089), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1089), - [aux_sym_security_key_provider_token1] = ACTIONS(1089), - [aux_sym_send_env_token1] = ACTIONS(1089), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1089), - [aux_sym_server_alive_interval_token1] = ACTIONS(1089), - [aux_sym_session_type_token1] = ACTIONS(1089), - [aux_sym_set_env_token1] = ACTIONS(1089), - [aux_sym_stdin_null_token1] = ACTIONS(1089), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1089), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1089), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1089), - [aux_sym_syslog_facility_token1] = ACTIONS(1089), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1089), - [aux_sym_keep_alive_token1] = ACTIONS(1089), - [aux_sym_tunnel_token1] = ACTIONS(1091), - [aux_sym_tunnel_device_token1] = ACTIONS(1089), - [aux_sym_update_host_keys_token1] = ACTIONS(1089), - [aux_sym_use_keychain_token1] = ACTIONS(1089), - [aux_sym_use_roaming_token1] = ACTIONS(1089), - [aux_sym_user_token1] = ACTIONS(1091), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1089), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1089), - [aux_sym_visual_host_key_token1] = ACTIONS(1089), - [aux_sym_xauth_location_token1] = ACTIONS(1089), + [ts_builtin_sym_end] = ACTIONS(1094), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(1098), + [aux_sym_match_token1] = ACTIONS(1094), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1094), + [aux_sym_address_family_token1] = ACTIONS(1094), + [aux_sym_batch_mode_token1] = ACTIONS(1094), + [aux_sym_bind_address_token1] = ACTIONS(1094), + [aux_sym_bind_interface_token1] = ACTIONS(1094), + [aux_sym_canonical_domains_token1] = ACTIONS(1094), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1094), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1094), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1094), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1094), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1094), + [aux_sym_certificate_file_token1] = ACTIONS(1094), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1094), + [aux_sym_check_host_ip_token1] = ACTIONS(1094), + [aux_sym_ciphers_token1] = ACTIONS(1094), + [aux_sym_cipher_token1] = ACTIONS(1096), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1094), + [aux_sym_compression_token1] = ACTIONS(1094), + [aux_sym_connection_attempts_token1] = ACTIONS(1094), + [aux_sym_connect_timeout_token1] = ACTIONS(1094), + [aux_sym_control_master_token1] = ACTIONS(1094), + [aux_sym_control_path_token1] = ACTIONS(1094), + [aux_sym_control_persist_token1] = ACTIONS(1094), + [aux_sym_dynamic_forward_token1] = ACTIONS(1094), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1094), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1094), + [aux_sym_escape_char_token1] = ACTIONS(1094), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1094), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1094), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1094), + [aux_sym_forward_agent_token1] = ACTIONS(1094), + [aux_sym_forward_x11_token1] = ACTIONS(1096), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1094), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1094), + [aux_sym_gateway_ports_token1] = ACTIONS(1094), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1094), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1094), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1094), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1094), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1094), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1094), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1094), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1094), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1094), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1094), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1094), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1094), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1094), + [aux_sym_host_key_alias_token1] = ACTIONS(1094), + [aux_sym_hostname_token1] = ACTIONS(1094), + [aux_sym_identities_only_token1] = ACTIONS(1094), + [aux_sym_identity_agent_token1] = ACTIONS(1094), + [aux_sym_identity_file_token1] = ACTIONS(1094), + [aux_sym_ignore_unknown_token1] = ACTIONS(1094), + [aux_sym_include_token1] = ACTIONS(1094), + [aux_sym_ip_qos_token1] = ACTIONS(1094), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1094), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1094), + [aux_sym_kex_algorithms_token1] = ACTIONS(1094), + [aux_sym_known_hosts_command_token1] = ACTIONS(1094), + [aux_sym_local_command_token1] = ACTIONS(1094), + [aux_sym_local_forward_token1] = ACTIONS(1094), + [aux_sym_log_level_token1] = ACTIONS(1094), + [aux_sym_log_verbose_token1] = ACTIONS(1094), + [aux_sym_macs_token1] = ACTIONS(1094), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1094), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1094), + [aux_sym_password_authentication_token1] = ACTIONS(1094), + [aux_sym_permit_local_command_token1] = ACTIONS(1094), + [aux_sym_permit_remote_open_token1] = ACTIONS(1094), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1094), + [aux_sym_port_token1] = ACTIONS(1094), + [aux_sym_preferred_authentications_token1] = ACTIONS(1094), + [aux_sym_protocol_token1] = ACTIONS(1094), + [aux_sym_proxy_command_token1] = ACTIONS(1094), + [aux_sym_proxy_jump_token1] = ACTIONS(1094), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1094), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1094), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1094), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1094), + [aux_sym_rekey_limit_token1] = ACTIONS(1094), + [aux_sym_remote_command_token1] = ACTIONS(1094), + [aux_sym_remote_forward_token1] = ACTIONS(1094), + [aux_sym_request_tty_token1] = ACTIONS(1094), + [aux_sym_required_rsa_size_token1] = ACTIONS(1094), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1094), + [aux_sym_security_key_provider_token1] = ACTIONS(1094), + [aux_sym_send_env_token1] = ACTIONS(1094), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1094), + [aux_sym_server_alive_interval_token1] = ACTIONS(1094), + [aux_sym_session_type_token1] = ACTIONS(1094), + [aux_sym_set_env_token1] = ACTIONS(1094), + [aux_sym_stdin_null_token1] = ACTIONS(1094), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1094), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1094), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1094), + [aux_sym_syslog_facility_token1] = ACTIONS(1094), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1094), + [aux_sym_keep_alive_token1] = ACTIONS(1094), + [aux_sym_tunnel_token1] = ACTIONS(1096), + [aux_sym_tunnel_device_token1] = ACTIONS(1094), + [aux_sym_update_host_keys_token1] = ACTIONS(1094), + [aux_sym_use_keychain_token1] = ACTIONS(1094), + [aux_sym_use_roaming_token1] = ACTIONS(1094), + [aux_sym_user_token1] = ACTIONS(1096), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1094), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1094), + [aux_sym_visual_host_key_token1] = ACTIONS(1094), + [aux_sym_xauth_location_token1] = ACTIONS(1094), }, [93] = { - [ts_builtin_sym_end] = ACTIONS(1095), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1097), - [anon_sym_DQUOTE] = ACTIONS(1099), - [aux_sym_match_token1] = ACTIONS(1095), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1095), - [aux_sym_address_family_token1] = ACTIONS(1095), - [aux_sym_batch_mode_token1] = ACTIONS(1095), - [aux_sym_bind_address_token1] = ACTIONS(1095), - [aux_sym_bind_interface_token1] = ACTIONS(1095), - [aux_sym_canonical_domains_token1] = ACTIONS(1095), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1095), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1095), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1095), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1095), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1095), - [aux_sym_certificate_file_token1] = ACTIONS(1095), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1095), - [aux_sym_check_host_ip_token1] = ACTIONS(1095), - [aux_sym_ciphers_token1] = ACTIONS(1095), - [aux_sym_cipher_token1] = ACTIONS(1097), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1095), - [aux_sym_compression_token1] = ACTIONS(1095), - [aux_sym_connection_attempts_token1] = ACTIONS(1095), - [aux_sym_connect_timeout_token1] = ACTIONS(1095), - [aux_sym_control_master_token1] = ACTIONS(1095), - [aux_sym_control_path_token1] = ACTIONS(1095), - [aux_sym_control_persist_token1] = ACTIONS(1095), - [aux_sym_dynamic_forward_token1] = ACTIONS(1095), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1095), - [aux_sym_escape_char_token1] = ACTIONS(1095), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1095), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1095), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1095), - [aux_sym_forward_agent_token1] = ACTIONS(1095), - [aux_sym_forward_x11_token1] = ACTIONS(1097), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1095), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1095), - [aux_sym_gateway_ports_token1] = ACTIONS(1095), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1095), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1095), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1095), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1095), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1095), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1095), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1095), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1095), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1095), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1095), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1095), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1095), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1095), - [aux_sym_host_key_alias_token1] = ACTIONS(1095), - [aux_sym_hostname_token1] = ACTIONS(1095), - [aux_sym_identities_only_token1] = ACTIONS(1095), - [aux_sym_identity_agent_token1] = ACTIONS(1095), - [aux_sym_identity_file_token1] = ACTIONS(1095), - [aux_sym_ignore_unknown_token1] = ACTIONS(1095), - [aux_sym_include_token1] = ACTIONS(1095), - [aux_sym_ip_qos_token1] = ACTIONS(1095), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1095), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1095), - [aux_sym_kex_algorithms_token1] = ACTIONS(1095), - [aux_sym_known_hosts_command_token1] = ACTIONS(1095), - [aux_sym_local_command_token1] = ACTIONS(1095), - [aux_sym_local_forward_token1] = ACTIONS(1095), - [aux_sym_log_level_token1] = ACTIONS(1095), - [aux_sym_log_verbose_token1] = ACTIONS(1095), - [aux_sym_macs_token1] = ACTIONS(1095), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1095), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1095), - [aux_sym_password_authentication_token1] = ACTIONS(1095), - [aux_sym_permit_local_command_token1] = ACTIONS(1095), - [aux_sym_permit_remote_open_token1] = ACTIONS(1095), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1095), - [aux_sym_port_token1] = ACTIONS(1095), - [aux_sym_preferred_authentications_token1] = ACTIONS(1095), - [aux_sym_protocol_token1] = ACTIONS(1095), - [aux_sym_proxy_command_token1] = ACTIONS(1095), - [aux_sym_proxy_jump_token1] = ACTIONS(1095), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1095), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1095), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1095), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1095), - [aux_sym_rekey_limit_token1] = ACTIONS(1095), - [aux_sym_remote_command_token1] = ACTIONS(1095), - [aux_sym_remote_forward_token1] = ACTIONS(1095), - [aux_sym_request_tty_token1] = ACTIONS(1095), - [aux_sym_required_rsa_size_token1] = ACTIONS(1095), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1095), - [aux_sym_security_key_provider_token1] = ACTIONS(1095), - [aux_sym_send_env_token1] = ACTIONS(1095), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1095), - [aux_sym_server_alive_interval_token1] = ACTIONS(1095), - [aux_sym_session_type_token1] = ACTIONS(1095), - [aux_sym_set_env_token1] = ACTIONS(1095), - [aux_sym_stdin_null_token1] = ACTIONS(1095), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1095), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1095), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1095), - [aux_sym_syslog_facility_token1] = ACTIONS(1095), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1095), - [aux_sym_keep_alive_token1] = ACTIONS(1095), - [aux_sym_tunnel_token1] = ACTIONS(1097), - [aux_sym_tunnel_device_token1] = ACTIONS(1095), - [aux_sym_update_host_keys_token1] = ACTIONS(1095), - [aux_sym_use_keychain_token1] = ACTIONS(1095), - [aux_sym_use_roaming_token1] = ACTIONS(1095), - [aux_sym_user_token1] = ACTIONS(1097), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1095), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1095), - [aux_sym_visual_host_key_token1] = ACTIONS(1095), - [aux_sym_xauth_location_token1] = ACTIONS(1095), + [ts_builtin_sym_end] = ACTIONS(1100), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [aux_sym_match_token1] = ACTIONS(1100), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1100), + [aux_sym_address_family_token1] = ACTIONS(1100), + [aux_sym_batch_mode_token1] = ACTIONS(1100), + [aux_sym_bind_address_token1] = ACTIONS(1100), + [aux_sym_bind_interface_token1] = ACTIONS(1100), + [aux_sym_canonical_domains_token1] = ACTIONS(1100), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1100), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1100), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1100), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1100), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1100), + [aux_sym_certificate_file_token1] = ACTIONS(1100), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1100), + [aux_sym_check_host_ip_token1] = ACTIONS(1100), + [aux_sym_ciphers_token1] = ACTIONS(1100), + [aux_sym_cipher_token1] = ACTIONS(1102), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1100), + [aux_sym_compression_token1] = ACTIONS(1100), + [aux_sym_connection_attempts_token1] = ACTIONS(1100), + [aux_sym_connect_timeout_token1] = ACTIONS(1100), + [aux_sym_control_master_token1] = ACTIONS(1100), + [aux_sym_control_path_token1] = ACTIONS(1100), + [aux_sym_control_persist_token1] = ACTIONS(1100), + [aux_sym_dynamic_forward_token1] = ACTIONS(1100), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1100), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1100), + [aux_sym_escape_char_token1] = ACTIONS(1100), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1100), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1100), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1100), + [aux_sym_forward_agent_token1] = ACTIONS(1100), + [aux_sym_forward_x11_token1] = ACTIONS(1102), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1100), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1100), + [aux_sym_gateway_ports_token1] = ACTIONS(1100), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1100), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1100), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1100), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1100), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1100), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1100), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1100), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1100), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1100), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1100), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1100), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1100), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1100), + [aux_sym_host_key_alias_token1] = ACTIONS(1100), + [aux_sym_hostname_token1] = ACTIONS(1100), + [aux_sym_identities_only_token1] = ACTIONS(1100), + [aux_sym_identity_agent_token1] = ACTIONS(1100), + [aux_sym_identity_file_token1] = ACTIONS(1100), + [aux_sym_ignore_unknown_token1] = ACTIONS(1100), + [aux_sym_include_token1] = ACTIONS(1100), + [aux_sym_ip_qos_token1] = ACTIONS(1100), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1100), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1100), + [aux_sym_kex_algorithms_token1] = ACTIONS(1100), + [aux_sym_known_hosts_command_token1] = ACTIONS(1100), + [aux_sym_local_command_token1] = ACTIONS(1100), + [aux_sym_local_forward_token1] = ACTIONS(1100), + [aux_sym_log_level_token1] = ACTIONS(1100), + [aux_sym_log_verbose_token1] = ACTIONS(1100), + [aux_sym_macs_token1] = ACTIONS(1100), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1100), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1100), + [aux_sym_password_authentication_token1] = ACTIONS(1100), + [aux_sym_permit_local_command_token1] = ACTIONS(1100), + [aux_sym_permit_remote_open_token1] = ACTIONS(1100), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1100), + [aux_sym_port_token1] = ACTIONS(1100), + [aux_sym_preferred_authentications_token1] = ACTIONS(1100), + [aux_sym_protocol_token1] = ACTIONS(1100), + [aux_sym_proxy_command_token1] = ACTIONS(1100), + [aux_sym_proxy_jump_token1] = ACTIONS(1100), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1100), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1100), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1100), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1100), + [aux_sym_rekey_limit_token1] = ACTIONS(1100), + [aux_sym_remote_command_token1] = ACTIONS(1100), + [aux_sym_remote_forward_token1] = ACTIONS(1100), + [aux_sym_request_tty_token1] = ACTIONS(1100), + [aux_sym_required_rsa_size_token1] = ACTIONS(1100), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1100), + [aux_sym_security_key_provider_token1] = ACTIONS(1100), + [aux_sym_send_env_token1] = ACTIONS(1100), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1100), + [aux_sym_server_alive_interval_token1] = ACTIONS(1100), + [aux_sym_session_type_token1] = ACTIONS(1100), + [aux_sym_set_env_token1] = ACTIONS(1100), + [aux_sym_stdin_null_token1] = ACTIONS(1100), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1100), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1100), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1100), + [aux_sym_syslog_facility_token1] = ACTIONS(1100), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1100), + [aux_sym_keep_alive_token1] = ACTIONS(1100), + [aux_sym_tunnel_token1] = ACTIONS(1102), + [aux_sym_tunnel_device_token1] = ACTIONS(1100), + [aux_sym_update_host_keys_token1] = ACTIONS(1100), + [aux_sym_use_keychain_token1] = ACTIONS(1100), + [aux_sym_use_roaming_token1] = ACTIONS(1100), + [aux_sym_user_token1] = ACTIONS(1102), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1100), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1100), + [aux_sym_visual_host_key_token1] = ACTIONS(1100), + [aux_sym_xauth_location_token1] = ACTIONS(1100), }, [94] = { - [ts_builtin_sym_end] = ACTIONS(1101), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1103), - [anon_sym_DQUOTE] = ACTIONS(1105), - [aux_sym_match_token1] = ACTIONS(1101), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1101), - [aux_sym_address_family_token1] = ACTIONS(1101), - [aux_sym_batch_mode_token1] = ACTIONS(1101), - [aux_sym_bind_address_token1] = ACTIONS(1101), - [aux_sym_bind_interface_token1] = ACTIONS(1101), - [aux_sym_canonical_domains_token1] = ACTIONS(1101), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1101), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1101), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1101), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1101), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1101), - [aux_sym_certificate_file_token1] = ACTIONS(1101), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1101), - [aux_sym_check_host_ip_token1] = ACTIONS(1101), - [aux_sym_ciphers_token1] = ACTIONS(1101), - [aux_sym_cipher_token1] = ACTIONS(1103), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1101), - [aux_sym_compression_token1] = ACTIONS(1101), - [aux_sym_connection_attempts_token1] = ACTIONS(1101), - [aux_sym_connect_timeout_token1] = ACTIONS(1101), - [aux_sym_control_master_token1] = ACTIONS(1101), - [aux_sym_control_path_token1] = ACTIONS(1101), - [aux_sym_control_persist_token1] = ACTIONS(1101), - [aux_sym_dynamic_forward_token1] = ACTIONS(1101), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1101), - [aux_sym_escape_char_token1] = ACTIONS(1101), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1101), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1101), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1101), - [aux_sym_forward_agent_token1] = ACTIONS(1101), - [aux_sym_forward_x11_token1] = ACTIONS(1103), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1101), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1101), - [aux_sym_gateway_ports_token1] = ACTIONS(1101), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1101), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1101), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1101), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1101), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1101), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1101), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1101), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1101), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1101), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1101), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1101), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1101), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1101), - [aux_sym_host_key_alias_token1] = ACTIONS(1101), - [aux_sym_hostname_token1] = ACTIONS(1101), - [aux_sym_identities_only_token1] = ACTIONS(1101), - [aux_sym_identity_agent_token1] = ACTIONS(1101), - [aux_sym_identity_file_token1] = ACTIONS(1101), - [aux_sym_ignore_unknown_token1] = ACTIONS(1101), - [aux_sym_include_token1] = ACTIONS(1101), - [aux_sym_ip_qos_token1] = ACTIONS(1101), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1101), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1101), - [aux_sym_kex_algorithms_token1] = ACTIONS(1101), - [aux_sym_known_hosts_command_token1] = ACTIONS(1101), - [aux_sym_local_command_token1] = ACTIONS(1101), - [aux_sym_local_forward_token1] = ACTIONS(1101), - [aux_sym_log_level_token1] = ACTIONS(1101), - [aux_sym_log_verbose_token1] = ACTIONS(1101), - [aux_sym_macs_token1] = ACTIONS(1101), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1101), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1101), - [aux_sym_password_authentication_token1] = ACTIONS(1101), - [aux_sym_permit_local_command_token1] = ACTIONS(1101), - [aux_sym_permit_remote_open_token1] = ACTIONS(1101), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1101), - [aux_sym_port_token1] = ACTIONS(1101), - [aux_sym_preferred_authentications_token1] = ACTIONS(1101), - [aux_sym_protocol_token1] = ACTIONS(1101), - [aux_sym_proxy_command_token1] = ACTIONS(1101), - [aux_sym_proxy_jump_token1] = ACTIONS(1101), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1101), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1101), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1101), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1101), - [aux_sym_rekey_limit_token1] = ACTIONS(1101), - [aux_sym_remote_command_token1] = ACTIONS(1101), - [aux_sym_remote_forward_token1] = ACTIONS(1101), - [aux_sym_request_tty_token1] = ACTIONS(1101), - [aux_sym_required_rsa_size_token1] = ACTIONS(1101), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1101), - [aux_sym_security_key_provider_token1] = ACTIONS(1101), - [aux_sym_send_env_token1] = ACTIONS(1101), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1101), - [aux_sym_server_alive_interval_token1] = ACTIONS(1101), - [aux_sym_session_type_token1] = ACTIONS(1101), - [aux_sym_set_env_token1] = ACTIONS(1101), - [aux_sym_stdin_null_token1] = ACTIONS(1101), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1101), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1101), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1101), - [aux_sym_syslog_facility_token1] = ACTIONS(1101), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1101), - [aux_sym_keep_alive_token1] = ACTIONS(1101), - [aux_sym_tunnel_token1] = ACTIONS(1103), - [aux_sym_tunnel_device_token1] = ACTIONS(1101), - [aux_sym_update_host_keys_token1] = ACTIONS(1101), - [aux_sym_use_keychain_token1] = ACTIONS(1101), - [aux_sym_use_roaming_token1] = ACTIONS(1101), - [aux_sym_user_token1] = ACTIONS(1103), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1101), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1101), - [aux_sym_visual_host_key_token1] = ACTIONS(1101), - [aux_sym_xauth_location_token1] = ACTIONS(1101), + [ts_builtin_sym_end] = ACTIONS(1106), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1108), + [anon_sym_DQUOTE] = ACTIONS(1110), + [aux_sym_match_token1] = ACTIONS(1106), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1106), + [aux_sym_address_family_token1] = ACTIONS(1106), + [aux_sym_batch_mode_token1] = ACTIONS(1106), + [aux_sym_bind_address_token1] = ACTIONS(1106), + [aux_sym_bind_interface_token1] = ACTIONS(1106), + [aux_sym_canonical_domains_token1] = ACTIONS(1106), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1106), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1106), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1106), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1106), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1106), + [aux_sym_certificate_file_token1] = ACTIONS(1106), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1106), + [aux_sym_check_host_ip_token1] = ACTIONS(1106), + [aux_sym_ciphers_token1] = ACTIONS(1106), + [aux_sym_cipher_token1] = ACTIONS(1108), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1106), + [aux_sym_compression_token1] = ACTIONS(1106), + [aux_sym_connection_attempts_token1] = ACTIONS(1106), + [aux_sym_connect_timeout_token1] = ACTIONS(1106), + [aux_sym_control_master_token1] = ACTIONS(1106), + [aux_sym_control_path_token1] = ACTIONS(1106), + [aux_sym_control_persist_token1] = ACTIONS(1106), + [aux_sym_dynamic_forward_token1] = ACTIONS(1106), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1106), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1106), + [aux_sym_escape_char_token1] = ACTIONS(1106), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1106), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1106), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1106), + [aux_sym_forward_agent_token1] = ACTIONS(1106), + [aux_sym_forward_x11_token1] = ACTIONS(1108), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1106), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1106), + [aux_sym_gateway_ports_token1] = ACTIONS(1106), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1106), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1106), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1106), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1106), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1106), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1106), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1106), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1106), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1106), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1106), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1106), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1106), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1106), + [aux_sym_host_key_alias_token1] = ACTIONS(1106), + [aux_sym_hostname_token1] = ACTIONS(1106), + [aux_sym_identities_only_token1] = ACTIONS(1106), + [aux_sym_identity_agent_token1] = ACTIONS(1106), + [aux_sym_identity_file_token1] = ACTIONS(1106), + [aux_sym_ignore_unknown_token1] = ACTIONS(1106), + [aux_sym_include_token1] = ACTIONS(1106), + [aux_sym_ip_qos_token1] = ACTIONS(1106), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1106), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1106), + [aux_sym_kex_algorithms_token1] = ACTIONS(1106), + [aux_sym_known_hosts_command_token1] = ACTIONS(1106), + [aux_sym_local_command_token1] = ACTIONS(1106), + [aux_sym_local_forward_token1] = ACTIONS(1106), + [aux_sym_log_level_token1] = ACTIONS(1106), + [aux_sym_log_verbose_token1] = ACTIONS(1106), + [aux_sym_macs_token1] = ACTIONS(1106), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1106), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1106), + [aux_sym_password_authentication_token1] = ACTIONS(1106), + [aux_sym_permit_local_command_token1] = ACTIONS(1106), + [aux_sym_permit_remote_open_token1] = ACTIONS(1106), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1106), + [aux_sym_port_token1] = ACTIONS(1106), + [aux_sym_preferred_authentications_token1] = ACTIONS(1106), + [aux_sym_protocol_token1] = ACTIONS(1106), + [aux_sym_proxy_command_token1] = ACTIONS(1106), + [aux_sym_proxy_jump_token1] = ACTIONS(1106), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1106), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1106), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1106), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1106), + [aux_sym_rekey_limit_token1] = ACTIONS(1106), + [aux_sym_remote_command_token1] = ACTIONS(1106), + [aux_sym_remote_forward_token1] = ACTIONS(1106), + [aux_sym_request_tty_token1] = ACTIONS(1106), + [aux_sym_required_rsa_size_token1] = ACTIONS(1106), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1106), + [aux_sym_security_key_provider_token1] = ACTIONS(1106), + [aux_sym_send_env_token1] = ACTIONS(1106), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1106), + [aux_sym_server_alive_interval_token1] = ACTIONS(1106), + [aux_sym_session_type_token1] = ACTIONS(1106), + [aux_sym_set_env_token1] = ACTIONS(1106), + [aux_sym_stdin_null_token1] = ACTIONS(1106), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1106), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1106), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1106), + [aux_sym_syslog_facility_token1] = ACTIONS(1106), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1106), + [aux_sym_keep_alive_token1] = ACTIONS(1106), + [aux_sym_tunnel_token1] = ACTIONS(1108), + [aux_sym_tunnel_device_token1] = ACTIONS(1106), + [aux_sym_update_host_keys_token1] = ACTIONS(1106), + [aux_sym_use_keychain_token1] = ACTIONS(1106), + [aux_sym_use_roaming_token1] = ACTIONS(1106), + [aux_sym_user_token1] = ACTIONS(1108), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1106), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1106), + [aux_sym_visual_host_key_token1] = ACTIONS(1106), + [aux_sym_xauth_location_token1] = ACTIONS(1106), }, [95] = { - [ts_builtin_sym_end] = ACTIONS(1107), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1111), - [aux_sym_match_token1] = ACTIONS(1107), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1107), - [aux_sym_address_family_token1] = ACTIONS(1107), - [aux_sym_batch_mode_token1] = ACTIONS(1107), - [aux_sym_bind_address_token1] = ACTIONS(1107), - [aux_sym_bind_interface_token1] = ACTIONS(1107), - [aux_sym_canonical_domains_token1] = ACTIONS(1107), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1107), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1107), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1107), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1107), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1107), - [aux_sym_certificate_file_token1] = ACTIONS(1107), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1107), - [aux_sym_check_host_ip_token1] = ACTIONS(1107), - [aux_sym_ciphers_token1] = ACTIONS(1107), - [aux_sym_cipher_token1] = ACTIONS(1109), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1107), - [aux_sym_compression_token1] = ACTIONS(1107), - [aux_sym_connection_attempts_token1] = ACTIONS(1107), - [aux_sym_connect_timeout_token1] = ACTIONS(1107), - [aux_sym_control_master_token1] = ACTIONS(1107), - [aux_sym_control_path_token1] = ACTIONS(1107), - [aux_sym_control_persist_token1] = ACTIONS(1107), - [aux_sym_dynamic_forward_token1] = ACTIONS(1107), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1107), - [aux_sym_escape_char_token1] = ACTIONS(1107), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1107), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1107), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1107), - [aux_sym_forward_agent_token1] = ACTIONS(1107), - [aux_sym_forward_x11_token1] = ACTIONS(1109), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1107), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1107), - [aux_sym_gateway_ports_token1] = ACTIONS(1107), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1107), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1107), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1107), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1107), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1107), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1107), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1107), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1107), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1107), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1107), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1107), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1107), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1107), - [aux_sym_host_key_alias_token1] = ACTIONS(1107), - [aux_sym_hostname_token1] = ACTIONS(1107), - [aux_sym_identities_only_token1] = ACTIONS(1107), - [aux_sym_identity_agent_token1] = ACTIONS(1107), - [aux_sym_identity_file_token1] = ACTIONS(1107), - [aux_sym_ignore_unknown_token1] = ACTIONS(1107), - [aux_sym_include_token1] = ACTIONS(1107), - [aux_sym_ip_qos_token1] = ACTIONS(1107), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1107), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1107), - [aux_sym_kex_algorithms_token1] = ACTIONS(1107), - [aux_sym_known_hosts_command_token1] = ACTIONS(1107), - [aux_sym_local_command_token1] = ACTIONS(1107), - [aux_sym_local_forward_token1] = ACTIONS(1107), - [aux_sym_log_level_token1] = ACTIONS(1107), - [aux_sym_log_verbose_token1] = ACTIONS(1107), - [aux_sym_macs_token1] = ACTIONS(1107), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1107), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1107), - [aux_sym_password_authentication_token1] = ACTIONS(1107), - [aux_sym_permit_local_command_token1] = ACTIONS(1107), - [aux_sym_permit_remote_open_token1] = ACTIONS(1107), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1107), - [aux_sym_port_token1] = ACTIONS(1107), - [aux_sym_preferred_authentications_token1] = ACTIONS(1107), - [aux_sym_protocol_token1] = ACTIONS(1107), - [aux_sym_proxy_command_token1] = ACTIONS(1107), - [aux_sym_proxy_jump_token1] = ACTIONS(1107), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1107), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1107), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1107), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1107), - [aux_sym_rekey_limit_token1] = ACTIONS(1107), - [aux_sym_remote_command_token1] = ACTIONS(1107), - [aux_sym_remote_forward_token1] = ACTIONS(1107), - [aux_sym_request_tty_token1] = ACTIONS(1107), - [aux_sym_required_rsa_size_token1] = ACTIONS(1107), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1107), - [aux_sym_security_key_provider_token1] = ACTIONS(1107), - [aux_sym_send_env_token1] = ACTIONS(1107), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1107), - [aux_sym_server_alive_interval_token1] = ACTIONS(1107), - [aux_sym_session_type_token1] = ACTIONS(1107), - [aux_sym_set_env_token1] = ACTIONS(1107), - [aux_sym_stdin_null_token1] = ACTIONS(1107), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1107), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1107), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1107), - [aux_sym_syslog_facility_token1] = ACTIONS(1107), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1107), - [aux_sym_keep_alive_token1] = ACTIONS(1107), - [aux_sym_tunnel_token1] = ACTIONS(1109), - [aux_sym_tunnel_device_token1] = ACTIONS(1107), - [aux_sym_update_host_keys_token1] = ACTIONS(1107), - [aux_sym_use_keychain_token1] = ACTIONS(1107), - [aux_sym_use_roaming_token1] = ACTIONS(1107), - [aux_sym_user_token1] = ACTIONS(1109), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1107), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1107), - [aux_sym_visual_host_key_token1] = ACTIONS(1107), - [aux_sym_xauth_location_token1] = ACTIONS(1107), + [ts_builtin_sym_end] = ACTIONS(1112), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1114), + [anon_sym_DQUOTE] = ACTIONS(1116), + [aux_sym_match_token1] = ACTIONS(1112), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1112), + [aux_sym_address_family_token1] = ACTIONS(1112), + [aux_sym_batch_mode_token1] = ACTIONS(1112), + [aux_sym_bind_address_token1] = ACTIONS(1112), + [aux_sym_bind_interface_token1] = ACTIONS(1112), + [aux_sym_canonical_domains_token1] = ACTIONS(1112), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1112), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1112), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1112), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1112), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1112), + [aux_sym_certificate_file_token1] = ACTIONS(1112), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1112), + [aux_sym_check_host_ip_token1] = ACTIONS(1112), + [aux_sym_ciphers_token1] = ACTIONS(1112), + [aux_sym_cipher_token1] = ACTIONS(1114), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1112), + [aux_sym_compression_token1] = ACTIONS(1112), + [aux_sym_connection_attempts_token1] = ACTIONS(1112), + [aux_sym_connect_timeout_token1] = ACTIONS(1112), + [aux_sym_control_master_token1] = ACTIONS(1112), + [aux_sym_control_path_token1] = ACTIONS(1112), + [aux_sym_control_persist_token1] = ACTIONS(1112), + [aux_sym_dynamic_forward_token1] = ACTIONS(1112), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1112), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1112), + [aux_sym_escape_char_token1] = ACTIONS(1112), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1112), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1112), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1112), + [aux_sym_forward_agent_token1] = ACTIONS(1112), + [aux_sym_forward_x11_token1] = ACTIONS(1114), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1112), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1112), + [aux_sym_gateway_ports_token1] = ACTIONS(1112), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1112), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1112), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1112), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1112), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1112), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1112), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1112), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1112), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1112), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1112), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1112), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1112), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1112), + [aux_sym_host_key_alias_token1] = ACTIONS(1112), + [aux_sym_hostname_token1] = ACTIONS(1112), + [aux_sym_identities_only_token1] = ACTIONS(1112), + [aux_sym_identity_agent_token1] = ACTIONS(1112), + [aux_sym_identity_file_token1] = ACTIONS(1112), + [aux_sym_ignore_unknown_token1] = ACTIONS(1112), + [aux_sym_include_token1] = ACTIONS(1112), + [aux_sym_ip_qos_token1] = ACTIONS(1112), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1112), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1112), + [aux_sym_kex_algorithms_token1] = ACTIONS(1112), + [aux_sym_known_hosts_command_token1] = ACTIONS(1112), + [aux_sym_local_command_token1] = ACTIONS(1112), + [aux_sym_local_forward_token1] = ACTIONS(1112), + [aux_sym_log_level_token1] = ACTIONS(1112), + [aux_sym_log_verbose_token1] = ACTIONS(1112), + [aux_sym_macs_token1] = ACTIONS(1112), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1112), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1112), + [aux_sym_password_authentication_token1] = ACTIONS(1112), + [aux_sym_permit_local_command_token1] = ACTIONS(1112), + [aux_sym_permit_remote_open_token1] = ACTIONS(1112), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1112), + [aux_sym_port_token1] = ACTIONS(1112), + [aux_sym_preferred_authentications_token1] = ACTIONS(1112), + [aux_sym_protocol_token1] = ACTIONS(1112), + [aux_sym_proxy_command_token1] = ACTIONS(1112), + [aux_sym_proxy_jump_token1] = ACTIONS(1112), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1112), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1112), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1112), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1112), + [aux_sym_rekey_limit_token1] = ACTIONS(1112), + [aux_sym_remote_command_token1] = ACTIONS(1112), + [aux_sym_remote_forward_token1] = ACTIONS(1112), + [aux_sym_request_tty_token1] = ACTIONS(1112), + [aux_sym_required_rsa_size_token1] = ACTIONS(1112), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1112), + [aux_sym_security_key_provider_token1] = ACTIONS(1112), + [aux_sym_send_env_token1] = ACTIONS(1112), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1112), + [aux_sym_server_alive_interval_token1] = ACTIONS(1112), + [aux_sym_session_type_token1] = ACTIONS(1112), + [aux_sym_set_env_token1] = ACTIONS(1112), + [aux_sym_stdin_null_token1] = ACTIONS(1112), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1112), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1112), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1112), + [aux_sym_syslog_facility_token1] = ACTIONS(1112), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1112), + [aux_sym_keep_alive_token1] = ACTIONS(1112), + [aux_sym_tunnel_token1] = ACTIONS(1114), + [aux_sym_tunnel_device_token1] = ACTIONS(1112), + [aux_sym_update_host_keys_token1] = ACTIONS(1112), + [aux_sym_use_keychain_token1] = ACTIONS(1112), + [aux_sym_use_roaming_token1] = ACTIONS(1112), + [aux_sym_user_token1] = ACTIONS(1114), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1112), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1112), + [aux_sym_visual_host_key_token1] = ACTIONS(1112), + [aux_sym_xauth_location_token1] = ACTIONS(1112), }, [96] = { - [ts_builtin_sym_end] = ACTIONS(1113), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1115), - [anon_sym_DQUOTE] = ACTIONS(1117), - [aux_sym_match_token1] = ACTIONS(1113), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1113), - [aux_sym_address_family_token1] = ACTIONS(1113), - [aux_sym_batch_mode_token1] = ACTIONS(1113), - [aux_sym_bind_address_token1] = ACTIONS(1113), - [aux_sym_bind_interface_token1] = ACTIONS(1113), - [aux_sym_canonical_domains_token1] = ACTIONS(1113), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1113), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1113), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1113), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1113), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1113), - [aux_sym_certificate_file_token1] = ACTIONS(1113), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1113), - [aux_sym_check_host_ip_token1] = ACTIONS(1113), - [aux_sym_ciphers_token1] = ACTIONS(1113), - [aux_sym_cipher_token1] = ACTIONS(1115), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1113), - [aux_sym_compression_token1] = ACTIONS(1113), - [aux_sym_connection_attempts_token1] = ACTIONS(1113), - [aux_sym_connect_timeout_token1] = ACTIONS(1113), - [aux_sym_control_master_token1] = ACTIONS(1113), - [aux_sym_control_path_token1] = ACTIONS(1113), - [aux_sym_control_persist_token1] = ACTIONS(1113), - [aux_sym_dynamic_forward_token1] = ACTIONS(1113), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1113), - [aux_sym_escape_char_token1] = ACTIONS(1113), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1113), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1113), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1113), - [aux_sym_forward_agent_token1] = ACTIONS(1113), - [aux_sym_forward_x11_token1] = ACTIONS(1115), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1113), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1113), - [aux_sym_gateway_ports_token1] = ACTIONS(1113), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1113), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1113), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1113), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1113), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1113), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1113), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1113), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1113), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1113), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1113), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1113), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1113), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1113), - [aux_sym_host_key_alias_token1] = ACTIONS(1113), - [aux_sym_hostname_token1] = ACTIONS(1113), - [aux_sym_identities_only_token1] = ACTIONS(1113), - [aux_sym_identity_agent_token1] = ACTIONS(1113), - [aux_sym_identity_file_token1] = ACTIONS(1113), - [aux_sym_ignore_unknown_token1] = ACTIONS(1113), - [aux_sym_include_token1] = ACTIONS(1113), - [aux_sym_ip_qos_token1] = ACTIONS(1113), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1113), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1113), - [aux_sym_kex_algorithms_token1] = ACTIONS(1113), - [aux_sym_known_hosts_command_token1] = ACTIONS(1113), - [aux_sym_local_command_token1] = ACTIONS(1113), - [aux_sym_local_forward_token1] = ACTIONS(1113), - [aux_sym_log_level_token1] = ACTIONS(1113), - [aux_sym_log_verbose_token1] = ACTIONS(1113), - [aux_sym_macs_token1] = ACTIONS(1113), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1113), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1113), - [aux_sym_password_authentication_token1] = ACTIONS(1113), - [aux_sym_permit_local_command_token1] = ACTIONS(1113), - [aux_sym_permit_remote_open_token1] = ACTIONS(1113), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1113), - [aux_sym_port_token1] = ACTIONS(1113), - [aux_sym_preferred_authentications_token1] = ACTIONS(1113), - [aux_sym_protocol_token1] = ACTIONS(1113), - [aux_sym_proxy_command_token1] = ACTIONS(1113), - [aux_sym_proxy_jump_token1] = ACTIONS(1113), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1113), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1113), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1113), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1113), - [aux_sym_rekey_limit_token1] = ACTIONS(1113), - [aux_sym_remote_command_token1] = ACTIONS(1113), - [aux_sym_remote_forward_token1] = ACTIONS(1113), - [aux_sym_request_tty_token1] = ACTIONS(1113), - [aux_sym_required_rsa_size_token1] = ACTIONS(1113), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1113), - [aux_sym_security_key_provider_token1] = ACTIONS(1113), - [aux_sym_send_env_token1] = ACTIONS(1113), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1113), - [aux_sym_server_alive_interval_token1] = ACTIONS(1113), - [aux_sym_session_type_token1] = ACTIONS(1113), - [aux_sym_set_env_token1] = ACTIONS(1113), - [aux_sym_stdin_null_token1] = ACTIONS(1113), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1113), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1113), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1113), - [aux_sym_syslog_facility_token1] = ACTIONS(1113), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1113), - [aux_sym_keep_alive_token1] = ACTIONS(1113), - [aux_sym_tunnel_token1] = ACTIONS(1115), - [aux_sym_tunnel_device_token1] = ACTIONS(1113), - [aux_sym_update_host_keys_token1] = ACTIONS(1113), - [aux_sym_use_keychain_token1] = ACTIONS(1113), - [aux_sym_use_roaming_token1] = ACTIONS(1113), - [aux_sym_user_token1] = ACTIONS(1115), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1113), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1113), - [aux_sym_visual_host_key_token1] = ACTIONS(1113), - [aux_sym_xauth_location_token1] = ACTIONS(1113), + [ts_builtin_sym_end] = ACTIONS(1118), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1122), + [aux_sym_match_token1] = ACTIONS(1118), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1118), + [aux_sym_address_family_token1] = ACTIONS(1118), + [aux_sym_batch_mode_token1] = ACTIONS(1118), + [aux_sym_bind_address_token1] = ACTIONS(1118), + [aux_sym_bind_interface_token1] = ACTIONS(1118), + [aux_sym_canonical_domains_token1] = ACTIONS(1118), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1118), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1118), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1118), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1118), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1118), + [aux_sym_certificate_file_token1] = ACTIONS(1118), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1118), + [aux_sym_check_host_ip_token1] = ACTIONS(1118), + [aux_sym_ciphers_token1] = ACTIONS(1118), + [aux_sym_cipher_token1] = ACTIONS(1120), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1118), + [aux_sym_compression_token1] = ACTIONS(1118), + [aux_sym_connection_attempts_token1] = ACTIONS(1118), + [aux_sym_connect_timeout_token1] = ACTIONS(1118), + [aux_sym_control_master_token1] = ACTIONS(1118), + [aux_sym_control_path_token1] = ACTIONS(1118), + [aux_sym_control_persist_token1] = ACTIONS(1118), + [aux_sym_dynamic_forward_token1] = ACTIONS(1118), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1118), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1118), + [aux_sym_escape_char_token1] = ACTIONS(1118), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1118), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1118), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1118), + [aux_sym_forward_agent_token1] = ACTIONS(1118), + [aux_sym_forward_x11_token1] = ACTIONS(1120), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1118), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1118), + [aux_sym_gateway_ports_token1] = ACTIONS(1118), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1118), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1118), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1118), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1118), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1118), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1118), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1118), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1118), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1118), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1118), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1118), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1118), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1118), + [aux_sym_host_key_alias_token1] = ACTIONS(1118), + [aux_sym_hostname_token1] = ACTIONS(1118), + [aux_sym_identities_only_token1] = ACTIONS(1118), + [aux_sym_identity_agent_token1] = ACTIONS(1118), + [aux_sym_identity_file_token1] = ACTIONS(1118), + [aux_sym_ignore_unknown_token1] = ACTIONS(1118), + [aux_sym_include_token1] = ACTIONS(1118), + [aux_sym_ip_qos_token1] = ACTIONS(1118), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1118), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1118), + [aux_sym_kex_algorithms_token1] = ACTIONS(1118), + [aux_sym_known_hosts_command_token1] = ACTIONS(1118), + [aux_sym_local_command_token1] = ACTIONS(1118), + [aux_sym_local_forward_token1] = ACTIONS(1118), + [aux_sym_log_level_token1] = ACTIONS(1118), + [aux_sym_log_verbose_token1] = ACTIONS(1118), + [aux_sym_macs_token1] = ACTIONS(1118), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1118), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1118), + [aux_sym_password_authentication_token1] = ACTIONS(1118), + [aux_sym_permit_local_command_token1] = ACTIONS(1118), + [aux_sym_permit_remote_open_token1] = ACTIONS(1118), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1118), + [aux_sym_port_token1] = ACTIONS(1118), + [aux_sym_preferred_authentications_token1] = ACTIONS(1118), + [aux_sym_protocol_token1] = ACTIONS(1118), + [aux_sym_proxy_command_token1] = ACTIONS(1118), + [aux_sym_proxy_jump_token1] = ACTIONS(1118), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1118), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1118), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1118), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1118), + [aux_sym_rekey_limit_token1] = ACTIONS(1118), + [aux_sym_remote_command_token1] = ACTIONS(1118), + [aux_sym_remote_forward_token1] = ACTIONS(1118), + [aux_sym_request_tty_token1] = ACTIONS(1118), + [aux_sym_required_rsa_size_token1] = ACTIONS(1118), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1118), + [aux_sym_security_key_provider_token1] = ACTIONS(1118), + [aux_sym_send_env_token1] = ACTIONS(1118), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1118), + [aux_sym_server_alive_interval_token1] = ACTIONS(1118), + [aux_sym_session_type_token1] = ACTIONS(1118), + [aux_sym_set_env_token1] = ACTIONS(1118), + [aux_sym_stdin_null_token1] = ACTIONS(1118), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1118), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1118), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1118), + [aux_sym_syslog_facility_token1] = ACTIONS(1118), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1118), + [aux_sym_keep_alive_token1] = ACTIONS(1118), + [aux_sym_tunnel_token1] = ACTIONS(1120), + [aux_sym_tunnel_device_token1] = ACTIONS(1118), + [aux_sym_update_host_keys_token1] = ACTIONS(1118), + [aux_sym_use_keychain_token1] = ACTIONS(1118), + [aux_sym_use_roaming_token1] = ACTIONS(1118), + [aux_sym_user_token1] = ACTIONS(1120), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1118), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1118), + [aux_sym_visual_host_key_token1] = ACTIONS(1118), + [aux_sym_xauth_location_token1] = ACTIONS(1118), }, [97] = { - [ts_builtin_sym_end] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1121), - [anon_sym_DQUOTE] = ACTIONS(1123), - [aux_sym_match_token1] = ACTIONS(1119), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1119), - [aux_sym_address_family_token1] = ACTIONS(1119), - [aux_sym_batch_mode_token1] = ACTIONS(1119), - [aux_sym_bind_address_token1] = ACTIONS(1119), - [aux_sym_bind_interface_token1] = ACTIONS(1119), - [aux_sym_canonical_domains_token1] = ACTIONS(1119), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1119), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1119), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1119), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1119), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1119), - [aux_sym_certificate_file_token1] = ACTIONS(1119), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1119), - [aux_sym_check_host_ip_token1] = ACTIONS(1119), - [aux_sym_ciphers_token1] = ACTIONS(1119), - [aux_sym_cipher_token1] = ACTIONS(1121), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1119), - [aux_sym_compression_token1] = ACTIONS(1119), - [aux_sym_connection_attempts_token1] = ACTIONS(1119), - [aux_sym_connect_timeout_token1] = ACTIONS(1119), - [aux_sym_control_master_token1] = ACTIONS(1119), - [aux_sym_control_path_token1] = ACTIONS(1119), - [aux_sym_control_persist_token1] = ACTIONS(1119), - [aux_sym_dynamic_forward_token1] = ACTIONS(1119), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1119), - [aux_sym_escape_char_token1] = ACTIONS(1119), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1119), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1119), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1119), - [aux_sym_forward_agent_token1] = ACTIONS(1119), - [aux_sym_forward_x11_token1] = ACTIONS(1121), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1119), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1119), - [aux_sym_gateway_ports_token1] = ACTIONS(1119), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1119), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1119), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1119), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1119), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1119), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1119), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1119), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1119), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1119), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1119), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1119), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1119), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1119), - [aux_sym_host_key_alias_token1] = ACTIONS(1119), - [aux_sym_hostname_token1] = ACTIONS(1119), - [aux_sym_identities_only_token1] = ACTIONS(1119), - [aux_sym_identity_agent_token1] = ACTIONS(1119), - [aux_sym_identity_file_token1] = ACTIONS(1119), - [aux_sym_ignore_unknown_token1] = ACTIONS(1119), - [aux_sym_include_token1] = ACTIONS(1119), - [aux_sym_ip_qos_token1] = ACTIONS(1119), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1119), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1119), - [aux_sym_kex_algorithms_token1] = ACTIONS(1119), - [aux_sym_known_hosts_command_token1] = ACTIONS(1119), - [aux_sym_local_command_token1] = ACTIONS(1119), - [aux_sym_local_forward_token1] = ACTIONS(1119), - [aux_sym_log_level_token1] = ACTIONS(1119), - [aux_sym_log_verbose_token1] = ACTIONS(1119), - [aux_sym_macs_token1] = ACTIONS(1119), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1119), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1119), - [aux_sym_password_authentication_token1] = ACTIONS(1119), - [aux_sym_permit_local_command_token1] = ACTIONS(1119), - [aux_sym_permit_remote_open_token1] = ACTIONS(1119), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1119), - [aux_sym_port_token1] = ACTIONS(1119), - [aux_sym_preferred_authentications_token1] = ACTIONS(1119), - [aux_sym_protocol_token1] = ACTIONS(1119), - [aux_sym_proxy_command_token1] = ACTIONS(1119), - [aux_sym_proxy_jump_token1] = ACTIONS(1119), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1119), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1119), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1119), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1119), - [aux_sym_rekey_limit_token1] = ACTIONS(1119), - [aux_sym_remote_command_token1] = ACTIONS(1119), - [aux_sym_remote_forward_token1] = ACTIONS(1119), - [aux_sym_request_tty_token1] = ACTIONS(1119), - [aux_sym_required_rsa_size_token1] = ACTIONS(1119), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1119), - [aux_sym_security_key_provider_token1] = ACTIONS(1119), - [aux_sym_send_env_token1] = ACTIONS(1119), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1119), - [aux_sym_server_alive_interval_token1] = ACTIONS(1119), - [aux_sym_session_type_token1] = ACTIONS(1119), - [aux_sym_set_env_token1] = ACTIONS(1119), - [aux_sym_stdin_null_token1] = ACTIONS(1119), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1119), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1119), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1119), - [aux_sym_syslog_facility_token1] = ACTIONS(1119), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1119), - [aux_sym_keep_alive_token1] = ACTIONS(1119), - [aux_sym_tunnel_token1] = ACTIONS(1121), - [aux_sym_tunnel_device_token1] = ACTIONS(1119), - [aux_sym_update_host_keys_token1] = ACTIONS(1119), - [aux_sym_use_keychain_token1] = ACTIONS(1119), - [aux_sym_use_roaming_token1] = ACTIONS(1119), - [aux_sym_user_token1] = ACTIONS(1121), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1119), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1119), - [aux_sym_visual_host_key_token1] = ACTIONS(1119), - [aux_sym_xauth_location_token1] = ACTIONS(1119), + [ts_builtin_sym_end] = ACTIONS(1124), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1128), + [aux_sym_match_token1] = ACTIONS(1124), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1124), + [aux_sym_address_family_token1] = ACTIONS(1124), + [aux_sym_batch_mode_token1] = ACTIONS(1124), + [aux_sym_bind_address_token1] = ACTIONS(1124), + [aux_sym_bind_interface_token1] = ACTIONS(1124), + [aux_sym_canonical_domains_token1] = ACTIONS(1124), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1124), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1124), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1124), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1124), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1124), + [aux_sym_certificate_file_token1] = ACTIONS(1124), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1124), + [aux_sym_check_host_ip_token1] = ACTIONS(1124), + [aux_sym_ciphers_token1] = ACTIONS(1124), + [aux_sym_cipher_token1] = ACTIONS(1126), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1124), + [aux_sym_compression_token1] = ACTIONS(1124), + [aux_sym_connection_attempts_token1] = ACTIONS(1124), + [aux_sym_connect_timeout_token1] = ACTIONS(1124), + [aux_sym_control_master_token1] = ACTIONS(1124), + [aux_sym_control_path_token1] = ACTIONS(1124), + [aux_sym_control_persist_token1] = ACTIONS(1124), + [aux_sym_dynamic_forward_token1] = ACTIONS(1124), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1124), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1124), + [aux_sym_escape_char_token1] = ACTIONS(1124), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1124), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1124), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1124), + [aux_sym_forward_agent_token1] = ACTIONS(1124), + [aux_sym_forward_x11_token1] = ACTIONS(1126), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1124), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1124), + [aux_sym_gateway_ports_token1] = ACTIONS(1124), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1124), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1124), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1124), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1124), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1124), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1124), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1124), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1124), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1124), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1124), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1124), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1124), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1124), + [aux_sym_host_key_alias_token1] = ACTIONS(1124), + [aux_sym_hostname_token1] = ACTIONS(1124), + [aux_sym_identities_only_token1] = ACTIONS(1124), + [aux_sym_identity_agent_token1] = ACTIONS(1124), + [aux_sym_identity_file_token1] = ACTIONS(1124), + [aux_sym_ignore_unknown_token1] = ACTIONS(1124), + [aux_sym_include_token1] = ACTIONS(1124), + [aux_sym_ip_qos_token1] = ACTIONS(1124), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1124), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1124), + [aux_sym_kex_algorithms_token1] = ACTIONS(1124), + [aux_sym_known_hosts_command_token1] = ACTIONS(1124), + [aux_sym_local_command_token1] = ACTIONS(1124), + [aux_sym_local_forward_token1] = ACTIONS(1124), + [aux_sym_log_level_token1] = ACTIONS(1124), + [aux_sym_log_verbose_token1] = ACTIONS(1124), + [aux_sym_macs_token1] = ACTIONS(1124), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1124), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1124), + [aux_sym_password_authentication_token1] = ACTIONS(1124), + [aux_sym_permit_local_command_token1] = ACTIONS(1124), + [aux_sym_permit_remote_open_token1] = ACTIONS(1124), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1124), + [aux_sym_port_token1] = ACTIONS(1124), + [aux_sym_preferred_authentications_token1] = ACTIONS(1124), + [aux_sym_protocol_token1] = ACTIONS(1124), + [aux_sym_proxy_command_token1] = ACTIONS(1124), + [aux_sym_proxy_jump_token1] = ACTIONS(1124), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1124), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1124), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1124), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1124), + [aux_sym_rekey_limit_token1] = ACTIONS(1124), + [aux_sym_remote_command_token1] = ACTIONS(1124), + [aux_sym_remote_forward_token1] = ACTIONS(1124), + [aux_sym_request_tty_token1] = ACTIONS(1124), + [aux_sym_required_rsa_size_token1] = ACTIONS(1124), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1124), + [aux_sym_security_key_provider_token1] = ACTIONS(1124), + [aux_sym_send_env_token1] = ACTIONS(1124), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1124), + [aux_sym_server_alive_interval_token1] = ACTIONS(1124), + [aux_sym_session_type_token1] = ACTIONS(1124), + [aux_sym_set_env_token1] = ACTIONS(1124), + [aux_sym_stdin_null_token1] = ACTIONS(1124), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1124), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1124), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1124), + [aux_sym_syslog_facility_token1] = ACTIONS(1124), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1124), + [aux_sym_keep_alive_token1] = ACTIONS(1124), + [aux_sym_tunnel_token1] = ACTIONS(1126), + [aux_sym_tunnel_device_token1] = ACTIONS(1124), + [aux_sym_update_host_keys_token1] = ACTIONS(1124), + [aux_sym_use_keychain_token1] = ACTIONS(1124), + [aux_sym_use_roaming_token1] = ACTIONS(1124), + [aux_sym_user_token1] = ACTIONS(1126), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1124), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1124), + [aux_sym_visual_host_key_token1] = ACTIONS(1124), + [aux_sym_xauth_location_token1] = ACTIONS(1124), }, [98] = { - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1127), - [anon_sym_DQUOTE] = ACTIONS(1129), - [aux_sym_match_token1] = ACTIONS(1125), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1125), - [aux_sym_address_family_token1] = ACTIONS(1125), - [aux_sym_batch_mode_token1] = ACTIONS(1125), - [aux_sym_bind_address_token1] = ACTIONS(1125), - [aux_sym_bind_interface_token1] = ACTIONS(1125), - [aux_sym_canonical_domains_token1] = ACTIONS(1125), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1125), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1125), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1125), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1125), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1125), - [aux_sym_certificate_file_token1] = ACTIONS(1125), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1125), - [aux_sym_check_host_ip_token1] = ACTIONS(1125), - [aux_sym_ciphers_token1] = ACTIONS(1125), - [aux_sym_cipher_token1] = ACTIONS(1127), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1125), - [aux_sym_compression_token1] = ACTIONS(1125), - [aux_sym_connection_attempts_token1] = ACTIONS(1125), - [aux_sym_connect_timeout_token1] = ACTIONS(1125), - [aux_sym_control_master_token1] = ACTIONS(1125), - [aux_sym_control_path_token1] = ACTIONS(1125), - [aux_sym_control_persist_token1] = ACTIONS(1125), - [aux_sym_dynamic_forward_token1] = ACTIONS(1125), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1125), - [aux_sym_escape_char_token1] = ACTIONS(1125), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1125), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1125), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1125), - [aux_sym_forward_agent_token1] = ACTIONS(1125), - [aux_sym_forward_x11_token1] = ACTIONS(1127), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1125), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1125), - [aux_sym_gateway_ports_token1] = ACTIONS(1125), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1125), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1125), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1125), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1125), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1125), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1125), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1125), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1125), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1125), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1125), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1125), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1125), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1125), - [aux_sym_host_key_alias_token1] = ACTIONS(1125), - [aux_sym_hostname_token1] = ACTIONS(1125), - [aux_sym_identities_only_token1] = ACTIONS(1125), - [aux_sym_identity_agent_token1] = ACTIONS(1125), - [aux_sym_identity_file_token1] = ACTIONS(1125), - [aux_sym_ignore_unknown_token1] = ACTIONS(1125), - [aux_sym_include_token1] = ACTIONS(1125), - [aux_sym_ip_qos_token1] = ACTIONS(1125), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1125), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1125), - [aux_sym_kex_algorithms_token1] = ACTIONS(1125), - [aux_sym_known_hosts_command_token1] = ACTIONS(1125), - [aux_sym_local_command_token1] = ACTIONS(1125), - [aux_sym_local_forward_token1] = ACTIONS(1125), - [aux_sym_log_level_token1] = ACTIONS(1125), - [aux_sym_log_verbose_token1] = ACTIONS(1125), - [aux_sym_macs_token1] = ACTIONS(1125), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1125), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1125), - [aux_sym_password_authentication_token1] = ACTIONS(1125), - [aux_sym_permit_local_command_token1] = ACTIONS(1125), - [aux_sym_permit_remote_open_token1] = ACTIONS(1125), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1125), - [aux_sym_port_token1] = ACTIONS(1125), - [aux_sym_preferred_authentications_token1] = ACTIONS(1125), - [aux_sym_protocol_token1] = ACTIONS(1125), - [aux_sym_proxy_command_token1] = ACTIONS(1125), - [aux_sym_proxy_jump_token1] = ACTIONS(1125), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1125), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1125), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1125), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1125), - [aux_sym_rekey_limit_token1] = ACTIONS(1125), - [aux_sym_remote_command_token1] = ACTIONS(1125), - [aux_sym_remote_forward_token1] = ACTIONS(1125), - [aux_sym_request_tty_token1] = ACTIONS(1125), - [aux_sym_required_rsa_size_token1] = ACTIONS(1125), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1125), - [aux_sym_security_key_provider_token1] = ACTIONS(1125), - [aux_sym_send_env_token1] = ACTIONS(1125), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1125), - [aux_sym_server_alive_interval_token1] = ACTIONS(1125), - [aux_sym_session_type_token1] = ACTIONS(1125), - [aux_sym_set_env_token1] = ACTIONS(1125), - [aux_sym_stdin_null_token1] = ACTIONS(1125), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1125), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1125), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1125), - [aux_sym_syslog_facility_token1] = ACTIONS(1125), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1125), - [aux_sym_keep_alive_token1] = ACTIONS(1125), - [aux_sym_tunnel_token1] = ACTIONS(1127), - [aux_sym_tunnel_device_token1] = ACTIONS(1125), - [aux_sym_update_host_keys_token1] = ACTIONS(1125), - [aux_sym_use_keychain_token1] = ACTIONS(1125), - [aux_sym_use_roaming_token1] = ACTIONS(1125), - [aux_sym_user_token1] = ACTIONS(1127), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1125), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1125), - [aux_sym_visual_host_key_token1] = ACTIONS(1125), - [aux_sym_xauth_location_token1] = ACTIONS(1125), + [ts_builtin_sym_end] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1132), + [anon_sym_DQUOTE] = ACTIONS(1134), + [aux_sym_match_token1] = ACTIONS(1130), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1130), + [aux_sym_address_family_token1] = ACTIONS(1130), + [aux_sym_batch_mode_token1] = ACTIONS(1130), + [aux_sym_bind_address_token1] = ACTIONS(1130), + [aux_sym_bind_interface_token1] = ACTIONS(1130), + [aux_sym_canonical_domains_token1] = ACTIONS(1130), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1130), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1130), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1130), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1130), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1130), + [aux_sym_certificate_file_token1] = ACTIONS(1130), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1130), + [aux_sym_check_host_ip_token1] = ACTIONS(1130), + [aux_sym_ciphers_token1] = ACTIONS(1130), + [aux_sym_cipher_token1] = ACTIONS(1132), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1130), + [aux_sym_compression_token1] = ACTIONS(1130), + [aux_sym_connection_attempts_token1] = ACTIONS(1130), + [aux_sym_connect_timeout_token1] = ACTIONS(1130), + [aux_sym_control_master_token1] = ACTIONS(1130), + [aux_sym_control_path_token1] = ACTIONS(1130), + [aux_sym_control_persist_token1] = ACTIONS(1130), + [aux_sym_dynamic_forward_token1] = ACTIONS(1130), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1130), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1130), + [aux_sym_escape_char_token1] = ACTIONS(1130), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1130), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1130), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1130), + [aux_sym_forward_agent_token1] = ACTIONS(1130), + [aux_sym_forward_x11_token1] = ACTIONS(1132), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1130), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1130), + [aux_sym_gateway_ports_token1] = ACTIONS(1130), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1130), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1130), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1130), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1130), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1130), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1130), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1130), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1130), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1130), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1130), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1130), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1130), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1130), + [aux_sym_host_key_alias_token1] = ACTIONS(1130), + [aux_sym_hostname_token1] = ACTIONS(1130), + [aux_sym_identities_only_token1] = ACTIONS(1130), + [aux_sym_identity_agent_token1] = ACTIONS(1130), + [aux_sym_identity_file_token1] = ACTIONS(1130), + [aux_sym_ignore_unknown_token1] = ACTIONS(1130), + [aux_sym_include_token1] = ACTIONS(1130), + [aux_sym_ip_qos_token1] = ACTIONS(1130), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1130), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1130), + [aux_sym_kex_algorithms_token1] = ACTIONS(1130), + [aux_sym_known_hosts_command_token1] = ACTIONS(1130), + [aux_sym_local_command_token1] = ACTIONS(1130), + [aux_sym_local_forward_token1] = ACTIONS(1130), + [aux_sym_log_level_token1] = ACTIONS(1130), + [aux_sym_log_verbose_token1] = ACTIONS(1130), + [aux_sym_macs_token1] = ACTIONS(1130), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1130), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1130), + [aux_sym_password_authentication_token1] = ACTIONS(1130), + [aux_sym_permit_local_command_token1] = ACTIONS(1130), + [aux_sym_permit_remote_open_token1] = ACTIONS(1130), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1130), + [aux_sym_port_token1] = ACTIONS(1130), + [aux_sym_preferred_authentications_token1] = ACTIONS(1130), + [aux_sym_protocol_token1] = ACTIONS(1130), + [aux_sym_proxy_command_token1] = ACTIONS(1130), + [aux_sym_proxy_jump_token1] = ACTIONS(1130), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1130), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1130), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1130), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1130), + [aux_sym_rekey_limit_token1] = ACTIONS(1130), + [aux_sym_remote_command_token1] = ACTIONS(1130), + [aux_sym_remote_forward_token1] = ACTIONS(1130), + [aux_sym_request_tty_token1] = ACTIONS(1130), + [aux_sym_required_rsa_size_token1] = ACTIONS(1130), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1130), + [aux_sym_security_key_provider_token1] = ACTIONS(1130), + [aux_sym_send_env_token1] = ACTIONS(1130), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1130), + [aux_sym_server_alive_interval_token1] = ACTIONS(1130), + [aux_sym_session_type_token1] = ACTIONS(1130), + [aux_sym_set_env_token1] = ACTIONS(1130), + [aux_sym_stdin_null_token1] = ACTIONS(1130), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1130), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1130), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1130), + [aux_sym_syslog_facility_token1] = ACTIONS(1130), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1130), + [aux_sym_keep_alive_token1] = ACTIONS(1130), + [aux_sym_tunnel_token1] = ACTIONS(1132), + [aux_sym_tunnel_device_token1] = ACTIONS(1130), + [aux_sym_update_host_keys_token1] = ACTIONS(1130), + [aux_sym_use_keychain_token1] = ACTIONS(1130), + [aux_sym_use_roaming_token1] = ACTIONS(1130), + [aux_sym_user_token1] = ACTIONS(1132), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1130), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1130), + [aux_sym_visual_host_key_token1] = ACTIONS(1130), + [aux_sym_xauth_location_token1] = ACTIONS(1130), }, [99] = { - [ts_builtin_sym_end] = ACTIONS(1131), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1135), - [aux_sym_match_token1] = ACTIONS(1131), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1131), - [aux_sym_address_family_token1] = ACTIONS(1131), - [aux_sym_batch_mode_token1] = ACTIONS(1131), - [aux_sym_bind_address_token1] = ACTIONS(1131), - [aux_sym_bind_interface_token1] = ACTIONS(1131), - [aux_sym_canonical_domains_token1] = ACTIONS(1131), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1131), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1131), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1131), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1131), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1131), - [aux_sym_certificate_file_token1] = ACTIONS(1131), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1131), - [aux_sym_check_host_ip_token1] = ACTIONS(1131), - [aux_sym_ciphers_token1] = ACTIONS(1131), - [aux_sym_cipher_token1] = ACTIONS(1133), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1131), - [aux_sym_compression_token1] = ACTIONS(1131), - [aux_sym_connection_attempts_token1] = ACTIONS(1131), - [aux_sym_connect_timeout_token1] = ACTIONS(1131), - [aux_sym_control_master_token1] = ACTIONS(1131), - [aux_sym_control_path_token1] = ACTIONS(1131), - [aux_sym_control_persist_token1] = ACTIONS(1131), - [aux_sym_dynamic_forward_token1] = ACTIONS(1131), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1131), - [aux_sym_escape_char_token1] = ACTIONS(1131), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1131), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1131), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1131), - [aux_sym_forward_agent_token1] = ACTIONS(1131), - [aux_sym_forward_x11_token1] = ACTIONS(1133), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1131), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1131), - [aux_sym_gateway_ports_token1] = ACTIONS(1131), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1131), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1131), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1131), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1131), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1131), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1131), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1131), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1131), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1131), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1131), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1131), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1131), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1131), - [aux_sym_host_key_alias_token1] = ACTIONS(1131), - [aux_sym_hostname_token1] = ACTIONS(1131), - [aux_sym_identities_only_token1] = ACTIONS(1131), - [aux_sym_identity_agent_token1] = ACTIONS(1131), - [aux_sym_identity_file_token1] = ACTIONS(1131), - [aux_sym_ignore_unknown_token1] = ACTIONS(1131), - [aux_sym_include_token1] = ACTIONS(1131), - [aux_sym_ip_qos_token1] = ACTIONS(1131), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1131), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1131), - [aux_sym_kex_algorithms_token1] = ACTIONS(1131), - [aux_sym_known_hosts_command_token1] = ACTIONS(1131), - [aux_sym_local_command_token1] = ACTIONS(1131), - [aux_sym_local_forward_token1] = ACTIONS(1131), - [aux_sym_log_level_token1] = ACTIONS(1131), - [aux_sym_log_verbose_token1] = ACTIONS(1131), - [aux_sym_macs_token1] = ACTIONS(1131), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1131), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1131), - [aux_sym_password_authentication_token1] = ACTIONS(1131), - [aux_sym_permit_local_command_token1] = ACTIONS(1131), - [aux_sym_permit_remote_open_token1] = ACTIONS(1131), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1131), - [aux_sym_port_token1] = ACTIONS(1131), - [aux_sym_preferred_authentications_token1] = ACTIONS(1131), - [aux_sym_protocol_token1] = ACTIONS(1131), - [aux_sym_proxy_command_token1] = ACTIONS(1131), - [aux_sym_proxy_jump_token1] = ACTIONS(1131), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1131), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1131), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1131), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1131), - [aux_sym_rekey_limit_token1] = ACTIONS(1131), - [aux_sym_remote_command_token1] = ACTIONS(1131), - [aux_sym_remote_forward_token1] = ACTIONS(1131), - [aux_sym_request_tty_token1] = ACTIONS(1131), - [aux_sym_required_rsa_size_token1] = ACTIONS(1131), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1131), - [aux_sym_security_key_provider_token1] = ACTIONS(1131), - [aux_sym_send_env_token1] = ACTIONS(1131), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1131), - [aux_sym_server_alive_interval_token1] = ACTIONS(1131), - [aux_sym_session_type_token1] = ACTIONS(1131), - [aux_sym_set_env_token1] = ACTIONS(1131), - [aux_sym_stdin_null_token1] = ACTIONS(1131), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1131), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1131), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1131), - [aux_sym_syslog_facility_token1] = ACTIONS(1131), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1131), - [aux_sym_keep_alive_token1] = ACTIONS(1131), - [aux_sym_tunnel_token1] = ACTIONS(1133), - [aux_sym_tunnel_device_token1] = ACTIONS(1131), - [aux_sym_update_host_keys_token1] = ACTIONS(1131), - [aux_sym_use_keychain_token1] = ACTIONS(1131), - [aux_sym_use_roaming_token1] = ACTIONS(1131), - [aux_sym_user_token1] = ACTIONS(1133), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1131), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1131), - [aux_sym_visual_host_key_token1] = ACTIONS(1131), - [aux_sym_xauth_location_token1] = ACTIONS(1131), + [ts_builtin_sym_end] = ACTIONS(1136), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1140), + [aux_sym_match_token1] = ACTIONS(1136), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1136), + [aux_sym_address_family_token1] = ACTIONS(1136), + [aux_sym_batch_mode_token1] = ACTIONS(1136), + [aux_sym_bind_address_token1] = ACTIONS(1136), + [aux_sym_bind_interface_token1] = ACTIONS(1136), + [aux_sym_canonical_domains_token1] = ACTIONS(1136), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1136), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1136), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1136), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1136), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1136), + [aux_sym_certificate_file_token1] = ACTIONS(1136), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1136), + [aux_sym_check_host_ip_token1] = ACTIONS(1136), + [aux_sym_ciphers_token1] = ACTIONS(1136), + [aux_sym_cipher_token1] = ACTIONS(1138), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1136), + [aux_sym_compression_token1] = ACTIONS(1136), + [aux_sym_connection_attempts_token1] = ACTIONS(1136), + [aux_sym_connect_timeout_token1] = ACTIONS(1136), + [aux_sym_control_master_token1] = ACTIONS(1136), + [aux_sym_control_path_token1] = ACTIONS(1136), + [aux_sym_control_persist_token1] = ACTIONS(1136), + [aux_sym_dynamic_forward_token1] = ACTIONS(1136), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1136), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1136), + [aux_sym_escape_char_token1] = ACTIONS(1136), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1136), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1136), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1136), + [aux_sym_forward_agent_token1] = ACTIONS(1136), + [aux_sym_forward_x11_token1] = ACTIONS(1138), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1136), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1136), + [aux_sym_gateway_ports_token1] = ACTIONS(1136), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1136), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1136), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1136), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1136), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1136), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1136), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1136), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1136), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1136), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1136), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1136), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1136), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1136), + [aux_sym_host_key_alias_token1] = ACTIONS(1136), + [aux_sym_hostname_token1] = ACTIONS(1136), + [aux_sym_identities_only_token1] = ACTIONS(1136), + [aux_sym_identity_agent_token1] = ACTIONS(1136), + [aux_sym_identity_file_token1] = ACTIONS(1136), + [aux_sym_ignore_unknown_token1] = ACTIONS(1136), + [aux_sym_include_token1] = ACTIONS(1136), + [aux_sym_ip_qos_token1] = ACTIONS(1136), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1136), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1136), + [aux_sym_kex_algorithms_token1] = ACTIONS(1136), + [aux_sym_known_hosts_command_token1] = ACTIONS(1136), + [aux_sym_local_command_token1] = ACTIONS(1136), + [aux_sym_local_forward_token1] = ACTIONS(1136), + [aux_sym_log_level_token1] = ACTIONS(1136), + [aux_sym_log_verbose_token1] = ACTIONS(1136), + [aux_sym_macs_token1] = ACTIONS(1136), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1136), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1136), + [aux_sym_password_authentication_token1] = ACTIONS(1136), + [aux_sym_permit_local_command_token1] = ACTIONS(1136), + [aux_sym_permit_remote_open_token1] = ACTIONS(1136), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1136), + [aux_sym_port_token1] = ACTIONS(1136), + [aux_sym_preferred_authentications_token1] = ACTIONS(1136), + [aux_sym_protocol_token1] = ACTIONS(1136), + [aux_sym_proxy_command_token1] = ACTIONS(1136), + [aux_sym_proxy_jump_token1] = ACTIONS(1136), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1136), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1136), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1136), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1136), + [aux_sym_rekey_limit_token1] = ACTIONS(1136), + [aux_sym_remote_command_token1] = ACTIONS(1136), + [aux_sym_remote_forward_token1] = ACTIONS(1136), + [aux_sym_request_tty_token1] = ACTIONS(1136), + [aux_sym_required_rsa_size_token1] = ACTIONS(1136), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1136), + [aux_sym_security_key_provider_token1] = ACTIONS(1136), + [aux_sym_send_env_token1] = ACTIONS(1136), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1136), + [aux_sym_server_alive_interval_token1] = ACTIONS(1136), + [aux_sym_session_type_token1] = ACTIONS(1136), + [aux_sym_set_env_token1] = ACTIONS(1136), + [aux_sym_stdin_null_token1] = ACTIONS(1136), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1136), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1136), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1136), + [aux_sym_syslog_facility_token1] = ACTIONS(1136), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1136), + [aux_sym_keep_alive_token1] = ACTIONS(1136), + [aux_sym_tunnel_token1] = ACTIONS(1138), + [aux_sym_tunnel_device_token1] = ACTIONS(1136), + [aux_sym_update_host_keys_token1] = ACTIONS(1136), + [aux_sym_use_keychain_token1] = ACTIONS(1136), + [aux_sym_use_roaming_token1] = ACTIONS(1136), + [aux_sym_user_token1] = ACTIONS(1138), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1136), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1136), + [aux_sym_visual_host_key_token1] = ACTIONS(1136), + [aux_sym_xauth_location_token1] = ACTIONS(1136), }, [100] = { - [ts_builtin_sym_end] = ACTIONS(1137), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1139), - [anon_sym_DQUOTE] = ACTIONS(1141), - [aux_sym_match_token1] = ACTIONS(1137), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1137), - [aux_sym_address_family_token1] = ACTIONS(1137), - [aux_sym_batch_mode_token1] = ACTIONS(1137), - [aux_sym_bind_address_token1] = ACTIONS(1137), - [aux_sym_bind_interface_token1] = ACTIONS(1137), - [aux_sym_canonical_domains_token1] = ACTIONS(1137), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1137), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1137), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1137), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1137), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1137), - [aux_sym_certificate_file_token1] = ACTIONS(1137), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1137), - [aux_sym_check_host_ip_token1] = ACTIONS(1137), - [aux_sym_ciphers_token1] = ACTIONS(1137), - [aux_sym_cipher_token1] = ACTIONS(1139), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1137), - [aux_sym_compression_token1] = ACTIONS(1137), - [aux_sym_connection_attempts_token1] = ACTIONS(1137), - [aux_sym_connect_timeout_token1] = ACTIONS(1137), - [aux_sym_control_master_token1] = ACTIONS(1137), - [aux_sym_control_path_token1] = ACTIONS(1137), - [aux_sym_control_persist_token1] = ACTIONS(1137), - [aux_sym_dynamic_forward_token1] = ACTIONS(1137), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1137), - [aux_sym_escape_char_token1] = ACTIONS(1137), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1137), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1137), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1137), - [aux_sym_forward_agent_token1] = ACTIONS(1137), - [aux_sym_forward_x11_token1] = ACTIONS(1139), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1137), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1137), - [aux_sym_gateway_ports_token1] = ACTIONS(1137), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1137), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1137), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1137), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1137), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1137), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1137), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1137), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1137), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1137), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1137), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1137), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1137), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1137), - [aux_sym_host_key_alias_token1] = ACTIONS(1137), - [aux_sym_hostname_token1] = ACTIONS(1137), - [aux_sym_identities_only_token1] = ACTIONS(1137), - [aux_sym_identity_agent_token1] = ACTIONS(1137), - [aux_sym_identity_file_token1] = ACTIONS(1137), - [aux_sym_ignore_unknown_token1] = ACTIONS(1137), - [aux_sym_include_token1] = ACTIONS(1137), - [aux_sym_ip_qos_token1] = ACTIONS(1137), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1137), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1137), - [aux_sym_kex_algorithms_token1] = ACTIONS(1137), - [aux_sym_known_hosts_command_token1] = ACTIONS(1137), - [aux_sym_local_command_token1] = ACTIONS(1137), - [aux_sym_local_forward_token1] = ACTIONS(1137), - [aux_sym_log_level_token1] = ACTIONS(1137), - [aux_sym_log_verbose_token1] = ACTIONS(1137), - [aux_sym_macs_token1] = ACTIONS(1137), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1137), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1137), - [aux_sym_password_authentication_token1] = ACTIONS(1137), - [aux_sym_permit_local_command_token1] = ACTIONS(1137), - [aux_sym_permit_remote_open_token1] = ACTIONS(1137), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1137), - [aux_sym_port_token1] = ACTIONS(1137), - [aux_sym_preferred_authentications_token1] = ACTIONS(1137), - [aux_sym_protocol_token1] = ACTIONS(1137), - [aux_sym_proxy_command_token1] = ACTIONS(1137), - [aux_sym_proxy_jump_token1] = ACTIONS(1137), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1137), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1137), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1137), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1137), - [aux_sym_rekey_limit_token1] = ACTIONS(1137), - [aux_sym_remote_command_token1] = ACTIONS(1137), - [aux_sym_remote_forward_token1] = ACTIONS(1137), - [aux_sym_request_tty_token1] = ACTIONS(1137), - [aux_sym_required_rsa_size_token1] = ACTIONS(1137), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1137), - [aux_sym_security_key_provider_token1] = ACTIONS(1137), - [aux_sym_send_env_token1] = ACTIONS(1137), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1137), - [aux_sym_server_alive_interval_token1] = ACTIONS(1137), - [aux_sym_session_type_token1] = ACTIONS(1137), - [aux_sym_set_env_token1] = ACTIONS(1137), - [aux_sym_stdin_null_token1] = ACTIONS(1137), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1137), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1137), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1137), - [aux_sym_syslog_facility_token1] = ACTIONS(1137), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1137), - [aux_sym_keep_alive_token1] = ACTIONS(1137), - [aux_sym_tunnel_token1] = ACTIONS(1139), - [aux_sym_tunnel_device_token1] = ACTIONS(1137), - [aux_sym_update_host_keys_token1] = ACTIONS(1137), - [aux_sym_use_keychain_token1] = ACTIONS(1137), - [aux_sym_use_roaming_token1] = ACTIONS(1137), - [aux_sym_user_token1] = ACTIONS(1139), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1137), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1137), - [aux_sym_visual_host_key_token1] = ACTIONS(1137), - [aux_sym_xauth_location_token1] = ACTIONS(1137), + [ts_builtin_sym_end] = ACTIONS(1142), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1144), + [anon_sym_DQUOTE] = ACTIONS(1146), + [aux_sym_match_token1] = ACTIONS(1142), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1142), + [aux_sym_address_family_token1] = ACTIONS(1142), + [aux_sym_batch_mode_token1] = ACTIONS(1142), + [aux_sym_bind_address_token1] = ACTIONS(1142), + [aux_sym_bind_interface_token1] = ACTIONS(1142), + [aux_sym_canonical_domains_token1] = ACTIONS(1142), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1142), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1142), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1142), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1142), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1142), + [aux_sym_certificate_file_token1] = ACTIONS(1142), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1142), + [aux_sym_check_host_ip_token1] = ACTIONS(1142), + [aux_sym_ciphers_token1] = ACTIONS(1142), + [aux_sym_cipher_token1] = ACTIONS(1144), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1142), + [aux_sym_compression_token1] = ACTIONS(1142), + [aux_sym_connection_attempts_token1] = ACTIONS(1142), + [aux_sym_connect_timeout_token1] = ACTIONS(1142), + [aux_sym_control_master_token1] = ACTIONS(1142), + [aux_sym_control_path_token1] = ACTIONS(1142), + [aux_sym_control_persist_token1] = ACTIONS(1142), + [aux_sym_dynamic_forward_token1] = ACTIONS(1142), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1142), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1142), + [aux_sym_escape_char_token1] = ACTIONS(1142), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1142), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1142), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1142), + [aux_sym_forward_agent_token1] = ACTIONS(1142), + [aux_sym_forward_x11_token1] = ACTIONS(1144), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1142), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1142), + [aux_sym_gateway_ports_token1] = ACTIONS(1142), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1142), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1142), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1142), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1142), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1142), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1142), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1142), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1142), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1142), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1142), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1142), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1142), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1142), + [aux_sym_host_key_alias_token1] = ACTIONS(1142), + [aux_sym_hostname_token1] = ACTIONS(1142), + [aux_sym_identities_only_token1] = ACTIONS(1142), + [aux_sym_identity_agent_token1] = ACTIONS(1142), + [aux_sym_identity_file_token1] = ACTIONS(1142), + [aux_sym_ignore_unknown_token1] = ACTIONS(1142), + [aux_sym_include_token1] = ACTIONS(1142), + [aux_sym_ip_qos_token1] = ACTIONS(1142), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1142), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1142), + [aux_sym_kex_algorithms_token1] = ACTIONS(1142), + [aux_sym_known_hosts_command_token1] = ACTIONS(1142), + [aux_sym_local_command_token1] = ACTIONS(1142), + [aux_sym_local_forward_token1] = ACTIONS(1142), + [aux_sym_log_level_token1] = ACTIONS(1142), + [aux_sym_log_verbose_token1] = ACTIONS(1142), + [aux_sym_macs_token1] = ACTIONS(1142), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1142), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1142), + [aux_sym_password_authentication_token1] = ACTIONS(1142), + [aux_sym_permit_local_command_token1] = ACTIONS(1142), + [aux_sym_permit_remote_open_token1] = ACTIONS(1142), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1142), + [aux_sym_port_token1] = ACTIONS(1142), + [aux_sym_preferred_authentications_token1] = ACTIONS(1142), + [aux_sym_protocol_token1] = ACTIONS(1142), + [aux_sym_proxy_command_token1] = ACTIONS(1142), + [aux_sym_proxy_jump_token1] = ACTIONS(1142), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1142), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1142), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1142), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1142), + [aux_sym_rekey_limit_token1] = ACTIONS(1142), + [aux_sym_remote_command_token1] = ACTIONS(1142), + [aux_sym_remote_forward_token1] = ACTIONS(1142), + [aux_sym_request_tty_token1] = ACTIONS(1142), + [aux_sym_required_rsa_size_token1] = ACTIONS(1142), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1142), + [aux_sym_security_key_provider_token1] = ACTIONS(1142), + [aux_sym_send_env_token1] = ACTIONS(1142), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1142), + [aux_sym_server_alive_interval_token1] = ACTIONS(1142), + [aux_sym_session_type_token1] = ACTIONS(1142), + [aux_sym_set_env_token1] = ACTIONS(1142), + [aux_sym_stdin_null_token1] = ACTIONS(1142), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1142), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1142), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1142), + [aux_sym_syslog_facility_token1] = ACTIONS(1142), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1142), + [aux_sym_keep_alive_token1] = ACTIONS(1142), + [aux_sym_tunnel_token1] = ACTIONS(1144), + [aux_sym_tunnel_device_token1] = ACTIONS(1142), + [aux_sym_update_host_keys_token1] = ACTIONS(1142), + [aux_sym_use_keychain_token1] = ACTIONS(1142), + [aux_sym_use_roaming_token1] = ACTIONS(1142), + [aux_sym_user_token1] = ACTIONS(1144), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1142), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1142), + [aux_sym_visual_host_key_token1] = ACTIONS(1142), + [aux_sym_xauth_location_token1] = ACTIONS(1142), }, [101] = { - [ts_builtin_sym_end] = ACTIONS(1143), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1145), - [anon_sym_DQUOTE] = ACTIONS(1147), - [aux_sym_match_token1] = ACTIONS(1143), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1143), - [aux_sym_address_family_token1] = ACTIONS(1143), - [aux_sym_batch_mode_token1] = ACTIONS(1143), - [aux_sym_bind_address_token1] = ACTIONS(1143), - [aux_sym_bind_interface_token1] = ACTIONS(1143), - [aux_sym_canonical_domains_token1] = ACTIONS(1143), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1143), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1143), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1143), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1143), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1143), - [aux_sym_certificate_file_token1] = ACTIONS(1143), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1143), - [aux_sym_check_host_ip_token1] = ACTIONS(1143), - [aux_sym_ciphers_token1] = ACTIONS(1143), - [aux_sym_cipher_token1] = ACTIONS(1145), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1143), - [aux_sym_compression_token1] = ACTIONS(1143), - [aux_sym_connection_attempts_token1] = ACTIONS(1143), - [aux_sym_connect_timeout_token1] = ACTIONS(1143), - [aux_sym_control_master_token1] = ACTIONS(1143), - [aux_sym_control_path_token1] = ACTIONS(1143), - [aux_sym_control_persist_token1] = ACTIONS(1143), - [aux_sym_dynamic_forward_token1] = ACTIONS(1143), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1143), - [aux_sym_escape_char_token1] = ACTIONS(1143), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1143), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1143), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1143), - [aux_sym_forward_agent_token1] = ACTIONS(1143), - [aux_sym_forward_x11_token1] = ACTIONS(1145), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1143), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1143), - [aux_sym_gateway_ports_token1] = ACTIONS(1143), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1143), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1143), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1143), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1143), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1143), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1143), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1143), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1143), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1143), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1143), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1143), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1143), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1143), - [aux_sym_host_key_alias_token1] = ACTIONS(1143), - [aux_sym_hostname_token1] = ACTIONS(1143), - [aux_sym_identities_only_token1] = ACTIONS(1143), - [aux_sym_identity_agent_token1] = ACTIONS(1143), - [aux_sym_identity_file_token1] = ACTIONS(1143), - [aux_sym_ignore_unknown_token1] = ACTIONS(1143), - [aux_sym_include_token1] = ACTIONS(1143), - [aux_sym_ip_qos_token1] = ACTIONS(1143), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1143), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1143), - [aux_sym_kex_algorithms_token1] = ACTIONS(1143), - [aux_sym_known_hosts_command_token1] = ACTIONS(1143), - [aux_sym_local_command_token1] = ACTIONS(1143), - [aux_sym_local_forward_token1] = ACTIONS(1143), - [aux_sym_log_level_token1] = ACTIONS(1143), - [aux_sym_log_verbose_token1] = ACTIONS(1143), - [aux_sym_macs_token1] = ACTIONS(1143), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1143), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1143), - [aux_sym_password_authentication_token1] = ACTIONS(1143), - [aux_sym_permit_local_command_token1] = ACTIONS(1143), - [aux_sym_permit_remote_open_token1] = ACTIONS(1143), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1143), - [aux_sym_port_token1] = ACTIONS(1143), - [aux_sym_preferred_authentications_token1] = ACTIONS(1143), - [aux_sym_protocol_token1] = ACTIONS(1143), - [aux_sym_proxy_command_token1] = ACTIONS(1143), - [aux_sym_proxy_jump_token1] = ACTIONS(1143), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1143), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1143), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1143), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1143), - [aux_sym_rekey_limit_token1] = ACTIONS(1143), - [aux_sym_remote_command_token1] = ACTIONS(1143), - [aux_sym_remote_forward_token1] = ACTIONS(1143), - [aux_sym_request_tty_token1] = ACTIONS(1143), - [aux_sym_required_rsa_size_token1] = ACTIONS(1143), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1143), - [aux_sym_security_key_provider_token1] = ACTIONS(1143), - [aux_sym_send_env_token1] = ACTIONS(1143), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1143), - [aux_sym_server_alive_interval_token1] = ACTIONS(1143), - [aux_sym_session_type_token1] = ACTIONS(1143), - [aux_sym_set_env_token1] = ACTIONS(1143), - [aux_sym_stdin_null_token1] = ACTIONS(1143), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1143), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1143), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1143), - [aux_sym_syslog_facility_token1] = ACTIONS(1143), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1143), - [aux_sym_keep_alive_token1] = ACTIONS(1143), - [aux_sym_tunnel_token1] = ACTIONS(1145), - [aux_sym_tunnel_device_token1] = ACTIONS(1143), - [aux_sym_update_host_keys_token1] = ACTIONS(1143), - [aux_sym_use_keychain_token1] = ACTIONS(1143), - [aux_sym_use_roaming_token1] = ACTIONS(1143), - [aux_sym_user_token1] = ACTIONS(1145), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1143), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1143), - [aux_sym_visual_host_key_token1] = ACTIONS(1143), - [aux_sym_xauth_location_token1] = ACTIONS(1143), + [ts_builtin_sym_end] = ACTIONS(1148), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1150), + [anon_sym_DQUOTE] = ACTIONS(1152), + [aux_sym_match_token1] = ACTIONS(1148), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1148), + [aux_sym_address_family_token1] = ACTIONS(1148), + [aux_sym_batch_mode_token1] = ACTIONS(1148), + [aux_sym_bind_address_token1] = ACTIONS(1148), + [aux_sym_bind_interface_token1] = ACTIONS(1148), + [aux_sym_canonical_domains_token1] = ACTIONS(1148), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1148), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1148), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1148), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1148), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1148), + [aux_sym_certificate_file_token1] = ACTIONS(1148), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1148), + [aux_sym_check_host_ip_token1] = ACTIONS(1148), + [aux_sym_ciphers_token1] = ACTIONS(1148), + [aux_sym_cipher_token1] = ACTIONS(1150), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1148), + [aux_sym_compression_token1] = ACTIONS(1148), + [aux_sym_connection_attempts_token1] = ACTIONS(1148), + [aux_sym_connect_timeout_token1] = ACTIONS(1148), + [aux_sym_control_master_token1] = ACTIONS(1148), + [aux_sym_control_path_token1] = ACTIONS(1148), + [aux_sym_control_persist_token1] = ACTIONS(1148), + [aux_sym_dynamic_forward_token1] = ACTIONS(1148), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1148), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1148), + [aux_sym_escape_char_token1] = ACTIONS(1148), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1148), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1148), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1148), + [aux_sym_forward_agent_token1] = ACTIONS(1148), + [aux_sym_forward_x11_token1] = ACTIONS(1150), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1148), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1148), + [aux_sym_gateway_ports_token1] = ACTIONS(1148), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1148), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1148), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1148), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1148), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1148), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1148), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1148), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1148), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1148), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1148), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1148), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1148), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1148), + [aux_sym_host_key_alias_token1] = ACTIONS(1148), + [aux_sym_hostname_token1] = ACTIONS(1148), + [aux_sym_identities_only_token1] = ACTIONS(1148), + [aux_sym_identity_agent_token1] = ACTIONS(1148), + [aux_sym_identity_file_token1] = ACTIONS(1148), + [aux_sym_ignore_unknown_token1] = ACTIONS(1148), + [aux_sym_include_token1] = ACTIONS(1148), + [aux_sym_ip_qos_token1] = ACTIONS(1148), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1148), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1148), + [aux_sym_kex_algorithms_token1] = ACTIONS(1148), + [aux_sym_known_hosts_command_token1] = ACTIONS(1148), + [aux_sym_local_command_token1] = ACTIONS(1148), + [aux_sym_local_forward_token1] = ACTIONS(1148), + [aux_sym_log_level_token1] = ACTIONS(1148), + [aux_sym_log_verbose_token1] = ACTIONS(1148), + [aux_sym_macs_token1] = ACTIONS(1148), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1148), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1148), + [aux_sym_password_authentication_token1] = ACTIONS(1148), + [aux_sym_permit_local_command_token1] = ACTIONS(1148), + [aux_sym_permit_remote_open_token1] = ACTIONS(1148), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1148), + [aux_sym_port_token1] = ACTIONS(1148), + [aux_sym_preferred_authentications_token1] = ACTIONS(1148), + [aux_sym_protocol_token1] = ACTIONS(1148), + [aux_sym_proxy_command_token1] = ACTIONS(1148), + [aux_sym_proxy_jump_token1] = ACTIONS(1148), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1148), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1148), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1148), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1148), + [aux_sym_rekey_limit_token1] = ACTIONS(1148), + [aux_sym_remote_command_token1] = ACTIONS(1148), + [aux_sym_remote_forward_token1] = ACTIONS(1148), + [aux_sym_request_tty_token1] = ACTIONS(1148), + [aux_sym_required_rsa_size_token1] = ACTIONS(1148), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1148), + [aux_sym_security_key_provider_token1] = ACTIONS(1148), + [aux_sym_send_env_token1] = ACTIONS(1148), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1148), + [aux_sym_server_alive_interval_token1] = ACTIONS(1148), + [aux_sym_session_type_token1] = ACTIONS(1148), + [aux_sym_set_env_token1] = ACTIONS(1148), + [aux_sym_stdin_null_token1] = ACTIONS(1148), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1148), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1148), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1148), + [aux_sym_syslog_facility_token1] = ACTIONS(1148), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1148), + [aux_sym_keep_alive_token1] = ACTIONS(1148), + [aux_sym_tunnel_token1] = ACTIONS(1150), + [aux_sym_tunnel_device_token1] = ACTIONS(1148), + [aux_sym_update_host_keys_token1] = ACTIONS(1148), + [aux_sym_use_keychain_token1] = ACTIONS(1148), + [aux_sym_use_roaming_token1] = ACTIONS(1148), + [aux_sym_user_token1] = ACTIONS(1150), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1148), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1148), + [aux_sym_visual_host_key_token1] = ACTIONS(1148), + [aux_sym_xauth_location_token1] = ACTIONS(1148), }, [102] = { - [ts_builtin_sym_end] = ACTIONS(1149), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1151), - [anon_sym_DQUOTE] = ACTIONS(1153), - [aux_sym_match_token1] = ACTIONS(1149), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1149), - [aux_sym_address_family_token1] = ACTIONS(1149), - [aux_sym_batch_mode_token1] = ACTIONS(1149), - [aux_sym_bind_address_token1] = ACTIONS(1149), - [aux_sym_bind_interface_token1] = ACTIONS(1149), - [aux_sym_canonical_domains_token1] = ACTIONS(1149), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1149), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1149), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1149), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1149), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1149), - [aux_sym_certificate_file_token1] = ACTIONS(1149), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1149), - [aux_sym_check_host_ip_token1] = ACTIONS(1149), - [aux_sym_ciphers_token1] = ACTIONS(1149), - [aux_sym_cipher_token1] = ACTIONS(1151), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1149), - [aux_sym_compression_token1] = ACTIONS(1149), - [aux_sym_connection_attempts_token1] = ACTIONS(1149), - [aux_sym_connect_timeout_token1] = ACTIONS(1149), - [aux_sym_control_master_token1] = ACTIONS(1149), - [aux_sym_control_path_token1] = ACTIONS(1149), - [aux_sym_control_persist_token1] = ACTIONS(1149), - [aux_sym_dynamic_forward_token1] = ACTIONS(1149), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1149), - [aux_sym_escape_char_token1] = ACTIONS(1149), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1149), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1149), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1149), - [aux_sym_forward_agent_token1] = ACTIONS(1149), - [aux_sym_forward_x11_token1] = ACTIONS(1151), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1149), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1149), - [aux_sym_gateway_ports_token1] = ACTIONS(1149), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1149), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1149), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1149), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1149), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1149), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1149), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1149), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1149), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1149), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1149), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1149), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1149), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1149), - [aux_sym_host_key_alias_token1] = ACTIONS(1149), - [aux_sym_hostname_token1] = ACTIONS(1149), - [aux_sym_identities_only_token1] = ACTIONS(1149), - [aux_sym_identity_agent_token1] = ACTIONS(1149), - [aux_sym_identity_file_token1] = ACTIONS(1149), - [aux_sym_ignore_unknown_token1] = ACTIONS(1149), - [aux_sym_include_token1] = ACTIONS(1149), - [aux_sym_ip_qos_token1] = ACTIONS(1149), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1149), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1149), - [aux_sym_kex_algorithms_token1] = ACTIONS(1149), - [aux_sym_known_hosts_command_token1] = ACTIONS(1149), - [aux_sym_local_command_token1] = ACTIONS(1149), - [aux_sym_local_forward_token1] = ACTIONS(1149), - [aux_sym_log_level_token1] = ACTIONS(1149), - [aux_sym_log_verbose_token1] = ACTIONS(1149), - [aux_sym_macs_token1] = ACTIONS(1149), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1149), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1149), - [aux_sym_password_authentication_token1] = ACTIONS(1149), - [aux_sym_permit_local_command_token1] = ACTIONS(1149), - [aux_sym_permit_remote_open_token1] = ACTIONS(1149), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1149), - [aux_sym_port_token1] = ACTIONS(1149), - [aux_sym_preferred_authentications_token1] = ACTIONS(1149), - [aux_sym_protocol_token1] = ACTIONS(1149), - [aux_sym_proxy_command_token1] = ACTIONS(1149), - [aux_sym_proxy_jump_token1] = ACTIONS(1149), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1149), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1149), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1149), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1149), - [aux_sym_rekey_limit_token1] = ACTIONS(1149), - [aux_sym_remote_command_token1] = ACTIONS(1149), - [aux_sym_remote_forward_token1] = ACTIONS(1149), - [aux_sym_request_tty_token1] = ACTIONS(1149), - [aux_sym_required_rsa_size_token1] = ACTIONS(1149), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1149), - [aux_sym_security_key_provider_token1] = ACTIONS(1149), - [aux_sym_send_env_token1] = ACTIONS(1149), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1149), - [aux_sym_server_alive_interval_token1] = ACTIONS(1149), - [aux_sym_session_type_token1] = ACTIONS(1149), - [aux_sym_set_env_token1] = ACTIONS(1149), - [aux_sym_stdin_null_token1] = ACTIONS(1149), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1149), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1149), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1149), - [aux_sym_syslog_facility_token1] = ACTIONS(1149), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1149), - [aux_sym_keep_alive_token1] = ACTIONS(1149), - [aux_sym_tunnel_token1] = ACTIONS(1151), - [aux_sym_tunnel_device_token1] = ACTIONS(1149), - [aux_sym_update_host_keys_token1] = ACTIONS(1149), - [aux_sym_use_keychain_token1] = ACTIONS(1149), - [aux_sym_use_roaming_token1] = ACTIONS(1149), - [aux_sym_user_token1] = ACTIONS(1151), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1149), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1149), - [aux_sym_visual_host_key_token1] = ACTIONS(1149), - [aux_sym_xauth_location_token1] = ACTIONS(1149), + [ts_builtin_sym_end] = ACTIONS(1154), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(1158), + [aux_sym_match_token1] = ACTIONS(1154), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1154), + [aux_sym_address_family_token1] = ACTIONS(1154), + [aux_sym_batch_mode_token1] = ACTIONS(1154), + [aux_sym_bind_address_token1] = ACTIONS(1154), + [aux_sym_bind_interface_token1] = ACTIONS(1154), + [aux_sym_canonical_domains_token1] = ACTIONS(1154), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1154), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1154), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1154), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1154), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1154), + [aux_sym_certificate_file_token1] = ACTIONS(1154), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1154), + [aux_sym_check_host_ip_token1] = ACTIONS(1154), + [aux_sym_ciphers_token1] = ACTIONS(1154), + [aux_sym_cipher_token1] = ACTIONS(1156), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1154), + [aux_sym_compression_token1] = ACTIONS(1154), + [aux_sym_connection_attempts_token1] = ACTIONS(1154), + [aux_sym_connect_timeout_token1] = ACTIONS(1154), + [aux_sym_control_master_token1] = ACTIONS(1154), + [aux_sym_control_path_token1] = ACTIONS(1154), + [aux_sym_control_persist_token1] = ACTIONS(1154), + [aux_sym_dynamic_forward_token1] = ACTIONS(1154), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1154), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1154), + [aux_sym_escape_char_token1] = ACTIONS(1154), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1154), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1154), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1154), + [aux_sym_forward_agent_token1] = ACTIONS(1154), + [aux_sym_forward_x11_token1] = ACTIONS(1156), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1154), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1154), + [aux_sym_gateway_ports_token1] = ACTIONS(1154), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1154), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1154), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1154), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1154), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1154), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1154), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1154), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1154), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1154), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1154), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1154), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1154), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1154), + [aux_sym_host_key_alias_token1] = ACTIONS(1154), + [aux_sym_hostname_token1] = ACTIONS(1154), + [aux_sym_identities_only_token1] = ACTIONS(1154), + [aux_sym_identity_agent_token1] = ACTIONS(1154), + [aux_sym_identity_file_token1] = ACTIONS(1154), + [aux_sym_ignore_unknown_token1] = ACTIONS(1154), + [aux_sym_include_token1] = ACTIONS(1154), + [aux_sym_ip_qos_token1] = ACTIONS(1154), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1154), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1154), + [aux_sym_kex_algorithms_token1] = ACTIONS(1154), + [aux_sym_known_hosts_command_token1] = ACTIONS(1154), + [aux_sym_local_command_token1] = ACTIONS(1154), + [aux_sym_local_forward_token1] = ACTIONS(1154), + [aux_sym_log_level_token1] = ACTIONS(1154), + [aux_sym_log_verbose_token1] = ACTIONS(1154), + [aux_sym_macs_token1] = ACTIONS(1154), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1154), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1154), + [aux_sym_password_authentication_token1] = ACTIONS(1154), + [aux_sym_permit_local_command_token1] = ACTIONS(1154), + [aux_sym_permit_remote_open_token1] = ACTIONS(1154), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1154), + [aux_sym_port_token1] = ACTIONS(1154), + [aux_sym_preferred_authentications_token1] = ACTIONS(1154), + [aux_sym_protocol_token1] = ACTIONS(1154), + [aux_sym_proxy_command_token1] = ACTIONS(1154), + [aux_sym_proxy_jump_token1] = ACTIONS(1154), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1154), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1154), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1154), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1154), + [aux_sym_rekey_limit_token1] = ACTIONS(1154), + [aux_sym_remote_command_token1] = ACTIONS(1154), + [aux_sym_remote_forward_token1] = ACTIONS(1154), + [aux_sym_request_tty_token1] = ACTIONS(1154), + [aux_sym_required_rsa_size_token1] = ACTIONS(1154), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1154), + [aux_sym_security_key_provider_token1] = ACTIONS(1154), + [aux_sym_send_env_token1] = ACTIONS(1154), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1154), + [aux_sym_server_alive_interval_token1] = ACTIONS(1154), + [aux_sym_session_type_token1] = ACTIONS(1154), + [aux_sym_set_env_token1] = ACTIONS(1154), + [aux_sym_stdin_null_token1] = ACTIONS(1154), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1154), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1154), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1154), + [aux_sym_syslog_facility_token1] = ACTIONS(1154), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1154), + [aux_sym_keep_alive_token1] = ACTIONS(1154), + [aux_sym_tunnel_token1] = ACTIONS(1156), + [aux_sym_tunnel_device_token1] = ACTIONS(1154), + [aux_sym_update_host_keys_token1] = ACTIONS(1154), + [aux_sym_use_keychain_token1] = ACTIONS(1154), + [aux_sym_use_roaming_token1] = ACTIONS(1154), + [aux_sym_user_token1] = ACTIONS(1156), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1154), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1154), + [aux_sym_visual_host_key_token1] = ACTIONS(1154), + [aux_sym_xauth_location_token1] = ACTIONS(1154), }, [103] = { - [ts_builtin_sym_end] = ACTIONS(1155), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1157), - [anon_sym_DQUOTE] = ACTIONS(1159), - [aux_sym_match_token1] = ACTIONS(1155), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1155), - [aux_sym_address_family_token1] = ACTIONS(1155), - [aux_sym_batch_mode_token1] = ACTIONS(1155), - [aux_sym_bind_address_token1] = ACTIONS(1155), - [aux_sym_bind_interface_token1] = ACTIONS(1155), - [aux_sym_canonical_domains_token1] = ACTIONS(1155), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1155), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1155), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1155), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1155), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1155), - [aux_sym_certificate_file_token1] = ACTIONS(1155), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1155), - [aux_sym_check_host_ip_token1] = ACTIONS(1155), - [aux_sym_ciphers_token1] = ACTIONS(1155), - [aux_sym_cipher_token1] = ACTIONS(1157), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1155), - [aux_sym_compression_token1] = ACTIONS(1155), - [aux_sym_connection_attempts_token1] = ACTIONS(1155), - [aux_sym_connect_timeout_token1] = ACTIONS(1155), - [aux_sym_control_master_token1] = ACTIONS(1155), - [aux_sym_control_path_token1] = ACTIONS(1155), - [aux_sym_control_persist_token1] = ACTIONS(1155), - [aux_sym_dynamic_forward_token1] = ACTIONS(1155), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1155), - [aux_sym_escape_char_token1] = ACTIONS(1155), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1155), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1155), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1155), - [aux_sym_forward_agent_token1] = ACTIONS(1155), - [aux_sym_forward_x11_token1] = ACTIONS(1157), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1155), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1155), - [aux_sym_gateway_ports_token1] = ACTIONS(1155), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1155), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1155), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1155), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1155), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1155), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1155), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1155), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1155), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1155), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1155), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1155), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1155), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1155), - [aux_sym_host_key_alias_token1] = ACTIONS(1155), - [aux_sym_hostname_token1] = ACTIONS(1155), - [aux_sym_identities_only_token1] = ACTIONS(1155), - [aux_sym_identity_agent_token1] = ACTIONS(1155), - [aux_sym_identity_file_token1] = ACTIONS(1155), - [aux_sym_ignore_unknown_token1] = ACTIONS(1155), - [aux_sym_include_token1] = ACTIONS(1155), - [aux_sym_ip_qos_token1] = ACTIONS(1155), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1155), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1155), - [aux_sym_kex_algorithms_token1] = ACTIONS(1155), - [aux_sym_known_hosts_command_token1] = ACTIONS(1155), - [aux_sym_local_command_token1] = ACTIONS(1155), - [aux_sym_local_forward_token1] = ACTIONS(1155), - [aux_sym_log_level_token1] = ACTIONS(1155), - [aux_sym_log_verbose_token1] = ACTIONS(1155), - [aux_sym_macs_token1] = ACTIONS(1155), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1155), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1155), - [aux_sym_password_authentication_token1] = ACTIONS(1155), - [aux_sym_permit_local_command_token1] = ACTIONS(1155), - [aux_sym_permit_remote_open_token1] = ACTIONS(1155), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1155), - [aux_sym_port_token1] = ACTIONS(1155), - [aux_sym_preferred_authentications_token1] = ACTIONS(1155), - [aux_sym_protocol_token1] = ACTIONS(1155), - [aux_sym_proxy_command_token1] = ACTIONS(1155), - [aux_sym_proxy_jump_token1] = ACTIONS(1155), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1155), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1155), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1155), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1155), - [aux_sym_rekey_limit_token1] = ACTIONS(1155), - [aux_sym_remote_command_token1] = ACTIONS(1155), - [aux_sym_remote_forward_token1] = ACTIONS(1155), - [aux_sym_request_tty_token1] = ACTIONS(1155), - [aux_sym_required_rsa_size_token1] = ACTIONS(1155), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1155), - [aux_sym_security_key_provider_token1] = ACTIONS(1155), - [aux_sym_send_env_token1] = ACTIONS(1155), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1155), - [aux_sym_server_alive_interval_token1] = ACTIONS(1155), - [aux_sym_session_type_token1] = ACTIONS(1155), - [aux_sym_set_env_token1] = ACTIONS(1155), - [aux_sym_stdin_null_token1] = ACTIONS(1155), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1155), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1155), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1155), - [aux_sym_syslog_facility_token1] = ACTIONS(1155), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1155), - [aux_sym_keep_alive_token1] = ACTIONS(1155), - [aux_sym_tunnel_token1] = ACTIONS(1157), - [aux_sym_tunnel_device_token1] = ACTIONS(1155), - [aux_sym_update_host_keys_token1] = ACTIONS(1155), - [aux_sym_use_keychain_token1] = ACTIONS(1155), - [aux_sym_use_roaming_token1] = ACTIONS(1155), - [aux_sym_user_token1] = ACTIONS(1157), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1155), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1155), - [aux_sym_visual_host_key_token1] = ACTIONS(1155), - [aux_sym_xauth_location_token1] = ACTIONS(1155), + [ts_builtin_sym_end] = ACTIONS(1160), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1162), + [anon_sym_DQUOTE] = ACTIONS(1164), + [aux_sym_match_token1] = ACTIONS(1160), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1160), + [aux_sym_address_family_token1] = ACTIONS(1160), + [aux_sym_batch_mode_token1] = ACTIONS(1160), + [aux_sym_bind_address_token1] = ACTIONS(1160), + [aux_sym_bind_interface_token1] = ACTIONS(1160), + [aux_sym_canonical_domains_token1] = ACTIONS(1160), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1160), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1160), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1160), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1160), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1160), + [aux_sym_certificate_file_token1] = ACTIONS(1160), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1160), + [aux_sym_check_host_ip_token1] = ACTIONS(1160), + [aux_sym_ciphers_token1] = ACTIONS(1160), + [aux_sym_cipher_token1] = ACTIONS(1162), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1160), + [aux_sym_compression_token1] = ACTIONS(1160), + [aux_sym_connection_attempts_token1] = ACTIONS(1160), + [aux_sym_connect_timeout_token1] = ACTIONS(1160), + [aux_sym_control_master_token1] = ACTIONS(1160), + [aux_sym_control_path_token1] = ACTIONS(1160), + [aux_sym_control_persist_token1] = ACTIONS(1160), + [aux_sym_dynamic_forward_token1] = ACTIONS(1160), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1160), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1160), + [aux_sym_escape_char_token1] = ACTIONS(1160), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1160), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1160), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1160), + [aux_sym_forward_agent_token1] = ACTIONS(1160), + [aux_sym_forward_x11_token1] = ACTIONS(1162), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1160), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1160), + [aux_sym_gateway_ports_token1] = ACTIONS(1160), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1160), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1160), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1160), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1160), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1160), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1160), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1160), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1160), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1160), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1160), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1160), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1160), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1160), + [aux_sym_host_key_alias_token1] = ACTIONS(1160), + [aux_sym_hostname_token1] = ACTIONS(1160), + [aux_sym_identities_only_token1] = ACTIONS(1160), + [aux_sym_identity_agent_token1] = ACTIONS(1160), + [aux_sym_identity_file_token1] = ACTIONS(1160), + [aux_sym_ignore_unknown_token1] = ACTIONS(1160), + [aux_sym_include_token1] = ACTIONS(1160), + [aux_sym_ip_qos_token1] = ACTIONS(1160), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1160), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1160), + [aux_sym_kex_algorithms_token1] = ACTIONS(1160), + [aux_sym_known_hosts_command_token1] = ACTIONS(1160), + [aux_sym_local_command_token1] = ACTIONS(1160), + [aux_sym_local_forward_token1] = ACTIONS(1160), + [aux_sym_log_level_token1] = ACTIONS(1160), + [aux_sym_log_verbose_token1] = ACTIONS(1160), + [aux_sym_macs_token1] = ACTIONS(1160), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1160), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1160), + [aux_sym_password_authentication_token1] = ACTIONS(1160), + [aux_sym_permit_local_command_token1] = ACTIONS(1160), + [aux_sym_permit_remote_open_token1] = ACTIONS(1160), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1160), + [aux_sym_port_token1] = ACTIONS(1160), + [aux_sym_preferred_authentications_token1] = ACTIONS(1160), + [aux_sym_protocol_token1] = ACTIONS(1160), + [aux_sym_proxy_command_token1] = ACTIONS(1160), + [aux_sym_proxy_jump_token1] = ACTIONS(1160), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1160), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1160), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1160), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1160), + [aux_sym_rekey_limit_token1] = ACTIONS(1160), + [aux_sym_remote_command_token1] = ACTIONS(1160), + [aux_sym_remote_forward_token1] = ACTIONS(1160), + [aux_sym_request_tty_token1] = ACTIONS(1160), + [aux_sym_required_rsa_size_token1] = ACTIONS(1160), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1160), + [aux_sym_security_key_provider_token1] = ACTIONS(1160), + [aux_sym_send_env_token1] = ACTIONS(1160), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1160), + [aux_sym_server_alive_interval_token1] = ACTIONS(1160), + [aux_sym_session_type_token1] = ACTIONS(1160), + [aux_sym_set_env_token1] = ACTIONS(1160), + [aux_sym_stdin_null_token1] = ACTIONS(1160), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1160), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1160), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1160), + [aux_sym_syslog_facility_token1] = ACTIONS(1160), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1160), + [aux_sym_keep_alive_token1] = ACTIONS(1160), + [aux_sym_tunnel_token1] = ACTIONS(1162), + [aux_sym_tunnel_device_token1] = ACTIONS(1160), + [aux_sym_update_host_keys_token1] = ACTIONS(1160), + [aux_sym_use_keychain_token1] = ACTIONS(1160), + [aux_sym_use_roaming_token1] = ACTIONS(1160), + [aux_sym_user_token1] = ACTIONS(1162), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1160), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1160), + [aux_sym_visual_host_key_token1] = ACTIONS(1160), + [aux_sym_xauth_location_token1] = ACTIONS(1160), }, [104] = { - [ts_builtin_sym_end] = ACTIONS(1161), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1163), - [anon_sym_DQUOTE] = ACTIONS(1165), - [aux_sym_match_token1] = ACTIONS(1161), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1161), - [aux_sym_address_family_token1] = ACTIONS(1161), - [aux_sym_batch_mode_token1] = ACTIONS(1161), - [aux_sym_bind_address_token1] = ACTIONS(1161), - [aux_sym_bind_interface_token1] = ACTIONS(1161), - [aux_sym_canonical_domains_token1] = ACTIONS(1161), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1161), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1161), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1161), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1161), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1161), - [aux_sym_certificate_file_token1] = ACTIONS(1161), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1161), - [aux_sym_check_host_ip_token1] = ACTIONS(1161), - [aux_sym_ciphers_token1] = ACTIONS(1161), - [aux_sym_cipher_token1] = ACTIONS(1163), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1161), - [aux_sym_compression_token1] = ACTIONS(1161), - [aux_sym_connection_attempts_token1] = ACTIONS(1161), - [aux_sym_connect_timeout_token1] = ACTIONS(1161), - [aux_sym_control_master_token1] = ACTIONS(1161), - [aux_sym_control_path_token1] = ACTIONS(1161), - [aux_sym_control_persist_token1] = ACTIONS(1161), - [aux_sym_dynamic_forward_token1] = ACTIONS(1161), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1161), - [aux_sym_escape_char_token1] = ACTIONS(1161), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1161), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1161), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1161), - [aux_sym_forward_agent_token1] = ACTIONS(1161), - [aux_sym_forward_x11_token1] = ACTIONS(1163), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1161), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1161), - [aux_sym_gateway_ports_token1] = ACTIONS(1161), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1161), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1161), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1161), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1161), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1161), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1161), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1161), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1161), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1161), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1161), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1161), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1161), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1161), - [aux_sym_host_key_alias_token1] = ACTIONS(1161), - [aux_sym_hostname_token1] = ACTIONS(1161), - [aux_sym_identities_only_token1] = ACTIONS(1161), - [aux_sym_identity_agent_token1] = ACTIONS(1161), - [aux_sym_identity_file_token1] = ACTIONS(1161), - [aux_sym_ignore_unknown_token1] = ACTIONS(1161), - [aux_sym_include_token1] = ACTIONS(1161), - [aux_sym_ip_qos_token1] = ACTIONS(1161), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1161), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1161), - [aux_sym_kex_algorithms_token1] = ACTIONS(1161), - [aux_sym_known_hosts_command_token1] = ACTIONS(1161), - [aux_sym_local_command_token1] = ACTIONS(1161), - [aux_sym_local_forward_token1] = ACTIONS(1161), - [aux_sym_log_level_token1] = ACTIONS(1161), - [aux_sym_log_verbose_token1] = ACTIONS(1161), - [aux_sym_macs_token1] = ACTIONS(1161), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1161), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1161), - [aux_sym_password_authentication_token1] = ACTIONS(1161), - [aux_sym_permit_local_command_token1] = ACTIONS(1161), - [aux_sym_permit_remote_open_token1] = ACTIONS(1161), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1161), - [aux_sym_port_token1] = ACTIONS(1161), - [aux_sym_preferred_authentications_token1] = ACTIONS(1161), - [aux_sym_protocol_token1] = ACTIONS(1161), - [aux_sym_proxy_command_token1] = ACTIONS(1161), - [aux_sym_proxy_jump_token1] = ACTIONS(1161), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1161), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1161), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1161), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1161), - [aux_sym_rekey_limit_token1] = ACTIONS(1161), - [aux_sym_remote_command_token1] = ACTIONS(1161), - [aux_sym_remote_forward_token1] = ACTIONS(1161), - [aux_sym_request_tty_token1] = ACTIONS(1161), - [aux_sym_required_rsa_size_token1] = ACTIONS(1161), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1161), - [aux_sym_security_key_provider_token1] = ACTIONS(1161), - [aux_sym_send_env_token1] = ACTIONS(1161), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1161), - [aux_sym_server_alive_interval_token1] = ACTIONS(1161), - [aux_sym_session_type_token1] = ACTIONS(1161), - [aux_sym_set_env_token1] = ACTIONS(1161), - [aux_sym_stdin_null_token1] = ACTIONS(1161), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1161), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1161), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1161), - [aux_sym_syslog_facility_token1] = ACTIONS(1161), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1161), - [aux_sym_keep_alive_token1] = ACTIONS(1161), - [aux_sym_tunnel_token1] = ACTIONS(1163), - [aux_sym_tunnel_device_token1] = ACTIONS(1161), - [aux_sym_update_host_keys_token1] = ACTIONS(1161), - [aux_sym_use_keychain_token1] = ACTIONS(1161), - [aux_sym_use_roaming_token1] = ACTIONS(1161), - [aux_sym_user_token1] = ACTIONS(1163), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1161), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1161), - [aux_sym_visual_host_key_token1] = ACTIONS(1161), - [aux_sym_xauth_location_token1] = ACTIONS(1161), + [ts_builtin_sym_end] = ACTIONS(1166), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1168), + [anon_sym_DQUOTE] = ACTIONS(1170), + [aux_sym_match_token1] = ACTIONS(1166), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1166), + [aux_sym_address_family_token1] = ACTIONS(1166), + [aux_sym_batch_mode_token1] = ACTIONS(1166), + [aux_sym_bind_address_token1] = ACTIONS(1166), + [aux_sym_bind_interface_token1] = ACTIONS(1166), + [aux_sym_canonical_domains_token1] = ACTIONS(1166), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1166), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1166), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1166), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1166), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1166), + [aux_sym_certificate_file_token1] = ACTIONS(1166), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1166), + [aux_sym_check_host_ip_token1] = ACTIONS(1166), + [aux_sym_ciphers_token1] = ACTIONS(1166), + [aux_sym_cipher_token1] = ACTIONS(1168), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1166), + [aux_sym_compression_token1] = ACTIONS(1166), + [aux_sym_connection_attempts_token1] = ACTIONS(1166), + [aux_sym_connect_timeout_token1] = ACTIONS(1166), + [aux_sym_control_master_token1] = ACTIONS(1166), + [aux_sym_control_path_token1] = ACTIONS(1166), + [aux_sym_control_persist_token1] = ACTIONS(1166), + [aux_sym_dynamic_forward_token1] = ACTIONS(1166), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1166), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1166), + [aux_sym_escape_char_token1] = ACTIONS(1166), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1166), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1166), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1166), + [aux_sym_forward_agent_token1] = ACTIONS(1166), + [aux_sym_forward_x11_token1] = ACTIONS(1168), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1166), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1166), + [aux_sym_gateway_ports_token1] = ACTIONS(1166), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1166), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1166), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1166), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1166), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1166), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1166), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1166), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1166), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1166), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1166), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1166), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1166), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1166), + [aux_sym_host_key_alias_token1] = ACTIONS(1166), + [aux_sym_hostname_token1] = ACTIONS(1166), + [aux_sym_identities_only_token1] = ACTIONS(1166), + [aux_sym_identity_agent_token1] = ACTIONS(1166), + [aux_sym_identity_file_token1] = ACTIONS(1166), + [aux_sym_ignore_unknown_token1] = ACTIONS(1166), + [aux_sym_include_token1] = ACTIONS(1166), + [aux_sym_ip_qos_token1] = ACTIONS(1166), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1166), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1166), + [aux_sym_kex_algorithms_token1] = ACTIONS(1166), + [aux_sym_known_hosts_command_token1] = ACTIONS(1166), + [aux_sym_local_command_token1] = ACTIONS(1166), + [aux_sym_local_forward_token1] = ACTIONS(1166), + [aux_sym_log_level_token1] = ACTIONS(1166), + [aux_sym_log_verbose_token1] = ACTIONS(1166), + [aux_sym_macs_token1] = ACTIONS(1166), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1166), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1166), + [aux_sym_password_authentication_token1] = ACTIONS(1166), + [aux_sym_permit_local_command_token1] = ACTIONS(1166), + [aux_sym_permit_remote_open_token1] = ACTIONS(1166), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1166), + [aux_sym_port_token1] = ACTIONS(1166), + [aux_sym_preferred_authentications_token1] = ACTIONS(1166), + [aux_sym_protocol_token1] = ACTIONS(1166), + [aux_sym_proxy_command_token1] = ACTIONS(1166), + [aux_sym_proxy_jump_token1] = ACTIONS(1166), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1166), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1166), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1166), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1166), + [aux_sym_rekey_limit_token1] = ACTIONS(1166), + [aux_sym_remote_command_token1] = ACTIONS(1166), + [aux_sym_remote_forward_token1] = ACTIONS(1166), + [aux_sym_request_tty_token1] = ACTIONS(1166), + [aux_sym_required_rsa_size_token1] = ACTIONS(1166), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1166), + [aux_sym_security_key_provider_token1] = ACTIONS(1166), + [aux_sym_send_env_token1] = ACTIONS(1166), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1166), + [aux_sym_server_alive_interval_token1] = ACTIONS(1166), + [aux_sym_session_type_token1] = ACTIONS(1166), + [aux_sym_set_env_token1] = ACTIONS(1166), + [aux_sym_stdin_null_token1] = ACTIONS(1166), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1166), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1166), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1166), + [aux_sym_syslog_facility_token1] = ACTIONS(1166), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1166), + [aux_sym_keep_alive_token1] = ACTIONS(1166), + [aux_sym_tunnel_token1] = ACTIONS(1168), + [aux_sym_tunnel_device_token1] = ACTIONS(1166), + [aux_sym_update_host_keys_token1] = ACTIONS(1166), + [aux_sym_use_keychain_token1] = ACTIONS(1166), + [aux_sym_use_roaming_token1] = ACTIONS(1166), + [aux_sym_user_token1] = ACTIONS(1168), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1166), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1166), + [aux_sym_visual_host_key_token1] = ACTIONS(1166), + [aux_sym_xauth_location_token1] = ACTIONS(1166), }, [105] = { - [ts_builtin_sym_end] = ACTIONS(1167), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1169), - [anon_sym_DQUOTE] = ACTIONS(1171), - [aux_sym_match_token1] = ACTIONS(1167), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1167), - [aux_sym_address_family_token1] = ACTIONS(1167), - [aux_sym_batch_mode_token1] = ACTIONS(1167), - [aux_sym_bind_address_token1] = ACTIONS(1167), - [aux_sym_bind_interface_token1] = ACTIONS(1167), - [aux_sym_canonical_domains_token1] = ACTIONS(1167), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1167), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1167), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1167), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1167), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1167), - [aux_sym_certificate_file_token1] = ACTIONS(1167), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1167), - [aux_sym_check_host_ip_token1] = ACTIONS(1167), - [aux_sym_ciphers_token1] = ACTIONS(1167), - [aux_sym_cipher_token1] = ACTIONS(1169), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1167), - [aux_sym_compression_token1] = ACTIONS(1167), - [aux_sym_connection_attempts_token1] = ACTIONS(1167), - [aux_sym_connect_timeout_token1] = ACTIONS(1167), - [aux_sym_control_master_token1] = ACTIONS(1167), - [aux_sym_control_path_token1] = ACTIONS(1167), - [aux_sym_control_persist_token1] = ACTIONS(1167), - [aux_sym_dynamic_forward_token1] = ACTIONS(1167), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1167), - [aux_sym_escape_char_token1] = ACTIONS(1167), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1167), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1167), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1167), - [aux_sym_forward_agent_token1] = ACTIONS(1167), - [aux_sym_forward_x11_token1] = ACTIONS(1169), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1167), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1167), - [aux_sym_gateway_ports_token1] = ACTIONS(1167), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1167), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1167), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1167), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1167), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1167), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1167), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1167), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1167), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1167), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1167), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1167), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1167), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1167), - [aux_sym_host_key_alias_token1] = ACTIONS(1167), - [aux_sym_hostname_token1] = ACTIONS(1167), - [aux_sym_identities_only_token1] = ACTIONS(1167), - [aux_sym_identity_agent_token1] = ACTIONS(1167), - [aux_sym_identity_file_token1] = ACTIONS(1167), - [aux_sym_ignore_unknown_token1] = ACTIONS(1167), - [aux_sym_include_token1] = ACTIONS(1167), - [aux_sym_ip_qos_token1] = ACTIONS(1167), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1167), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1167), - [aux_sym_kex_algorithms_token1] = ACTIONS(1167), - [aux_sym_known_hosts_command_token1] = ACTIONS(1167), - [aux_sym_local_command_token1] = ACTIONS(1167), - [aux_sym_local_forward_token1] = ACTIONS(1167), - [aux_sym_log_level_token1] = ACTIONS(1167), - [aux_sym_log_verbose_token1] = ACTIONS(1167), - [aux_sym_macs_token1] = ACTIONS(1167), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1167), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1167), - [aux_sym_password_authentication_token1] = ACTIONS(1167), - [aux_sym_permit_local_command_token1] = ACTIONS(1167), - [aux_sym_permit_remote_open_token1] = ACTIONS(1167), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1167), - [aux_sym_port_token1] = ACTIONS(1167), - [aux_sym_preferred_authentications_token1] = ACTIONS(1167), - [aux_sym_protocol_token1] = ACTIONS(1167), - [aux_sym_proxy_command_token1] = ACTIONS(1167), - [aux_sym_proxy_jump_token1] = ACTIONS(1167), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1167), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1167), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1167), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1167), - [aux_sym_rekey_limit_token1] = ACTIONS(1167), - [aux_sym_remote_command_token1] = ACTIONS(1167), - [aux_sym_remote_forward_token1] = ACTIONS(1167), - [aux_sym_request_tty_token1] = ACTIONS(1167), - [aux_sym_required_rsa_size_token1] = ACTIONS(1167), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1167), - [aux_sym_security_key_provider_token1] = ACTIONS(1167), - [aux_sym_send_env_token1] = ACTIONS(1167), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1167), - [aux_sym_server_alive_interval_token1] = ACTIONS(1167), - [aux_sym_session_type_token1] = ACTIONS(1167), - [aux_sym_set_env_token1] = ACTIONS(1167), - [aux_sym_stdin_null_token1] = ACTIONS(1167), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1167), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1167), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1167), - [aux_sym_syslog_facility_token1] = ACTIONS(1167), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1167), - [aux_sym_keep_alive_token1] = ACTIONS(1167), - [aux_sym_tunnel_token1] = ACTIONS(1169), - [aux_sym_tunnel_device_token1] = ACTIONS(1167), - [aux_sym_update_host_keys_token1] = ACTIONS(1167), - [aux_sym_use_keychain_token1] = ACTIONS(1167), - [aux_sym_use_roaming_token1] = ACTIONS(1167), - [aux_sym_user_token1] = ACTIONS(1169), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1167), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1167), - [aux_sym_visual_host_key_token1] = ACTIONS(1167), - [aux_sym_xauth_location_token1] = ACTIONS(1167), + [ts_builtin_sym_end] = ACTIONS(1172), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1174), + [anon_sym_DQUOTE] = ACTIONS(1176), + [aux_sym_match_token1] = ACTIONS(1172), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1172), + [aux_sym_address_family_token1] = ACTIONS(1172), + [aux_sym_batch_mode_token1] = ACTIONS(1172), + [aux_sym_bind_address_token1] = ACTIONS(1172), + [aux_sym_bind_interface_token1] = ACTIONS(1172), + [aux_sym_canonical_domains_token1] = ACTIONS(1172), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1172), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1172), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1172), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1172), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1172), + [aux_sym_certificate_file_token1] = ACTIONS(1172), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1172), + [aux_sym_check_host_ip_token1] = ACTIONS(1172), + [aux_sym_ciphers_token1] = ACTIONS(1172), + [aux_sym_cipher_token1] = ACTIONS(1174), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1172), + [aux_sym_compression_token1] = ACTIONS(1172), + [aux_sym_connection_attempts_token1] = ACTIONS(1172), + [aux_sym_connect_timeout_token1] = ACTIONS(1172), + [aux_sym_control_master_token1] = ACTIONS(1172), + [aux_sym_control_path_token1] = ACTIONS(1172), + [aux_sym_control_persist_token1] = ACTIONS(1172), + [aux_sym_dynamic_forward_token1] = ACTIONS(1172), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1172), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1172), + [aux_sym_escape_char_token1] = ACTIONS(1172), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1172), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1172), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1172), + [aux_sym_forward_agent_token1] = ACTIONS(1172), + [aux_sym_forward_x11_token1] = ACTIONS(1174), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1172), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1172), + [aux_sym_gateway_ports_token1] = ACTIONS(1172), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1172), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1172), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1172), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1172), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1172), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1172), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1172), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1172), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1172), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1172), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1172), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1172), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1172), + [aux_sym_host_key_alias_token1] = ACTIONS(1172), + [aux_sym_hostname_token1] = ACTIONS(1172), + [aux_sym_identities_only_token1] = ACTIONS(1172), + [aux_sym_identity_agent_token1] = ACTIONS(1172), + [aux_sym_identity_file_token1] = ACTIONS(1172), + [aux_sym_ignore_unknown_token1] = ACTIONS(1172), + [aux_sym_include_token1] = ACTIONS(1172), + [aux_sym_ip_qos_token1] = ACTIONS(1172), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1172), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1172), + [aux_sym_kex_algorithms_token1] = ACTIONS(1172), + [aux_sym_known_hosts_command_token1] = ACTIONS(1172), + [aux_sym_local_command_token1] = ACTIONS(1172), + [aux_sym_local_forward_token1] = ACTIONS(1172), + [aux_sym_log_level_token1] = ACTIONS(1172), + [aux_sym_log_verbose_token1] = ACTIONS(1172), + [aux_sym_macs_token1] = ACTIONS(1172), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1172), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1172), + [aux_sym_password_authentication_token1] = ACTIONS(1172), + [aux_sym_permit_local_command_token1] = ACTIONS(1172), + [aux_sym_permit_remote_open_token1] = ACTIONS(1172), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1172), + [aux_sym_port_token1] = ACTIONS(1172), + [aux_sym_preferred_authentications_token1] = ACTIONS(1172), + [aux_sym_protocol_token1] = ACTIONS(1172), + [aux_sym_proxy_command_token1] = ACTIONS(1172), + [aux_sym_proxy_jump_token1] = ACTIONS(1172), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1172), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1172), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1172), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1172), + [aux_sym_rekey_limit_token1] = ACTIONS(1172), + [aux_sym_remote_command_token1] = ACTIONS(1172), + [aux_sym_remote_forward_token1] = ACTIONS(1172), + [aux_sym_request_tty_token1] = ACTIONS(1172), + [aux_sym_required_rsa_size_token1] = ACTIONS(1172), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1172), + [aux_sym_security_key_provider_token1] = ACTIONS(1172), + [aux_sym_send_env_token1] = ACTIONS(1172), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1172), + [aux_sym_server_alive_interval_token1] = ACTIONS(1172), + [aux_sym_session_type_token1] = ACTIONS(1172), + [aux_sym_set_env_token1] = ACTIONS(1172), + [aux_sym_stdin_null_token1] = ACTIONS(1172), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1172), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1172), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1172), + [aux_sym_syslog_facility_token1] = ACTIONS(1172), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1172), + [aux_sym_keep_alive_token1] = ACTIONS(1172), + [aux_sym_tunnel_token1] = ACTIONS(1174), + [aux_sym_tunnel_device_token1] = ACTIONS(1172), + [aux_sym_update_host_keys_token1] = ACTIONS(1172), + [aux_sym_use_keychain_token1] = ACTIONS(1172), + [aux_sym_use_roaming_token1] = ACTIONS(1172), + [aux_sym_user_token1] = ACTIONS(1174), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1172), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1172), + [aux_sym_visual_host_key_token1] = ACTIONS(1172), + [aux_sym_xauth_location_token1] = ACTIONS(1172), }, [106] = { - [ts_builtin_sym_end] = ACTIONS(1173), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1175), - [anon_sym_DQUOTE] = ACTIONS(1177), - [aux_sym_match_token1] = ACTIONS(1173), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1173), - [aux_sym_address_family_token1] = ACTIONS(1173), - [aux_sym_batch_mode_token1] = ACTIONS(1173), - [aux_sym_bind_address_token1] = ACTIONS(1173), - [aux_sym_bind_interface_token1] = ACTIONS(1173), - [aux_sym_canonical_domains_token1] = ACTIONS(1173), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1173), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1173), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1173), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1173), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1173), - [aux_sym_certificate_file_token1] = ACTIONS(1173), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1173), - [aux_sym_check_host_ip_token1] = ACTIONS(1173), - [aux_sym_ciphers_token1] = ACTIONS(1173), - [aux_sym_cipher_token1] = ACTIONS(1175), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1173), - [aux_sym_compression_token1] = ACTIONS(1173), - [aux_sym_connection_attempts_token1] = ACTIONS(1173), - [aux_sym_connect_timeout_token1] = ACTIONS(1173), - [aux_sym_control_master_token1] = ACTIONS(1173), - [aux_sym_control_path_token1] = ACTIONS(1173), - [aux_sym_control_persist_token1] = ACTIONS(1173), - [aux_sym_dynamic_forward_token1] = ACTIONS(1173), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1173), - [aux_sym_escape_char_token1] = ACTIONS(1173), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1173), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1173), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1173), - [aux_sym_forward_agent_token1] = ACTIONS(1173), - [aux_sym_forward_x11_token1] = ACTIONS(1175), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1173), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1173), - [aux_sym_gateway_ports_token1] = ACTIONS(1173), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1173), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1173), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1173), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1173), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1173), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1173), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1173), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1173), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1173), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1173), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1173), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1173), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1173), - [aux_sym_host_key_alias_token1] = ACTIONS(1173), - [aux_sym_hostname_token1] = ACTIONS(1173), - [aux_sym_identities_only_token1] = ACTIONS(1173), - [aux_sym_identity_agent_token1] = ACTIONS(1173), - [aux_sym_identity_file_token1] = ACTIONS(1173), - [aux_sym_ignore_unknown_token1] = ACTIONS(1173), - [aux_sym_include_token1] = ACTIONS(1173), - [aux_sym_ip_qos_token1] = ACTIONS(1173), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1173), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1173), - [aux_sym_kex_algorithms_token1] = ACTIONS(1173), - [aux_sym_known_hosts_command_token1] = ACTIONS(1173), - [aux_sym_local_command_token1] = ACTIONS(1173), - [aux_sym_local_forward_token1] = ACTIONS(1173), - [aux_sym_log_level_token1] = ACTIONS(1173), - [aux_sym_log_verbose_token1] = ACTIONS(1173), - [aux_sym_macs_token1] = ACTIONS(1173), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1173), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1173), - [aux_sym_password_authentication_token1] = ACTIONS(1173), - [aux_sym_permit_local_command_token1] = ACTIONS(1173), - [aux_sym_permit_remote_open_token1] = ACTIONS(1173), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1173), - [aux_sym_port_token1] = ACTIONS(1173), - [aux_sym_preferred_authentications_token1] = ACTIONS(1173), - [aux_sym_protocol_token1] = ACTIONS(1173), - [aux_sym_proxy_command_token1] = ACTIONS(1173), - [aux_sym_proxy_jump_token1] = ACTIONS(1173), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1173), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1173), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1173), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1173), - [aux_sym_rekey_limit_token1] = ACTIONS(1173), - [aux_sym_remote_command_token1] = ACTIONS(1173), - [aux_sym_remote_forward_token1] = ACTIONS(1173), - [aux_sym_request_tty_token1] = ACTIONS(1173), - [aux_sym_required_rsa_size_token1] = ACTIONS(1173), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1173), - [aux_sym_security_key_provider_token1] = ACTIONS(1173), - [aux_sym_send_env_token1] = ACTIONS(1173), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1173), - [aux_sym_server_alive_interval_token1] = ACTIONS(1173), - [aux_sym_session_type_token1] = ACTIONS(1173), - [aux_sym_set_env_token1] = ACTIONS(1173), - [aux_sym_stdin_null_token1] = ACTIONS(1173), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1173), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1173), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1173), - [aux_sym_syslog_facility_token1] = ACTIONS(1173), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1173), - [aux_sym_keep_alive_token1] = ACTIONS(1173), - [aux_sym_tunnel_token1] = ACTIONS(1175), - [aux_sym_tunnel_device_token1] = ACTIONS(1173), - [aux_sym_update_host_keys_token1] = ACTIONS(1173), - [aux_sym_use_keychain_token1] = ACTIONS(1173), - [aux_sym_use_roaming_token1] = ACTIONS(1173), - [aux_sym_user_token1] = ACTIONS(1175), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1173), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1173), - [aux_sym_visual_host_key_token1] = ACTIONS(1173), - [aux_sym_xauth_location_token1] = ACTIONS(1173), + [ts_builtin_sym_end] = ACTIONS(1178), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1182), + [aux_sym_match_token1] = ACTIONS(1178), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1178), + [aux_sym_address_family_token1] = ACTIONS(1178), + [aux_sym_batch_mode_token1] = ACTIONS(1178), + [aux_sym_bind_address_token1] = ACTIONS(1178), + [aux_sym_bind_interface_token1] = ACTIONS(1178), + [aux_sym_canonical_domains_token1] = ACTIONS(1178), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1178), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1178), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1178), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1178), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1178), + [aux_sym_certificate_file_token1] = ACTIONS(1178), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1178), + [aux_sym_check_host_ip_token1] = ACTIONS(1178), + [aux_sym_ciphers_token1] = ACTIONS(1178), + [aux_sym_cipher_token1] = ACTIONS(1180), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1178), + [aux_sym_compression_token1] = ACTIONS(1178), + [aux_sym_connection_attempts_token1] = ACTIONS(1178), + [aux_sym_connect_timeout_token1] = ACTIONS(1178), + [aux_sym_control_master_token1] = ACTIONS(1178), + [aux_sym_control_path_token1] = ACTIONS(1178), + [aux_sym_control_persist_token1] = ACTIONS(1178), + [aux_sym_dynamic_forward_token1] = ACTIONS(1178), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1178), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1178), + [aux_sym_escape_char_token1] = ACTIONS(1178), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1178), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1178), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1178), + [aux_sym_forward_agent_token1] = ACTIONS(1178), + [aux_sym_forward_x11_token1] = ACTIONS(1180), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1178), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1178), + [aux_sym_gateway_ports_token1] = ACTIONS(1178), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1178), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1178), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1178), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1178), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1178), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1178), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1178), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1178), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1178), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1178), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1178), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1178), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1178), + [aux_sym_host_key_alias_token1] = ACTIONS(1178), + [aux_sym_hostname_token1] = ACTIONS(1178), + [aux_sym_identities_only_token1] = ACTIONS(1178), + [aux_sym_identity_agent_token1] = ACTIONS(1178), + [aux_sym_identity_file_token1] = ACTIONS(1178), + [aux_sym_ignore_unknown_token1] = ACTIONS(1178), + [aux_sym_include_token1] = ACTIONS(1178), + [aux_sym_ip_qos_token1] = ACTIONS(1178), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1178), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1178), + [aux_sym_kex_algorithms_token1] = ACTIONS(1178), + [aux_sym_known_hosts_command_token1] = ACTIONS(1178), + [aux_sym_local_command_token1] = ACTIONS(1178), + [aux_sym_local_forward_token1] = ACTIONS(1178), + [aux_sym_log_level_token1] = ACTIONS(1178), + [aux_sym_log_verbose_token1] = ACTIONS(1178), + [aux_sym_macs_token1] = ACTIONS(1178), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1178), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1178), + [aux_sym_password_authentication_token1] = ACTIONS(1178), + [aux_sym_permit_local_command_token1] = ACTIONS(1178), + [aux_sym_permit_remote_open_token1] = ACTIONS(1178), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1178), + [aux_sym_port_token1] = ACTIONS(1178), + [aux_sym_preferred_authentications_token1] = ACTIONS(1178), + [aux_sym_protocol_token1] = ACTIONS(1178), + [aux_sym_proxy_command_token1] = ACTIONS(1178), + [aux_sym_proxy_jump_token1] = ACTIONS(1178), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1178), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1178), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1178), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1178), + [aux_sym_rekey_limit_token1] = ACTIONS(1178), + [aux_sym_remote_command_token1] = ACTIONS(1178), + [aux_sym_remote_forward_token1] = ACTIONS(1178), + [aux_sym_request_tty_token1] = ACTIONS(1178), + [aux_sym_required_rsa_size_token1] = ACTIONS(1178), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1178), + [aux_sym_security_key_provider_token1] = ACTIONS(1178), + [aux_sym_send_env_token1] = ACTIONS(1178), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1178), + [aux_sym_server_alive_interval_token1] = ACTIONS(1178), + [aux_sym_session_type_token1] = ACTIONS(1178), + [aux_sym_set_env_token1] = ACTIONS(1178), + [aux_sym_stdin_null_token1] = ACTIONS(1178), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1178), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1178), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1178), + [aux_sym_syslog_facility_token1] = ACTIONS(1178), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1178), + [aux_sym_keep_alive_token1] = ACTIONS(1178), + [aux_sym_tunnel_token1] = ACTIONS(1180), + [aux_sym_tunnel_device_token1] = ACTIONS(1178), + [aux_sym_update_host_keys_token1] = ACTIONS(1178), + [aux_sym_use_keychain_token1] = ACTIONS(1178), + [aux_sym_use_roaming_token1] = ACTIONS(1178), + [aux_sym_user_token1] = ACTIONS(1180), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1178), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1178), + [aux_sym_visual_host_key_token1] = ACTIONS(1178), + [aux_sym_xauth_location_token1] = ACTIONS(1178), }, [107] = { - [ts_builtin_sym_end] = ACTIONS(1179), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1181), - [anon_sym_DQUOTE] = ACTIONS(1183), - [aux_sym_match_token1] = ACTIONS(1179), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1179), - [aux_sym_address_family_token1] = ACTIONS(1179), - [aux_sym_batch_mode_token1] = ACTIONS(1179), - [aux_sym_bind_address_token1] = ACTIONS(1179), - [aux_sym_bind_interface_token1] = ACTIONS(1179), - [aux_sym_canonical_domains_token1] = ACTIONS(1179), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1179), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1179), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1179), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1179), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1179), - [aux_sym_certificate_file_token1] = ACTIONS(1179), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1179), - [aux_sym_check_host_ip_token1] = ACTIONS(1179), - [aux_sym_ciphers_token1] = ACTIONS(1179), - [aux_sym_cipher_token1] = ACTIONS(1181), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1179), - [aux_sym_compression_token1] = ACTIONS(1179), - [aux_sym_connection_attempts_token1] = ACTIONS(1179), - [aux_sym_connect_timeout_token1] = ACTIONS(1179), - [aux_sym_control_master_token1] = ACTIONS(1179), - [aux_sym_control_path_token1] = ACTIONS(1179), - [aux_sym_control_persist_token1] = ACTIONS(1179), - [aux_sym_dynamic_forward_token1] = ACTIONS(1179), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1179), - [aux_sym_escape_char_token1] = ACTIONS(1179), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1179), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1179), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1179), - [aux_sym_forward_agent_token1] = ACTIONS(1179), - [aux_sym_forward_x11_token1] = ACTIONS(1181), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1179), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1179), - [aux_sym_gateway_ports_token1] = ACTIONS(1179), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1179), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1179), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1179), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1179), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1179), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1179), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1179), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1179), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1179), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1179), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1179), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1179), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1179), - [aux_sym_host_key_alias_token1] = ACTIONS(1179), - [aux_sym_hostname_token1] = ACTIONS(1179), - [aux_sym_identities_only_token1] = ACTIONS(1179), - [aux_sym_identity_agent_token1] = ACTIONS(1179), - [aux_sym_identity_file_token1] = ACTIONS(1179), - [aux_sym_ignore_unknown_token1] = ACTIONS(1179), - [aux_sym_include_token1] = ACTIONS(1179), - [aux_sym_ip_qos_token1] = ACTIONS(1179), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1179), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1179), - [aux_sym_kex_algorithms_token1] = ACTIONS(1179), - [aux_sym_known_hosts_command_token1] = ACTIONS(1179), - [aux_sym_local_command_token1] = ACTIONS(1179), - [aux_sym_local_forward_token1] = ACTIONS(1179), - [aux_sym_log_level_token1] = ACTIONS(1179), - [aux_sym_log_verbose_token1] = ACTIONS(1179), - [aux_sym_macs_token1] = ACTIONS(1179), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1179), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1179), - [aux_sym_password_authentication_token1] = ACTIONS(1179), - [aux_sym_permit_local_command_token1] = ACTIONS(1179), - [aux_sym_permit_remote_open_token1] = ACTIONS(1179), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1179), - [aux_sym_port_token1] = ACTIONS(1179), - [aux_sym_preferred_authentications_token1] = ACTIONS(1179), - [aux_sym_protocol_token1] = ACTIONS(1179), - [aux_sym_proxy_command_token1] = ACTIONS(1179), - [aux_sym_proxy_jump_token1] = ACTIONS(1179), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1179), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1179), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1179), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1179), - [aux_sym_rekey_limit_token1] = ACTIONS(1179), - [aux_sym_remote_command_token1] = ACTIONS(1179), - [aux_sym_remote_forward_token1] = ACTIONS(1179), - [aux_sym_request_tty_token1] = ACTIONS(1179), - [aux_sym_required_rsa_size_token1] = ACTIONS(1179), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1179), - [aux_sym_security_key_provider_token1] = ACTIONS(1179), - [aux_sym_send_env_token1] = ACTIONS(1179), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1179), - [aux_sym_server_alive_interval_token1] = ACTIONS(1179), - [aux_sym_session_type_token1] = ACTIONS(1179), - [aux_sym_set_env_token1] = ACTIONS(1179), - [aux_sym_stdin_null_token1] = ACTIONS(1179), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1179), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1179), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1179), - [aux_sym_syslog_facility_token1] = ACTIONS(1179), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1179), - [aux_sym_keep_alive_token1] = ACTIONS(1179), - [aux_sym_tunnel_token1] = ACTIONS(1181), - [aux_sym_tunnel_device_token1] = ACTIONS(1179), - [aux_sym_update_host_keys_token1] = ACTIONS(1179), - [aux_sym_use_keychain_token1] = ACTIONS(1179), - [aux_sym_use_roaming_token1] = ACTIONS(1179), - [aux_sym_user_token1] = ACTIONS(1181), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1179), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1179), - [aux_sym_visual_host_key_token1] = ACTIONS(1179), - [aux_sym_xauth_location_token1] = ACTIONS(1179), + [ts_builtin_sym_end] = ACTIONS(1184), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1186), + [anon_sym_DQUOTE] = ACTIONS(1188), + [aux_sym_match_token1] = ACTIONS(1184), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1184), + [aux_sym_address_family_token1] = ACTIONS(1184), + [aux_sym_batch_mode_token1] = ACTIONS(1184), + [aux_sym_bind_address_token1] = ACTIONS(1184), + [aux_sym_bind_interface_token1] = ACTIONS(1184), + [aux_sym_canonical_domains_token1] = ACTIONS(1184), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1184), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1184), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1184), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1184), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1184), + [aux_sym_certificate_file_token1] = ACTIONS(1184), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1184), + [aux_sym_check_host_ip_token1] = ACTIONS(1184), + [aux_sym_ciphers_token1] = ACTIONS(1184), + [aux_sym_cipher_token1] = ACTIONS(1186), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1184), + [aux_sym_compression_token1] = ACTIONS(1184), + [aux_sym_connection_attempts_token1] = ACTIONS(1184), + [aux_sym_connect_timeout_token1] = ACTIONS(1184), + [aux_sym_control_master_token1] = ACTIONS(1184), + [aux_sym_control_path_token1] = ACTIONS(1184), + [aux_sym_control_persist_token1] = ACTIONS(1184), + [aux_sym_dynamic_forward_token1] = ACTIONS(1184), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1184), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1184), + [aux_sym_escape_char_token1] = ACTIONS(1184), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1184), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1184), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1184), + [aux_sym_forward_agent_token1] = ACTIONS(1184), + [aux_sym_forward_x11_token1] = ACTIONS(1186), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1184), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1184), + [aux_sym_gateway_ports_token1] = ACTIONS(1184), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1184), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1184), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1184), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1184), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1184), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1184), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1184), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1184), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1184), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1184), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1184), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1184), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1184), + [aux_sym_host_key_alias_token1] = ACTIONS(1184), + [aux_sym_hostname_token1] = ACTIONS(1184), + [aux_sym_identities_only_token1] = ACTIONS(1184), + [aux_sym_identity_agent_token1] = ACTIONS(1184), + [aux_sym_identity_file_token1] = ACTIONS(1184), + [aux_sym_ignore_unknown_token1] = ACTIONS(1184), + [aux_sym_include_token1] = ACTIONS(1184), + [aux_sym_ip_qos_token1] = ACTIONS(1184), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1184), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1184), + [aux_sym_kex_algorithms_token1] = ACTIONS(1184), + [aux_sym_known_hosts_command_token1] = ACTIONS(1184), + [aux_sym_local_command_token1] = ACTIONS(1184), + [aux_sym_local_forward_token1] = ACTIONS(1184), + [aux_sym_log_level_token1] = ACTIONS(1184), + [aux_sym_log_verbose_token1] = ACTIONS(1184), + [aux_sym_macs_token1] = ACTIONS(1184), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1184), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1184), + [aux_sym_password_authentication_token1] = ACTIONS(1184), + [aux_sym_permit_local_command_token1] = ACTIONS(1184), + [aux_sym_permit_remote_open_token1] = ACTIONS(1184), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1184), + [aux_sym_port_token1] = ACTIONS(1184), + [aux_sym_preferred_authentications_token1] = ACTIONS(1184), + [aux_sym_protocol_token1] = ACTIONS(1184), + [aux_sym_proxy_command_token1] = ACTIONS(1184), + [aux_sym_proxy_jump_token1] = ACTIONS(1184), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1184), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1184), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1184), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1184), + [aux_sym_rekey_limit_token1] = ACTIONS(1184), + [aux_sym_remote_command_token1] = ACTIONS(1184), + [aux_sym_remote_forward_token1] = ACTIONS(1184), + [aux_sym_request_tty_token1] = ACTIONS(1184), + [aux_sym_required_rsa_size_token1] = ACTIONS(1184), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1184), + [aux_sym_security_key_provider_token1] = ACTIONS(1184), + [aux_sym_send_env_token1] = ACTIONS(1184), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1184), + [aux_sym_server_alive_interval_token1] = ACTIONS(1184), + [aux_sym_session_type_token1] = ACTIONS(1184), + [aux_sym_set_env_token1] = ACTIONS(1184), + [aux_sym_stdin_null_token1] = ACTIONS(1184), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1184), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1184), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1184), + [aux_sym_syslog_facility_token1] = ACTIONS(1184), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1184), + [aux_sym_keep_alive_token1] = ACTIONS(1184), + [aux_sym_tunnel_token1] = ACTIONS(1186), + [aux_sym_tunnel_device_token1] = ACTIONS(1184), + [aux_sym_update_host_keys_token1] = ACTIONS(1184), + [aux_sym_use_keychain_token1] = ACTIONS(1184), + [aux_sym_use_roaming_token1] = ACTIONS(1184), + [aux_sym_user_token1] = ACTIONS(1186), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1184), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1184), + [aux_sym_visual_host_key_token1] = ACTIONS(1184), + [aux_sym_xauth_location_token1] = ACTIONS(1184), }, [108] = { - [ts_builtin_sym_end] = ACTIONS(1185), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1187), - [anon_sym_DQUOTE] = ACTIONS(1189), - [aux_sym_match_token1] = ACTIONS(1185), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1185), - [aux_sym_address_family_token1] = ACTIONS(1185), - [aux_sym_batch_mode_token1] = ACTIONS(1185), - [aux_sym_bind_address_token1] = ACTIONS(1185), - [aux_sym_bind_interface_token1] = ACTIONS(1185), - [aux_sym_canonical_domains_token1] = ACTIONS(1185), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1185), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1185), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1185), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1185), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1185), - [aux_sym_certificate_file_token1] = ACTIONS(1185), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1185), - [aux_sym_check_host_ip_token1] = ACTIONS(1185), - [aux_sym_ciphers_token1] = ACTIONS(1185), - [aux_sym_cipher_token1] = ACTIONS(1187), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1185), - [aux_sym_compression_token1] = ACTIONS(1185), - [aux_sym_connection_attempts_token1] = ACTIONS(1185), - [aux_sym_connect_timeout_token1] = ACTIONS(1185), - [aux_sym_control_master_token1] = ACTIONS(1185), - [aux_sym_control_path_token1] = ACTIONS(1185), - [aux_sym_control_persist_token1] = ACTIONS(1185), - [aux_sym_dynamic_forward_token1] = ACTIONS(1185), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1185), - [aux_sym_escape_char_token1] = ACTIONS(1185), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1185), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1185), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1185), - [aux_sym_forward_agent_token1] = ACTIONS(1185), - [aux_sym_forward_x11_token1] = ACTIONS(1187), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1185), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1185), - [aux_sym_gateway_ports_token1] = ACTIONS(1185), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1185), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1185), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1185), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1185), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1185), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1185), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1185), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1185), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1185), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1185), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1185), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1185), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1185), - [aux_sym_host_key_alias_token1] = ACTIONS(1185), - [aux_sym_hostname_token1] = ACTIONS(1185), - [aux_sym_identities_only_token1] = ACTIONS(1185), - [aux_sym_identity_agent_token1] = ACTIONS(1185), - [aux_sym_identity_file_token1] = ACTIONS(1185), - [aux_sym_ignore_unknown_token1] = ACTIONS(1185), - [aux_sym_include_token1] = ACTIONS(1185), - [aux_sym_ip_qos_token1] = ACTIONS(1185), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1185), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1185), - [aux_sym_kex_algorithms_token1] = ACTIONS(1185), - [aux_sym_known_hosts_command_token1] = ACTIONS(1185), - [aux_sym_local_command_token1] = ACTIONS(1185), - [aux_sym_local_forward_token1] = ACTIONS(1185), - [aux_sym_log_level_token1] = ACTIONS(1185), - [aux_sym_log_verbose_token1] = ACTIONS(1185), - [aux_sym_macs_token1] = ACTIONS(1185), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1185), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1185), - [aux_sym_password_authentication_token1] = ACTIONS(1185), - [aux_sym_permit_local_command_token1] = ACTIONS(1185), - [aux_sym_permit_remote_open_token1] = ACTIONS(1185), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1185), - [aux_sym_port_token1] = ACTIONS(1185), - [aux_sym_preferred_authentications_token1] = ACTIONS(1185), - [aux_sym_protocol_token1] = ACTIONS(1185), - [aux_sym_proxy_command_token1] = ACTIONS(1185), - [aux_sym_proxy_jump_token1] = ACTIONS(1185), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1185), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1185), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1185), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1185), - [aux_sym_rekey_limit_token1] = ACTIONS(1185), - [aux_sym_remote_command_token1] = ACTIONS(1185), - [aux_sym_remote_forward_token1] = ACTIONS(1185), - [aux_sym_request_tty_token1] = ACTIONS(1185), - [aux_sym_required_rsa_size_token1] = ACTIONS(1185), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1185), - [aux_sym_security_key_provider_token1] = ACTIONS(1185), - [aux_sym_send_env_token1] = ACTIONS(1185), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1185), - [aux_sym_server_alive_interval_token1] = ACTIONS(1185), - [aux_sym_session_type_token1] = ACTIONS(1185), - [aux_sym_set_env_token1] = ACTIONS(1185), - [aux_sym_stdin_null_token1] = ACTIONS(1185), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1185), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1185), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1185), - [aux_sym_syslog_facility_token1] = ACTIONS(1185), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1185), - [aux_sym_keep_alive_token1] = ACTIONS(1185), - [aux_sym_tunnel_token1] = ACTIONS(1187), - [aux_sym_tunnel_device_token1] = ACTIONS(1185), - [aux_sym_update_host_keys_token1] = ACTIONS(1185), - [aux_sym_use_keychain_token1] = ACTIONS(1185), - [aux_sym_use_roaming_token1] = ACTIONS(1185), - [aux_sym_user_token1] = ACTIONS(1187), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1185), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1185), - [aux_sym_visual_host_key_token1] = ACTIONS(1185), - [aux_sym_xauth_location_token1] = ACTIONS(1185), + [ts_builtin_sym_end] = ACTIONS(1190), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1194), + [aux_sym_match_token1] = ACTIONS(1190), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1190), + [aux_sym_address_family_token1] = ACTIONS(1190), + [aux_sym_batch_mode_token1] = ACTIONS(1190), + [aux_sym_bind_address_token1] = ACTIONS(1190), + [aux_sym_bind_interface_token1] = ACTIONS(1190), + [aux_sym_canonical_domains_token1] = ACTIONS(1190), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1190), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1190), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1190), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1190), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1190), + [aux_sym_certificate_file_token1] = ACTIONS(1190), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1190), + [aux_sym_check_host_ip_token1] = ACTIONS(1190), + [aux_sym_ciphers_token1] = ACTIONS(1190), + [aux_sym_cipher_token1] = ACTIONS(1192), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1190), + [aux_sym_compression_token1] = ACTIONS(1190), + [aux_sym_connection_attempts_token1] = ACTIONS(1190), + [aux_sym_connect_timeout_token1] = ACTIONS(1190), + [aux_sym_control_master_token1] = ACTIONS(1190), + [aux_sym_control_path_token1] = ACTIONS(1190), + [aux_sym_control_persist_token1] = ACTIONS(1190), + [aux_sym_dynamic_forward_token1] = ACTIONS(1190), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1190), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1190), + [aux_sym_escape_char_token1] = ACTIONS(1190), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1190), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1190), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1190), + [aux_sym_forward_agent_token1] = ACTIONS(1190), + [aux_sym_forward_x11_token1] = ACTIONS(1192), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1190), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1190), + [aux_sym_gateway_ports_token1] = ACTIONS(1190), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1190), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1190), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1190), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1190), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1190), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1190), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1190), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1190), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1190), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1190), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1190), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1190), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1190), + [aux_sym_host_key_alias_token1] = ACTIONS(1190), + [aux_sym_hostname_token1] = ACTIONS(1190), + [aux_sym_identities_only_token1] = ACTIONS(1190), + [aux_sym_identity_agent_token1] = ACTIONS(1190), + [aux_sym_identity_file_token1] = ACTIONS(1190), + [aux_sym_ignore_unknown_token1] = ACTIONS(1190), + [aux_sym_include_token1] = ACTIONS(1190), + [aux_sym_ip_qos_token1] = ACTIONS(1190), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1190), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1190), + [aux_sym_kex_algorithms_token1] = ACTIONS(1190), + [aux_sym_known_hosts_command_token1] = ACTIONS(1190), + [aux_sym_local_command_token1] = ACTIONS(1190), + [aux_sym_local_forward_token1] = ACTIONS(1190), + [aux_sym_log_level_token1] = ACTIONS(1190), + [aux_sym_log_verbose_token1] = ACTIONS(1190), + [aux_sym_macs_token1] = ACTIONS(1190), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1190), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1190), + [aux_sym_password_authentication_token1] = ACTIONS(1190), + [aux_sym_permit_local_command_token1] = ACTIONS(1190), + [aux_sym_permit_remote_open_token1] = ACTIONS(1190), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1190), + [aux_sym_port_token1] = ACTIONS(1190), + [aux_sym_preferred_authentications_token1] = ACTIONS(1190), + [aux_sym_protocol_token1] = ACTIONS(1190), + [aux_sym_proxy_command_token1] = ACTIONS(1190), + [aux_sym_proxy_jump_token1] = ACTIONS(1190), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1190), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1190), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1190), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1190), + [aux_sym_rekey_limit_token1] = ACTIONS(1190), + [aux_sym_remote_command_token1] = ACTIONS(1190), + [aux_sym_remote_forward_token1] = ACTIONS(1190), + [aux_sym_request_tty_token1] = ACTIONS(1190), + [aux_sym_required_rsa_size_token1] = ACTIONS(1190), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1190), + [aux_sym_security_key_provider_token1] = ACTIONS(1190), + [aux_sym_send_env_token1] = ACTIONS(1190), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1190), + [aux_sym_server_alive_interval_token1] = ACTIONS(1190), + [aux_sym_session_type_token1] = ACTIONS(1190), + [aux_sym_set_env_token1] = ACTIONS(1190), + [aux_sym_stdin_null_token1] = ACTIONS(1190), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1190), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1190), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1190), + [aux_sym_syslog_facility_token1] = ACTIONS(1190), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1190), + [aux_sym_keep_alive_token1] = ACTIONS(1190), + [aux_sym_tunnel_token1] = ACTIONS(1192), + [aux_sym_tunnel_device_token1] = ACTIONS(1190), + [aux_sym_update_host_keys_token1] = ACTIONS(1190), + [aux_sym_use_keychain_token1] = ACTIONS(1190), + [aux_sym_use_roaming_token1] = ACTIONS(1190), + [aux_sym_user_token1] = ACTIONS(1192), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1190), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1190), + [aux_sym_visual_host_key_token1] = ACTIONS(1190), + [aux_sym_xauth_location_token1] = ACTIONS(1190), }, [109] = { - [ts_builtin_sym_end] = ACTIONS(1191), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1195), - [aux_sym_match_token1] = ACTIONS(1191), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1191), - [aux_sym_address_family_token1] = ACTIONS(1191), - [aux_sym_batch_mode_token1] = ACTIONS(1191), - [aux_sym_bind_address_token1] = ACTIONS(1191), - [aux_sym_bind_interface_token1] = ACTIONS(1191), - [aux_sym_canonical_domains_token1] = ACTIONS(1191), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1191), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1191), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1191), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1191), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1191), - [aux_sym_certificate_file_token1] = ACTIONS(1191), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1191), - [aux_sym_check_host_ip_token1] = ACTIONS(1191), - [aux_sym_ciphers_token1] = ACTIONS(1191), - [aux_sym_cipher_token1] = ACTIONS(1193), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1191), - [aux_sym_compression_token1] = ACTIONS(1191), - [aux_sym_connection_attempts_token1] = ACTIONS(1191), - [aux_sym_connect_timeout_token1] = ACTIONS(1191), - [aux_sym_control_master_token1] = ACTIONS(1191), - [aux_sym_control_path_token1] = ACTIONS(1191), - [aux_sym_control_persist_token1] = ACTIONS(1191), - [aux_sym_dynamic_forward_token1] = ACTIONS(1191), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1191), - [aux_sym_escape_char_token1] = ACTIONS(1191), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1191), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1191), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1191), - [aux_sym_forward_agent_token1] = ACTIONS(1191), - [aux_sym_forward_x11_token1] = ACTIONS(1193), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1191), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1191), - [aux_sym_gateway_ports_token1] = ACTIONS(1191), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1191), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1191), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1191), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1191), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1191), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1191), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1191), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1191), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1191), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1191), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1191), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1191), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1191), - [aux_sym_host_key_alias_token1] = ACTIONS(1191), - [aux_sym_hostname_token1] = ACTIONS(1191), - [aux_sym_identities_only_token1] = ACTIONS(1191), - [aux_sym_identity_agent_token1] = ACTIONS(1191), - [aux_sym_identity_file_token1] = ACTIONS(1191), - [aux_sym_ignore_unknown_token1] = ACTIONS(1191), - [aux_sym_include_token1] = ACTIONS(1191), - [aux_sym_ip_qos_token1] = ACTIONS(1191), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1191), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1191), - [aux_sym_kex_algorithms_token1] = ACTIONS(1191), - [aux_sym_known_hosts_command_token1] = ACTIONS(1191), - [aux_sym_local_command_token1] = ACTIONS(1191), - [aux_sym_local_forward_token1] = ACTIONS(1191), - [aux_sym_log_level_token1] = ACTIONS(1191), - [aux_sym_log_verbose_token1] = ACTIONS(1191), - [aux_sym_macs_token1] = ACTIONS(1191), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1191), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1191), - [aux_sym_password_authentication_token1] = ACTIONS(1191), - [aux_sym_permit_local_command_token1] = ACTIONS(1191), - [aux_sym_permit_remote_open_token1] = ACTIONS(1191), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1191), - [aux_sym_port_token1] = ACTIONS(1191), - [aux_sym_preferred_authentications_token1] = ACTIONS(1191), - [aux_sym_protocol_token1] = ACTIONS(1191), - [aux_sym_proxy_command_token1] = ACTIONS(1191), - [aux_sym_proxy_jump_token1] = ACTIONS(1191), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1191), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1191), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1191), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1191), - [aux_sym_rekey_limit_token1] = ACTIONS(1191), - [aux_sym_remote_command_token1] = ACTIONS(1191), - [aux_sym_remote_forward_token1] = ACTIONS(1191), - [aux_sym_request_tty_token1] = ACTIONS(1191), - [aux_sym_required_rsa_size_token1] = ACTIONS(1191), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1191), - [aux_sym_security_key_provider_token1] = ACTIONS(1191), - [aux_sym_send_env_token1] = ACTIONS(1191), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1191), - [aux_sym_server_alive_interval_token1] = ACTIONS(1191), - [aux_sym_session_type_token1] = ACTIONS(1191), - [aux_sym_set_env_token1] = ACTIONS(1191), - [aux_sym_stdin_null_token1] = ACTIONS(1191), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1191), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1191), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1191), - [aux_sym_syslog_facility_token1] = ACTIONS(1191), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1191), - [aux_sym_keep_alive_token1] = ACTIONS(1191), - [aux_sym_tunnel_token1] = ACTIONS(1193), - [aux_sym_tunnel_device_token1] = ACTIONS(1191), - [aux_sym_update_host_keys_token1] = ACTIONS(1191), - [aux_sym_use_keychain_token1] = ACTIONS(1191), - [aux_sym_use_roaming_token1] = ACTIONS(1191), - [aux_sym_user_token1] = ACTIONS(1193), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1191), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1191), - [aux_sym_visual_host_key_token1] = ACTIONS(1191), - [aux_sym_xauth_location_token1] = ACTIONS(1191), + [ts_builtin_sym_end] = ACTIONS(1196), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1198), + [anon_sym_DQUOTE] = ACTIONS(1200), + [aux_sym_match_token1] = ACTIONS(1196), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1196), + [aux_sym_address_family_token1] = ACTIONS(1196), + [aux_sym_batch_mode_token1] = ACTIONS(1196), + [aux_sym_bind_address_token1] = ACTIONS(1196), + [aux_sym_bind_interface_token1] = ACTIONS(1196), + [aux_sym_canonical_domains_token1] = ACTIONS(1196), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1196), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1196), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1196), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1196), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1196), + [aux_sym_certificate_file_token1] = ACTIONS(1196), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1196), + [aux_sym_check_host_ip_token1] = ACTIONS(1196), + [aux_sym_ciphers_token1] = ACTIONS(1196), + [aux_sym_cipher_token1] = ACTIONS(1198), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1196), + [aux_sym_compression_token1] = ACTIONS(1196), + [aux_sym_connection_attempts_token1] = ACTIONS(1196), + [aux_sym_connect_timeout_token1] = ACTIONS(1196), + [aux_sym_control_master_token1] = ACTIONS(1196), + [aux_sym_control_path_token1] = ACTIONS(1196), + [aux_sym_control_persist_token1] = ACTIONS(1196), + [aux_sym_dynamic_forward_token1] = ACTIONS(1196), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1196), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1196), + [aux_sym_escape_char_token1] = ACTIONS(1196), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1196), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1196), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1196), + [aux_sym_forward_agent_token1] = ACTIONS(1196), + [aux_sym_forward_x11_token1] = ACTIONS(1198), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1196), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1196), + [aux_sym_gateway_ports_token1] = ACTIONS(1196), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1196), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1196), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1196), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1196), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1196), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1196), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1196), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1196), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1196), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1196), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1196), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1196), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1196), + [aux_sym_host_key_alias_token1] = ACTIONS(1196), + [aux_sym_hostname_token1] = ACTIONS(1196), + [aux_sym_identities_only_token1] = ACTIONS(1196), + [aux_sym_identity_agent_token1] = ACTIONS(1196), + [aux_sym_identity_file_token1] = ACTIONS(1196), + [aux_sym_ignore_unknown_token1] = ACTIONS(1196), + [aux_sym_include_token1] = ACTIONS(1196), + [aux_sym_ip_qos_token1] = ACTIONS(1196), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1196), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1196), + [aux_sym_kex_algorithms_token1] = ACTIONS(1196), + [aux_sym_known_hosts_command_token1] = ACTIONS(1196), + [aux_sym_local_command_token1] = ACTIONS(1196), + [aux_sym_local_forward_token1] = ACTIONS(1196), + [aux_sym_log_level_token1] = ACTIONS(1196), + [aux_sym_log_verbose_token1] = ACTIONS(1196), + [aux_sym_macs_token1] = ACTIONS(1196), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1196), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1196), + [aux_sym_password_authentication_token1] = ACTIONS(1196), + [aux_sym_permit_local_command_token1] = ACTIONS(1196), + [aux_sym_permit_remote_open_token1] = ACTIONS(1196), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1196), + [aux_sym_port_token1] = ACTIONS(1196), + [aux_sym_preferred_authentications_token1] = ACTIONS(1196), + [aux_sym_protocol_token1] = ACTIONS(1196), + [aux_sym_proxy_command_token1] = ACTIONS(1196), + [aux_sym_proxy_jump_token1] = ACTIONS(1196), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1196), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1196), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1196), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1196), + [aux_sym_rekey_limit_token1] = ACTIONS(1196), + [aux_sym_remote_command_token1] = ACTIONS(1196), + [aux_sym_remote_forward_token1] = ACTIONS(1196), + [aux_sym_request_tty_token1] = ACTIONS(1196), + [aux_sym_required_rsa_size_token1] = ACTIONS(1196), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1196), + [aux_sym_security_key_provider_token1] = ACTIONS(1196), + [aux_sym_send_env_token1] = ACTIONS(1196), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1196), + [aux_sym_server_alive_interval_token1] = ACTIONS(1196), + [aux_sym_session_type_token1] = ACTIONS(1196), + [aux_sym_set_env_token1] = ACTIONS(1196), + [aux_sym_stdin_null_token1] = ACTIONS(1196), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1196), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1196), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1196), + [aux_sym_syslog_facility_token1] = ACTIONS(1196), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1196), + [aux_sym_keep_alive_token1] = ACTIONS(1196), + [aux_sym_tunnel_token1] = ACTIONS(1198), + [aux_sym_tunnel_device_token1] = ACTIONS(1196), + [aux_sym_update_host_keys_token1] = ACTIONS(1196), + [aux_sym_use_keychain_token1] = ACTIONS(1196), + [aux_sym_use_roaming_token1] = ACTIONS(1196), + [aux_sym_user_token1] = ACTIONS(1198), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1196), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1196), + [aux_sym_visual_host_key_token1] = ACTIONS(1196), + [aux_sym_xauth_location_token1] = ACTIONS(1196), }, [110] = { - [ts_builtin_sym_end] = ACTIONS(1197), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1199), - [anon_sym_DQUOTE] = ACTIONS(1201), - [aux_sym_match_token1] = ACTIONS(1197), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1197), - [aux_sym_address_family_token1] = ACTIONS(1197), - [aux_sym_batch_mode_token1] = ACTIONS(1197), - [aux_sym_bind_address_token1] = ACTIONS(1197), - [aux_sym_bind_interface_token1] = ACTIONS(1197), - [aux_sym_canonical_domains_token1] = ACTIONS(1197), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1197), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1197), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1197), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1197), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1197), - [aux_sym_certificate_file_token1] = ACTIONS(1197), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1197), - [aux_sym_check_host_ip_token1] = ACTIONS(1197), - [aux_sym_ciphers_token1] = ACTIONS(1197), - [aux_sym_cipher_token1] = ACTIONS(1199), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1197), - [aux_sym_compression_token1] = ACTIONS(1197), - [aux_sym_connection_attempts_token1] = ACTIONS(1197), - [aux_sym_connect_timeout_token1] = ACTIONS(1197), - [aux_sym_control_master_token1] = ACTIONS(1197), - [aux_sym_control_path_token1] = ACTIONS(1197), - [aux_sym_control_persist_token1] = ACTIONS(1197), - [aux_sym_dynamic_forward_token1] = ACTIONS(1197), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1197), - [aux_sym_escape_char_token1] = ACTIONS(1197), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1197), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1197), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1197), - [aux_sym_forward_agent_token1] = ACTIONS(1197), - [aux_sym_forward_x11_token1] = ACTIONS(1199), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1197), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1197), - [aux_sym_gateway_ports_token1] = ACTIONS(1197), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1197), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1197), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1197), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1197), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1197), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1197), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1197), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1197), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1197), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1197), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1197), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1197), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1197), - [aux_sym_host_key_alias_token1] = ACTIONS(1197), - [aux_sym_hostname_token1] = ACTIONS(1197), - [aux_sym_identities_only_token1] = ACTIONS(1197), - [aux_sym_identity_agent_token1] = ACTIONS(1197), - [aux_sym_identity_file_token1] = ACTIONS(1197), - [aux_sym_ignore_unknown_token1] = ACTIONS(1197), - [aux_sym_include_token1] = ACTIONS(1197), - [aux_sym_ip_qos_token1] = ACTIONS(1197), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1197), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1197), - [aux_sym_kex_algorithms_token1] = ACTIONS(1197), - [aux_sym_known_hosts_command_token1] = ACTIONS(1197), - [aux_sym_local_command_token1] = ACTIONS(1197), - [aux_sym_local_forward_token1] = ACTIONS(1197), - [aux_sym_log_level_token1] = ACTIONS(1197), - [aux_sym_log_verbose_token1] = ACTIONS(1197), - [aux_sym_macs_token1] = ACTIONS(1197), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1197), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1197), - [aux_sym_password_authentication_token1] = ACTIONS(1197), - [aux_sym_permit_local_command_token1] = ACTIONS(1197), - [aux_sym_permit_remote_open_token1] = ACTIONS(1197), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1197), - [aux_sym_port_token1] = ACTIONS(1197), - [aux_sym_preferred_authentications_token1] = ACTIONS(1197), - [aux_sym_protocol_token1] = ACTIONS(1197), - [aux_sym_proxy_command_token1] = ACTIONS(1197), - [aux_sym_proxy_jump_token1] = ACTIONS(1197), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1197), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1197), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1197), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1197), - [aux_sym_rekey_limit_token1] = ACTIONS(1197), - [aux_sym_remote_command_token1] = ACTIONS(1197), - [aux_sym_remote_forward_token1] = ACTIONS(1197), - [aux_sym_request_tty_token1] = ACTIONS(1197), - [aux_sym_required_rsa_size_token1] = ACTIONS(1197), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1197), - [aux_sym_security_key_provider_token1] = ACTIONS(1197), - [aux_sym_send_env_token1] = ACTIONS(1197), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1197), - [aux_sym_server_alive_interval_token1] = ACTIONS(1197), - [aux_sym_session_type_token1] = ACTIONS(1197), - [aux_sym_set_env_token1] = ACTIONS(1197), - [aux_sym_stdin_null_token1] = ACTIONS(1197), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1197), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1197), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1197), - [aux_sym_syslog_facility_token1] = ACTIONS(1197), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1197), - [aux_sym_keep_alive_token1] = ACTIONS(1197), - [aux_sym_tunnel_token1] = ACTIONS(1199), - [aux_sym_tunnel_device_token1] = ACTIONS(1197), - [aux_sym_update_host_keys_token1] = ACTIONS(1197), - [aux_sym_use_keychain_token1] = ACTIONS(1197), - [aux_sym_use_roaming_token1] = ACTIONS(1197), - [aux_sym_user_token1] = ACTIONS(1199), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1197), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1197), - [aux_sym_visual_host_key_token1] = ACTIONS(1197), - [aux_sym_xauth_location_token1] = ACTIONS(1197), + [ts_builtin_sym_end] = ACTIONS(1202), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [aux_sym_match_token1] = ACTIONS(1202), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1202), + [aux_sym_address_family_token1] = ACTIONS(1202), + [aux_sym_batch_mode_token1] = ACTIONS(1202), + [aux_sym_bind_address_token1] = ACTIONS(1202), + [aux_sym_bind_interface_token1] = ACTIONS(1202), + [aux_sym_canonical_domains_token1] = ACTIONS(1202), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1202), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1202), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1202), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1202), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1202), + [aux_sym_certificate_file_token1] = ACTIONS(1202), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1202), + [aux_sym_check_host_ip_token1] = ACTIONS(1202), + [aux_sym_ciphers_token1] = ACTIONS(1202), + [aux_sym_cipher_token1] = ACTIONS(1204), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1202), + [aux_sym_compression_token1] = ACTIONS(1202), + [aux_sym_connection_attempts_token1] = ACTIONS(1202), + [aux_sym_connect_timeout_token1] = ACTIONS(1202), + [aux_sym_control_master_token1] = ACTIONS(1202), + [aux_sym_control_path_token1] = ACTIONS(1202), + [aux_sym_control_persist_token1] = ACTIONS(1202), + [aux_sym_dynamic_forward_token1] = ACTIONS(1202), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1202), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1202), + [aux_sym_escape_char_token1] = ACTIONS(1202), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1202), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1202), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1202), + [aux_sym_forward_agent_token1] = ACTIONS(1202), + [aux_sym_forward_x11_token1] = ACTIONS(1204), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1202), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1202), + [aux_sym_gateway_ports_token1] = ACTIONS(1202), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1202), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1202), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1202), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1202), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1202), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1202), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1202), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1202), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1202), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1202), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1202), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1202), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1202), + [aux_sym_host_key_alias_token1] = ACTIONS(1202), + [aux_sym_hostname_token1] = ACTIONS(1202), + [aux_sym_identities_only_token1] = ACTIONS(1202), + [aux_sym_identity_agent_token1] = ACTIONS(1202), + [aux_sym_identity_file_token1] = ACTIONS(1202), + [aux_sym_ignore_unknown_token1] = ACTIONS(1202), + [aux_sym_include_token1] = ACTIONS(1202), + [aux_sym_ip_qos_token1] = ACTIONS(1202), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1202), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1202), + [aux_sym_kex_algorithms_token1] = ACTIONS(1202), + [aux_sym_known_hosts_command_token1] = ACTIONS(1202), + [aux_sym_local_command_token1] = ACTIONS(1202), + [aux_sym_local_forward_token1] = ACTIONS(1202), + [aux_sym_log_level_token1] = ACTIONS(1202), + [aux_sym_log_verbose_token1] = ACTIONS(1202), + [aux_sym_macs_token1] = ACTIONS(1202), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1202), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1202), + [aux_sym_password_authentication_token1] = ACTIONS(1202), + [aux_sym_permit_local_command_token1] = ACTIONS(1202), + [aux_sym_permit_remote_open_token1] = ACTIONS(1202), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1202), + [aux_sym_port_token1] = ACTIONS(1202), + [aux_sym_preferred_authentications_token1] = ACTIONS(1202), + [aux_sym_protocol_token1] = ACTIONS(1202), + [aux_sym_proxy_command_token1] = ACTIONS(1202), + [aux_sym_proxy_jump_token1] = ACTIONS(1202), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1202), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1202), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1202), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1202), + [aux_sym_rekey_limit_token1] = ACTIONS(1202), + [aux_sym_remote_command_token1] = ACTIONS(1202), + [aux_sym_remote_forward_token1] = ACTIONS(1202), + [aux_sym_request_tty_token1] = ACTIONS(1202), + [aux_sym_required_rsa_size_token1] = ACTIONS(1202), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1202), + [aux_sym_security_key_provider_token1] = ACTIONS(1202), + [aux_sym_send_env_token1] = ACTIONS(1202), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1202), + [aux_sym_server_alive_interval_token1] = ACTIONS(1202), + [aux_sym_session_type_token1] = ACTIONS(1202), + [aux_sym_set_env_token1] = ACTIONS(1202), + [aux_sym_stdin_null_token1] = ACTIONS(1202), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1202), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1202), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1202), + [aux_sym_syslog_facility_token1] = ACTIONS(1202), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1202), + [aux_sym_keep_alive_token1] = ACTIONS(1202), + [aux_sym_tunnel_token1] = ACTIONS(1204), + [aux_sym_tunnel_device_token1] = ACTIONS(1202), + [aux_sym_update_host_keys_token1] = ACTIONS(1202), + [aux_sym_use_keychain_token1] = ACTIONS(1202), + [aux_sym_use_roaming_token1] = ACTIONS(1202), + [aux_sym_user_token1] = ACTIONS(1204), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1202), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1202), + [aux_sym_visual_host_key_token1] = ACTIONS(1202), + [aux_sym_xauth_location_token1] = ACTIONS(1202), }, [111] = { - [ts_builtin_sym_end] = ACTIONS(1203), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1205), - [anon_sym_DQUOTE] = ACTIONS(1207), - [aux_sym_match_token1] = ACTIONS(1203), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1203), - [aux_sym_address_family_token1] = ACTIONS(1203), - [aux_sym_batch_mode_token1] = ACTIONS(1203), - [aux_sym_bind_address_token1] = ACTIONS(1203), - [aux_sym_bind_interface_token1] = ACTIONS(1203), - [aux_sym_canonical_domains_token1] = ACTIONS(1203), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1203), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1203), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1203), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1203), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1203), - [aux_sym_certificate_file_token1] = ACTIONS(1203), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1203), - [aux_sym_check_host_ip_token1] = ACTIONS(1203), - [aux_sym_ciphers_token1] = ACTIONS(1203), - [aux_sym_cipher_token1] = ACTIONS(1205), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1203), - [aux_sym_compression_token1] = ACTIONS(1203), - [aux_sym_connection_attempts_token1] = ACTIONS(1203), - [aux_sym_connect_timeout_token1] = ACTIONS(1203), - [aux_sym_control_master_token1] = ACTIONS(1203), - [aux_sym_control_path_token1] = ACTIONS(1203), - [aux_sym_control_persist_token1] = ACTIONS(1203), - [aux_sym_dynamic_forward_token1] = ACTIONS(1203), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1203), - [aux_sym_escape_char_token1] = ACTIONS(1203), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1203), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1203), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1203), - [aux_sym_forward_agent_token1] = ACTIONS(1203), - [aux_sym_forward_x11_token1] = ACTIONS(1205), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1203), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1203), - [aux_sym_gateway_ports_token1] = ACTIONS(1203), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1203), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1203), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1203), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1203), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1203), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1203), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1203), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1203), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1203), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1203), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1203), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1203), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1203), - [aux_sym_host_key_alias_token1] = ACTIONS(1203), - [aux_sym_hostname_token1] = ACTIONS(1203), - [aux_sym_identities_only_token1] = ACTIONS(1203), - [aux_sym_identity_agent_token1] = ACTIONS(1203), - [aux_sym_identity_file_token1] = ACTIONS(1203), - [aux_sym_ignore_unknown_token1] = ACTIONS(1203), - [aux_sym_include_token1] = ACTIONS(1203), - [aux_sym_ip_qos_token1] = ACTIONS(1203), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1203), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1203), - [aux_sym_kex_algorithms_token1] = ACTIONS(1203), - [aux_sym_known_hosts_command_token1] = ACTIONS(1203), - [aux_sym_local_command_token1] = ACTIONS(1203), - [aux_sym_local_forward_token1] = ACTIONS(1203), - [aux_sym_log_level_token1] = ACTIONS(1203), - [aux_sym_log_verbose_token1] = ACTIONS(1203), - [aux_sym_macs_token1] = ACTIONS(1203), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1203), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1203), - [aux_sym_password_authentication_token1] = ACTIONS(1203), - [aux_sym_permit_local_command_token1] = ACTIONS(1203), - [aux_sym_permit_remote_open_token1] = ACTIONS(1203), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1203), - [aux_sym_port_token1] = ACTIONS(1203), - [aux_sym_preferred_authentications_token1] = ACTIONS(1203), - [aux_sym_protocol_token1] = ACTIONS(1203), - [aux_sym_proxy_command_token1] = ACTIONS(1203), - [aux_sym_proxy_jump_token1] = ACTIONS(1203), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1203), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1203), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1203), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1203), - [aux_sym_rekey_limit_token1] = ACTIONS(1203), - [aux_sym_remote_command_token1] = ACTIONS(1203), - [aux_sym_remote_forward_token1] = ACTIONS(1203), - [aux_sym_request_tty_token1] = ACTIONS(1203), - [aux_sym_required_rsa_size_token1] = ACTIONS(1203), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1203), - [aux_sym_security_key_provider_token1] = ACTIONS(1203), - [aux_sym_send_env_token1] = ACTIONS(1203), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1203), - [aux_sym_server_alive_interval_token1] = ACTIONS(1203), - [aux_sym_session_type_token1] = ACTIONS(1203), - [aux_sym_set_env_token1] = ACTIONS(1203), - [aux_sym_stdin_null_token1] = ACTIONS(1203), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1203), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1203), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1203), - [aux_sym_syslog_facility_token1] = ACTIONS(1203), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1203), - [aux_sym_keep_alive_token1] = ACTIONS(1203), - [aux_sym_tunnel_token1] = ACTIONS(1205), - [aux_sym_tunnel_device_token1] = ACTIONS(1203), - [aux_sym_update_host_keys_token1] = ACTIONS(1203), - [aux_sym_use_keychain_token1] = ACTIONS(1203), - [aux_sym_use_roaming_token1] = ACTIONS(1203), - [aux_sym_user_token1] = ACTIONS(1205), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1203), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1203), - [aux_sym_visual_host_key_token1] = ACTIONS(1203), - [aux_sym_xauth_location_token1] = ACTIONS(1203), + [ts_builtin_sym_end] = ACTIONS(1208), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1210), + [anon_sym_DQUOTE] = ACTIONS(1212), + [aux_sym_match_token1] = ACTIONS(1208), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1208), + [aux_sym_address_family_token1] = ACTIONS(1208), + [aux_sym_batch_mode_token1] = ACTIONS(1208), + [aux_sym_bind_address_token1] = ACTIONS(1208), + [aux_sym_bind_interface_token1] = ACTIONS(1208), + [aux_sym_canonical_domains_token1] = ACTIONS(1208), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1208), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1208), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1208), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1208), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1208), + [aux_sym_certificate_file_token1] = ACTIONS(1208), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1208), + [aux_sym_check_host_ip_token1] = ACTIONS(1208), + [aux_sym_ciphers_token1] = ACTIONS(1208), + [aux_sym_cipher_token1] = ACTIONS(1210), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1208), + [aux_sym_compression_token1] = ACTIONS(1208), + [aux_sym_connection_attempts_token1] = ACTIONS(1208), + [aux_sym_connect_timeout_token1] = ACTIONS(1208), + [aux_sym_control_master_token1] = ACTIONS(1208), + [aux_sym_control_path_token1] = ACTIONS(1208), + [aux_sym_control_persist_token1] = ACTIONS(1208), + [aux_sym_dynamic_forward_token1] = ACTIONS(1208), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1208), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1208), + [aux_sym_escape_char_token1] = ACTIONS(1208), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1208), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1208), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1208), + [aux_sym_forward_agent_token1] = ACTIONS(1208), + [aux_sym_forward_x11_token1] = ACTIONS(1210), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1208), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1208), + [aux_sym_gateway_ports_token1] = ACTIONS(1208), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1208), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1208), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1208), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1208), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1208), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1208), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1208), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1208), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1208), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1208), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1208), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1208), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1208), + [aux_sym_host_key_alias_token1] = ACTIONS(1208), + [aux_sym_hostname_token1] = ACTIONS(1208), + [aux_sym_identities_only_token1] = ACTIONS(1208), + [aux_sym_identity_agent_token1] = ACTIONS(1208), + [aux_sym_identity_file_token1] = ACTIONS(1208), + [aux_sym_ignore_unknown_token1] = ACTIONS(1208), + [aux_sym_include_token1] = ACTIONS(1208), + [aux_sym_ip_qos_token1] = ACTIONS(1208), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1208), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1208), + [aux_sym_kex_algorithms_token1] = ACTIONS(1208), + [aux_sym_known_hosts_command_token1] = ACTIONS(1208), + [aux_sym_local_command_token1] = ACTIONS(1208), + [aux_sym_local_forward_token1] = ACTIONS(1208), + [aux_sym_log_level_token1] = ACTIONS(1208), + [aux_sym_log_verbose_token1] = ACTIONS(1208), + [aux_sym_macs_token1] = ACTIONS(1208), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1208), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1208), + [aux_sym_password_authentication_token1] = ACTIONS(1208), + [aux_sym_permit_local_command_token1] = ACTIONS(1208), + [aux_sym_permit_remote_open_token1] = ACTIONS(1208), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1208), + [aux_sym_port_token1] = ACTIONS(1208), + [aux_sym_preferred_authentications_token1] = ACTIONS(1208), + [aux_sym_protocol_token1] = ACTIONS(1208), + [aux_sym_proxy_command_token1] = ACTIONS(1208), + [aux_sym_proxy_jump_token1] = ACTIONS(1208), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1208), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1208), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1208), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1208), + [aux_sym_rekey_limit_token1] = ACTIONS(1208), + [aux_sym_remote_command_token1] = ACTIONS(1208), + [aux_sym_remote_forward_token1] = ACTIONS(1208), + [aux_sym_request_tty_token1] = ACTIONS(1208), + [aux_sym_required_rsa_size_token1] = ACTIONS(1208), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1208), + [aux_sym_security_key_provider_token1] = ACTIONS(1208), + [aux_sym_send_env_token1] = ACTIONS(1208), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1208), + [aux_sym_server_alive_interval_token1] = ACTIONS(1208), + [aux_sym_session_type_token1] = ACTIONS(1208), + [aux_sym_set_env_token1] = ACTIONS(1208), + [aux_sym_stdin_null_token1] = ACTIONS(1208), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1208), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1208), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1208), + [aux_sym_syslog_facility_token1] = ACTIONS(1208), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1208), + [aux_sym_keep_alive_token1] = ACTIONS(1208), + [aux_sym_tunnel_token1] = ACTIONS(1210), + [aux_sym_tunnel_device_token1] = ACTIONS(1208), + [aux_sym_update_host_keys_token1] = ACTIONS(1208), + [aux_sym_use_keychain_token1] = ACTIONS(1208), + [aux_sym_use_roaming_token1] = ACTIONS(1208), + [aux_sym_user_token1] = ACTIONS(1210), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1208), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1208), + [aux_sym_visual_host_key_token1] = ACTIONS(1208), + [aux_sym_xauth_location_token1] = ACTIONS(1208), }, [112] = { - [ts_builtin_sym_end] = ACTIONS(1209), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1211), - [anon_sym_DQUOTE] = ACTIONS(1213), - [aux_sym_match_token1] = ACTIONS(1209), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1209), - [aux_sym_address_family_token1] = ACTIONS(1209), - [aux_sym_batch_mode_token1] = ACTIONS(1209), - [aux_sym_bind_address_token1] = ACTIONS(1209), - [aux_sym_bind_interface_token1] = ACTIONS(1209), - [aux_sym_canonical_domains_token1] = ACTIONS(1209), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1209), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1209), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1209), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1209), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1209), - [aux_sym_certificate_file_token1] = ACTIONS(1209), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1209), - [aux_sym_check_host_ip_token1] = ACTIONS(1209), - [aux_sym_ciphers_token1] = ACTIONS(1209), - [aux_sym_cipher_token1] = ACTIONS(1211), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1209), - [aux_sym_compression_token1] = ACTIONS(1209), - [aux_sym_connection_attempts_token1] = ACTIONS(1209), - [aux_sym_connect_timeout_token1] = ACTIONS(1209), - [aux_sym_control_master_token1] = ACTIONS(1209), - [aux_sym_control_path_token1] = ACTIONS(1209), - [aux_sym_control_persist_token1] = ACTIONS(1209), - [aux_sym_dynamic_forward_token1] = ACTIONS(1209), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1209), - [aux_sym_escape_char_token1] = ACTIONS(1209), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1209), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1209), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1209), - [aux_sym_forward_agent_token1] = ACTIONS(1209), - [aux_sym_forward_x11_token1] = ACTIONS(1211), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1209), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1209), - [aux_sym_gateway_ports_token1] = ACTIONS(1209), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1209), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1209), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1209), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1209), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1209), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1209), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1209), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1209), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1209), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1209), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1209), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1209), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1209), - [aux_sym_host_key_alias_token1] = ACTIONS(1209), - [aux_sym_hostname_token1] = ACTIONS(1209), - [aux_sym_identities_only_token1] = ACTIONS(1209), - [aux_sym_identity_agent_token1] = ACTIONS(1209), - [aux_sym_identity_file_token1] = ACTIONS(1209), - [aux_sym_ignore_unknown_token1] = ACTIONS(1209), - [aux_sym_include_token1] = ACTIONS(1209), - [aux_sym_ip_qos_token1] = ACTIONS(1209), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1209), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1209), - [aux_sym_kex_algorithms_token1] = ACTIONS(1209), - [aux_sym_known_hosts_command_token1] = ACTIONS(1209), - [aux_sym_local_command_token1] = ACTIONS(1209), - [aux_sym_local_forward_token1] = ACTIONS(1209), - [aux_sym_log_level_token1] = ACTIONS(1209), - [aux_sym_log_verbose_token1] = ACTIONS(1209), - [aux_sym_macs_token1] = ACTIONS(1209), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1209), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1209), - [aux_sym_password_authentication_token1] = ACTIONS(1209), - [aux_sym_permit_local_command_token1] = ACTIONS(1209), - [aux_sym_permit_remote_open_token1] = ACTIONS(1209), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1209), - [aux_sym_port_token1] = ACTIONS(1209), - [aux_sym_preferred_authentications_token1] = ACTIONS(1209), - [aux_sym_protocol_token1] = ACTIONS(1209), - [aux_sym_proxy_command_token1] = ACTIONS(1209), - [aux_sym_proxy_jump_token1] = ACTIONS(1209), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1209), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1209), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1209), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1209), - [aux_sym_rekey_limit_token1] = ACTIONS(1209), - [aux_sym_remote_command_token1] = ACTIONS(1209), - [aux_sym_remote_forward_token1] = ACTIONS(1209), - [aux_sym_request_tty_token1] = ACTIONS(1209), - [aux_sym_required_rsa_size_token1] = ACTIONS(1209), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1209), - [aux_sym_security_key_provider_token1] = ACTIONS(1209), - [aux_sym_send_env_token1] = ACTIONS(1209), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1209), - [aux_sym_server_alive_interval_token1] = ACTIONS(1209), - [aux_sym_session_type_token1] = ACTIONS(1209), - [aux_sym_set_env_token1] = ACTIONS(1209), - [aux_sym_stdin_null_token1] = ACTIONS(1209), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1209), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1209), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1209), - [aux_sym_syslog_facility_token1] = ACTIONS(1209), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1209), - [aux_sym_keep_alive_token1] = ACTIONS(1209), - [aux_sym_tunnel_token1] = ACTIONS(1211), - [aux_sym_tunnel_device_token1] = ACTIONS(1209), - [aux_sym_update_host_keys_token1] = ACTIONS(1209), - [aux_sym_use_keychain_token1] = ACTIONS(1209), - [aux_sym_use_roaming_token1] = ACTIONS(1209), - [aux_sym_user_token1] = ACTIONS(1211), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1209), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1209), - [aux_sym_visual_host_key_token1] = ACTIONS(1209), - [aux_sym_xauth_location_token1] = ACTIONS(1209), + [ts_builtin_sym_end] = ACTIONS(1214), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1216), + [anon_sym_DQUOTE] = ACTIONS(1218), + [aux_sym_match_token1] = ACTIONS(1214), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1214), + [aux_sym_address_family_token1] = ACTIONS(1214), + [aux_sym_batch_mode_token1] = ACTIONS(1214), + [aux_sym_bind_address_token1] = ACTIONS(1214), + [aux_sym_bind_interface_token1] = ACTIONS(1214), + [aux_sym_canonical_domains_token1] = ACTIONS(1214), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1214), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1214), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1214), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1214), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1214), + [aux_sym_certificate_file_token1] = ACTIONS(1214), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1214), + [aux_sym_check_host_ip_token1] = ACTIONS(1214), + [aux_sym_ciphers_token1] = ACTIONS(1214), + [aux_sym_cipher_token1] = ACTIONS(1216), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1214), + [aux_sym_compression_token1] = ACTIONS(1214), + [aux_sym_connection_attempts_token1] = ACTIONS(1214), + [aux_sym_connect_timeout_token1] = ACTIONS(1214), + [aux_sym_control_master_token1] = ACTIONS(1214), + [aux_sym_control_path_token1] = ACTIONS(1214), + [aux_sym_control_persist_token1] = ACTIONS(1214), + [aux_sym_dynamic_forward_token1] = ACTIONS(1214), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1214), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1214), + [aux_sym_escape_char_token1] = ACTIONS(1214), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1214), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1214), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1214), + [aux_sym_forward_agent_token1] = ACTIONS(1214), + [aux_sym_forward_x11_token1] = ACTIONS(1216), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1214), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1214), + [aux_sym_gateway_ports_token1] = ACTIONS(1214), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1214), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1214), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1214), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1214), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1214), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1214), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1214), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1214), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1214), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1214), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1214), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1214), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1214), + [aux_sym_host_key_alias_token1] = ACTIONS(1214), + [aux_sym_hostname_token1] = ACTIONS(1214), + [aux_sym_identities_only_token1] = ACTIONS(1214), + [aux_sym_identity_agent_token1] = ACTIONS(1214), + [aux_sym_identity_file_token1] = ACTIONS(1214), + [aux_sym_ignore_unknown_token1] = ACTIONS(1214), + [aux_sym_include_token1] = ACTIONS(1214), + [aux_sym_ip_qos_token1] = ACTIONS(1214), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1214), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1214), + [aux_sym_kex_algorithms_token1] = ACTIONS(1214), + [aux_sym_known_hosts_command_token1] = ACTIONS(1214), + [aux_sym_local_command_token1] = ACTIONS(1214), + [aux_sym_local_forward_token1] = ACTIONS(1214), + [aux_sym_log_level_token1] = ACTIONS(1214), + [aux_sym_log_verbose_token1] = ACTIONS(1214), + [aux_sym_macs_token1] = ACTIONS(1214), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1214), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1214), + [aux_sym_password_authentication_token1] = ACTIONS(1214), + [aux_sym_permit_local_command_token1] = ACTIONS(1214), + [aux_sym_permit_remote_open_token1] = ACTIONS(1214), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1214), + [aux_sym_port_token1] = ACTIONS(1214), + [aux_sym_preferred_authentications_token1] = ACTIONS(1214), + [aux_sym_protocol_token1] = ACTIONS(1214), + [aux_sym_proxy_command_token1] = ACTIONS(1214), + [aux_sym_proxy_jump_token1] = ACTIONS(1214), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1214), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1214), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1214), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1214), + [aux_sym_rekey_limit_token1] = ACTIONS(1214), + [aux_sym_remote_command_token1] = ACTIONS(1214), + [aux_sym_remote_forward_token1] = ACTIONS(1214), + [aux_sym_request_tty_token1] = ACTIONS(1214), + [aux_sym_required_rsa_size_token1] = ACTIONS(1214), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1214), + [aux_sym_security_key_provider_token1] = ACTIONS(1214), + [aux_sym_send_env_token1] = ACTIONS(1214), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1214), + [aux_sym_server_alive_interval_token1] = ACTIONS(1214), + [aux_sym_session_type_token1] = ACTIONS(1214), + [aux_sym_set_env_token1] = ACTIONS(1214), + [aux_sym_stdin_null_token1] = ACTIONS(1214), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1214), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1214), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1214), + [aux_sym_syslog_facility_token1] = ACTIONS(1214), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1214), + [aux_sym_keep_alive_token1] = ACTIONS(1214), + [aux_sym_tunnel_token1] = ACTIONS(1216), + [aux_sym_tunnel_device_token1] = ACTIONS(1214), + [aux_sym_update_host_keys_token1] = ACTIONS(1214), + [aux_sym_use_keychain_token1] = ACTIONS(1214), + [aux_sym_use_roaming_token1] = ACTIONS(1214), + [aux_sym_user_token1] = ACTIONS(1216), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1214), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1214), + [aux_sym_visual_host_key_token1] = ACTIONS(1214), + [aux_sym_xauth_location_token1] = ACTIONS(1214), }, [113] = { - [ts_builtin_sym_end] = ACTIONS(1215), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1217), - [anon_sym_DQUOTE] = ACTIONS(1219), - [aux_sym_match_token1] = ACTIONS(1215), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1215), - [aux_sym_address_family_token1] = ACTIONS(1215), - [aux_sym_batch_mode_token1] = ACTIONS(1215), - [aux_sym_bind_address_token1] = ACTIONS(1215), - [aux_sym_bind_interface_token1] = ACTIONS(1215), - [aux_sym_canonical_domains_token1] = ACTIONS(1215), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1215), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1215), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1215), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1215), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1215), - [aux_sym_certificate_file_token1] = ACTIONS(1215), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1215), - [aux_sym_check_host_ip_token1] = ACTIONS(1215), - [aux_sym_ciphers_token1] = ACTIONS(1215), - [aux_sym_cipher_token1] = ACTIONS(1217), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1215), - [aux_sym_compression_token1] = ACTIONS(1215), - [aux_sym_connection_attempts_token1] = ACTIONS(1215), - [aux_sym_connect_timeout_token1] = ACTIONS(1215), - [aux_sym_control_master_token1] = ACTIONS(1215), - [aux_sym_control_path_token1] = ACTIONS(1215), - [aux_sym_control_persist_token1] = ACTIONS(1215), - [aux_sym_dynamic_forward_token1] = ACTIONS(1215), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1215), - [aux_sym_escape_char_token1] = ACTIONS(1215), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1215), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1215), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1215), - [aux_sym_forward_agent_token1] = ACTIONS(1215), - [aux_sym_forward_x11_token1] = ACTIONS(1217), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1215), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1215), - [aux_sym_gateway_ports_token1] = ACTIONS(1215), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1215), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1215), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1215), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1215), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1215), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1215), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1215), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1215), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1215), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1215), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1215), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1215), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1215), - [aux_sym_host_key_alias_token1] = ACTIONS(1215), - [aux_sym_hostname_token1] = ACTIONS(1215), - [aux_sym_identities_only_token1] = ACTIONS(1215), - [aux_sym_identity_agent_token1] = ACTIONS(1215), - [aux_sym_identity_file_token1] = ACTIONS(1215), - [aux_sym_ignore_unknown_token1] = ACTIONS(1215), - [aux_sym_include_token1] = ACTIONS(1215), - [aux_sym_ip_qos_token1] = ACTIONS(1215), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1215), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1215), - [aux_sym_kex_algorithms_token1] = ACTIONS(1215), - [aux_sym_known_hosts_command_token1] = ACTIONS(1215), - [aux_sym_local_command_token1] = ACTIONS(1215), - [aux_sym_local_forward_token1] = ACTIONS(1215), - [aux_sym_log_level_token1] = ACTIONS(1215), - [aux_sym_log_verbose_token1] = ACTIONS(1215), - [aux_sym_macs_token1] = ACTIONS(1215), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1215), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1215), - [aux_sym_password_authentication_token1] = ACTIONS(1215), - [aux_sym_permit_local_command_token1] = ACTIONS(1215), - [aux_sym_permit_remote_open_token1] = ACTIONS(1215), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1215), - [aux_sym_port_token1] = ACTIONS(1215), - [aux_sym_preferred_authentications_token1] = ACTIONS(1215), - [aux_sym_protocol_token1] = ACTIONS(1215), - [aux_sym_proxy_command_token1] = ACTIONS(1215), - [aux_sym_proxy_jump_token1] = ACTIONS(1215), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1215), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1215), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1215), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1215), - [aux_sym_rekey_limit_token1] = ACTIONS(1215), - [aux_sym_remote_command_token1] = ACTIONS(1215), - [aux_sym_remote_forward_token1] = ACTIONS(1215), - [aux_sym_request_tty_token1] = ACTIONS(1215), - [aux_sym_required_rsa_size_token1] = ACTIONS(1215), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1215), - [aux_sym_security_key_provider_token1] = ACTIONS(1215), - [aux_sym_send_env_token1] = ACTIONS(1215), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1215), - [aux_sym_server_alive_interval_token1] = ACTIONS(1215), - [aux_sym_session_type_token1] = ACTIONS(1215), - [aux_sym_set_env_token1] = ACTIONS(1215), - [aux_sym_stdin_null_token1] = ACTIONS(1215), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1215), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1215), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1215), - [aux_sym_syslog_facility_token1] = ACTIONS(1215), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1215), - [aux_sym_keep_alive_token1] = ACTIONS(1215), - [aux_sym_tunnel_token1] = ACTIONS(1217), - [aux_sym_tunnel_device_token1] = ACTIONS(1215), - [aux_sym_update_host_keys_token1] = ACTIONS(1215), - [aux_sym_use_keychain_token1] = ACTIONS(1215), - [aux_sym_use_roaming_token1] = ACTIONS(1215), - [aux_sym_user_token1] = ACTIONS(1217), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1215), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1215), - [aux_sym_visual_host_key_token1] = ACTIONS(1215), - [aux_sym_xauth_location_token1] = ACTIONS(1215), + [ts_builtin_sym_end] = ACTIONS(1220), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(1224), + [aux_sym_match_token1] = ACTIONS(1220), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1220), + [aux_sym_address_family_token1] = ACTIONS(1220), + [aux_sym_batch_mode_token1] = ACTIONS(1220), + [aux_sym_bind_address_token1] = ACTIONS(1220), + [aux_sym_bind_interface_token1] = ACTIONS(1220), + [aux_sym_canonical_domains_token1] = ACTIONS(1220), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1220), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1220), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1220), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1220), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1220), + [aux_sym_certificate_file_token1] = ACTIONS(1220), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1220), + [aux_sym_check_host_ip_token1] = ACTIONS(1220), + [aux_sym_ciphers_token1] = ACTIONS(1220), + [aux_sym_cipher_token1] = ACTIONS(1222), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1220), + [aux_sym_compression_token1] = ACTIONS(1220), + [aux_sym_connection_attempts_token1] = ACTIONS(1220), + [aux_sym_connect_timeout_token1] = ACTIONS(1220), + [aux_sym_control_master_token1] = ACTIONS(1220), + [aux_sym_control_path_token1] = ACTIONS(1220), + [aux_sym_control_persist_token1] = ACTIONS(1220), + [aux_sym_dynamic_forward_token1] = ACTIONS(1220), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1220), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1220), + [aux_sym_escape_char_token1] = ACTIONS(1220), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1220), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1220), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1220), + [aux_sym_forward_agent_token1] = ACTIONS(1220), + [aux_sym_forward_x11_token1] = ACTIONS(1222), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1220), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1220), + [aux_sym_gateway_ports_token1] = ACTIONS(1220), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1220), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1220), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1220), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1220), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1220), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1220), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1220), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1220), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1220), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1220), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1220), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1220), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1220), + [aux_sym_host_key_alias_token1] = ACTIONS(1220), + [aux_sym_hostname_token1] = ACTIONS(1220), + [aux_sym_identities_only_token1] = ACTIONS(1220), + [aux_sym_identity_agent_token1] = ACTIONS(1220), + [aux_sym_identity_file_token1] = ACTIONS(1220), + [aux_sym_ignore_unknown_token1] = ACTIONS(1220), + [aux_sym_include_token1] = ACTIONS(1220), + [aux_sym_ip_qos_token1] = ACTIONS(1220), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1220), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1220), + [aux_sym_kex_algorithms_token1] = ACTIONS(1220), + [aux_sym_known_hosts_command_token1] = ACTIONS(1220), + [aux_sym_local_command_token1] = ACTIONS(1220), + [aux_sym_local_forward_token1] = ACTIONS(1220), + [aux_sym_log_level_token1] = ACTIONS(1220), + [aux_sym_log_verbose_token1] = ACTIONS(1220), + [aux_sym_macs_token1] = ACTIONS(1220), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1220), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1220), + [aux_sym_password_authentication_token1] = ACTIONS(1220), + [aux_sym_permit_local_command_token1] = ACTIONS(1220), + [aux_sym_permit_remote_open_token1] = ACTIONS(1220), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1220), + [aux_sym_port_token1] = ACTIONS(1220), + [aux_sym_preferred_authentications_token1] = ACTIONS(1220), + [aux_sym_protocol_token1] = ACTIONS(1220), + [aux_sym_proxy_command_token1] = ACTIONS(1220), + [aux_sym_proxy_jump_token1] = ACTIONS(1220), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1220), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1220), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1220), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1220), + [aux_sym_rekey_limit_token1] = ACTIONS(1220), + [aux_sym_remote_command_token1] = ACTIONS(1220), + [aux_sym_remote_forward_token1] = ACTIONS(1220), + [aux_sym_request_tty_token1] = ACTIONS(1220), + [aux_sym_required_rsa_size_token1] = ACTIONS(1220), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1220), + [aux_sym_security_key_provider_token1] = ACTIONS(1220), + [aux_sym_send_env_token1] = ACTIONS(1220), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1220), + [aux_sym_server_alive_interval_token1] = ACTIONS(1220), + [aux_sym_session_type_token1] = ACTIONS(1220), + [aux_sym_set_env_token1] = ACTIONS(1220), + [aux_sym_stdin_null_token1] = ACTIONS(1220), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1220), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1220), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1220), + [aux_sym_syslog_facility_token1] = ACTIONS(1220), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1220), + [aux_sym_keep_alive_token1] = ACTIONS(1220), + [aux_sym_tunnel_token1] = ACTIONS(1222), + [aux_sym_tunnel_device_token1] = ACTIONS(1220), + [aux_sym_update_host_keys_token1] = ACTIONS(1220), + [aux_sym_use_keychain_token1] = ACTIONS(1220), + [aux_sym_use_roaming_token1] = ACTIONS(1220), + [aux_sym_user_token1] = ACTIONS(1222), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1220), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1220), + [aux_sym_visual_host_key_token1] = ACTIONS(1220), + [aux_sym_xauth_location_token1] = ACTIONS(1220), }, [114] = { - [ts_builtin_sym_end] = ACTIONS(1221), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(1225), - [aux_sym_match_token1] = ACTIONS(1221), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1221), - [aux_sym_address_family_token1] = ACTIONS(1221), - [aux_sym_batch_mode_token1] = ACTIONS(1221), - [aux_sym_bind_address_token1] = ACTIONS(1221), - [aux_sym_bind_interface_token1] = ACTIONS(1221), - [aux_sym_canonical_domains_token1] = ACTIONS(1221), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1221), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1221), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1221), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1221), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1221), - [aux_sym_certificate_file_token1] = ACTIONS(1221), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1221), - [aux_sym_check_host_ip_token1] = ACTIONS(1221), - [aux_sym_ciphers_token1] = ACTIONS(1221), - [aux_sym_cipher_token1] = ACTIONS(1223), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1221), - [aux_sym_compression_token1] = ACTIONS(1221), - [aux_sym_connection_attempts_token1] = ACTIONS(1221), - [aux_sym_connect_timeout_token1] = ACTIONS(1221), - [aux_sym_control_master_token1] = ACTIONS(1221), - [aux_sym_control_path_token1] = ACTIONS(1221), - [aux_sym_control_persist_token1] = ACTIONS(1221), - [aux_sym_dynamic_forward_token1] = ACTIONS(1221), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1221), - [aux_sym_escape_char_token1] = ACTIONS(1221), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1221), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1221), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1221), - [aux_sym_forward_agent_token1] = ACTIONS(1221), - [aux_sym_forward_x11_token1] = ACTIONS(1223), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1221), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1221), - [aux_sym_gateway_ports_token1] = ACTIONS(1221), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1221), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1221), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1221), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1221), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1221), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1221), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1221), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1221), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1221), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1221), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1221), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1221), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1221), - [aux_sym_host_key_alias_token1] = ACTIONS(1221), - [aux_sym_hostname_token1] = ACTIONS(1221), - [aux_sym_identities_only_token1] = ACTIONS(1221), - [aux_sym_identity_agent_token1] = ACTIONS(1221), - [aux_sym_identity_file_token1] = ACTIONS(1221), - [aux_sym_ignore_unknown_token1] = ACTIONS(1221), - [aux_sym_include_token1] = ACTIONS(1221), - [aux_sym_ip_qos_token1] = ACTIONS(1221), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1221), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1221), - [aux_sym_kex_algorithms_token1] = ACTIONS(1221), - [aux_sym_known_hosts_command_token1] = ACTIONS(1221), - [aux_sym_local_command_token1] = ACTIONS(1221), - [aux_sym_local_forward_token1] = ACTIONS(1221), - [aux_sym_log_level_token1] = ACTIONS(1221), - [aux_sym_log_verbose_token1] = ACTIONS(1221), - [aux_sym_macs_token1] = ACTIONS(1221), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1221), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1221), - [aux_sym_password_authentication_token1] = ACTIONS(1221), - [aux_sym_permit_local_command_token1] = ACTIONS(1221), - [aux_sym_permit_remote_open_token1] = ACTIONS(1221), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1221), - [aux_sym_port_token1] = ACTIONS(1221), - [aux_sym_preferred_authentications_token1] = ACTIONS(1221), - [aux_sym_protocol_token1] = ACTIONS(1221), - [aux_sym_proxy_command_token1] = ACTIONS(1221), - [aux_sym_proxy_jump_token1] = ACTIONS(1221), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1221), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1221), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1221), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1221), - [aux_sym_rekey_limit_token1] = ACTIONS(1221), - [aux_sym_remote_command_token1] = ACTIONS(1221), - [aux_sym_remote_forward_token1] = ACTIONS(1221), - [aux_sym_request_tty_token1] = ACTIONS(1221), - [aux_sym_required_rsa_size_token1] = ACTIONS(1221), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1221), - [aux_sym_security_key_provider_token1] = ACTIONS(1221), - [aux_sym_send_env_token1] = ACTIONS(1221), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1221), - [aux_sym_server_alive_interval_token1] = ACTIONS(1221), - [aux_sym_session_type_token1] = ACTIONS(1221), - [aux_sym_set_env_token1] = ACTIONS(1221), - [aux_sym_stdin_null_token1] = ACTIONS(1221), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1221), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1221), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1221), - [aux_sym_syslog_facility_token1] = ACTIONS(1221), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1221), - [aux_sym_keep_alive_token1] = ACTIONS(1221), - [aux_sym_tunnel_token1] = ACTIONS(1223), - [aux_sym_tunnel_device_token1] = ACTIONS(1221), - [aux_sym_update_host_keys_token1] = ACTIONS(1221), - [aux_sym_use_keychain_token1] = ACTIONS(1221), - [aux_sym_use_roaming_token1] = ACTIONS(1221), - [aux_sym_user_token1] = ACTIONS(1223), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1221), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1221), - [aux_sym_visual_host_key_token1] = ACTIONS(1221), - [aux_sym_xauth_location_token1] = ACTIONS(1221), + [ts_builtin_sym_end] = ACTIONS(1226), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1228), + [anon_sym_DQUOTE] = ACTIONS(1230), + [aux_sym_match_token1] = ACTIONS(1226), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1226), + [aux_sym_address_family_token1] = ACTIONS(1226), + [aux_sym_batch_mode_token1] = ACTIONS(1226), + [aux_sym_bind_address_token1] = ACTIONS(1226), + [aux_sym_bind_interface_token1] = ACTIONS(1226), + [aux_sym_canonical_domains_token1] = ACTIONS(1226), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1226), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1226), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1226), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1226), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1226), + [aux_sym_certificate_file_token1] = ACTIONS(1226), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1226), + [aux_sym_check_host_ip_token1] = ACTIONS(1226), + [aux_sym_ciphers_token1] = ACTIONS(1226), + [aux_sym_cipher_token1] = ACTIONS(1228), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1226), + [aux_sym_compression_token1] = ACTIONS(1226), + [aux_sym_connection_attempts_token1] = ACTIONS(1226), + [aux_sym_connect_timeout_token1] = ACTIONS(1226), + [aux_sym_control_master_token1] = ACTIONS(1226), + [aux_sym_control_path_token1] = ACTIONS(1226), + [aux_sym_control_persist_token1] = ACTIONS(1226), + [aux_sym_dynamic_forward_token1] = ACTIONS(1226), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1226), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1226), + [aux_sym_escape_char_token1] = ACTIONS(1226), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1226), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1226), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1226), + [aux_sym_forward_agent_token1] = ACTIONS(1226), + [aux_sym_forward_x11_token1] = ACTIONS(1228), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1226), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1226), + [aux_sym_gateway_ports_token1] = ACTIONS(1226), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1226), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1226), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1226), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1226), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1226), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1226), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1226), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1226), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1226), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1226), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1226), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1226), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1226), + [aux_sym_host_key_alias_token1] = ACTIONS(1226), + [aux_sym_hostname_token1] = ACTIONS(1226), + [aux_sym_identities_only_token1] = ACTIONS(1226), + [aux_sym_identity_agent_token1] = ACTIONS(1226), + [aux_sym_identity_file_token1] = ACTIONS(1226), + [aux_sym_ignore_unknown_token1] = ACTIONS(1226), + [aux_sym_include_token1] = ACTIONS(1226), + [aux_sym_ip_qos_token1] = ACTIONS(1226), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1226), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1226), + [aux_sym_kex_algorithms_token1] = ACTIONS(1226), + [aux_sym_known_hosts_command_token1] = ACTIONS(1226), + [aux_sym_local_command_token1] = ACTIONS(1226), + [aux_sym_local_forward_token1] = ACTIONS(1226), + [aux_sym_log_level_token1] = ACTIONS(1226), + [aux_sym_log_verbose_token1] = ACTIONS(1226), + [aux_sym_macs_token1] = ACTIONS(1226), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1226), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1226), + [aux_sym_password_authentication_token1] = ACTIONS(1226), + [aux_sym_permit_local_command_token1] = ACTIONS(1226), + [aux_sym_permit_remote_open_token1] = ACTIONS(1226), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1226), + [aux_sym_port_token1] = ACTIONS(1226), + [aux_sym_preferred_authentications_token1] = ACTIONS(1226), + [aux_sym_protocol_token1] = ACTIONS(1226), + [aux_sym_proxy_command_token1] = ACTIONS(1226), + [aux_sym_proxy_jump_token1] = ACTIONS(1226), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1226), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1226), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1226), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1226), + [aux_sym_rekey_limit_token1] = ACTIONS(1226), + [aux_sym_remote_command_token1] = ACTIONS(1226), + [aux_sym_remote_forward_token1] = ACTIONS(1226), + [aux_sym_request_tty_token1] = ACTIONS(1226), + [aux_sym_required_rsa_size_token1] = ACTIONS(1226), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1226), + [aux_sym_security_key_provider_token1] = ACTIONS(1226), + [aux_sym_send_env_token1] = ACTIONS(1226), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1226), + [aux_sym_server_alive_interval_token1] = ACTIONS(1226), + [aux_sym_session_type_token1] = ACTIONS(1226), + [aux_sym_set_env_token1] = ACTIONS(1226), + [aux_sym_stdin_null_token1] = ACTIONS(1226), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1226), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1226), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1226), + [aux_sym_syslog_facility_token1] = ACTIONS(1226), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1226), + [aux_sym_keep_alive_token1] = ACTIONS(1226), + [aux_sym_tunnel_token1] = ACTIONS(1228), + [aux_sym_tunnel_device_token1] = ACTIONS(1226), + [aux_sym_update_host_keys_token1] = ACTIONS(1226), + [aux_sym_use_keychain_token1] = ACTIONS(1226), + [aux_sym_use_roaming_token1] = ACTIONS(1226), + [aux_sym_user_token1] = ACTIONS(1228), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1226), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1226), + [aux_sym_visual_host_key_token1] = ACTIONS(1226), + [aux_sym_xauth_location_token1] = ACTIONS(1226), }, [115] = { - [ts_builtin_sym_end] = ACTIONS(1227), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1229), - [anon_sym_DQUOTE] = ACTIONS(1231), - [aux_sym_match_token1] = ACTIONS(1227), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1227), - [aux_sym_address_family_token1] = ACTIONS(1227), - [aux_sym_batch_mode_token1] = ACTIONS(1227), - [aux_sym_bind_address_token1] = ACTIONS(1227), - [aux_sym_bind_interface_token1] = ACTIONS(1227), - [aux_sym_canonical_domains_token1] = ACTIONS(1227), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1227), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1227), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1227), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1227), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1227), - [aux_sym_certificate_file_token1] = ACTIONS(1227), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1227), - [aux_sym_check_host_ip_token1] = ACTIONS(1227), - [aux_sym_ciphers_token1] = ACTIONS(1227), - [aux_sym_cipher_token1] = ACTIONS(1229), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1227), - [aux_sym_compression_token1] = ACTIONS(1227), - [aux_sym_connection_attempts_token1] = ACTIONS(1227), - [aux_sym_connect_timeout_token1] = ACTIONS(1227), - [aux_sym_control_master_token1] = ACTIONS(1227), - [aux_sym_control_path_token1] = ACTIONS(1227), - [aux_sym_control_persist_token1] = ACTIONS(1227), - [aux_sym_dynamic_forward_token1] = ACTIONS(1227), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1227), - [aux_sym_escape_char_token1] = ACTIONS(1227), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1227), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1227), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1227), - [aux_sym_forward_agent_token1] = ACTIONS(1227), - [aux_sym_forward_x11_token1] = ACTIONS(1229), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1227), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1227), - [aux_sym_gateway_ports_token1] = ACTIONS(1227), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1227), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1227), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1227), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1227), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1227), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1227), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1227), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1227), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1227), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1227), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1227), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1227), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1227), - [aux_sym_host_key_alias_token1] = ACTIONS(1227), - [aux_sym_hostname_token1] = ACTIONS(1227), - [aux_sym_identities_only_token1] = ACTIONS(1227), - [aux_sym_identity_agent_token1] = ACTIONS(1227), - [aux_sym_identity_file_token1] = ACTIONS(1227), - [aux_sym_ignore_unknown_token1] = ACTIONS(1227), - [aux_sym_include_token1] = ACTIONS(1227), - [aux_sym_ip_qos_token1] = ACTIONS(1227), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1227), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1227), - [aux_sym_kex_algorithms_token1] = ACTIONS(1227), - [aux_sym_known_hosts_command_token1] = ACTIONS(1227), - [aux_sym_local_command_token1] = ACTIONS(1227), - [aux_sym_local_forward_token1] = ACTIONS(1227), - [aux_sym_log_level_token1] = ACTIONS(1227), - [aux_sym_log_verbose_token1] = ACTIONS(1227), - [aux_sym_macs_token1] = ACTIONS(1227), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1227), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1227), - [aux_sym_password_authentication_token1] = ACTIONS(1227), - [aux_sym_permit_local_command_token1] = ACTIONS(1227), - [aux_sym_permit_remote_open_token1] = ACTIONS(1227), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1227), - [aux_sym_port_token1] = ACTIONS(1227), - [aux_sym_preferred_authentications_token1] = ACTIONS(1227), - [aux_sym_protocol_token1] = ACTIONS(1227), - [aux_sym_proxy_command_token1] = ACTIONS(1227), - [aux_sym_proxy_jump_token1] = ACTIONS(1227), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1227), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1227), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1227), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1227), - [aux_sym_rekey_limit_token1] = ACTIONS(1227), - [aux_sym_remote_command_token1] = ACTIONS(1227), - [aux_sym_remote_forward_token1] = ACTIONS(1227), - [aux_sym_request_tty_token1] = ACTIONS(1227), - [aux_sym_required_rsa_size_token1] = ACTIONS(1227), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1227), - [aux_sym_security_key_provider_token1] = ACTIONS(1227), - [aux_sym_send_env_token1] = ACTIONS(1227), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1227), - [aux_sym_server_alive_interval_token1] = ACTIONS(1227), - [aux_sym_session_type_token1] = ACTIONS(1227), - [aux_sym_set_env_token1] = ACTIONS(1227), - [aux_sym_stdin_null_token1] = ACTIONS(1227), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1227), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1227), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1227), - [aux_sym_syslog_facility_token1] = ACTIONS(1227), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1227), - [aux_sym_keep_alive_token1] = ACTIONS(1227), - [aux_sym_tunnel_token1] = ACTIONS(1229), - [aux_sym_tunnel_device_token1] = ACTIONS(1227), - [aux_sym_update_host_keys_token1] = ACTIONS(1227), - [aux_sym_use_keychain_token1] = ACTIONS(1227), - [aux_sym_use_roaming_token1] = ACTIONS(1227), - [aux_sym_user_token1] = ACTIONS(1229), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1227), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1227), - [aux_sym_visual_host_key_token1] = ACTIONS(1227), - [aux_sym_xauth_location_token1] = ACTIONS(1227), + [ts_builtin_sym_end] = ACTIONS(1232), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1236), + [aux_sym_match_token1] = ACTIONS(1232), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1232), + [aux_sym_address_family_token1] = ACTIONS(1232), + [aux_sym_batch_mode_token1] = ACTIONS(1232), + [aux_sym_bind_address_token1] = ACTIONS(1232), + [aux_sym_bind_interface_token1] = ACTIONS(1232), + [aux_sym_canonical_domains_token1] = ACTIONS(1232), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1232), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1232), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1232), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1232), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1232), + [aux_sym_certificate_file_token1] = ACTIONS(1232), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1232), + [aux_sym_check_host_ip_token1] = ACTIONS(1232), + [aux_sym_ciphers_token1] = ACTIONS(1232), + [aux_sym_cipher_token1] = ACTIONS(1234), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1232), + [aux_sym_compression_token1] = ACTIONS(1232), + [aux_sym_connection_attempts_token1] = ACTIONS(1232), + [aux_sym_connect_timeout_token1] = ACTIONS(1232), + [aux_sym_control_master_token1] = ACTIONS(1232), + [aux_sym_control_path_token1] = ACTIONS(1232), + [aux_sym_control_persist_token1] = ACTIONS(1232), + [aux_sym_dynamic_forward_token1] = ACTIONS(1232), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1232), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1232), + [aux_sym_escape_char_token1] = ACTIONS(1232), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1232), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1232), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1232), + [aux_sym_forward_agent_token1] = ACTIONS(1232), + [aux_sym_forward_x11_token1] = ACTIONS(1234), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1232), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1232), + [aux_sym_gateway_ports_token1] = ACTIONS(1232), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1232), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1232), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1232), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1232), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1232), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1232), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1232), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1232), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1232), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1232), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1232), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1232), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1232), + [aux_sym_host_key_alias_token1] = ACTIONS(1232), + [aux_sym_hostname_token1] = ACTIONS(1232), + [aux_sym_identities_only_token1] = ACTIONS(1232), + [aux_sym_identity_agent_token1] = ACTIONS(1232), + [aux_sym_identity_file_token1] = ACTIONS(1232), + [aux_sym_ignore_unknown_token1] = ACTIONS(1232), + [aux_sym_include_token1] = ACTIONS(1232), + [aux_sym_ip_qos_token1] = ACTIONS(1232), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1232), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1232), + [aux_sym_kex_algorithms_token1] = ACTIONS(1232), + [aux_sym_known_hosts_command_token1] = ACTIONS(1232), + [aux_sym_local_command_token1] = ACTIONS(1232), + [aux_sym_local_forward_token1] = ACTIONS(1232), + [aux_sym_log_level_token1] = ACTIONS(1232), + [aux_sym_log_verbose_token1] = ACTIONS(1232), + [aux_sym_macs_token1] = ACTIONS(1232), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1232), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1232), + [aux_sym_password_authentication_token1] = ACTIONS(1232), + [aux_sym_permit_local_command_token1] = ACTIONS(1232), + [aux_sym_permit_remote_open_token1] = ACTIONS(1232), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1232), + [aux_sym_port_token1] = ACTIONS(1232), + [aux_sym_preferred_authentications_token1] = ACTIONS(1232), + [aux_sym_protocol_token1] = ACTIONS(1232), + [aux_sym_proxy_command_token1] = ACTIONS(1232), + [aux_sym_proxy_jump_token1] = ACTIONS(1232), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1232), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1232), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1232), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1232), + [aux_sym_rekey_limit_token1] = ACTIONS(1232), + [aux_sym_remote_command_token1] = ACTIONS(1232), + [aux_sym_remote_forward_token1] = ACTIONS(1232), + [aux_sym_request_tty_token1] = ACTIONS(1232), + [aux_sym_required_rsa_size_token1] = ACTIONS(1232), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1232), + [aux_sym_security_key_provider_token1] = ACTIONS(1232), + [aux_sym_send_env_token1] = ACTIONS(1232), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1232), + [aux_sym_server_alive_interval_token1] = ACTIONS(1232), + [aux_sym_session_type_token1] = ACTIONS(1232), + [aux_sym_set_env_token1] = ACTIONS(1232), + [aux_sym_stdin_null_token1] = ACTIONS(1232), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1232), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1232), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1232), + [aux_sym_syslog_facility_token1] = ACTIONS(1232), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1232), + [aux_sym_keep_alive_token1] = ACTIONS(1232), + [aux_sym_tunnel_token1] = ACTIONS(1234), + [aux_sym_tunnel_device_token1] = ACTIONS(1232), + [aux_sym_update_host_keys_token1] = ACTIONS(1232), + [aux_sym_use_keychain_token1] = ACTIONS(1232), + [aux_sym_use_roaming_token1] = ACTIONS(1232), + [aux_sym_user_token1] = ACTIONS(1234), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1232), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1232), + [aux_sym_visual_host_key_token1] = ACTIONS(1232), + [aux_sym_xauth_location_token1] = ACTIONS(1232), }, [116] = { - [ts_builtin_sym_end] = ACTIONS(1233), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1235), - [anon_sym_DQUOTE] = ACTIONS(1237), - [aux_sym_match_token1] = ACTIONS(1233), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1233), - [aux_sym_address_family_token1] = ACTIONS(1233), - [aux_sym_batch_mode_token1] = ACTIONS(1233), - [aux_sym_bind_address_token1] = ACTIONS(1233), - [aux_sym_bind_interface_token1] = ACTIONS(1233), - [aux_sym_canonical_domains_token1] = ACTIONS(1233), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1233), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1233), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1233), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1233), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1233), - [aux_sym_certificate_file_token1] = ACTIONS(1233), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1233), - [aux_sym_check_host_ip_token1] = ACTIONS(1233), - [aux_sym_ciphers_token1] = ACTIONS(1233), - [aux_sym_cipher_token1] = ACTIONS(1235), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1233), - [aux_sym_compression_token1] = ACTIONS(1233), - [aux_sym_connection_attempts_token1] = ACTIONS(1233), - [aux_sym_connect_timeout_token1] = ACTIONS(1233), - [aux_sym_control_master_token1] = ACTIONS(1233), - [aux_sym_control_path_token1] = ACTIONS(1233), - [aux_sym_control_persist_token1] = ACTIONS(1233), - [aux_sym_dynamic_forward_token1] = ACTIONS(1233), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1233), - [aux_sym_escape_char_token1] = ACTIONS(1233), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1233), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1233), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1233), - [aux_sym_forward_agent_token1] = ACTIONS(1233), - [aux_sym_forward_x11_token1] = ACTIONS(1235), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1233), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1233), - [aux_sym_gateway_ports_token1] = ACTIONS(1233), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1233), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1233), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1233), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1233), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1233), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1233), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1233), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1233), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1233), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1233), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1233), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1233), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1233), - [aux_sym_host_key_alias_token1] = ACTIONS(1233), - [aux_sym_hostname_token1] = ACTIONS(1233), - [aux_sym_identities_only_token1] = ACTIONS(1233), - [aux_sym_identity_agent_token1] = ACTIONS(1233), - [aux_sym_identity_file_token1] = ACTIONS(1233), - [aux_sym_ignore_unknown_token1] = ACTIONS(1233), - [aux_sym_include_token1] = ACTIONS(1233), - [aux_sym_ip_qos_token1] = ACTIONS(1233), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1233), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1233), - [aux_sym_kex_algorithms_token1] = ACTIONS(1233), - [aux_sym_known_hosts_command_token1] = ACTIONS(1233), - [aux_sym_local_command_token1] = ACTIONS(1233), - [aux_sym_local_forward_token1] = ACTIONS(1233), - [aux_sym_log_level_token1] = ACTIONS(1233), - [aux_sym_log_verbose_token1] = ACTIONS(1233), - [aux_sym_macs_token1] = ACTIONS(1233), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1233), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1233), - [aux_sym_password_authentication_token1] = ACTIONS(1233), - [aux_sym_permit_local_command_token1] = ACTIONS(1233), - [aux_sym_permit_remote_open_token1] = ACTIONS(1233), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1233), - [aux_sym_port_token1] = ACTIONS(1233), - [aux_sym_preferred_authentications_token1] = ACTIONS(1233), - [aux_sym_protocol_token1] = ACTIONS(1233), - [aux_sym_proxy_command_token1] = ACTIONS(1233), - [aux_sym_proxy_jump_token1] = ACTIONS(1233), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1233), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1233), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1233), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1233), - [aux_sym_rekey_limit_token1] = ACTIONS(1233), - [aux_sym_remote_command_token1] = ACTIONS(1233), - [aux_sym_remote_forward_token1] = ACTIONS(1233), - [aux_sym_request_tty_token1] = ACTIONS(1233), - [aux_sym_required_rsa_size_token1] = ACTIONS(1233), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1233), - [aux_sym_security_key_provider_token1] = ACTIONS(1233), - [aux_sym_send_env_token1] = ACTIONS(1233), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1233), - [aux_sym_server_alive_interval_token1] = ACTIONS(1233), - [aux_sym_session_type_token1] = ACTIONS(1233), - [aux_sym_set_env_token1] = ACTIONS(1233), - [aux_sym_stdin_null_token1] = ACTIONS(1233), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1233), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1233), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1233), - [aux_sym_syslog_facility_token1] = ACTIONS(1233), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1233), - [aux_sym_keep_alive_token1] = ACTIONS(1233), - [aux_sym_tunnel_token1] = ACTIONS(1235), - [aux_sym_tunnel_device_token1] = ACTIONS(1233), - [aux_sym_update_host_keys_token1] = ACTIONS(1233), - [aux_sym_use_keychain_token1] = ACTIONS(1233), - [aux_sym_use_roaming_token1] = ACTIONS(1233), - [aux_sym_user_token1] = ACTIONS(1235), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1233), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1233), - [aux_sym_visual_host_key_token1] = ACTIONS(1233), - [aux_sym_xauth_location_token1] = ACTIONS(1233), + [ts_builtin_sym_end] = ACTIONS(1238), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1242), + [aux_sym_match_token1] = ACTIONS(1238), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1238), + [aux_sym_address_family_token1] = ACTIONS(1238), + [aux_sym_batch_mode_token1] = ACTIONS(1238), + [aux_sym_bind_address_token1] = ACTIONS(1238), + [aux_sym_bind_interface_token1] = ACTIONS(1238), + [aux_sym_canonical_domains_token1] = ACTIONS(1238), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1238), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1238), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1238), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1238), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1238), + [aux_sym_certificate_file_token1] = ACTIONS(1238), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1238), + [aux_sym_check_host_ip_token1] = ACTIONS(1238), + [aux_sym_ciphers_token1] = ACTIONS(1238), + [aux_sym_cipher_token1] = ACTIONS(1240), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1238), + [aux_sym_compression_token1] = ACTIONS(1238), + [aux_sym_connection_attempts_token1] = ACTIONS(1238), + [aux_sym_connect_timeout_token1] = ACTIONS(1238), + [aux_sym_control_master_token1] = ACTIONS(1238), + [aux_sym_control_path_token1] = ACTIONS(1238), + [aux_sym_control_persist_token1] = ACTIONS(1238), + [aux_sym_dynamic_forward_token1] = ACTIONS(1238), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1238), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1238), + [aux_sym_escape_char_token1] = ACTIONS(1238), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1238), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1238), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1238), + [aux_sym_forward_agent_token1] = ACTIONS(1238), + [aux_sym_forward_x11_token1] = ACTIONS(1240), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1238), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1238), + [aux_sym_gateway_ports_token1] = ACTIONS(1238), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1238), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1238), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1238), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1238), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1238), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1238), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1238), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1238), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1238), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1238), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1238), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1238), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1238), + [aux_sym_host_key_alias_token1] = ACTIONS(1238), + [aux_sym_hostname_token1] = ACTIONS(1238), + [aux_sym_identities_only_token1] = ACTIONS(1238), + [aux_sym_identity_agent_token1] = ACTIONS(1238), + [aux_sym_identity_file_token1] = ACTIONS(1238), + [aux_sym_ignore_unknown_token1] = ACTIONS(1238), + [aux_sym_include_token1] = ACTIONS(1238), + [aux_sym_ip_qos_token1] = ACTIONS(1238), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1238), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1238), + [aux_sym_kex_algorithms_token1] = ACTIONS(1238), + [aux_sym_known_hosts_command_token1] = ACTIONS(1238), + [aux_sym_local_command_token1] = ACTIONS(1238), + [aux_sym_local_forward_token1] = ACTIONS(1238), + [aux_sym_log_level_token1] = ACTIONS(1238), + [aux_sym_log_verbose_token1] = ACTIONS(1238), + [aux_sym_macs_token1] = ACTIONS(1238), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1238), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1238), + [aux_sym_password_authentication_token1] = ACTIONS(1238), + [aux_sym_permit_local_command_token1] = ACTIONS(1238), + [aux_sym_permit_remote_open_token1] = ACTIONS(1238), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1238), + [aux_sym_port_token1] = ACTIONS(1238), + [aux_sym_preferred_authentications_token1] = ACTIONS(1238), + [aux_sym_protocol_token1] = ACTIONS(1238), + [aux_sym_proxy_command_token1] = ACTIONS(1238), + [aux_sym_proxy_jump_token1] = ACTIONS(1238), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1238), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1238), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1238), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1238), + [aux_sym_rekey_limit_token1] = ACTIONS(1238), + [aux_sym_remote_command_token1] = ACTIONS(1238), + [aux_sym_remote_forward_token1] = ACTIONS(1238), + [aux_sym_request_tty_token1] = ACTIONS(1238), + [aux_sym_required_rsa_size_token1] = ACTIONS(1238), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1238), + [aux_sym_security_key_provider_token1] = ACTIONS(1238), + [aux_sym_send_env_token1] = ACTIONS(1238), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1238), + [aux_sym_server_alive_interval_token1] = ACTIONS(1238), + [aux_sym_session_type_token1] = ACTIONS(1238), + [aux_sym_set_env_token1] = ACTIONS(1238), + [aux_sym_stdin_null_token1] = ACTIONS(1238), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1238), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1238), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1238), + [aux_sym_syslog_facility_token1] = ACTIONS(1238), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1238), + [aux_sym_keep_alive_token1] = ACTIONS(1238), + [aux_sym_tunnel_token1] = ACTIONS(1240), + [aux_sym_tunnel_device_token1] = ACTIONS(1238), + [aux_sym_update_host_keys_token1] = ACTIONS(1238), + [aux_sym_use_keychain_token1] = ACTIONS(1238), + [aux_sym_use_roaming_token1] = ACTIONS(1238), + [aux_sym_user_token1] = ACTIONS(1240), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1238), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1238), + [aux_sym_visual_host_key_token1] = ACTIONS(1238), + [aux_sym_xauth_location_token1] = ACTIONS(1238), }, [117] = { - [ts_builtin_sym_end] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1243), - [aux_sym_match_token1] = ACTIONS(1239), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1239), - [aux_sym_address_family_token1] = ACTIONS(1239), - [aux_sym_batch_mode_token1] = ACTIONS(1239), - [aux_sym_bind_address_token1] = ACTIONS(1239), - [aux_sym_bind_interface_token1] = ACTIONS(1239), - [aux_sym_canonical_domains_token1] = ACTIONS(1239), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1239), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1239), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1239), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1239), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1239), - [aux_sym_certificate_file_token1] = ACTIONS(1239), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1239), - [aux_sym_check_host_ip_token1] = ACTIONS(1239), - [aux_sym_ciphers_token1] = ACTIONS(1239), - [aux_sym_cipher_token1] = ACTIONS(1241), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1239), - [aux_sym_compression_token1] = ACTIONS(1239), - [aux_sym_connection_attempts_token1] = ACTIONS(1239), - [aux_sym_connect_timeout_token1] = ACTIONS(1239), - [aux_sym_control_master_token1] = ACTIONS(1239), - [aux_sym_control_path_token1] = ACTIONS(1239), - [aux_sym_control_persist_token1] = ACTIONS(1239), - [aux_sym_dynamic_forward_token1] = ACTIONS(1239), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1239), - [aux_sym_escape_char_token1] = ACTIONS(1239), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1239), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1239), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1239), - [aux_sym_forward_agent_token1] = ACTIONS(1239), - [aux_sym_forward_x11_token1] = ACTIONS(1241), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1239), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1239), - [aux_sym_gateway_ports_token1] = ACTIONS(1239), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1239), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1239), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1239), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1239), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1239), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1239), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1239), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1239), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1239), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1239), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1239), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1239), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1239), - [aux_sym_host_key_alias_token1] = ACTIONS(1239), - [aux_sym_hostname_token1] = ACTIONS(1239), - [aux_sym_identities_only_token1] = ACTIONS(1239), - [aux_sym_identity_agent_token1] = ACTIONS(1239), - [aux_sym_identity_file_token1] = ACTIONS(1239), - [aux_sym_ignore_unknown_token1] = ACTIONS(1239), - [aux_sym_include_token1] = ACTIONS(1239), - [aux_sym_ip_qos_token1] = ACTIONS(1239), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1239), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1239), - [aux_sym_kex_algorithms_token1] = ACTIONS(1239), - [aux_sym_known_hosts_command_token1] = ACTIONS(1239), - [aux_sym_local_command_token1] = ACTIONS(1239), - [aux_sym_local_forward_token1] = ACTIONS(1239), - [aux_sym_log_level_token1] = ACTIONS(1239), - [aux_sym_log_verbose_token1] = ACTIONS(1239), - [aux_sym_macs_token1] = ACTIONS(1239), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1239), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1239), - [aux_sym_password_authentication_token1] = ACTIONS(1239), - [aux_sym_permit_local_command_token1] = ACTIONS(1239), - [aux_sym_permit_remote_open_token1] = ACTIONS(1239), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1239), - [aux_sym_port_token1] = ACTIONS(1239), - [aux_sym_preferred_authentications_token1] = ACTIONS(1239), - [aux_sym_protocol_token1] = ACTIONS(1239), - [aux_sym_proxy_command_token1] = ACTIONS(1239), - [aux_sym_proxy_jump_token1] = ACTIONS(1239), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1239), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1239), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1239), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1239), - [aux_sym_rekey_limit_token1] = ACTIONS(1239), - [aux_sym_remote_command_token1] = ACTIONS(1239), - [aux_sym_remote_forward_token1] = ACTIONS(1239), - [aux_sym_request_tty_token1] = ACTIONS(1239), - [aux_sym_required_rsa_size_token1] = ACTIONS(1239), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1239), - [aux_sym_security_key_provider_token1] = ACTIONS(1239), - [aux_sym_send_env_token1] = ACTIONS(1239), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1239), - [aux_sym_server_alive_interval_token1] = ACTIONS(1239), - [aux_sym_session_type_token1] = ACTIONS(1239), - [aux_sym_set_env_token1] = ACTIONS(1239), - [aux_sym_stdin_null_token1] = ACTIONS(1239), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1239), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1239), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1239), - [aux_sym_syslog_facility_token1] = ACTIONS(1239), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1239), - [aux_sym_keep_alive_token1] = ACTIONS(1239), - [aux_sym_tunnel_token1] = ACTIONS(1241), - [aux_sym_tunnel_device_token1] = ACTIONS(1239), - [aux_sym_update_host_keys_token1] = ACTIONS(1239), - [aux_sym_use_keychain_token1] = ACTIONS(1239), - [aux_sym_use_roaming_token1] = ACTIONS(1239), - [aux_sym_user_token1] = ACTIONS(1241), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1239), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1239), - [aux_sym_visual_host_key_token1] = ACTIONS(1239), - [aux_sym_xauth_location_token1] = ACTIONS(1239), + [ts_builtin_sym_end] = ACTIONS(1244), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1246), + [anon_sym_DQUOTE] = ACTIONS(1248), + [aux_sym_match_token1] = ACTIONS(1244), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1244), + [aux_sym_address_family_token1] = ACTIONS(1244), + [aux_sym_batch_mode_token1] = ACTIONS(1244), + [aux_sym_bind_address_token1] = ACTIONS(1244), + [aux_sym_bind_interface_token1] = ACTIONS(1244), + [aux_sym_canonical_domains_token1] = ACTIONS(1244), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1244), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1244), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1244), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1244), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1244), + [aux_sym_certificate_file_token1] = ACTIONS(1244), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1244), + [aux_sym_check_host_ip_token1] = ACTIONS(1244), + [aux_sym_ciphers_token1] = ACTIONS(1244), + [aux_sym_cipher_token1] = ACTIONS(1246), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1244), + [aux_sym_compression_token1] = ACTIONS(1244), + [aux_sym_connection_attempts_token1] = ACTIONS(1244), + [aux_sym_connect_timeout_token1] = ACTIONS(1244), + [aux_sym_control_master_token1] = ACTIONS(1244), + [aux_sym_control_path_token1] = ACTIONS(1244), + [aux_sym_control_persist_token1] = ACTIONS(1244), + [aux_sym_dynamic_forward_token1] = ACTIONS(1244), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1244), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1244), + [aux_sym_escape_char_token1] = ACTIONS(1244), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1244), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1244), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1244), + [aux_sym_forward_agent_token1] = ACTIONS(1244), + [aux_sym_forward_x11_token1] = ACTIONS(1246), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1244), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1244), + [aux_sym_gateway_ports_token1] = ACTIONS(1244), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1244), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1244), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1244), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1244), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1244), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1244), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1244), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1244), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1244), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1244), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1244), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1244), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1244), + [aux_sym_host_key_alias_token1] = ACTIONS(1244), + [aux_sym_hostname_token1] = ACTIONS(1244), + [aux_sym_identities_only_token1] = ACTIONS(1244), + [aux_sym_identity_agent_token1] = ACTIONS(1244), + [aux_sym_identity_file_token1] = ACTIONS(1244), + [aux_sym_ignore_unknown_token1] = ACTIONS(1244), + [aux_sym_include_token1] = ACTIONS(1244), + [aux_sym_ip_qos_token1] = ACTIONS(1244), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1244), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1244), + [aux_sym_kex_algorithms_token1] = ACTIONS(1244), + [aux_sym_known_hosts_command_token1] = ACTIONS(1244), + [aux_sym_local_command_token1] = ACTIONS(1244), + [aux_sym_local_forward_token1] = ACTIONS(1244), + [aux_sym_log_level_token1] = ACTIONS(1244), + [aux_sym_log_verbose_token1] = ACTIONS(1244), + [aux_sym_macs_token1] = ACTIONS(1244), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1244), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1244), + [aux_sym_password_authentication_token1] = ACTIONS(1244), + [aux_sym_permit_local_command_token1] = ACTIONS(1244), + [aux_sym_permit_remote_open_token1] = ACTIONS(1244), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1244), + [aux_sym_port_token1] = ACTIONS(1244), + [aux_sym_preferred_authentications_token1] = ACTIONS(1244), + [aux_sym_protocol_token1] = ACTIONS(1244), + [aux_sym_proxy_command_token1] = ACTIONS(1244), + [aux_sym_proxy_jump_token1] = ACTIONS(1244), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1244), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1244), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1244), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1244), + [aux_sym_rekey_limit_token1] = ACTIONS(1244), + [aux_sym_remote_command_token1] = ACTIONS(1244), + [aux_sym_remote_forward_token1] = ACTIONS(1244), + [aux_sym_request_tty_token1] = ACTIONS(1244), + [aux_sym_required_rsa_size_token1] = ACTIONS(1244), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1244), + [aux_sym_security_key_provider_token1] = ACTIONS(1244), + [aux_sym_send_env_token1] = ACTIONS(1244), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1244), + [aux_sym_server_alive_interval_token1] = ACTIONS(1244), + [aux_sym_session_type_token1] = ACTIONS(1244), + [aux_sym_set_env_token1] = ACTIONS(1244), + [aux_sym_stdin_null_token1] = ACTIONS(1244), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1244), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1244), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1244), + [aux_sym_syslog_facility_token1] = ACTIONS(1244), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1244), + [aux_sym_keep_alive_token1] = ACTIONS(1244), + [aux_sym_tunnel_token1] = ACTIONS(1246), + [aux_sym_tunnel_device_token1] = ACTIONS(1244), + [aux_sym_update_host_keys_token1] = ACTIONS(1244), + [aux_sym_use_keychain_token1] = ACTIONS(1244), + [aux_sym_use_roaming_token1] = ACTIONS(1244), + [aux_sym_user_token1] = ACTIONS(1246), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1244), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1244), + [aux_sym_visual_host_key_token1] = ACTIONS(1244), + [aux_sym_xauth_location_token1] = ACTIONS(1244), }, [118] = { - [ts_builtin_sym_end] = ACTIONS(1245), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1249), - [aux_sym_match_token1] = ACTIONS(1245), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1245), - [aux_sym_address_family_token1] = ACTIONS(1245), - [aux_sym_batch_mode_token1] = ACTIONS(1245), - [aux_sym_bind_address_token1] = ACTIONS(1245), - [aux_sym_bind_interface_token1] = ACTIONS(1245), - [aux_sym_canonical_domains_token1] = ACTIONS(1245), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1245), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1245), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1245), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1245), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1245), - [aux_sym_certificate_file_token1] = ACTIONS(1245), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1245), - [aux_sym_check_host_ip_token1] = ACTIONS(1245), - [aux_sym_ciphers_token1] = ACTIONS(1245), - [aux_sym_cipher_token1] = ACTIONS(1247), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1245), - [aux_sym_compression_token1] = ACTIONS(1245), - [aux_sym_connection_attempts_token1] = ACTIONS(1245), - [aux_sym_connect_timeout_token1] = ACTIONS(1245), - [aux_sym_control_master_token1] = ACTIONS(1245), - [aux_sym_control_path_token1] = ACTIONS(1245), - [aux_sym_control_persist_token1] = ACTIONS(1245), - [aux_sym_dynamic_forward_token1] = ACTIONS(1245), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1245), - [aux_sym_escape_char_token1] = ACTIONS(1245), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1245), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1245), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1245), - [aux_sym_forward_agent_token1] = ACTIONS(1245), - [aux_sym_forward_x11_token1] = ACTIONS(1247), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1245), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1245), - [aux_sym_gateway_ports_token1] = ACTIONS(1245), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1245), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1245), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1245), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1245), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1245), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1245), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1245), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1245), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1245), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1245), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1245), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1245), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1245), - [aux_sym_host_key_alias_token1] = ACTIONS(1245), - [aux_sym_hostname_token1] = ACTIONS(1245), - [aux_sym_identities_only_token1] = ACTIONS(1245), - [aux_sym_identity_agent_token1] = ACTIONS(1245), - [aux_sym_identity_file_token1] = ACTIONS(1245), - [aux_sym_ignore_unknown_token1] = ACTIONS(1245), - [aux_sym_include_token1] = ACTIONS(1245), - [aux_sym_ip_qos_token1] = ACTIONS(1245), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1245), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1245), - [aux_sym_kex_algorithms_token1] = ACTIONS(1245), - [aux_sym_known_hosts_command_token1] = ACTIONS(1245), - [aux_sym_local_command_token1] = ACTIONS(1245), - [aux_sym_local_forward_token1] = ACTIONS(1245), - [aux_sym_log_level_token1] = ACTIONS(1245), - [aux_sym_log_verbose_token1] = ACTIONS(1245), - [aux_sym_macs_token1] = ACTIONS(1245), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1245), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1245), - [aux_sym_password_authentication_token1] = ACTIONS(1245), - [aux_sym_permit_local_command_token1] = ACTIONS(1245), - [aux_sym_permit_remote_open_token1] = ACTIONS(1245), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1245), - [aux_sym_port_token1] = ACTIONS(1245), - [aux_sym_preferred_authentications_token1] = ACTIONS(1245), - [aux_sym_protocol_token1] = ACTIONS(1245), - [aux_sym_proxy_command_token1] = ACTIONS(1245), - [aux_sym_proxy_jump_token1] = ACTIONS(1245), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1245), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1245), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1245), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1245), - [aux_sym_rekey_limit_token1] = ACTIONS(1245), - [aux_sym_remote_command_token1] = ACTIONS(1245), - [aux_sym_remote_forward_token1] = ACTIONS(1245), - [aux_sym_request_tty_token1] = ACTIONS(1245), - [aux_sym_required_rsa_size_token1] = ACTIONS(1245), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1245), - [aux_sym_security_key_provider_token1] = ACTIONS(1245), - [aux_sym_send_env_token1] = ACTIONS(1245), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1245), - [aux_sym_server_alive_interval_token1] = ACTIONS(1245), - [aux_sym_session_type_token1] = ACTIONS(1245), - [aux_sym_set_env_token1] = ACTIONS(1245), - [aux_sym_stdin_null_token1] = ACTIONS(1245), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1245), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1245), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1245), - [aux_sym_syslog_facility_token1] = ACTIONS(1245), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1245), - [aux_sym_keep_alive_token1] = ACTIONS(1245), - [aux_sym_tunnel_token1] = ACTIONS(1247), - [aux_sym_tunnel_device_token1] = ACTIONS(1245), - [aux_sym_update_host_keys_token1] = ACTIONS(1245), - [aux_sym_use_keychain_token1] = ACTIONS(1245), - [aux_sym_use_roaming_token1] = ACTIONS(1245), - [aux_sym_user_token1] = ACTIONS(1247), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1245), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1245), - [aux_sym_visual_host_key_token1] = ACTIONS(1245), - [aux_sym_xauth_location_token1] = ACTIONS(1245), + [ts_builtin_sym_end] = ACTIONS(1250), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1254), + [aux_sym_match_token1] = ACTIONS(1250), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1250), + [aux_sym_address_family_token1] = ACTIONS(1250), + [aux_sym_batch_mode_token1] = ACTIONS(1250), + [aux_sym_bind_address_token1] = ACTIONS(1250), + [aux_sym_bind_interface_token1] = ACTIONS(1250), + [aux_sym_canonical_domains_token1] = ACTIONS(1250), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1250), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1250), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1250), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1250), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1250), + [aux_sym_certificate_file_token1] = ACTIONS(1250), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1250), + [aux_sym_check_host_ip_token1] = ACTIONS(1250), + [aux_sym_ciphers_token1] = ACTIONS(1250), + [aux_sym_cipher_token1] = ACTIONS(1252), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1250), + [aux_sym_compression_token1] = ACTIONS(1250), + [aux_sym_connection_attempts_token1] = ACTIONS(1250), + [aux_sym_connect_timeout_token1] = ACTIONS(1250), + [aux_sym_control_master_token1] = ACTIONS(1250), + [aux_sym_control_path_token1] = ACTIONS(1250), + [aux_sym_control_persist_token1] = ACTIONS(1250), + [aux_sym_dynamic_forward_token1] = ACTIONS(1250), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1250), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1250), + [aux_sym_escape_char_token1] = ACTIONS(1250), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1250), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1250), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1250), + [aux_sym_forward_agent_token1] = ACTIONS(1250), + [aux_sym_forward_x11_token1] = ACTIONS(1252), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1250), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1250), + [aux_sym_gateway_ports_token1] = ACTIONS(1250), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1250), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1250), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1250), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1250), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1250), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1250), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1250), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1250), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1250), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1250), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1250), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1250), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1250), + [aux_sym_host_key_alias_token1] = ACTIONS(1250), + [aux_sym_hostname_token1] = ACTIONS(1250), + [aux_sym_identities_only_token1] = ACTIONS(1250), + [aux_sym_identity_agent_token1] = ACTIONS(1250), + [aux_sym_identity_file_token1] = ACTIONS(1250), + [aux_sym_ignore_unknown_token1] = ACTIONS(1250), + [aux_sym_include_token1] = ACTIONS(1250), + [aux_sym_ip_qos_token1] = ACTIONS(1250), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1250), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1250), + [aux_sym_kex_algorithms_token1] = ACTIONS(1250), + [aux_sym_known_hosts_command_token1] = ACTIONS(1250), + [aux_sym_local_command_token1] = ACTIONS(1250), + [aux_sym_local_forward_token1] = ACTIONS(1250), + [aux_sym_log_level_token1] = ACTIONS(1250), + [aux_sym_log_verbose_token1] = ACTIONS(1250), + [aux_sym_macs_token1] = ACTIONS(1250), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1250), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1250), + [aux_sym_password_authentication_token1] = ACTIONS(1250), + [aux_sym_permit_local_command_token1] = ACTIONS(1250), + [aux_sym_permit_remote_open_token1] = ACTIONS(1250), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1250), + [aux_sym_port_token1] = ACTIONS(1250), + [aux_sym_preferred_authentications_token1] = ACTIONS(1250), + [aux_sym_protocol_token1] = ACTIONS(1250), + [aux_sym_proxy_command_token1] = ACTIONS(1250), + [aux_sym_proxy_jump_token1] = ACTIONS(1250), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1250), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1250), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1250), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1250), + [aux_sym_rekey_limit_token1] = ACTIONS(1250), + [aux_sym_remote_command_token1] = ACTIONS(1250), + [aux_sym_remote_forward_token1] = ACTIONS(1250), + [aux_sym_request_tty_token1] = ACTIONS(1250), + [aux_sym_required_rsa_size_token1] = ACTIONS(1250), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1250), + [aux_sym_security_key_provider_token1] = ACTIONS(1250), + [aux_sym_send_env_token1] = ACTIONS(1250), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1250), + [aux_sym_server_alive_interval_token1] = ACTIONS(1250), + [aux_sym_session_type_token1] = ACTIONS(1250), + [aux_sym_set_env_token1] = ACTIONS(1250), + [aux_sym_stdin_null_token1] = ACTIONS(1250), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1250), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1250), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1250), + [aux_sym_syslog_facility_token1] = ACTIONS(1250), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1250), + [aux_sym_keep_alive_token1] = ACTIONS(1250), + [aux_sym_tunnel_token1] = ACTIONS(1252), + [aux_sym_tunnel_device_token1] = ACTIONS(1250), + [aux_sym_update_host_keys_token1] = ACTIONS(1250), + [aux_sym_use_keychain_token1] = ACTIONS(1250), + [aux_sym_use_roaming_token1] = ACTIONS(1250), + [aux_sym_user_token1] = ACTIONS(1252), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1250), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1250), + [aux_sym_visual_host_key_token1] = ACTIONS(1250), + [aux_sym_xauth_location_token1] = ACTIONS(1250), }, [119] = { - [ts_builtin_sym_end] = ACTIONS(1251), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1253), - [anon_sym_DQUOTE] = ACTIONS(1255), - [aux_sym_match_token1] = ACTIONS(1251), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1251), - [aux_sym_address_family_token1] = ACTIONS(1251), - [aux_sym_batch_mode_token1] = ACTIONS(1251), - [aux_sym_bind_address_token1] = ACTIONS(1251), - [aux_sym_bind_interface_token1] = ACTIONS(1251), - [aux_sym_canonical_domains_token1] = ACTIONS(1251), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1251), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1251), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1251), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1251), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1251), - [aux_sym_certificate_file_token1] = ACTIONS(1251), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1251), - [aux_sym_check_host_ip_token1] = ACTIONS(1251), - [aux_sym_ciphers_token1] = ACTIONS(1251), - [aux_sym_cipher_token1] = ACTIONS(1253), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1251), - [aux_sym_compression_token1] = ACTIONS(1251), - [aux_sym_connection_attempts_token1] = ACTIONS(1251), - [aux_sym_connect_timeout_token1] = ACTIONS(1251), - [aux_sym_control_master_token1] = ACTIONS(1251), - [aux_sym_control_path_token1] = ACTIONS(1251), - [aux_sym_control_persist_token1] = ACTIONS(1251), - [aux_sym_dynamic_forward_token1] = ACTIONS(1251), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1251), - [aux_sym_escape_char_token1] = ACTIONS(1251), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1251), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1251), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1251), - [aux_sym_forward_agent_token1] = ACTIONS(1251), - [aux_sym_forward_x11_token1] = ACTIONS(1253), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1251), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1251), - [aux_sym_gateway_ports_token1] = ACTIONS(1251), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1251), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1251), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1251), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1251), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1251), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1251), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1251), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1251), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1251), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1251), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1251), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1251), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1251), - [aux_sym_host_key_alias_token1] = ACTIONS(1251), - [aux_sym_hostname_token1] = ACTIONS(1251), - [aux_sym_identities_only_token1] = ACTIONS(1251), - [aux_sym_identity_agent_token1] = ACTIONS(1251), - [aux_sym_identity_file_token1] = ACTIONS(1251), - [aux_sym_ignore_unknown_token1] = ACTIONS(1251), - [aux_sym_include_token1] = ACTIONS(1251), - [aux_sym_ip_qos_token1] = ACTIONS(1251), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1251), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1251), - [aux_sym_kex_algorithms_token1] = ACTIONS(1251), - [aux_sym_known_hosts_command_token1] = ACTIONS(1251), - [aux_sym_local_command_token1] = ACTIONS(1251), - [aux_sym_local_forward_token1] = ACTIONS(1251), - [aux_sym_log_level_token1] = ACTIONS(1251), - [aux_sym_log_verbose_token1] = ACTIONS(1251), - [aux_sym_macs_token1] = ACTIONS(1251), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1251), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1251), - [aux_sym_password_authentication_token1] = ACTIONS(1251), - [aux_sym_permit_local_command_token1] = ACTIONS(1251), - [aux_sym_permit_remote_open_token1] = ACTIONS(1251), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1251), - [aux_sym_port_token1] = ACTIONS(1251), - [aux_sym_preferred_authentications_token1] = ACTIONS(1251), - [aux_sym_protocol_token1] = ACTIONS(1251), - [aux_sym_proxy_command_token1] = ACTIONS(1251), - [aux_sym_proxy_jump_token1] = ACTIONS(1251), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1251), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1251), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1251), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1251), - [aux_sym_rekey_limit_token1] = ACTIONS(1251), - [aux_sym_remote_command_token1] = ACTIONS(1251), - [aux_sym_remote_forward_token1] = ACTIONS(1251), - [aux_sym_request_tty_token1] = ACTIONS(1251), - [aux_sym_required_rsa_size_token1] = ACTIONS(1251), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1251), - [aux_sym_security_key_provider_token1] = ACTIONS(1251), - [aux_sym_send_env_token1] = ACTIONS(1251), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1251), - [aux_sym_server_alive_interval_token1] = ACTIONS(1251), - [aux_sym_session_type_token1] = ACTIONS(1251), - [aux_sym_set_env_token1] = ACTIONS(1251), - [aux_sym_stdin_null_token1] = ACTIONS(1251), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1251), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1251), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1251), - [aux_sym_syslog_facility_token1] = ACTIONS(1251), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1251), - [aux_sym_keep_alive_token1] = ACTIONS(1251), - [aux_sym_tunnel_token1] = ACTIONS(1253), - [aux_sym_tunnel_device_token1] = ACTIONS(1251), - [aux_sym_update_host_keys_token1] = ACTIONS(1251), - [aux_sym_use_keychain_token1] = ACTIONS(1251), - [aux_sym_use_roaming_token1] = ACTIONS(1251), - [aux_sym_user_token1] = ACTIONS(1253), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1251), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1251), - [aux_sym_visual_host_key_token1] = ACTIONS(1251), - [aux_sym_xauth_location_token1] = ACTIONS(1251), + [ts_builtin_sym_end] = ACTIONS(1256), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1260), + [aux_sym_match_token1] = ACTIONS(1256), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1256), + [aux_sym_address_family_token1] = ACTIONS(1256), + [aux_sym_batch_mode_token1] = ACTIONS(1256), + [aux_sym_bind_address_token1] = ACTIONS(1256), + [aux_sym_bind_interface_token1] = ACTIONS(1256), + [aux_sym_canonical_domains_token1] = ACTIONS(1256), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1256), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1256), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1256), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1256), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1256), + [aux_sym_certificate_file_token1] = ACTIONS(1256), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1256), + [aux_sym_check_host_ip_token1] = ACTIONS(1256), + [aux_sym_ciphers_token1] = ACTIONS(1256), + [aux_sym_cipher_token1] = ACTIONS(1258), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1256), + [aux_sym_compression_token1] = ACTIONS(1256), + [aux_sym_connection_attempts_token1] = ACTIONS(1256), + [aux_sym_connect_timeout_token1] = ACTIONS(1256), + [aux_sym_control_master_token1] = ACTIONS(1256), + [aux_sym_control_path_token1] = ACTIONS(1256), + [aux_sym_control_persist_token1] = ACTIONS(1256), + [aux_sym_dynamic_forward_token1] = ACTIONS(1256), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1256), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1256), + [aux_sym_escape_char_token1] = ACTIONS(1256), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1256), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1256), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1256), + [aux_sym_forward_agent_token1] = ACTIONS(1256), + [aux_sym_forward_x11_token1] = ACTIONS(1258), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1256), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1256), + [aux_sym_gateway_ports_token1] = ACTIONS(1256), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1256), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1256), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1256), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1256), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1256), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1256), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1256), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1256), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1256), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1256), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1256), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1256), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1256), + [aux_sym_host_key_alias_token1] = ACTIONS(1256), + [aux_sym_hostname_token1] = ACTIONS(1256), + [aux_sym_identities_only_token1] = ACTIONS(1256), + [aux_sym_identity_agent_token1] = ACTIONS(1256), + [aux_sym_identity_file_token1] = ACTIONS(1256), + [aux_sym_ignore_unknown_token1] = ACTIONS(1256), + [aux_sym_include_token1] = ACTIONS(1256), + [aux_sym_ip_qos_token1] = ACTIONS(1256), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1256), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1256), + [aux_sym_kex_algorithms_token1] = ACTIONS(1256), + [aux_sym_known_hosts_command_token1] = ACTIONS(1256), + [aux_sym_local_command_token1] = ACTIONS(1256), + [aux_sym_local_forward_token1] = ACTIONS(1256), + [aux_sym_log_level_token1] = ACTIONS(1256), + [aux_sym_log_verbose_token1] = ACTIONS(1256), + [aux_sym_macs_token1] = ACTIONS(1256), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1256), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1256), + [aux_sym_password_authentication_token1] = ACTIONS(1256), + [aux_sym_permit_local_command_token1] = ACTIONS(1256), + [aux_sym_permit_remote_open_token1] = ACTIONS(1256), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1256), + [aux_sym_port_token1] = ACTIONS(1256), + [aux_sym_preferred_authentications_token1] = ACTIONS(1256), + [aux_sym_protocol_token1] = ACTIONS(1256), + [aux_sym_proxy_command_token1] = ACTIONS(1256), + [aux_sym_proxy_jump_token1] = ACTIONS(1256), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1256), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1256), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1256), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1256), + [aux_sym_rekey_limit_token1] = ACTIONS(1256), + [aux_sym_remote_command_token1] = ACTIONS(1256), + [aux_sym_remote_forward_token1] = ACTIONS(1256), + [aux_sym_request_tty_token1] = ACTIONS(1256), + [aux_sym_required_rsa_size_token1] = ACTIONS(1256), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1256), + [aux_sym_security_key_provider_token1] = ACTIONS(1256), + [aux_sym_send_env_token1] = ACTIONS(1256), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1256), + [aux_sym_server_alive_interval_token1] = ACTIONS(1256), + [aux_sym_session_type_token1] = ACTIONS(1256), + [aux_sym_set_env_token1] = ACTIONS(1256), + [aux_sym_stdin_null_token1] = ACTIONS(1256), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1256), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1256), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1256), + [aux_sym_syslog_facility_token1] = ACTIONS(1256), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1256), + [aux_sym_keep_alive_token1] = ACTIONS(1256), + [aux_sym_tunnel_token1] = ACTIONS(1258), + [aux_sym_tunnel_device_token1] = ACTIONS(1256), + [aux_sym_update_host_keys_token1] = ACTIONS(1256), + [aux_sym_use_keychain_token1] = ACTIONS(1256), + [aux_sym_use_roaming_token1] = ACTIONS(1256), + [aux_sym_user_token1] = ACTIONS(1258), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1256), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1256), + [aux_sym_visual_host_key_token1] = ACTIONS(1256), + [aux_sym_xauth_location_token1] = ACTIONS(1256), }, [120] = { - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1259), - [anon_sym_DQUOTE] = ACTIONS(1261), - [aux_sym_match_token1] = ACTIONS(1257), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1257), - [aux_sym_address_family_token1] = ACTIONS(1257), - [aux_sym_batch_mode_token1] = ACTIONS(1257), - [aux_sym_bind_address_token1] = ACTIONS(1257), - [aux_sym_bind_interface_token1] = ACTIONS(1257), - [aux_sym_canonical_domains_token1] = ACTIONS(1257), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1257), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1257), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1257), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1257), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1257), - [aux_sym_certificate_file_token1] = ACTIONS(1257), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1257), - [aux_sym_check_host_ip_token1] = ACTIONS(1257), - [aux_sym_ciphers_token1] = ACTIONS(1257), - [aux_sym_cipher_token1] = ACTIONS(1259), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1257), - [aux_sym_compression_token1] = ACTIONS(1257), - [aux_sym_connection_attempts_token1] = ACTIONS(1257), - [aux_sym_connect_timeout_token1] = ACTIONS(1257), - [aux_sym_control_master_token1] = ACTIONS(1257), - [aux_sym_control_path_token1] = ACTIONS(1257), - [aux_sym_control_persist_token1] = ACTIONS(1257), - [aux_sym_dynamic_forward_token1] = ACTIONS(1257), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1257), - [aux_sym_escape_char_token1] = ACTIONS(1257), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1257), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1257), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1257), - [aux_sym_forward_agent_token1] = ACTIONS(1257), - [aux_sym_forward_x11_token1] = ACTIONS(1259), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1257), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1257), - [aux_sym_gateway_ports_token1] = ACTIONS(1257), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1257), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1257), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1257), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1257), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1257), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1257), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1257), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1257), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1257), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1257), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1257), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1257), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1257), - [aux_sym_host_key_alias_token1] = ACTIONS(1257), - [aux_sym_hostname_token1] = ACTIONS(1257), - [aux_sym_identities_only_token1] = ACTIONS(1257), - [aux_sym_identity_agent_token1] = ACTIONS(1257), - [aux_sym_identity_file_token1] = ACTIONS(1257), - [aux_sym_ignore_unknown_token1] = ACTIONS(1257), - [aux_sym_include_token1] = ACTIONS(1257), - [aux_sym_ip_qos_token1] = ACTIONS(1257), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1257), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1257), - [aux_sym_kex_algorithms_token1] = ACTIONS(1257), - [aux_sym_known_hosts_command_token1] = ACTIONS(1257), - [aux_sym_local_command_token1] = ACTIONS(1257), - [aux_sym_local_forward_token1] = ACTIONS(1257), - [aux_sym_log_level_token1] = ACTIONS(1257), - [aux_sym_log_verbose_token1] = ACTIONS(1257), - [aux_sym_macs_token1] = ACTIONS(1257), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1257), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1257), - [aux_sym_password_authentication_token1] = ACTIONS(1257), - [aux_sym_permit_local_command_token1] = ACTIONS(1257), - [aux_sym_permit_remote_open_token1] = ACTIONS(1257), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1257), - [aux_sym_port_token1] = ACTIONS(1257), - [aux_sym_preferred_authentications_token1] = ACTIONS(1257), - [aux_sym_protocol_token1] = ACTIONS(1257), - [aux_sym_proxy_command_token1] = ACTIONS(1257), - [aux_sym_proxy_jump_token1] = ACTIONS(1257), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1257), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1257), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1257), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1257), - [aux_sym_rekey_limit_token1] = ACTIONS(1257), - [aux_sym_remote_command_token1] = ACTIONS(1257), - [aux_sym_remote_forward_token1] = ACTIONS(1257), - [aux_sym_request_tty_token1] = ACTIONS(1257), - [aux_sym_required_rsa_size_token1] = ACTIONS(1257), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1257), - [aux_sym_security_key_provider_token1] = ACTIONS(1257), - [aux_sym_send_env_token1] = ACTIONS(1257), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1257), - [aux_sym_server_alive_interval_token1] = ACTIONS(1257), - [aux_sym_session_type_token1] = ACTIONS(1257), - [aux_sym_set_env_token1] = ACTIONS(1257), - [aux_sym_stdin_null_token1] = ACTIONS(1257), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1257), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1257), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1257), - [aux_sym_syslog_facility_token1] = ACTIONS(1257), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1257), - [aux_sym_keep_alive_token1] = ACTIONS(1257), - [aux_sym_tunnel_token1] = ACTIONS(1259), - [aux_sym_tunnel_device_token1] = ACTIONS(1257), - [aux_sym_update_host_keys_token1] = ACTIONS(1257), - [aux_sym_use_keychain_token1] = ACTIONS(1257), - [aux_sym_use_roaming_token1] = ACTIONS(1257), - [aux_sym_user_token1] = ACTIONS(1259), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1257), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1257), - [aux_sym_visual_host_key_token1] = ACTIONS(1257), - [aux_sym_xauth_location_token1] = ACTIONS(1257), + [ts_builtin_sym_end] = ACTIONS(1262), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1266), + [aux_sym_match_token1] = ACTIONS(1262), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1262), + [aux_sym_address_family_token1] = ACTIONS(1262), + [aux_sym_batch_mode_token1] = ACTIONS(1262), + [aux_sym_bind_address_token1] = ACTIONS(1262), + [aux_sym_bind_interface_token1] = ACTIONS(1262), + [aux_sym_canonical_domains_token1] = ACTIONS(1262), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1262), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1262), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1262), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1262), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1262), + [aux_sym_certificate_file_token1] = ACTIONS(1262), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1262), + [aux_sym_check_host_ip_token1] = ACTIONS(1262), + [aux_sym_ciphers_token1] = ACTIONS(1262), + [aux_sym_cipher_token1] = ACTIONS(1264), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1262), + [aux_sym_compression_token1] = ACTIONS(1262), + [aux_sym_connection_attempts_token1] = ACTIONS(1262), + [aux_sym_connect_timeout_token1] = ACTIONS(1262), + [aux_sym_control_master_token1] = ACTIONS(1262), + [aux_sym_control_path_token1] = ACTIONS(1262), + [aux_sym_control_persist_token1] = ACTIONS(1262), + [aux_sym_dynamic_forward_token1] = ACTIONS(1262), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1262), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1262), + [aux_sym_escape_char_token1] = ACTIONS(1262), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1262), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1262), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1262), + [aux_sym_forward_agent_token1] = ACTIONS(1262), + [aux_sym_forward_x11_token1] = ACTIONS(1264), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1262), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1262), + [aux_sym_gateway_ports_token1] = ACTIONS(1262), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1262), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1262), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1262), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1262), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1262), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1262), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1262), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1262), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1262), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1262), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1262), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1262), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1262), + [aux_sym_host_key_alias_token1] = ACTIONS(1262), + [aux_sym_hostname_token1] = ACTIONS(1262), + [aux_sym_identities_only_token1] = ACTIONS(1262), + [aux_sym_identity_agent_token1] = ACTIONS(1262), + [aux_sym_identity_file_token1] = ACTIONS(1262), + [aux_sym_ignore_unknown_token1] = ACTIONS(1262), + [aux_sym_include_token1] = ACTIONS(1262), + [aux_sym_ip_qos_token1] = ACTIONS(1262), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1262), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1262), + [aux_sym_kex_algorithms_token1] = ACTIONS(1262), + [aux_sym_known_hosts_command_token1] = ACTIONS(1262), + [aux_sym_local_command_token1] = ACTIONS(1262), + [aux_sym_local_forward_token1] = ACTIONS(1262), + [aux_sym_log_level_token1] = ACTIONS(1262), + [aux_sym_log_verbose_token1] = ACTIONS(1262), + [aux_sym_macs_token1] = ACTIONS(1262), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1262), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1262), + [aux_sym_password_authentication_token1] = ACTIONS(1262), + [aux_sym_permit_local_command_token1] = ACTIONS(1262), + [aux_sym_permit_remote_open_token1] = ACTIONS(1262), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1262), + [aux_sym_port_token1] = ACTIONS(1262), + [aux_sym_preferred_authentications_token1] = ACTIONS(1262), + [aux_sym_protocol_token1] = ACTIONS(1262), + [aux_sym_proxy_command_token1] = ACTIONS(1262), + [aux_sym_proxy_jump_token1] = ACTIONS(1262), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1262), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1262), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1262), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1262), + [aux_sym_rekey_limit_token1] = ACTIONS(1262), + [aux_sym_remote_command_token1] = ACTIONS(1262), + [aux_sym_remote_forward_token1] = ACTIONS(1262), + [aux_sym_request_tty_token1] = ACTIONS(1262), + [aux_sym_required_rsa_size_token1] = ACTIONS(1262), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1262), + [aux_sym_security_key_provider_token1] = ACTIONS(1262), + [aux_sym_send_env_token1] = ACTIONS(1262), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1262), + [aux_sym_server_alive_interval_token1] = ACTIONS(1262), + [aux_sym_session_type_token1] = ACTIONS(1262), + [aux_sym_set_env_token1] = ACTIONS(1262), + [aux_sym_stdin_null_token1] = ACTIONS(1262), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1262), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1262), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1262), + [aux_sym_syslog_facility_token1] = ACTIONS(1262), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1262), + [aux_sym_keep_alive_token1] = ACTIONS(1262), + [aux_sym_tunnel_token1] = ACTIONS(1264), + [aux_sym_tunnel_device_token1] = ACTIONS(1262), + [aux_sym_update_host_keys_token1] = ACTIONS(1262), + [aux_sym_use_keychain_token1] = ACTIONS(1262), + [aux_sym_use_roaming_token1] = ACTIONS(1262), + [aux_sym_user_token1] = ACTIONS(1264), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1262), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1262), + [aux_sym_visual_host_key_token1] = ACTIONS(1262), + [aux_sym_xauth_location_token1] = ACTIONS(1262), }, [121] = { - [ts_builtin_sym_end] = ACTIONS(1263), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1265), - [anon_sym_DQUOTE] = ACTIONS(1267), - [aux_sym_match_token1] = ACTIONS(1263), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1263), - [aux_sym_address_family_token1] = ACTIONS(1263), - [aux_sym_batch_mode_token1] = ACTIONS(1263), - [aux_sym_bind_address_token1] = ACTIONS(1263), - [aux_sym_bind_interface_token1] = ACTIONS(1263), - [aux_sym_canonical_domains_token1] = ACTIONS(1263), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1263), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1263), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1263), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1263), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1263), - [aux_sym_certificate_file_token1] = ACTIONS(1263), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1263), - [aux_sym_check_host_ip_token1] = ACTIONS(1263), - [aux_sym_ciphers_token1] = ACTIONS(1263), - [aux_sym_cipher_token1] = ACTIONS(1265), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1263), - [aux_sym_compression_token1] = ACTIONS(1263), - [aux_sym_connection_attempts_token1] = ACTIONS(1263), - [aux_sym_connect_timeout_token1] = ACTIONS(1263), - [aux_sym_control_master_token1] = ACTIONS(1263), - [aux_sym_control_path_token1] = ACTIONS(1263), - [aux_sym_control_persist_token1] = ACTIONS(1263), - [aux_sym_dynamic_forward_token1] = ACTIONS(1263), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1263), - [aux_sym_escape_char_token1] = ACTIONS(1263), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1263), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1263), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1263), - [aux_sym_forward_agent_token1] = ACTIONS(1263), - [aux_sym_forward_x11_token1] = ACTIONS(1265), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1263), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1263), - [aux_sym_gateway_ports_token1] = ACTIONS(1263), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1263), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1263), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1263), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1263), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1263), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1263), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1263), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1263), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1263), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1263), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1263), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1263), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1263), - [aux_sym_host_key_alias_token1] = ACTIONS(1263), - [aux_sym_hostname_token1] = ACTIONS(1263), - [aux_sym_identities_only_token1] = ACTIONS(1263), - [aux_sym_identity_agent_token1] = ACTIONS(1263), - [aux_sym_identity_file_token1] = ACTIONS(1263), - [aux_sym_ignore_unknown_token1] = ACTIONS(1263), - [aux_sym_include_token1] = ACTIONS(1263), - [aux_sym_ip_qos_token1] = ACTIONS(1263), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1263), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1263), - [aux_sym_kex_algorithms_token1] = ACTIONS(1263), - [aux_sym_known_hosts_command_token1] = ACTIONS(1263), - [aux_sym_local_command_token1] = ACTIONS(1263), - [aux_sym_local_forward_token1] = ACTIONS(1263), - [aux_sym_log_level_token1] = ACTIONS(1263), - [aux_sym_log_verbose_token1] = ACTIONS(1263), - [aux_sym_macs_token1] = ACTIONS(1263), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1263), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1263), - [aux_sym_password_authentication_token1] = ACTIONS(1263), - [aux_sym_permit_local_command_token1] = ACTIONS(1263), - [aux_sym_permit_remote_open_token1] = ACTIONS(1263), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1263), - [aux_sym_port_token1] = ACTIONS(1263), - [aux_sym_preferred_authentications_token1] = ACTIONS(1263), - [aux_sym_protocol_token1] = ACTIONS(1263), - [aux_sym_proxy_command_token1] = ACTIONS(1263), - [aux_sym_proxy_jump_token1] = ACTIONS(1263), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1263), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1263), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1263), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1263), - [aux_sym_rekey_limit_token1] = ACTIONS(1263), - [aux_sym_remote_command_token1] = ACTIONS(1263), - [aux_sym_remote_forward_token1] = ACTIONS(1263), - [aux_sym_request_tty_token1] = ACTIONS(1263), - [aux_sym_required_rsa_size_token1] = ACTIONS(1263), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1263), - [aux_sym_security_key_provider_token1] = ACTIONS(1263), - [aux_sym_send_env_token1] = ACTIONS(1263), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1263), - [aux_sym_server_alive_interval_token1] = ACTIONS(1263), - [aux_sym_session_type_token1] = ACTIONS(1263), - [aux_sym_set_env_token1] = ACTIONS(1263), - [aux_sym_stdin_null_token1] = ACTIONS(1263), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1263), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1263), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1263), - [aux_sym_syslog_facility_token1] = ACTIONS(1263), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1263), - [aux_sym_keep_alive_token1] = ACTIONS(1263), - [aux_sym_tunnel_token1] = ACTIONS(1265), - [aux_sym_tunnel_device_token1] = ACTIONS(1263), - [aux_sym_update_host_keys_token1] = ACTIONS(1263), - [aux_sym_use_keychain_token1] = ACTIONS(1263), - [aux_sym_use_roaming_token1] = ACTIONS(1263), - [aux_sym_user_token1] = ACTIONS(1265), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1263), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1263), - [aux_sym_visual_host_key_token1] = ACTIONS(1263), - [aux_sym_xauth_location_token1] = ACTIONS(1263), + [ts_builtin_sym_end] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [aux_sym_match_token1] = ACTIONS(1268), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1268), + [aux_sym_address_family_token1] = ACTIONS(1268), + [aux_sym_batch_mode_token1] = ACTIONS(1268), + [aux_sym_bind_address_token1] = ACTIONS(1268), + [aux_sym_bind_interface_token1] = ACTIONS(1268), + [aux_sym_canonical_domains_token1] = ACTIONS(1268), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1268), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1268), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1268), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1268), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1268), + [aux_sym_certificate_file_token1] = ACTIONS(1268), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1268), + [aux_sym_check_host_ip_token1] = ACTIONS(1268), + [aux_sym_ciphers_token1] = ACTIONS(1268), + [aux_sym_cipher_token1] = ACTIONS(1270), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1268), + [aux_sym_compression_token1] = ACTIONS(1268), + [aux_sym_connection_attempts_token1] = ACTIONS(1268), + [aux_sym_connect_timeout_token1] = ACTIONS(1268), + [aux_sym_control_master_token1] = ACTIONS(1268), + [aux_sym_control_path_token1] = ACTIONS(1268), + [aux_sym_control_persist_token1] = ACTIONS(1268), + [aux_sym_dynamic_forward_token1] = ACTIONS(1268), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1268), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1268), + [aux_sym_escape_char_token1] = ACTIONS(1268), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1268), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1268), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1268), + [aux_sym_forward_agent_token1] = ACTIONS(1268), + [aux_sym_forward_x11_token1] = ACTIONS(1270), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1268), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1268), + [aux_sym_gateway_ports_token1] = ACTIONS(1268), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1268), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1268), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1268), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1268), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1268), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1268), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1268), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1268), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1268), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1268), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1268), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1268), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1268), + [aux_sym_host_key_alias_token1] = ACTIONS(1268), + [aux_sym_hostname_token1] = ACTIONS(1268), + [aux_sym_identities_only_token1] = ACTIONS(1268), + [aux_sym_identity_agent_token1] = ACTIONS(1268), + [aux_sym_identity_file_token1] = ACTIONS(1268), + [aux_sym_ignore_unknown_token1] = ACTIONS(1268), + [aux_sym_include_token1] = ACTIONS(1268), + [aux_sym_ip_qos_token1] = ACTIONS(1268), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1268), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1268), + [aux_sym_kex_algorithms_token1] = ACTIONS(1268), + [aux_sym_known_hosts_command_token1] = ACTIONS(1268), + [aux_sym_local_command_token1] = ACTIONS(1268), + [aux_sym_local_forward_token1] = ACTIONS(1268), + [aux_sym_log_level_token1] = ACTIONS(1268), + [aux_sym_log_verbose_token1] = ACTIONS(1268), + [aux_sym_macs_token1] = ACTIONS(1268), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1268), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1268), + [aux_sym_password_authentication_token1] = ACTIONS(1268), + [aux_sym_permit_local_command_token1] = ACTIONS(1268), + [aux_sym_permit_remote_open_token1] = ACTIONS(1268), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1268), + [aux_sym_port_token1] = ACTIONS(1268), + [aux_sym_preferred_authentications_token1] = ACTIONS(1268), + [aux_sym_protocol_token1] = ACTIONS(1268), + [aux_sym_proxy_command_token1] = ACTIONS(1268), + [aux_sym_proxy_jump_token1] = ACTIONS(1268), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1268), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1268), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1268), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1268), + [aux_sym_rekey_limit_token1] = ACTIONS(1268), + [aux_sym_remote_command_token1] = ACTIONS(1268), + [aux_sym_remote_forward_token1] = ACTIONS(1268), + [aux_sym_request_tty_token1] = ACTIONS(1268), + [aux_sym_required_rsa_size_token1] = ACTIONS(1268), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1268), + [aux_sym_security_key_provider_token1] = ACTIONS(1268), + [aux_sym_send_env_token1] = ACTIONS(1268), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1268), + [aux_sym_server_alive_interval_token1] = ACTIONS(1268), + [aux_sym_session_type_token1] = ACTIONS(1268), + [aux_sym_set_env_token1] = ACTIONS(1268), + [aux_sym_stdin_null_token1] = ACTIONS(1268), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1268), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1268), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1268), + [aux_sym_syslog_facility_token1] = ACTIONS(1268), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1268), + [aux_sym_keep_alive_token1] = ACTIONS(1268), + [aux_sym_tunnel_token1] = ACTIONS(1270), + [aux_sym_tunnel_device_token1] = ACTIONS(1268), + [aux_sym_update_host_keys_token1] = ACTIONS(1268), + [aux_sym_use_keychain_token1] = ACTIONS(1268), + [aux_sym_use_roaming_token1] = ACTIONS(1268), + [aux_sym_user_token1] = ACTIONS(1270), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1268), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1268), + [aux_sym_visual_host_key_token1] = ACTIONS(1268), + [aux_sym_xauth_location_token1] = ACTIONS(1268), }, [122] = { - [ts_builtin_sym_end] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1271), - [anon_sym_DQUOTE] = ACTIONS(1273), - [aux_sym_match_token1] = ACTIONS(1269), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1269), - [aux_sym_address_family_token1] = ACTIONS(1269), - [aux_sym_batch_mode_token1] = ACTIONS(1269), - [aux_sym_bind_address_token1] = ACTIONS(1269), - [aux_sym_bind_interface_token1] = ACTIONS(1269), - [aux_sym_canonical_domains_token1] = ACTIONS(1269), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1269), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1269), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1269), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1269), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1269), - [aux_sym_certificate_file_token1] = ACTIONS(1269), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1269), - [aux_sym_check_host_ip_token1] = ACTIONS(1269), - [aux_sym_ciphers_token1] = ACTIONS(1269), - [aux_sym_cipher_token1] = ACTIONS(1271), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1269), - [aux_sym_compression_token1] = ACTIONS(1269), - [aux_sym_connection_attempts_token1] = ACTIONS(1269), - [aux_sym_connect_timeout_token1] = ACTIONS(1269), - [aux_sym_control_master_token1] = ACTIONS(1269), - [aux_sym_control_path_token1] = ACTIONS(1269), - [aux_sym_control_persist_token1] = ACTIONS(1269), - [aux_sym_dynamic_forward_token1] = ACTIONS(1269), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1269), - [aux_sym_escape_char_token1] = ACTIONS(1269), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1269), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1269), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1269), - [aux_sym_forward_agent_token1] = ACTIONS(1269), - [aux_sym_forward_x11_token1] = ACTIONS(1271), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1269), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1269), - [aux_sym_gateway_ports_token1] = ACTIONS(1269), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1269), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1269), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1269), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1269), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1269), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1269), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1269), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1269), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1269), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1269), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1269), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1269), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1269), - [aux_sym_host_key_alias_token1] = ACTIONS(1269), - [aux_sym_hostname_token1] = ACTIONS(1269), - [aux_sym_identities_only_token1] = ACTIONS(1269), - [aux_sym_identity_agent_token1] = ACTIONS(1269), - [aux_sym_identity_file_token1] = ACTIONS(1269), - [aux_sym_ignore_unknown_token1] = ACTIONS(1269), - [aux_sym_include_token1] = ACTIONS(1269), - [aux_sym_ip_qos_token1] = ACTIONS(1269), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1269), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1269), - [aux_sym_kex_algorithms_token1] = ACTIONS(1269), - [aux_sym_known_hosts_command_token1] = ACTIONS(1269), - [aux_sym_local_command_token1] = ACTIONS(1269), - [aux_sym_local_forward_token1] = ACTIONS(1269), - [aux_sym_log_level_token1] = ACTIONS(1269), - [aux_sym_log_verbose_token1] = ACTIONS(1269), - [aux_sym_macs_token1] = ACTIONS(1269), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1269), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1269), - [aux_sym_password_authentication_token1] = ACTIONS(1269), - [aux_sym_permit_local_command_token1] = ACTIONS(1269), - [aux_sym_permit_remote_open_token1] = ACTIONS(1269), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1269), - [aux_sym_port_token1] = ACTIONS(1269), - [aux_sym_preferred_authentications_token1] = ACTIONS(1269), - [aux_sym_protocol_token1] = ACTIONS(1269), - [aux_sym_proxy_command_token1] = ACTIONS(1269), - [aux_sym_proxy_jump_token1] = ACTIONS(1269), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1269), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1269), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1269), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1269), - [aux_sym_rekey_limit_token1] = ACTIONS(1269), - [aux_sym_remote_command_token1] = ACTIONS(1269), - [aux_sym_remote_forward_token1] = ACTIONS(1269), - [aux_sym_request_tty_token1] = ACTIONS(1269), - [aux_sym_required_rsa_size_token1] = ACTIONS(1269), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1269), - [aux_sym_security_key_provider_token1] = ACTIONS(1269), - [aux_sym_send_env_token1] = ACTIONS(1269), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1269), - [aux_sym_server_alive_interval_token1] = ACTIONS(1269), - [aux_sym_session_type_token1] = ACTIONS(1269), - [aux_sym_set_env_token1] = ACTIONS(1269), - [aux_sym_stdin_null_token1] = ACTIONS(1269), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1269), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1269), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1269), - [aux_sym_syslog_facility_token1] = ACTIONS(1269), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1269), - [aux_sym_keep_alive_token1] = ACTIONS(1269), - [aux_sym_tunnel_token1] = ACTIONS(1271), - [aux_sym_tunnel_device_token1] = ACTIONS(1269), - [aux_sym_update_host_keys_token1] = ACTIONS(1269), - [aux_sym_use_keychain_token1] = ACTIONS(1269), - [aux_sym_use_roaming_token1] = ACTIONS(1269), - [aux_sym_user_token1] = ACTIONS(1271), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1269), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1269), - [aux_sym_visual_host_key_token1] = ACTIONS(1269), - [aux_sym_xauth_location_token1] = ACTIONS(1269), + [ts_builtin_sym_end] = ACTIONS(1274), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1276), + [anon_sym_DQUOTE] = ACTIONS(1278), + [aux_sym_match_token1] = ACTIONS(1274), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1274), + [aux_sym_address_family_token1] = ACTIONS(1274), + [aux_sym_batch_mode_token1] = ACTIONS(1274), + [aux_sym_bind_address_token1] = ACTIONS(1274), + [aux_sym_bind_interface_token1] = ACTIONS(1274), + [aux_sym_canonical_domains_token1] = ACTIONS(1274), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1274), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1274), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1274), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1274), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1274), + [aux_sym_certificate_file_token1] = ACTIONS(1274), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1274), + [aux_sym_check_host_ip_token1] = ACTIONS(1274), + [aux_sym_ciphers_token1] = ACTIONS(1274), + [aux_sym_cipher_token1] = ACTIONS(1276), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1274), + [aux_sym_compression_token1] = ACTIONS(1274), + [aux_sym_connection_attempts_token1] = ACTIONS(1274), + [aux_sym_connect_timeout_token1] = ACTIONS(1274), + [aux_sym_control_master_token1] = ACTIONS(1274), + [aux_sym_control_path_token1] = ACTIONS(1274), + [aux_sym_control_persist_token1] = ACTIONS(1274), + [aux_sym_dynamic_forward_token1] = ACTIONS(1274), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1274), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1274), + [aux_sym_escape_char_token1] = ACTIONS(1274), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1274), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1274), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1274), + [aux_sym_forward_agent_token1] = ACTIONS(1274), + [aux_sym_forward_x11_token1] = ACTIONS(1276), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1274), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1274), + [aux_sym_gateway_ports_token1] = ACTIONS(1274), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1274), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1274), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1274), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1274), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1274), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1274), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1274), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1274), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1274), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1274), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1274), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1274), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1274), + [aux_sym_host_key_alias_token1] = ACTIONS(1274), + [aux_sym_hostname_token1] = ACTIONS(1274), + [aux_sym_identities_only_token1] = ACTIONS(1274), + [aux_sym_identity_agent_token1] = ACTIONS(1274), + [aux_sym_identity_file_token1] = ACTIONS(1274), + [aux_sym_ignore_unknown_token1] = ACTIONS(1274), + [aux_sym_include_token1] = ACTIONS(1274), + [aux_sym_ip_qos_token1] = ACTIONS(1274), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1274), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1274), + [aux_sym_kex_algorithms_token1] = ACTIONS(1274), + [aux_sym_known_hosts_command_token1] = ACTIONS(1274), + [aux_sym_local_command_token1] = ACTIONS(1274), + [aux_sym_local_forward_token1] = ACTIONS(1274), + [aux_sym_log_level_token1] = ACTIONS(1274), + [aux_sym_log_verbose_token1] = ACTIONS(1274), + [aux_sym_macs_token1] = ACTIONS(1274), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1274), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1274), + [aux_sym_password_authentication_token1] = ACTIONS(1274), + [aux_sym_permit_local_command_token1] = ACTIONS(1274), + [aux_sym_permit_remote_open_token1] = ACTIONS(1274), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1274), + [aux_sym_port_token1] = ACTIONS(1274), + [aux_sym_preferred_authentications_token1] = ACTIONS(1274), + [aux_sym_protocol_token1] = ACTIONS(1274), + [aux_sym_proxy_command_token1] = ACTIONS(1274), + [aux_sym_proxy_jump_token1] = ACTIONS(1274), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1274), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1274), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1274), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1274), + [aux_sym_rekey_limit_token1] = ACTIONS(1274), + [aux_sym_remote_command_token1] = ACTIONS(1274), + [aux_sym_remote_forward_token1] = ACTIONS(1274), + [aux_sym_request_tty_token1] = ACTIONS(1274), + [aux_sym_required_rsa_size_token1] = ACTIONS(1274), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1274), + [aux_sym_security_key_provider_token1] = ACTIONS(1274), + [aux_sym_send_env_token1] = ACTIONS(1274), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1274), + [aux_sym_server_alive_interval_token1] = ACTIONS(1274), + [aux_sym_session_type_token1] = ACTIONS(1274), + [aux_sym_set_env_token1] = ACTIONS(1274), + [aux_sym_stdin_null_token1] = ACTIONS(1274), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1274), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1274), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1274), + [aux_sym_syslog_facility_token1] = ACTIONS(1274), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1274), + [aux_sym_keep_alive_token1] = ACTIONS(1274), + [aux_sym_tunnel_token1] = ACTIONS(1276), + [aux_sym_tunnel_device_token1] = ACTIONS(1274), + [aux_sym_update_host_keys_token1] = ACTIONS(1274), + [aux_sym_use_keychain_token1] = ACTIONS(1274), + [aux_sym_use_roaming_token1] = ACTIONS(1274), + [aux_sym_user_token1] = ACTIONS(1276), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1274), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1274), + [aux_sym_visual_host_key_token1] = ACTIONS(1274), + [aux_sym_xauth_location_token1] = ACTIONS(1274), }, [123] = { - [ts_builtin_sym_end] = ACTIONS(1275), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1277), - [anon_sym_DQUOTE] = ACTIONS(1279), - [aux_sym_match_token1] = ACTIONS(1275), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1275), - [aux_sym_address_family_token1] = ACTIONS(1275), - [aux_sym_batch_mode_token1] = ACTIONS(1275), - [aux_sym_bind_address_token1] = ACTIONS(1275), - [aux_sym_bind_interface_token1] = ACTIONS(1275), - [aux_sym_canonical_domains_token1] = ACTIONS(1275), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1275), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1275), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1275), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1275), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1275), - [aux_sym_certificate_file_token1] = ACTIONS(1275), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1275), - [aux_sym_check_host_ip_token1] = ACTIONS(1275), - [aux_sym_ciphers_token1] = ACTIONS(1275), - [aux_sym_cipher_token1] = ACTIONS(1277), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1275), - [aux_sym_compression_token1] = ACTIONS(1275), - [aux_sym_connection_attempts_token1] = ACTIONS(1275), - [aux_sym_connect_timeout_token1] = ACTIONS(1275), - [aux_sym_control_master_token1] = ACTIONS(1275), - [aux_sym_control_path_token1] = ACTIONS(1275), - [aux_sym_control_persist_token1] = ACTIONS(1275), - [aux_sym_dynamic_forward_token1] = ACTIONS(1275), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1275), - [aux_sym_escape_char_token1] = ACTIONS(1275), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1275), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1275), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1275), - [aux_sym_forward_agent_token1] = ACTIONS(1275), - [aux_sym_forward_x11_token1] = ACTIONS(1277), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1275), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1275), - [aux_sym_gateway_ports_token1] = ACTIONS(1275), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1275), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1275), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1275), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1275), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1275), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1275), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1275), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1275), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1275), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1275), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1275), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1275), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1275), - [aux_sym_host_key_alias_token1] = ACTIONS(1275), - [aux_sym_hostname_token1] = ACTIONS(1275), - [aux_sym_identities_only_token1] = ACTIONS(1275), - [aux_sym_identity_agent_token1] = ACTIONS(1275), - [aux_sym_identity_file_token1] = ACTIONS(1275), - [aux_sym_ignore_unknown_token1] = ACTIONS(1275), - [aux_sym_include_token1] = ACTIONS(1275), - [aux_sym_ip_qos_token1] = ACTIONS(1275), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1275), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1275), - [aux_sym_kex_algorithms_token1] = ACTIONS(1275), - [aux_sym_known_hosts_command_token1] = ACTIONS(1275), - [aux_sym_local_command_token1] = ACTIONS(1275), - [aux_sym_local_forward_token1] = ACTIONS(1275), - [aux_sym_log_level_token1] = ACTIONS(1275), - [aux_sym_log_verbose_token1] = ACTIONS(1275), - [aux_sym_macs_token1] = ACTIONS(1275), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1275), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1275), - [aux_sym_password_authentication_token1] = ACTIONS(1275), - [aux_sym_permit_local_command_token1] = ACTIONS(1275), - [aux_sym_permit_remote_open_token1] = ACTIONS(1275), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1275), - [aux_sym_port_token1] = ACTIONS(1275), - [aux_sym_preferred_authentications_token1] = ACTIONS(1275), - [aux_sym_protocol_token1] = ACTIONS(1275), - [aux_sym_proxy_command_token1] = ACTIONS(1275), - [aux_sym_proxy_jump_token1] = ACTIONS(1275), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1275), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1275), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1275), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1275), - [aux_sym_rekey_limit_token1] = ACTIONS(1275), - [aux_sym_remote_command_token1] = ACTIONS(1275), - [aux_sym_remote_forward_token1] = ACTIONS(1275), - [aux_sym_request_tty_token1] = ACTIONS(1275), - [aux_sym_required_rsa_size_token1] = ACTIONS(1275), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1275), - [aux_sym_security_key_provider_token1] = ACTIONS(1275), - [aux_sym_send_env_token1] = ACTIONS(1275), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1275), - [aux_sym_server_alive_interval_token1] = ACTIONS(1275), - [aux_sym_session_type_token1] = ACTIONS(1275), - [aux_sym_set_env_token1] = ACTIONS(1275), - [aux_sym_stdin_null_token1] = ACTIONS(1275), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1275), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1275), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1275), - [aux_sym_syslog_facility_token1] = ACTIONS(1275), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1275), - [aux_sym_keep_alive_token1] = ACTIONS(1275), - [aux_sym_tunnel_token1] = ACTIONS(1277), - [aux_sym_tunnel_device_token1] = ACTIONS(1275), - [aux_sym_update_host_keys_token1] = ACTIONS(1275), - [aux_sym_use_keychain_token1] = ACTIONS(1275), - [aux_sym_use_roaming_token1] = ACTIONS(1275), - [aux_sym_user_token1] = ACTIONS(1277), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1275), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1275), - [aux_sym_visual_host_key_token1] = ACTIONS(1275), - [aux_sym_xauth_location_token1] = ACTIONS(1275), + [ts_builtin_sym_end] = ACTIONS(1280), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1282), + [anon_sym_DQUOTE] = ACTIONS(1284), + [aux_sym_match_token1] = ACTIONS(1280), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1280), + [aux_sym_address_family_token1] = ACTIONS(1280), + [aux_sym_batch_mode_token1] = ACTIONS(1280), + [aux_sym_bind_address_token1] = ACTIONS(1280), + [aux_sym_bind_interface_token1] = ACTIONS(1280), + [aux_sym_canonical_domains_token1] = ACTIONS(1280), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1280), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1280), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1280), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1280), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1280), + [aux_sym_certificate_file_token1] = ACTIONS(1280), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1280), + [aux_sym_check_host_ip_token1] = ACTIONS(1280), + [aux_sym_ciphers_token1] = ACTIONS(1280), + [aux_sym_cipher_token1] = ACTIONS(1282), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1280), + [aux_sym_compression_token1] = ACTIONS(1280), + [aux_sym_connection_attempts_token1] = ACTIONS(1280), + [aux_sym_connect_timeout_token1] = ACTIONS(1280), + [aux_sym_control_master_token1] = ACTIONS(1280), + [aux_sym_control_path_token1] = ACTIONS(1280), + [aux_sym_control_persist_token1] = ACTIONS(1280), + [aux_sym_dynamic_forward_token1] = ACTIONS(1280), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1280), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1280), + [aux_sym_escape_char_token1] = ACTIONS(1280), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1280), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1280), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1280), + [aux_sym_forward_agent_token1] = ACTIONS(1280), + [aux_sym_forward_x11_token1] = ACTIONS(1282), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1280), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1280), + [aux_sym_gateway_ports_token1] = ACTIONS(1280), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1280), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1280), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1280), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1280), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1280), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1280), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1280), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1280), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1280), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1280), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1280), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1280), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1280), + [aux_sym_host_key_alias_token1] = ACTIONS(1280), + [aux_sym_hostname_token1] = ACTIONS(1280), + [aux_sym_identities_only_token1] = ACTIONS(1280), + [aux_sym_identity_agent_token1] = ACTIONS(1280), + [aux_sym_identity_file_token1] = ACTIONS(1280), + [aux_sym_ignore_unknown_token1] = ACTIONS(1280), + [aux_sym_include_token1] = ACTIONS(1280), + [aux_sym_ip_qos_token1] = ACTIONS(1280), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1280), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1280), + [aux_sym_kex_algorithms_token1] = ACTIONS(1280), + [aux_sym_known_hosts_command_token1] = ACTIONS(1280), + [aux_sym_local_command_token1] = ACTIONS(1280), + [aux_sym_local_forward_token1] = ACTIONS(1280), + [aux_sym_log_level_token1] = ACTIONS(1280), + [aux_sym_log_verbose_token1] = ACTIONS(1280), + [aux_sym_macs_token1] = ACTIONS(1280), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1280), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1280), + [aux_sym_password_authentication_token1] = ACTIONS(1280), + [aux_sym_permit_local_command_token1] = ACTIONS(1280), + [aux_sym_permit_remote_open_token1] = ACTIONS(1280), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1280), + [aux_sym_port_token1] = ACTIONS(1280), + [aux_sym_preferred_authentications_token1] = ACTIONS(1280), + [aux_sym_protocol_token1] = ACTIONS(1280), + [aux_sym_proxy_command_token1] = ACTIONS(1280), + [aux_sym_proxy_jump_token1] = ACTIONS(1280), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1280), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1280), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1280), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1280), + [aux_sym_rekey_limit_token1] = ACTIONS(1280), + [aux_sym_remote_command_token1] = ACTIONS(1280), + [aux_sym_remote_forward_token1] = ACTIONS(1280), + [aux_sym_request_tty_token1] = ACTIONS(1280), + [aux_sym_required_rsa_size_token1] = ACTIONS(1280), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1280), + [aux_sym_security_key_provider_token1] = ACTIONS(1280), + [aux_sym_send_env_token1] = ACTIONS(1280), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1280), + [aux_sym_server_alive_interval_token1] = ACTIONS(1280), + [aux_sym_session_type_token1] = ACTIONS(1280), + [aux_sym_set_env_token1] = ACTIONS(1280), + [aux_sym_stdin_null_token1] = ACTIONS(1280), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1280), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1280), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1280), + [aux_sym_syslog_facility_token1] = ACTIONS(1280), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1280), + [aux_sym_keep_alive_token1] = ACTIONS(1280), + [aux_sym_tunnel_token1] = ACTIONS(1282), + [aux_sym_tunnel_device_token1] = ACTIONS(1280), + [aux_sym_update_host_keys_token1] = ACTIONS(1280), + [aux_sym_use_keychain_token1] = ACTIONS(1280), + [aux_sym_use_roaming_token1] = ACTIONS(1280), + [aux_sym_user_token1] = ACTIONS(1282), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1280), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1280), + [aux_sym_visual_host_key_token1] = ACTIONS(1280), + [aux_sym_xauth_location_token1] = ACTIONS(1280), }, [124] = { - [ts_builtin_sym_end] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(1285), - [aux_sym_match_token1] = ACTIONS(1281), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1281), - [aux_sym_address_family_token1] = ACTIONS(1281), - [aux_sym_batch_mode_token1] = ACTIONS(1281), - [aux_sym_bind_address_token1] = ACTIONS(1281), - [aux_sym_bind_interface_token1] = ACTIONS(1281), - [aux_sym_canonical_domains_token1] = ACTIONS(1281), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1281), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1281), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1281), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1281), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1281), - [aux_sym_certificate_file_token1] = ACTIONS(1281), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1281), - [aux_sym_check_host_ip_token1] = ACTIONS(1281), - [aux_sym_ciphers_token1] = ACTIONS(1281), - [aux_sym_cipher_token1] = ACTIONS(1283), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1281), - [aux_sym_compression_token1] = ACTIONS(1281), - [aux_sym_connection_attempts_token1] = ACTIONS(1281), - [aux_sym_connect_timeout_token1] = ACTIONS(1281), - [aux_sym_control_master_token1] = ACTIONS(1281), - [aux_sym_control_path_token1] = ACTIONS(1281), - [aux_sym_control_persist_token1] = ACTIONS(1281), - [aux_sym_dynamic_forward_token1] = ACTIONS(1281), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1281), - [aux_sym_escape_char_token1] = ACTIONS(1281), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1281), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1281), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1281), - [aux_sym_forward_agent_token1] = ACTIONS(1281), - [aux_sym_forward_x11_token1] = ACTIONS(1283), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1281), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1281), - [aux_sym_gateway_ports_token1] = ACTIONS(1281), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1281), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1281), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1281), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1281), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1281), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1281), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1281), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1281), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1281), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1281), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1281), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1281), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1281), - [aux_sym_host_key_alias_token1] = ACTIONS(1281), - [aux_sym_hostname_token1] = ACTIONS(1281), - [aux_sym_identities_only_token1] = ACTIONS(1281), - [aux_sym_identity_agent_token1] = ACTIONS(1281), - [aux_sym_identity_file_token1] = ACTIONS(1281), - [aux_sym_ignore_unknown_token1] = ACTIONS(1281), - [aux_sym_include_token1] = ACTIONS(1281), - [aux_sym_ip_qos_token1] = ACTIONS(1281), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1281), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1281), - [aux_sym_kex_algorithms_token1] = ACTIONS(1281), - [aux_sym_known_hosts_command_token1] = ACTIONS(1281), - [aux_sym_local_command_token1] = ACTIONS(1281), - [aux_sym_local_forward_token1] = ACTIONS(1281), - [aux_sym_log_level_token1] = ACTIONS(1281), - [aux_sym_log_verbose_token1] = ACTIONS(1281), - [aux_sym_macs_token1] = ACTIONS(1281), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1281), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1281), - [aux_sym_password_authentication_token1] = ACTIONS(1281), - [aux_sym_permit_local_command_token1] = ACTIONS(1281), - [aux_sym_permit_remote_open_token1] = ACTIONS(1281), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1281), - [aux_sym_port_token1] = ACTIONS(1281), - [aux_sym_preferred_authentications_token1] = ACTIONS(1281), - [aux_sym_protocol_token1] = ACTIONS(1281), - [aux_sym_proxy_command_token1] = ACTIONS(1281), - [aux_sym_proxy_jump_token1] = ACTIONS(1281), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1281), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1281), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1281), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1281), - [aux_sym_rekey_limit_token1] = ACTIONS(1281), - [aux_sym_remote_command_token1] = ACTIONS(1281), - [aux_sym_remote_forward_token1] = ACTIONS(1281), - [aux_sym_request_tty_token1] = ACTIONS(1281), - [aux_sym_required_rsa_size_token1] = ACTIONS(1281), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1281), - [aux_sym_security_key_provider_token1] = ACTIONS(1281), - [aux_sym_send_env_token1] = ACTIONS(1281), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1281), - [aux_sym_server_alive_interval_token1] = ACTIONS(1281), - [aux_sym_session_type_token1] = ACTIONS(1281), - [aux_sym_set_env_token1] = ACTIONS(1281), - [aux_sym_stdin_null_token1] = ACTIONS(1281), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1281), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1281), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1281), - [aux_sym_syslog_facility_token1] = ACTIONS(1281), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1281), - [aux_sym_keep_alive_token1] = ACTIONS(1281), - [aux_sym_tunnel_token1] = ACTIONS(1283), - [aux_sym_tunnel_device_token1] = ACTIONS(1281), - [aux_sym_update_host_keys_token1] = ACTIONS(1281), - [aux_sym_use_keychain_token1] = ACTIONS(1281), - [aux_sym_use_roaming_token1] = ACTIONS(1281), - [aux_sym_user_token1] = ACTIONS(1283), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1281), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1281), - [aux_sym_visual_host_key_token1] = ACTIONS(1281), - [aux_sym_xauth_location_token1] = ACTIONS(1281), + [ts_builtin_sym_end] = ACTIONS(1286), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1290), + [aux_sym_match_token1] = ACTIONS(1286), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1286), + [aux_sym_address_family_token1] = ACTIONS(1286), + [aux_sym_batch_mode_token1] = ACTIONS(1286), + [aux_sym_bind_address_token1] = ACTIONS(1286), + [aux_sym_bind_interface_token1] = ACTIONS(1286), + [aux_sym_canonical_domains_token1] = ACTIONS(1286), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1286), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1286), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1286), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1286), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1286), + [aux_sym_certificate_file_token1] = ACTIONS(1286), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1286), + [aux_sym_check_host_ip_token1] = ACTIONS(1286), + [aux_sym_ciphers_token1] = ACTIONS(1286), + [aux_sym_cipher_token1] = ACTIONS(1288), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1286), + [aux_sym_compression_token1] = ACTIONS(1286), + [aux_sym_connection_attempts_token1] = ACTIONS(1286), + [aux_sym_connect_timeout_token1] = ACTIONS(1286), + [aux_sym_control_master_token1] = ACTIONS(1286), + [aux_sym_control_path_token1] = ACTIONS(1286), + [aux_sym_control_persist_token1] = ACTIONS(1286), + [aux_sym_dynamic_forward_token1] = ACTIONS(1286), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1286), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1286), + [aux_sym_escape_char_token1] = ACTIONS(1286), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1286), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1286), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1286), + [aux_sym_forward_agent_token1] = ACTIONS(1286), + [aux_sym_forward_x11_token1] = ACTIONS(1288), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1286), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1286), + [aux_sym_gateway_ports_token1] = ACTIONS(1286), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1286), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1286), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1286), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1286), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1286), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1286), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1286), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1286), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1286), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1286), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1286), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1286), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1286), + [aux_sym_host_key_alias_token1] = ACTIONS(1286), + [aux_sym_hostname_token1] = ACTIONS(1286), + [aux_sym_identities_only_token1] = ACTIONS(1286), + [aux_sym_identity_agent_token1] = ACTIONS(1286), + [aux_sym_identity_file_token1] = ACTIONS(1286), + [aux_sym_ignore_unknown_token1] = ACTIONS(1286), + [aux_sym_include_token1] = ACTIONS(1286), + [aux_sym_ip_qos_token1] = ACTIONS(1286), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1286), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1286), + [aux_sym_kex_algorithms_token1] = ACTIONS(1286), + [aux_sym_known_hosts_command_token1] = ACTIONS(1286), + [aux_sym_local_command_token1] = ACTIONS(1286), + [aux_sym_local_forward_token1] = ACTIONS(1286), + [aux_sym_log_level_token1] = ACTIONS(1286), + [aux_sym_log_verbose_token1] = ACTIONS(1286), + [aux_sym_macs_token1] = ACTIONS(1286), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1286), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1286), + [aux_sym_password_authentication_token1] = ACTIONS(1286), + [aux_sym_permit_local_command_token1] = ACTIONS(1286), + [aux_sym_permit_remote_open_token1] = ACTIONS(1286), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1286), + [aux_sym_port_token1] = ACTIONS(1286), + [aux_sym_preferred_authentications_token1] = ACTIONS(1286), + [aux_sym_protocol_token1] = ACTIONS(1286), + [aux_sym_proxy_command_token1] = ACTIONS(1286), + [aux_sym_proxy_jump_token1] = ACTIONS(1286), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1286), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1286), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1286), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1286), + [aux_sym_rekey_limit_token1] = ACTIONS(1286), + [aux_sym_remote_command_token1] = ACTIONS(1286), + [aux_sym_remote_forward_token1] = ACTIONS(1286), + [aux_sym_request_tty_token1] = ACTIONS(1286), + [aux_sym_required_rsa_size_token1] = ACTIONS(1286), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1286), + [aux_sym_security_key_provider_token1] = ACTIONS(1286), + [aux_sym_send_env_token1] = ACTIONS(1286), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1286), + [aux_sym_server_alive_interval_token1] = ACTIONS(1286), + [aux_sym_session_type_token1] = ACTIONS(1286), + [aux_sym_set_env_token1] = ACTIONS(1286), + [aux_sym_stdin_null_token1] = ACTIONS(1286), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1286), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1286), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1286), + [aux_sym_syslog_facility_token1] = ACTIONS(1286), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1286), + [aux_sym_keep_alive_token1] = ACTIONS(1286), + [aux_sym_tunnel_token1] = ACTIONS(1288), + [aux_sym_tunnel_device_token1] = ACTIONS(1286), + [aux_sym_update_host_keys_token1] = ACTIONS(1286), + [aux_sym_use_keychain_token1] = ACTIONS(1286), + [aux_sym_use_roaming_token1] = ACTIONS(1286), + [aux_sym_user_token1] = ACTIONS(1288), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1286), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1286), + [aux_sym_visual_host_key_token1] = ACTIONS(1286), + [aux_sym_xauth_location_token1] = ACTIONS(1286), }, [125] = { - [ts_builtin_sym_end] = ACTIONS(1287), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [aux_sym_match_token1] = ACTIONS(1287), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1287), - [aux_sym_address_family_token1] = ACTIONS(1287), - [aux_sym_batch_mode_token1] = ACTIONS(1287), - [aux_sym_bind_address_token1] = ACTIONS(1287), - [aux_sym_bind_interface_token1] = ACTIONS(1287), - [aux_sym_canonical_domains_token1] = ACTIONS(1287), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1287), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1287), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1287), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1287), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1287), - [aux_sym_certificate_file_token1] = ACTIONS(1287), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1287), - [aux_sym_check_host_ip_token1] = ACTIONS(1287), - [aux_sym_ciphers_token1] = ACTIONS(1287), - [aux_sym_cipher_token1] = ACTIONS(1289), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1287), - [aux_sym_compression_token1] = ACTIONS(1287), - [aux_sym_connection_attempts_token1] = ACTIONS(1287), - [aux_sym_connect_timeout_token1] = ACTIONS(1287), - [aux_sym_control_master_token1] = ACTIONS(1287), - [aux_sym_control_path_token1] = ACTIONS(1287), - [aux_sym_control_persist_token1] = ACTIONS(1287), - [aux_sym_dynamic_forward_token1] = ACTIONS(1287), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1287), - [aux_sym_escape_char_token1] = ACTIONS(1287), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1287), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1287), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1287), - [aux_sym_forward_agent_token1] = ACTIONS(1287), - [aux_sym_forward_x11_token1] = ACTIONS(1289), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1287), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1287), - [aux_sym_gateway_ports_token1] = ACTIONS(1287), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1287), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1287), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1287), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1287), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1287), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1287), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1287), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1287), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1287), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1287), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1287), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1287), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1287), - [aux_sym_host_key_alias_token1] = ACTIONS(1287), - [aux_sym_hostname_token1] = ACTIONS(1287), - [aux_sym_identities_only_token1] = ACTIONS(1287), - [aux_sym_identity_agent_token1] = ACTIONS(1287), - [aux_sym_identity_file_token1] = ACTIONS(1287), - [aux_sym_ignore_unknown_token1] = ACTIONS(1287), - [aux_sym_include_token1] = ACTIONS(1287), - [aux_sym_ip_qos_token1] = ACTIONS(1287), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1287), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1287), - [aux_sym_kex_algorithms_token1] = ACTIONS(1287), - [aux_sym_known_hosts_command_token1] = ACTIONS(1287), - [aux_sym_local_command_token1] = ACTIONS(1287), - [aux_sym_local_forward_token1] = ACTIONS(1287), - [aux_sym_log_level_token1] = ACTIONS(1287), - [aux_sym_log_verbose_token1] = ACTIONS(1287), - [aux_sym_macs_token1] = ACTIONS(1287), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1287), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1287), - [aux_sym_password_authentication_token1] = ACTIONS(1287), - [aux_sym_permit_local_command_token1] = ACTIONS(1287), - [aux_sym_permit_remote_open_token1] = ACTIONS(1287), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1287), - [aux_sym_port_token1] = ACTIONS(1287), - [aux_sym_preferred_authentications_token1] = ACTIONS(1287), - [aux_sym_protocol_token1] = ACTIONS(1287), - [aux_sym_proxy_command_token1] = ACTIONS(1287), - [aux_sym_proxy_jump_token1] = ACTIONS(1287), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1287), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1287), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1287), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1287), - [aux_sym_rekey_limit_token1] = ACTIONS(1287), - [aux_sym_remote_command_token1] = ACTIONS(1287), - [aux_sym_remote_forward_token1] = ACTIONS(1287), - [aux_sym_request_tty_token1] = ACTIONS(1287), - [aux_sym_required_rsa_size_token1] = ACTIONS(1287), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1287), - [aux_sym_security_key_provider_token1] = ACTIONS(1287), - [aux_sym_send_env_token1] = ACTIONS(1287), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1287), - [aux_sym_server_alive_interval_token1] = ACTIONS(1287), - [aux_sym_session_type_token1] = ACTIONS(1287), - [aux_sym_set_env_token1] = ACTIONS(1287), - [aux_sym_stdin_null_token1] = ACTIONS(1287), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1287), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1287), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1287), - [aux_sym_syslog_facility_token1] = ACTIONS(1287), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1287), - [aux_sym_keep_alive_token1] = ACTIONS(1287), - [aux_sym_tunnel_token1] = ACTIONS(1289), - [aux_sym_tunnel_device_token1] = ACTIONS(1287), - [aux_sym_update_host_keys_token1] = ACTIONS(1287), - [aux_sym_use_keychain_token1] = ACTIONS(1287), - [aux_sym_use_roaming_token1] = ACTIONS(1287), - [aux_sym_user_token1] = ACTIONS(1289), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1287), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1287), - [aux_sym_visual_host_key_token1] = ACTIONS(1287), - [aux_sym_xauth_location_token1] = ACTIONS(1287), + [ts_builtin_sym_end] = ACTIONS(1292), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1296), + [aux_sym_match_token1] = ACTIONS(1292), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1292), + [aux_sym_address_family_token1] = ACTIONS(1292), + [aux_sym_batch_mode_token1] = ACTIONS(1292), + [aux_sym_bind_address_token1] = ACTIONS(1292), + [aux_sym_bind_interface_token1] = ACTIONS(1292), + [aux_sym_canonical_domains_token1] = ACTIONS(1292), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1292), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1292), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1292), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1292), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1292), + [aux_sym_certificate_file_token1] = ACTIONS(1292), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1292), + [aux_sym_check_host_ip_token1] = ACTIONS(1292), + [aux_sym_ciphers_token1] = ACTIONS(1292), + [aux_sym_cipher_token1] = ACTIONS(1294), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1292), + [aux_sym_compression_token1] = ACTIONS(1292), + [aux_sym_connection_attempts_token1] = ACTIONS(1292), + [aux_sym_connect_timeout_token1] = ACTIONS(1292), + [aux_sym_control_master_token1] = ACTIONS(1292), + [aux_sym_control_path_token1] = ACTIONS(1292), + [aux_sym_control_persist_token1] = ACTIONS(1292), + [aux_sym_dynamic_forward_token1] = ACTIONS(1292), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1292), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1292), + [aux_sym_escape_char_token1] = ACTIONS(1292), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1292), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1292), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1292), + [aux_sym_forward_agent_token1] = ACTIONS(1292), + [aux_sym_forward_x11_token1] = ACTIONS(1294), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1292), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1292), + [aux_sym_gateway_ports_token1] = ACTIONS(1292), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1292), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1292), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1292), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1292), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1292), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1292), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1292), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1292), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1292), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1292), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1292), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1292), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1292), + [aux_sym_host_key_alias_token1] = ACTIONS(1292), + [aux_sym_hostname_token1] = ACTIONS(1292), + [aux_sym_identities_only_token1] = ACTIONS(1292), + [aux_sym_identity_agent_token1] = ACTIONS(1292), + [aux_sym_identity_file_token1] = ACTIONS(1292), + [aux_sym_ignore_unknown_token1] = ACTIONS(1292), + [aux_sym_include_token1] = ACTIONS(1292), + [aux_sym_ip_qos_token1] = ACTIONS(1292), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1292), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1292), + [aux_sym_kex_algorithms_token1] = ACTIONS(1292), + [aux_sym_known_hosts_command_token1] = ACTIONS(1292), + [aux_sym_local_command_token1] = ACTIONS(1292), + [aux_sym_local_forward_token1] = ACTIONS(1292), + [aux_sym_log_level_token1] = ACTIONS(1292), + [aux_sym_log_verbose_token1] = ACTIONS(1292), + [aux_sym_macs_token1] = ACTIONS(1292), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1292), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1292), + [aux_sym_password_authentication_token1] = ACTIONS(1292), + [aux_sym_permit_local_command_token1] = ACTIONS(1292), + [aux_sym_permit_remote_open_token1] = ACTIONS(1292), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1292), + [aux_sym_port_token1] = ACTIONS(1292), + [aux_sym_preferred_authentications_token1] = ACTIONS(1292), + [aux_sym_protocol_token1] = ACTIONS(1292), + [aux_sym_proxy_command_token1] = ACTIONS(1292), + [aux_sym_proxy_jump_token1] = ACTIONS(1292), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1292), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1292), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1292), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1292), + [aux_sym_rekey_limit_token1] = ACTIONS(1292), + [aux_sym_remote_command_token1] = ACTIONS(1292), + [aux_sym_remote_forward_token1] = ACTIONS(1292), + [aux_sym_request_tty_token1] = ACTIONS(1292), + [aux_sym_required_rsa_size_token1] = ACTIONS(1292), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1292), + [aux_sym_security_key_provider_token1] = ACTIONS(1292), + [aux_sym_send_env_token1] = ACTIONS(1292), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1292), + [aux_sym_server_alive_interval_token1] = ACTIONS(1292), + [aux_sym_session_type_token1] = ACTIONS(1292), + [aux_sym_set_env_token1] = ACTIONS(1292), + [aux_sym_stdin_null_token1] = ACTIONS(1292), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1292), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1292), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1292), + [aux_sym_syslog_facility_token1] = ACTIONS(1292), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1292), + [aux_sym_keep_alive_token1] = ACTIONS(1292), + [aux_sym_tunnel_token1] = ACTIONS(1294), + [aux_sym_tunnel_device_token1] = ACTIONS(1292), + [aux_sym_update_host_keys_token1] = ACTIONS(1292), + [aux_sym_use_keychain_token1] = ACTIONS(1292), + [aux_sym_use_roaming_token1] = ACTIONS(1292), + [aux_sym_user_token1] = ACTIONS(1294), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1292), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1292), + [aux_sym_visual_host_key_token1] = ACTIONS(1292), + [aux_sym_xauth_location_token1] = ACTIONS(1292), }, [126] = { - [ts_builtin_sym_end] = ACTIONS(1293), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1297), - [aux_sym_match_token1] = ACTIONS(1293), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1293), - [aux_sym_address_family_token1] = ACTIONS(1293), - [aux_sym_batch_mode_token1] = ACTIONS(1293), - [aux_sym_bind_address_token1] = ACTIONS(1293), - [aux_sym_bind_interface_token1] = ACTIONS(1293), - [aux_sym_canonical_domains_token1] = ACTIONS(1293), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1293), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1293), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1293), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1293), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1293), - [aux_sym_certificate_file_token1] = ACTIONS(1293), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1293), - [aux_sym_check_host_ip_token1] = ACTIONS(1293), - [aux_sym_ciphers_token1] = ACTIONS(1293), - [aux_sym_cipher_token1] = ACTIONS(1295), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1293), - [aux_sym_compression_token1] = ACTIONS(1293), - [aux_sym_connection_attempts_token1] = ACTIONS(1293), - [aux_sym_connect_timeout_token1] = ACTIONS(1293), - [aux_sym_control_master_token1] = ACTIONS(1293), - [aux_sym_control_path_token1] = ACTIONS(1293), - [aux_sym_control_persist_token1] = ACTIONS(1293), - [aux_sym_dynamic_forward_token1] = ACTIONS(1293), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1293), - [aux_sym_escape_char_token1] = ACTIONS(1293), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1293), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1293), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1293), - [aux_sym_forward_agent_token1] = ACTIONS(1293), - [aux_sym_forward_x11_token1] = ACTIONS(1295), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1293), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1293), - [aux_sym_gateway_ports_token1] = ACTIONS(1293), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1293), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1293), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1293), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1293), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1293), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1293), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1293), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1293), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1293), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1293), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1293), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1293), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1293), - [aux_sym_host_key_alias_token1] = ACTIONS(1293), - [aux_sym_hostname_token1] = ACTIONS(1293), - [aux_sym_identities_only_token1] = ACTIONS(1293), - [aux_sym_identity_agent_token1] = ACTIONS(1293), - [aux_sym_identity_file_token1] = ACTIONS(1293), - [aux_sym_ignore_unknown_token1] = ACTIONS(1293), - [aux_sym_include_token1] = ACTIONS(1293), - [aux_sym_ip_qos_token1] = ACTIONS(1293), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1293), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1293), - [aux_sym_kex_algorithms_token1] = ACTIONS(1293), - [aux_sym_known_hosts_command_token1] = ACTIONS(1293), - [aux_sym_local_command_token1] = ACTIONS(1293), - [aux_sym_local_forward_token1] = ACTIONS(1293), - [aux_sym_log_level_token1] = ACTIONS(1293), - [aux_sym_log_verbose_token1] = ACTIONS(1293), - [aux_sym_macs_token1] = ACTIONS(1293), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1293), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1293), - [aux_sym_password_authentication_token1] = ACTIONS(1293), - [aux_sym_permit_local_command_token1] = ACTIONS(1293), - [aux_sym_permit_remote_open_token1] = ACTIONS(1293), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1293), - [aux_sym_port_token1] = ACTIONS(1293), - [aux_sym_preferred_authentications_token1] = ACTIONS(1293), - [aux_sym_protocol_token1] = ACTIONS(1293), - [aux_sym_proxy_command_token1] = ACTIONS(1293), - [aux_sym_proxy_jump_token1] = ACTIONS(1293), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1293), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1293), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1293), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1293), - [aux_sym_rekey_limit_token1] = ACTIONS(1293), - [aux_sym_remote_command_token1] = ACTIONS(1293), - [aux_sym_remote_forward_token1] = ACTIONS(1293), - [aux_sym_request_tty_token1] = ACTIONS(1293), - [aux_sym_required_rsa_size_token1] = ACTIONS(1293), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1293), - [aux_sym_security_key_provider_token1] = ACTIONS(1293), - [aux_sym_send_env_token1] = ACTIONS(1293), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1293), - [aux_sym_server_alive_interval_token1] = ACTIONS(1293), - [aux_sym_session_type_token1] = ACTIONS(1293), - [aux_sym_set_env_token1] = ACTIONS(1293), - [aux_sym_stdin_null_token1] = ACTIONS(1293), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1293), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1293), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1293), - [aux_sym_syslog_facility_token1] = ACTIONS(1293), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1293), - [aux_sym_keep_alive_token1] = ACTIONS(1293), - [aux_sym_tunnel_token1] = ACTIONS(1295), - [aux_sym_tunnel_device_token1] = ACTIONS(1293), - [aux_sym_update_host_keys_token1] = ACTIONS(1293), - [aux_sym_use_keychain_token1] = ACTIONS(1293), - [aux_sym_use_roaming_token1] = ACTIONS(1293), - [aux_sym_user_token1] = ACTIONS(1295), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1293), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1293), - [aux_sym_visual_host_key_token1] = ACTIONS(1293), - [aux_sym_xauth_location_token1] = ACTIONS(1293), + [ts_builtin_sym_end] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1302), + [aux_sym_match_token1] = ACTIONS(1298), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1298), + [aux_sym_address_family_token1] = ACTIONS(1298), + [aux_sym_batch_mode_token1] = ACTIONS(1298), + [aux_sym_bind_address_token1] = ACTIONS(1298), + [aux_sym_bind_interface_token1] = ACTIONS(1298), + [aux_sym_canonical_domains_token1] = ACTIONS(1298), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1298), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1298), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1298), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1298), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1298), + [aux_sym_certificate_file_token1] = ACTIONS(1298), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1298), + [aux_sym_check_host_ip_token1] = ACTIONS(1298), + [aux_sym_ciphers_token1] = ACTIONS(1298), + [aux_sym_cipher_token1] = ACTIONS(1300), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1298), + [aux_sym_compression_token1] = ACTIONS(1298), + [aux_sym_connection_attempts_token1] = ACTIONS(1298), + [aux_sym_connect_timeout_token1] = ACTIONS(1298), + [aux_sym_control_master_token1] = ACTIONS(1298), + [aux_sym_control_path_token1] = ACTIONS(1298), + [aux_sym_control_persist_token1] = ACTIONS(1298), + [aux_sym_dynamic_forward_token1] = ACTIONS(1298), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1298), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1298), + [aux_sym_escape_char_token1] = ACTIONS(1298), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1298), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1298), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1298), + [aux_sym_forward_agent_token1] = ACTIONS(1298), + [aux_sym_forward_x11_token1] = ACTIONS(1300), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1298), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1298), + [aux_sym_gateway_ports_token1] = ACTIONS(1298), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1298), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1298), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1298), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1298), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1298), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1298), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1298), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1298), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1298), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1298), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1298), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1298), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1298), + [aux_sym_host_key_alias_token1] = ACTIONS(1298), + [aux_sym_hostname_token1] = ACTIONS(1298), + [aux_sym_identities_only_token1] = ACTIONS(1298), + [aux_sym_identity_agent_token1] = ACTIONS(1298), + [aux_sym_identity_file_token1] = ACTIONS(1298), + [aux_sym_ignore_unknown_token1] = ACTIONS(1298), + [aux_sym_include_token1] = ACTIONS(1298), + [aux_sym_ip_qos_token1] = ACTIONS(1298), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1298), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1298), + [aux_sym_kex_algorithms_token1] = ACTIONS(1298), + [aux_sym_known_hosts_command_token1] = ACTIONS(1298), + [aux_sym_local_command_token1] = ACTIONS(1298), + [aux_sym_local_forward_token1] = ACTIONS(1298), + [aux_sym_log_level_token1] = ACTIONS(1298), + [aux_sym_log_verbose_token1] = ACTIONS(1298), + [aux_sym_macs_token1] = ACTIONS(1298), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1298), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1298), + [aux_sym_password_authentication_token1] = ACTIONS(1298), + [aux_sym_permit_local_command_token1] = ACTIONS(1298), + [aux_sym_permit_remote_open_token1] = ACTIONS(1298), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1298), + [aux_sym_port_token1] = ACTIONS(1298), + [aux_sym_preferred_authentications_token1] = ACTIONS(1298), + [aux_sym_protocol_token1] = ACTIONS(1298), + [aux_sym_proxy_command_token1] = ACTIONS(1298), + [aux_sym_proxy_jump_token1] = ACTIONS(1298), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1298), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1298), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1298), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1298), + [aux_sym_rekey_limit_token1] = ACTIONS(1298), + [aux_sym_remote_command_token1] = ACTIONS(1298), + [aux_sym_remote_forward_token1] = ACTIONS(1298), + [aux_sym_request_tty_token1] = ACTIONS(1298), + [aux_sym_required_rsa_size_token1] = ACTIONS(1298), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1298), + [aux_sym_security_key_provider_token1] = ACTIONS(1298), + [aux_sym_send_env_token1] = ACTIONS(1298), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1298), + [aux_sym_server_alive_interval_token1] = ACTIONS(1298), + [aux_sym_session_type_token1] = ACTIONS(1298), + [aux_sym_set_env_token1] = ACTIONS(1298), + [aux_sym_stdin_null_token1] = ACTIONS(1298), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1298), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1298), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1298), + [aux_sym_syslog_facility_token1] = ACTIONS(1298), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1298), + [aux_sym_keep_alive_token1] = ACTIONS(1298), + [aux_sym_tunnel_token1] = ACTIONS(1300), + [aux_sym_tunnel_device_token1] = ACTIONS(1298), + [aux_sym_update_host_keys_token1] = ACTIONS(1298), + [aux_sym_use_keychain_token1] = ACTIONS(1298), + [aux_sym_use_roaming_token1] = ACTIONS(1298), + [aux_sym_user_token1] = ACTIONS(1300), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1298), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1298), + [aux_sym_visual_host_key_token1] = ACTIONS(1298), + [aux_sym_xauth_location_token1] = ACTIONS(1298), }, [127] = { - [ts_builtin_sym_end] = ACTIONS(1299), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1301), - [anon_sym_DQUOTE] = ACTIONS(1303), - [aux_sym_match_token1] = ACTIONS(1299), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1299), - [aux_sym_address_family_token1] = ACTIONS(1299), - [aux_sym_batch_mode_token1] = ACTIONS(1299), - [aux_sym_bind_address_token1] = ACTIONS(1299), - [aux_sym_bind_interface_token1] = ACTIONS(1299), - [aux_sym_canonical_domains_token1] = ACTIONS(1299), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1299), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1299), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1299), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1299), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1299), - [aux_sym_certificate_file_token1] = ACTIONS(1299), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1299), - [aux_sym_check_host_ip_token1] = ACTIONS(1299), - [aux_sym_ciphers_token1] = ACTIONS(1299), - [aux_sym_cipher_token1] = ACTIONS(1301), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1299), - [aux_sym_compression_token1] = ACTIONS(1299), - [aux_sym_connection_attempts_token1] = ACTIONS(1299), - [aux_sym_connect_timeout_token1] = ACTIONS(1299), - [aux_sym_control_master_token1] = ACTIONS(1299), - [aux_sym_control_path_token1] = ACTIONS(1299), - [aux_sym_control_persist_token1] = ACTIONS(1299), - [aux_sym_dynamic_forward_token1] = ACTIONS(1299), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1299), - [aux_sym_escape_char_token1] = ACTIONS(1299), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1299), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1299), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1299), - [aux_sym_forward_agent_token1] = ACTIONS(1299), - [aux_sym_forward_x11_token1] = ACTIONS(1301), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1299), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1299), - [aux_sym_gateway_ports_token1] = ACTIONS(1299), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1299), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1299), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1299), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1299), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1299), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1299), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1299), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1299), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1299), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1299), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1299), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1299), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1299), - [aux_sym_host_key_alias_token1] = ACTIONS(1299), - [aux_sym_hostname_token1] = ACTIONS(1299), - [aux_sym_identities_only_token1] = ACTIONS(1299), - [aux_sym_identity_agent_token1] = ACTIONS(1299), - [aux_sym_identity_file_token1] = ACTIONS(1299), - [aux_sym_ignore_unknown_token1] = ACTIONS(1299), - [aux_sym_include_token1] = ACTIONS(1299), - [aux_sym_ip_qos_token1] = ACTIONS(1299), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1299), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1299), - [aux_sym_kex_algorithms_token1] = ACTIONS(1299), - [aux_sym_known_hosts_command_token1] = ACTIONS(1299), - [aux_sym_local_command_token1] = ACTIONS(1299), - [aux_sym_local_forward_token1] = ACTIONS(1299), - [aux_sym_log_level_token1] = ACTIONS(1299), - [aux_sym_log_verbose_token1] = ACTIONS(1299), - [aux_sym_macs_token1] = ACTIONS(1299), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1299), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1299), - [aux_sym_password_authentication_token1] = ACTIONS(1299), - [aux_sym_permit_local_command_token1] = ACTIONS(1299), - [aux_sym_permit_remote_open_token1] = ACTIONS(1299), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1299), - [aux_sym_port_token1] = ACTIONS(1299), - [aux_sym_preferred_authentications_token1] = ACTIONS(1299), - [aux_sym_protocol_token1] = ACTIONS(1299), - [aux_sym_proxy_command_token1] = ACTIONS(1299), - [aux_sym_proxy_jump_token1] = ACTIONS(1299), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1299), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1299), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1299), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1299), - [aux_sym_rekey_limit_token1] = ACTIONS(1299), - [aux_sym_remote_command_token1] = ACTIONS(1299), - [aux_sym_remote_forward_token1] = ACTIONS(1299), - [aux_sym_request_tty_token1] = ACTIONS(1299), - [aux_sym_required_rsa_size_token1] = ACTIONS(1299), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1299), - [aux_sym_security_key_provider_token1] = ACTIONS(1299), - [aux_sym_send_env_token1] = ACTIONS(1299), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1299), - [aux_sym_server_alive_interval_token1] = ACTIONS(1299), - [aux_sym_session_type_token1] = ACTIONS(1299), - [aux_sym_set_env_token1] = ACTIONS(1299), - [aux_sym_stdin_null_token1] = ACTIONS(1299), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1299), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1299), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1299), - [aux_sym_syslog_facility_token1] = ACTIONS(1299), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1299), - [aux_sym_keep_alive_token1] = ACTIONS(1299), - [aux_sym_tunnel_token1] = ACTIONS(1301), - [aux_sym_tunnel_device_token1] = ACTIONS(1299), - [aux_sym_update_host_keys_token1] = ACTIONS(1299), - [aux_sym_use_keychain_token1] = ACTIONS(1299), - [aux_sym_use_roaming_token1] = ACTIONS(1299), - [aux_sym_user_token1] = ACTIONS(1301), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1299), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1299), - [aux_sym_visual_host_key_token1] = ACTIONS(1299), - [aux_sym_xauth_location_token1] = ACTIONS(1299), + [ts_builtin_sym_end] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1308), + [aux_sym_match_token1] = ACTIONS(1304), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1304), + [aux_sym_address_family_token1] = ACTIONS(1304), + [aux_sym_batch_mode_token1] = ACTIONS(1304), + [aux_sym_bind_address_token1] = ACTIONS(1304), + [aux_sym_bind_interface_token1] = ACTIONS(1304), + [aux_sym_canonical_domains_token1] = ACTIONS(1304), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1304), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1304), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1304), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1304), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1304), + [aux_sym_certificate_file_token1] = ACTIONS(1304), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1304), + [aux_sym_check_host_ip_token1] = ACTIONS(1304), + [aux_sym_ciphers_token1] = ACTIONS(1304), + [aux_sym_cipher_token1] = ACTIONS(1306), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1304), + [aux_sym_compression_token1] = ACTIONS(1304), + [aux_sym_connection_attempts_token1] = ACTIONS(1304), + [aux_sym_connect_timeout_token1] = ACTIONS(1304), + [aux_sym_control_master_token1] = ACTIONS(1304), + [aux_sym_control_path_token1] = ACTIONS(1304), + [aux_sym_control_persist_token1] = ACTIONS(1304), + [aux_sym_dynamic_forward_token1] = ACTIONS(1304), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1304), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1304), + [aux_sym_escape_char_token1] = ACTIONS(1304), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1304), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1304), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1304), + [aux_sym_forward_agent_token1] = ACTIONS(1304), + [aux_sym_forward_x11_token1] = ACTIONS(1306), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1304), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1304), + [aux_sym_gateway_ports_token1] = ACTIONS(1304), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1304), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1304), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1304), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1304), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1304), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1304), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1304), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1304), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1304), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1304), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1304), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1304), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1304), + [aux_sym_host_key_alias_token1] = ACTIONS(1304), + [aux_sym_hostname_token1] = ACTIONS(1304), + [aux_sym_identities_only_token1] = ACTIONS(1304), + [aux_sym_identity_agent_token1] = ACTIONS(1304), + [aux_sym_identity_file_token1] = ACTIONS(1304), + [aux_sym_ignore_unknown_token1] = ACTIONS(1304), + [aux_sym_include_token1] = ACTIONS(1304), + [aux_sym_ip_qos_token1] = ACTIONS(1304), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1304), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1304), + [aux_sym_kex_algorithms_token1] = ACTIONS(1304), + [aux_sym_known_hosts_command_token1] = ACTIONS(1304), + [aux_sym_local_command_token1] = ACTIONS(1304), + [aux_sym_local_forward_token1] = ACTIONS(1304), + [aux_sym_log_level_token1] = ACTIONS(1304), + [aux_sym_log_verbose_token1] = ACTIONS(1304), + [aux_sym_macs_token1] = ACTIONS(1304), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1304), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1304), + [aux_sym_password_authentication_token1] = ACTIONS(1304), + [aux_sym_permit_local_command_token1] = ACTIONS(1304), + [aux_sym_permit_remote_open_token1] = ACTIONS(1304), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1304), + [aux_sym_port_token1] = ACTIONS(1304), + [aux_sym_preferred_authentications_token1] = ACTIONS(1304), + [aux_sym_protocol_token1] = ACTIONS(1304), + [aux_sym_proxy_command_token1] = ACTIONS(1304), + [aux_sym_proxy_jump_token1] = ACTIONS(1304), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1304), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1304), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1304), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1304), + [aux_sym_rekey_limit_token1] = ACTIONS(1304), + [aux_sym_remote_command_token1] = ACTIONS(1304), + [aux_sym_remote_forward_token1] = ACTIONS(1304), + [aux_sym_request_tty_token1] = ACTIONS(1304), + [aux_sym_required_rsa_size_token1] = ACTIONS(1304), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1304), + [aux_sym_security_key_provider_token1] = ACTIONS(1304), + [aux_sym_send_env_token1] = ACTIONS(1304), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1304), + [aux_sym_server_alive_interval_token1] = ACTIONS(1304), + [aux_sym_session_type_token1] = ACTIONS(1304), + [aux_sym_set_env_token1] = ACTIONS(1304), + [aux_sym_stdin_null_token1] = ACTIONS(1304), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1304), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1304), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1304), + [aux_sym_syslog_facility_token1] = ACTIONS(1304), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1304), + [aux_sym_keep_alive_token1] = ACTIONS(1304), + [aux_sym_tunnel_token1] = ACTIONS(1306), + [aux_sym_tunnel_device_token1] = ACTIONS(1304), + [aux_sym_update_host_keys_token1] = ACTIONS(1304), + [aux_sym_use_keychain_token1] = ACTIONS(1304), + [aux_sym_use_roaming_token1] = ACTIONS(1304), + [aux_sym_user_token1] = ACTIONS(1306), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1304), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1304), + [aux_sym_visual_host_key_token1] = ACTIONS(1304), + [aux_sym_xauth_location_token1] = ACTIONS(1304), }, [128] = { - [ts_builtin_sym_end] = ACTIONS(1305), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1307), - [anon_sym_DQUOTE] = ACTIONS(1309), - [aux_sym_match_token1] = ACTIONS(1305), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1305), - [aux_sym_address_family_token1] = ACTIONS(1305), - [aux_sym_batch_mode_token1] = ACTIONS(1305), - [aux_sym_bind_address_token1] = ACTIONS(1305), - [aux_sym_bind_interface_token1] = ACTIONS(1305), - [aux_sym_canonical_domains_token1] = ACTIONS(1305), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1305), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1305), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1305), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1305), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1305), - [aux_sym_certificate_file_token1] = ACTIONS(1305), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1305), - [aux_sym_check_host_ip_token1] = ACTIONS(1305), - [aux_sym_ciphers_token1] = ACTIONS(1305), - [aux_sym_cipher_token1] = ACTIONS(1307), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1305), - [aux_sym_compression_token1] = ACTIONS(1305), - [aux_sym_connection_attempts_token1] = ACTIONS(1305), - [aux_sym_connect_timeout_token1] = ACTIONS(1305), - [aux_sym_control_master_token1] = ACTIONS(1305), - [aux_sym_control_path_token1] = ACTIONS(1305), - [aux_sym_control_persist_token1] = ACTIONS(1305), - [aux_sym_dynamic_forward_token1] = ACTIONS(1305), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1305), - [aux_sym_escape_char_token1] = ACTIONS(1305), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1305), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1305), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1305), - [aux_sym_forward_agent_token1] = ACTIONS(1305), - [aux_sym_forward_x11_token1] = ACTIONS(1307), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1305), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1305), - [aux_sym_gateway_ports_token1] = ACTIONS(1305), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1305), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1305), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1305), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1305), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1305), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1305), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1305), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1305), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1305), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1305), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1305), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1305), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1305), - [aux_sym_host_key_alias_token1] = ACTIONS(1305), - [aux_sym_hostname_token1] = ACTIONS(1305), - [aux_sym_identities_only_token1] = ACTIONS(1305), - [aux_sym_identity_agent_token1] = ACTIONS(1305), - [aux_sym_identity_file_token1] = ACTIONS(1305), - [aux_sym_ignore_unknown_token1] = ACTIONS(1305), - [aux_sym_include_token1] = ACTIONS(1305), - [aux_sym_ip_qos_token1] = ACTIONS(1305), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1305), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1305), - [aux_sym_kex_algorithms_token1] = ACTIONS(1305), - [aux_sym_known_hosts_command_token1] = ACTIONS(1305), - [aux_sym_local_command_token1] = ACTIONS(1305), - [aux_sym_local_forward_token1] = ACTIONS(1305), - [aux_sym_log_level_token1] = ACTIONS(1305), - [aux_sym_log_verbose_token1] = ACTIONS(1305), - [aux_sym_macs_token1] = ACTIONS(1305), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1305), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1305), - [aux_sym_password_authentication_token1] = ACTIONS(1305), - [aux_sym_permit_local_command_token1] = ACTIONS(1305), - [aux_sym_permit_remote_open_token1] = ACTIONS(1305), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1305), - [aux_sym_port_token1] = ACTIONS(1305), - [aux_sym_preferred_authentications_token1] = ACTIONS(1305), - [aux_sym_protocol_token1] = ACTIONS(1305), - [aux_sym_proxy_command_token1] = ACTIONS(1305), - [aux_sym_proxy_jump_token1] = ACTIONS(1305), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1305), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1305), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1305), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1305), - [aux_sym_rekey_limit_token1] = ACTIONS(1305), - [aux_sym_remote_command_token1] = ACTIONS(1305), - [aux_sym_remote_forward_token1] = ACTIONS(1305), - [aux_sym_request_tty_token1] = ACTIONS(1305), - [aux_sym_required_rsa_size_token1] = ACTIONS(1305), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1305), - [aux_sym_security_key_provider_token1] = ACTIONS(1305), - [aux_sym_send_env_token1] = ACTIONS(1305), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1305), - [aux_sym_server_alive_interval_token1] = ACTIONS(1305), - [aux_sym_session_type_token1] = ACTIONS(1305), - [aux_sym_set_env_token1] = ACTIONS(1305), - [aux_sym_stdin_null_token1] = ACTIONS(1305), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1305), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1305), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1305), - [aux_sym_syslog_facility_token1] = ACTIONS(1305), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1305), - [aux_sym_keep_alive_token1] = ACTIONS(1305), - [aux_sym_tunnel_token1] = ACTIONS(1307), - [aux_sym_tunnel_device_token1] = ACTIONS(1305), - [aux_sym_update_host_keys_token1] = ACTIONS(1305), - [aux_sym_use_keychain_token1] = ACTIONS(1305), - [aux_sym_use_roaming_token1] = ACTIONS(1305), - [aux_sym_user_token1] = ACTIONS(1307), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1305), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1305), - [aux_sym_visual_host_key_token1] = ACTIONS(1305), - [aux_sym_xauth_location_token1] = ACTIONS(1305), + [ts_builtin_sym_end] = ACTIONS(1310), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1314), + [aux_sym_match_token1] = ACTIONS(1310), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1310), + [aux_sym_address_family_token1] = ACTIONS(1310), + [aux_sym_batch_mode_token1] = ACTIONS(1310), + [aux_sym_bind_address_token1] = ACTIONS(1310), + [aux_sym_bind_interface_token1] = ACTIONS(1310), + [aux_sym_canonical_domains_token1] = ACTIONS(1310), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1310), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1310), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1310), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1310), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1310), + [aux_sym_certificate_file_token1] = ACTIONS(1310), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1310), + [aux_sym_check_host_ip_token1] = ACTIONS(1310), + [aux_sym_ciphers_token1] = ACTIONS(1310), + [aux_sym_cipher_token1] = ACTIONS(1312), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1310), + [aux_sym_compression_token1] = ACTIONS(1310), + [aux_sym_connection_attempts_token1] = ACTIONS(1310), + [aux_sym_connect_timeout_token1] = ACTIONS(1310), + [aux_sym_control_master_token1] = ACTIONS(1310), + [aux_sym_control_path_token1] = ACTIONS(1310), + [aux_sym_control_persist_token1] = ACTIONS(1310), + [aux_sym_dynamic_forward_token1] = ACTIONS(1310), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1310), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1310), + [aux_sym_escape_char_token1] = ACTIONS(1310), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1310), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1310), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1310), + [aux_sym_forward_agent_token1] = ACTIONS(1310), + [aux_sym_forward_x11_token1] = ACTIONS(1312), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1310), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1310), + [aux_sym_gateway_ports_token1] = ACTIONS(1310), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1310), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1310), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1310), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1310), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1310), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1310), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1310), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1310), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1310), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1310), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1310), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1310), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1310), + [aux_sym_host_key_alias_token1] = ACTIONS(1310), + [aux_sym_hostname_token1] = ACTIONS(1310), + [aux_sym_identities_only_token1] = ACTIONS(1310), + [aux_sym_identity_agent_token1] = ACTIONS(1310), + [aux_sym_identity_file_token1] = ACTIONS(1310), + [aux_sym_ignore_unknown_token1] = ACTIONS(1310), + [aux_sym_include_token1] = ACTIONS(1310), + [aux_sym_ip_qos_token1] = ACTIONS(1310), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1310), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1310), + [aux_sym_kex_algorithms_token1] = ACTIONS(1310), + [aux_sym_known_hosts_command_token1] = ACTIONS(1310), + [aux_sym_local_command_token1] = ACTIONS(1310), + [aux_sym_local_forward_token1] = ACTIONS(1310), + [aux_sym_log_level_token1] = ACTIONS(1310), + [aux_sym_log_verbose_token1] = ACTIONS(1310), + [aux_sym_macs_token1] = ACTIONS(1310), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1310), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1310), + [aux_sym_password_authentication_token1] = ACTIONS(1310), + [aux_sym_permit_local_command_token1] = ACTIONS(1310), + [aux_sym_permit_remote_open_token1] = ACTIONS(1310), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1310), + [aux_sym_port_token1] = ACTIONS(1310), + [aux_sym_preferred_authentications_token1] = ACTIONS(1310), + [aux_sym_protocol_token1] = ACTIONS(1310), + [aux_sym_proxy_command_token1] = ACTIONS(1310), + [aux_sym_proxy_jump_token1] = ACTIONS(1310), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1310), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1310), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1310), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1310), + [aux_sym_rekey_limit_token1] = ACTIONS(1310), + [aux_sym_remote_command_token1] = ACTIONS(1310), + [aux_sym_remote_forward_token1] = ACTIONS(1310), + [aux_sym_request_tty_token1] = ACTIONS(1310), + [aux_sym_required_rsa_size_token1] = ACTIONS(1310), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1310), + [aux_sym_security_key_provider_token1] = ACTIONS(1310), + [aux_sym_send_env_token1] = ACTIONS(1310), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1310), + [aux_sym_server_alive_interval_token1] = ACTIONS(1310), + [aux_sym_session_type_token1] = ACTIONS(1310), + [aux_sym_set_env_token1] = ACTIONS(1310), + [aux_sym_stdin_null_token1] = ACTIONS(1310), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1310), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1310), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1310), + [aux_sym_syslog_facility_token1] = ACTIONS(1310), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1310), + [aux_sym_keep_alive_token1] = ACTIONS(1310), + [aux_sym_tunnel_token1] = ACTIONS(1312), + [aux_sym_tunnel_device_token1] = ACTIONS(1310), + [aux_sym_update_host_keys_token1] = ACTIONS(1310), + [aux_sym_use_keychain_token1] = ACTIONS(1310), + [aux_sym_use_roaming_token1] = ACTIONS(1310), + [aux_sym_user_token1] = ACTIONS(1312), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1310), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1310), + [aux_sym_visual_host_key_token1] = ACTIONS(1310), + [aux_sym_xauth_location_token1] = ACTIONS(1310), }, [129] = { - [ts_builtin_sym_end] = ACTIONS(1311), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(1315), - [aux_sym_match_token1] = ACTIONS(1311), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1311), - [aux_sym_address_family_token1] = ACTIONS(1311), - [aux_sym_batch_mode_token1] = ACTIONS(1311), - [aux_sym_bind_address_token1] = ACTIONS(1311), - [aux_sym_bind_interface_token1] = ACTIONS(1311), - [aux_sym_canonical_domains_token1] = ACTIONS(1311), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1311), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1311), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1311), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1311), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1311), - [aux_sym_certificate_file_token1] = ACTIONS(1311), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1311), - [aux_sym_check_host_ip_token1] = ACTIONS(1311), - [aux_sym_ciphers_token1] = ACTIONS(1311), - [aux_sym_cipher_token1] = ACTIONS(1313), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1311), - [aux_sym_compression_token1] = ACTIONS(1311), - [aux_sym_connection_attempts_token1] = ACTIONS(1311), - [aux_sym_connect_timeout_token1] = ACTIONS(1311), - [aux_sym_control_master_token1] = ACTIONS(1311), - [aux_sym_control_path_token1] = ACTIONS(1311), - [aux_sym_control_persist_token1] = ACTIONS(1311), - [aux_sym_dynamic_forward_token1] = ACTIONS(1311), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1311), - [aux_sym_escape_char_token1] = ACTIONS(1311), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1311), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1311), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1311), - [aux_sym_forward_agent_token1] = ACTIONS(1311), - [aux_sym_forward_x11_token1] = ACTIONS(1313), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1311), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1311), - [aux_sym_gateway_ports_token1] = ACTIONS(1311), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1311), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1311), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1311), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1311), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1311), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1311), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1311), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1311), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1311), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1311), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1311), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1311), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1311), - [aux_sym_host_key_alias_token1] = ACTIONS(1311), - [aux_sym_hostname_token1] = ACTIONS(1311), - [aux_sym_identities_only_token1] = ACTIONS(1311), - [aux_sym_identity_agent_token1] = ACTIONS(1311), - [aux_sym_identity_file_token1] = ACTIONS(1311), - [aux_sym_ignore_unknown_token1] = ACTIONS(1311), - [aux_sym_include_token1] = ACTIONS(1311), - [aux_sym_ip_qos_token1] = ACTIONS(1311), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1311), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1311), - [aux_sym_kex_algorithms_token1] = ACTIONS(1311), - [aux_sym_known_hosts_command_token1] = ACTIONS(1311), - [aux_sym_local_command_token1] = ACTIONS(1311), - [aux_sym_local_forward_token1] = ACTIONS(1311), - [aux_sym_log_level_token1] = ACTIONS(1311), - [aux_sym_log_verbose_token1] = ACTIONS(1311), - [aux_sym_macs_token1] = ACTIONS(1311), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1311), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1311), - [aux_sym_password_authentication_token1] = ACTIONS(1311), - [aux_sym_permit_local_command_token1] = ACTIONS(1311), - [aux_sym_permit_remote_open_token1] = ACTIONS(1311), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1311), - [aux_sym_port_token1] = ACTIONS(1311), - [aux_sym_preferred_authentications_token1] = ACTIONS(1311), - [aux_sym_protocol_token1] = ACTIONS(1311), - [aux_sym_proxy_command_token1] = ACTIONS(1311), - [aux_sym_proxy_jump_token1] = ACTIONS(1311), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1311), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1311), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1311), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1311), - [aux_sym_rekey_limit_token1] = ACTIONS(1311), - [aux_sym_remote_command_token1] = ACTIONS(1311), - [aux_sym_remote_forward_token1] = ACTIONS(1311), - [aux_sym_request_tty_token1] = ACTIONS(1311), - [aux_sym_required_rsa_size_token1] = ACTIONS(1311), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1311), - [aux_sym_security_key_provider_token1] = ACTIONS(1311), - [aux_sym_send_env_token1] = ACTIONS(1311), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1311), - [aux_sym_server_alive_interval_token1] = ACTIONS(1311), - [aux_sym_session_type_token1] = ACTIONS(1311), - [aux_sym_set_env_token1] = ACTIONS(1311), - [aux_sym_stdin_null_token1] = ACTIONS(1311), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1311), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1311), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1311), - [aux_sym_syslog_facility_token1] = ACTIONS(1311), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1311), - [aux_sym_keep_alive_token1] = ACTIONS(1311), - [aux_sym_tunnel_token1] = ACTIONS(1313), - [aux_sym_tunnel_device_token1] = ACTIONS(1311), - [aux_sym_update_host_keys_token1] = ACTIONS(1311), - [aux_sym_use_keychain_token1] = ACTIONS(1311), - [aux_sym_use_roaming_token1] = ACTIONS(1311), - [aux_sym_user_token1] = ACTIONS(1313), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1311), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1311), - [aux_sym_visual_host_key_token1] = ACTIONS(1311), - [aux_sym_xauth_location_token1] = ACTIONS(1311), + [ts_builtin_sym_end] = ACTIONS(1316), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1318), + [anon_sym_DQUOTE] = ACTIONS(1320), + [aux_sym_match_token1] = ACTIONS(1316), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1316), + [aux_sym_address_family_token1] = ACTIONS(1316), + [aux_sym_batch_mode_token1] = ACTIONS(1316), + [aux_sym_bind_address_token1] = ACTIONS(1316), + [aux_sym_bind_interface_token1] = ACTIONS(1316), + [aux_sym_canonical_domains_token1] = ACTIONS(1316), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1316), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1316), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1316), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1316), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1316), + [aux_sym_certificate_file_token1] = ACTIONS(1316), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1316), + [aux_sym_check_host_ip_token1] = ACTIONS(1316), + [aux_sym_ciphers_token1] = ACTIONS(1316), + [aux_sym_cipher_token1] = ACTIONS(1318), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1316), + [aux_sym_compression_token1] = ACTIONS(1316), + [aux_sym_connection_attempts_token1] = ACTIONS(1316), + [aux_sym_connect_timeout_token1] = ACTIONS(1316), + [aux_sym_control_master_token1] = ACTIONS(1316), + [aux_sym_control_path_token1] = ACTIONS(1316), + [aux_sym_control_persist_token1] = ACTIONS(1316), + [aux_sym_dynamic_forward_token1] = ACTIONS(1316), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1316), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1316), + [aux_sym_escape_char_token1] = ACTIONS(1316), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1316), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1316), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1316), + [aux_sym_forward_agent_token1] = ACTIONS(1316), + [aux_sym_forward_x11_token1] = ACTIONS(1318), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1316), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1316), + [aux_sym_gateway_ports_token1] = ACTIONS(1316), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1316), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1316), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1316), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1316), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1316), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1316), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1316), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1316), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1316), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1316), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1316), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1316), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1316), + [aux_sym_host_key_alias_token1] = ACTIONS(1316), + [aux_sym_hostname_token1] = ACTIONS(1316), + [aux_sym_identities_only_token1] = ACTIONS(1316), + [aux_sym_identity_agent_token1] = ACTIONS(1316), + [aux_sym_identity_file_token1] = ACTIONS(1316), + [aux_sym_ignore_unknown_token1] = ACTIONS(1316), + [aux_sym_include_token1] = ACTIONS(1316), + [aux_sym_ip_qos_token1] = ACTIONS(1316), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1316), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1316), + [aux_sym_kex_algorithms_token1] = ACTIONS(1316), + [aux_sym_known_hosts_command_token1] = ACTIONS(1316), + [aux_sym_local_command_token1] = ACTIONS(1316), + [aux_sym_local_forward_token1] = ACTIONS(1316), + [aux_sym_log_level_token1] = ACTIONS(1316), + [aux_sym_log_verbose_token1] = ACTIONS(1316), + [aux_sym_macs_token1] = ACTIONS(1316), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1316), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1316), + [aux_sym_password_authentication_token1] = ACTIONS(1316), + [aux_sym_permit_local_command_token1] = ACTIONS(1316), + [aux_sym_permit_remote_open_token1] = ACTIONS(1316), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1316), + [aux_sym_port_token1] = ACTIONS(1316), + [aux_sym_preferred_authentications_token1] = ACTIONS(1316), + [aux_sym_protocol_token1] = ACTIONS(1316), + [aux_sym_proxy_command_token1] = ACTIONS(1316), + [aux_sym_proxy_jump_token1] = ACTIONS(1316), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1316), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1316), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1316), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1316), + [aux_sym_rekey_limit_token1] = ACTIONS(1316), + [aux_sym_remote_command_token1] = ACTIONS(1316), + [aux_sym_remote_forward_token1] = ACTIONS(1316), + [aux_sym_request_tty_token1] = ACTIONS(1316), + [aux_sym_required_rsa_size_token1] = ACTIONS(1316), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1316), + [aux_sym_security_key_provider_token1] = ACTIONS(1316), + [aux_sym_send_env_token1] = ACTIONS(1316), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1316), + [aux_sym_server_alive_interval_token1] = ACTIONS(1316), + [aux_sym_session_type_token1] = ACTIONS(1316), + [aux_sym_set_env_token1] = ACTIONS(1316), + [aux_sym_stdin_null_token1] = ACTIONS(1316), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1316), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1316), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1316), + [aux_sym_syslog_facility_token1] = ACTIONS(1316), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1316), + [aux_sym_keep_alive_token1] = ACTIONS(1316), + [aux_sym_tunnel_token1] = ACTIONS(1318), + [aux_sym_tunnel_device_token1] = ACTIONS(1316), + [aux_sym_update_host_keys_token1] = ACTIONS(1316), + [aux_sym_use_keychain_token1] = ACTIONS(1316), + [aux_sym_use_roaming_token1] = ACTIONS(1316), + [aux_sym_user_token1] = ACTIONS(1318), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1316), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1316), + [aux_sym_visual_host_key_token1] = ACTIONS(1316), + [aux_sym_xauth_location_token1] = ACTIONS(1316), }, [130] = { - [ts_builtin_sym_end] = ACTIONS(1317), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1321), - [aux_sym_match_token1] = ACTIONS(1317), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1317), - [aux_sym_address_family_token1] = ACTIONS(1317), - [aux_sym_batch_mode_token1] = ACTIONS(1317), - [aux_sym_bind_address_token1] = ACTIONS(1317), - [aux_sym_bind_interface_token1] = ACTIONS(1317), - [aux_sym_canonical_domains_token1] = ACTIONS(1317), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1317), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1317), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1317), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1317), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1317), - [aux_sym_certificate_file_token1] = ACTIONS(1317), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1317), - [aux_sym_check_host_ip_token1] = ACTIONS(1317), - [aux_sym_ciphers_token1] = ACTIONS(1317), - [aux_sym_cipher_token1] = ACTIONS(1319), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1317), - [aux_sym_compression_token1] = ACTIONS(1317), - [aux_sym_connection_attempts_token1] = ACTIONS(1317), - [aux_sym_connect_timeout_token1] = ACTIONS(1317), - [aux_sym_control_master_token1] = ACTIONS(1317), - [aux_sym_control_path_token1] = ACTIONS(1317), - [aux_sym_control_persist_token1] = ACTIONS(1317), - [aux_sym_dynamic_forward_token1] = ACTIONS(1317), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1317), - [aux_sym_escape_char_token1] = ACTIONS(1317), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1317), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1317), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1317), - [aux_sym_forward_agent_token1] = ACTIONS(1317), - [aux_sym_forward_x11_token1] = ACTIONS(1319), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1317), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1317), - [aux_sym_gateway_ports_token1] = ACTIONS(1317), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1317), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1317), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1317), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1317), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1317), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1317), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1317), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1317), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1317), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1317), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1317), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1317), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1317), - [aux_sym_host_key_alias_token1] = ACTIONS(1317), - [aux_sym_hostname_token1] = ACTIONS(1317), - [aux_sym_identities_only_token1] = ACTIONS(1317), - [aux_sym_identity_agent_token1] = ACTIONS(1317), - [aux_sym_identity_file_token1] = ACTIONS(1317), - [aux_sym_ignore_unknown_token1] = ACTIONS(1317), - [aux_sym_include_token1] = ACTIONS(1317), - [aux_sym_ip_qos_token1] = ACTIONS(1317), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1317), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1317), - [aux_sym_kex_algorithms_token1] = ACTIONS(1317), - [aux_sym_known_hosts_command_token1] = ACTIONS(1317), - [aux_sym_local_command_token1] = ACTIONS(1317), - [aux_sym_local_forward_token1] = ACTIONS(1317), - [aux_sym_log_level_token1] = ACTIONS(1317), - [aux_sym_log_verbose_token1] = ACTIONS(1317), - [aux_sym_macs_token1] = ACTIONS(1317), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1317), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1317), - [aux_sym_password_authentication_token1] = ACTIONS(1317), - [aux_sym_permit_local_command_token1] = ACTIONS(1317), - [aux_sym_permit_remote_open_token1] = ACTIONS(1317), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1317), - [aux_sym_port_token1] = ACTIONS(1317), - [aux_sym_preferred_authentications_token1] = ACTIONS(1317), - [aux_sym_protocol_token1] = ACTIONS(1317), - [aux_sym_proxy_command_token1] = ACTIONS(1317), - [aux_sym_proxy_jump_token1] = ACTIONS(1317), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1317), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1317), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1317), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1317), - [aux_sym_rekey_limit_token1] = ACTIONS(1317), - [aux_sym_remote_command_token1] = ACTIONS(1317), - [aux_sym_remote_forward_token1] = ACTIONS(1317), - [aux_sym_request_tty_token1] = ACTIONS(1317), - [aux_sym_required_rsa_size_token1] = ACTIONS(1317), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1317), - [aux_sym_security_key_provider_token1] = ACTIONS(1317), - [aux_sym_send_env_token1] = ACTIONS(1317), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1317), - [aux_sym_server_alive_interval_token1] = ACTIONS(1317), - [aux_sym_session_type_token1] = ACTIONS(1317), - [aux_sym_set_env_token1] = ACTIONS(1317), - [aux_sym_stdin_null_token1] = ACTIONS(1317), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1317), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1317), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1317), - [aux_sym_syslog_facility_token1] = ACTIONS(1317), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1317), - [aux_sym_keep_alive_token1] = ACTIONS(1317), - [aux_sym_tunnel_token1] = ACTIONS(1319), - [aux_sym_tunnel_device_token1] = ACTIONS(1317), - [aux_sym_update_host_keys_token1] = ACTIONS(1317), - [aux_sym_use_keychain_token1] = ACTIONS(1317), - [aux_sym_use_roaming_token1] = ACTIONS(1317), - [aux_sym_user_token1] = ACTIONS(1319), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1317), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1317), - [aux_sym_visual_host_key_token1] = ACTIONS(1317), - [aux_sym_xauth_location_token1] = ACTIONS(1317), + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1326), + [aux_sym_match_token1] = ACTIONS(1322), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1322), + [aux_sym_address_family_token1] = ACTIONS(1322), + [aux_sym_batch_mode_token1] = ACTIONS(1322), + [aux_sym_bind_address_token1] = ACTIONS(1322), + [aux_sym_bind_interface_token1] = ACTIONS(1322), + [aux_sym_canonical_domains_token1] = ACTIONS(1322), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1322), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1322), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1322), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1322), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1322), + [aux_sym_certificate_file_token1] = ACTIONS(1322), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1322), + [aux_sym_check_host_ip_token1] = ACTIONS(1322), + [aux_sym_ciphers_token1] = ACTIONS(1322), + [aux_sym_cipher_token1] = ACTIONS(1324), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1322), + [aux_sym_compression_token1] = ACTIONS(1322), + [aux_sym_connection_attempts_token1] = ACTIONS(1322), + [aux_sym_connect_timeout_token1] = ACTIONS(1322), + [aux_sym_control_master_token1] = ACTIONS(1322), + [aux_sym_control_path_token1] = ACTIONS(1322), + [aux_sym_control_persist_token1] = ACTIONS(1322), + [aux_sym_dynamic_forward_token1] = ACTIONS(1322), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1322), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1322), + [aux_sym_escape_char_token1] = ACTIONS(1322), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1322), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1322), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1322), + [aux_sym_forward_agent_token1] = ACTIONS(1322), + [aux_sym_forward_x11_token1] = ACTIONS(1324), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1322), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1322), + [aux_sym_gateway_ports_token1] = ACTIONS(1322), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1322), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1322), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1322), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1322), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1322), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1322), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1322), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1322), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1322), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1322), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1322), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1322), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1322), + [aux_sym_host_key_alias_token1] = ACTIONS(1322), + [aux_sym_hostname_token1] = ACTIONS(1322), + [aux_sym_identities_only_token1] = ACTIONS(1322), + [aux_sym_identity_agent_token1] = ACTIONS(1322), + [aux_sym_identity_file_token1] = ACTIONS(1322), + [aux_sym_ignore_unknown_token1] = ACTIONS(1322), + [aux_sym_include_token1] = ACTIONS(1322), + [aux_sym_ip_qos_token1] = ACTIONS(1322), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1322), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1322), + [aux_sym_kex_algorithms_token1] = ACTIONS(1322), + [aux_sym_known_hosts_command_token1] = ACTIONS(1322), + [aux_sym_local_command_token1] = ACTIONS(1322), + [aux_sym_local_forward_token1] = ACTIONS(1322), + [aux_sym_log_level_token1] = ACTIONS(1322), + [aux_sym_log_verbose_token1] = ACTIONS(1322), + [aux_sym_macs_token1] = ACTIONS(1322), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1322), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1322), + [aux_sym_password_authentication_token1] = ACTIONS(1322), + [aux_sym_permit_local_command_token1] = ACTIONS(1322), + [aux_sym_permit_remote_open_token1] = ACTIONS(1322), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1322), + [aux_sym_port_token1] = ACTIONS(1322), + [aux_sym_preferred_authentications_token1] = ACTIONS(1322), + [aux_sym_protocol_token1] = ACTIONS(1322), + [aux_sym_proxy_command_token1] = ACTIONS(1322), + [aux_sym_proxy_jump_token1] = ACTIONS(1322), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1322), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1322), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1322), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1322), + [aux_sym_rekey_limit_token1] = ACTIONS(1322), + [aux_sym_remote_command_token1] = ACTIONS(1322), + [aux_sym_remote_forward_token1] = ACTIONS(1322), + [aux_sym_request_tty_token1] = ACTIONS(1322), + [aux_sym_required_rsa_size_token1] = ACTIONS(1322), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1322), + [aux_sym_security_key_provider_token1] = ACTIONS(1322), + [aux_sym_send_env_token1] = ACTIONS(1322), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1322), + [aux_sym_server_alive_interval_token1] = ACTIONS(1322), + [aux_sym_session_type_token1] = ACTIONS(1322), + [aux_sym_set_env_token1] = ACTIONS(1322), + [aux_sym_stdin_null_token1] = ACTIONS(1322), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1322), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1322), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1322), + [aux_sym_syslog_facility_token1] = ACTIONS(1322), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1322), + [aux_sym_keep_alive_token1] = ACTIONS(1322), + [aux_sym_tunnel_token1] = ACTIONS(1324), + [aux_sym_tunnel_device_token1] = ACTIONS(1322), + [aux_sym_update_host_keys_token1] = ACTIONS(1322), + [aux_sym_use_keychain_token1] = ACTIONS(1322), + [aux_sym_use_roaming_token1] = ACTIONS(1322), + [aux_sym_user_token1] = ACTIONS(1324), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1322), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1322), + [aux_sym_visual_host_key_token1] = ACTIONS(1322), + [aux_sym_xauth_location_token1] = ACTIONS(1322), }, [131] = { - [ts_builtin_sym_end] = ACTIONS(1323), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1325), - [anon_sym_DQUOTE] = ACTIONS(1327), - [aux_sym_match_token1] = ACTIONS(1323), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1323), - [aux_sym_address_family_token1] = ACTIONS(1323), - [aux_sym_batch_mode_token1] = ACTIONS(1323), - [aux_sym_bind_address_token1] = ACTIONS(1323), - [aux_sym_bind_interface_token1] = ACTIONS(1323), - [aux_sym_canonical_domains_token1] = ACTIONS(1323), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1323), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1323), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1323), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1323), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1323), - [aux_sym_certificate_file_token1] = ACTIONS(1323), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1323), - [aux_sym_check_host_ip_token1] = ACTIONS(1323), - [aux_sym_ciphers_token1] = ACTIONS(1323), - [aux_sym_cipher_token1] = ACTIONS(1325), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1323), - [aux_sym_compression_token1] = ACTIONS(1323), - [aux_sym_connection_attempts_token1] = ACTIONS(1323), - [aux_sym_connect_timeout_token1] = ACTIONS(1323), - [aux_sym_control_master_token1] = ACTIONS(1323), - [aux_sym_control_path_token1] = ACTIONS(1323), - [aux_sym_control_persist_token1] = ACTIONS(1323), - [aux_sym_dynamic_forward_token1] = ACTIONS(1323), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1323), - [aux_sym_escape_char_token1] = ACTIONS(1323), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1323), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1323), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1323), - [aux_sym_forward_agent_token1] = ACTIONS(1323), - [aux_sym_forward_x11_token1] = ACTIONS(1325), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1323), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1323), - [aux_sym_gateway_ports_token1] = ACTIONS(1323), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1323), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1323), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1323), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1323), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1323), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1323), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1323), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1323), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1323), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1323), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1323), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1323), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1323), - [aux_sym_host_key_alias_token1] = ACTIONS(1323), - [aux_sym_hostname_token1] = ACTIONS(1323), - [aux_sym_identities_only_token1] = ACTIONS(1323), - [aux_sym_identity_agent_token1] = ACTIONS(1323), - [aux_sym_identity_file_token1] = ACTIONS(1323), - [aux_sym_ignore_unknown_token1] = ACTIONS(1323), - [aux_sym_include_token1] = ACTIONS(1323), - [aux_sym_ip_qos_token1] = ACTIONS(1323), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1323), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1323), - [aux_sym_kex_algorithms_token1] = ACTIONS(1323), - [aux_sym_known_hosts_command_token1] = ACTIONS(1323), - [aux_sym_local_command_token1] = ACTIONS(1323), - [aux_sym_local_forward_token1] = ACTIONS(1323), - [aux_sym_log_level_token1] = ACTIONS(1323), - [aux_sym_log_verbose_token1] = ACTIONS(1323), - [aux_sym_macs_token1] = ACTIONS(1323), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1323), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1323), - [aux_sym_password_authentication_token1] = ACTIONS(1323), - [aux_sym_permit_local_command_token1] = ACTIONS(1323), - [aux_sym_permit_remote_open_token1] = ACTIONS(1323), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1323), - [aux_sym_port_token1] = ACTIONS(1323), - [aux_sym_preferred_authentications_token1] = ACTIONS(1323), - [aux_sym_protocol_token1] = ACTIONS(1323), - [aux_sym_proxy_command_token1] = ACTIONS(1323), - [aux_sym_proxy_jump_token1] = ACTIONS(1323), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1323), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1323), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1323), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1323), - [aux_sym_rekey_limit_token1] = ACTIONS(1323), - [aux_sym_remote_command_token1] = ACTIONS(1323), - [aux_sym_remote_forward_token1] = ACTIONS(1323), - [aux_sym_request_tty_token1] = ACTIONS(1323), - [aux_sym_required_rsa_size_token1] = ACTIONS(1323), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1323), - [aux_sym_security_key_provider_token1] = ACTIONS(1323), - [aux_sym_send_env_token1] = ACTIONS(1323), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1323), - [aux_sym_server_alive_interval_token1] = ACTIONS(1323), - [aux_sym_session_type_token1] = ACTIONS(1323), - [aux_sym_set_env_token1] = ACTIONS(1323), - [aux_sym_stdin_null_token1] = ACTIONS(1323), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1323), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1323), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1323), - [aux_sym_syslog_facility_token1] = ACTIONS(1323), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1323), - [aux_sym_keep_alive_token1] = ACTIONS(1323), - [aux_sym_tunnel_token1] = ACTIONS(1325), - [aux_sym_tunnel_device_token1] = ACTIONS(1323), - [aux_sym_update_host_keys_token1] = ACTIONS(1323), - [aux_sym_use_keychain_token1] = ACTIONS(1323), - [aux_sym_use_roaming_token1] = ACTIONS(1323), - [aux_sym_user_token1] = ACTIONS(1325), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1323), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1323), - [aux_sym_visual_host_key_token1] = ACTIONS(1323), - [aux_sym_xauth_location_token1] = ACTIONS(1323), + [ts_builtin_sym_end] = ACTIONS(1328), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1332), + [aux_sym_match_token1] = ACTIONS(1328), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1328), + [aux_sym_address_family_token1] = ACTIONS(1328), + [aux_sym_batch_mode_token1] = ACTIONS(1328), + [aux_sym_bind_address_token1] = ACTIONS(1328), + [aux_sym_bind_interface_token1] = ACTIONS(1328), + [aux_sym_canonical_domains_token1] = ACTIONS(1328), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1328), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1328), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1328), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1328), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1328), + [aux_sym_certificate_file_token1] = ACTIONS(1328), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1328), + [aux_sym_check_host_ip_token1] = ACTIONS(1328), + [aux_sym_ciphers_token1] = ACTIONS(1328), + [aux_sym_cipher_token1] = ACTIONS(1330), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1328), + [aux_sym_compression_token1] = ACTIONS(1328), + [aux_sym_connection_attempts_token1] = ACTIONS(1328), + [aux_sym_connect_timeout_token1] = ACTIONS(1328), + [aux_sym_control_master_token1] = ACTIONS(1328), + [aux_sym_control_path_token1] = ACTIONS(1328), + [aux_sym_control_persist_token1] = ACTIONS(1328), + [aux_sym_dynamic_forward_token1] = ACTIONS(1328), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1328), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1328), + [aux_sym_escape_char_token1] = ACTIONS(1328), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1328), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1328), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1328), + [aux_sym_forward_agent_token1] = ACTIONS(1328), + [aux_sym_forward_x11_token1] = ACTIONS(1330), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1328), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1328), + [aux_sym_gateway_ports_token1] = ACTIONS(1328), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1328), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1328), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1328), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1328), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1328), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1328), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1328), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1328), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1328), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1328), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1328), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1328), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1328), + [aux_sym_host_key_alias_token1] = ACTIONS(1328), + [aux_sym_hostname_token1] = ACTIONS(1328), + [aux_sym_identities_only_token1] = ACTIONS(1328), + [aux_sym_identity_agent_token1] = ACTIONS(1328), + [aux_sym_identity_file_token1] = ACTIONS(1328), + [aux_sym_ignore_unknown_token1] = ACTIONS(1328), + [aux_sym_include_token1] = ACTIONS(1328), + [aux_sym_ip_qos_token1] = ACTIONS(1328), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1328), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1328), + [aux_sym_kex_algorithms_token1] = ACTIONS(1328), + [aux_sym_known_hosts_command_token1] = ACTIONS(1328), + [aux_sym_local_command_token1] = ACTIONS(1328), + [aux_sym_local_forward_token1] = ACTIONS(1328), + [aux_sym_log_level_token1] = ACTIONS(1328), + [aux_sym_log_verbose_token1] = ACTIONS(1328), + [aux_sym_macs_token1] = ACTIONS(1328), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1328), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1328), + [aux_sym_password_authentication_token1] = ACTIONS(1328), + [aux_sym_permit_local_command_token1] = ACTIONS(1328), + [aux_sym_permit_remote_open_token1] = ACTIONS(1328), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1328), + [aux_sym_port_token1] = ACTIONS(1328), + [aux_sym_preferred_authentications_token1] = ACTIONS(1328), + [aux_sym_protocol_token1] = ACTIONS(1328), + [aux_sym_proxy_command_token1] = ACTIONS(1328), + [aux_sym_proxy_jump_token1] = ACTIONS(1328), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1328), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1328), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1328), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1328), + [aux_sym_rekey_limit_token1] = ACTIONS(1328), + [aux_sym_remote_command_token1] = ACTIONS(1328), + [aux_sym_remote_forward_token1] = ACTIONS(1328), + [aux_sym_request_tty_token1] = ACTIONS(1328), + [aux_sym_required_rsa_size_token1] = ACTIONS(1328), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1328), + [aux_sym_security_key_provider_token1] = ACTIONS(1328), + [aux_sym_send_env_token1] = ACTIONS(1328), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1328), + [aux_sym_server_alive_interval_token1] = ACTIONS(1328), + [aux_sym_session_type_token1] = ACTIONS(1328), + [aux_sym_set_env_token1] = ACTIONS(1328), + [aux_sym_stdin_null_token1] = ACTIONS(1328), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1328), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1328), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1328), + [aux_sym_syslog_facility_token1] = ACTIONS(1328), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1328), + [aux_sym_keep_alive_token1] = ACTIONS(1328), + [aux_sym_tunnel_token1] = ACTIONS(1330), + [aux_sym_tunnel_device_token1] = ACTIONS(1328), + [aux_sym_update_host_keys_token1] = ACTIONS(1328), + [aux_sym_use_keychain_token1] = ACTIONS(1328), + [aux_sym_use_roaming_token1] = ACTIONS(1328), + [aux_sym_user_token1] = ACTIONS(1330), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1328), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1328), + [aux_sym_visual_host_key_token1] = ACTIONS(1328), + [aux_sym_xauth_location_token1] = ACTIONS(1328), }, [132] = { - [ts_builtin_sym_end] = ACTIONS(1329), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1331), - [anon_sym_DQUOTE] = ACTIONS(1333), - [aux_sym_match_token1] = ACTIONS(1329), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1329), - [aux_sym_address_family_token1] = ACTIONS(1329), - [aux_sym_batch_mode_token1] = ACTIONS(1329), - [aux_sym_bind_address_token1] = ACTIONS(1329), - [aux_sym_bind_interface_token1] = ACTIONS(1329), - [aux_sym_canonical_domains_token1] = ACTIONS(1329), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1329), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1329), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1329), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1329), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1329), - [aux_sym_certificate_file_token1] = ACTIONS(1329), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1329), - [aux_sym_check_host_ip_token1] = ACTIONS(1329), - [aux_sym_ciphers_token1] = ACTIONS(1329), - [aux_sym_cipher_token1] = ACTIONS(1331), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1329), - [aux_sym_compression_token1] = ACTIONS(1329), - [aux_sym_connection_attempts_token1] = ACTIONS(1329), - [aux_sym_connect_timeout_token1] = ACTIONS(1329), - [aux_sym_control_master_token1] = ACTIONS(1329), - [aux_sym_control_path_token1] = ACTIONS(1329), - [aux_sym_control_persist_token1] = ACTIONS(1329), - [aux_sym_dynamic_forward_token1] = ACTIONS(1329), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1329), - [aux_sym_escape_char_token1] = ACTIONS(1329), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1329), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1329), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1329), - [aux_sym_forward_agent_token1] = ACTIONS(1329), - [aux_sym_forward_x11_token1] = ACTIONS(1331), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1329), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1329), - [aux_sym_gateway_ports_token1] = ACTIONS(1329), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1329), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1329), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1329), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1329), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1329), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1329), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1329), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1329), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1329), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1329), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1329), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1329), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1329), - [aux_sym_host_key_alias_token1] = ACTIONS(1329), - [aux_sym_hostname_token1] = ACTIONS(1329), - [aux_sym_identities_only_token1] = ACTIONS(1329), - [aux_sym_identity_agent_token1] = ACTIONS(1329), - [aux_sym_identity_file_token1] = ACTIONS(1329), - [aux_sym_ignore_unknown_token1] = ACTIONS(1329), - [aux_sym_include_token1] = ACTIONS(1329), - [aux_sym_ip_qos_token1] = ACTIONS(1329), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1329), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1329), - [aux_sym_kex_algorithms_token1] = ACTIONS(1329), - [aux_sym_known_hosts_command_token1] = ACTIONS(1329), - [aux_sym_local_command_token1] = ACTIONS(1329), - [aux_sym_local_forward_token1] = ACTIONS(1329), - [aux_sym_log_level_token1] = ACTIONS(1329), - [aux_sym_log_verbose_token1] = ACTIONS(1329), - [aux_sym_macs_token1] = ACTIONS(1329), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1329), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1329), - [aux_sym_password_authentication_token1] = ACTIONS(1329), - [aux_sym_permit_local_command_token1] = ACTIONS(1329), - [aux_sym_permit_remote_open_token1] = ACTIONS(1329), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1329), - [aux_sym_port_token1] = ACTIONS(1329), - [aux_sym_preferred_authentications_token1] = ACTIONS(1329), - [aux_sym_protocol_token1] = ACTIONS(1329), - [aux_sym_proxy_command_token1] = ACTIONS(1329), - [aux_sym_proxy_jump_token1] = ACTIONS(1329), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1329), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1329), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1329), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1329), - [aux_sym_rekey_limit_token1] = ACTIONS(1329), - [aux_sym_remote_command_token1] = ACTIONS(1329), - [aux_sym_remote_forward_token1] = ACTIONS(1329), - [aux_sym_request_tty_token1] = ACTIONS(1329), - [aux_sym_required_rsa_size_token1] = ACTIONS(1329), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1329), - [aux_sym_security_key_provider_token1] = ACTIONS(1329), - [aux_sym_send_env_token1] = ACTIONS(1329), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1329), - [aux_sym_server_alive_interval_token1] = ACTIONS(1329), - [aux_sym_session_type_token1] = ACTIONS(1329), - [aux_sym_set_env_token1] = ACTIONS(1329), - [aux_sym_stdin_null_token1] = ACTIONS(1329), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1329), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1329), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1329), - [aux_sym_syslog_facility_token1] = ACTIONS(1329), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1329), - [aux_sym_keep_alive_token1] = ACTIONS(1329), - [aux_sym_tunnel_token1] = ACTIONS(1331), - [aux_sym_tunnel_device_token1] = ACTIONS(1329), - [aux_sym_update_host_keys_token1] = ACTIONS(1329), - [aux_sym_use_keychain_token1] = ACTIONS(1329), - [aux_sym_use_roaming_token1] = ACTIONS(1329), - [aux_sym_user_token1] = ACTIONS(1331), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1329), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1329), - [aux_sym_visual_host_key_token1] = ACTIONS(1329), - [aux_sym_xauth_location_token1] = ACTIONS(1329), + [ts_builtin_sym_end] = ACTIONS(1334), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1338), + [aux_sym_match_token1] = ACTIONS(1334), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1334), + [aux_sym_address_family_token1] = ACTIONS(1334), + [aux_sym_batch_mode_token1] = ACTIONS(1334), + [aux_sym_bind_address_token1] = ACTIONS(1334), + [aux_sym_bind_interface_token1] = ACTIONS(1334), + [aux_sym_canonical_domains_token1] = ACTIONS(1334), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1334), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1334), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1334), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1334), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1334), + [aux_sym_certificate_file_token1] = ACTIONS(1334), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1334), + [aux_sym_check_host_ip_token1] = ACTIONS(1334), + [aux_sym_ciphers_token1] = ACTIONS(1334), + [aux_sym_cipher_token1] = ACTIONS(1336), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1334), + [aux_sym_compression_token1] = ACTIONS(1334), + [aux_sym_connection_attempts_token1] = ACTIONS(1334), + [aux_sym_connect_timeout_token1] = ACTIONS(1334), + [aux_sym_control_master_token1] = ACTIONS(1334), + [aux_sym_control_path_token1] = ACTIONS(1334), + [aux_sym_control_persist_token1] = ACTIONS(1334), + [aux_sym_dynamic_forward_token1] = ACTIONS(1334), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1334), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1334), + [aux_sym_escape_char_token1] = ACTIONS(1334), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1334), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1334), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1334), + [aux_sym_forward_agent_token1] = ACTIONS(1334), + [aux_sym_forward_x11_token1] = ACTIONS(1336), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1334), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1334), + [aux_sym_gateway_ports_token1] = ACTIONS(1334), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1334), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1334), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1334), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1334), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1334), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1334), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1334), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1334), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1334), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1334), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1334), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1334), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1334), + [aux_sym_host_key_alias_token1] = ACTIONS(1334), + [aux_sym_hostname_token1] = ACTIONS(1334), + [aux_sym_identities_only_token1] = ACTIONS(1334), + [aux_sym_identity_agent_token1] = ACTIONS(1334), + [aux_sym_identity_file_token1] = ACTIONS(1334), + [aux_sym_ignore_unknown_token1] = ACTIONS(1334), + [aux_sym_include_token1] = ACTIONS(1334), + [aux_sym_ip_qos_token1] = ACTIONS(1334), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1334), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1334), + [aux_sym_kex_algorithms_token1] = ACTIONS(1334), + [aux_sym_known_hosts_command_token1] = ACTIONS(1334), + [aux_sym_local_command_token1] = ACTIONS(1334), + [aux_sym_local_forward_token1] = ACTIONS(1334), + [aux_sym_log_level_token1] = ACTIONS(1334), + [aux_sym_log_verbose_token1] = ACTIONS(1334), + [aux_sym_macs_token1] = ACTIONS(1334), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1334), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1334), + [aux_sym_password_authentication_token1] = ACTIONS(1334), + [aux_sym_permit_local_command_token1] = ACTIONS(1334), + [aux_sym_permit_remote_open_token1] = ACTIONS(1334), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1334), + [aux_sym_port_token1] = ACTIONS(1334), + [aux_sym_preferred_authentications_token1] = ACTIONS(1334), + [aux_sym_protocol_token1] = ACTIONS(1334), + [aux_sym_proxy_command_token1] = ACTIONS(1334), + [aux_sym_proxy_jump_token1] = ACTIONS(1334), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1334), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1334), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1334), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1334), + [aux_sym_rekey_limit_token1] = ACTIONS(1334), + [aux_sym_remote_command_token1] = ACTIONS(1334), + [aux_sym_remote_forward_token1] = ACTIONS(1334), + [aux_sym_request_tty_token1] = ACTIONS(1334), + [aux_sym_required_rsa_size_token1] = ACTIONS(1334), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1334), + [aux_sym_security_key_provider_token1] = ACTIONS(1334), + [aux_sym_send_env_token1] = ACTIONS(1334), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1334), + [aux_sym_server_alive_interval_token1] = ACTIONS(1334), + [aux_sym_session_type_token1] = ACTIONS(1334), + [aux_sym_set_env_token1] = ACTIONS(1334), + [aux_sym_stdin_null_token1] = ACTIONS(1334), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1334), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1334), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1334), + [aux_sym_syslog_facility_token1] = ACTIONS(1334), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1334), + [aux_sym_keep_alive_token1] = ACTIONS(1334), + [aux_sym_tunnel_token1] = ACTIONS(1336), + [aux_sym_tunnel_device_token1] = ACTIONS(1334), + [aux_sym_update_host_keys_token1] = ACTIONS(1334), + [aux_sym_use_keychain_token1] = ACTIONS(1334), + [aux_sym_use_roaming_token1] = ACTIONS(1334), + [aux_sym_user_token1] = ACTIONS(1336), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1334), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1334), + [aux_sym_visual_host_key_token1] = ACTIONS(1334), + [aux_sym_xauth_location_token1] = ACTIONS(1334), }, [133] = { - [ts_builtin_sym_end] = ACTIONS(1335), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1337), - [anon_sym_DQUOTE] = ACTIONS(1339), - [aux_sym_match_token1] = ACTIONS(1335), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1335), - [aux_sym_address_family_token1] = ACTIONS(1335), - [aux_sym_batch_mode_token1] = ACTIONS(1335), - [aux_sym_bind_address_token1] = ACTIONS(1335), - [aux_sym_bind_interface_token1] = ACTIONS(1335), - [aux_sym_canonical_domains_token1] = ACTIONS(1335), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1335), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1335), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1335), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1335), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1335), - [aux_sym_certificate_file_token1] = ACTIONS(1335), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1335), - [aux_sym_check_host_ip_token1] = ACTIONS(1335), - [aux_sym_ciphers_token1] = ACTIONS(1335), - [aux_sym_cipher_token1] = ACTIONS(1337), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1335), - [aux_sym_compression_token1] = ACTIONS(1335), - [aux_sym_connection_attempts_token1] = ACTIONS(1335), - [aux_sym_connect_timeout_token1] = ACTIONS(1335), - [aux_sym_control_master_token1] = ACTIONS(1335), - [aux_sym_control_path_token1] = ACTIONS(1335), - [aux_sym_control_persist_token1] = ACTIONS(1335), - [aux_sym_dynamic_forward_token1] = ACTIONS(1335), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1335), - [aux_sym_escape_char_token1] = ACTIONS(1335), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1335), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1335), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1335), - [aux_sym_forward_agent_token1] = ACTIONS(1335), - [aux_sym_forward_x11_token1] = ACTIONS(1337), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1335), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1335), - [aux_sym_gateway_ports_token1] = ACTIONS(1335), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1335), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1335), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1335), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1335), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1335), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1335), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1335), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1335), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1335), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1335), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1335), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1335), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1335), - [aux_sym_host_key_alias_token1] = ACTIONS(1335), - [aux_sym_hostname_token1] = ACTIONS(1335), - [aux_sym_identities_only_token1] = ACTIONS(1335), - [aux_sym_identity_agent_token1] = ACTIONS(1335), - [aux_sym_identity_file_token1] = ACTIONS(1335), - [aux_sym_ignore_unknown_token1] = ACTIONS(1335), - [aux_sym_include_token1] = ACTIONS(1335), - [aux_sym_ip_qos_token1] = ACTIONS(1335), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1335), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1335), - [aux_sym_kex_algorithms_token1] = ACTIONS(1335), - [aux_sym_known_hosts_command_token1] = ACTIONS(1335), - [aux_sym_local_command_token1] = ACTIONS(1335), - [aux_sym_local_forward_token1] = ACTIONS(1335), - [aux_sym_log_level_token1] = ACTIONS(1335), - [aux_sym_log_verbose_token1] = ACTIONS(1335), - [aux_sym_macs_token1] = ACTIONS(1335), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1335), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1335), - [aux_sym_password_authentication_token1] = ACTIONS(1335), - [aux_sym_permit_local_command_token1] = ACTIONS(1335), - [aux_sym_permit_remote_open_token1] = ACTIONS(1335), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1335), - [aux_sym_port_token1] = ACTIONS(1335), - [aux_sym_preferred_authentications_token1] = ACTIONS(1335), - [aux_sym_protocol_token1] = ACTIONS(1335), - [aux_sym_proxy_command_token1] = ACTIONS(1335), - [aux_sym_proxy_jump_token1] = ACTIONS(1335), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1335), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1335), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1335), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1335), - [aux_sym_rekey_limit_token1] = ACTIONS(1335), - [aux_sym_remote_command_token1] = ACTIONS(1335), - [aux_sym_remote_forward_token1] = ACTIONS(1335), - [aux_sym_request_tty_token1] = ACTIONS(1335), - [aux_sym_required_rsa_size_token1] = ACTIONS(1335), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1335), - [aux_sym_security_key_provider_token1] = ACTIONS(1335), - [aux_sym_send_env_token1] = ACTIONS(1335), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1335), - [aux_sym_server_alive_interval_token1] = ACTIONS(1335), - [aux_sym_session_type_token1] = ACTIONS(1335), - [aux_sym_set_env_token1] = ACTIONS(1335), - [aux_sym_stdin_null_token1] = ACTIONS(1335), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1335), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1335), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1335), - [aux_sym_syslog_facility_token1] = ACTIONS(1335), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1335), - [aux_sym_keep_alive_token1] = ACTIONS(1335), - [aux_sym_tunnel_token1] = ACTIONS(1337), - [aux_sym_tunnel_device_token1] = ACTIONS(1335), - [aux_sym_update_host_keys_token1] = ACTIONS(1335), - [aux_sym_use_keychain_token1] = ACTIONS(1335), - [aux_sym_use_roaming_token1] = ACTIONS(1335), - [aux_sym_user_token1] = ACTIONS(1337), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1335), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1335), - [aux_sym_visual_host_key_token1] = ACTIONS(1335), - [aux_sym_xauth_location_token1] = ACTIONS(1335), + [ts_builtin_sym_end] = ACTIONS(1340), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1344), + [aux_sym_match_token1] = ACTIONS(1340), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1340), + [aux_sym_address_family_token1] = ACTIONS(1340), + [aux_sym_batch_mode_token1] = ACTIONS(1340), + [aux_sym_bind_address_token1] = ACTIONS(1340), + [aux_sym_bind_interface_token1] = ACTIONS(1340), + [aux_sym_canonical_domains_token1] = ACTIONS(1340), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1340), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1340), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1340), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1340), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1340), + [aux_sym_certificate_file_token1] = ACTIONS(1340), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1340), + [aux_sym_check_host_ip_token1] = ACTIONS(1340), + [aux_sym_ciphers_token1] = ACTIONS(1340), + [aux_sym_cipher_token1] = ACTIONS(1342), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1340), + [aux_sym_compression_token1] = ACTIONS(1340), + [aux_sym_connection_attempts_token1] = ACTIONS(1340), + [aux_sym_connect_timeout_token1] = ACTIONS(1340), + [aux_sym_control_master_token1] = ACTIONS(1340), + [aux_sym_control_path_token1] = ACTIONS(1340), + [aux_sym_control_persist_token1] = ACTIONS(1340), + [aux_sym_dynamic_forward_token1] = ACTIONS(1340), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1340), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1340), + [aux_sym_escape_char_token1] = ACTIONS(1340), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1340), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1340), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1340), + [aux_sym_forward_agent_token1] = ACTIONS(1340), + [aux_sym_forward_x11_token1] = ACTIONS(1342), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1340), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1340), + [aux_sym_gateway_ports_token1] = ACTIONS(1340), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1340), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1340), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1340), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1340), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1340), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1340), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1340), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1340), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1340), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1340), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1340), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1340), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1340), + [aux_sym_host_key_alias_token1] = ACTIONS(1340), + [aux_sym_hostname_token1] = ACTIONS(1340), + [aux_sym_identities_only_token1] = ACTIONS(1340), + [aux_sym_identity_agent_token1] = ACTIONS(1340), + [aux_sym_identity_file_token1] = ACTIONS(1340), + [aux_sym_ignore_unknown_token1] = ACTIONS(1340), + [aux_sym_include_token1] = ACTIONS(1340), + [aux_sym_ip_qos_token1] = ACTIONS(1340), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1340), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1340), + [aux_sym_kex_algorithms_token1] = ACTIONS(1340), + [aux_sym_known_hosts_command_token1] = ACTIONS(1340), + [aux_sym_local_command_token1] = ACTIONS(1340), + [aux_sym_local_forward_token1] = ACTIONS(1340), + [aux_sym_log_level_token1] = ACTIONS(1340), + [aux_sym_log_verbose_token1] = ACTIONS(1340), + [aux_sym_macs_token1] = ACTIONS(1340), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1340), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1340), + [aux_sym_password_authentication_token1] = ACTIONS(1340), + [aux_sym_permit_local_command_token1] = ACTIONS(1340), + [aux_sym_permit_remote_open_token1] = ACTIONS(1340), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1340), + [aux_sym_port_token1] = ACTIONS(1340), + [aux_sym_preferred_authentications_token1] = ACTIONS(1340), + [aux_sym_protocol_token1] = ACTIONS(1340), + [aux_sym_proxy_command_token1] = ACTIONS(1340), + [aux_sym_proxy_jump_token1] = ACTIONS(1340), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1340), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1340), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1340), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1340), + [aux_sym_rekey_limit_token1] = ACTIONS(1340), + [aux_sym_remote_command_token1] = ACTIONS(1340), + [aux_sym_remote_forward_token1] = ACTIONS(1340), + [aux_sym_request_tty_token1] = ACTIONS(1340), + [aux_sym_required_rsa_size_token1] = ACTIONS(1340), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1340), + [aux_sym_security_key_provider_token1] = ACTIONS(1340), + [aux_sym_send_env_token1] = ACTIONS(1340), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1340), + [aux_sym_server_alive_interval_token1] = ACTIONS(1340), + [aux_sym_session_type_token1] = ACTIONS(1340), + [aux_sym_set_env_token1] = ACTIONS(1340), + [aux_sym_stdin_null_token1] = ACTIONS(1340), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1340), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1340), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1340), + [aux_sym_syslog_facility_token1] = ACTIONS(1340), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1340), + [aux_sym_keep_alive_token1] = ACTIONS(1340), + [aux_sym_tunnel_token1] = ACTIONS(1342), + [aux_sym_tunnel_device_token1] = ACTIONS(1340), + [aux_sym_update_host_keys_token1] = ACTIONS(1340), + [aux_sym_use_keychain_token1] = ACTIONS(1340), + [aux_sym_use_roaming_token1] = ACTIONS(1340), + [aux_sym_user_token1] = ACTIONS(1342), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1340), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1340), + [aux_sym_visual_host_key_token1] = ACTIONS(1340), + [aux_sym_xauth_location_token1] = ACTIONS(1340), }, [134] = { - [ts_builtin_sym_end] = ACTIONS(1341), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1343), - [anon_sym_DQUOTE] = ACTIONS(1345), - [aux_sym_match_token1] = ACTIONS(1341), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1341), - [aux_sym_address_family_token1] = ACTIONS(1341), - [aux_sym_batch_mode_token1] = ACTIONS(1341), - [aux_sym_bind_address_token1] = ACTIONS(1341), - [aux_sym_bind_interface_token1] = ACTIONS(1341), - [aux_sym_canonical_domains_token1] = ACTIONS(1341), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1341), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1341), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1341), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1341), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1341), - [aux_sym_certificate_file_token1] = ACTIONS(1341), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1341), - [aux_sym_check_host_ip_token1] = ACTIONS(1341), - [aux_sym_ciphers_token1] = ACTIONS(1341), - [aux_sym_cipher_token1] = ACTIONS(1343), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1341), - [aux_sym_compression_token1] = ACTIONS(1341), - [aux_sym_connection_attempts_token1] = ACTIONS(1341), - [aux_sym_connect_timeout_token1] = ACTIONS(1341), - [aux_sym_control_master_token1] = ACTIONS(1341), - [aux_sym_control_path_token1] = ACTIONS(1341), - [aux_sym_control_persist_token1] = ACTIONS(1341), - [aux_sym_dynamic_forward_token1] = ACTIONS(1341), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1341), - [aux_sym_escape_char_token1] = ACTIONS(1341), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1341), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1341), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1341), - [aux_sym_forward_agent_token1] = ACTIONS(1341), - [aux_sym_forward_x11_token1] = ACTIONS(1343), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1341), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1341), - [aux_sym_gateway_ports_token1] = ACTIONS(1341), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1341), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1341), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1341), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1341), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1341), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1341), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1341), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1341), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1341), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1341), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1341), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1341), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1341), - [aux_sym_host_key_alias_token1] = ACTIONS(1341), - [aux_sym_hostname_token1] = ACTIONS(1341), - [aux_sym_identities_only_token1] = ACTIONS(1341), - [aux_sym_identity_agent_token1] = ACTIONS(1341), - [aux_sym_identity_file_token1] = ACTIONS(1341), - [aux_sym_ignore_unknown_token1] = ACTIONS(1341), - [aux_sym_include_token1] = ACTIONS(1341), - [aux_sym_ip_qos_token1] = ACTIONS(1341), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1341), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1341), - [aux_sym_kex_algorithms_token1] = ACTIONS(1341), - [aux_sym_known_hosts_command_token1] = ACTIONS(1341), - [aux_sym_local_command_token1] = ACTIONS(1341), - [aux_sym_local_forward_token1] = ACTIONS(1341), - [aux_sym_log_level_token1] = ACTIONS(1341), - [aux_sym_log_verbose_token1] = ACTIONS(1341), - [aux_sym_macs_token1] = ACTIONS(1341), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1341), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1341), - [aux_sym_password_authentication_token1] = ACTIONS(1341), - [aux_sym_permit_local_command_token1] = ACTIONS(1341), - [aux_sym_permit_remote_open_token1] = ACTIONS(1341), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1341), - [aux_sym_port_token1] = ACTIONS(1341), - [aux_sym_preferred_authentications_token1] = ACTIONS(1341), - [aux_sym_protocol_token1] = ACTIONS(1341), - [aux_sym_proxy_command_token1] = ACTIONS(1341), - [aux_sym_proxy_jump_token1] = ACTIONS(1341), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1341), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1341), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1341), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1341), - [aux_sym_rekey_limit_token1] = ACTIONS(1341), - [aux_sym_remote_command_token1] = ACTIONS(1341), - [aux_sym_remote_forward_token1] = ACTIONS(1341), - [aux_sym_request_tty_token1] = ACTIONS(1341), - [aux_sym_required_rsa_size_token1] = ACTIONS(1341), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1341), - [aux_sym_security_key_provider_token1] = ACTIONS(1341), - [aux_sym_send_env_token1] = ACTIONS(1341), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1341), - [aux_sym_server_alive_interval_token1] = ACTIONS(1341), - [aux_sym_session_type_token1] = ACTIONS(1341), - [aux_sym_set_env_token1] = ACTIONS(1341), - [aux_sym_stdin_null_token1] = ACTIONS(1341), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1341), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1341), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1341), - [aux_sym_syslog_facility_token1] = ACTIONS(1341), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1341), - [aux_sym_keep_alive_token1] = ACTIONS(1341), - [aux_sym_tunnel_token1] = ACTIONS(1343), - [aux_sym_tunnel_device_token1] = ACTIONS(1341), - [aux_sym_update_host_keys_token1] = ACTIONS(1341), - [aux_sym_use_keychain_token1] = ACTIONS(1341), - [aux_sym_use_roaming_token1] = ACTIONS(1341), - [aux_sym_user_token1] = ACTIONS(1343), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1341), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1341), - [aux_sym_visual_host_key_token1] = ACTIONS(1341), - [aux_sym_xauth_location_token1] = ACTIONS(1341), + [ts_builtin_sym_end] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1350), + [aux_sym_match_token1] = ACTIONS(1346), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1346), + [aux_sym_address_family_token1] = ACTIONS(1346), + [aux_sym_batch_mode_token1] = ACTIONS(1346), + [aux_sym_bind_address_token1] = ACTIONS(1346), + [aux_sym_bind_interface_token1] = ACTIONS(1346), + [aux_sym_canonical_domains_token1] = ACTIONS(1346), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1346), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1346), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1346), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1346), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1346), + [aux_sym_certificate_file_token1] = ACTIONS(1346), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1346), + [aux_sym_check_host_ip_token1] = ACTIONS(1346), + [aux_sym_ciphers_token1] = ACTIONS(1346), + [aux_sym_cipher_token1] = ACTIONS(1348), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1346), + [aux_sym_compression_token1] = ACTIONS(1346), + [aux_sym_connection_attempts_token1] = ACTIONS(1346), + [aux_sym_connect_timeout_token1] = ACTIONS(1346), + [aux_sym_control_master_token1] = ACTIONS(1346), + [aux_sym_control_path_token1] = ACTIONS(1346), + [aux_sym_control_persist_token1] = ACTIONS(1346), + [aux_sym_dynamic_forward_token1] = ACTIONS(1346), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1346), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1346), + [aux_sym_escape_char_token1] = ACTIONS(1346), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1346), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1346), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1346), + [aux_sym_forward_agent_token1] = ACTIONS(1346), + [aux_sym_forward_x11_token1] = ACTIONS(1348), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1346), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1346), + [aux_sym_gateway_ports_token1] = ACTIONS(1346), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1346), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1346), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1346), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1346), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1346), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1346), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1346), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1346), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1346), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1346), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1346), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1346), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1346), + [aux_sym_host_key_alias_token1] = ACTIONS(1346), + [aux_sym_hostname_token1] = ACTIONS(1346), + [aux_sym_identities_only_token1] = ACTIONS(1346), + [aux_sym_identity_agent_token1] = ACTIONS(1346), + [aux_sym_identity_file_token1] = ACTIONS(1346), + [aux_sym_ignore_unknown_token1] = ACTIONS(1346), + [aux_sym_include_token1] = ACTIONS(1346), + [aux_sym_ip_qos_token1] = ACTIONS(1346), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1346), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1346), + [aux_sym_kex_algorithms_token1] = ACTIONS(1346), + [aux_sym_known_hosts_command_token1] = ACTIONS(1346), + [aux_sym_local_command_token1] = ACTIONS(1346), + [aux_sym_local_forward_token1] = ACTIONS(1346), + [aux_sym_log_level_token1] = ACTIONS(1346), + [aux_sym_log_verbose_token1] = ACTIONS(1346), + [aux_sym_macs_token1] = ACTIONS(1346), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1346), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1346), + [aux_sym_password_authentication_token1] = ACTIONS(1346), + [aux_sym_permit_local_command_token1] = ACTIONS(1346), + [aux_sym_permit_remote_open_token1] = ACTIONS(1346), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1346), + [aux_sym_port_token1] = ACTIONS(1346), + [aux_sym_preferred_authentications_token1] = ACTIONS(1346), + [aux_sym_protocol_token1] = ACTIONS(1346), + [aux_sym_proxy_command_token1] = ACTIONS(1346), + [aux_sym_proxy_jump_token1] = ACTIONS(1346), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1346), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1346), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1346), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1346), + [aux_sym_rekey_limit_token1] = ACTIONS(1346), + [aux_sym_remote_command_token1] = ACTIONS(1346), + [aux_sym_remote_forward_token1] = ACTIONS(1346), + [aux_sym_request_tty_token1] = ACTIONS(1346), + [aux_sym_required_rsa_size_token1] = ACTIONS(1346), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1346), + [aux_sym_security_key_provider_token1] = ACTIONS(1346), + [aux_sym_send_env_token1] = ACTIONS(1346), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1346), + [aux_sym_server_alive_interval_token1] = ACTIONS(1346), + [aux_sym_session_type_token1] = ACTIONS(1346), + [aux_sym_set_env_token1] = ACTIONS(1346), + [aux_sym_stdin_null_token1] = ACTIONS(1346), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1346), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1346), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1346), + [aux_sym_syslog_facility_token1] = ACTIONS(1346), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1346), + [aux_sym_keep_alive_token1] = ACTIONS(1346), + [aux_sym_tunnel_token1] = ACTIONS(1348), + [aux_sym_tunnel_device_token1] = ACTIONS(1346), + [aux_sym_update_host_keys_token1] = ACTIONS(1346), + [aux_sym_use_keychain_token1] = ACTIONS(1346), + [aux_sym_use_roaming_token1] = ACTIONS(1346), + [aux_sym_user_token1] = ACTIONS(1348), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1346), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1346), + [aux_sym_visual_host_key_token1] = ACTIONS(1346), + [aux_sym_xauth_location_token1] = ACTIONS(1346), }, [135] = { - [ts_builtin_sym_end] = ACTIONS(1347), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(1351), - [aux_sym_match_token1] = ACTIONS(1347), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1347), - [aux_sym_address_family_token1] = ACTIONS(1347), - [aux_sym_batch_mode_token1] = ACTIONS(1347), - [aux_sym_bind_address_token1] = ACTIONS(1347), - [aux_sym_bind_interface_token1] = ACTIONS(1347), - [aux_sym_canonical_domains_token1] = ACTIONS(1347), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1347), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1347), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1347), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1347), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1347), - [aux_sym_certificate_file_token1] = ACTIONS(1347), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1347), - [aux_sym_check_host_ip_token1] = ACTIONS(1347), - [aux_sym_ciphers_token1] = ACTIONS(1347), - [aux_sym_cipher_token1] = ACTIONS(1349), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1347), - [aux_sym_compression_token1] = ACTIONS(1347), - [aux_sym_connection_attempts_token1] = ACTIONS(1347), - [aux_sym_connect_timeout_token1] = ACTIONS(1347), - [aux_sym_control_master_token1] = ACTIONS(1347), - [aux_sym_control_path_token1] = ACTIONS(1347), - [aux_sym_control_persist_token1] = ACTIONS(1347), - [aux_sym_dynamic_forward_token1] = ACTIONS(1347), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1347), - [aux_sym_escape_char_token1] = ACTIONS(1347), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1347), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1347), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1347), - [aux_sym_forward_agent_token1] = ACTIONS(1347), - [aux_sym_forward_x11_token1] = ACTIONS(1349), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1347), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1347), - [aux_sym_gateway_ports_token1] = ACTIONS(1347), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1347), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1347), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1347), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1347), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1347), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1347), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1347), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1347), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1347), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1347), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1347), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1347), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1347), - [aux_sym_host_key_alias_token1] = ACTIONS(1347), - [aux_sym_hostname_token1] = ACTIONS(1347), - [aux_sym_identities_only_token1] = ACTIONS(1347), - [aux_sym_identity_agent_token1] = ACTIONS(1347), - [aux_sym_identity_file_token1] = ACTIONS(1347), - [aux_sym_ignore_unknown_token1] = ACTIONS(1347), - [aux_sym_include_token1] = ACTIONS(1347), - [aux_sym_ip_qos_token1] = ACTIONS(1347), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1347), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1347), - [aux_sym_kex_algorithms_token1] = ACTIONS(1347), - [aux_sym_known_hosts_command_token1] = ACTIONS(1347), - [aux_sym_local_command_token1] = ACTIONS(1347), - [aux_sym_local_forward_token1] = ACTIONS(1347), - [aux_sym_log_level_token1] = ACTIONS(1347), - [aux_sym_log_verbose_token1] = ACTIONS(1347), - [aux_sym_macs_token1] = ACTIONS(1347), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1347), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1347), - [aux_sym_password_authentication_token1] = ACTIONS(1347), - [aux_sym_permit_local_command_token1] = ACTIONS(1347), - [aux_sym_permit_remote_open_token1] = ACTIONS(1347), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1347), - [aux_sym_port_token1] = ACTIONS(1347), - [aux_sym_preferred_authentications_token1] = ACTIONS(1347), - [aux_sym_protocol_token1] = ACTIONS(1347), - [aux_sym_proxy_command_token1] = ACTIONS(1347), - [aux_sym_proxy_jump_token1] = ACTIONS(1347), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1347), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1347), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1347), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1347), - [aux_sym_rekey_limit_token1] = ACTIONS(1347), - [aux_sym_remote_command_token1] = ACTIONS(1347), - [aux_sym_remote_forward_token1] = ACTIONS(1347), - [aux_sym_request_tty_token1] = ACTIONS(1347), - [aux_sym_required_rsa_size_token1] = ACTIONS(1347), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1347), - [aux_sym_security_key_provider_token1] = ACTIONS(1347), - [aux_sym_send_env_token1] = ACTIONS(1347), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1347), - [aux_sym_server_alive_interval_token1] = ACTIONS(1347), - [aux_sym_session_type_token1] = ACTIONS(1347), - [aux_sym_set_env_token1] = ACTIONS(1347), - [aux_sym_stdin_null_token1] = ACTIONS(1347), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1347), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1347), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1347), - [aux_sym_syslog_facility_token1] = ACTIONS(1347), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1347), - [aux_sym_keep_alive_token1] = ACTIONS(1347), - [aux_sym_tunnel_token1] = ACTIONS(1349), - [aux_sym_tunnel_device_token1] = ACTIONS(1347), - [aux_sym_update_host_keys_token1] = ACTIONS(1347), - [aux_sym_use_keychain_token1] = ACTIONS(1347), - [aux_sym_use_roaming_token1] = ACTIONS(1347), - [aux_sym_user_token1] = ACTIONS(1349), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1347), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1347), - [aux_sym_visual_host_key_token1] = ACTIONS(1347), - [aux_sym_xauth_location_token1] = ACTIONS(1347), + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1356), + [aux_sym_match_token1] = ACTIONS(1352), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1352), + [aux_sym_address_family_token1] = ACTIONS(1352), + [aux_sym_batch_mode_token1] = ACTIONS(1352), + [aux_sym_bind_address_token1] = ACTIONS(1352), + [aux_sym_bind_interface_token1] = ACTIONS(1352), + [aux_sym_canonical_domains_token1] = ACTIONS(1352), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1352), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1352), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1352), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1352), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1352), + [aux_sym_certificate_file_token1] = ACTIONS(1352), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1352), + [aux_sym_check_host_ip_token1] = ACTIONS(1352), + [aux_sym_ciphers_token1] = ACTIONS(1352), + [aux_sym_cipher_token1] = ACTIONS(1354), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1352), + [aux_sym_compression_token1] = ACTIONS(1352), + [aux_sym_connection_attempts_token1] = ACTIONS(1352), + [aux_sym_connect_timeout_token1] = ACTIONS(1352), + [aux_sym_control_master_token1] = ACTIONS(1352), + [aux_sym_control_path_token1] = ACTIONS(1352), + [aux_sym_control_persist_token1] = ACTIONS(1352), + [aux_sym_dynamic_forward_token1] = ACTIONS(1352), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1352), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1352), + [aux_sym_escape_char_token1] = ACTIONS(1352), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1352), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1352), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1352), + [aux_sym_forward_agent_token1] = ACTIONS(1352), + [aux_sym_forward_x11_token1] = ACTIONS(1354), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1352), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1352), + [aux_sym_gateway_ports_token1] = ACTIONS(1352), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1352), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1352), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1352), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1352), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1352), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1352), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1352), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1352), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1352), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1352), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1352), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1352), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1352), + [aux_sym_host_key_alias_token1] = ACTIONS(1352), + [aux_sym_hostname_token1] = ACTIONS(1352), + [aux_sym_identities_only_token1] = ACTIONS(1352), + [aux_sym_identity_agent_token1] = ACTIONS(1352), + [aux_sym_identity_file_token1] = ACTIONS(1352), + [aux_sym_ignore_unknown_token1] = ACTIONS(1352), + [aux_sym_include_token1] = ACTIONS(1352), + [aux_sym_ip_qos_token1] = ACTIONS(1352), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1352), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1352), + [aux_sym_kex_algorithms_token1] = ACTIONS(1352), + [aux_sym_known_hosts_command_token1] = ACTIONS(1352), + [aux_sym_local_command_token1] = ACTIONS(1352), + [aux_sym_local_forward_token1] = ACTIONS(1352), + [aux_sym_log_level_token1] = ACTIONS(1352), + [aux_sym_log_verbose_token1] = ACTIONS(1352), + [aux_sym_macs_token1] = ACTIONS(1352), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1352), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1352), + [aux_sym_password_authentication_token1] = ACTIONS(1352), + [aux_sym_permit_local_command_token1] = ACTIONS(1352), + [aux_sym_permit_remote_open_token1] = ACTIONS(1352), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1352), + [aux_sym_port_token1] = ACTIONS(1352), + [aux_sym_preferred_authentications_token1] = ACTIONS(1352), + [aux_sym_protocol_token1] = ACTIONS(1352), + [aux_sym_proxy_command_token1] = ACTIONS(1352), + [aux_sym_proxy_jump_token1] = ACTIONS(1352), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1352), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1352), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1352), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1352), + [aux_sym_rekey_limit_token1] = ACTIONS(1352), + [aux_sym_remote_command_token1] = ACTIONS(1352), + [aux_sym_remote_forward_token1] = ACTIONS(1352), + [aux_sym_request_tty_token1] = ACTIONS(1352), + [aux_sym_required_rsa_size_token1] = ACTIONS(1352), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1352), + [aux_sym_security_key_provider_token1] = ACTIONS(1352), + [aux_sym_send_env_token1] = ACTIONS(1352), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1352), + [aux_sym_server_alive_interval_token1] = ACTIONS(1352), + [aux_sym_session_type_token1] = ACTIONS(1352), + [aux_sym_set_env_token1] = ACTIONS(1352), + [aux_sym_stdin_null_token1] = ACTIONS(1352), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1352), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1352), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1352), + [aux_sym_syslog_facility_token1] = ACTIONS(1352), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1352), + [aux_sym_keep_alive_token1] = ACTIONS(1352), + [aux_sym_tunnel_token1] = ACTIONS(1354), + [aux_sym_tunnel_device_token1] = ACTIONS(1352), + [aux_sym_update_host_keys_token1] = ACTIONS(1352), + [aux_sym_use_keychain_token1] = ACTIONS(1352), + [aux_sym_use_roaming_token1] = ACTIONS(1352), + [aux_sym_user_token1] = ACTIONS(1354), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1352), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1352), + [aux_sym_visual_host_key_token1] = ACTIONS(1352), + [aux_sym_xauth_location_token1] = ACTIONS(1352), }, [136] = { - [ts_builtin_sym_end] = ACTIONS(1353), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1355), - [anon_sym_DQUOTE] = ACTIONS(1357), - [aux_sym_match_token1] = ACTIONS(1353), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1353), - [aux_sym_address_family_token1] = ACTIONS(1353), - [aux_sym_batch_mode_token1] = ACTIONS(1353), - [aux_sym_bind_address_token1] = ACTIONS(1353), - [aux_sym_bind_interface_token1] = ACTIONS(1353), - [aux_sym_canonical_domains_token1] = ACTIONS(1353), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1353), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1353), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1353), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1353), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1353), - [aux_sym_certificate_file_token1] = ACTIONS(1353), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1353), - [aux_sym_check_host_ip_token1] = ACTIONS(1353), - [aux_sym_ciphers_token1] = ACTIONS(1353), - [aux_sym_cipher_token1] = ACTIONS(1355), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1353), - [aux_sym_compression_token1] = ACTIONS(1353), - [aux_sym_connection_attempts_token1] = ACTIONS(1353), - [aux_sym_connect_timeout_token1] = ACTIONS(1353), - [aux_sym_control_master_token1] = ACTIONS(1353), - [aux_sym_control_path_token1] = ACTIONS(1353), - [aux_sym_control_persist_token1] = ACTIONS(1353), - [aux_sym_dynamic_forward_token1] = ACTIONS(1353), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1353), - [aux_sym_escape_char_token1] = ACTIONS(1353), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1353), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1353), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1353), - [aux_sym_forward_agent_token1] = ACTIONS(1353), - [aux_sym_forward_x11_token1] = ACTIONS(1355), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1353), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1353), - [aux_sym_gateway_ports_token1] = ACTIONS(1353), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1353), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1353), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1353), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1353), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1353), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1353), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1353), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1353), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1353), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1353), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1353), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1353), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1353), - [aux_sym_host_key_alias_token1] = ACTIONS(1353), - [aux_sym_hostname_token1] = ACTIONS(1353), - [aux_sym_identities_only_token1] = ACTIONS(1353), - [aux_sym_identity_agent_token1] = ACTIONS(1353), - [aux_sym_identity_file_token1] = ACTIONS(1353), - [aux_sym_ignore_unknown_token1] = ACTIONS(1353), - [aux_sym_include_token1] = ACTIONS(1353), - [aux_sym_ip_qos_token1] = ACTIONS(1353), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1353), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1353), - [aux_sym_kex_algorithms_token1] = ACTIONS(1353), - [aux_sym_known_hosts_command_token1] = ACTIONS(1353), - [aux_sym_local_command_token1] = ACTIONS(1353), - [aux_sym_local_forward_token1] = ACTIONS(1353), - [aux_sym_log_level_token1] = ACTIONS(1353), - [aux_sym_log_verbose_token1] = ACTIONS(1353), - [aux_sym_macs_token1] = ACTIONS(1353), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1353), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1353), - [aux_sym_password_authentication_token1] = ACTIONS(1353), - [aux_sym_permit_local_command_token1] = ACTIONS(1353), - [aux_sym_permit_remote_open_token1] = ACTIONS(1353), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1353), - [aux_sym_port_token1] = ACTIONS(1353), - [aux_sym_preferred_authentications_token1] = ACTIONS(1353), - [aux_sym_protocol_token1] = ACTIONS(1353), - [aux_sym_proxy_command_token1] = ACTIONS(1353), - [aux_sym_proxy_jump_token1] = ACTIONS(1353), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1353), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1353), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1353), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1353), - [aux_sym_rekey_limit_token1] = ACTIONS(1353), - [aux_sym_remote_command_token1] = ACTIONS(1353), - [aux_sym_remote_forward_token1] = ACTIONS(1353), - [aux_sym_request_tty_token1] = ACTIONS(1353), - [aux_sym_required_rsa_size_token1] = ACTIONS(1353), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1353), - [aux_sym_security_key_provider_token1] = ACTIONS(1353), - [aux_sym_send_env_token1] = ACTIONS(1353), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1353), - [aux_sym_server_alive_interval_token1] = ACTIONS(1353), - [aux_sym_session_type_token1] = ACTIONS(1353), - [aux_sym_set_env_token1] = ACTIONS(1353), - [aux_sym_stdin_null_token1] = ACTIONS(1353), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1353), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1353), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1353), - [aux_sym_syslog_facility_token1] = ACTIONS(1353), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1353), - [aux_sym_keep_alive_token1] = ACTIONS(1353), - [aux_sym_tunnel_token1] = ACTIONS(1355), - [aux_sym_tunnel_device_token1] = ACTIONS(1353), - [aux_sym_update_host_keys_token1] = ACTIONS(1353), - [aux_sym_use_keychain_token1] = ACTIONS(1353), - [aux_sym_use_roaming_token1] = ACTIONS(1353), - [aux_sym_user_token1] = ACTIONS(1355), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1353), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1353), - [aux_sym_visual_host_key_token1] = ACTIONS(1353), - [aux_sym_xauth_location_token1] = ACTIONS(1353), + [ts_builtin_sym_end] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1362), + [aux_sym_match_token1] = ACTIONS(1358), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1358), + [aux_sym_address_family_token1] = ACTIONS(1358), + [aux_sym_batch_mode_token1] = ACTIONS(1358), + [aux_sym_bind_address_token1] = ACTIONS(1358), + [aux_sym_bind_interface_token1] = ACTIONS(1358), + [aux_sym_canonical_domains_token1] = ACTIONS(1358), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1358), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1358), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1358), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1358), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1358), + [aux_sym_certificate_file_token1] = ACTIONS(1358), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1358), + [aux_sym_check_host_ip_token1] = ACTIONS(1358), + [aux_sym_ciphers_token1] = ACTIONS(1358), + [aux_sym_cipher_token1] = ACTIONS(1360), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1358), + [aux_sym_compression_token1] = ACTIONS(1358), + [aux_sym_connection_attempts_token1] = ACTIONS(1358), + [aux_sym_connect_timeout_token1] = ACTIONS(1358), + [aux_sym_control_master_token1] = ACTIONS(1358), + [aux_sym_control_path_token1] = ACTIONS(1358), + [aux_sym_control_persist_token1] = ACTIONS(1358), + [aux_sym_dynamic_forward_token1] = ACTIONS(1358), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1358), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1358), + [aux_sym_escape_char_token1] = ACTIONS(1358), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1358), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1358), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1358), + [aux_sym_forward_agent_token1] = ACTIONS(1358), + [aux_sym_forward_x11_token1] = ACTIONS(1360), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1358), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1358), + [aux_sym_gateway_ports_token1] = ACTIONS(1358), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1358), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1358), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1358), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1358), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1358), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1358), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1358), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1358), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1358), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1358), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1358), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1358), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1358), + [aux_sym_host_key_alias_token1] = ACTIONS(1358), + [aux_sym_hostname_token1] = ACTIONS(1358), + [aux_sym_identities_only_token1] = ACTIONS(1358), + [aux_sym_identity_agent_token1] = ACTIONS(1358), + [aux_sym_identity_file_token1] = ACTIONS(1358), + [aux_sym_ignore_unknown_token1] = ACTIONS(1358), + [aux_sym_include_token1] = ACTIONS(1358), + [aux_sym_ip_qos_token1] = ACTIONS(1358), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1358), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1358), + [aux_sym_kex_algorithms_token1] = ACTIONS(1358), + [aux_sym_known_hosts_command_token1] = ACTIONS(1358), + [aux_sym_local_command_token1] = ACTIONS(1358), + [aux_sym_local_forward_token1] = ACTIONS(1358), + [aux_sym_log_level_token1] = ACTIONS(1358), + [aux_sym_log_verbose_token1] = ACTIONS(1358), + [aux_sym_macs_token1] = ACTIONS(1358), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1358), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1358), + [aux_sym_password_authentication_token1] = ACTIONS(1358), + [aux_sym_permit_local_command_token1] = ACTIONS(1358), + [aux_sym_permit_remote_open_token1] = ACTIONS(1358), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1358), + [aux_sym_port_token1] = ACTIONS(1358), + [aux_sym_preferred_authentications_token1] = ACTIONS(1358), + [aux_sym_protocol_token1] = ACTIONS(1358), + [aux_sym_proxy_command_token1] = ACTIONS(1358), + [aux_sym_proxy_jump_token1] = ACTIONS(1358), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1358), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1358), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1358), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1358), + [aux_sym_rekey_limit_token1] = ACTIONS(1358), + [aux_sym_remote_command_token1] = ACTIONS(1358), + [aux_sym_remote_forward_token1] = ACTIONS(1358), + [aux_sym_request_tty_token1] = ACTIONS(1358), + [aux_sym_required_rsa_size_token1] = ACTIONS(1358), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1358), + [aux_sym_security_key_provider_token1] = ACTIONS(1358), + [aux_sym_send_env_token1] = ACTIONS(1358), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1358), + [aux_sym_server_alive_interval_token1] = ACTIONS(1358), + [aux_sym_session_type_token1] = ACTIONS(1358), + [aux_sym_set_env_token1] = ACTIONS(1358), + [aux_sym_stdin_null_token1] = ACTIONS(1358), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1358), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1358), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1358), + [aux_sym_syslog_facility_token1] = ACTIONS(1358), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1358), + [aux_sym_keep_alive_token1] = ACTIONS(1358), + [aux_sym_tunnel_token1] = ACTIONS(1360), + [aux_sym_tunnel_device_token1] = ACTIONS(1358), + [aux_sym_update_host_keys_token1] = ACTIONS(1358), + [aux_sym_use_keychain_token1] = ACTIONS(1358), + [aux_sym_use_roaming_token1] = ACTIONS(1358), + [aux_sym_user_token1] = ACTIONS(1360), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1358), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1358), + [aux_sym_visual_host_key_token1] = ACTIONS(1358), + [aux_sym_xauth_location_token1] = ACTIONS(1358), }, [137] = { - [ts_builtin_sym_end] = ACTIONS(1359), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1361), - [anon_sym_DQUOTE] = ACTIONS(1363), - [aux_sym_match_token1] = ACTIONS(1359), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1359), - [aux_sym_address_family_token1] = ACTIONS(1359), - [aux_sym_batch_mode_token1] = ACTIONS(1359), - [aux_sym_bind_address_token1] = ACTIONS(1359), - [aux_sym_bind_interface_token1] = ACTIONS(1359), - [aux_sym_canonical_domains_token1] = ACTIONS(1359), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1359), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1359), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1359), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1359), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1359), - [aux_sym_certificate_file_token1] = ACTIONS(1359), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1359), - [aux_sym_check_host_ip_token1] = ACTIONS(1359), - [aux_sym_ciphers_token1] = ACTIONS(1359), - [aux_sym_cipher_token1] = ACTIONS(1361), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1359), - [aux_sym_compression_token1] = ACTIONS(1359), - [aux_sym_connection_attempts_token1] = ACTIONS(1359), - [aux_sym_connect_timeout_token1] = ACTIONS(1359), - [aux_sym_control_master_token1] = ACTIONS(1359), - [aux_sym_control_path_token1] = ACTIONS(1359), - [aux_sym_control_persist_token1] = ACTIONS(1359), - [aux_sym_dynamic_forward_token1] = ACTIONS(1359), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1359), - [aux_sym_escape_char_token1] = ACTIONS(1359), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1359), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1359), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1359), - [aux_sym_forward_agent_token1] = ACTIONS(1359), - [aux_sym_forward_x11_token1] = ACTIONS(1361), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1359), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1359), - [aux_sym_gateway_ports_token1] = ACTIONS(1359), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1359), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1359), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1359), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1359), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1359), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1359), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1359), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1359), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1359), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1359), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1359), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1359), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1359), - [aux_sym_host_key_alias_token1] = ACTIONS(1359), - [aux_sym_hostname_token1] = ACTIONS(1359), - [aux_sym_identities_only_token1] = ACTIONS(1359), - [aux_sym_identity_agent_token1] = ACTIONS(1359), - [aux_sym_identity_file_token1] = ACTIONS(1359), - [aux_sym_ignore_unknown_token1] = ACTIONS(1359), - [aux_sym_include_token1] = ACTIONS(1359), - [aux_sym_ip_qos_token1] = ACTIONS(1359), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1359), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1359), - [aux_sym_kex_algorithms_token1] = ACTIONS(1359), - [aux_sym_known_hosts_command_token1] = ACTIONS(1359), - [aux_sym_local_command_token1] = ACTIONS(1359), - [aux_sym_local_forward_token1] = ACTIONS(1359), - [aux_sym_log_level_token1] = ACTIONS(1359), - [aux_sym_log_verbose_token1] = ACTIONS(1359), - [aux_sym_macs_token1] = ACTIONS(1359), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1359), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1359), - [aux_sym_password_authentication_token1] = ACTIONS(1359), - [aux_sym_permit_local_command_token1] = ACTIONS(1359), - [aux_sym_permit_remote_open_token1] = ACTIONS(1359), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1359), - [aux_sym_port_token1] = ACTIONS(1359), - [aux_sym_preferred_authentications_token1] = ACTIONS(1359), - [aux_sym_protocol_token1] = ACTIONS(1359), - [aux_sym_proxy_command_token1] = ACTIONS(1359), - [aux_sym_proxy_jump_token1] = ACTIONS(1359), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1359), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1359), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1359), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1359), - [aux_sym_rekey_limit_token1] = ACTIONS(1359), - [aux_sym_remote_command_token1] = ACTIONS(1359), - [aux_sym_remote_forward_token1] = ACTIONS(1359), - [aux_sym_request_tty_token1] = ACTIONS(1359), - [aux_sym_required_rsa_size_token1] = ACTIONS(1359), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1359), - [aux_sym_security_key_provider_token1] = ACTIONS(1359), - [aux_sym_send_env_token1] = ACTIONS(1359), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1359), - [aux_sym_server_alive_interval_token1] = ACTIONS(1359), - [aux_sym_session_type_token1] = ACTIONS(1359), - [aux_sym_set_env_token1] = ACTIONS(1359), - [aux_sym_stdin_null_token1] = ACTIONS(1359), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1359), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1359), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1359), - [aux_sym_syslog_facility_token1] = ACTIONS(1359), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1359), - [aux_sym_keep_alive_token1] = ACTIONS(1359), - [aux_sym_tunnel_token1] = ACTIONS(1361), - [aux_sym_tunnel_device_token1] = ACTIONS(1359), - [aux_sym_update_host_keys_token1] = ACTIONS(1359), - [aux_sym_use_keychain_token1] = ACTIONS(1359), - [aux_sym_use_roaming_token1] = ACTIONS(1359), - [aux_sym_user_token1] = ACTIONS(1361), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1359), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1359), - [aux_sym_visual_host_key_token1] = ACTIONS(1359), - [aux_sym_xauth_location_token1] = ACTIONS(1359), + [ts_builtin_sym_end] = ACTIONS(1364), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1368), + [aux_sym_match_token1] = ACTIONS(1364), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1364), + [aux_sym_address_family_token1] = ACTIONS(1364), + [aux_sym_batch_mode_token1] = ACTIONS(1364), + [aux_sym_bind_address_token1] = ACTIONS(1364), + [aux_sym_bind_interface_token1] = ACTIONS(1364), + [aux_sym_canonical_domains_token1] = ACTIONS(1364), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1364), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1364), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1364), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1364), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1364), + [aux_sym_certificate_file_token1] = ACTIONS(1364), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1364), + [aux_sym_check_host_ip_token1] = ACTIONS(1364), + [aux_sym_ciphers_token1] = ACTIONS(1364), + [aux_sym_cipher_token1] = ACTIONS(1366), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1364), + [aux_sym_compression_token1] = ACTIONS(1364), + [aux_sym_connection_attempts_token1] = ACTIONS(1364), + [aux_sym_connect_timeout_token1] = ACTIONS(1364), + [aux_sym_control_master_token1] = ACTIONS(1364), + [aux_sym_control_path_token1] = ACTIONS(1364), + [aux_sym_control_persist_token1] = ACTIONS(1364), + [aux_sym_dynamic_forward_token1] = ACTIONS(1364), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1364), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1364), + [aux_sym_escape_char_token1] = ACTIONS(1364), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1364), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1364), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1364), + [aux_sym_forward_agent_token1] = ACTIONS(1364), + [aux_sym_forward_x11_token1] = ACTIONS(1366), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1364), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1364), + [aux_sym_gateway_ports_token1] = ACTIONS(1364), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1364), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1364), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1364), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1364), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1364), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1364), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1364), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1364), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1364), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1364), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1364), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1364), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1364), + [aux_sym_host_key_alias_token1] = ACTIONS(1364), + [aux_sym_hostname_token1] = ACTIONS(1364), + [aux_sym_identities_only_token1] = ACTIONS(1364), + [aux_sym_identity_agent_token1] = ACTIONS(1364), + [aux_sym_identity_file_token1] = ACTIONS(1364), + [aux_sym_ignore_unknown_token1] = ACTIONS(1364), + [aux_sym_include_token1] = ACTIONS(1364), + [aux_sym_ip_qos_token1] = ACTIONS(1364), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1364), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1364), + [aux_sym_kex_algorithms_token1] = ACTIONS(1364), + [aux_sym_known_hosts_command_token1] = ACTIONS(1364), + [aux_sym_local_command_token1] = ACTIONS(1364), + [aux_sym_local_forward_token1] = ACTIONS(1364), + [aux_sym_log_level_token1] = ACTIONS(1364), + [aux_sym_log_verbose_token1] = ACTIONS(1364), + [aux_sym_macs_token1] = ACTIONS(1364), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1364), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1364), + [aux_sym_password_authentication_token1] = ACTIONS(1364), + [aux_sym_permit_local_command_token1] = ACTIONS(1364), + [aux_sym_permit_remote_open_token1] = ACTIONS(1364), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1364), + [aux_sym_port_token1] = ACTIONS(1364), + [aux_sym_preferred_authentications_token1] = ACTIONS(1364), + [aux_sym_protocol_token1] = ACTIONS(1364), + [aux_sym_proxy_command_token1] = ACTIONS(1364), + [aux_sym_proxy_jump_token1] = ACTIONS(1364), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1364), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1364), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1364), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1364), + [aux_sym_rekey_limit_token1] = ACTIONS(1364), + [aux_sym_remote_command_token1] = ACTIONS(1364), + [aux_sym_remote_forward_token1] = ACTIONS(1364), + [aux_sym_request_tty_token1] = ACTIONS(1364), + [aux_sym_required_rsa_size_token1] = ACTIONS(1364), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1364), + [aux_sym_security_key_provider_token1] = ACTIONS(1364), + [aux_sym_send_env_token1] = ACTIONS(1364), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1364), + [aux_sym_server_alive_interval_token1] = ACTIONS(1364), + [aux_sym_session_type_token1] = ACTIONS(1364), + [aux_sym_set_env_token1] = ACTIONS(1364), + [aux_sym_stdin_null_token1] = ACTIONS(1364), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1364), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1364), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1364), + [aux_sym_syslog_facility_token1] = ACTIONS(1364), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1364), + [aux_sym_keep_alive_token1] = ACTIONS(1364), + [aux_sym_tunnel_token1] = ACTIONS(1366), + [aux_sym_tunnel_device_token1] = ACTIONS(1364), + [aux_sym_update_host_keys_token1] = ACTIONS(1364), + [aux_sym_use_keychain_token1] = ACTIONS(1364), + [aux_sym_use_roaming_token1] = ACTIONS(1364), + [aux_sym_user_token1] = ACTIONS(1366), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1364), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1364), + [aux_sym_visual_host_key_token1] = ACTIONS(1364), + [aux_sym_xauth_location_token1] = ACTIONS(1364), }, [138] = { - [ts_builtin_sym_end] = ACTIONS(1365), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1369), - [aux_sym_match_token1] = ACTIONS(1365), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1365), - [aux_sym_address_family_token1] = ACTIONS(1365), - [aux_sym_batch_mode_token1] = ACTIONS(1365), - [aux_sym_bind_address_token1] = ACTIONS(1365), - [aux_sym_bind_interface_token1] = ACTIONS(1365), - [aux_sym_canonical_domains_token1] = ACTIONS(1365), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1365), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1365), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1365), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1365), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1365), - [aux_sym_certificate_file_token1] = ACTIONS(1365), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1365), - [aux_sym_check_host_ip_token1] = ACTIONS(1365), - [aux_sym_ciphers_token1] = ACTIONS(1365), - [aux_sym_cipher_token1] = ACTIONS(1367), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1365), - [aux_sym_compression_token1] = ACTIONS(1365), - [aux_sym_connection_attempts_token1] = ACTIONS(1365), - [aux_sym_connect_timeout_token1] = ACTIONS(1365), - [aux_sym_control_master_token1] = ACTIONS(1365), - [aux_sym_control_path_token1] = ACTIONS(1365), - [aux_sym_control_persist_token1] = ACTIONS(1365), - [aux_sym_dynamic_forward_token1] = ACTIONS(1365), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1365), - [aux_sym_escape_char_token1] = ACTIONS(1365), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1365), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1365), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1365), - [aux_sym_forward_agent_token1] = ACTIONS(1365), - [aux_sym_forward_x11_token1] = ACTIONS(1367), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1365), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1365), - [aux_sym_gateway_ports_token1] = ACTIONS(1365), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1365), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1365), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1365), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1365), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1365), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1365), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1365), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1365), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1365), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1365), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1365), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1365), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1365), - [aux_sym_host_key_alias_token1] = ACTIONS(1365), - [aux_sym_hostname_token1] = ACTIONS(1365), - [aux_sym_identities_only_token1] = ACTIONS(1365), - [aux_sym_identity_agent_token1] = ACTIONS(1365), - [aux_sym_identity_file_token1] = ACTIONS(1365), - [aux_sym_ignore_unknown_token1] = ACTIONS(1365), - [aux_sym_include_token1] = ACTIONS(1365), - [aux_sym_ip_qos_token1] = ACTIONS(1365), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1365), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1365), - [aux_sym_kex_algorithms_token1] = ACTIONS(1365), - [aux_sym_known_hosts_command_token1] = ACTIONS(1365), - [aux_sym_local_command_token1] = ACTIONS(1365), - [aux_sym_local_forward_token1] = ACTIONS(1365), - [aux_sym_log_level_token1] = ACTIONS(1365), - [aux_sym_log_verbose_token1] = ACTIONS(1365), - [aux_sym_macs_token1] = ACTIONS(1365), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1365), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1365), - [aux_sym_password_authentication_token1] = ACTIONS(1365), - [aux_sym_permit_local_command_token1] = ACTIONS(1365), - [aux_sym_permit_remote_open_token1] = ACTIONS(1365), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1365), - [aux_sym_port_token1] = ACTIONS(1365), - [aux_sym_preferred_authentications_token1] = ACTIONS(1365), - [aux_sym_protocol_token1] = ACTIONS(1365), - [aux_sym_proxy_command_token1] = ACTIONS(1365), - [aux_sym_proxy_jump_token1] = ACTIONS(1365), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1365), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1365), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1365), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1365), - [aux_sym_rekey_limit_token1] = ACTIONS(1365), - [aux_sym_remote_command_token1] = ACTIONS(1365), - [aux_sym_remote_forward_token1] = ACTIONS(1365), - [aux_sym_request_tty_token1] = ACTIONS(1365), - [aux_sym_required_rsa_size_token1] = ACTIONS(1365), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1365), - [aux_sym_security_key_provider_token1] = ACTIONS(1365), - [aux_sym_send_env_token1] = ACTIONS(1365), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1365), - [aux_sym_server_alive_interval_token1] = ACTIONS(1365), - [aux_sym_session_type_token1] = ACTIONS(1365), - [aux_sym_set_env_token1] = ACTIONS(1365), - [aux_sym_stdin_null_token1] = ACTIONS(1365), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1365), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1365), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1365), - [aux_sym_syslog_facility_token1] = ACTIONS(1365), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1365), - [aux_sym_keep_alive_token1] = ACTIONS(1365), - [aux_sym_tunnel_token1] = ACTIONS(1367), - [aux_sym_tunnel_device_token1] = ACTIONS(1365), - [aux_sym_update_host_keys_token1] = ACTIONS(1365), - [aux_sym_use_keychain_token1] = ACTIONS(1365), - [aux_sym_use_roaming_token1] = ACTIONS(1365), - [aux_sym_user_token1] = ACTIONS(1367), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1365), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1365), - [aux_sym_visual_host_key_token1] = ACTIONS(1365), - [aux_sym_xauth_location_token1] = ACTIONS(1365), + [ts_builtin_sym_end] = ACTIONS(1370), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [aux_sym_match_token1] = ACTIONS(1370), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1370), + [aux_sym_address_family_token1] = ACTIONS(1370), + [aux_sym_batch_mode_token1] = ACTIONS(1370), + [aux_sym_bind_address_token1] = ACTIONS(1370), + [aux_sym_bind_interface_token1] = ACTIONS(1370), + [aux_sym_canonical_domains_token1] = ACTIONS(1370), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1370), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1370), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1370), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1370), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1370), + [aux_sym_certificate_file_token1] = ACTIONS(1370), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1370), + [aux_sym_check_host_ip_token1] = ACTIONS(1370), + [aux_sym_ciphers_token1] = ACTIONS(1370), + [aux_sym_cipher_token1] = ACTIONS(1372), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1370), + [aux_sym_compression_token1] = ACTIONS(1370), + [aux_sym_connection_attempts_token1] = ACTIONS(1370), + [aux_sym_connect_timeout_token1] = ACTIONS(1370), + [aux_sym_control_master_token1] = ACTIONS(1370), + [aux_sym_control_path_token1] = ACTIONS(1370), + [aux_sym_control_persist_token1] = ACTIONS(1370), + [aux_sym_dynamic_forward_token1] = ACTIONS(1370), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1370), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1370), + [aux_sym_escape_char_token1] = ACTIONS(1370), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1370), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1370), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1370), + [aux_sym_forward_agent_token1] = ACTIONS(1370), + [aux_sym_forward_x11_token1] = ACTIONS(1372), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1370), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1370), + [aux_sym_gateway_ports_token1] = ACTIONS(1370), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1370), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1370), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1370), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1370), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1370), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1370), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1370), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1370), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1370), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1370), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1370), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1370), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1370), + [aux_sym_host_key_alias_token1] = ACTIONS(1370), + [aux_sym_hostname_token1] = ACTIONS(1370), + [aux_sym_identities_only_token1] = ACTIONS(1370), + [aux_sym_identity_agent_token1] = ACTIONS(1370), + [aux_sym_identity_file_token1] = ACTIONS(1370), + [aux_sym_ignore_unknown_token1] = ACTIONS(1370), + [aux_sym_include_token1] = ACTIONS(1370), + [aux_sym_ip_qos_token1] = ACTIONS(1370), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1370), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1370), + [aux_sym_kex_algorithms_token1] = ACTIONS(1370), + [aux_sym_known_hosts_command_token1] = ACTIONS(1370), + [aux_sym_local_command_token1] = ACTIONS(1370), + [aux_sym_local_forward_token1] = ACTIONS(1370), + [aux_sym_log_level_token1] = ACTIONS(1370), + [aux_sym_log_verbose_token1] = ACTIONS(1370), + [aux_sym_macs_token1] = ACTIONS(1370), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1370), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1370), + [aux_sym_password_authentication_token1] = ACTIONS(1370), + [aux_sym_permit_local_command_token1] = ACTIONS(1370), + [aux_sym_permit_remote_open_token1] = ACTIONS(1370), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1370), + [aux_sym_port_token1] = ACTIONS(1370), + [aux_sym_preferred_authentications_token1] = ACTIONS(1370), + [aux_sym_protocol_token1] = ACTIONS(1370), + [aux_sym_proxy_command_token1] = ACTIONS(1370), + [aux_sym_proxy_jump_token1] = ACTIONS(1370), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1370), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1370), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1370), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1370), + [aux_sym_rekey_limit_token1] = ACTIONS(1370), + [aux_sym_remote_command_token1] = ACTIONS(1370), + [aux_sym_remote_forward_token1] = ACTIONS(1370), + [aux_sym_request_tty_token1] = ACTIONS(1370), + [aux_sym_required_rsa_size_token1] = ACTIONS(1370), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1370), + [aux_sym_security_key_provider_token1] = ACTIONS(1370), + [aux_sym_send_env_token1] = ACTIONS(1370), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1370), + [aux_sym_server_alive_interval_token1] = ACTIONS(1370), + [aux_sym_session_type_token1] = ACTIONS(1370), + [aux_sym_set_env_token1] = ACTIONS(1370), + [aux_sym_stdin_null_token1] = ACTIONS(1370), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1370), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1370), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1370), + [aux_sym_syslog_facility_token1] = ACTIONS(1370), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1370), + [aux_sym_keep_alive_token1] = ACTIONS(1370), + [aux_sym_tunnel_token1] = ACTIONS(1372), + [aux_sym_tunnel_device_token1] = ACTIONS(1370), + [aux_sym_update_host_keys_token1] = ACTIONS(1370), + [aux_sym_use_keychain_token1] = ACTIONS(1370), + [aux_sym_use_roaming_token1] = ACTIONS(1370), + [aux_sym_user_token1] = ACTIONS(1372), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1370), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1370), + [aux_sym_visual_host_key_token1] = ACTIONS(1370), + [aux_sym_xauth_location_token1] = ACTIONS(1370), }, [139] = { - [ts_builtin_sym_end] = ACTIONS(1371), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1373), - [anon_sym_DQUOTE] = ACTIONS(1375), - [aux_sym_match_token1] = ACTIONS(1371), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1371), - [aux_sym_address_family_token1] = ACTIONS(1371), - [aux_sym_batch_mode_token1] = ACTIONS(1371), - [aux_sym_bind_address_token1] = ACTIONS(1371), - [aux_sym_bind_interface_token1] = ACTIONS(1371), - [aux_sym_canonical_domains_token1] = ACTIONS(1371), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1371), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1371), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1371), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1371), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1371), - [aux_sym_certificate_file_token1] = ACTIONS(1371), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1371), - [aux_sym_check_host_ip_token1] = ACTIONS(1371), - [aux_sym_ciphers_token1] = ACTIONS(1371), - [aux_sym_cipher_token1] = ACTIONS(1373), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1371), - [aux_sym_compression_token1] = ACTIONS(1371), - [aux_sym_connection_attempts_token1] = ACTIONS(1371), - [aux_sym_connect_timeout_token1] = ACTIONS(1371), - [aux_sym_control_master_token1] = ACTIONS(1371), - [aux_sym_control_path_token1] = ACTIONS(1371), - [aux_sym_control_persist_token1] = ACTIONS(1371), - [aux_sym_dynamic_forward_token1] = ACTIONS(1371), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1371), - [aux_sym_escape_char_token1] = ACTIONS(1371), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1371), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1371), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1371), - [aux_sym_forward_agent_token1] = ACTIONS(1371), - [aux_sym_forward_x11_token1] = ACTIONS(1373), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1371), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1371), - [aux_sym_gateway_ports_token1] = ACTIONS(1371), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1371), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1371), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1371), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1371), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1371), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1371), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1371), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1371), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1371), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1371), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1371), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1371), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1371), - [aux_sym_host_key_alias_token1] = ACTIONS(1371), - [aux_sym_hostname_token1] = ACTIONS(1371), - [aux_sym_identities_only_token1] = ACTIONS(1371), - [aux_sym_identity_agent_token1] = ACTIONS(1371), - [aux_sym_identity_file_token1] = ACTIONS(1371), - [aux_sym_ignore_unknown_token1] = ACTIONS(1371), - [aux_sym_include_token1] = ACTIONS(1371), - [aux_sym_ip_qos_token1] = ACTIONS(1371), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1371), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1371), - [aux_sym_kex_algorithms_token1] = ACTIONS(1371), - [aux_sym_known_hosts_command_token1] = ACTIONS(1371), - [aux_sym_local_command_token1] = ACTIONS(1371), - [aux_sym_local_forward_token1] = ACTIONS(1371), - [aux_sym_log_level_token1] = ACTIONS(1371), - [aux_sym_log_verbose_token1] = ACTIONS(1371), - [aux_sym_macs_token1] = ACTIONS(1371), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1371), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1371), - [aux_sym_password_authentication_token1] = ACTIONS(1371), - [aux_sym_permit_local_command_token1] = ACTIONS(1371), - [aux_sym_permit_remote_open_token1] = ACTIONS(1371), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1371), - [aux_sym_port_token1] = ACTIONS(1371), - [aux_sym_preferred_authentications_token1] = ACTIONS(1371), - [aux_sym_protocol_token1] = ACTIONS(1371), - [aux_sym_proxy_command_token1] = ACTIONS(1371), - [aux_sym_proxy_jump_token1] = ACTIONS(1371), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1371), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1371), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1371), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1371), - [aux_sym_rekey_limit_token1] = ACTIONS(1371), - [aux_sym_remote_command_token1] = ACTIONS(1371), - [aux_sym_remote_forward_token1] = ACTIONS(1371), - [aux_sym_request_tty_token1] = ACTIONS(1371), - [aux_sym_required_rsa_size_token1] = ACTIONS(1371), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1371), - [aux_sym_security_key_provider_token1] = ACTIONS(1371), - [aux_sym_send_env_token1] = ACTIONS(1371), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1371), - [aux_sym_server_alive_interval_token1] = ACTIONS(1371), - [aux_sym_session_type_token1] = ACTIONS(1371), - [aux_sym_set_env_token1] = ACTIONS(1371), - [aux_sym_stdin_null_token1] = ACTIONS(1371), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1371), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1371), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1371), - [aux_sym_syslog_facility_token1] = ACTIONS(1371), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1371), - [aux_sym_keep_alive_token1] = ACTIONS(1371), - [aux_sym_tunnel_token1] = ACTIONS(1373), - [aux_sym_tunnel_device_token1] = ACTIONS(1371), - [aux_sym_update_host_keys_token1] = ACTIONS(1371), - [aux_sym_use_keychain_token1] = ACTIONS(1371), - [aux_sym_use_roaming_token1] = ACTIONS(1371), - [aux_sym_user_token1] = ACTIONS(1373), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1371), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1371), - [aux_sym_visual_host_key_token1] = ACTIONS(1371), - [aux_sym_xauth_location_token1] = ACTIONS(1371), + [ts_builtin_sym_end] = ACTIONS(1376), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(1380), + [aux_sym_match_token1] = ACTIONS(1376), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1376), + [aux_sym_address_family_token1] = ACTIONS(1376), + [aux_sym_batch_mode_token1] = ACTIONS(1376), + [aux_sym_bind_address_token1] = ACTIONS(1376), + [aux_sym_bind_interface_token1] = ACTIONS(1376), + [aux_sym_canonical_domains_token1] = ACTIONS(1376), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1376), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1376), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1376), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1376), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1376), + [aux_sym_certificate_file_token1] = ACTIONS(1376), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1376), + [aux_sym_check_host_ip_token1] = ACTIONS(1376), + [aux_sym_ciphers_token1] = ACTIONS(1376), + [aux_sym_cipher_token1] = ACTIONS(1378), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1376), + [aux_sym_compression_token1] = ACTIONS(1376), + [aux_sym_connection_attempts_token1] = ACTIONS(1376), + [aux_sym_connect_timeout_token1] = ACTIONS(1376), + [aux_sym_control_master_token1] = ACTIONS(1376), + [aux_sym_control_path_token1] = ACTIONS(1376), + [aux_sym_control_persist_token1] = ACTIONS(1376), + [aux_sym_dynamic_forward_token1] = ACTIONS(1376), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1376), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1376), + [aux_sym_escape_char_token1] = ACTIONS(1376), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1376), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1376), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1376), + [aux_sym_forward_agent_token1] = ACTIONS(1376), + [aux_sym_forward_x11_token1] = ACTIONS(1378), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1376), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1376), + [aux_sym_gateway_ports_token1] = ACTIONS(1376), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1376), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1376), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1376), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1376), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1376), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1376), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1376), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1376), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1376), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1376), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1376), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1376), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1376), + [aux_sym_host_key_alias_token1] = ACTIONS(1376), + [aux_sym_hostname_token1] = ACTIONS(1376), + [aux_sym_identities_only_token1] = ACTIONS(1376), + [aux_sym_identity_agent_token1] = ACTIONS(1376), + [aux_sym_identity_file_token1] = ACTIONS(1376), + [aux_sym_ignore_unknown_token1] = ACTIONS(1376), + [aux_sym_include_token1] = ACTIONS(1376), + [aux_sym_ip_qos_token1] = ACTIONS(1376), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1376), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1376), + [aux_sym_kex_algorithms_token1] = ACTIONS(1376), + [aux_sym_known_hosts_command_token1] = ACTIONS(1376), + [aux_sym_local_command_token1] = ACTIONS(1376), + [aux_sym_local_forward_token1] = ACTIONS(1376), + [aux_sym_log_level_token1] = ACTIONS(1376), + [aux_sym_log_verbose_token1] = ACTIONS(1376), + [aux_sym_macs_token1] = ACTIONS(1376), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1376), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1376), + [aux_sym_password_authentication_token1] = ACTIONS(1376), + [aux_sym_permit_local_command_token1] = ACTIONS(1376), + [aux_sym_permit_remote_open_token1] = ACTIONS(1376), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1376), + [aux_sym_port_token1] = ACTIONS(1376), + [aux_sym_preferred_authentications_token1] = ACTIONS(1376), + [aux_sym_protocol_token1] = ACTIONS(1376), + [aux_sym_proxy_command_token1] = ACTIONS(1376), + [aux_sym_proxy_jump_token1] = ACTIONS(1376), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1376), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1376), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1376), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1376), + [aux_sym_rekey_limit_token1] = ACTIONS(1376), + [aux_sym_remote_command_token1] = ACTIONS(1376), + [aux_sym_remote_forward_token1] = ACTIONS(1376), + [aux_sym_request_tty_token1] = ACTIONS(1376), + [aux_sym_required_rsa_size_token1] = ACTIONS(1376), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1376), + [aux_sym_security_key_provider_token1] = ACTIONS(1376), + [aux_sym_send_env_token1] = ACTIONS(1376), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1376), + [aux_sym_server_alive_interval_token1] = ACTIONS(1376), + [aux_sym_session_type_token1] = ACTIONS(1376), + [aux_sym_set_env_token1] = ACTIONS(1376), + [aux_sym_stdin_null_token1] = ACTIONS(1376), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1376), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1376), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1376), + [aux_sym_syslog_facility_token1] = ACTIONS(1376), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1376), + [aux_sym_keep_alive_token1] = ACTIONS(1376), + [aux_sym_tunnel_token1] = ACTIONS(1378), + [aux_sym_tunnel_device_token1] = ACTIONS(1376), + [aux_sym_update_host_keys_token1] = ACTIONS(1376), + [aux_sym_use_keychain_token1] = ACTIONS(1376), + [aux_sym_use_roaming_token1] = ACTIONS(1376), + [aux_sym_user_token1] = ACTIONS(1378), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1376), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1376), + [aux_sym_visual_host_key_token1] = ACTIONS(1376), + [aux_sym_xauth_location_token1] = ACTIONS(1376), }, [140] = { - [ts_builtin_sym_end] = ACTIONS(1377), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1379), - [anon_sym_DQUOTE] = ACTIONS(1381), - [aux_sym_match_token1] = ACTIONS(1377), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1377), - [aux_sym_address_family_token1] = ACTIONS(1377), - [aux_sym_batch_mode_token1] = ACTIONS(1377), - [aux_sym_bind_address_token1] = ACTIONS(1377), - [aux_sym_bind_interface_token1] = ACTIONS(1377), - [aux_sym_canonical_domains_token1] = ACTIONS(1377), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1377), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1377), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1377), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1377), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1377), - [aux_sym_certificate_file_token1] = ACTIONS(1377), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1377), - [aux_sym_check_host_ip_token1] = ACTIONS(1377), - [aux_sym_ciphers_token1] = ACTIONS(1377), - [aux_sym_cipher_token1] = ACTIONS(1379), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1377), - [aux_sym_compression_token1] = ACTIONS(1377), - [aux_sym_connection_attempts_token1] = ACTIONS(1377), - [aux_sym_connect_timeout_token1] = ACTIONS(1377), - [aux_sym_control_master_token1] = ACTIONS(1377), - [aux_sym_control_path_token1] = ACTIONS(1377), - [aux_sym_control_persist_token1] = ACTIONS(1377), - [aux_sym_dynamic_forward_token1] = ACTIONS(1377), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1377), - [aux_sym_escape_char_token1] = ACTIONS(1377), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1377), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1377), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1377), - [aux_sym_forward_agent_token1] = ACTIONS(1377), - [aux_sym_forward_x11_token1] = ACTIONS(1379), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1377), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1377), - [aux_sym_gateway_ports_token1] = ACTIONS(1377), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1377), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1377), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1377), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1377), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1377), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1377), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1377), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1377), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1377), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1377), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1377), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1377), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1377), - [aux_sym_host_key_alias_token1] = ACTIONS(1377), - [aux_sym_hostname_token1] = ACTIONS(1377), - [aux_sym_identities_only_token1] = ACTIONS(1377), - [aux_sym_identity_agent_token1] = ACTIONS(1377), - [aux_sym_identity_file_token1] = ACTIONS(1377), - [aux_sym_ignore_unknown_token1] = ACTIONS(1377), - [aux_sym_include_token1] = ACTIONS(1377), - [aux_sym_ip_qos_token1] = ACTIONS(1377), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1377), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1377), - [aux_sym_kex_algorithms_token1] = ACTIONS(1377), - [aux_sym_known_hosts_command_token1] = ACTIONS(1377), - [aux_sym_local_command_token1] = ACTIONS(1377), - [aux_sym_local_forward_token1] = ACTIONS(1377), - [aux_sym_log_level_token1] = ACTIONS(1377), - [aux_sym_log_verbose_token1] = ACTIONS(1377), - [aux_sym_macs_token1] = ACTIONS(1377), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1377), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1377), - [aux_sym_password_authentication_token1] = ACTIONS(1377), - [aux_sym_permit_local_command_token1] = ACTIONS(1377), - [aux_sym_permit_remote_open_token1] = ACTIONS(1377), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1377), - [aux_sym_port_token1] = ACTIONS(1377), - [aux_sym_preferred_authentications_token1] = ACTIONS(1377), - [aux_sym_protocol_token1] = ACTIONS(1377), - [aux_sym_proxy_command_token1] = ACTIONS(1377), - [aux_sym_proxy_jump_token1] = ACTIONS(1377), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1377), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1377), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1377), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1377), - [aux_sym_rekey_limit_token1] = ACTIONS(1377), - [aux_sym_remote_command_token1] = ACTIONS(1377), - [aux_sym_remote_forward_token1] = ACTIONS(1377), - [aux_sym_request_tty_token1] = ACTIONS(1377), - [aux_sym_required_rsa_size_token1] = ACTIONS(1377), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1377), - [aux_sym_security_key_provider_token1] = ACTIONS(1377), - [aux_sym_send_env_token1] = ACTIONS(1377), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1377), - [aux_sym_server_alive_interval_token1] = ACTIONS(1377), - [aux_sym_session_type_token1] = ACTIONS(1377), - [aux_sym_set_env_token1] = ACTIONS(1377), - [aux_sym_stdin_null_token1] = ACTIONS(1377), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1377), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1377), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1377), - [aux_sym_syslog_facility_token1] = ACTIONS(1377), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1377), - [aux_sym_keep_alive_token1] = ACTIONS(1377), - [aux_sym_tunnel_token1] = ACTIONS(1379), - [aux_sym_tunnel_device_token1] = ACTIONS(1377), - [aux_sym_update_host_keys_token1] = ACTIONS(1377), - [aux_sym_use_keychain_token1] = ACTIONS(1377), - [aux_sym_use_roaming_token1] = ACTIONS(1377), - [aux_sym_user_token1] = ACTIONS(1379), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1377), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1377), - [aux_sym_visual_host_key_token1] = ACTIONS(1377), - [aux_sym_xauth_location_token1] = ACTIONS(1377), + [ts_builtin_sym_end] = ACTIONS(1382), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1386), + [aux_sym_match_token1] = ACTIONS(1382), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1382), + [aux_sym_address_family_token1] = ACTIONS(1382), + [aux_sym_batch_mode_token1] = ACTIONS(1382), + [aux_sym_bind_address_token1] = ACTIONS(1382), + [aux_sym_bind_interface_token1] = ACTIONS(1382), + [aux_sym_canonical_domains_token1] = ACTIONS(1382), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1382), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1382), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1382), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1382), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1382), + [aux_sym_certificate_file_token1] = ACTIONS(1382), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1382), + [aux_sym_check_host_ip_token1] = ACTIONS(1382), + [aux_sym_ciphers_token1] = ACTIONS(1382), + [aux_sym_cipher_token1] = ACTIONS(1384), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1382), + [aux_sym_compression_token1] = ACTIONS(1382), + [aux_sym_connection_attempts_token1] = ACTIONS(1382), + [aux_sym_connect_timeout_token1] = ACTIONS(1382), + [aux_sym_control_master_token1] = ACTIONS(1382), + [aux_sym_control_path_token1] = ACTIONS(1382), + [aux_sym_control_persist_token1] = ACTIONS(1382), + [aux_sym_dynamic_forward_token1] = ACTIONS(1382), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1382), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1382), + [aux_sym_escape_char_token1] = ACTIONS(1382), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1382), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1382), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1382), + [aux_sym_forward_agent_token1] = ACTIONS(1382), + [aux_sym_forward_x11_token1] = ACTIONS(1384), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1382), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1382), + [aux_sym_gateway_ports_token1] = ACTIONS(1382), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1382), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1382), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1382), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1382), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1382), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1382), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1382), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1382), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1382), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1382), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1382), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1382), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1382), + [aux_sym_host_key_alias_token1] = ACTIONS(1382), + [aux_sym_hostname_token1] = ACTIONS(1382), + [aux_sym_identities_only_token1] = ACTIONS(1382), + [aux_sym_identity_agent_token1] = ACTIONS(1382), + [aux_sym_identity_file_token1] = ACTIONS(1382), + [aux_sym_ignore_unknown_token1] = ACTIONS(1382), + [aux_sym_include_token1] = ACTIONS(1382), + [aux_sym_ip_qos_token1] = ACTIONS(1382), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1382), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1382), + [aux_sym_kex_algorithms_token1] = ACTIONS(1382), + [aux_sym_known_hosts_command_token1] = ACTIONS(1382), + [aux_sym_local_command_token1] = ACTIONS(1382), + [aux_sym_local_forward_token1] = ACTIONS(1382), + [aux_sym_log_level_token1] = ACTIONS(1382), + [aux_sym_log_verbose_token1] = ACTIONS(1382), + [aux_sym_macs_token1] = ACTIONS(1382), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1382), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1382), + [aux_sym_password_authentication_token1] = ACTIONS(1382), + [aux_sym_permit_local_command_token1] = ACTIONS(1382), + [aux_sym_permit_remote_open_token1] = ACTIONS(1382), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1382), + [aux_sym_port_token1] = ACTIONS(1382), + [aux_sym_preferred_authentications_token1] = ACTIONS(1382), + [aux_sym_protocol_token1] = ACTIONS(1382), + [aux_sym_proxy_command_token1] = ACTIONS(1382), + [aux_sym_proxy_jump_token1] = ACTIONS(1382), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1382), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1382), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1382), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1382), + [aux_sym_rekey_limit_token1] = ACTIONS(1382), + [aux_sym_remote_command_token1] = ACTIONS(1382), + [aux_sym_remote_forward_token1] = ACTIONS(1382), + [aux_sym_request_tty_token1] = ACTIONS(1382), + [aux_sym_required_rsa_size_token1] = ACTIONS(1382), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1382), + [aux_sym_security_key_provider_token1] = ACTIONS(1382), + [aux_sym_send_env_token1] = ACTIONS(1382), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1382), + [aux_sym_server_alive_interval_token1] = ACTIONS(1382), + [aux_sym_session_type_token1] = ACTIONS(1382), + [aux_sym_set_env_token1] = ACTIONS(1382), + [aux_sym_stdin_null_token1] = ACTIONS(1382), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1382), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1382), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1382), + [aux_sym_syslog_facility_token1] = ACTIONS(1382), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1382), + [aux_sym_keep_alive_token1] = ACTIONS(1382), + [aux_sym_tunnel_token1] = ACTIONS(1384), + [aux_sym_tunnel_device_token1] = ACTIONS(1382), + [aux_sym_update_host_keys_token1] = ACTIONS(1382), + [aux_sym_use_keychain_token1] = ACTIONS(1382), + [aux_sym_use_roaming_token1] = ACTIONS(1382), + [aux_sym_user_token1] = ACTIONS(1384), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1382), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1382), + [aux_sym_visual_host_key_token1] = ACTIONS(1382), + [aux_sym_xauth_location_token1] = ACTIONS(1382), }, [141] = { - [ts_builtin_sym_end] = ACTIONS(1383), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1387), - [aux_sym_match_token1] = ACTIONS(1383), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1383), - [aux_sym_address_family_token1] = ACTIONS(1383), - [aux_sym_batch_mode_token1] = ACTIONS(1383), - [aux_sym_bind_address_token1] = ACTIONS(1383), - [aux_sym_bind_interface_token1] = ACTIONS(1383), - [aux_sym_canonical_domains_token1] = ACTIONS(1383), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1383), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1383), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1383), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1383), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1383), - [aux_sym_certificate_file_token1] = ACTIONS(1383), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1383), - [aux_sym_check_host_ip_token1] = ACTIONS(1383), - [aux_sym_ciphers_token1] = ACTIONS(1383), - [aux_sym_cipher_token1] = ACTIONS(1385), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1383), - [aux_sym_compression_token1] = ACTIONS(1383), - [aux_sym_connection_attempts_token1] = ACTIONS(1383), - [aux_sym_connect_timeout_token1] = ACTIONS(1383), - [aux_sym_control_master_token1] = ACTIONS(1383), - [aux_sym_control_path_token1] = ACTIONS(1383), - [aux_sym_control_persist_token1] = ACTIONS(1383), - [aux_sym_dynamic_forward_token1] = ACTIONS(1383), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1383), - [aux_sym_escape_char_token1] = ACTIONS(1383), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1383), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1383), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1383), - [aux_sym_forward_agent_token1] = ACTIONS(1383), - [aux_sym_forward_x11_token1] = ACTIONS(1385), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1383), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1383), - [aux_sym_gateway_ports_token1] = ACTIONS(1383), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1383), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1383), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1383), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1383), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1383), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1383), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1383), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1383), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1383), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1383), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1383), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1383), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1383), - [aux_sym_host_key_alias_token1] = ACTIONS(1383), - [aux_sym_hostname_token1] = ACTIONS(1383), - [aux_sym_identities_only_token1] = ACTIONS(1383), - [aux_sym_identity_agent_token1] = ACTIONS(1383), - [aux_sym_identity_file_token1] = ACTIONS(1383), - [aux_sym_ignore_unknown_token1] = ACTIONS(1383), - [aux_sym_include_token1] = ACTIONS(1383), - [aux_sym_ip_qos_token1] = ACTIONS(1383), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1383), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1383), - [aux_sym_kex_algorithms_token1] = ACTIONS(1383), - [aux_sym_known_hosts_command_token1] = ACTIONS(1383), - [aux_sym_local_command_token1] = ACTIONS(1383), - [aux_sym_local_forward_token1] = ACTIONS(1383), - [aux_sym_log_level_token1] = ACTIONS(1383), - [aux_sym_log_verbose_token1] = ACTIONS(1383), - [aux_sym_macs_token1] = ACTIONS(1383), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1383), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1383), - [aux_sym_password_authentication_token1] = ACTIONS(1383), - [aux_sym_permit_local_command_token1] = ACTIONS(1383), - [aux_sym_permit_remote_open_token1] = ACTIONS(1383), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1383), - [aux_sym_port_token1] = ACTIONS(1383), - [aux_sym_preferred_authentications_token1] = ACTIONS(1383), - [aux_sym_protocol_token1] = ACTIONS(1383), - [aux_sym_proxy_command_token1] = ACTIONS(1383), - [aux_sym_proxy_jump_token1] = ACTIONS(1383), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1383), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1383), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1383), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1383), - [aux_sym_rekey_limit_token1] = ACTIONS(1383), - [aux_sym_remote_command_token1] = ACTIONS(1383), - [aux_sym_remote_forward_token1] = ACTIONS(1383), - [aux_sym_request_tty_token1] = ACTIONS(1383), - [aux_sym_required_rsa_size_token1] = ACTIONS(1383), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1383), - [aux_sym_security_key_provider_token1] = ACTIONS(1383), - [aux_sym_send_env_token1] = ACTIONS(1383), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1383), - [aux_sym_server_alive_interval_token1] = ACTIONS(1383), - [aux_sym_session_type_token1] = ACTIONS(1383), - [aux_sym_set_env_token1] = ACTIONS(1383), - [aux_sym_stdin_null_token1] = ACTIONS(1383), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1383), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1383), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1383), - [aux_sym_syslog_facility_token1] = ACTIONS(1383), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1383), - [aux_sym_keep_alive_token1] = ACTIONS(1383), - [aux_sym_tunnel_token1] = ACTIONS(1385), - [aux_sym_tunnel_device_token1] = ACTIONS(1383), - [aux_sym_update_host_keys_token1] = ACTIONS(1383), - [aux_sym_use_keychain_token1] = ACTIONS(1383), - [aux_sym_use_roaming_token1] = ACTIONS(1383), - [aux_sym_user_token1] = ACTIONS(1385), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1383), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1383), - [aux_sym_visual_host_key_token1] = ACTIONS(1383), - [aux_sym_xauth_location_token1] = ACTIONS(1383), + [ts_builtin_sym_end] = ACTIONS(1388), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(1392), + [aux_sym_match_token1] = ACTIONS(1388), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1388), + [aux_sym_address_family_token1] = ACTIONS(1388), + [aux_sym_batch_mode_token1] = ACTIONS(1388), + [aux_sym_bind_address_token1] = ACTIONS(1388), + [aux_sym_bind_interface_token1] = ACTIONS(1388), + [aux_sym_canonical_domains_token1] = ACTIONS(1388), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1388), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1388), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1388), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1388), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1388), + [aux_sym_certificate_file_token1] = ACTIONS(1388), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1388), + [aux_sym_check_host_ip_token1] = ACTIONS(1388), + [aux_sym_ciphers_token1] = ACTIONS(1388), + [aux_sym_cipher_token1] = ACTIONS(1390), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1388), + [aux_sym_compression_token1] = ACTIONS(1388), + [aux_sym_connection_attempts_token1] = ACTIONS(1388), + [aux_sym_connect_timeout_token1] = ACTIONS(1388), + [aux_sym_control_master_token1] = ACTIONS(1388), + [aux_sym_control_path_token1] = ACTIONS(1388), + [aux_sym_control_persist_token1] = ACTIONS(1388), + [aux_sym_dynamic_forward_token1] = ACTIONS(1388), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1388), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1388), + [aux_sym_escape_char_token1] = ACTIONS(1388), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1388), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1388), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1388), + [aux_sym_forward_agent_token1] = ACTIONS(1388), + [aux_sym_forward_x11_token1] = ACTIONS(1390), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1388), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1388), + [aux_sym_gateway_ports_token1] = ACTIONS(1388), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1388), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1388), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1388), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1388), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1388), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1388), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1388), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1388), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1388), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1388), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1388), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1388), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1388), + [aux_sym_host_key_alias_token1] = ACTIONS(1388), + [aux_sym_hostname_token1] = ACTIONS(1388), + [aux_sym_identities_only_token1] = ACTIONS(1388), + [aux_sym_identity_agent_token1] = ACTIONS(1388), + [aux_sym_identity_file_token1] = ACTIONS(1388), + [aux_sym_ignore_unknown_token1] = ACTIONS(1388), + [aux_sym_include_token1] = ACTIONS(1388), + [aux_sym_ip_qos_token1] = ACTIONS(1388), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1388), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1388), + [aux_sym_kex_algorithms_token1] = ACTIONS(1388), + [aux_sym_known_hosts_command_token1] = ACTIONS(1388), + [aux_sym_local_command_token1] = ACTIONS(1388), + [aux_sym_local_forward_token1] = ACTIONS(1388), + [aux_sym_log_level_token1] = ACTIONS(1388), + [aux_sym_log_verbose_token1] = ACTIONS(1388), + [aux_sym_macs_token1] = ACTIONS(1388), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1388), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1388), + [aux_sym_password_authentication_token1] = ACTIONS(1388), + [aux_sym_permit_local_command_token1] = ACTIONS(1388), + [aux_sym_permit_remote_open_token1] = ACTIONS(1388), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1388), + [aux_sym_port_token1] = ACTIONS(1388), + [aux_sym_preferred_authentications_token1] = ACTIONS(1388), + [aux_sym_protocol_token1] = ACTIONS(1388), + [aux_sym_proxy_command_token1] = ACTIONS(1388), + [aux_sym_proxy_jump_token1] = ACTIONS(1388), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1388), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1388), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1388), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1388), + [aux_sym_rekey_limit_token1] = ACTIONS(1388), + [aux_sym_remote_command_token1] = ACTIONS(1388), + [aux_sym_remote_forward_token1] = ACTIONS(1388), + [aux_sym_request_tty_token1] = ACTIONS(1388), + [aux_sym_required_rsa_size_token1] = ACTIONS(1388), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1388), + [aux_sym_security_key_provider_token1] = ACTIONS(1388), + [aux_sym_send_env_token1] = ACTIONS(1388), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1388), + [aux_sym_server_alive_interval_token1] = ACTIONS(1388), + [aux_sym_session_type_token1] = ACTIONS(1388), + [aux_sym_set_env_token1] = ACTIONS(1388), + [aux_sym_stdin_null_token1] = ACTIONS(1388), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1388), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1388), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1388), + [aux_sym_syslog_facility_token1] = ACTIONS(1388), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1388), + [aux_sym_keep_alive_token1] = ACTIONS(1388), + [aux_sym_tunnel_token1] = ACTIONS(1390), + [aux_sym_tunnel_device_token1] = ACTIONS(1388), + [aux_sym_update_host_keys_token1] = ACTIONS(1388), + [aux_sym_use_keychain_token1] = ACTIONS(1388), + [aux_sym_use_roaming_token1] = ACTIONS(1388), + [aux_sym_user_token1] = ACTIONS(1390), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1388), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1388), + [aux_sym_visual_host_key_token1] = ACTIONS(1388), + [aux_sym_xauth_location_token1] = ACTIONS(1388), }, [142] = { - [ts_builtin_sym_end] = ACTIONS(1389), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1391), - [anon_sym_DQUOTE] = ACTIONS(1393), - [aux_sym_match_token1] = ACTIONS(1389), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1389), - [aux_sym_address_family_token1] = ACTIONS(1389), - [aux_sym_batch_mode_token1] = ACTIONS(1389), - [aux_sym_bind_address_token1] = ACTIONS(1389), - [aux_sym_bind_interface_token1] = ACTIONS(1389), - [aux_sym_canonical_domains_token1] = ACTIONS(1389), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1389), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1389), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1389), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1389), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1389), - [aux_sym_certificate_file_token1] = ACTIONS(1389), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1389), - [aux_sym_check_host_ip_token1] = ACTIONS(1389), - [aux_sym_ciphers_token1] = ACTIONS(1389), - [aux_sym_cipher_token1] = ACTIONS(1391), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1389), - [aux_sym_compression_token1] = ACTIONS(1389), - [aux_sym_connection_attempts_token1] = ACTIONS(1389), - [aux_sym_connect_timeout_token1] = ACTIONS(1389), - [aux_sym_control_master_token1] = ACTIONS(1389), - [aux_sym_control_path_token1] = ACTIONS(1389), - [aux_sym_control_persist_token1] = ACTIONS(1389), - [aux_sym_dynamic_forward_token1] = ACTIONS(1389), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1389), - [aux_sym_escape_char_token1] = ACTIONS(1389), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1389), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1389), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1389), - [aux_sym_forward_agent_token1] = ACTIONS(1389), - [aux_sym_forward_x11_token1] = ACTIONS(1391), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1389), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1389), - [aux_sym_gateway_ports_token1] = ACTIONS(1389), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1389), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1389), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1389), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1389), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1389), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1389), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1389), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1389), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1389), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1389), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1389), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1389), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1389), - [aux_sym_host_key_alias_token1] = ACTIONS(1389), - [aux_sym_hostname_token1] = ACTIONS(1389), - [aux_sym_identities_only_token1] = ACTIONS(1389), - [aux_sym_identity_agent_token1] = ACTIONS(1389), - [aux_sym_identity_file_token1] = ACTIONS(1389), - [aux_sym_ignore_unknown_token1] = ACTIONS(1389), - [aux_sym_include_token1] = ACTIONS(1389), - [aux_sym_ip_qos_token1] = ACTIONS(1389), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1389), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1389), - [aux_sym_kex_algorithms_token1] = ACTIONS(1389), - [aux_sym_known_hosts_command_token1] = ACTIONS(1389), - [aux_sym_local_command_token1] = ACTIONS(1389), - [aux_sym_local_forward_token1] = ACTIONS(1389), - [aux_sym_log_level_token1] = ACTIONS(1389), - [aux_sym_log_verbose_token1] = ACTIONS(1389), - [aux_sym_macs_token1] = ACTIONS(1389), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1389), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1389), - [aux_sym_password_authentication_token1] = ACTIONS(1389), - [aux_sym_permit_local_command_token1] = ACTIONS(1389), - [aux_sym_permit_remote_open_token1] = ACTIONS(1389), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1389), - [aux_sym_port_token1] = ACTIONS(1389), - [aux_sym_preferred_authentications_token1] = ACTIONS(1389), - [aux_sym_protocol_token1] = ACTIONS(1389), - [aux_sym_proxy_command_token1] = ACTIONS(1389), - [aux_sym_proxy_jump_token1] = ACTIONS(1389), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1389), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1389), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1389), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1389), - [aux_sym_rekey_limit_token1] = ACTIONS(1389), - [aux_sym_remote_command_token1] = ACTIONS(1389), - [aux_sym_remote_forward_token1] = ACTIONS(1389), - [aux_sym_request_tty_token1] = ACTIONS(1389), - [aux_sym_required_rsa_size_token1] = ACTIONS(1389), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1389), - [aux_sym_security_key_provider_token1] = ACTIONS(1389), - [aux_sym_send_env_token1] = ACTIONS(1389), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1389), - [aux_sym_server_alive_interval_token1] = ACTIONS(1389), - [aux_sym_session_type_token1] = ACTIONS(1389), - [aux_sym_set_env_token1] = ACTIONS(1389), - [aux_sym_stdin_null_token1] = ACTIONS(1389), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1389), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1389), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1389), - [aux_sym_syslog_facility_token1] = ACTIONS(1389), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1389), - [aux_sym_keep_alive_token1] = ACTIONS(1389), - [aux_sym_tunnel_token1] = ACTIONS(1391), - [aux_sym_tunnel_device_token1] = ACTIONS(1389), - [aux_sym_update_host_keys_token1] = ACTIONS(1389), - [aux_sym_use_keychain_token1] = ACTIONS(1389), - [aux_sym_use_roaming_token1] = ACTIONS(1389), - [aux_sym_user_token1] = ACTIONS(1391), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1389), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1389), - [aux_sym_visual_host_key_token1] = ACTIONS(1389), - [aux_sym_xauth_location_token1] = ACTIONS(1389), + [ts_builtin_sym_end] = ACTIONS(1394), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1398), + [aux_sym_match_token1] = ACTIONS(1394), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1394), + [aux_sym_address_family_token1] = ACTIONS(1394), + [aux_sym_batch_mode_token1] = ACTIONS(1394), + [aux_sym_bind_address_token1] = ACTIONS(1394), + [aux_sym_bind_interface_token1] = ACTIONS(1394), + [aux_sym_canonical_domains_token1] = ACTIONS(1394), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1394), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1394), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1394), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1394), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1394), + [aux_sym_certificate_file_token1] = ACTIONS(1394), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1394), + [aux_sym_check_host_ip_token1] = ACTIONS(1394), + [aux_sym_ciphers_token1] = ACTIONS(1394), + [aux_sym_cipher_token1] = ACTIONS(1396), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1394), + [aux_sym_compression_token1] = ACTIONS(1394), + [aux_sym_connection_attempts_token1] = ACTIONS(1394), + [aux_sym_connect_timeout_token1] = ACTIONS(1394), + [aux_sym_control_master_token1] = ACTIONS(1394), + [aux_sym_control_path_token1] = ACTIONS(1394), + [aux_sym_control_persist_token1] = ACTIONS(1394), + [aux_sym_dynamic_forward_token1] = ACTIONS(1394), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1394), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1394), + [aux_sym_escape_char_token1] = ACTIONS(1394), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1394), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1394), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1394), + [aux_sym_forward_agent_token1] = ACTIONS(1394), + [aux_sym_forward_x11_token1] = ACTIONS(1396), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1394), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1394), + [aux_sym_gateway_ports_token1] = ACTIONS(1394), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1394), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1394), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1394), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1394), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1394), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1394), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1394), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1394), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1394), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1394), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1394), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1394), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1394), + [aux_sym_host_key_alias_token1] = ACTIONS(1394), + [aux_sym_hostname_token1] = ACTIONS(1394), + [aux_sym_identities_only_token1] = ACTIONS(1394), + [aux_sym_identity_agent_token1] = ACTIONS(1394), + [aux_sym_identity_file_token1] = ACTIONS(1394), + [aux_sym_ignore_unknown_token1] = ACTIONS(1394), + [aux_sym_include_token1] = ACTIONS(1394), + [aux_sym_ip_qos_token1] = ACTIONS(1394), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1394), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1394), + [aux_sym_kex_algorithms_token1] = ACTIONS(1394), + [aux_sym_known_hosts_command_token1] = ACTIONS(1394), + [aux_sym_local_command_token1] = ACTIONS(1394), + [aux_sym_local_forward_token1] = ACTIONS(1394), + [aux_sym_log_level_token1] = ACTIONS(1394), + [aux_sym_log_verbose_token1] = ACTIONS(1394), + [aux_sym_macs_token1] = ACTIONS(1394), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1394), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1394), + [aux_sym_password_authentication_token1] = ACTIONS(1394), + [aux_sym_permit_local_command_token1] = ACTIONS(1394), + [aux_sym_permit_remote_open_token1] = ACTIONS(1394), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1394), + [aux_sym_port_token1] = ACTIONS(1394), + [aux_sym_preferred_authentications_token1] = ACTIONS(1394), + [aux_sym_protocol_token1] = ACTIONS(1394), + [aux_sym_proxy_command_token1] = ACTIONS(1394), + [aux_sym_proxy_jump_token1] = ACTIONS(1394), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1394), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1394), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1394), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1394), + [aux_sym_rekey_limit_token1] = ACTIONS(1394), + [aux_sym_remote_command_token1] = ACTIONS(1394), + [aux_sym_remote_forward_token1] = ACTIONS(1394), + [aux_sym_request_tty_token1] = ACTIONS(1394), + [aux_sym_required_rsa_size_token1] = ACTIONS(1394), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1394), + [aux_sym_security_key_provider_token1] = ACTIONS(1394), + [aux_sym_send_env_token1] = ACTIONS(1394), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1394), + [aux_sym_server_alive_interval_token1] = ACTIONS(1394), + [aux_sym_session_type_token1] = ACTIONS(1394), + [aux_sym_set_env_token1] = ACTIONS(1394), + [aux_sym_stdin_null_token1] = ACTIONS(1394), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1394), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1394), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1394), + [aux_sym_syslog_facility_token1] = ACTIONS(1394), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1394), + [aux_sym_keep_alive_token1] = ACTIONS(1394), + [aux_sym_tunnel_token1] = ACTIONS(1396), + [aux_sym_tunnel_device_token1] = ACTIONS(1394), + [aux_sym_update_host_keys_token1] = ACTIONS(1394), + [aux_sym_use_keychain_token1] = ACTIONS(1394), + [aux_sym_use_roaming_token1] = ACTIONS(1394), + [aux_sym_user_token1] = ACTIONS(1396), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1394), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1394), + [aux_sym_visual_host_key_token1] = ACTIONS(1394), + [aux_sym_xauth_location_token1] = ACTIONS(1394), }, [143] = { - [ts_builtin_sym_end] = ACTIONS(1395), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1397), - [anon_sym_DQUOTE] = ACTIONS(1399), - [aux_sym_match_token1] = ACTIONS(1395), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1395), - [aux_sym_address_family_token1] = ACTIONS(1395), - [aux_sym_batch_mode_token1] = ACTIONS(1395), - [aux_sym_bind_address_token1] = ACTIONS(1395), - [aux_sym_bind_interface_token1] = ACTIONS(1395), - [aux_sym_canonical_domains_token1] = ACTIONS(1395), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1395), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1395), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1395), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1395), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1395), - [aux_sym_certificate_file_token1] = ACTIONS(1395), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1395), - [aux_sym_check_host_ip_token1] = ACTIONS(1395), - [aux_sym_ciphers_token1] = ACTIONS(1395), - [aux_sym_cipher_token1] = ACTIONS(1397), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1395), - [aux_sym_compression_token1] = ACTIONS(1395), - [aux_sym_connection_attempts_token1] = ACTIONS(1395), - [aux_sym_connect_timeout_token1] = ACTIONS(1395), - [aux_sym_control_master_token1] = ACTIONS(1395), - [aux_sym_control_path_token1] = ACTIONS(1395), - [aux_sym_control_persist_token1] = ACTIONS(1395), - [aux_sym_dynamic_forward_token1] = ACTIONS(1395), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1395), - [aux_sym_escape_char_token1] = ACTIONS(1395), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1395), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1395), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1395), - [aux_sym_forward_agent_token1] = ACTIONS(1395), - [aux_sym_forward_x11_token1] = ACTIONS(1397), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1395), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1395), - [aux_sym_gateway_ports_token1] = ACTIONS(1395), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1395), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1395), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1395), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1395), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1395), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1395), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1395), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1395), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1395), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1395), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1395), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1395), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1395), - [aux_sym_host_key_alias_token1] = ACTIONS(1395), - [aux_sym_hostname_token1] = ACTIONS(1395), - [aux_sym_identities_only_token1] = ACTIONS(1395), - [aux_sym_identity_agent_token1] = ACTIONS(1395), - [aux_sym_identity_file_token1] = ACTIONS(1395), - [aux_sym_ignore_unknown_token1] = ACTIONS(1395), - [aux_sym_include_token1] = ACTIONS(1395), - [aux_sym_ip_qos_token1] = ACTIONS(1395), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1395), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1395), - [aux_sym_kex_algorithms_token1] = ACTIONS(1395), - [aux_sym_known_hosts_command_token1] = ACTIONS(1395), - [aux_sym_local_command_token1] = ACTIONS(1395), - [aux_sym_local_forward_token1] = ACTIONS(1395), - [aux_sym_log_level_token1] = ACTIONS(1395), - [aux_sym_log_verbose_token1] = ACTIONS(1395), - [aux_sym_macs_token1] = ACTIONS(1395), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1395), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1395), - [aux_sym_password_authentication_token1] = ACTIONS(1395), - [aux_sym_permit_local_command_token1] = ACTIONS(1395), - [aux_sym_permit_remote_open_token1] = ACTIONS(1395), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1395), - [aux_sym_port_token1] = ACTIONS(1395), - [aux_sym_preferred_authentications_token1] = ACTIONS(1395), - [aux_sym_protocol_token1] = ACTIONS(1395), - [aux_sym_proxy_command_token1] = ACTIONS(1395), - [aux_sym_proxy_jump_token1] = ACTIONS(1395), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1395), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1395), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1395), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1395), - [aux_sym_rekey_limit_token1] = ACTIONS(1395), - [aux_sym_remote_command_token1] = ACTIONS(1395), - [aux_sym_remote_forward_token1] = ACTIONS(1395), - [aux_sym_request_tty_token1] = ACTIONS(1395), - [aux_sym_required_rsa_size_token1] = ACTIONS(1395), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1395), - [aux_sym_security_key_provider_token1] = ACTIONS(1395), - [aux_sym_send_env_token1] = ACTIONS(1395), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1395), - [aux_sym_server_alive_interval_token1] = ACTIONS(1395), - [aux_sym_session_type_token1] = ACTIONS(1395), - [aux_sym_set_env_token1] = ACTIONS(1395), - [aux_sym_stdin_null_token1] = ACTIONS(1395), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1395), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1395), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1395), - [aux_sym_syslog_facility_token1] = ACTIONS(1395), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1395), - [aux_sym_keep_alive_token1] = ACTIONS(1395), - [aux_sym_tunnel_token1] = ACTIONS(1397), - [aux_sym_tunnel_device_token1] = ACTIONS(1395), - [aux_sym_update_host_keys_token1] = ACTIONS(1395), - [aux_sym_use_keychain_token1] = ACTIONS(1395), - [aux_sym_use_roaming_token1] = ACTIONS(1395), - [aux_sym_user_token1] = ACTIONS(1397), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1395), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1395), - [aux_sym_visual_host_key_token1] = ACTIONS(1395), - [aux_sym_xauth_location_token1] = ACTIONS(1395), + [ts_builtin_sym_end] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1402), + [anon_sym_DQUOTE] = ACTIONS(1404), + [aux_sym_match_token1] = ACTIONS(1400), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1400), + [aux_sym_address_family_token1] = ACTIONS(1400), + [aux_sym_batch_mode_token1] = ACTIONS(1400), + [aux_sym_bind_address_token1] = ACTIONS(1400), + [aux_sym_bind_interface_token1] = ACTIONS(1400), + [aux_sym_canonical_domains_token1] = ACTIONS(1400), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1400), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1400), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1400), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1400), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1400), + [aux_sym_certificate_file_token1] = ACTIONS(1400), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1400), + [aux_sym_check_host_ip_token1] = ACTIONS(1400), + [aux_sym_ciphers_token1] = ACTIONS(1400), + [aux_sym_cipher_token1] = ACTIONS(1402), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1400), + [aux_sym_compression_token1] = ACTIONS(1400), + [aux_sym_connection_attempts_token1] = ACTIONS(1400), + [aux_sym_connect_timeout_token1] = ACTIONS(1400), + [aux_sym_control_master_token1] = ACTIONS(1400), + [aux_sym_control_path_token1] = ACTIONS(1400), + [aux_sym_control_persist_token1] = ACTIONS(1400), + [aux_sym_dynamic_forward_token1] = ACTIONS(1400), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1400), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1400), + [aux_sym_escape_char_token1] = ACTIONS(1400), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1400), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1400), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1400), + [aux_sym_forward_agent_token1] = ACTIONS(1400), + [aux_sym_forward_x11_token1] = ACTIONS(1402), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1400), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1400), + [aux_sym_gateway_ports_token1] = ACTIONS(1400), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1400), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1400), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1400), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1400), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1400), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1400), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1400), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1400), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1400), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1400), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1400), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1400), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1400), + [aux_sym_host_key_alias_token1] = ACTIONS(1400), + [aux_sym_hostname_token1] = ACTIONS(1400), + [aux_sym_identities_only_token1] = ACTIONS(1400), + [aux_sym_identity_agent_token1] = ACTIONS(1400), + [aux_sym_identity_file_token1] = ACTIONS(1400), + [aux_sym_ignore_unknown_token1] = ACTIONS(1400), + [aux_sym_include_token1] = ACTIONS(1400), + [aux_sym_ip_qos_token1] = ACTIONS(1400), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1400), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1400), + [aux_sym_kex_algorithms_token1] = ACTIONS(1400), + [aux_sym_known_hosts_command_token1] = ACTIONS(1400), + [aux_sym_local_command_token1] = ACTIONS(1400), + [aux_sym_local_forward_token1] = ACTIONS(1400), + [aux_sym_log_level_token1] = ACTIONS(1400), + [aux_sym_log_verbose_token1] = ACTIONS(1400), + [aux_sym_macs_token1] = ACTIONS(1400), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1400), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1400), + [aux_sym_password_authentication_token1] = ACTIONS(1400), + [aux_sym_permit_local_command_token1] = ACTIONS(1400), + [aux_sym_permit_remote_open_token1] = ACTIONS(1400), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1400), + [aux_sym_port_token1] = ACTIONS(1400), + [aux_sym_preferred_authentications_token1] = ACTIONS(1400), + [aux_sym_protocol_token1] = ACTIONS(1400), + [aux_sym_proxy_command_token1] = ACTIONS(1400), + [aux_sym_proxy_jump_token1] = ACTIONS(1400), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1400), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1400), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1400), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1400), + [aux_sym_rekey_limit_token1] = ACTIONS(1400), + [aux_sym_remote_command_token1] = ACTIONS(1400), + [aux_sym_remote_forward_token1] = ACTIONS(1400), + [aux_sym_request_tty_token1] = ACTIONS(1400), + [aux_sym_required_rsa_size_token1] = ACTIONS(1400), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1400), + [aux_sym_security_key_provider_token1] = ACTIONS(1400), + [aux_sym_send_env_token1] = ACTIONS(1400), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1400), + [aux_sym_server_alive_interval_token1] = ACTIONS(1400), + [aux_sym_session_type_token1] = ACTIONS(1400), + [aux_sym_set_env_token1] = ACTIONS(1400), + [aux_sym_stdin_null_token1] = ACTIONS(1400), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1400), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1400), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1400), + [aux_sym_syslog_facility_token1] = ACTIONS(1400), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1400), + [aux_sym_keep_alive_token1] = ACTIONS(1400), + [aux_sym_tunnel_token1] = ACTIONS(1402), + [aux_sym_tunnel_device_token1] = ACTIONS(1400), + [aux_sym_update_host_keys_token1] = ACTIONS(1400), + [aux_sym_use_keychain_token1] = ACTIONS(1400), + [aux_sym_use_roaming_token1] = ACTIONS(1400), + [aux_sym_user_token1] = ACTIONS(1402), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1400), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1400), + [aux_sym_visual_host_key_token1] = ACTIONS(1400), + [aux_sym_xauth_location_token1] = ACTIONS(1400), }, [144] = { - [ts_builtin_sym_end] = ACTIONS(1401), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1405), - [aux_sym_match_token1] = ACTIONS(1401), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1401), - [aux_sym_address_family_token1] = ACTIONS(1401), - [aux_sym_batch_mode_token1] = ACTIONS(1401), - [aux_sym_bind_address_token1] = ACTIONS(1401), - [aux_sym_bind_interface_token1] = ACTIONS(1401), - [aux_sym_canonical_domains_token1] = ACTIONS(1401), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1401), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1401), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1401), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1401), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1401), - [aux_sym_certificate_file_token1] = ACTIONS(1401), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1401), - [aux_sym_check_host_ip_token1] = ACTIONS(1401), - [aux_sym_ciphers_token1] = ACTIONS(1401), - [aux_sym_cipher_token1] = ACTIONS(1403), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1401), - [aux_sym_compression_token1] = ACTIONS(1401), - [aux_sym_connection_attempts_token1] = ACTIONS(1401), - [aux_sym_connect_timeout_token1] = ACTIONS(1401), - [aux_sym_control_master_token1] = ACTIONS(1401), - [aux_sym_control_path_token1] = ACTIONS(1401), - [aux_sym_control_persist_token1] = ACTIONS(1401), - [aux_sym_dynamic_forward_token1] = ACTIONS(1401), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1401), - [aux_sym_escape_char_token1] = ACTIONS(1401), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1401), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1401), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1401), - [aux_sym_forward_agent_token1] = ACTIONS(1401), - [aux_sym_forward_x11_token1] = ACTIONS(1403), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1401), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1401), - [aux_sym_gateway_ports_token1] = ACTIONS(1401), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1401), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1401), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1401), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1401), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1401), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1401), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1401), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1401), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1401), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1401), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1401), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1401), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1401), - [aux_sym_host_key_alias_token1] = ACTIONS(1401), - [aux_sym_hostname_token1] = ACTIONS(1401), - [aux_sym_identities_only_token1] = ACTIONS(1401), - [aux_sym_identity_agent_token1] = ACTIONS(1401), - [aux_sym_identity_file_token1] = ACTIONS(1401), - [aux_sym_ignore_unknown_token1] = ACTIONS(1401), - [aux_sym_include_token1] = ACTIONS(1401), - [aux_sym_ip_qos_token1] = ACTIONS(1401), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1401), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1401), - [aux_sym_kex_algorithms_token1] = ACTIONS(1401), - [aux_sym_known_hosts_command_token1] = ACTIONS(1401), - [aux_sym_local_command_token1] = ACTIONS(1401), - [aux_sym_local_forward_token1] = ACTIONS(1401), - [aux_sym_log_level_token1] = ACTIONS(1401), - [aux_sym_log_verbose_token1] = ACTIONS(1401), - [aux_sym_macs_token1] = ACTIONS(1401), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1401), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1401), - [aux_sym_password_authentication_token1] = ACTIONS(1401), - [aux_sym_permit_local_command_token1] = ACTIONS(1401), - [aux_sym_permit_remote_open_token1] = ACTIONS(1401), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1401), - [aux_sym_port_token1] = ACTIONS(1401), - [aux_sym_preferred_authentications_token1] = ACTIONS(1401), - [aux_sym_protocol_token1] = ACTIONS(1401), - [aux_sym_proxy_command_token1] = ACTIONS(1401), - [aux_sym_proxy_jump_token1] = ACTIONS(1401), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1401), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1401), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1401), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1401), - [aux_sym_rekey_limit_token1] = ACTIONS(1401), - [aux_sym_remote_command_token1] = ACTIONS(1401), - [aux_sym_remote_forward_token1] = ACTIONS(1401), - [aux_sym_request_tty_token1] = ACTIONS(1401), - [aux_sym_required_rsa_size_token1] = ACTIONS(1401), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1401), - [aux_sym_security_key_provider_token1] = ACTIONS(1401), - [aux_sym_send_env_token1] = ACTIONS(1401), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1401), - [aux_sym_server_alive_interval_token1] = ACTIONS(1401), - [aux_sym_session_type_token1] = ACTIONS(1401), - [aux_sym_set_env_token1] = ACTIONS(1401), - [aux_sym_stdin_null_token1] = ACTIONS(1401), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1401), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1401), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1401), - [aux_sym_syslog_facility_token1] = ACTIONS(1401), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1401), - [aux_sym_keep_alive_token1] = ACTIONS(1401), - [aux_sym_tunnel_token1] = ACTIONS(1403), - [aux_sym_tunnel_device_token1] = ACTIONS(1401), - [aux_sym_update_host_keys_token1] = ACTIONS(1401), - [aux_sym_use_keychain_token1] = ACTIONS(1401), - [aux_sym_use_roaming_token1] = ACTIONS(1401), - [aux_sym_user_token1] = ACTIONS(1403), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1401), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1401), - [aux_sym_visual_host_key_token1] = ACTIONS(1401), - [aux_sym_xauth_location_token1] = ACTIONS(1401), + [ts_builtin_sym_end] = ACTIONS(1406), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1410), + [aux_sym_match_token1] = ACTIONS(1406), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1406), + [aux_sym_address_family_token1] = ACTIONS(1406), + [aux_sym_batch_mode_token1] = ACTIONS(1406), + [aux_sym_bind_address_token1] = ACTIONS(1406), + [aux_sym_bind_interface_token1] = ACTIONS(1406), + [aux_sym_canonical_domains_token1] = ACTIONS(1406), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1406), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1406), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1406), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1406), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1406), + [aux_sym_certificate_file_token1] = ACTIONS(1406), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1406), + [aux_sym_check_host_ip_token1] = ACTIONS(1406), + [aux_sym_ciphers_token1] = ACTIONS(1406), + [aux_sym_cipher_token1] = ACTIONS(1408), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1406), + [aux_sym_compression_token1] = ACTIONS(1406), + [aux_sym_connection_attempts_token1] = ACTIONS(1406), + [aux_sym_connect_timeout_token1] = ACTIONS(1406), + [aux_sym_control_master_token1] = ACTIONS(1406), + [aux_sym_control_path_token1] = ACTIONS(1406), + [aux_sym_control_persist_token1] = ACTIONS(1406), + [aux_sym_dynamic_forward_token1] = ACTIONS(1406), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1406), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1406), + [aux_sym_escape_char_token1] = ACTIONS(1406), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1406), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1406), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1406), + [aux_sym_forward_agent_token1] = ACTIONS(1406), + [aux_sym_forward_x11_token1] = ACTIONS(1408), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1406), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1406), + [aux_sym_gateway_ports_token1] = ACTIONS(1406), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1406), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1406), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1406), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1406), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1406), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1406), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1406), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1406), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1406), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1406), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1406), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1406), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1406), + [aux_sym_host_key_alias_token1] = ACTIONS(1406), + [aux_sym_hostname_token1] = ACTIONS(1406), + [aux_sym_identities_only_token1] = ACTIONS(1406), + [aux_sym_identity_agent_token1] = ACTIONS(1406), + [aux_sym_identity_file_token1] = ACTIONS(1406), + [aux_sym_ignore_unknown_token1] = ACTIONS(1406), + [aux_sym_include_token1] = ACTIONS(1406), + [aux_sym_ip_qos_token1] = ACTIONS(1406), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1406), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1406), + [aux_sym_kex_algorithms_token1] = ACTIONS(1406), + [aux_sym_known_hosts_command_token1] = ACTIONS(1406), + [aux_sym_local_command_token1] = ACTIONS(1406), + [aux_sym_local_forward_token1] = ACTIONS(1406), + [aux_sym_log_level_token1] = ACTIONS(1406), + [aux_sym_log_verbose_token1] = ACTIONS(1406), + [aux_sym_macs_token1] = ACTIONS(1406), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1406), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1406), + [aux_sym_password_authentication_token1] = ACTIONS(1406), + [aux_sym_permit_local_command_token1] = ACTIONS(1406), + [aux_sym_permit_remote_open_token1] = ACTIONS(1406), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1406), + [aux_sym_port_token1] = ACTIONS(1406), + [aux_sym_preferred_authentications_token1] = ACTIONS(1406), + [aux_sym_protocol_token1] = ACTIONS(1406), + [aux_sym_proxy_command_token1] = ACTIONS(1406), + [aux_sym_proxy_jump_token1] = ACTIONS(1406), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1406), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1406), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1406), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1406), + [aux_sym_rekey_limit_token1] = ACTIONS(1406), + [aux_sym_remote_command_token1] = ACTIONS(1406), + [aux_sym_remote_forward_token1] = ACTIONS(1406), + [aux_sym_request_tty_token1] = ACTIONS(1406), + [aux_sym_required_rsa_size_token1] = ACTIONS(1406), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1406), + [aux_sym_security_key_provider_token1] = ACTIONS(1406), + [aux_sym_send_env_token1] = ACTIONS(1406), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1406), + [aux_sym_server_alive_interval_token1] = ACTIONS(1406), + [aux_sym_session_type_token1] = ACTIONS(1406), + [aux_sym_set_env_token1] = ACTIONS(1406), + [aux_sym_stdin_null_token1] = ACTIONS(1406), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1406), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1406), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1406), + [aux_sym_syslog_facility_token1] = ACTIONS(1406), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1406), + [aux_sym_keep_alive_token1] = ACTIONS(1406), + [aux_sym_tunnel_token1] = ACTIONS(1408), + [aux_sym_tunnel_device_token1] = ACTIONS(1406), + [aux_sym_update_host_keys_token1] = ACTIONS(1406), + [aux_sym_use_keychain_token1] = ACTIONS(1406), + [aux_sym_use_roaming_token1] = ACTIONS(1406), + [aux_sym_user_token1] = ACTIONS(1408), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1406), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1406), + [aux_sym_visual_host_key_token1] = ACTIONS(1406), + [aux_sym_xauth_location_token1] = ACTIONS(1406), }, [145] = { - [ts_builtin_sym_end] = ACTIONS(1407), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1409), - [anon_sym_DQUOTE] = ACTIONS(1411), - [aux_sym_match_token1] = ACTIONS(1407), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1407), - [aux_sym_address_family_token1] = ACTIONS(1407), - [aux_sym_batch_mode_token1] = ACTIONS(1407), - [aux_sym_bind_address_token1] = ACTIONS(1407), - [aux_sym_bind_interface_token1] = ACTIONS(1407), - [aux_sym_canonical_domains_token1] = ACTIONS(1407), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1407), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1407), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1407), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1407), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1407), - [aux_sym_certificate_file_token1] = ACTIONS(1407), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1407), - [aux_sym_check_host_ip_token1] = ACTIONS(1407), - [aux_sym_ciphers_token1] = ACTIONS(1407), - [aux_sym_cipher_token1] = ACTIONS(1409), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1407), - [aux_sym_compression_token1] = ACTIONS(1407), - [aux_sym_connection_attempts_token1] = ACTIONS(1407), - [aux_sym_connect_timeout_token1] = ACTIONS(1407), - [aux_sym_control_master_token1] = ACTIONS(1407), - [aux_sym_control_path_token1] = ACTIONS(1407), - [aux_sym_control_persist_token1] = ACTIONS(1407), - [aux_sym_dynamic_forward_token1] = ACTIONS(1407), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1407), - [aux_sym_escape_char_token1] = ACTIONS(1407), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1407), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1407), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1407), - [aux_sym_forward_agent_token1] = ACTIONS(1407), - [aux_sym_forward_x11_token1] = ACTIONS(1409), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1407), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1407), - [aux_sym_gateway_ports_token1] = ACTIONS(1407), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1407), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1407), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1407), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1407), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1407), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1407), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1407), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1407), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1407), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1407), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1407), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1407), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1407), - [aux_sym_host_key_alias_token1] = ACTIONS(1407), - [aux_sym_hostname_token1] = ACTIONS(1407), - [aux_sym_identities_only_token1] = ACTIONS(1407), - [aux_sym_identity_agent_token1] = ACTIONS(1407), - [aux_sym_identity_file_token1] = ACTIONS(1407), - [aux_sym_ignore_unknown_token1] = ACTIONS(1407), - [aux_sym_include_token1] = ACTIONS(1407), - [aux_sym_ip_qos_token1] = ACTIONS(1407), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1407), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1407), - [aux_sym_kex_algorithms_token1] = ACTIONS(1407), - [aux_sym_known_hosts_command_token1] = ACTIONS(1407), - [aux_sym_local_command_token1] = ACTIONS(1407), - [aux_sym_local_forward_token1] = ACTIONS(1407), - [aux_sym_log_level_token1] = ACTIONS(1407), - [aux_sym_log_verbose_token1] = ACTIONS(1407), - [aux_sym_macs_token1] = ACTIONS(1407), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1407), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1407), - [aux_sym_password_authentication_token1] = ACTIONS(1407), - [aux_sym_permit_local_command_token1] = ACTIONS(1407), - [aux_sym_permit_remote_open_token1] = ACTIONS(1407), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1407), - [aux_sym_port_token1] = ACTIONS(1407), - [aux_sym_preferred_authentications_token1] = ACTIONS(1407), - [aux_sym_protocol_token1] = ACTIONS(1407), - [aux_sym_proxy_command_token1] = ACTIONS(1407), - [aux_sym_proxy_jump_token1] = ACTIONS(1407), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1407), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1407), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1407), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1407), - [aux_sym_rekey_limit_token1] = ACTIONS(1407), - [aux_sym_remote_command_token1] = ACTIONS(1407), - [aux_sym_remote_forward_token1] = ACTIONS(1407), - [aux_sym_request_tty_token1] = ACTIONS(1407), - [aux_sym_required_rsa_size_token1] = ACTIONS(1407), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1407), - [aux_sym_security_key_provider_token1] = ACTIONS(1407), - [aux_sym_send_env_token1] = ACTIONS(1407), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1407), - [aux_sym_server_alive_interval_token1] = ACTIONS(1407), - [aux_sym_session_type_token1] = ACTIONS(1407), - [aux_sym_set_env_token1] = ACTIONS(1407), - [aux_sym_stdin_null_token1] = ACTIONS(1407), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1407), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1407), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1407), - [aux_sym_syslog_facility_token1] = ACTIONS(1407), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1407), - [aux_sym_keep_alive_token1] = ACTIONS(1407), - [aux_sym_tunnel_token1] = ACTIONS(1409), - [aux_sym_tunnel_device_token1] = ACTIONS(1407), - [aux_sym_update_host_keys_token1] = ACTIONS(1407), - [aux_sym_use_keychain_token1] = ACTIONS(1407), - [aux_sym_use_roaming_token1] = ACTIONS(1407), - [aux_sym_user_token1] = ACTIONS(1409), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1407), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1407), - [aux_sym_visual_host_key_token1] = ACTIONS(1407), - [aux_sym_xauth_location_token1] = ACTIONS(1407), + [ts_builtin_sym_end] = ACTIONS(1412), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1414), + [anon_sym_DQUOTE] = ACTIONS(1416), + [aux_sym_match_token1] = ACTIONS(1412), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1412), + [aux_sym_address_family_token1] = ACTIONS(1412), + [aux_sym_batch_mode_token1] = ACTIONS(1412), + [aux_sym_bind_address_token1] = ACTIONS(1412), + [aux_sym_bind_interface_token1] = ACTIONS(1412), + [aux_sym_canonical_domains_token1] = ACTIONS(1412), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1412), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1412), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1412), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1412), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1412), + [aux_sym_certificate_file_token1] = ACTIONS(1412), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1412), + [aux_sym_check_host_ip_token1] = ACTIONS(1412), + [aux_sym_ciphers_token1] = ACTIONS(1412), + [aux_sym_cipher_token1] = ACTIONS(1414), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1412), + [aux_sym_compression_token1] = ACTIONS(1412), + [aux_sym_connection_attempts_token1] = ACTIONS(1412), + [aux_sym_connect_timeout_token1] = ACTIONS(1412), + [aux_sym_control_master_token1] = ACTIONS(1412), + [aux_sym_control_path_token1] = ACTIONS(1412), + [aux_sym_control_persist_token1] = ACTIONS(1412), + [aux_sym_dynamic_forward_token1] = ACTIONS(1412), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1412), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1412), + [aux_sym_escape_char_token1] = ACTIONS(1412), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1412), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1412), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1412), + [aux_sym_forward_agent_token1] = ACTIONS(1412), + [aux_sym_forward_x11_token1] = ACTIONS(1414), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1412), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1412), + [aux_sym_gateway_ports_token1] = ACTIONS(1412), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1412), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1412), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1412), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1412), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1412), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1412), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1412), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1412), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1412), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1412), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1412), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1412), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1412), + [aux_sym_host_key_alias_token1] = ACTIONS(1412), + [aux_sym_hostname_token1] = ACTIONS(1412), + [aux_sym_identities_only_token1] = ACTIONS(1412), + [aux_sym_identity_agent_token1] = ACTIONS(1412), + [aux_sym_identity_file_token1] = ACTIONS(1412), + [aux_sym_ignore_unknown_token1] = ACTIONS(1412), + [aux_sym_include_token1] = ACTIONS(1412), + [aux_sym_ip_qos_token1] = ACTIONS(1412), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1412), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1412), + [aux_sym_kex_algorithms_token1] = ACTIONS(1412), + [aux_sym_known_hosts_command_token1] = ACTIONS(1412), + [aux_sym_local_command_token1] = ACTIONS(1412), + [aux_sym_local_forward_token1] = ACTIONS(1412), + [aux_sym_log_level_token1] = ACTIONS(1412), + [aux_sym_log_verbose_token1] = ACTIONS(1412), + [aux_sym_macs_token1] = ACTIONS(1412), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1412), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1412), + [aux_sym_password_authentication_token1] = ACTIONS(1412), + [aux_sym_permit_local_command_token1] = ACTIONS(1412), + [aux_sym_permit_remote_open_token1] = ACTIONS(1412), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1412), + [aux_sym_port_token1] = ACTIONS(1412), + [aux_sym_preferred_authentications_token1] = ACTIONS(1412), + [aux_sym_protocol_token1] = ACTIONS(1412), + [aux_sym_proxy_command_token1] = ACTIONS(1412), + [aux_sym_proxy_jump_token1] = ACTIONS(1412), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1412), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1412), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1412), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1412), + [aux_sym_rekey_limit_token1] = ACTIONS(1412), + [aux_sym_remote_command_token1] = ACTIONS(1412), + [aux_sym_remote_forward_token1] = ACTIONS(1412), + [aux_sym_request_tty_token1] = ACTIONS(1412), + [aux_sym_required_rsa_size_token1] = ACTIONS(1412), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1412), + [aux_sym_security_key_provider_token1] = ACTIONS(1412), + [aux_sym_send_env_token1] = ACTIONS(1412), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1412), + [aux_sym_server_alive_interval_token1] = ACTIONS(1412), + [aux_sym_session_type_token1] = ACTIONS(1412), + [aux_sym_set_env_token1] = ACTIONS(1412), + [aux_sym_stdin_null_token1] = ACTIONS(1412), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1412), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1412), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1412), + [aux_sym_syslog_facility_token1] = ACTIONS(1412), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1412), + [aux_sym_keep_alive_token1] = ACTIONS(1412), + [aux_sym_tunnel_token1] = ACTIONS(1414), + [aux_sym_tunnel_device_token1] = ACTIONS(1412), + [aux_sym_update_host_keys_token1] = ACTIONS(1412), + [aux_sym_use_keychain_token1] = ACTIONS(1412), + [aux_sym_use_roaming_token1] = ACTIONS(1412), + [aux_sym_user_token1] = ACTIONS(1414), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1412), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1412), + [aux_sym_visual_host_key_token1] = ACTIONS(1412), + [aux_sym_xauth_location_token1] = ACTIONS(1412), }, [146] = { - [ts_builtin_sym_end] = ACTIONS(1413), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1417), - [aux_sym_match_token1] = ACTIONS(1413), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1413), - [aux_sym_address_family_token1] = ACTIONS(1413), - [aux_sym_batch_mode_token1] = ACTIONS(1413), - [aux_sym_bind_address_token1] = ACTIONS(1413), - [aux_sym_bind_interface_token1] = ACTIONS(1413), - [aux_sym_canonical_domains_token1] = ACTIONS(1413), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1413), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1413), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1413), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1413), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1413), - [aux_sym_certificate_file_token1] = ACTIONS(1413), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1413), - [aux_sym_check_host_ip_token1] = ACTIONS(1413), - [aux_sym_ciphers_token1] = ACTIONS(1413), - [aux_sym_cipher_token1] = ACTIONS(1415), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1413), - [aux_sym_compression_token1] = ACTIONS(1413), - [aux_sym_connection_attempts_token1] = ACTIONS(1413), - [aux_sym_connect_timeout_token1] = ACTIONS(1413), - [aux_sym_control_master_token1] = ACTIONS(1413), - [aux_sym_control_path_token1] = ACTIONS(1413), - [aux_sym_control_persist_token1] = ACTIONS(1413), - [aux_sym_dynamic_forward_token1] = ACTIONS(1413), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1413), - [aux_sym_escape_char_token1] = ACTIONS(1413), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1413), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1413), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1413), - [aux_sym_forward_agent_token1] = ACTIONS(1413), - [aux_sym_forward_x11_token1] = ACTIONS(1415), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1413), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1413), - [aux_sym_gateway_ports_token1] = ACTIONS(1413), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1413), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1413), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1413), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1413), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1413), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1413), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1413), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1413), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1413), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1413), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1413), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1413), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1413), - [aux_sym_host_key_alias_token1] = ACTIONS(1413), - [aux_sym_hostname_token1] = ACTIONS(1413), - [aux_sym_identities_only_token1] = ACTIONS(1413), - [aux_sym_identity_agent_token1] = ACTIONS(1413), - [aux_sym_identity_file_token1] = ACTIONS(1413), - [aux_sym_ignore_unknown_token1] = ACTIONS(1413), - [aux_sym_include_token1] = ACTIONS(1413), - [aux_sym_ip_qos_token1] = ACTIONS(1413), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1413), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1413), - [aux_sym_kex_algorithms_token1] = ACTIONS(1413), - [aux_sym_known_hosts_command_token1] = ACTIONS(1413), - [aux_sym_local_command_token1] = ACTIONS(1413), - [aux_sym_local_forward_token1] = ACTIONS(1413), - [aux_sym_log_level_token1] = ACTIONS(1413), - [aux_sym_log_verbose_token1] = ACTIONS(1413), - [aux_sym_macs_token1] = ACTIONS(1413), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1413), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1413), - [aux_sym_password_authentication_token1] = ACTIONS(1413), - [aux_sym_permit_local_command_token1] = ACTIONS(1413), - [aux_sym_permit_remote_open_token1] = ACTIONS(1413), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1413), - [aux_sym_port_token1] = ACTIONS(1413), - [aux_sym_preferred_authentications_token1] = ACTIONS(1413), - [aux_sym_protocol_token1] = ACTIONS(1413), - [aux_sym_proxy_command_token1] = ACTIONS(1413), - [aux_sym_proxy_jump_token1] = ACTIONS(1413), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1413), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1413), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1413), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1413), - [aux_sym_rekey_limit_token1] = ACTIONS(1413), - [aux_sym_remote_command_token1] = ACTIONS(1413), - [aux_sym_remote_forward_token1] = ACTIONS(1413), - [aux_sym_request_tty_token1] = ACTIONS(1413), - [aux_sym_required_rsa_size_token1] = ACTIONS(1413), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1413), - [aux_sym_security_key_provider_token1] = ACTIONS(1413), - [aux_sym_send_env_token1] = ACTIONS(1413), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1413), - [aux_sym_server_alive_interval_token1] = ACTIONS(1413), - [aux_sym_session_type_token1] = ACTIONS(1413), - [aux_sym_set_env_token1] = ACTIONS(1413), - [aux_sym_stdin_null_token1] = ACTIONS(1413), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1413), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1413), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1413), - [aux_sym_syslog_facility_token1] = ACTIONS(1413), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1413), - [aux_sym_keep_alive_token1] = ACTIONS(1413), - [aux_sym_tunnel_token1] = ACTIONS(1415), - [aux_sym_tunnel_device_token1] = ACTIONS(1413), - [aux_sym_update_host_keys_token1] = ACTIONS(1413), - [aux_sym_use_keychain_token1] = ACTIONS(1413), - [aux_sym_use_roaming_token1] = ACTIONS(1413), - [aux_sym_user_token1] = ACTIONS(1415), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1413), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1413), - [aux_sym_visual_host_key_token1] = ACTIONS(1413), - [aux_sym_xauth_location_token1] = ACTIONS(1413), + [ts_builtin_sym_end] = ACTIONS(1418), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1422), + [aux_sym_match_token1] = ACTIONS(1418), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1418), + [aux_sym_address_family_token1] = ACTIONS(1418), + [aux_sym_batch_mode_token1] = ACTIONS(1418), + [aux_sym_bind_address_token1] = ACTIONS(1418), + [aux_sym_bind_interface_token1] = ACTIONS(1418), + [aux_sym_canonical_domains_token1] = ACTIONS(1418), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1418), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1418), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1418), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1418), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1418), + [aux_sym_certificate_file_token1] = ACTIONS(1418), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1418), + [aux_sym_check_host_ip_token1] = ACTIONS(1418), + [aux_sym_ciphers_token1] = ACTIONS(1418), + [aux_sym_cipher_token1] = ACTIONS(1420), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1418), + [aux_sym_compression_token1] = ACTIONS(1418), + [aux_sym_connection_attempts_token1] = ACTIONS(1418), + [aux_sym_connect_timeout_token1] = ACTIONS(1418), + [aux_sym_control_master_token1] = ACTIONS(1418), + [aux_sym_control_path_token1] = ACTIONS(1418), + [aux_sym_control_persist_token1] = ACTIONS(1418), + [aux_sym_dynamic_forward_token1] = ACTIONS(1418), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1418), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1418), + [aux_sym_escape_char_token1] = ACTIONS(1418), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1418), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1418), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1418), + [aux_sym_forward_agent_token1] = ACTIONS(1418), + [aux_sym_forward_x11_token1] = ACTIONS(1420), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1418), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1418), + [aux_sym_gateway_ports_token1] = ACTIONS(1418), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1418), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1418), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1418), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1418), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1418), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1418), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1418), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1418), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1418), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1418), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1418), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1418), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1418), + [aux_sym_host_key_alias_token1] = ACTIONS(1418), + [aux_sym_hostname_token1] = ACTIONS(1418), + [aux_sym_identities_only_token1] = ACTIONS(1418), + [aux_sym_identity_agent_token1] = ACTIONS(1418), + [aux_sym_identity_file_token1] = ACTIONS(1418), + [aux_sym_ignore_unknown_token1] = ACTIONS(1418), + [aux_sym_include_token1] = ACTIONS(1418), + [aux_sym_ip_qos_token1] = ACTIONS(1418), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1418), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1418), + [aux_sym_kex_algorithms_token1] = ACTIONS(1418), + [aux_sym_known_hosts_command_token1] = ACTIONS(1418), + [aux_sym_local_command_token1] = ACTIONS(1418), + [aux_sym_local_forward_token1] = ACTIONS(1418), + [aux_sym_log_level_token1] = ACTIONS(1418), + [aux_sym_log_verbose_token1] = ACTIONS(1418), + [aux_sym_macs_token1] = ACTIONS(1418), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1418), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1418), + [aux_sym_password_authentication_token1] = ACTIONS(1418), + [aux_sym_permit_local_command_token1] = ACTIONS(1418), + [aux_sym_permit_remote_open_token1] = ACTIONS(1418), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1418), + [aux_sym_port_token1] = ACTIONS(1418), + [aux_sym_preferred_authentications_token1] = ACTIONS(1418), + [aux_sym_protocol_token1] = ACTIONS(1418), + [aux_sym_proxy_command_token1] = ACTIONS(1418), + [aux_sym_proxy_jump_token1] = ACTIONS(1418), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1418), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1418), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1418), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1418), + [aux_sym_rekey_limit_token1] = ACTIONS(1418), + [aux_sym_remote_command_token1] = ACTIONS(1418), + [aux_sym_remote_forward_token1] = ACTIONS(1418), + [aux_sym_request_tty_token1] = ACTIONS(1418), + [aux_sym_required_rsa_size_token1] = ACTIONS(1418), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1418), + [aux_sym_security_key_provider_token1] = ACTIONS(1418), + [aux_sym_send_env_token1] = ACTIONS(1418), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1418), + [aux_sym_server_alive_interval_token1] = ACTIONS(1418), + [aux_sym_session_type_token1] = ACTIONS(1418), + [aux_sym_set_env_token1] = ACTIONS(1418), + [aux_sym_stdin_null_token1] = ACTIONS(1418), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1418), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1418), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1418), + [aux_sym_syslog_facility_token1] = ACTIONS(1418), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1418), + [aux_sym_keep_alive_token1] = ACTIONS(1418), + [aux_sym_tunnel_token1] = ACTIONS(1420), + [aux_sym_tunnel_device_token1] = ACTIONS(1418), + [aux_sym_update_host_keys_token1] = ACTIONS(1418), + [aux_sym_use_keychain_token1] = ACTIONS(1418), + [aux_sym_use_roaming_token1] = ACTIONS(1418), + [aux_sym_user_token1] = ACTIONS(1420), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1418), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1418), + [aux_sym_visual_host_key_token1] = ACTIONS(1418), + [aux_sym_xauth_location_token1] = ACTIONS(1418), }, [147] = { - [ts_builtin_sym_end] = ACTIONS(1419), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [aux_sym_match_token1] = ACTIONS(1419), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1419), - [aux_sym_address_family_token1] = ACTIONS(1419), - [aux_sym_batch_mode_token1] = ACTIONS(1419), - [aux_sym_bind_address_token1] = ACTIONS(1419), - [aux_sym_bind_interface_token1] = ACTIONS(1419), - [aux_sym_canonical_domains_token1] = ACTIONS(1419), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1419), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1419), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1419), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1419), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1419), - [aux_sym_certificate_file_token1] = ACTIONS(1419), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1419), - [aux_sym_check_host_ip_token1] = ACTIONS(1419), - [aux_sym_ciphers_token1] = ACTIONS(1419), - [aux_sym_cipher_token1] = ACTIONS(1421), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1419), - [aux_sym_compression_token1] = ACTIONS(1419), - [aux_sym_connection_attempts_token1] = ACTIONS(1419), - [aux_sym_connect_timeout_token1] = ACTIONS(1419), - [aux_sym_control_master_token1] = ACTIONS(1419), - [aux_sym_control_path_token1] = ACTIONS(1419), - [aux_sym_control_persist_token1] = ACTIONS(1419), - [aux_sym_dynamic_forward_token1] = ACTIONS(1419), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1419), - [aux_sym_escape_char_token1] = ACTIONS(1419), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1419), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1419), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1419), - [aux_sym_forward_agent_token1] = ACTIONS(1419), - [aux_sym_forward_x11_token1] = ACTIONS(1421), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1419), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1419), - [aux_sym_gateway_ports_token1] = ACTIONS(1419), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1419), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1419), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1419), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1419), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1419), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1419), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1419), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1419), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1419), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1419), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1419), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1419), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1419), - [aux_sym_host_key_alias_token1] = ACTIONS(1419), - [aux_sym_hostname_token1] = ACTIONS(1419), - [aux_sym_identities_only_token1] = ACTIONS(1419), - [aux_sym_identity_agent_token1] = ACTIONS(1419), - [aux_sym_identity_file_token1] = ACTIONS(1419), - [aux_sym_ignore_unknown_token1] = ACTIONS(1419), - [aux_sym_include_token1] = ACTIONS(1419), - [aux_sym_ip_qos_token1] = ACTIONS(1419), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1419), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1419), - [aux_sym_kex_algorithms_token1] = ACTIONS(1419), - [aux_sym_known_hosts_command_token1] = ACTIONS(1419), - [aux_sym_local_command_token1] = ACTIONS(1419), - [aux_sym_local_forward_token1] = ACTIONS(1419), - [aux_sym_log_level_token1] = ACTIONS(1419), - [aux_sym_log_verbose_token1] = ACTIONS(1419), - [aux_sym_macs_token1] = ACTIONS(1419), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1419), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1419), - [aux_sym_password_authentication_token1] = ACTIONS(1419), - [aux_sym_permit_local_command_token1] = ACTIONS(1419), - [aux_sym_permit_remote_open_token1] = ACTIONS(1419), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1419), - [aux_sym_port_token1] = ACTIONS(1419), - [aux_sym_preferred_authentications_token1] = ACTIONS(1419), - [aux_sym_protocol_token1] = ACTIONS(1419), - [aux_sym_proxy_command_token1] = ACTIONS(1419), - [aux_sym_proxy_jump_token1] = ACTIONS(1419), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1419), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1419), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1419), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1419), - [aux_sym_rekey_limit_token1] = ACTIONS(1419), - [aux_sym_remote_command_token1] = ACTIONS(1419), - [aux_sym_remote_forward_token1] = ACTIONS(1419), - [aux_sym_request_tty_token1] = ACTIONS(1419), - [aux_sym_required_rsa_size_token1] = ACTIONS(1419), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1419), - [aux_sym_security_key_provider_token1] = ACTIONS(1419), - [aux_sym_send_env_token1] = ACTIONS(1419), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1419), - [aux_sym_server_alive_interval_token1] = ACTIONS(1419), - [aux_sym_session_type_token1] = ACTIONS(1419), - [aux_sym_set_env_token1] = ACTIONS(1419), - [aux_sym_stdin_null_token1] = ACTIONS(1419), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1419), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1419), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1419), - [aux_sym_syslog_facility_token1] = ACTIONS(1419), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1419), - [aux_sym_keep_alive_token1] = ACTIONS(1419), - [aux_sym_tunnel_token1] = ACTIONS(1421), - [aux_sym_tunnel_device_token1] = ACTIONS(1419), - [aux_sym_update_host_keys_token1] = ACTIONS(1419), - [aux_sym_use_keychain_token1] = ACTIONS(1419), - [aux_sym_use_roaming_token1] = ACTIONS(1419), - [aux_sym_user_token1] = ACTIONS(1421), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1419), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1419), - [aux_sym_visual_host_key_token1] = ACTIONS(1419), - [aux_sym_xauth_location_token1] = ACTIONS(1419), + [ts_builtin_sym_end] = ACTIONS(1424), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1428), + [aux_sym_match_token1] = ACTIONS(1424), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1424), + [aux_sym_address_family_token1] = ACTIONS(1424), + [aux_sym_batch_mode_token1] = ACTIONS(1424), + [aux_sym_bind_address_token1] = ACTIONS(1424), + [aux_sym_bind_interface_token1] = ACTIONS(1424), + [aux_sym_canonical_domains_token1] = ACTIONS(1424), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1424), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1424), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1424), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1424), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1424), + [aux_sym_certificate_file_token1] = ACTIONS(1424), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1424), + [aux_sym_check_host_ip_token1] = ACTIONS(1424), + [aux_sym_ciphers_token1] = ACTIONS(1424), + [aux_sym_cipher_token1] = ACTIONS(1426), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1424), + [aux_sym_compression_token1] = ACTIONS(1424), + [aux_sym_connection_attempts_token1] = ACTIONS(1424), + [aux_sym_connect_timeout_token1] = ACTIONS(1424), + [aux_sym_control_master_token1] = ACTIONS(1424), + [aux_sym_control_path_token1] = ACTIONS(1424), + [aux_sym_control_persist_token1] = ACTIONS(1424), + [aux_sym_dynamic_forward_token1] = ACTIONS(1424), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1424), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1424), + [aux_sym_escape_char_token1] = ACTIONS(1424), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1424), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1424), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1424), + [aux_sym_forward_agent_token1] = ACTIONS(1424), + [aux_sym_forward_x11_token1] = ACTIONS(1426), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1424), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1424), + [aux_sym_gateway_ports_token1] = ACTIONS(1424), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1424), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1424), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1424), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1424), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1424), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1424), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1424), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1424), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1424), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1424), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1424), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1424), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1424), + [aux_sym_host_key_alias_token1] = ACTIONS(1424), + [aux_sym_hostname_token1] = ACTIONS(1424), + [aux_sym_identities_only_token1] = ACTIONS(1424), + [aux_sym_identity_agent_token1] = ACTIONS(1424), + [aux_sym_identity_file_token1] = ACTIONS(1424), + [aux_sym_ignore_unknown_token1] = ACTIONS(1424), + [aux_sym_include_token1] = ACTIONS(1424), + [aux_sym_ip_qos_token1] = ACTIONS(1424), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1424), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1424), + [aux_sym_kex_algorithms_token1] = ACTIONS(1424), + [aux_sym_known_hosts_command_token1] = ACTIONS(1424), + [aux_sym_local_command_token1] = ACTIONS(1424), + [aux_sym_local_forward_token1] = ACTIONS(1424), + [aux_sym_log_level_token1] = ACTIONS(1424), + [aux_sym_log_verbose_token1] = ACTIONS(1424), + [aux_sym_macs_token1] = ACTIONS(1424), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1424), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1424), + [aux_sym_password_authentication_token1] = ACTIONS(1424), + [aux_sym_permit_local_command_token1] = ACTIONS(1424), + [aux_sym_permit_remote_open_token1] = ACTIONS(1424), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1424), + [aux_sym_port_token1] = ACTIONS(1424), + [aux_sym_preferred_authentications_token1] = ACTIONS(1424), + [aux_sym_protocol_token1] = ACTIONS(1424), + [aux_sym_proxy_command_token1] = ACTIONS(1424), + [aux_sym_proxy_jump_token1] = ACTIONS(1424), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1424), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1424), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1424), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1424), + [aux_sym_rekey_limit_token1] = ACTIONS(1424), + [aux_sym_remote_command_token1] = ACTIONS(1424), + [aux_sym_remote_forward_token1] = ACTIONS(1424), + [aux_sym_request_tty_token1] = ACTIONS(1424), + [aux_sym_required_rsa_size_token1] = ACTIONS(1424), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1424), + [aux_sym_security_key_provider_token1] = ACTIONS(1424), + [aux_sym_send_env_token1] = ACTIONS(1424), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1424), + [aux_sym_server_alive_interval_token1] = ACTIONS(1424), + [aux_sym_session_type_token1] = ACTIONS(1424), + [aux_sym_set_env_token1] = ACTIONS(1424), + [aux_sym_stdin_null_token1] = ACTIONS(1424), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1424), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1424), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1424), + [aux_sym_syslog_facility_token1] = ACTIONS(1424), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1424), + [aux_sym_keep_alive_token1] = ACTIONS(1424), + [aux_sym_tunnel_token1] = ACTIONS(1426), + [aux_sym_tunnel_device_token1] = ACTIONS(1424), + [aux_sym_update_host_keys_token1] = ACTIONS(1424), + [aux_sym_use_keychain_token1] = ACTIONS(1424), + [aux_sym_use_roaming_token1] = ACTIONS(1424), + [aux_sym_user_token1] = ACTIONS(1426), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1424), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1424), + [aux_sym_visual_host_key_token1] = ACTIONS(1424), + [aux_sym_xauth_location_token1] = ACTIONS(1424), }, [148] = { - [ts_builtin_sym_end] = ACTIONS(1425), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(1429), - [aux_sym_match_token1] = ACTIONS(1425), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1425), - [aux_sym_address_family_token1] = ACTIONS(1425), - [aux_sym_batch_mode_token1] = ACTIONS(1425), - [aux_sym_bind_address_token1] = ACTIONS(1425), - [aux_sym_bind_interface_token1] = ACTIONS(1425), - [aux_sym_canonical_domains_token1] = ACTIONS(1425), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1425), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1425), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1425), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1425), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1425), - [aux_sym_certificate_file_token1] = ACTIONS(1425), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1425), - [aux_sym_check_host_ip_token1] = ACTIONS(1425), - [aux_sym_ciphers_token1] = ACTIONS(1425), - [aux_sym_cipher_token1] = ACTIONS(1427), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1425), - [aux_sym_compression_token1] = ACTIONS(1425), - [aux_sym_connection_attempts_token1] = ACTIONS(1425), - [aux_sym_connect_timeout_token1] = ACTIONS(1425), - [aux_sym_control_master_token1] = ACTIONS(1425), - [aux_sym_control_path_token1] = ACTIONS(1425), - [aux_sym_control_persist_token1] = ACTIONS(1425), - [aux_sym_dynamic_forward_token1] = ACTIONS(1425), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1425), - [aux_sym_escape_char_token1] = ACTIONS(1425), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1425), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1425), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1425), - [aux_sym_forward_agent_token1] = ACTIONS(1425), - [aux_sym_forward_x11_token1] = ACTIONS(1427), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1425), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1425), - [aux_sym_gateway_ports_token1] = ACTIONS(1425), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1425), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1425), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1425), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1425), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1425), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1425), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1425), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1425), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1425), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1425), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1425), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1425), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1425), - [aux_sym_host_key_alias_token1] = ACTIONS(1425), - [aux_sym_hostname_token1] = ACTIONS(1425), - [aux_sym_identities_only_token1] = ACTIONS(1425), - [aux_sym_identity_agent_token1] = ACTIONS(1425), - [aux_sym_identity_file_token1] = ACTIONS(1425), - [aux_sym_ignore_unknown_token1] = ACTIONS(1425), - [aux_sym_include_token1] = ACTIONS(1425), - [aux_sym_ip_qos_token1] = ACTIONS(1425), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1425), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1425), - [aux_sym_kex_algorithms_token1] = ACTIONS(1425), - [aux_sym_known_hosts_command_token1] = ACTIONS(1425), - [aux_sym_local_command_token1] = ACTIONS(1425), - [aux_sym_local_forward_token1] = ACTIONS(1425), - [aux_sym_log_level_token1] = ACTIONS(1425), - [aux_sym_log_verbose_token1] = ACTIONS(1425), - [aux_sym_macs_token1] = ACTIONS(1425), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1425), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1425), - [aux_sym_password_authentication_token1] = ACTIONS(1425), - [aux_sym_permit_local_command_token1] = ACTIONS(1425), - [aux_sym_permit_remote_open_token1] = ACTIONS(1425), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1425), - [aux_sym_port_token1] = ACTIONS(1425), - [aux_sym_preferred_authentications_token1] = ACTIONS(1425), - [aux_sym_protocol_token1] = ACTIONS(1425), - [aux_sym_proxy_command_token1] = ACTIONS(1425), - [aux_sym_proxy_jump_token1] = ACTIONS(1425), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1425), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1425), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1425), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1425), - [aux_sym_rekey_limit_token1] = ACTIONS(1425), - [aux_sym_remote_command_token1] = ACTIONS(1425), - [aux_sym_remote_forward_token1] = ACTIONS(1425), - [aux_sym_request_tty_token1] = ACTIONS(1425), - [aux_sym_required_rsa_size_token1] = ACTIONS(1425), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1425), - [aux_sym_security_key_provider_token1] = ACTIONS(1425), - [aux_sym_send_env_token1] = ACTIONS(1425), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1425), - [aux_sym_server_alive_interval_token1] = ACTIONS(1425), - [aux_sym_session_type_token1] = ACTIONS(1425), - [aux_sym_set_env_token1] = ACTIONS(1425), - [aux_sym_stdin_null_token1] = ACTIONS(1425), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1425), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1425), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1425), - [aux_sym_syslog_facility_token1] = ACTIONS(1425), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1425), - [aux_sym_keep_alive_token1] = ACTIONS(1425), - [aux_sym_tunnel_token1] = ACTIONS(1427), - [aux_sym_tunnel_device_token1] = ACTIONS(1425), - [aux_sym_update_host_keys_token1] = ACTIONS(1425), - [aux_sym_use_keychain_token1] = ACTIONS(1425), - [aux_sym_use_roaming_token1] = ACTIONS(1425), - [aux_sym_user_token1] = ACTIONS(1427), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1425), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1425), - [aux_sym_visual_host_key_token1] = ACTIONS(1425), - [aux_sym_xauth_location_token1] = ACTIONS(1425), + [ts_builtin_sym_end] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1434), + [aux_sym_match_token1] = ACTIONS(1430), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1430), + [aux_sym_address_family_token1] = ACTIONS(1430), + [aux_sym_batch_mode_token1] = ACTIONS(1430), + [aux_sym_bind_address_token1] = ACTIONS(1430), + [aux_sym_bind_interface_token1] = ACTIONS(1430), + [aux_sym_canonical_domains_token1] = ACTIONS(1430), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1430), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1430), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1430), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1430), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1430), + [aux_sym_certificate_file_token1] = ACTIONS(1430), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1430), + [aux_sym_check_host_ip_token1] = ACTIONS(1430), + [aux_sym_ciphers_token1] = ACTIONS(1430), + [aux_sym_cipher_token1] = ACTIONS(1432), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1430), + [aux_sym_compression_token1] = ACTIONS(1430), + [aux_sym_connection_attempts_token1] = ACTIONS(1430), + [aux_sym_connect_timeout_token1] = ACTIONS(1430), + [aux_sym_control_master_token1] = ACTIONS(1430), + [aux_sym_control_path_token1] = ACTIONS(1430), + [aux_sym_control_persist_token1] = ACTIONS(1430), + [aux_sym_dynamic_forward_token1] = ACTIONS(1430), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1430), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1430), + [aux_sym_escape_char_token1] = ACTIONS(1430), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1430), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1430), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1430), + [aux_sym_forward_agent_token1] = ACTIONS(1430), + [aux_sym_forward_x11_token1] = ACTIONS(1432), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1430), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1430), + [aux_sym_gateway_ports_token1] = ACTIONS(1430), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1430), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1430), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1430), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1430), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1430), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1430), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1430), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1430), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1430), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1430), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1430), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1430), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1430), + [aux_sym_host_key_alias_token1] = ACTIONS(1430), + [aux_sym_hostname_token1] = ACTIONS(1430), + [aux_sym_identities_only_token1] = ACTIONS(1430), + [aux_sym_identity_agent_token1] = ACTIONS(1430), + [aux_sym_identity_file_token1] = ACTIONS(1430), + [aux_sym_ignore_unknown_token1] = ACTIONS(1430), + [aux_sym_include_token1] = ACTIONS(1430), + [aux_sym_ip_qos_token1] = ACTIONS(1430), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1430), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1430), + [aux_sym_kex_algorithms_token1] = ACTIONS(1430), + [aux_sym_known_hosts_command_token1] = ACTIONS(1430), + [aux_sym_local_command_token1] = ACTIONS(1430), + [aux_sym_local_forward_token1] = ACTIONS(1430), + [aux_sym_log_level_token1] = ACTIONS(1430), + [aux_sym_log_verbose_token1] = ACTIONS(1430), + [aux_sym_macs_token1] = ACTIONS(1430), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1430), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1430), + [aux_sym_password_authentication_token1] = ACTIONS(1430), + [aux_sym_permit_local_command_token1] = ACTIONS(1430), + [aux_sym_permit_remote_open_token1] = ACTIONS(1430), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1430), + [aux_sym_port_token1] = ACTIONS(1430), + [aux_sym_preferred_authentications_token1] = ACTIONS(1430), + [aux_sym_protocol_token1] = ACTIONS(1430), + [aux_sym_proxy_command_token1] = ACTIONS(1430), + [aux_sym_proxy_jump_token1] = ACTIONS(1430), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1430), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1430), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1430), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1430), + [aux_sym_rekey_limit_token1] = ACTIONS(1430), + [aux_sym_remote_command_token1] = ACTIONS(1430), + [aux_sym_remote_forward_token1] = ACTIONS(1430), + [aux_sym_request_tty_token1] = ACTIONS(1430), + [aux_sym_required_rsa_size_token1] = ACTIONS(1430), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1430), + [aux_sym_security_key_provider_token1] = ACTIONS(1430), + [aux_sym_send_env_token1] = ACTIONS(1430), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1430), + [aux_sym_server_alive_interval_token1] = ACTIONS(1430), + [aux_sym_session_type_token1] = ACTIONS(1430), + [aux_sym_set_env_token1] = ACTIONS(1430), + [aux_sym_stdin_null_token1] = ACTIONS(1430), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1430), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1430), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1430), + [aux_sym_syslog_facility_token1] = ACTIONS(1430), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1430), + [aux_sym_keep_alive_token1] = ACTIONS(1430), + [aux_sym_tunnel_token1] = ACTIONS(1432), + [aux_sym_tunnel_device_token1] = ACTIONS(1430), + [aux_sym_update_host_keys_token1] = ACTIONS(1430), + [aux_sym_use_keychain_token1] = ACTIONS(1430), + [aux_sym_use_roaming_token1] = ACTIONS(1430), + [aux_sym_user_token1] = ACTIONS(1432), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1430), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1430), + [aux_sym_visual_host_key_token1] = ACTIONS(1430), + [aux_sym_xauth_location_token1] = ACTIONS(1430), }, [149] = { - [ts_builtin_sym_end] = ACTIONS(1431), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1433), - [anon_sym_DQUOTE] = ACTIONS(1435), - [aux_sym_match_token1] = ACTIONS(1431), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1431), - [aux_sym_address_family_token1] = ACTIONS(1431), - [aux_sym_batch_mode_token1] = ACTIONS(1431), - [aux_sym_bind_address_token1] = ACTIONS(1431), - [aux_sym_bind_interface_token1] = ACTIONS(1431), - [aux_sym_canonical_domains_token1] = ACTIONS(1431), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1431), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1431), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1431), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1431), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1431), - [aux_sym_certificate_file_token1] = ACTIONS(1431), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1431), - [aux_sym_check_host_ip_token1] = ACTIONS(1431), - [aux_sym_ciphers_token1] = ACTIONS(1431), - [aux_sym_cipher_token1] = ACTIONS(1433), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1431), - [aux_sym_compression_token1] = ACTIONS(1431), - [aux_sym_connection_attempts_token1] = ACTIONS(1431), - [aux_sym_connect_timeout_token1] = ACTIONS(1431), - [aux_sym_control_master_token1] = ACTIONS(1431), - [aux_sym_control_path_token1] = ACTIONS(1431), - [aux_sym_control_persist_token1] = ACTIONS(1431), - [aux_sym_dynamic_forward_token1] = ACTIONS(1431), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1431), - [aux_sym_escape_char_token1] = ACTIONS(1431), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1431), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1431), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1431), - [aux_sym_forward_agent_token1] = ACTIONS(1431), - [aux_sym_forward_x11_token1] = ACTIONS(1433), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1431), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1431), - [aux_sym_gateway_ports_token1] = ACTIONS(1431), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1431), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1431), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1431), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1431), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1431), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1431), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1431), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1431), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1431), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1431), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1431), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1431), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1431), - [aux_sym_host_key_alias_token1] = ACTIONS(1431), - [aux_sym_hostname_token1] = ACTIONS(1431), - [aux_sym_identities_only_token1] = ACTIONS(1431), - [aux_sym_identity_agent_token1] = ACTIONS(1431), - [aux_sym_identity_file_token1] = ACTIONS(1431), - [aux_sym_ignore_unknown_token1] = ACTIONS(1431), - [aux_sym_include_token1] = ACTIONS(1431), - [aux_sym_ip_qos_token1] = ACTIONS(1431), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1431), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1431), - [aux_sym_kex_algorithms_token1] = ACTIONS(1431), - [aux_sym_known_hosts_command_token1] = ACTIONS(1431), - [aux_sym_local_command_token1] = ACTIONS(1431), - [aux_sym_local_forward_token1] = ACTIONS(1431), - [aux_sym_log_level_token1] = ACTIONS(1431), - [aux_sym_log_verbose_token1] = ACTIONS(1431), - [aux_sym_macs_token1] = ACTIONS(1431), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1431), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1431), - [aux_sym_password_authentication_token1] = ACTIONS(1431), - [aux_sym_permit_local_command_token1] = ACTIONS(1431), - [aux_sym_permit_remote_open_token1] = ACTIONS(1431), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1431), - [aux_sym_port_token1] = ACTIONS(1431), - [aux_sym_preferred_authentications_token1] = ACTIONS(1431), - [aux_sym_protocol_token1] = ACTIONS(1431), - [aux_sym_proxy_command_token1] = ACTIONS(1431), - [aux_sym_proxy_jump_token1] = ACTIONS(1431), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1431), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1431), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1431), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1431), - [aux_sym_rekey_limit_token1] = ACTIONS(1431), - [aux_sym_remote_command_token1] = ACTIONS(1431), - [aux_sym_remote_forward_token1] = ACTIONS(1431), - [aux_sym_request_tty_token1] = ACTIONS(1431), - [aux_sym_required_rsa_size_token1] = ACTIONS(1431), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1431), - [aux_sym_security_key_provider_token1] = ACTIONS(1431), - [aux_sym_send_env_token1] = ACTIONS(1431), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1431), - [aux_sym_server_alive_interval_token1] = ACTIONS(1431), - [aux_sym_session_type_token1] = ACTIONS(1431), - [aux_sym_set_env_token1] = ACTIONS(1431), - [aux_sym_stdin_null_token1] = ACTIONS(1431), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1431), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1431), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1431), - [aux_sym_syslog_facility_token1] = ACTIONS(1431), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1431), - [aux_sym_keep_alive_token1] = ACTIONS(1431), - [aux_sym_tunnel_token1] = ACTIONS(1433), - [aux_sym_tunnel_device_token1] = ACTIONS(1431), - [aux_sym_update_host_keys_token1] = ACTIONS(1431), - [aux_sym_use_keychain_token1] = ACTIONS(1431), - [aux_sym_use_roaming_token1] = ACTIONS(1431), - [aux_sym_user_token1] = ACTIONS(1433), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1431), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1431), - [aux_sym_visual_host_key_token1] = ACTIONS(1431), - [aux_sym_xauth_location_token1] = ACTIONS(1431), + [ts_builtin_sym_end] = ACTIONS(1436), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1440), + [aux_sym_match_token1] = ACTIONS(1436), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1436), + [aux_sym_address_family_token1] = ACTIONS(1436), + [aux_sym_batch_mode_token1] = ACTIONS(1436), + [aux_sym_bind_address_token1] = ACTIONS(1436), + [aux_sym_bind_interface_token1] = ACTIONS(1436), + [aux_sym_canonical_domains_token1] = ACTIONS(1436), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1436), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1436), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1436), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1436), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1436), + [aux_sym_certificate_file_token1] = ACTIONS(1436), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1436), + [aux_sym_check_host_ip_token1] = ACTIONS(1436), + [aux_sym_ciphers_token1] = ACTIONS(1436), + [aux_sym_cipher_token1] = ACTIONS(1438), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1436), + [aux_sym_compression_token1] = ACTIONS(1436), + [aux_sym_connection_attempts_token1] = ACTIONS(1436), + [aux_sym_connect_timeout_token1] = ACTIONS(1436), + [aux_sym_control_master_token1] = ACTIONS(1436), + [aux_sym_control_path_token1] = ACTIONS(1436), + [aux_sym_control_persist_token1] = ACTIONS(1436), + [aux_sym_dynamic_forward_token1] = ACTIONS(1436), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1436), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1436), + [aux_sym_escape_char_token1] = ACTIONS(1436), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1436), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1436), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1436), + [aux_sym_forward_agent_token1] = ACTIONS(1436), + [aux_sym_forward_x11_token1] = ACTIONS(1438), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1436), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1436), + [aux_sym_gateway_ports_token1] = ACTIONS(1436), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1436), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1436), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1436), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1436), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1436), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1436), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1436), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1436), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1436), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1436), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1436), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1436), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1436), + [aux_sym_host_key_alias_token1] = ACTIONS(1436), + [aux_sym_hostname_token1] = ACTIONS(1436), + [aux_sym_identities_only_token1] = ACTIONS(1436), + [aux_sym_identity_agent_token1] = ACTIONS(1436), + [aux_sym_identity_file_token1] = ACTIONS(1436), + [aux_sym_ignore_unknown_token1] = ACTIONS(1436), + [aux_sym_include_token1] = ACTIONS(1436), + [aux_sym_ip_qos_token1] = ACTIONS(1436), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1436), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1436), + [aux_sym_kex_algorithms_token1] = ACTIONS(1436), + [aux_sym_known_hosts_command_token1] = ACTIONS(1436), + [aux_sym_local_command_token1] = ACTIONS(1436), + [aux_sym_local_forward_token1] = ACTIONS(1436), + [aux_sym_log_level_token1] = ACTIONS(1436), + [aux_sym_log_verbose_token1] = ACTIONS(1436), + [aux_sym_macs_token1] = ACTIONS(1436), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1436), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1436), + [aux_sym_password_authentication_token1] = ACTIONS(1436), + [aux_sym_permit_local_command_token1] = ACTIONS(1436), + [aux_sym_permit_remote_open_token1] = ACTIONS(1436), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1436), + [aux_sym_port_token1] = ACTIONS(1436), + [aux_sym_preferred_authentications_token1] = ACTIONS(1436), + [aux_sym_protocol_token1] = ACTIONS(1436), + [aux_sym_proxy_command_token1] = ACTIONS(1436), + [aux_sym_proxy_jump_token1] = ACTIONS(1436), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1436), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1436), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1436), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1436), + [aux_sym_rekey_limit_token1] = ACTIONS(1436), + [aux_sym_remote_command_token1] = ACTIONS(1436), + [aux_sym_remote_forward_token1] = ACTIONS(1436), + [aux_sym_request_tty_token1] = ACTIONS(1436), + [aux_sym_required_rsa_size_token1] = ACTIONS(1436), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1436), + [aux_sym_security_key_provider_token1] = ACTIONS(1436), + [aux_sym_send_env_token1] = ACTIONS(1436), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1436), + [aux_sym_server_alive_interval_token1] = ACTIONS(1436), + [aux_sym_session_type_token1] = ACTIONS(1436), + [aux_sym_set_env_token1] = ACTIONS(1436), + [aux_sym_stdin_null_token1] = ACTIONS(1436), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1436), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1436), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1436), + [aux_sym_syslog_facility_token1] = ACTIONS(1436), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1436), + [aux_sym_keep_alive_token1] = ACTIONS(1436), + [aux_sym_tunnel_token1] = ACTIONS(1438), + [aux_sym_tunnel_device_token1] = ACTIONS(1436), + [aux_sym_update_host_keys_token1] = ACTIONS(1436), + [aux_sym_use_keychain_token1] = ACTIONS(1436), + [aux_sym_use_roaming_token1] = ACTIONS(1436), + [aux_sym_user_token1] = ACTIONS(1438), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1436), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1436), + [aux_sym_visual_host_key_token1] = ACTIONS(1436), + [aux_sym_xauth_location_token1] = ACTIONS(1436), }, [150] = { - [ts_builtin_sym_end] = ACTIONS(1437), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1439), - [anon_sym_DQUOTE] = ACTIONS(1441), - [aux_sym_match_token1] = ACTIONS(1437), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1437), - [aux_sym_address_family_token1] = ACTIONS(1437), - [aux_sym_batch_mode_token1] = ACTIONS(1437), - [aux_sym_bind_address_token1] = ACTIONS(1437), - [aux_sym_bind_interface_token1] = ACTIONS(1437), - [aux_sym_canonical_domains_token1] = ACTIONS(1437), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1437), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1437), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1437), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1437), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1437), - [aux_sym_certificate_file_token1] = ACTIONS(1437), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1437), - [aux_sym_check_host_ip_token1] = ACTIONS(1437), - [aux_sym_ciphers_token1] = ACTIONS(1437), - [aux_sym_cipher_token1] = ACTIONS(1439), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1437), - [aux_sym_compression_token1] = ACTIONS(1437), - [aux_sym_connection_attempts_token1] = ACTIONS(1437), - [aux_sym_connect_timeout_token1] = ACTIONS(1437), - [aux_sym_control_master_token1] = ACTIONS(1437), - [aux_sym_control_path_token1] = ACTIONS(1437), - [aux_sym_control_persist_token1] = ACTIONS(1437), - [aux_sym_dynamic_forward_token1] = ACTIONS(1437), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1437), - [aux_sym_escape_char_token1] = ACTIONS(1437), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1437), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1437), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1437), - [aux_sym_forward_agent_token1] = ACTIONS(1437), - [aux_sym_forward_x11_token1] = ACTIONS(1439), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1437), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1437), - [aux_sym_gateway_ports_token1] = ACTIONS(1437), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1437), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1437), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1437), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1437), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1437), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1437), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1437), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1437), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1437), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1437), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1437), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1437), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1437), - [aux_sym_host_key_alias_token1] = ACTIONS(1437), - [aux_sym_hostname_token1] = ACTIONS(1437), - [aux_sym_identities_only_token1] = ACTIONS(1437), - [aux_sym_identity_agent_token1] = ACTIONS(1437), - [aux_sym_identity_file_token1] = ACTIONS(1437), - [aux_sym_ignore_unknown_token1] = ACTIONS(1437), - [aux_sym_include_token1] = ACTIONS(1437), - [aux_sym_ip_qos_token1] = ACTIONS(1437), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1437), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1437), - [aux_sym_kex_algorithms_token1] = ACTIONS(1437), - [aux_sym_known_hosts_command_token1] = ACTIONS(1437), - [aux_sym_local_command_token1] = ACTIONS(1437), - [aux_sym_local_forward_token1] = ACTIONS(1437), - [aux_sym_log_level_token1] = ACTIONS(1437), - [aux_sym_log_verbose_token1] = ACTIONS(1437), - [aux_sym_macs_token1] = ACTIONS(1437), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1437), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1437), - [aux_sym_password_authentication_token1] = ACTIONS(1437), - [aux_sym_permit_local_command_token1] = ACTIONS(1437), - [aux_sym_permit_remote_open_token1] = ACTIONS(1437), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1437), - [aux_sym_port_token1] = ACTIONS(1437), - [aux_sym_preferred_authentications_token1] = ACTIONS(1437), - [aux_sym_protocol_token1] = ACTIONS(1437), - [aux_sym_proxy_command_token1] = ACTIONS(1437), - [aux_sym_proxy_jump_token1] = ACTIONS(1437), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1437), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1437), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1437), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1437), - [aux_sym_rekey_limit_token1] = ACTIONS(1437), - [aux_sym_remote_command_token1] = ACTIONS(1437), - [aux_sym_remote_forward_token1] = ACTIONS(1437), - [aux_sym_request_tty_token1] = ACTIONS(1437), - [aux_sym_required_rsa_size_token1] = ACTIONS(1437), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1437), - [aux_sym_security_key_provider_token1] = ACTIONS(1437), - [aux_sym_send_env_token1] = ACTIONS(1437), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1437), - [aux_sym_server_alive_interval_token1] = ACTIONS(1437), - [aux_sym_session_type_token1] = ACTIONS(1437), - [aux_sym_set_env_token1] = ACTIONS(1437), - [aux_sym_stdin_null_token1] = ACTIONS(1437), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1437), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1437), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1437), - [aux_sym_syslog_facility_token1] = ACTIONS(1437), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1437), - [aux_sym_keep_alive_token1] = ACTIONS(1437), - [aux_sym_tunnel_token1] = ACTIONS(1439), - [aux_sym_tunnel_device_token1] = ACTIONS(1437), - [aux_sym_update_host_keys_token1] = ACTIONS(1437), - [aux_sym_use_keychain_token1] = ACTIONS(1437), - [aux_sym_use_roaming_token1] = ACTIONS(1437), - [aux_sym_user_token1] = ACTIONS(1439), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1437), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1437), - [aux_sym_visual_host_key_token1] = ACTIONS(1437), - [aux_sym_xauth_location_token1] = ACTIONS(1437), + [ts_builtin_sym_end] = ACTIONS(1442), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1446), + [aux_sym_match_token1] = ACTIONS(1442), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1442), + [aux_sym_address_family_token1] = ACTIONS(1442), + [aux_sym_batch_mode_token1] = ACTIONS(1442), + [aux_sym_bind_address_token1] = ACTIONS(1442), + [aux_sym_bind_interface_token1] = ACTIONS(1442), + [aux_sym_canonical_domains_token1] = ACTIONS(1442), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1442), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1442), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1442), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1442), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1442), + [aux_sym_certificate_file_token1] = ACTIONS(1442), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1442), + [aux_sym_check_host_ip_token1] = ACTIONS(1442), + [aux_sym_ciphers_token1] = ACTIONS(1442), + [aux_sym_cipher_token1] = ACTIONS(1444), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1442), + [aux_sym_compression_token1] = ACTIONS(1442), + [aux_sym_connection_attempts_token1] = ACTIONS(1442), + [aux_sym_connect_timeout_token1] = ACTIONS(1442), + [aux_sym_control_master_token1] = ACTIONS(1442), + [aux_sym_control_path_token1] = ACTIONS(1442), + [aux_sym_control_persist_token1] = ACTIONS(1442), + [aux_sym_dynamic_forward_token1] = ACTIONS(1442), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1442), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1442), + [aux_sym_escape_char_token1] = ACTIONS(1442), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1442), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1442), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1442), + [aux_sym_forward_agent_token1] = ACTIONS(1442), + [aux_sym_forward_x11_token1] = ACTIONS(1444), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1442), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1442), + [aux_sym_gateway_ports_token1] = ACTIONS(1442), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1442), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1442), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1442), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1442), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1442), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1442), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1442), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1442), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1442), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1442), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1442), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1442), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1442), + [aux_sym_host_key_alias_token1] = ACTIONS(1442), + [aux_sym_hostname_token1] = ACTIONS(1442), + [aux_sym_identities_only_token1] = ACTIONS(1442), + [aux_sym_identity_agent_token1] = ACTIONS(1442), + [aux_sym_identity_file_token1] = ACTIONS(1442), + [aux_sym_ignore_unknown_token1] = ACTIONS(1442), + [aux_sym_include_token1] = ACTIONS(1442), + [aux_sym_ip_qos_token1] = ACTIONS(1442), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1442), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1442), + [aux_sym_kex_algorithms_token1] = ACTIONS(1442), + [aux_sym_known_hosts_command_token1] = ACTIONS(1442), + [aux_sym_local_command_token1] = ACTIONS(1442), + [aux_sym_local_forward_token1] = ACTIONS(1442), + [aux_sym_log_level_token1] = ACTIONS(1442), + [aux_sym_log_verbose_token1] = ACTIONS(1442), + [aux_sym_macs_token1] = ACTIONS(1442), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1442), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1442), + [aux_sym_password_authentication_token1] = ACTIONS(1442), + [aux_sym_permit_local_command_token1] = ACTIONS(1442), + [aux_sym_permit_remote_open_token1] = ACTIONS(1442), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1442), + [aux_sym_port_token1] = ACTIONS(1442), + [aux_sym_preferred_authentications_token1] = ACTIONS(1442), + [aux_sym_protocol_token1] = ACTIONS(1442), + [aux_sym_proxy_command_token1] = ACTIONS(1442), + [aux_sym_proxy_jump_token1] = ACTIONS(1442), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1442), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1442), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1442), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1442), + [aux_sym_rekey_limit_token1] = ACTIONS(1442), + [aux_sym_remote_command_token1] = ACTIONS(1442), + [aux_sym_remote_forward_token1] = ACTIONS(1442), + [aux_sym_request_tty_token1] = ACTIONS(1442), + [aux_sym_required_rsa_size_token1] = ACTIONS(1442), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1442), + [aux_sym_security_key_provider_token1] = ACTIONS(1442), + [aux_sym_send_env_token1] = ACTIONS(1442), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1442), + [aux_sym_server_alive_interval_token1] = ACTIONS(1442), + [aux_sym_session_type_token1] = ACTIONS(1442), + [aux_sym_set_env_token1] = ACTIONS(1442), + [aux_sym_stdin_null_token1] = ACTIONS(1442), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1442), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1442), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1442), + [aux_sym_syslog_facility_token1] = ACTIONS(1442), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1442), + [aux_sym_keep_alive_token1] = ACTIONS(1442), + [aux_sym_tunnel_token1] = ACTIONS(1444), + [aux_sym_tunnel_device_token1] = ACTIONS(1442), + [aux_sym_update_host_keys_token1] = ACTIONS(1442), + [aux_sym_use_keychain_token1] = ACTIONS(1442), + [aux_sym_use_roaming_token1] = ACTIONS(1442), + [aux_sym_user_token1] = ACTIONS(1444), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1442), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1442), + [aux_sym_visual_host_key_token1] = ACTIONS(1442), + [aux_sym_xauth_location_token1] = ACTIONS(1442), }, [151] = { - [ts_builtin_sym_end] = ACTIONS(1443), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [aux_sym_match_token1] = ACTIONS(1443), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1443), - [aux_sym_address_family_token1] = ACTIONS(1443), - [aux_sym_batch_mode_token1] = ACTIONS(1443), - [aux_sym_bind_address_token1] = ACTIONS(1443), - [aux_sym_bind_interface_token1] = ACTIONS(1443), - [aux_sym_canonical_domains_token1] = ACTIONS(1443), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1443), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1443), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1443), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1443), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1443), - [aux_sym_certificate_file_token1] = ACTIONS(1443), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1443), - [aux_sym_check_host_ip_token1] = ACTIONS(1443), - [aux_sym_ciphers_token1] = ACTIONS(1443), - [aux_sym_cipher_token1] = ACTIONS(1445), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1443), - [aux_sym_compression_token1] = ACTIONS(1443), - [aux_sym_connection_attempts_token1] = ACTIONS(1443), - [aux_sym_connect_timeout_token1] = ACTIONS(1443), - [aux_sym_control_master_token1] = ACTIONS(1443), - [aux_sym_control_path_token1] = ACTIONS(1443), - [aux_sym_control_persist_token1] = ACTIONS(1443), - [aux_sym_dynamic_forward_token1] = ACTIONS(1443), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1443), - [aux_sym_escape_char_token1] = ACTIONS(1443), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1443), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1443), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1443), - [aux_sym_forward_agent_token1] = ACTIONS(1443), - [aux_sym_forward_x11_token1] = ACTIONS(1445), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1443), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1443), - [aux_sym_gateway_ports_token1] = ACTIONS(1443), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1443), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1443), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1443), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1443), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1443), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1443), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1443), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1443), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1443), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1443), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1443), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1443), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1443), - [aux_sym_host_key_alias_token1] = ACTIONS(1443), - [aux_sym_hostname_token1] = ACTIONS(1443), - [aux_sym_identities_only_token1] = ACTIONS(1443), - [aux_sym_identity_agent_token1] = ACTIONS(1443), - [aux_sym_identity_file_token1] = ACTIONS(1443), - [aux_sym_ignore_unknown_token1] = ACTIONS(1443), - [aux_sym_include_token1] = ACTIONS(1443), - [aux_sym_ip_qos_token1] = ACTIONS(1443), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1443), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1443), - [aux_sym_kex_algorithms_token1] = ACTIONS(1443), - [aux_sym_known_hosts_command_token1] = ACTIONS(1443), - [aux_sym_local_command_token1] = ACTIONS(1443), - [aux_sym_local_forward_token1] = ACTIONS(1443), - [aux_sym_log_level_token1] = ACTIONS(1443), - [aux_sym_log_verbose_token1] = ACTIONS(1443), - [aux_sym_macs_token1] = ACTIONS(1443), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1443), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1443), - [aux_sym_password_authentication_token1] = ACTIONS(1443), - [aux_sym_permit_local_command_token1] = ACTIONS(1443), - [aux_sym_permit_remote_open_token1] = ACTIONS(1443), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1443), - [aux_sym_port_token1] = ACTIONS(1443), - [aux_sym_preferred_authentications_token1] = ACTIONS(1443), - [aux_sym_protocol_token1] = ACTIONS(1443), - [aux_sym_proxy_command_token1] = ACTIONS(1443), - [aux_sym_proxy_jump_token1] = ACTIONS(1443), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1443), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1443), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1443), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1443), - [aux_sym_rekey_limit_token1] = ACTIONS(1443), - [aux_sym_remote_command_token1] = ACTIONS(1443), - [aux_sym_remote_forward_token1] = ACTIONS(1443), - [aux_sym_request_tty_token1] = ACTIONS(1443), - [aux_sym_required_rsa_size_token1] = ACTIONS(1443), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1443), - [aux_sym_security_key_provider_token1] = ACTIONS(1443), - [aux_sym_send_env_token1] = ACTIONS(1443), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1443), - [aux_sym_server_alive_interval_token1] = ACTIONS(1443), - [aux_sym_session_type_token1] = ACTIONS(1443), - [aux_sym_set_env_token1] = ACTIONS(1443), - [aux_sym_stdin_null_token1] = ACTIONS(1443), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1443), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1443), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1443), - [aux_sym_syslog_facility_token1] = ACTIONS(1443), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1443), - [aux_sym_keep_alive_token1] = ACTIONS(1443), - [aux_sym_tunnel_token1] = ACTIONS(1445), - [aux_sym_tunnel_device_token1] = ACTIONS(1443), - [aux_sym_update_host_keys_token1] = ACTIONS(1443), - [aux_sym_use_keychain_token1] = ACTIONS(1443), - [aux_sym_use_roaming_token1] = ACTIONS(1443), - [aux_sym_user_token1] = ACTIONS(1445), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1443), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1443), - [aux_sym_visual_host_key_token1] = ACTIONS(1443), - [aux_sym_xauth_location_token1] = ACTIONS(1443), + [ts_builtin_sym_end] = ACTIONS(1448), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1450), + [anon_sym_DQUOTE] = ACTIONS(1452), + [aux_sym_match_token1] = ACTIONS(1448), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1448), + [aux_sym_address_family_token1] = ACTIONS(1448), + [aux_sym_batch_mode_token1] = ACTIONS(1448), + [aux_sym_bind_address_token1] = ACTIONS(1448), + [aux_sym_bind_interface_token1] = ACTIONS(1448), + [aux_sym_canonical_domains_token1] = ACTIONS(1448), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1448), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1448), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1448), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1448), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1448), + [aux_sym_certificate_file_token1] = ACTIONS(1448), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1448), + [aux_sym_check_host_ip_token1] = ACTIONS(1448), + [aux_sym_ciphers_token1] = ACTIONS(1448), + [aux_sym_cipher_token1] = ACTIONS(1450), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1448), + [aux_sym_compression_token1] = ACTIONS(1448), + [aux_sym_connection_attempts_token1] = ACTIONS(1448), + [aux_sym_connect_timeout_token1] = ACTIONS(1448), + [aux_sym_control_master_token1] = ACTIONS(1448), + [aux_sym_control_path_token1] = ACTIONS(1448), + [aux_sym_control_persist_token1] = ACTIONS(1448), + [aux_sym_dynamic_forward_token1] = ACTIONS(1448), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1448), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1448), + [aux_sym_escape_char_token1] = ACTIONS(1448), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1448), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1448), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1448), + [aux_sym_forward_agent_token1] = ACTIONS(1448), + [aux_sym_forward_x11_token1] = ACTIONS(1450), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1448), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1448), + [aux_sym_gateway_ports_token1] = ACTIONS(1448), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1448), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1448), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1448), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1448), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1448), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1448), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1448), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1448), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1448), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1448), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1448), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1448), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1448), + [aux_sym_host_key_alias_token1] = ACTIONS(1448), + [aux_sym_hostname_token1] = ACTIONS(1448), + [aux_sym_identities_only_token1] = ACTIONS(1448), + [aux_sym_identity_agent_token1] = ACTIONS(1448), + [aux_sym_identity_file_token1] = ACTIONS(1448), + [aux_sym_ignore_unknown_token1] = ACTIONS(1448), + [aux_sym_include_token1] = ACTIONS(1448), + [aux_sym_ip_qos_token1] = ACTIONS(1448), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1448), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1448), + [aux_sym_kex_algorithms_token1] = ACTIONS(1448), + [aux_sym_known_hosts_command_token1] = ACTIONS(1448), + [aux_sym_local_command_token1] = ACTIONS(1448), + [aux_sym_local_forward_token1] = ACTIONS(1448), + [aux_sym_log_level_token1] = ACTIONS(1448), + [aux_sym_log_verbose_token1] = ACTIONS(1448), + [aux_sym_macs_token1] = ACTIONS(1448), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1448), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1448), + [aux_sym_password_authentication_token1] = ACTIONS(1448), + [aux_sym_permit_local_command_token1] = ACTIONS(1448), + [aux_sym_permit_remote_open_token1] = ACTIONS(1448), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1448), + [aux_sym_port_token1] = ACTIONS(1448), + [aux_sym_preferred_authentications_token1] = ACTIONS(1448), + [aux_sym_protocol_token1] = ACTIONS(1448), + [aux_sym_proxy_command_token1] = ACTIONS(1448), + [aux_sym_proxy_jump_token1] = ACTIONS(1448), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1448), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1448), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1448), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1448), + [aux_sym_rekey_limit_token1] = ACTIONS(1448), + [aux_sym_remote_command_token1] = ACTIONS(1448), + [aux_sym_remote_forward_token1] = ACTIONS(1448), + [aux_sym_request_tty_token1] = ACTIONS(1448), + [aux_sym_required_rsa_size_token1] = ACTIONS(1448), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1448), + [aux_sym_security_key_provider_token1] = ACTIONS(1448), + [aux_sym_send_env_token1] = ACTIONS(1448), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1448), + [aux_sym_server_alive_interval_token1] = ACTIONS(1448), + [aux_sym_session_type_token1] = ACTIONS(1448), + [aux_sym_set_env_token1] = ACTIONS(1448), + [aux_sym_stdin_null_token1] = ACTIONS(1448), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1448), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1448), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1448), + [aux_sym_syslog_facility_token1] = ACTIONS(1448), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1448), + [aux_sym_keep_alive_token1] = ACTIONS(1448), + [aux_sym_tunnel_token1] = ACTIONS(1450), + [aux_sym_tunnel_device_token1] = ACTIONS(1448), + [aux_sym_update_host_keys_token1] = ACTIONS(1448), + [aux_sym_use_keychain_token1] = ACTIONS(1448), + [aux_sym_use_roaming_token1] = ACTIONS(1448), + [aux_sym_user_token1] = ACTIONS(1450), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1448), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1448), + [aux_sym_visual_host_key_token1] = ACTIONS(1448), + [aux_sym_xauth_location_token1] = ACTIONS(1448), }, [152] = { - [ts_builtin_sym_end] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1451), - [anon_sym_DQUOTE] = ACTIONS(1453), - [aux_sym_match_token1] = ACTIONS(1449), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1449), - [aux_sym_address_family_token1] = ACTIONS(1449), - [aux_sym_batch_mode_token1] = ACTIONS(1449), - [aux_sym_bind_address_token1] = ACTIONS(1449), - [aux_sym_bind_interface_token1] = ACTIONS(1449), - [aux_sym_canonical_domains_token1] = ACTIONS(1449), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1449), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1449), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1449), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1449), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1449), - [aux_sym_certificate_file_token1] = ACTIONS(1449), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1449), - [aux_sym_check_host_ip_token1] = ACTIONS(1449), - [aux_sym_ciphers_token1] = ACTIONS(1449), - [aux_sym_cipher_token1] = ACTIONS(1451), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1449), - [aux_sym_compression_token1] = ACTIONS(1449), - [aux_sym_connection_attempts_token1] = ACTIONS(1449), - [aux_sym_connect_timeout_token1] = ACTIONS(1449), - [aux_sym_control_master_token1] = ACTIONS(1449), - [aux_sym_control_path_token1] = ACTIONS(1449), - [aux_sym_control_persist_token1] = ACTIONS(1449), - [aux_sym_dynamic_forward_token1] = ACTIONS(1449), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1449), - [aux_sym_escape_char_token1] = ACTIONS(1449), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1449), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1449), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1449), - [aux_sym_forward_agent_token1] = ACTIONS(1449), - [aux_sym_forward_x11_token1] = ACTIONS(1451), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1449), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1449), - [aux_sym_gateway_ports_token1] = ACTIONS(1449), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1449), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1449), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1449), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1449), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1449), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1449), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1449), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1449), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1449), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1449), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1449), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1449), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1449), - [aux_sym_host_key_alias_token1] = ACTIONS(1449), - [aux_sym_hostname_token1] = ACTIONS(1449), - [aux_sym_identities_only_token1] = ACTIONS(1449), - [aux_sym_identity_agent_token1] = ACTIONS(1449), - [aux_sym_identity_file_token1] = ACTIONS(1449), - [aux_sym_ignore_unknown_token1] = ACTIONS(1449), - [aux_sym_include_token1] = ACTIONS(1449), - [aux_sym_ip_qos_token1] = ACTIONS(1449), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1449), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1449), - [aux_sym_kex_algorithms_token1] = ACTIONS(1449), - [aux_sym_known_hosts_command_token1] = ACTIONS(1449), - [aux_sym_local_command_token1] = ACTIONS(1449), - [aux_sym_local_forward_token1] = ACTIONS(1449), - [aux_sym_log_level_token1] = ACTIONS(1449), - [aux_sym_log_verbose_token1] = ACTIONS(1449), - [aux_sym_macs_token1] = ACTIONS(1449), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1449), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1449), - [aux_sym_password_authentication_token1] = ACTIONS(1449), - [aux_sym_permit_local_command_token1] = ACTIONS(1449), - [aux_sym_permit_remote_open_token1] = ACTIONS(1449), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1449), - [aux_sym_port_token1] = ACTIONS(1449), - [aux_sym_preferred_authentications_token1] = ACTIONS(1449), - [aux_sym_protocol_token1] = ACTIONS(1449), - [aux_sym_proxy_command_token1] = ACTIONS(1449), - [aux_sym_proxy_jump_token1] = ACTIONS(1449), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1449), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1449), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1449), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1449), - [aux_sym_rekey_limit_token1] = ACTIONS(1449), - [aux_sym_remote_command_token1] = ACTIONS(1449), - [aux_sym_remote_forward_token1] = ACTIONS(1449), - [aux_sym_request_tty_token1] = ACTIONS(1449), - [aux_sym_required_rsa_size_token1] = ACTIONS(1449), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1449), - [aux_sym_security_key_provider_token1] = ACTIONS(1449), - [aux_sym_send_env_token1] = ACTIONS(1449), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1449), - [aux_sym_server_alive_interval_token1] = ACTIONS(1449), - [aux_sym_session_type_token1] = ACTIONS(1449), - [aux_sym_set_env_token1] = ACTIONS(1449), - [aux_sym_stdin_null_token1] = ACTIONS(1449), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1449), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1449), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1449), - [aux_sym_syslog_facility_token1] = ACTIONS(1449), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1449), - [aux_sym_keep_alive_token1] = ACTIONS(1449), - [aux_sym_tunnel_token1] = ACTIONS(1451), - [aux_sym_tunnel_device_token1] = ACTIONS(1449), - [aux_sym_update_host_keys_token1] = ACTIONS(1449), - [aux_sym_use_keychain_token1] = ACTIONS(1449), - [aux_sym_use_roaming_token1] = ACTIONS(1449), - [aux_sym_user_token1] = ACTIONS(1451), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1449), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1449), - [aux_sym_visual_host_key_token1] = ACTIONS(1449), - [aux_sym_xauth_location_token1] = ACTIONS(1449), + [ts_builtin_sym_end] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1458), + [aux_sym_match_token1] = ACTIONS(1454), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1454), + [aux_sym_address_family_token1] = ACTIONS(1454), + [aux_sym_batch_mode_token1] = ACTIONS(1454), + [aux_sym_bind_address_token1] = ACTIONS(1454), + [aux_sym_bind_interface_token1] = ACTIONS(1454), + [aux_sym_canonical_domains_token1] = ACTIONS(1454), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1454), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1454), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1454), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1454), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1454), + [aux_sym_certificate_file_token1] = ACTIONS(1454), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1454), + [aux_sym_check_host_ip_token1] = ACTIONS(1454), + [aux_sym_ciphers_token1] = ACTIONS(1454), + [aux_sym_cipher_token1] = ACTIONS(1456), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1454), + [aux_sym_compression_token1] = ACTIONS(1454), + [aux_sym_connection_attempts_token1] = ACTIONS(1454), + [aux_sym_connect_timeout_token1] = ACTIONS(1454), + [aux_sym_control_master_token1] = ACTIONS(1454), + [aux_sym_control_path_token1] = ACTIONS(1454), + [aux_sym_control_persist_token1] = ACTIONS(1454), + [aux_sym_dynamic_forward_token1] = ACTIONS(1454), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1454), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1454), + [aux_sym_escape_char_token1] = ACTIONS(1454), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1454), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1454), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1454), + [aux_sym_forward_agent_token1] = ACTIONS(1454), + [aux_sym_forward_x11_token1] = ACTIONS(1456), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1454), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1454), + [aux_sym_gateway_ports_token1] = ACTIONS(1454), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1454), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1454), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1454), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1454), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1454), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1454), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1454), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1454), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1454), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1454), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1454), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1454), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1454), + [aux_sym_host_key_alias_token1] = ACTIONS(1454), + [aux_sym_hostname_token1] = ACTIONS(1454), + [aux_sym_identities_only_token1] = ACTIONS(1454), + [aux_sym_identity_agent_token1] = ACTIONS(1454), + [aux_sym_identity_file_token1] = ACTIONS(1454), + [aux_sym_ignore_unknown_token1] = ACTIONS(1454), + [aux_sym_include_token1] = ACTIONS(1454), + [aux_sym_ip_qos_token1] = ACTIONS(1454), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1454), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1454), + [aux_sym_kex_algorithms_token1] = ACTIONS(1454), + [aux_sym_known_hosts_command_token1] = ACTIONS(1454), + [aux_sym_local_command_token1] = ACTIONS(1454), + [aux_sym_local_forward_token1] = ACTIONS(1454), + [aux_sym_log_level_token1] = ACTIONS(1454), + [aux_sym_log_verbose_token1] = ACTIONS(1454), + [aux_sym_macs_token1] = ACTIONS(1454), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1454), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1454), + [aux_sym_password_authentication_token1] = ACTIONS(1454), + [aux_sym_permit_local_command_token1] = ACTIONS(1454), + [aux_sym_permit_remote_open_token1] = ACTIONS(1454), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1454), + [aux_sym_port_token1] = ACTIONS(1454), + [aux_sym_preferred_authentications_token1] = ACTIONS(1454), + [aux_sym_protocol_token1] = ACTIONS(1454), + [aux_sym_proxy_command_token1] = ACTIONS(1454), + [aux_sym_proxy_jump_token1] = ACTIONS(1454), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1454), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1454), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1454), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1454), + [aux_sym_rekey_limit_token1] = ACTIONS(1454), + [aux_sym_remote_command_token1] = ACTIONS(1454), + [aux_sym_remote_forward_token1] = ACTIONS(1454), + [aux_sym_request_tty_token1] = ACTIONS(1454), + [aux_sym_required_rsa_size_token1] = ACTIONS(1454), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1454), + [aux_sym_security_key_provider_token1] = ACTIONS(1454), + [aux_sym_send_env_token1] = ACTIONS(1454), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1454), + [aux_sym_server_alive_interval_token1] = ACTIONS(1454), + [aux_sym_session_type_token1] = ACTIONS(1454), + [aux_sym_set_env_token1] = ACTIONS(1454), + [aux_sym_stdin_null_token1] = ACTIONS(1454), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1454), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1454), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1454), + [aux_sym_syslog_facility_token1] = ACTIONS(1454), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1454), + [aux_sym_keep_alive_token1] = ACTIONS(1454), + [aux_sym_tunnel_token1] = ACTIONS(1456), + [aux_sym_tunnel_device_token1] = ACTIONS(1454), + [aux_sym_update_host_keys_token1] = ACTIONS(1454), + [aux_sym_use_keychain_token1] = ACTIONS(1454), + [aux_sym_use_roaming_token1] = ACTIONS(1454), + [aux_sym_user_token1] = ACTIONS(1456), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1454), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1454), + [aux_sym_visual_host_key_token1] = ACTIONS(1454), + [aux_sym_xauth_location_token1] = ACTIONS(1454), }, [153] = { - [ts_builtin_sym_end] = ACTIONS(1455), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1457), - [anon_sym_DQUOTE] = ACTIONS(1459), - [aux_sym_match_token1] = ACTIONS(1455), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1455), - [aux_sym_address_family_token1] = ACTIONS(1455), - [aux_sym_batch_mode_token1] = ACTIONS(1455), - [aux_sym_bind_address_token1] = ACTIONS(1455), - [aux_sym_bind_interface_token1] = ACTIONS(1455), - [aux_sym_canonical_domains_token1] = ACTIONS(1455), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1455), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1455), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1455), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1455), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1455), - [aux_sym_certificate_file_token1] = ACTIONS(1455), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1455), - [aux_sym_check_host_ip_token1] = ACTIONS(1455), - [aux_sym_ciphers_token1] = ACTIONS(1455), - [aux_sym_cipher_token1] = ACTIONS(1457), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1455), - [aux_sym_compression_token1] = ACTIONS(1455), - [aux_sym_connection_attempts_token1] = ACTIONS(1455), - [aux_sym_connect_timeout_token1] = ACTIONS(1455), - [aux_sym_control_master_token1] = ACTIONS(1455), - [aux_sym_control_path_token1] = ACTIONS(1455), - [aux_sym_control_persist_token1] = ACTIONS(1455), - [aux_sym_dynamic_forward_token1] = ACTIONS(1455), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1455), - [aux_sym_escape_char_token1] = ACTIONS(1455), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1455), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1455), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1455), - [aux_sym_forward_agent_token1] = ACTIONS(1455), - [aux_sym_forward_x11_token1] = ACTIONS(1457), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1455), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1455), - [aux_sym_gateway_ports_token1] = ACTIONS(1455), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1455), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1455), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1455), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1455), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1455), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1455), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1455), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1455), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1455), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1455), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1455), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1455), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1455), - [aux_sym_host_key_alias_token1] = ACTIONS(1455), - [aux_sym_hostname_token1] = ACTIONS(1455), - [aux_sym_identities_only_token1] = ACTIONS(1455), - [aux_sym_identity_agent_token1] = ACTIONS(1455), - [aux_sym_identity_file_token1] = ACTIONS(1455), - [aux_sym_ignore_unknown_token1] = ACTIONS(1455), - [aux_sym_include_token1] = ACTIONS(1455), - [aux_sym_ip_qos_token1] = ACTIONS(1455), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1455), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1455), - [aux_sym_kex_algorithms_token1] = ACTIONS(1455), - [aux_sym_known_hosts_command_token1] = ACTIONS(1455), - [aux_sym_local_command_token1] = ACTIONS(1455), - [aux_sym_local_forward_token1] = ACTIONS(1455), - [aux_sym_log_level_token1] = ACTIONS(1455), - [aux_sym_log_verbose_token1] = ACTIONS(1455), - [aux_sym_macs_token1] = ACTIONS(1455), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1455), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1455), - [aux_sym_password_authentication_token1] = ACTIONS(1455), - [aux_sym_permit_local_command_token1] = ACTIONS(1455), - [aux_sym_permit_remote_open_token1] = ACTIONS(1455), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1455), - [aux_sym_port_token1] = ACTIONS(1455), - [aux_sym_preferred_authentications_token1] = ACTIONS(1455), - [aux_sym_protocol_token1] = ACTIONS(1455), - [aux_sym_proxy_command_token1] = ACTIONS(1455), - [aux_sym_proxy_jump_token1] = ACTIONS(1455), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1455), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1455), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1455), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1455), - [aux_sym_rekey_limit_token1] = ACTIONS(1455), - [aux_sym_remote_command_token1] = ACTIONS(1455), - [aux_sym_remote_forward_token1] = ACTIONS(1455), - [aux_sym_request_tty_token1] = ACTIONS(1455), - [aux_sym_required_rsa_size_token1] = ACTIONS(1455), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1455), - [aux_sym_security_key_provider_token1] = ACTIONS(1455), - [aux_sym_send_env_token1] = ACTIONS(1455), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1455), - [aux_sym_server_alive_interval_token1] = ACTIONS(1455), - [aux_sym_session_type_token1] = ACTIONS(1455), - [aux_sym_set_env_token1] = ACTIONS(1455), - [aux_sym_stdin_null_token1] = ACTIONS(1455), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1455), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1455), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1455), - [aux_sym_syslog_facility_token1] = ACTIONS(1455), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1455), - [aux_sym_keep_alive_token1] = ACTIONS(1455), - [aux_sym_tunnel_token1] = ACTIONS(1457), - [aux_sym_tunnel_device_token1] = ACTIONS(1455), - [aux_sym_update_host_keys_token1] = ACTIONS(1455), - [aux_sym_use_keychain_token1] = ACTIONS(1455), - [aux_sym_use_roaming_token1] = ACTIONS(1455), - [aux_sym_user_token1] = ACTIONS(1457), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1455), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1455), - [aux_sym_visual_host_key_token1] = ACTIONS(1455), - [aux_sym_xauth_location_token1] = ACTIONS(1455), + [ts_builtin_sym_end] = ACTIONS(1460), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1464), + [aux_sym_match_token1] = ACTIONS(1460), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1460), + [aux_sym_address_family_token1] = ACTIONS(1460), + [aux_sym_batch_mode_token1] = ACTIONS(1460), + [aux_sym_bind_address_token1] = ACTIONS(1460), + [aux_sym_bind_interface_token1] = ACTIONS(1460), + [aux_sym_canonical_domains_token1] = ACTIONS(1460), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1460), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1460), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1460), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1460), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1460), + [aux_sym_certificate_file_token1] = ACTIONS(1460), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1460), + [aux_sym_check_host_ip_token1] = ACTIONS(1460), + [aux_sym_ciphers_token1] = ACTIONS(1460), + [aux_sym_cipher_token1] = ACTIONS(1462), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1460), + [aux_sym_compression_token1] = ACTIONS(1460), + [aux_sym_connection_attempts_token1] = ACTIONS(1460), + [aux_sym_connect_timeout_token1] = ACTIONS(1460), + [aux_sym_control_master_token1] = ACTIONS(1460), + [aux_sym_control_path_token1] = ACTIONS(1460), + [aux_sym_control_persist_token1] = ACTIONS(1460), + [aux_sym_dynamic_forward_token1] = ACTIONS(1460), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1460), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1460), + [aux_sym_escape_char_token1] = ACTIONS(1460), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1460), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1460), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1460), + [aux_sym_forward_agent_token1] = ACTIONS(1460), + [aux_sym_forward_x11_token1] = ACTIONS(1462), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1460), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1460), + [aux_sym_gateway_ports_token1] = ACTIONS(1460), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1460), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1460), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1460), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1460), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1460), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1460), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1460), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1460), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1460), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1460), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1460), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1460), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1460), + [aux_sym_host_key_alias_token1] = ACTIONS(1460), + [aux_sym_hostname_token1] = ACTIONS(1460), + [aux_sym_identities_only_token1] = ACTIONS(1460), + [aux_sym_identity_agent_token1] = ACTIONS(1460), + [aux_sym_identity_file_token1] = ACTIONS(1460), + [aux_sym_ignore_unknown_token1] = ACTIONS(1460), + [aux_sym_include_token1] = ACTIONS(1460), + [aux_sym_ip_qos_token1] = ACTIONS(1460), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1460), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1460), + [aux_sym_kex_algorithms_token1] = ACTIONS(1460), + [aux_sym_known_hosts_command_token1] = ACTIONS(1460), + [aux_sym_local_command_token1] = ACTIONS(1460), + [aux_sym_local_forward_token1] = ACTIONS(1460), + [aux_sym_log_level_token1] = ACTIONS(1460), + [aux_sym_log_verbose_token1] = ACTIONS(1460), + [aux_sym_macs_token1] = ACTIONS(1460), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1460), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1460), + [aux_sym_password_authentication_token1] = ACTIONS(1460), + [aux_sym_permit_local_command_token1] = ACTIONS(1460), + [aux_sym_permit_remote_open_token1] = ACTIONS(1460), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1460), + [aux_sym_port_token1] = ACTIONS(1460), + [aux_sym_preferred_authentications_token1] = ACTIONS(1460), + [aux_sym_protocol_token1] = ACTIONS(1460), + [aux_sym_proxy_command_token1] = ACTIONS(1460), + [aux_sym_proxy_jump_token1] = ACTIONS(1460), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1460), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1460), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1460), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1460), + [aux_sym_rekey_limit_token1] = ACTIONS(1460), + [aux_sym_remote_command_token1] = ACTIONS(1460), + [aux_sym_remote_forward_token1] = ACTIONS(1460), + [aux_sym_request_tty_token1] = ACTIONS(1460), + [aux_sym_required_rsa_size_token1] = ACTIONS(1460), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1460), + [aux_sym_security_key_provider_token1] = ACTIONS(1460), + [aux_sym_send_env_token1] = ACTIONS(1460), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1460), + [aux_sym_server_alive_interval_token1] = ACTIONS(1460), + [aux_sym_session_type_token1] = ACTIONS(1460), + [aux_sym_set_env_token1] = ACTIONS(1460), + [aux_sym_stdin_null_token1] = ACTIONS(1460), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1460), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1460), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1460), + [aux_sym_syslog_facility_token1] = ACTIONS(1460), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1460), + [aux_sym_keep_alive_token1] = ACTIONS(1460), + [aux_sym_tunnel_token1] = ACTIONS(1462), + [aux_sym_tunnel_device_token1] = ACTIONS(1460), + [aux_sym_update_host_keys_token1] = ACTIONS(1460), + [aux_sym_use_keychain_token1] = ACTIONS(1460), + [aux_sym_use_roaming_token1] = ACTIONS(1460), + [aux_sym_user_token1] = ACTIONS(1462), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1460), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1460), + [aux_sym_visual_host_key_token1] = ACTIONS(1460), + [aux_sym_xauth_location_token1] = ACTIONS(1460), }, [154] = { - [ts_builtin_sym_end] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1463), - [anon_sym_DQUOTE] = ACTIONS(1465), - [aux_sym_match_token1] = ACTIONS(1461), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1461), - [aux_sym_address_family_token1] = ACTIONS(1461), - [aux_sym_batch_mode_token1] = ACTIONS(1461), - [aux_sym_bind_address_token1] = ACTIONS(1461), - [aux_sym_bind_interface_token1] = ACTIONS(1461), - [aux_sym_canonical_domains_token1] = ACTIONS(1461), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1461), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1461), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1461), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1461), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1461), - [aux_sym_certificate_file_token1] = ACTIONS(1461), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1461), - [aux_sym_check_host_ip_token1] = ACTIONS(1461), - [aux_sym_ciphers_token1] = ACTIONS(1461), - [aux_sym_cipher_token1] = ACTIONS(1463), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1461), - [aux_sym_compression_token1] = ACTIONS(1461), - [aux_sym_connection_attempts_token1] = ACTIONS(1461), - [aux_sym_connect_timeout_token1] = ACTIONS(1461), - [aux_sym_control_master_token1] = ACTIONS(1461), - [aux_sym_control_path_token1] = ACTIONS(1461), - [aux_sym_control_persist_token1] = ACTIONS(1461), - [aux_sym_dynamic_forward_token1] = ACTIONS(1461), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1461), - [aux_sym_escape_char_token1] = ACTIONS(1461), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1461), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1461), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1461), - [aux_sym_forward_agent_token1] = ACTIONS(1461), - [aux_sym_forward_x11_token1] = ACTIONS(1463), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1461), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1461), - [aux_sym_gateway_ports_token1] = ACTIONS(1461), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1461), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1461), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1461), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1461), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1461), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1461), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1461), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1461), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1461), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1461), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1461), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1461), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1461), - [aux_sym_host_key_alias_token1] = ACTIONS(1461), - [aux_sym_hostname_token1] = ACTIONS(1461), - [aux_sym_identities_only_token1] = ACTIONS(1461), - [aux_sym_identity_agent_token1] = ACTIONS(1461), - [aux_sym_identity_file_token1] = ACTIONS(1461), - [aux_sym_ignore_unknown_token1] = ACTIONS(1461), - [aux_sym_include_token1] = ACTIONS(1461), - [aux_sym_ip_qos_token1] = ACTIONS(1461), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1461), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1461), - [aux_sym_kex_algorithms_token1] = ACTIONS(1461), - [aux_sym_known_hosts_command_token1] = ACTIONS(1461), - [aux_sym_local_command_token1] = ACTIONS(1461), - [aux_sym_local_forward_token1] = ACTIONS(1461), - [aux_sym_log_level_token1] = ACTIONS(1461), - [aux_sym_log_verbose_token1] = ACTIONS(1461), - [aux_sym_macs_token1] = ACTIONS(1461), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1461), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1461), - [aux_sym_password_authentication_token1] = ACTIONS(1461), - [aux_sym_permit_local_command_token1] = ACTIONS(1461), - [aux_sym_permit_remote_open_token1] = ACTIONS(1461), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1461), - [aux_sym_port_token1] = ACTIONS(1461), - [aux_sym_preferred_authentications_token1] = ACTIONS(1461), - [aux_sym_protocol_token1] = ACTIONS(1461), - [aux_sym_proxy_command_token1] = ACTIONS(1461), - [aux_sym_proxy_jump_token1] = ACTIONS(1461), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1461), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1461), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1461), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1461), - [aux_sym_rekey_limit_token1] = ACTIONS(1461), - [aux_sym_remote_command_token1] = ACTIONS(1461), - [aux_sym_remote_forward_token1] = ACTIONS(1461), - [aux_sym_request_tty_token1] = ACTIONS(1461), - [aux_sym_required_rsa_size_token1] = ACTIONS(1461), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1461), - [aux_sym_security_key_provider_token1] = ACTIONS(1461), - [aux_sym_send_env_token1] = ACTIONS(1461), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1461), - [aux_sym_server_alive_interval_token1] = ACTIONS(1461), - [aux_sym_session_type_token1] = ACTIONS(1461), - [aux_sym_set_env_token1] = ACTIONS(1461), - [aux_sym_stdin_null_token1] = ACTIONS(1461), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1461), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1461), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1461), - [aux_sym_syslog_facility_token1] = ACTIONS(1461), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1461), - [aux_sym_keep_alive_token1] = ACTIONS(1461), - [aux_sym_tunnel_token1] = ACTIONS(1463), - [aux_sym_tunnel_device_token1] = ACTIONS(1461), - [aux_sym_update_host_keys_token1] = ACTIONS(1461), - [aux_sym_use_keychain_token1] = ACTIONS(1461), - [aux_sym_use_roaming_token1] = ACTIONS(1461), - [aux_sym_user_token1] = ACTIONS(1463), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1461), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1461), - [aux_sym_visual_host_key_token1] = ACTIONS(1461), - [aux_sym_xauth_location_token1] = ACTIONS(1461), + [ts_builtin_sym_end] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1470), + [aux_sym_match_token1] = ACTIONS(1466), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1466), + [aux_sym_address_family_token1] = ACTIONS(1466), + [aux_sym_batch_mode_token1] = ACTIONS(1466), + [aux_sym_bind_address_token1] = ACTIONS(1466), + [aux_sym_bind_interface_token1] = ACTIONS(1466), + [aux_sym_canonical_domains_token1] = ACTIONS(1466), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1466), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1466), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1466), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1466), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1466), + [aux_sym_certificate_file_token1] = ACTIONS(1466), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1466), + [aux_sym_check_host_ip_token1] = ACTIONS(1466), + [aux_sym_ciphers_token1] = ACTIONS(1466), + [aux_sym_cipher_token1] = ACTIONS(1468), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1466), + [aux_sym_compression_token1] = ACTIONS(1466), + [aux_sym_connection_attempts_token1] = ACTIONS(1466), + [aux_sym_connect_timeout_token1] = ACTIONS(1466), + [aux_sym_control_master_token1] = ACTIONS(1466), + [aux_sym_control_path_token1] = ACTIONS(1466), + [aux_sym_control_persist_token1] = ACTIONS(1466), + [aux_sym_dynamic_forward_token1] = ACTIONS(1466), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1466), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1466), + [aux_sym_escape_char_token1] = ACTIONS(1466), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1466), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1466), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1466), + [aux_sym_forward_agent_token1] = ACTIONS(1466), + [aux_sym_forward_x11_token1] = ACTIONS(1468), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1466), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1466), + [aux_sym_gateway_ports_token1] = ACTIONS(1466), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1466), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1466), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1466), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1466), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1466), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1466), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1466), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1466), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1466), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1466), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1466), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1466), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1466), + [aux_sym_host_key_alias_token1] = ACTIONS(1466), + [aux_sym_hostname_token1] = ACTIONS(1466), + [aux_sym_identities_only_token1] = ACTIONS(1466), + [aux_sym_identity_agent_token1] = ACTIONS(1466), + [aux_sym_identity_file_token1] = ACTIONS(1466), + [aux_sym_ignore_unknown_token1] = ACTIONS(1466), + [aux_sym_include_token1] = ACTIONS(1466), + [aux_sym_ip_qos_token1] = ACTIONS(1466), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1466), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1466), + [aux_sym_kex_algorithms_token1] = ACTIONS(1466), + [aux_sym_known_hosts_command_token1] = ACTIONS(1466), + [aux_sym_local_command_token1] = ACTIONS(1466), + [aux_sym_local_forward_token1] = ACTIONS(1466), + [aux_sym_log_level_token1] = ACTIONS(1466), + [aux_sym_log_verbose_token1] = ACTIONS(1466), + [aux_sym_macs_token1] = ACTIONS(1466), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1466), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1466), + [aux_sym_password_authentication_token1] = ACTIONS(1466), + [aux_sym_permit_local_command_token1] = ACTIONS(1466), + [aux_sym_permit_remote_open_token1] = ACTIONS(1466), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1466), + [aux_sym_port_token1] = ACTIONS(1466), + [aux_sym_preferred_authentications_token1] = ACTIONS(1466), + [aux_sym_protocol_token1] = ACTIONS(1466), + [aux_sym_proxy_command_token1] = ACTIONS(1466), + [aux_sym_proxy_jump_token1] = ACTIONS(1466), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1466), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1466), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1466), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1466), + [aux_sym_rekey_limit_token1] = ACTIONS(1466), + [aux_sym_remote_command_token1] = ACTIONS(1466), + [aux_sym_remote_forward_token1] = ACTIONS(1466), + [aux_sym_request_tty_token1] = ACTIONS(1466), + [aux_sym_required_rsa_size_token1] = ACTIONS(1466), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1466), + [aux_sym_security_key_provider_token1] = ACTIONS(1466), + [aux_sym_send_env_token1] = ACTIONS(1466), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1466), + [aux_sym_server_alive_interval_token1] = ACTIONS(1466), + [aux_sym_session_type_token1] = ACTIONS(1466), + [aux_sym_set_env_token1] = ACTIONS(1466), + [aux_sym_stdin_null_token1] = ACTIONS(1466), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1466), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1466), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1466), + [aux_sym_syslog_facility_token1] = ACTIONS(1466), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1466), + [aux_sym_keep_alive_token1] = ACTIONS(1466), + [aux_sym_tunnel_token1] = ACTIONS(1468), + [aux_sym_tunnel_device_token1] = ACTIONS(1466), + [aux_sym_update_host_keys_token1] = ACTIONS(1466), + [aux_sym_use_keychain_token1] = ACTIONS(1466), + [aux_sym_use_roaming_token1] = ACTIONS(1466), + [aux_sym_user_token1] = ACTIONS(1468), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1466), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1466), + [aux_sym_visual_host_key_token1] = ACTIONS(1466), + [aux_sym_xauth_location_token1] = ACTIONS(1466), }, [155] = { - [ts_builtin_sym_end] = ACTIONS(1467), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1469), - [anon_sym_DQUOTE] = ACTIONS(1471), - [aux_sym_match_token1] = ACTIONS(1467), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1467), - [aux_sym_address_family_token1] = ACTIONS(1467), - [aux_sym_batch_mode_token1] = ACTIONS(1467), - [aux_sym_bind_address_token1] = ACTIONS(1467), - [aux_sym_bind_interface_token1] = ACTIONS(1467), - [aux_sym_canonical_domains_token1] = ACTIONS(1467), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1467), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1467), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1467), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1467), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1467), - [aux_sym_certificate_file_token1] = ACTIONS(1467), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1467), - [aux_sym_check_host_ip_token1] = ACTIONS(1467), - [aux_sym_ciphers_token1] = ACTIONS(1467), - [aux_sym_cipher_token1] = ACTIONS(1469), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1467), - [aux_sym_compression_token1] = ACTIONS(1467), - [aux_sym_connection_attempts_token1] = ACTIONS(1467), - [aux_sym_connect_timeout_token1] = ACTIONS(1467), - [aux_sym_control_master_token1] = ACTIONS(1467), - [aux_sym_control_path_token1] = ACTIONS(1467), - [aux_sym_control_persist_token1] = ACTIONS(1467), - [aux_sym_dynamic_forward_token1] = ACTIONS(1467), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1467), - [aux_sym_escape_char_token1] = ACTIONS(1467), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1467), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1467), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1467), - [aux_sym_forward_agent_token1] = ACTIONS(1467), - [aux_sym_forward_x11_token1] = ACTIONS(1469), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1467), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1467), - [aux_sym_gateway_ports_token1] = ACTIONS(1467), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1467), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1467), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1467), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1467), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1467), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1467), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1467), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1467), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1467), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1467), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1467), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1467), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1467), - [aux_sym_host_key_alias_token1] = ACTIONS(1467), - [aux_sym_hostname_token1] = ACTIONS(1467), - [aux_sym_identities_only_token1] = ACTIONS(1467), - [aux_sym_identity_agent_token1] = ACTIONS(1467), - [aux_sym_identity_file_token1] = ACTIONS(1467), - [aux_sym_ignore_unknown_token1] = ACTIONS(1467), - [aux_sym_include_token1] = ACTIONS(1467), - [aux_sym_ip_qos_token1] = ACTIONS(1467), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1467), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1467), - [aux_sym_kex_algorithms_token1] = ACTIONS(1467), - [aux_sym_known_hosts_command_token1] = ACTIONS(1467), - [aux_sym_local_command_token1] = ACTIONS(1467), - [aux_sym_local_forward_token1] = ACTIONS(1467), - [aux_sym_log_level_token1] = ACTIONS(1467), - [aux_sym_log_verbose_token1] = ACTIONS(1467), - [aux_sym_macs_token1] = ACTIONS(1467), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1467), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1467), - [aux_sym_password_authentication_token1] = ACTIONS(1467), - [aux_sym_permit_local_command_token1] = ACTIONS(1467), - [aux_sym_permit_remote_open_token1] = ACTIONS(1467), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1467), - [aux_sym_port_token1] = ACTIONS(1467), - [aux_sym_preferred_authentications_token1] = ACTIONS(1467), - [aux_sym_protocol_token1] = ACTIONS(1467), - [aux_sym_proxy_command_token1] = ACTIONS(1467), - [aux_sym_proxy_jump_token1] = ACTIONS(1467), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1467), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1467), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1467), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1467), - [aux_sym_rekey_limit_token1] = ACTIONS(1467), - [aux_sym_remote_command_token1] = ACTIONS(1467), - [aux_sym_remote_forward_token1] = ACTIONS(1467), - [aux_sym_request_tty_token1] = ACTIONS(1467), - [aux_sym_required_rsa_size_token1] = ACTIONS(1467), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1467), - [aux_sym_security_key_provider_token1] = ACTIONS(1467), - [aux_sym_send_env_token1] = ACTIONS(1467), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1467), - [aux_sym_server_alive_interval_token1] = ACTIONS(1467), - [aux_sym_session_type_token1] = ACTIONS(1467), - [aux_sym_set_env_token1] = ACTIONS(1467), - [aux_sym_stdin_null_token1] = ACTIONS(1467), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1467), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1467), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1467), - [aux_sym_syslog_facility_token1] = ACTIONS(1467), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1467), - [aux_sym_keep_alive_token1] = ACTIONS(1467), - [aux_sym_tunnel_token1] = ACTIONS(1469), - [aux_sym_tunnel_device_token1] = ACTIONS(1467), - [aux_sym_update_host_keys_token1] = ACTIONS(1467), - [aux_sym_use_keychain_token1] = ACTIONS(1467), - [aux_sym_use_roaming_token1] = ACTIONS(1467), - [aux_sym_user_token1] = ACTIONS(1469), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1467), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1467), - [aux_sym_visual_host_key_token1] = ACTIONS(1467), - [aux_sym_xauth_location_token1] = ACTIONS(1467), + [ts_builtin_sym_end] = ACTIONS(1472), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1476), + [aux_sym_match_token1] = ACTIONS(1472), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1472), + [aux_sym_address_family_token1] = ACTIONS(1472), + [aux_sym_batch_mode_token1] = ACTIONS(1472), + [aux_sym_bind_address_token1] = ACTIONS(1472), + [aux_sym_bind_interface_token1] = ACTIONS(1472), + [aux_sym_canonical_domains_token1] = ACTIONS(1472), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1472), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1472), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1472), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1472), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1472), + [aux_sym_certificate_file_token1] = ACTIONS(1472), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1472), + [aux_sym_check_host_ip_token1] = ACTIONS(1472), + [aux_sym_ciphers_token1] = ACTIONS(1472), + [aux_sym_cipher_token1] = ACTIONS(1474), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1472), + [aux_sym_compression_token1] = ACTIONS(1472), + [aux_sym_connection_attempts_token1] = ACTIONS(1472), + [aux_sym_connect_timeout_token1] = ACTIONS(1472), + [aux_sym_control_master_token1] = ACTIONS(1472), + [aux_sym_control_path_token1] = ACTIONS(1472), + [aux_sym_control_persist_token1] = ACTIONS(1472), + [aux_sym_dynamic_forward_token1] = ACTIONS(1472), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1472), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1472), + [aux_sym_escape_char_token1] = ACTIONS(1472), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1472), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1472), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1472), + [aux_sym_forward_agent_token1] = ACTIONS(1472), + [aux_sym_forward_x11_token1] = ACTIONS(1474), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1472), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1472), + [aux_sym_gateway_ports_token1] = ACTIONS(1472), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1472), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1472), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1472), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1472), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1472), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1472), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1472), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1472), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1472), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1472), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1472), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1472), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1472), + [aux_sym_host_key_alias_token1] = ACTIONS(1472), + [aux_sym_hostname_token1] = ACTIONS(1472), + [aux_sym_identities_only_token1] = ACTIONS(1472), + [aux_sym_identity_agent_token1] = ACTIONS(1472), + [aux_sym_identity_file_token1] = ACTIONS(1472), + [aux_sym_ignore_unknown_token1] = ACTIONS(1472), + [aux_sym_include_token1] = ACTIONS(1472), + [aux_sym_ip_qos_token1] = ACTIONS(1472), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1472), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1472), + [aux_sym_kex_algorithms_token1] = ACTIONS(1472), + [aux_sym_known_hosts_command_token1] = ACTIONS(1472), + [aux_sym_local_command_token1] = ACTIONS(1472), + [aux_sym_local_forward_token1] = ACTIONS(1472), + [aux_sym_log_level_token1] = ACTIONS(1472), + [aux_sym_log_verbose_token1] = ACTIONS(1472), + [aux_sym_macs_token1] = ACTIONS(1472), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1472), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1472), + [aux_sym_password_authentication_token1] = ACTIONS(1472), + [aux_sym_permit_local_command_token1] = ACTIONS(1472), + [aux_sym_permit_remote_open_token1] = ACTIONS(1472), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1472), + [aux_sym_port_token1] = ACTIONS(1472), + [aux_sym_preferred_authentications_token1] = ACTIONS(1472), + [aux_sym_protocol_token1] = ACTIONS(1472), + [aux_sym_proxy_command_token1] = ACTIONS(1472), + [aux_sym_proxy_jump_token1] = ACTIONS(1472), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1472), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1472), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1472), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1472), + [aux_sym_rekey_limit_token1] = ACTIONS(1472), + [aux_sym_remote_command_token1] = ACTIONS(1472), + [aux_sym_remote_forward_token1] = ACTIONS(1472), + [aux_sym_request_tty_token1] = ACTIONS(1472), + [aux_sym_required_rsa_size_token1] = ACTIONS(1472), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1472), + [aux_sym_security_key_provider_token1] = ACTIONS(1472), + [aux_sym_send_env_token1] = ACTIONS(1472), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1472), + [aux_sym_server_alive_interval_token1] = ACTIONS(1472), + [aux_sym_session_type_token1] = ACTIONS(1472), + [aux_sym_set_env_token1] = ACTIONS(1472), + [aux_sym_stdin_null_token1] = ACTIONS(1472), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1472), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1472), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1472), + [aux_sym_syslog_facility_token1] = ACTIONS(1472), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1472), + [aux_sym_keep_alive_token1] = ACTIONS(1472), + [aux_sym_tunnel_token1] = ACTIONS(1474), + [aux_sym_tunnel_device_token1] = ACTIONS(1472), + [aux_sym_update_host_keys_token1] = ACTIONS(1472), + [aux_sym_use_keychain_token1] = ACTIONS(1472), + [aux_sym_use_roaming_token1] = ACTIONS(1472), + [aux_sym_user_token1] = ACTIONS(1474), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1472), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1472), + [aux_sym_visual_host_key_token1] = ACTIONS(1472), + [aux_sym_xauth_location_token1] = ACTIONS(1472), }, [156] = { - [ts_builtin_sym_end] = ACTIONS(1473), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [aux_sym_match_token1] = ACTIONS(1473), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1473), - [aux_sym_address_family_token1] = ACTIONS(1473), - [aux_sym_batch_mode_token1] = ACTIONS(1473), - [aux_sym_bind_address_token1] = ACTIONS(1473), - [aux_sym_bind_interface_token1] = ACTIONS(1473), - [aux_sym_canonical_domains_token1] = ACTIONS(1473), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1473), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1473), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1473), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1473), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1473), - [aux_sym_certificate_file_token1] = ACTIONS(1473), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1473), - [aux_sym_check_host_ip_token1] = ACTIONS(1473), - [aux_sym_ciphers_token1] = ACTIONS(1473), - [aux_sym_cipher_token1] = ACTIONS(1475), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1473), - [aux_sym_compression_token1] = ACTIONS(1473), - [aux_sym_connection_attempts_token1] = ACTIONS(1473), - [aux_sym_connect_timeout_token1] = ACTIONS(1473), - [aux_sym_control_master_token1] = ACTIONS(1473), - [aux_sym_control_path_token1] = ACTIONS(1473), - [aux_sym_control_persist_token1] = ACTIONS(1473), - [aux_sym_dynamic_forward_token1] = ACTIONS(1473), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1473), - [aux_sym_escape_char_token1] = ACTIONS(1473), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1473), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1473), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1473), - [aux_sym_forward_agent_token1] = ACTIONS(1473), - [aux_sym_forward_x11_token1] = ACTIONS(1475), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1473), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1473), - [aux_sym_gateway_ports_token1] = ACTIONS(1473), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1473), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1473), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1473), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1473), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1473), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1473), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1473), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1473), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1473), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1473), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1473), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1473), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1473), - [aux_sym_host_key_alias_token1] = ACTIONS(1473), - [aux_sym_hostname_token1] = ACTIONS(1473), - [aux_sym_identities_only_token1] = ACTIONS(1473), - [aux_sym_identity_agent_token1] = ACTIONS(1473), - [aux_sym_identity_file_token1] = ACTIONS(1473), - [aux_sym_ignore_unknown_token1] = ACTIONS(1473), - [aux_sym_include_token1] = ACTIONS(1473), - [aux_sym_ip_qos_token1] = ACTIONS(1473), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1473), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1473), - [aux_sym_kex_algorithms_token1] = ACTIONS(1473), - [aux_sym_known_hosts_command_token1] = ACTIONS(1473), - [aux_sym_local_command_token1] = ACTIONS(1473), - [aux_sym_local_forward_token1] = ACTIONS(1473), - [aux_sym_log_level_token1] = ACTIONS(1473), - [aux_sym_log_verbose_token1] = ACTIONS(1473), - [aux_sym_macs_token1] = ACTIONS(1473), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1473), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1473), - [aux_sym_password_authentication_token1] = ACTIONS(1473), - [aux_sym_permit_local_command_token1] = ACTIONS(1473), - [aux_sym_permit_remote_open_token1] = ACTIONS(1473), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1473), - [aux_sym_port_token1] = ACTIONS(1473), - [aux_sym_preferred_authentications_token1] = ACTIONS(1473), - [aux_sym_protocol_token1] = ACTIONS(1473), - [aux_sym_proxy_command_token1] = ACTIONS(1473), - [aux_sym_proxy_jump_token1] = ACTIONS(1473), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1473), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1473), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1473), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1473), - [aux_sym_rekey_limit_token1] = ACTIONS(1473), - [aux_sym_remote_command_token1] = ACTIONS(1473), - [aux_sym_remote_forward_token1] = ACTIONS(1473), - [aux_sym_request_tty_token1] = ACTIONS(1473), - [aux_sym_required_rsa_size_token1] = ACTIONS(1473), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1473), - [aux_sym_security_key_provider_token1] = ACTIONS(1473), - [aux_sym_send_env_token1] = ACTIONS(1473), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1473), - [aux_sym_server_alive_interval_token1] = ACTIONS(1473), - [aux_sym_session_type_token1] = ACTIONS(1473), - [aux_sym_set_env_token1] = ACTIONS(1473), - [aux_sym_stdin_null_token1] = ACTIONS(1473), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1473), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1473), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1473), - [aux_sym_syslog_facility_token1] = ACTIONS(1473), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1473), - [aux_sym_keep_alive_token1] = ACTIONS(1473), - [aux_sym_tunnel_token1] = ACTIONS(1475), - [aux_sym_tunnel_device_token1] = ACTIONS(1473), - [aux_sym_update_host_keys_token1] = ACTIONS(1473), - [aux_sym_use_keychain_token1] = ACTIONS(1473), - [aux_sym_use_roaming_token1] = ACTIONS(1473), - [aux_sym_user_token1] = ACTIONS(1475), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1473), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1473), - [aux_sym_visual_host_key_token1] = ACTIONS(1473), - [aux_sym_xauth_location_token1] = ACTIONS(1473), + [ts_builtin_sym_end] = ACTIONS(1478), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1482), + [aux_sym_match_token1] = ACTIONS(1478), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1478), + [aux_sym_address_family_token1] = ACTIONS(1478), + [aux_sym_batch_mode_token1] = ACTIONS(1478), + [aux_sym_bind_address_token1] = ACTIONS(1478), + [aux_sym_bind_interface_token1] = ACTIONS(1478), + [aux_sym_canonical_domains_token1] = ACTIONS(1478), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1478), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1478), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1478), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1478), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1478), + [aux_sym_certificate_file_token1] = ACTIONS(1478), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1478), + [aux_sym_check_host_ip_token1] = ACTIONS(1478), + [aux_sym_ciphers_token1] = ACTIONS(1478), + [aux_sym_cipher_token1] = ACTIONS(1480), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1478), + [aux_sym_compression_token1] = ACTIONS(1478), + [aux_sym_connection_attempts_token1] = ACTIONS(1478), + [aux_sym_connect_timeout_token1] = ACTIONS(1478), + [aux_sym_control_master_token1] = ACTIONS(1478), + [aux_sym_control_path_token1] = ACTIONS(1478), + [aux_sym_control_persist_token1] = ACTIONS(1478), + [aux_sym_dynamic_forward_token1] = ACTIONS(1478), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1478), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1478), + [aux_sym_escape_char_token1] = ACTIONS(1478), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1478), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1478), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1478), + [aux_sym_forward_agent_token1] = ACTIONS(1478), + [aux_sym_forward_x11_token1] = ACTIONS(1480), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1478), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1478), + [aux_sym_gateway_ports_token1] = ACTIONS(1478), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1478), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1478), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1478), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1478), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1478), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1478), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1478), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1478), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1478), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1478), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1478), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1478), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1478), + [aux_sym_host_key_alias_token1] = ACTIONS(1478), + [aux_sym_hostname_token1] = ACTIONS(1478), + [aux_sym_identities_only_token1] = ACTIONS(1478), + [aux_sym_identity_agent_token1] = ACTIONS(1478), + [aux_sym_identity_file_token1] = ACTIONS(1478), + [aux_sym_ignore_unknown_token1] = ACTIONS(1478), + [aux_sym_include_token1] = ACTIONS(1478), + [aux_sym_ip_qos_token1] = ACTIONS(1478), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1478), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1478), + [aux_sym_kex_algorithms_token1] = ACTIONS(1478), + [aux_sym_known_hosts_command_token1] = ACTIONS(1478), + [aux_sym_local_command_token1] = ACTIONS(1478), + [aux_sym_local_forward_token1] = ACTIONS(1478), + [aux_sym_log_level_token1] = ACTIONS(1478), + [aux_sym_log_verbose_token1] = ACTIONS(1478), + [aux_sym_macs_token1] = ACTIONS(1478), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1478), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1478), + [aux_sym_password_authentication_token1] = ACTIONS(1478), + [aux_sym_permit_local_command_token1] = ACTIONS(1478), + [aux_sym_permit_remote_open_token1] = ACTIONS(1478), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1478), + [aux_sym_port_token1] = ACTIONS(1478), + [aux_sym_preferred_authentications_token1] = ACTIONS(1478), + [aux_sym_protocol_token1] = ACTIONS(1478), + [aux_sym_proxy_command_token1] = ACTIONS(1478), + [aux_sym_proxy_jump_token1] = ACTIONS(1478), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1478), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1478), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1478), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1478), + [aux_sym_rekey_limit_token1] = ACTIONS(1478), + [aux_sym_remote_command_token1] = ACTIONS(1478), + [aux_sym_remote_forward_token1] = ACTIONS(1478), + [aux_sym_request_tty_token1] = ACTIONS(1478), + [aux_sym_required_rsa_size_token1] = ACTIONS(1478), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1478), + [aux_sym_security_key_provider_token1] = ACTIONS(1478), + [aux_sym_send_env_token1] = ACTIONS(1478), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1478), + [aux_sym_server_alive_interval_token1] = ACTIONS(1478), + [aux_sym_session_type_token1] = ACTIONS(1478), + [aux_sym_set_env_token1] = ACTIONS(1478), + [aux_sym_stdin_null_token1] = ACTIONS(1478), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1478), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1478), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1478), + [aux_sym_syslog_facility_token1] = ACTIONS(1478), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1478), + [aux_sym_keep_alive_token1] = ACTIONS(1478), + [aux_sym_tunnel_token1] = ACTIONS(1480), + [aux_sym_tunnel_device_token1] = ACTIONS(1478), + [aux_sym_update_host_keys_token1] = ACTIONS(1478), + [aux_sym_use_keychain_token1] = ACTIONS(1478), + [aux_sym_use_roaming_token1] = ACTIONS(1478), + [aux_sym_user_token1] = ACTIONS(1480), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1478), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1478), + [aux_sym_visual_host_key_token1] = ACTIONS(1478), + [aux_sym_xauth_location_token1] = ACTIONS(1478), }, [157] = { - [ts_builtin_sym_end] = ACTIONS(1479), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1483), - [aux_sym_match_token1] = ACTIONS(1479), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1479), - [aux_sym_address_family_token1] = ACTIONS(1479), - [aux_sym_batch_mode_token1] = ACTIONS(1479), - [aux_sym_bind_address_token1] = ACTIONS(1479), - [aux_sym_bind_interface_token1] = ACTIONS(1479), - [aux_sym_canonical_domains_token1] = ACTIONS(1479), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1479), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1479), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1479), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1479), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1479), - [aux_sym_certificate_file_token1] = ACTIONS(1479), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1479), - [aux_sym_check_host_ip_token1] = ACTIONS(1479), - [aux_sym_ciphers_token1] = ACTIONS(1479), - [aux_sym_cipher_token1] = ACTIONS(1481), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1479), - [aux_sym_compression_token1] = ACTIONS(1479), - [aux_sym_connection_attempts_token1] = ACTIONS(1479), - [aux_sym_connect_timeout_token1] = ACTIONS(1479), - [aux_sym_control_master_token1] = ACTIONS(1479), - [aux_sym_control_path_token1] = ACTIONS(1479), - [aux_sym_control_persist_token1] = ACTIONS(1479), - [aux_sym_dynamic_forward_token1] = ACTIONS(1479), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1479), - [aux_sym_escape_char_token1] = ACTIONS(1479), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1479), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1479), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1479), - [aux_sym_forward_agent_token1] = ACTIONS(1479), - [aux_sym_forward_x11_token1] = ACTIONS(1481), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1479), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1479), - [aux_sym_gateway_ports_token1] = ACTIONS(1479), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1479), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1479), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1479), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1479), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1479), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1479), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1479), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1479), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1479), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1479), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1479), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1479), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1479), - [aux_sym_host_key_alias_token1] = ACTIONS(1479), - [aux_sym_hostname_token1] = ACTIONS(1479), - [aux_sym_identities_only_token1] = ACTIONS(1479), - [aux_sym_identity_agent_token1] = ACTIONS(1479), - [aux_sym_identity_file_token1] = ACTIONS(1479), - [aux_sym_ignore_unknown_token1] = ACTIONS(1479), - [aux_sym_include_token1] = ACTIONS(1479), - [aux_sym_ip_qos_token1] = ACTIONS(1479), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1479), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1479), - [aux_sym_kex_algorithms_token1] = ACTIONS(1479), - [aux_sym_known_hosts_command_token1] = ACTIONS(1479), - [aux_sym_local_command_token1] = ACTIONS(1479), - [aux_sym_local_forward_token1] = ACTIONS(1479), - [aux_sym_log_level_token1] = ACTIONS(1479), - [aux_sym_log_verbose_token1] = ACTIONS(1479), - [aux_sym_macs_token1] = ACTIONS(1479), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1479), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1479), - [aux_sym_password_authentication_token1] = ACTIONS(1479), - [aux_sym_permit_local_command_token1] = ACTIONS(1479), - [aux_sym_permit_remote_open_token1] = ACTIONS(1479), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1479), - [aux_sym_port_token1] = ACTIONS(1479), - [aux_sym_preferred_authentications_token1] = ACTIONS(1479), - [aux_sym_protocol_token1] = ACTIONS(1479), - [aux_sym_proxy_command_token1] = ACTIONS(1479), - [aux_sym_proxy_jump_token1] = ACTIONS(1479), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1479), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1479), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1479), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1479), - [aux_sym_rekey_limit_token1] = ACTIONS(1479), - [aux_sym_remote_command_token1] = ACTIONS(1479), - [aux_sym_remote_forward_token1] = ACTIONS(1479), - [aux_sym_request_tty_token1] = ACTIONS(1479), - [aux_sym_required_rsa_size_token1] = ACTIONS(1479), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1479), - [aux_sym_security_key_provider_token1] = ACTIONS(1479), - [aux_sym_send_env_token1] = ACTIONS(1479), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1479), - [aux_sym_server_alive_interval_token1] = ACTIONS(1479), - [aux_sym_session_type_token1] = ACTIONS(1479), - [aux_sym_set_env_token1] = ACTIONS(1479), - [aux_sym_stdin_null_token1] = ACTIONS(1479), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1479), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1479), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1479), - [aux_sym_syslog_facility_token1] = ACTIONS(1479), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1479), - [aux_sym_keep_alive_token1] = ACTIONS(1479), - [aux_sym_tunnel_token1] = ACTIONS(1481), - [aux_sym_tunnel_device_token1] = ACTIONS(1479), - [aux_sym_update_host_keys_token1] = ACTIONS(1479), - [aux_sym_use_keychain_token1] = ACTIONS(1479), - [aux_sym_use_roaming_token1] = ACTIONS(1479), - [aux_sym_user_token1] = ACTIONS(1481), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1479), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1479), - [aux_sym_visual_host_key_token1] = ACTIONS(1479), - [aux_sym_xauth_location_token1] = ACTIONS(1479), + [ts_builtin_sym_end] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1488), + [aux_sym_match_token1] = ACTIONS(1484), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1484), + [aux_sym_address_family_token1] = ACTIONS(1484), + [aux_sym_batch_mode_token1] = ACTIONS(1484), + [aux_sym_bind_address_token1] = ACTIONS(1484), + [aux_sym_bind_interface_token1] = ACTIONS(1484), + [aux_sym_canonical_domains_token1] = ACTIONS(1484), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1484), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1484), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1484), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1484), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1484), + [aux_sym_certificate_file_token1] = ACTIONS(1484), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1484), + [aux_sym_check_host_ip_token1] = ACTIONS(1484), + [aux_sym_ciphers_token1] = ACTIONS(1484), + [aux_sym_cipher_token1] = ACTIONS(1486), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1484), + [aux_sym_compression_token1] = ACTIONS(1484), + [aux_sym_connection_attempts_token1] = ACTIONS(1484), + [aux_sym_connect_timeout_token1] = ACTIONS(1484), + [aux_sym_control_master_token1] = ACTIONS(1484), + [aux_sym_control_path_token1] = ACTIONS(1484), + [aux_sym_control_persist_token1] = ACTIONS(1484), + [aux_sym_dynamic_forward_token1] = ACTIONS(1484), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1484), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1484), + [aux_sym_escape_char_token1] = ACTIONS(1484), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1484), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1484), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1484), + [aux_sym_forward_agent_token1] = ACTIONS(1484), + [aux_sym_forward_x11_token1] = ACTIONS(1486), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1484), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1484), + [aux_sym_gateway_ports_token1] = ACTIONS(1484), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1484), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1484), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1484), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1484), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1484), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1484), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1484), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1484), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1484), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1484), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1484), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1484), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1484), + [aux_sym_host_key_alias_token1] = ACTIONS(1484), + [aux_sym_hostname_token1] = ACTIONS(1484), + [aux_sym_identities_only_token1] = ACTIONS(1484), + [aux_sym_identity_agent_token1] = ACTIONS(1484), + [aux_sym_identity_file_token1] = ACTIONS(1484), + [aux_sym_ignore_unknown_token1] = ACTIONS(1484), + [aux_sym_include_token1] = ACTIONS(1484), + [aux_sym_ip_qos_token1] = ACTIONS(1484), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1484), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1484), + [aux_sym_kex_algorithms_token1] = ACTIONS(1484), + [aux_sym_known_hosts_command_token1] = ACTIONS(1484), + [aux_sym_local_command_token1] = ACTIONS(1484), + [aux_sym_local_forward_token1] = ACTIONS(1484), + [aux_sym_log_level_token1] = ACTIONS(1484), + [aux_sym_log_verbose_token1] = ACTIONS(1484), + [aux_sym_macs_token1] = ACTIONS(1484), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1484), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1484), + [aux_sym_password_authentication_token1] = ACTIONS(1484), + [aux_sym_permit_local_command_token1] = ACTIONS(1484), + [aux_sym_permit_remote_open_token1] = ACTIONS(1484), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1484), + [aux_sym_port_token1] = ACTIONS(1484), + [aux_sym_preferred_authentications_token1] = ACTIONS(1484), + [aux_sym_protocol_token1] = ACTIONS(1484), + [aux_sym_proxy_command_token1] = ACTIONS(1484), + [aux_sym_proxy_jump_token1] = ACTIONS(1484), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1484), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1484), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1484), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1484), + [aux_sym_rekey_limit_token1] = ACTIONS(1484), + [aux_sym_remote_command_token1] = ACTIONS(1484), + [aux_sym_remote_forward_token1] = ACTIONS(1484), + [aux_sym_request_tty_token1] = ACTIONS(1484), + [aux_sym_required_rsa_size_token1] = ACTIONS(1484), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1484), + [aux_sym_security_key_provider_token1] = ACTIONS(1484), + [aux_sym_send_env_token1] = ACTIONS(1484), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1484), + [aux_sym_server_alive_interval_token1] = ACTIONS(1484), + [aux_sym_session_type_token1] = ACTIONS(1484), + [aux_sym_set_env_token1] = ACTIONS(1484), + [aux_sym_stdin_null_token1] = ACTIONS(1484), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1484), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1484), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1484), + [aux_sym_syslog_facility_token1] = ACTIONS(1484), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1484), + [aux_sym_keep_alive_token1] = ACTIONS(1484), + [aux_sym_tunnel_token1] = ACTIONS(1486), + [aux_sym_tunnel_device_token1] = ACTIONS(1484), + [aux_sym_update_host_keys_token1] = ACTIONS(1484), + [aux_sym_use_keychain_token1] = ACTIONS(1484), + [aux_sym_use_roaming_token1] = ACTIONS(1484), + [aux_sym_user_token1] = ACTIONS(1486), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1484), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1484), + [aux_sym_visual_host_key_token1] = ACTIONS(1484), + [aux_sym_xauth_location_token1] = ACTIONS(1484), }, [158] = { - [ts_builtin_sym_end] = ACTIONS(1485), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1487), - [anon_sym_DQUOTE] = ACTIONS(1489), - [aux_sym_match_token1] = ACTIONS(1485), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1485), - [aux_sym_address_family_token1] = ACTIONS(1485), - [aux_sym_batch_mode_token1] = ACTIONS(1485), - [aux_sym_bind_address_token1] = ACTIONS(1485), - [aux_sym_bind_interface_token1] = ACTIONS(1485), - [aux_sym_canonical_domains_token1] = ACTIONS(1485), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1485), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1485), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1485), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1485), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1485), - [aux_sym_certificate_file_token1] = ACTIONS(1485), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1485), - [aux_sym_check_host_ip_token1] = ACTIONS(1485), - [aux_sym_ciphers_token1] = ACTIONS(1485), - [aux_sym_cipher_token1] = ACTIONS(1487), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1485), - [aux_sym_compression_token1] = ACTIONS(1485), - [aux_sym_connection_attempts_token1] = ACTIONS(1485), - [aux_sym_connect_timeout_token1] = ACTIONS(1485), - [aux_sym_control_master_token1] = ACTIONS(1485), - [aux_sym_control_path_token1] = ACTIONS(1485), - [aux_sym_control_persist_token1] = ACTIONS(1485), - [aux_sym_dynamic_forward_token1] = ACTIONS(1485), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1485), - [aux_sym_escape_char_token1] = ACTIONS(1485), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1485), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1485), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1485), - [aux_sym_forward_agent_token1] = ACTIONS(1485), - [aux_sym_forward_x11_token1] = ACTIONS(1487), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1485), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1485), - [aux_sym_gateway_ports_token1] = ACTIONS(1485), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1485), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1485), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1485), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1485), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1485), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1485), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1485), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1485), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1485), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1485), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1485), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1485), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1485), - [aux_sym_host_key_alias_token1] = ACTIONS(1485), - [aux_sym_hostname_token1] = ACTIONS(1485), - [aux_sym_identities_only_token1] = ACTIONS(1485), - [aux_sym_identity_agent_token1] = ACTIONS(1485), - [aux_sym_identity_file_token1] = ACTIONS(1485), - [aux_sym_ignore_unknown_token1] = ACTIONS(1485), - [aux_sym_include_token1] = ACTIONS(1485), - [aux_sym_ip_qos_token1] = ACTIONS(1485), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1485), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1485), - [aux_sym_kex_algorithms_token1] = ACTIONS(1485), - [aux_sym_known_hosts_command_token1] = ACTIONS(1485), - [aux_sym_local_command_token1] = ACTIONS(1485), - [aux_sym_local_forward_token1] = ACTIONS(1485), - [aux_sym_log_level_token1] = ACTIONS(1485), - [aux_sym_log_verbose_token1] = ACTIONS(1485), - [aux_sym_macs_token1] = ACTIONS(1485), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1485), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1485), - [aux_sym_password_authentication_token1] = ACTIONS(1485), - [aux_sym_permit_local_command_token1] = ACTIONS(1485), - [aux_sym_permit_remote_open_token1] = ACTIONS(1485), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1485), - [aux_sym_port_token1] = ACTIONS(1485), - [aux_sym_preferred_authentications_token1] = ACTIONS(1485), - [aux_sym_protocol_token1] = ACTIONS(1485), - [aux_sym_proxy_command_token1] = ACTIONS(1485), - [aux_sym_proxy_jump_token1] = ACTIONS(1485), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1485), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1485), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1485), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1485), - [aux_sym_rekey_limit_token1] = ACTIONS(1485), - [aux_sym_remote_command_token1] = ACTIONS(1485), - [aux_sym_remote_forward_token1] = ACTIONS(1485), - [aux_sym_request_tty_token1] = ACTIONS(1485), - [aux_sym_required_rsa_size_token1] = ACTIONS(1485), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1485), - [aux_sym_security_key_provider_token1] = ACTIONS(1485), - [aux_sym_send_env_token1] = ACTIONS(1485), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1485), - [aux_sym_server_alive_interval_token1] = ACTIONS(1485), - [aux_sym_session_type_token1] = ACTIONS(1485), - [aux_sym_set_env_token1] = ACTIONS(1485), - [aux_sym_stdin_null_token1] = ACTIONS(1485), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1485), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1485), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1485), - [aux_sym_syslog_facility_token1] = ACTIONS(1485), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1485), - [aux_sym_keep_alive_token1] = ACTIONS(1485), - [aux_sym_tunnel_token1] = ACTIONS(1487), - [aux_sym_tunnel_device_token1] = ACTIONS(1485), - [aux_sym_update_host_keys_token1] = ACTIONS(1485), - [aux_sym_use_keychain_token1] = ACTIONS(1485), - [aux_sym_use_roaming_token1] = ACTIONS(1485), - [aux_sym_user_token1] = ACTIONS(1487), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1485), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1485), - [aux_sym_visual_host_key_token1] = ACTIONS(1485), - [aux_sym_xauth_location_token1] = ACTIONS(1485), + [ts_builtin_sym_end] = ACTIONS(1490), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1494), + [aux_sym_match_token1] = ACTIONS(1490), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1490), + [aux_sym_address_family_token1] = ACTIONS(1490), + [aux_sym_batch_mode_token1] = ACTIONS(1490), + [aux_sym_bind_address_token1] = ACTIONS(1490), + [aux_sym_bind_interface_token1] = ACTIONS(1490), + [aux_sym_canonical_domains_token1] = ACTIONS(1490), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1490), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1490), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1490), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1490), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1490), + [aux_sym_certificate_file_token1] = ACTIONS(1490), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1490), + [aux_sym_check_host_ip_token1] = ACTIONS(1490), + [aux_sym_ciphers_token1] = ACTIONS(1490), + [aux_sym_cipher_token1] = ACTIONS(1492), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1490), + [aux_sym_compression_token1] = ACTIONS(1490), + [aux_sym_connection_attempts_token1] = ACTIONS(1490), + [aux_sym_connect_timeout_token1] = ACTIONS(1490), + [aux_sym_control_master_token1] = ACTIONS(1490), + [aux_sym_control_path_token1] = ACTIONS(1490), + [aux_sym_control_persist_token1] = ACTIONS(1490), + [aux_sym_dynamic_forward_token1] = ACTIONS(1490), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1490), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1490), + [aux_sym_escape_char_token1] = ACTIONS(1490), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1490), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1490), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1490), + [aux_sym_forward_agent_token1] = ACTIONS(1490), + [aux_sym_forward_x11_token1] = ACTIONS(1492), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1490), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1490), + [aux_sym_gateway_ports_token1] = ACTIONS(1490), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1490), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1490), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1490), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1490), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1490), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1490), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1490), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1490), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1490), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1490), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1490), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1490), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1490), + [aux_sym_host_key_alias_token1] = ACTIONS(1490), + [aux_sym_hostname_token1] = ACTIONS(1490), + [aux_sym_identities_only_token1] = ACTIONS(1490), + [aux_sym_identity_agent_token1] = ACTIONS(1490), + [aux_sym_identity_file_token1] = ACTIONS(1490), + [aux_sym_ignore_unknown_token1] = ACTIONS(1490), + [aux_sym_include_token1] = ACTIONS(1490), + [aux_sym_ip_qos_token1] = ACTIONS(1490), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1490), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1490), + [aux_sym_kex_algorithms_token1] = ACTIONS(1490), + [aux_sym_known_hosts_command_token1] = ACTIONS(1490), + [aux_sym_local_command_token1] = ACTIONS(1490), + [aux_sym_local_forward_token1] = ACTIONS(1490), + [aux_sym_log_level_token1] = ACTIONS(1490), + [aux_sym_log_verbose_token1] = ACTIONS(1490), + [aux_sym_macs_token1] = ACTIONS(1490), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1490), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1490), + [aux_sym_password_authentication_token1] = ACTIONS(1490), + [aux_sym_permit_local_command_token1] = ACTIONS(1490), + [aux_sym_permit_remote_open_token1] = ACTIONS(1490), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1490), + [aux_sym_port_token1] = ACTIONS(1490), + [aux_sym_preferred_authentications_token1] = ACTIONS(1490), + [aux_sym_protocol_token1] = ACTIONS(1490), + [aux_sym_proxy_command_token1] = ACTIONS(1490), + [aux_sym_proxy_jump_token1] = ACTIONS(1490), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1490), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1490), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1490), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1490), + [aux_sym_rekey_limit_token1] = ACTIONS(1490), + [aux_sym_remote_command_token1] = ACTIONS(1490), + [aux_sym_remote_forward_token1] = ACTIONS(1490), + [aux_sym_request_tty_token1] = ACTIONS(1490), + [aux_sym_required_rsa_size_token1] = ACTIONS(1490), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1490), + [aux_sym_security_key_provider_token1] = ACTIONS(1490), + [aux_sym_send_env_token1] = ACTIONS(1490), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1490), + [aux_sym_server_alive_interval_token1] = ACTIONS(1490), + [aux_sym_session_type_token1] = ACTIONS(1490), + [aux_sym_set_env_token1] = ACTIONS(1490), + [aux_sym_stdin_null_token1] = ACTIONS(1490), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1490), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1490), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1490), + [aux_sym_syslog_facility_token1] = ACTIONS(1490), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1490), + [aux_sym_keep_alive_token1] = ACTIONS(1490), + [aux_sym_tunnel_token1] = ACTIONS(1492), + [aux_sym_tunnel_device_token1] = ACTIONS(1490), + [aux_sym_update_host_keys_token1] = ACTIONS(1490), + [aux_sym_use_keychain_token1] = ACTIONS(1490), + [aux_sym_use_roaming_token1] = ACTIONS(1490), + [aux_sym_user_token1] = ACTIONS(1492), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1490), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1490), + [aux_sym_visual_host_key_token1] = ACTIONS(1490), + [aux_sym_xauth_location_token1] = ACTIONS(1490), }, [159] = { - [ts_builtin_sym_end] = ACTIONS(1491), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1493), - [anon_sym_DQUOTE] = ACTIONS(1495), - [aux_sym_match_token1] = ACTIONS(1491), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1491), - [aux_sym_address_family_token1] = ACTIONS(1491), - [aux_sym_batch_mode_token1] = ACTIONS(1491), - [aux_sym_bind_address_token1] = ACTIONS(1491), - [aux_sym_bind_interface_token1] = ACTIONS(1491), - [aux_sym_canonical_domains_token1] = ACTIONS(1491), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1491), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1491), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1491), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1491), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1491), - [aux_sym_certificate_file_token1] = ACTIONS(1491), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1491), - [aux_sym_check_host_ip_token1] = ACTIONS(1491), - [aux_sym_ciphers_token1] = ACTIONS(1491), - [aux_sym_cipher_token1] = ACTIONS(1493), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1491), - [aux_sym_compression_token1] = ACTIONS(1491), - [aux_sym_connection_attempts_token1] = ACTIONS(1491), - [aux_sym_connect_timeout_token1] = ACTIONS(1491), - [aux_sym_control_master_token1] = ACTIONS(1491), - [aux_sym_control_path_token1] = ACTIONS(1491), - [aux_sym_control_persist_token1] = ACTIONS(1491), - [aux_sym_dynamic_forward_token1] = ACTIONS(1491), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1491), - [aux_sym_escape_char_token1] = ACTIONS(1491), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1491), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1491), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1491), - [aux_sym_forward_agent_token1] = ACTIONS(1491), - [aux_sym_forward_x11_token1] = ACTIONS(1493), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1491), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1491), - [aux_sym_gateway_ports_token1] = ACTIONS(1491), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1491), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1491), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1491), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1491), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1491), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1491), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1491), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1491), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1491), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1491), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1491), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1491), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1491), - [aux_sym_host_key_alias_token1] = ACTIONS(1491), - [aux_sym_hostname_token1] = ACTIONS(1491), - [aux_sym_identities_only_token1] = ACTIONS(1491), - [aux_sym_identity_agent_token1] = ACTIONS(1491), - [aux_sym_identity_file_token1] = ACTIONS(1491), - [aux_sym_ignore_unknown_token1] = ACTIONS(1491), - [aux_sym_include_token1] = ACTIONS(1491), - [aux_sym_ip_qos_token1] = ACTIONS(1491), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1491), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1491), - [aux_sym_kex_algorithms_token1] = ACTIONS(1491), - [aux_sym_known_hosts_command_token1] = ACTIONS(1491), - [aux_sym_local_command_token1] = ACTIONS(1491), - [aux_sym_local_forward_token1] = ACTIONS(1491), - [aux_sym_log_level_token1] = ACTIONS(1491), - [aux_sym_log_verbose_token1] = ACTIONS(1491), - [aux_sym_macs_token1] = ACTIONS(1491), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1491), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1491), - [aux_sym_password_authentication_token1] = ACTIONS(1491), - [aux_sym_permit_local_command_token1] = ACTIONS(1491), - [aux_sym_permit_remote_open_token1] = ACTIONS(1491), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1491), - [aux_sym_port_token1] = ACTIONS(1491), - [aux_sym_preferred_authentications_token1] = ACTIONS(1491), - [aux_sym_protocol_token1] = ACTIONS(1491), - [aux_sym_proxy_command_token1] = ACTIONS(1491), - [aux_sym_proxy_jump_token1] = ACTIONS(1491), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1491), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1491), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1491), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1491), - [aux_sym_rekey_limit_token1] = ACTIONS(1491), - [aux_sym_remote_command_token1] = ACTIONS(1491), - [aux_sym_remote_forward_token1] = ACTIONS(1491), - [aux_sym_request_tty_token1] = ACTIONS(1491), - [aux_sym_required_rsa_size_token1] = ACTIONS(1491), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1491), - [aux_sym_security_key_provider_token1] = ACTIONS(1491), - [aux_sym_send_env_token1] = ACTIONS(1491), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1491), - [aux_sym_server_alive_interval_token1] = ACTIONS(1491), - [aux_sym_session_type_token1] = ACTIONS(1491), - [aux_sym_set_env_token1] = ACTIONS(1491), - [aux_sym_stdin_null_token1] = ACTIONS(1491), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1491), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1491), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1491), - [aux_sym_syslog_facility_token1] = ACTIONS(1491), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1491), - [aux_sym_keep_alive_token1] = ACTIONS(1491), - [aux_sym_tunnel_token1] = ACTIONS(1493), - [aux_sym_tunnel_device_token1] = ACTIONS(1491), - [aux_sym_update_host_keys_token1] = ACTIONS(1491), - [aux_sym_use_keychain_token1] = ACTIONS(1491), - [aux_sym_use_roaming_token1] = ACTIONS(1491), - [aux_sym_user_token1] = ACTIONS(1493), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1491), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1491), - [aux_sym_visual_host_key_token1] = ACTIONS(1491), - [aux_sym_xauth_location_token1] = ACTIONS(1491), + [ts_builtin_sym_end] = ACTIONS(1496), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1500), + [aux_sym_match_token1] = ACTIONS(1496), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1496), + [aux_sym_address_family_token1] = ACTIONS(1496), + [aux_sym_batch_mode_token1] = ACTIONS(1496), + [aux_sym_bind_address_token1] = ACTIONS(1496), + [aux_sym_bind_interface_token1] = ACTIONS(1496), + [aux_sym_canonical_domains_token1] = ACTIONS(1496), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1496), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1496), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1496), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1496), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1496), + [aux_sym_certificate_file_token1] = ACTIONS(1496), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1496), + [aux_sym_check_host_ip_token1] = ACTIONS(1496), + [aux_sym_ciphers_token1] = ACTIONS(1496), + [aux_sym_cipher_token1] = ACTIONS(1498), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1496), + [aux_sym_compression_token1] = ACTIONS(1496), + [aux_sym_connection_attempts_token1] = ACTIONS(1496), + [aux_sym_connect_timeout_token1] = ACTIONS(1496), + [aux_sym_control_master_token1] = ACTIONS(1496), + [aux_sym_control_path_token1] = ACTIONS(1496), + [aux_sym_control_persist_token1] = ACTIONS(1496), + [aux_sym_dynamic_forward_token1] = ACTIONS(1496), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1496), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1496), + [aux_sym_escape_char_token1] = ACTIONS(1496), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1496), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1496), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1496), + [aux_sym_forward_agent_token1] = ACTIONS(1496), + [aux_sym_forward_x11_token1] = ACTIONS(1498), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1496), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1496), + [aux_sym_gateway_ports_token1] = ACTIONS(1496), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1496), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1496), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1496), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1496), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1496), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1496), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1496), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1496), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1496), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1496), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1496), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1496), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1496), + [aux_sym_host_key_alias_token1] = ACTIONS(1496), + [aux_sym_hostname_token1] = ACTIONS(1496), + [aux_sym_identities_only_token1] = ACTIONS(1496), + [aux_sym_identity_agent_token1] = ACTIONS(1496), + [aux_sym_identity_file_token1] = ACTIONS(1496), + [aux_sym_ignore_unknown_token1] = ACTIONS(1496), + [aux_sym_include_token1] = ACTIONS(1496), + [aux_sym_ip_qos_token1] = ACTIONS(1496), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1496), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1496), + [aux_sym_kex_algorithms_token1] = ACTIONS(1496), + [aux_sym_known_hosts_command_token1] = ACTIONS(1496), + [aux_sym_local_command_token1] = ACTIONS(1496), + [aux_sym_local_forward_token1] = ACTIONS(1496), + [aux_sym_log_level_token1] = ACTIONS(1496), + [aux_sym_log_verbose_token1] = ACTIONS(1496), + [aux_sym_macs_token1] = ACTIONS(1496), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1496), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1496), + [aux_sym_password_authentication_token1] = ACTIONS(1496), + [aux_sym_permit_local_command_token1] = ACTIONS(1496), + [aux_sym_permit_remote_open_token1] = ACTIONS(1496), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1496), + [aux_sym_port_token1] = ACTIONS(1496), + [aux_sym_preferred_authentications_token1] = ACTIONS(1496), + [aux_sym_protocol_token1] = ACTIONS(1496), + [aux_sym_proxy_command_token1] = ACTIONS(1496), + [aux_sym_proxy_jump_token1] = ACTIONS(1496), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1496), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1496), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1496), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1496), + [aux_sym_rekey_limit_token1] = ACTIONS(1496), + [aux_sym_remote_command_token1] = ACTIONS(1496), + [aux_sym_remote_forward_token1] = ACTIONS(1496), + [aux_sym_request_tty_token1] = ACTIONS(1496), + [aux_sym_required_rsa_size_token1] = ACTIONS(1496), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1496), + [aux_sym_security_key_provider_token1] = ACTIONS(1496), + [aux_sym_send_env_token1] = ACTIONS(1496), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1496), + [aux_sym_server_alive_interval_token1] = ACTIONS(1496), + [aux_sym_session_type_token1] = ACTIONS(1496), + [aux_sym_set_env_token1] = ACTIONS(1496), + [aux_sym_stdin_null_token1] = ACTIONS(1496), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1496), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1496), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1496), + [aux_sym_syslog_facility_token1] = ACTIONS(1496), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1496), + [aux_sym_keep_alive_token1] = ACTIONS(1496), + [aux_sym_tunnel_token1] = ACTIONS(1498), + [aux_sym_tunnel_device_token1] = ACTIONS(1496), + [aux_sym_update_host_keys_token1] = ACTIONS(1496), + [aux_sym_use_keychain_token1] = ACTIONS(1496), + [aux_sym_use_roaming_token1] = ACTIONS(1496), + [aux_sym_user_token1] = ACTIONS(1498), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1496), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1496), + [aux_sym_visual_host_key_token1] = ACTIONS(1496), + [aux_sym_xauth_location_token1] = ACTIONS(1496), }, [160] = { - [ts_builtin_sym_end] = ACTIONS(1497), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1499), - [anon_sym_DQUOTE] = ACTIONS(1501), - [aux_sym_match_token1] = ACTIONS(1497), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1497), - [aux_sym_address_family_token1] = ACTIONS(1497), - [aux_sym_batch_mode_token1] = ACTIONS(1497), - [aux_sym_bind_address_token1] = ACTIONS(1497), - [aux_sym_bind_interface_token1] = ACTIONS(1497), - [aux_sym_canonical_domains_token1] = ACTIONS(1497), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1497), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1497), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1497), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1497), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1497), - [aux_sym_certificate_file_token1] = ACTIONS(1497), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1497), - [aux_sym_check_host_ip_token1] = ACTIONS(1497), - [aux_sym_ciphers_token1] = ACTIONS(1497), - [aux_sym_cipher_token1] = ACTIONS(1499), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1497), - [aux_sym_compression_token1] = ACTIONS(1497), - [aux_sym_connection_attempts_token1] = ACTIONS(1497), - [aux_sym_connect_timeout_token1] = ACTIONS(1497), - [aux_sym_control_master_token1] = ACTIONS(1497), - [aux_sym_control_path_token1] = ACTIONS(1497), - [aux_sym_control_persist_token1] = ACTIONS(1497), - [aux_sym_dynamic_forward_token1] = ACTIONS(1497), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1497), - [aux_sym_escape_char_token1] = ACTIONS(1497), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1497), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1497), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1497), - [aux_sym_forward_agent_token1] = ACTIONS(1497), - [aux_sym_forward_x11_token1] = ACTIONS(1499), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1497), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1497), - [aux_sym_gateway_ports_token1] = ACTIONS(1497), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1497), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1497), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1497), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1497), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1497), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1497), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1497), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1497), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1497), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1497), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1497), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1497), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1497), - [aux_sym_host_key_alias_token1] = ACTIONS(1497), - [aux_sym_hostname_token1] = ACTIONS(1497), - [aux_sym_identities_only_token1] = ACTIONS(1497), - [aux_sym_identity_agent_token1] = ACTIONS(1497), - [aux_sym_identity_file_token1] = ACTIONS(1497), - [aux_sym_ignore_unknown_token1] = ACTIONS(1497), - [aux_sym_include_token1] = ACTIONS(1497), - [aux_sym_ip_qos_token1] = ACTIONS(1497), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1497), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1497), - [aux_sym_kex_algorithms_token1] = ACTIONS(1497), - [aux_sym_known_hosts_command_token1] = ACTIONS(1497), - [aux_sym_local_command_token1] = ACTIONS(1497), - [aux_sym_local_forward_token1] = ACTIONS(1497), - [aux_sym_log_level_token1] = ACTIONS(1497), - [aux_sym_log_verbose_token1] = ACTIONS(1497), - [aux_sym_macs_token1] = ACTIONS(1497), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1497), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1497), - [aux_sym_password_authentication_token1] = ACTIONS(1497), - [aux_sym_permit_local_command_token1] = ACTIONS(1497), - [aux_sym_permit_remote_open_token1] = ACTIONS(1497), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1497), - [aux_sym_port_token1] = ACTIONS(1497), - [aux_sym_preferred_authentications_token1] = ACTIONS(1497), - [aux_sym_protocol_token1] = ACTIONS(1497), - [aux_sym_proxy_command_token1] = ACTIONS(1497), - [aux_sym_proxy_jump_token1] = ACTIONS(1497), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1497), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1497), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1497), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1497), - [aux_sym_rekey_limit_token1] = ACTIONS(1497), - [aux_sym_remote_command_token1] = ACTIONS(1497), - [aux_sym_remote_forward_token1] = ACTIONS(1497), - [aux_sym_request_tty_token1] = ACTIONS(1497), - [aux_sym_required_rsa_size_token1] = ACTIONS(1497), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1497), - [aux_sym_security_key_provider_token1] = ACTIONS(1497), - [aux_sym_send_env_token1] = ACTIONS(1497), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1497), - [aux_sym_server_alive_interval_token1] = ACTIONS(1497), - [aux_sym_session_type_token1] = ACTIONS(1497), - [aux_sym_set_env_token1] = ACTIONS(1497), - [aux_sym_stdin_null_token1] = ACTIONS(1497), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1497), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1497), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1497), - [aux_sym_syslog_facility_token1] = ACTIONS(1497), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1497), - [aux_sym_keep_alive_token1] = ACTIONS(1497), - [aux_sym_tunnel_token1] = ACTIONS(1499), - [aux_sym_tunnel_device_token1] = ACTIONS(1497), - [aux_sym_update_host_keys_token1] = ACTIONS(1497), - [aux_sym_use_keychain_token1] = ACTIONS(1497), - [aux_sym_use_roaming_token1] = ACTIONS(1497), - [aux_sym_user_token1] = ACTIONS(1499), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1497), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1497), - [aux_sym_visual_host_key_token1] = ACTIONS(1497), - [aux_sym_xauth_location_token1] = ACTIONS(1497), + [ts_builtin_sym_end] = ACTIONS(1502), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1506), + [aux_sym_match_token1] = ACTIONS(1502), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1502), + [aux_sym_address_family_token1] = ACTIONS(1502), + [aux_sym_batch_mode_token1] = ACTIONS(1502), + [aux_sym_bind_address_token1] = ACTIONS(1502), + [aux_sym_bind_interface_token1] = ACTIONS(1502), + [aux_sym_canonical_domains_token1] = ACTIONS(1502), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1502), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1502), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1502), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1502), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1502), + [aux_sym_certificate_file_token1] = ACTIONS(1502), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1502), + [aux_sym_check_host_ip_token1] = ACTIONS(1502), + [aux_sym_ciphers_token1] = ACTIONS(1502), + [aux_sym_cipher_token1] = ACTIONS(1504), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1502), + [aux_sym_compression_token1] = ACTIONS(1502), + [aux_sym_connection_attempts_token1] = ACTIONS(1502), + [aux_sym_connect_timeout_token1] = ACTIONS(1502), + [aux_sym_control_master_token1] = ACTIONS(1502), + [aux_sym_control_path_token1] = ACTIONS(1502), + [aux_sym_control_persist_token1] = ACTIONS(1502), + [aux_sym_dynamic_forward_token1] = ACTIONS(1502), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1502), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1502), + [aux_sym_escape_char_token1] = ACTIONS(1502), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1502), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1502), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1502), + [aux_sym_forward_agent_token1] = ACTIONS(1502), + [aux_sym_forward_x11_token1] = ACTIONS(1504), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1502), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1502), + [aux_sym_gateway_ports_token1] = ACTIONS(1502), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1502), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1502), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1502), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1502), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1502), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1502), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1502), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1502), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1502), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1502), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1502), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1502), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1502), + [aux_sym_host_key_alias_token1] = ACTIONS(1502), + [aux_sym_hostname_token1] = ACTIONS(1502), + [aux_sym_identities_only_token1] = ACTIONS(1502), + [aux_sym_identity_agent_token1] = ACTIONS(1502), + [aux_sym_identity_file_token1] = ACTIONS(1502), + [aux_sym_ignore_unknown_token1] = ACTIONS(1502), + [aux_sym_include_token1] = ACTIONS(1502), + [aux_sym_ip_qos_token1] = ACTIONS(1502), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1502), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1502), + [aux_sym_kex_algorithms_token1] = ACTIONS(1502), + [aux_sym_known_hosts_command_token1] = ACTIONS(1502), + [aux_sym_local_command_token1] = ACTIONS(1502), + [aux_sym_local_forward_token1] = ACTIONS(1502), + [aux_sym_log_level_token1] = ACTIONS(1502), + [aux_sym_log_verbose_token1] = ACTIONS(1502), + [aux_sym_macs_token1] = ACTIONS(1502), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1502), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1502), + [aux_sym_password_authentication_token1] = ACTIONS(1502), + [aux_sym_permit_local_command_token1] = ACTIONS(1502), + [aux_sym_permit_remote_open_token1] = ACTIONS(1502), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1502), + [aux_sym_port_token1] = ACTIONS(1502), + [aux_sym_preferred_authentications_token1] = ACTIONS(1502), + [aux_sym_protocol_token1] = ACTIONS(1502), + [aux_sym_proxy_command_token1] = ACTIONS(1502), + [aux_sym_proxy_jump_token1] = ACTIONS(1502), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1502), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1502), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1502), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1502), + [aux_sym_rekey_limit_token1] = ACTIONS(1502), + [aux_sym_remote_command_token1] = ACTIONS(1502), + [aux_sym_remote_forward_token1] = ACTIONS(1502), + [aux_sym_request_tty_token1] = ACTIONS(1502), + [aux_sym_required_rsa_size_token1] = ACTIONS(1502), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1502), + [aux_sym_security_key_provider_token1] = ACTIONS(1502), + [aux_sym_send_env_token1] = ACTIONS(1502), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1502), + [aux_sym_server_alive_interval_token1] = ACTIONS(1502), + [aux_sym_session_type_token1] = ACTIONS(1502), + [aux_sym_set_env_token1] = ACTIONS(1502), + [aux_sym_stdin_null_token1] = ACTIONS(1502), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1502), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1502), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1502), + [aux_sym_syslog_facility_token1] = ACTIONS(1502), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1502), + [aux_sym_keep_alive_token1] = ACTIONS(1502), + [aux_sym_tunnel_token1] = ACTIONS(1504), + [aux_sym_tunnel_device_token1] = ACTIONS(1502), + [aux_sym_update_host_keys_token1] = ACTIONS(1502), + [aux_sym_use_keychain_token1] = ACTIONS(1502), + [aux_sym_use_roaming_token1] = ACTIONS(1502), + [aux_sym_user_token1] = ACTIONS(1504), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1502), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1502), + [aux_sym_visual_host_key_token1] = ACTIONS(1502), + [aux_sym_xauth_location_token1] = ACTIONS(1502), }, [161] = { - [ts_builtin_sym_end] = ACTIONS(1503), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1505), - [anon_sym_DQUOTE] = ACTIONS(1507), - [aux_sym_match_token1] = ACTIONS(1503), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1503), - [aux_sym_address_family_token1] = ACTIONS(1503), - [aux_sym_batch_mode_token1] = ACTIONS(1503), - [aux_sym_bind_address_token1] = ACTIONS(1503), - [aux_sym_bind_interface_token1] = ACTIONS(1503), - [aux_sym_canonical_domains_token1] = ACTIONS(1503), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1503), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1503), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1503), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1503), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1503), - [aux_sym_certificate_file_token1] = ACTIONS(1503), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1503), - [aux_sym_check_host_ip_token1] = ACTIONS(1503), - [aux_sym_ciphers_token1] = ACTIONS(1503), - [aux_sym_cipher_token1] = ACTIONS(1505), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1503), - [aux_sym_compression_token1] = ACTIONS(1503), - [aux_sym_connection_attempts_token1] = ACTIONS(1503), - [aux_sym_connect_timeout_token1] = ACTIONS(1503), - [aux_sym_control_master_token1] = ACTIONS(1503), - [aux_sym_control_path_token1] = ACTIONS(1503), - [aux_sym_control_persist_token1] = ACTIONS(1503), - [aux_sym_dynamic_forward_token1] = ACTIONS(1503), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1503), - [aux_sym_escape_char_token1] = ACTIONS(1503), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1503), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1503), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1503), - [aux_sym_forward_agent_token1] = ACTIONS(1503), - [aux_sym_forward_x11_token1] = ACTIONS(1505), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1503), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1503), - [aux_sym_gateway_ports_token1] = ACTIONS(1503), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1503), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1503), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1503), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1503), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1503), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1503), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1503), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1503), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1503), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1503), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1503), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1503), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1503), - [aux_sym_host_key_alias_token1] = ACTIONS(1503), - [aux_sym_hostname_token1] = ACTIONS(1503), - [aux_sym_identities_only_token1] = ACTIONS(1503), - [aux_sym_identity_agent_token1] = ACTIONS(1503), - [aux_sym_identity_file_token1] = ACTIONS(1503), - [aux_sym_ignore_unknown_token1] = ACTIONS(1503), - [aux_sym_include_token1] = ACTIONS(1503), - [aux_sym_ip_qos_token1] = ACTIONS(1503), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1503), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1503), - [aux_sym_kex_algorithms_token1] = ACTIONS(1503), - [aux_sym_known_hosts_command_token1] = ACTIONS(1503), - [aux_sym_local_command_token1] = ACTIONS(1503), - [aux_sym_local_forward_token1] = ACTIONS(1503), - [aux_sym_log_level_token1] = ACTIONS(1503), - [aux_sym_log_verbose_token1] = ACTIONS(1503), - [aux_sym_macs_token1] = ACTIONS(1503), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1503), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1503), - [aux_sym_password_authentication_token1] = ACTIONS(1503), - [aux_sym_permit_local_command_token1] = ACTIONS(1503), - [aux_sym_permit_remote_open_token1] = ACTIONS(1503), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1503), - [aux_sym_port_token1] = ACTIONS(1503), - [aux_sym_preferred_authentications_token1] = ACTIONS(1503), - [aux_sym_protocol_token1] = ACTIONS(1503), - [aux_sym_proxy_command_token1] = ACTIONS(1503), - [aux_sym_proxy_jump_token1] = ACTIONS(1503), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1503), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1503), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1503), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1503), - [aux_sym_rekey_limit_token1] = ACTIONS(1503), - [aux_sym_remote_command_token1] = ACTIONS(1503), - [aux_sym_remote_forward_token1] = ACTIONS(1503), - [aux_sym_request_tty_token1] = ACTIONS(1503), - [aux_sym_required_rsa_size_token1] = ACTIONS(1503), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1503), - [aux_sym_security_key_provider_token1] = ACTIONS(1503), - [aux_sym_send_env_token1] = ACTIONS(1503), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1503), - [aux_sym_server_alive_interval_token1] = ACTIONS(1503), - [aux_sym_session_type_token1] = ACTIONS(1503), - [aux_sym_set_env_token1] = ACTIONS(1503), - [aux_sym_stdin_null_token1] = ACTIONS(1503), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1503), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1503), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1503), - [aux_sym_syslog_facility_token1] = ACTIONS(1503), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1503), - [aux_sym_keep_alive_token1] = ACTIONS(1503), - [aux_sym_tunnel_token1] = ACTIONS(1505), - [aux_sym_tunnel_device_token1] = ACTIONS(1503), - [aux_sym_update_host_keys_token1] = ACTIONS(1503), - [aux_sym_use_keychain_token1] = ACTIONS(1503), - [aux_sym_use_roaming_token1] = ACTIONS(1503), - [aux_sym_user_token1] = ACTIONS(1505), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1503), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1503), - [aux_sym_visual_host_key_token1] = ACTIONS(1503), - [aux_sym_xauth_location_token1] = ACTIONS(1503), + [ts_builtin_sym_end] = ACTIONS(1508), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1512), + [aux_sym_match_token1] = ACTIONS(1508), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1508), + [aux_sym_address_family_token1] = ACTIONS(1508), + [aux_sym_batch_mode_token1] = ACTIONS(1508), + [aux_sym_bind_address_token1] = ACTIONS(1508), + [aux_sym_bind_interface_token1] = ACTIONS(1508), + [aux_sym_canonical_domains_token1] = ACTIONS(1508), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1508), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1508), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1508), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1508), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1508), + [aux_sym_certificate_file_token1] = ACTIONS(1508), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1508), + [aux_sym_check_host_ip_token1] = ACTIONS(1508), + [aux_sym_ciphers_token1] = ACTIONS(1508), + [aux_sym_cipher_token1] = ACTIONS(1510), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1508), + [aux_sym_compression_token1] = ACTIONS(1508), + [aux_sym_connection_attempts_token1] = ACTIONS(1508), + [aux_sym_connect_timeout_token1] = ACTIONS(1508), + [aux_sym_control_master_token1] = ACTIONS(1508), + [aux_sym_control_path_token1] = ACTIONS(1508), + [aux_sym_control_persist_token1] = ACTIONS(1508), + [aux_sym_dynamic_forward_token1] = ACTIONS(1508), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1508), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1508), + [aux_sym_escape_char_token1] = ACTIONS(1508), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1508), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1508), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1508), + [aux_sym_forward_agent_token1] = ACTIONS(1508), + [aux_sym_forward_x11_token1] = ACTIONS(1510), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1508), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1508), + [aux_sym_gateway_ports_token1] = ACTIONS(1508), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1508), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1508), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1508), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1508), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1508), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1508), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1508), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1508), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1508), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1508), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1508), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1508), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1508), + [aux_sym_host_key_alias_token1] = ACTIONS(1508), + [aux_sym_hostname_token1] = ACTIONS(1508), + [aux_sym_identities_only_token1] = ACTIONS(1508), + [aux_sym_identity_agent_token1] = ACTIONS(1508), + [aux_sym_identity_file_token1] = ACTIONS(1508), + [aux_sym_ignore_unknown_token1] = ACTIONS(1508), + [aux_sym_include_token1] = ACTIONS(1508), + [aux_sym_ip_qos_token1] = ACTIONS(1508), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1508), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1508), + [aux_sym_kex_algorithms_token1] = ACTIONS(1508), + [aux_sym_known_hosts_command_token1] = ACTIONS(1508), + [aux_sym_local_command_token1] = ACTIONS(1508), + [aux_sym_local_forward_token1] = ACTIONS(1508), + [aux_sym_log_level_token1] = ACTIONS(1508), + [aux_sym_log_verbose_token1] = ACTIONS(1508), + [aux_sym_macs_token1] = ACTIONS(1508), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1508), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1508), + [aux_sym_password_authentication_token1] = ACTIONS(1508), + [aux_sym_permit_local_command_token1] = ACTIONS(1508), + [aux_sym_permit_remote_open_token1] = ACTIONS(1508), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1508), + [aux_sym_port_token1] = ACTIONS(1508), + [aux_sym_preferred_authentications_token1] = ACTIONS(1508), + [aux_sym_protocol_token1] = ACTIONS(1508), + [aux_sym_proxy_command_token1] = ACTIONS(1508), + [aux_sym_proxy_jump_token1] = ACTIONS(1508), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1508), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1508), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1508), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1508), + [aux_sym_rekey_limit_token1] = ACTIONS(1508), + [aux_sym_remote_command_token1] = ACTIONS(1508), + [aux_sym_remote_forward_token1] = ACTIONS(1508), + [aux_sym_request_tty_token1] = ACTIONS(1508), + [aux_sym_required_rsa_size_token1] = ACTIONS(1508), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1508), + [aux_sym_security_key_provider_token1] = ACTIONS(1508), + [aux_sym_send_env_token1] = ACTIONS(1508), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1508), + [aux_sym_server_alive_interval_token1] = ACTIONS(1508), + [aux_sym_session_type_token1] = ACTIONS(1508), + [aux_sym_set_env_token1] = ACTIONS(1508), + [aux_sym_stdin_null_token1] = ACTIONS(1508), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1508), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1508), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1508), + [aux_sym_syslog_facility_token1] = ACTIONS(1508), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1508), + [aux_sym_keep_alive_token1] = ACTIONS(1508), + [aux_sym_tunnel_token1] = ACTIONS(1510), + [aux_sym_tunnel_device_token1] = ACTIONS(1508), + [aux_sym_update_host_keys_token1] = ACTIONS(1508), + [aux_sym_use_keychain_token1] = ACTIONS(1508), + [aux_sym_use_roaming_token1] = ACTIONS(1508), + [aux_sym_user_token1] = ACTIONS(1510), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1508), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1508), + [aux_sym_visual_host_key_token1] = ACTIONS(1508), + [aux_sym_xauth_location_token1] = ACTIONS(1508), }, [162] = { - [ts_builtin_sym_end] = ACTIONS(1509), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1511), - [anon_sym_DQUOTE] = ACTIONS(1513), - [aux_sym_match_token1] = ACTIONS(1509), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1509), - [aux_sym_address_family_token1] = ACTIONS(1509), - [aux_sym_batch_mode_token1] = ACTIONS(1509), - [aux_sym_bind_address_token1] = ACTIONS(1509), - [aux_sym_bind_interface_token1] = ACTIONS(1509), - [aux_sym_canonical_domains_token1] = ACTIONS(1509), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1509), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1509), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1509), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1509), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1509), - [aux_sym_certificate_file_token1] = ACTIONS(1509), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1509), - [aux_sym_check_host_ip_token1] = ACTIONS(1509), - [aux_sym_ciphers_token1] = ACTIONS(1509), - [aux_sym_cipher_token1] = ACTIONS(1511), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1509), - [aux_sym_compression_token1] = ACTIONS(1509), - [aux_sym_connection_attempts_token1] = ACTIONS(1509), - [aux_sym_connect_timeout_token1] = ACTIONS(1509), - [aux_sym_control_master_token1] = ACTIONS(1509), - [aux_sym_control_path_token1] = ACTIONS(1509), - [aux_sym_control_persist_token1] = ACTIONS(1509), - [aux_sym_dynamic_forward_token1] = ACTIONS(1509), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1509), - [aux_sym_escape_char_token1] = ACTIONS(1509), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1509), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1509), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1509), - [aux_sym_forward_agent_token1] = ACTIONS(1509), - [aux_sym_forward_x11_token1] = ACTIONS(1511), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1509), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1509), - [aux_sym_gateway_ports_token1] = ACTIONS(1509), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1509), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1509), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1509), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1509), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1509), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1509), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1509), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1509), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1509), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1509), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1509), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1509), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1509), - [aux_sym_host_key_alias_token1] = ACTIONS(1509), - [aux_sym_hostname_token1] = ACTIONS(1509), - [aux_sym_identities_only_token1] = ACTIONS(1509), - [aux_sym_identity_agent_token1] = ACTIONS(1509), - [aux_sym_identity_file_token1] = ACTIONS(1509), - [aux_sym_ignore_unknown_token1] = ACTIONS(1509), - [aux_sym_include_token1] = ACTIONS(1509), - [aux_sym_ip_qos_token1] = ACTIONS(1509), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1509), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1509), - [aux_sym_kex_algorithms_token1] = ACTIONS(1509), - [aux_sym_known_hosts_command_token1] = ACTIONS(1509), - [aux_sym_local_command_token1] = ACTIONS(1509), - [aux_sym_local_forward_token1] = ACTIONS(1509), - [aux_sym_log_level_token1] = ACTIONS(1509), - [aux_sym_log_verbose_token1] = ACTIONS(1509), - [aux_sym_macs_token1] = ACTIONS(1509), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1509), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1509), - [aux_sym_password_authentication_token1] = ACTIONS(1509), - [aux_sym_permit_local_command_token1] = ACTIONS(1509), - [aux_sym_permit_remote_open_token1] = ACTIONS(1509), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1509), - [aux_sym_port_token1] = ACTIONS(1509), - [aux_sym_preferred_authentications_token1] = ACTIONS(1509), - [aux_sym_protocol_token1] = ACTIONS(1509), - [aux_sym_proxy_command_token1] = ACTIONS(1509), - [aux_sym_proxy_jump_token1] = ACTIONS(1509), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1509), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1509), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1509), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1509), - [aux_sym_rekey_limit_token1] = ACTIONS(1509), - [aux_sym_remote_command_token1] = ACTIONS(1509), - [aux_sym_remote_forward_token1] = ACTIONS(1509), - [aux_sym_request_tty_token1] = ACTIONS(1509), - [aux_sym_required_rsa_size_token1] = ACTIONS(1509), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1509), - [aux_sym_security_key_provider_token1] = ACTIONS(1509), - [aux_sym_send_env_token1] = ACTIONS(1509), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1509), - [aux_sym_server_alive_interval_token1] = ACTIONS(1509), - [aux_sym_session_type_token1] = ACTIONS(1509), - [aux_sym_set_env_token1] = ACTIONS(1509), - [aux_sym_stdin_null_token1] = ACTIONS(1509), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1509), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1509), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1509), - [aux_sym_syslog_facility_token1] = ACTIONS(1509), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1509), - [aux_sym_keep_alive_token1] = ACTIONS(1509), - [aux_sym_tunnel_token1] = ACTIONS(1511), - [aux_sym_tunnel_device_token1] = ACTIONS(1509), - [aux_sym_update_host_keys_token1] = ACTIONS(1509), - [aux_sym_use_keychain_token1] = ACTIONS(1509), - [aux_sym_use_roaming_token1] = ACTIONS(1509), - [aux_sym_user_token1] = ACTIONS(1511), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1509), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1509), - [aux_sym_visual_host_key_token1] = ACTIONS(1509), - [aux_sym_xauth_location_token1] = ACTIONS(1509), + [ts_builtin_sym_end] = ACTIONS(1514), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1518), + [aux_sym_match_token1] = ACTIONS(1514), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1514), + [aux_sym_address_family_token1] = ACTIONS(1514), + [aux_sym_batch_mode_token1] = ACTIONS(1514), + [aux_sym_bind_address_token1] = ACTIONS(1514), + [aux_sym_bind_interface_token1] = ACTIONS(1514), + [aux_sym_canonical_domains_token1] = ACTIONS(1514), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1514), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1514), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1514), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1514), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1514), + [aux_sym_certificate_file_token1] = ACTIONS(1514), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1514), + [aux_sym_check_host_ip_token1] = ACTIONS(1514), + [aux_sym_ciphers_token1] = ACTIONS(1514), + [aux_sym_cipher_token1] = ACTIONS(1516), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1514), + [aux_sym_compression_token1] = ACTIONS(1514), + [aux_sym_connection_attempts_token1] = ACTIONS(1514), + [aux_sym_connect_timeout_token1] = ACTIONS(1514), + [aux_sym_control_master_token1] = ACTIONS(1514), + [aux_sym_control_path_token1] = ACTIONS(1514), + [aux_sym_control_persist_token1] = ACTIONS(1514), + [aux_sym_dynamic_forward_token1] = ACTIONS(1514), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1514), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1514), + [aux_sym_escape_char_token1] = ACTIONS(1514), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1514), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1514), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1514), + [aux_sym_forward_agent_token1] = ACTIONS(1514), + [aux_sym_forward_x11_token1] = ACTIONS(1516), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1514), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1514), + [aux_sym_gateway_ports_token1] = ACTIONS(1514), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1514), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1514), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1514), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1514), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1514), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1514), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1514), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1514), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1514), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1514), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1514), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1514), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1514), + [aux_sym_host_key_alias_token1] = ACTIONS(1514), + [aux_sym_hostname_token1] = ACTIONS(1514), + [aux_sym_identities_only_token1] = ACTIONS(1514), + [aux_sym_identity_agent_token1] = ACTIONS(1514), + [aux_sym_identity_file_token1] = ACTIONS(1514), + [aux_sym_ignore_unknown_token1] = ACTIONS(1514), + [aux_sym_include_token1] = ACTIONS(1514), + [aux_sym_ip_qos_token1] = ACTIONS(1514), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1514), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1514), + [aux_sym_kex_algorithms_token1] = ACTIONS(1514), + [aux_sym_known_hosts_command_token1] = ACTIONS(1514), + [aux_sym_local_command_token1] = ACTIONS(1514), + [aux_sym_local_forward_token1] = ACTIONS(1514), + [aux_sym_log_level_token1] = ACTIONS(1514), + [aux_sym_log_verbose_token1] = ACTIONS(1514), + [aux_sym_macs_token1] = ACTIONS(1514), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1514), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1514), + [aux_sym_password_authentication_token1] = ACTIONS(1514), + [aux_sym_permit_local_command_token1] = ACTIONS(1514), + [aux_sym_permit_remote_open_token1] = ACTIONS(1514), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1514), + [aux_sym_port_token1] = ACTIONS(1514), + [aux_sym_preferred_authentications_token1] = ACTIONS(1514), + [aux_sym_protocol_token1] = ACTIONS(1514), + [aux_sym_proxy_command_token1] = ACTIONS(1514), + [aux_sym_proxy_jump_token1] = ACTIONS(1514), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1514), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1514), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1514), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1514), + [aux_sym_rekey_limit_token1] = ACTIONS(1514), + [aux_sym_remote_command_token1] = ACTIONS(1514), + [aux_sym_remote_forward_token1] = ACTIONS(1514), + [aux_sym_request_tty_token1] = ACTIONS(1514), + [aux_sym_required_rsa_size_token1] = ACTIONS(1514), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1514), + [aux_sym_security_key_provider_token1] = ACTIONS(1514), + [aux_sym_send_env_token1] = ACTIONS(1514), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1514), + [aux_sym_server_alive_interval_token1] = ACTIONS(1514), + [aux_sym_session_type_token1] = ACTIONS(1514), + [aux_sym_set_env_token1] = ACTIONS(1514), + [aux_sym_stdin_null_token1] = ACTIONS(1514), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1514), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1514), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1514), + [aux_sym_syslog_facility_token1] = ACTIONS(1514), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1514), + [aux_sym_keep_alive_token1] = ACTIONS(1514), + [aux_sym_tunnel_token1] = ACTIONS(1516), + [aux_sym_tunnel_device_token1] = ACTIONS(1514), + [aux_sym_update_host_keys_token1] = ACTIONS(1514), + [aux_sym_use_keychain_token1] = ACTIONS(1514), + [aux_sym_use_roaming_token1] = ACTIONS(1514), + [aux_sym_user_token1] = ACTIONS(1516), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1514), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1514), + [aux_sym_visual_host_key_token1] = ACTIONS(1514), + [aux_sym_xauth_location_token1] = ACTIONS(1514), }, [163] = { - [ts_builtin_sym_end] = ACTIONS(1515), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1517), - [anon_sym_DQUOTE] = ACTIONS(1519), - [aux_sym_match_token1] = ACTIONS(1515), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1515), - [aux_sym_address_family_token1] = ACTIONS(1515), - [aux_sym_batch_mode_token1] = ACTIONS(1515), - [aux_sym_bind_address_token1] = ACTIONS(1515), - [aux_sym_bind_interface_token1] = ACTIONS(1515), - [aux_sym_canonical_domains_token1] = ACTIONS(1515), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1515), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1515), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1515), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1515), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1515), - [aux_sym_certificate_file_token1] = ACTIONS(1515), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1515), - [aux_sym_check_host_ip_token1] = ACTIONS(1515), - [aux_sym_ciphers_token1] = ACTIONS(1515), - [aux_sym_cipher_token1] = ACTIONS(1517), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1515), - [aux_sym_compression_token1] = ACTIONS(1515), - [aux_sym_connection_attempts_token1] = ACTIONS(1515), - [aux_sym_connect_timeout_token1] = ACTIONS(1515), - [aux_sym_control_master_token1] = ACTIONS(1515), - [aux_sym_control_path_token1] = ACTIONS(1515), - [aux_sym_control_persist_token1] = ACTIONS(1515), - [aux_sym_dynamic_forward_token1] = ACTIONS(1515), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1515), - [aux_sym_escape_char_token1] = ACTIONS(1515), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1515), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1515), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1515), - [aux_sym_forward_agent_token1] = ACTIONS(1515), - [aux_sym_forward_x11_token1] = ACTIONS(1517), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1515), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1515), - [aux_sym_gateway_ports_token1] = ACTIONS(1515), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1515), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1515), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1515), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1515), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1515), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1515), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1515), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1515), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1515), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1515), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1515), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1515), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1515), - [aux_sym_host_key_alias_token1] = ACTIONS(1515), - [aux_sym_hostname_token1] = ACTIONS(1515), - [aux_sym_identities_only_token1] = ACTIONS(1515), - [aux_sym_identity_agent_token1] = ACTIONS(1515), - [aux_sym_identity_file_token1] = ACTIONS(1515), - [aux_sym_ignore_unknown_token1] = ACTIONS(1515), - [aux_sym_include_token1] = ACTIONS(1515), - [aux_sym_ip_qos_token1] = ACTIONS(1515), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1515), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1515), - [aux_sym_kex_algorithms_token1] = ACTIONS(1515), - [aux_sym_known_hosts_command_token1] = ACTIONS(1515), - [aux_sym_local_command_token1] = ACTIONS(1515), - [aux_sym_local_forward_token1] = ACTIONS(1515), - [aux_sym_log_level_token1] = ACTIONS(1515), - [aux_sym_log_verbose_token1] = ACTIONS(1515), - [aux_sym_macs_token1] = ACTIONS(1515), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1515), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1515), - [aux_sym_password_authentication_token1] = ACTIONS(1515), - [aux_sym_permit_local_command_token1] = ACTIONS(1515), - [aux_sym_permit_remote_open_token1] = ACTIONS(1515), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1515), - [aux_sym_port_token1] = ACTIONS(1515), - [aux_sym_preferred_authentications_token1] = ACTIONS(1515), - [aux_sym_protocol_token1] = ACTIONS(1515), - [aux_sym_proxy_command_token1] = ACTIONS(1515), - [aux_sym_proxy_jump_token1] = ACTIONS(1515), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1515), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1515), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1515), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1515), - [aux_sym_rekey_limit_token1] = ACTIONS(1515), - [aux_sym_remote_command_token1] = ACTIONS(1515), - [aux_sym_remote_forward_token1] = ACTIONS(1515), - [aux_sym_request_tty_token1] = ACTIONS(1515), - [aux_sym_required_rsa_size_token1] = ACTIONS(1515), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1515), - [aux_sym_security_key_provider_token1] = ACTIONS(1515), - [aux_sym_send_env_token1] = ACTIONS(1515), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1515), - [aux_sym_server_alive_interval_token1] = ACTIONS(1515), - [aux_sym_session_type_token1] = ACTIONS(1515), - [aux_sym_set_env_token1] = ACTIONS(1515), - [aux_sym_stdin_null_token1] = ACTIONS(1515), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1515), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1515), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1515), - [aux_sym_syslog_facility_token1] = ACTIONS(1515), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1515), - [aux_sym_keep_alive_token1] = ACTIONS(1515), - [aux_sym_tunnel_token1] = ACTIONS(1517), - [aux_sym_tunnel_device_token1] = ACTIONS(1515), - [aux_sym_update_host_keys_token1] = ACTIONS(1515), - [aux_sym_use_keychain_token1] = ACTIONS(1515), - [aux_sym_use_roaming_token1] = ACTIONS(1515), - [aux_sym_user_token1] = ACTIONS(1517), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1515), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1515), - [aux_sym_visual_host_key_token1] = ACTIONS(1515), - [aux_sym_xauth_location_token1] = ACTIONS(1515), + [ts_builtin_sym_end] = ACTIONS(1520), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1524), + [aux_sym_match_token1] = ACTIONS(1520), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1520), + [aux_sym_address_family_token1] = ACTIONS(1520), + [aux_sym_batch_mode_token1] = ACTIONS(1520), + [aux_sym_bind_address_token1] = ACTIONS(1520), + [aux_sym_bind_interface_token1] = ACTIONS(1520), + [aux_sym_canonical_domains_token1] = ACTIONS(1520), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1520), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1520), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1520), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1520), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1520), + [aux_sym_certificate_file_token1] = ACTIONS(1520), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1520), + [aux_sym_check_host_ip_token1] = ACTIONS(1520), + [aux_sym_ciphers_token1] = ACTIONS(1520), + [aux_sym_cipher_token1] = ACTIONS(1522), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1520), + [aux_sym_compression_token1] = ACTIONS(1520), + [aux_sym_connection_attempts_token1] = ACTIONS(1520), + [aux_sym_connect_timeout_token1] = ACTIONS(1520), + [aux_sym_control_master_token1] = ACTIONS(1520), + [aux_sym_control_path_token1] = ACTIONS(1520), + [aux_sym_control_persist_token1] = ACTIONS(1520), + [aux_sym_dynamic_forward_token1] = ACTIONS(1520), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1520), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1520), + [aux_sym_escape_char_token1] = ACTIONS(1520), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1520), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1520), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1520), + [aux_sym_forward_agent_token1] = ACTIONS(1520), + [aux_sym_forward_x11_token1] = ACTIONS(1522), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1520), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1520), + [aux_sym_gateway_ports_token1] = ACTIONS(1520), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1520), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1520), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1520), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1520), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1520), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1520), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1520), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1520), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1520), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1520), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1520), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1520), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1520), + [aux_sym_host_key_alias_token1] = ACTIONS(1520), + [aux_sym_hostname_token1] = ACTIONS(1520), + [aux_sym_identities_only_token1] = ACTIONS(1520), + [aux_sym_identity_agent_token1] = ACTIONS(1520), + [aux_sym_identity_file_token1] = ACTIONS(1520), + [aux_sym_ignore_unknown_token1] = ACTIONS(1520), + [aux_sym_include_token1] = ACTIONS(1520), + [aux_sym_ip_qos_token1] = ACTIONS(1520), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1520), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1520), + [aux_sym_kex_algorithms_token1] = ACTIONS(1520), + [aux_sym_known_hosts_command_token1] = ACTIONS(1520), + [aux_sym_local_command_token1] = ACTIONS(1520), + [aux_sym_local_forward_token1] = ACTIONS(1520), + [aux_sym_log_level_token1] = ACTIONS(1520), + [aux_sym_log_verbose_token1] = ACTIONS(1520), + [aux_sym_macs_token1] = ACTIONS(1520), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1520), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1520), + [aux_sym_password_authentication_token1] = ACTIONS(1520), + [aux_sym_permit_local_command_token1] = ACTIONS(1520), + [aux_sym_permit_remote_open_token1] = ACTIONS(1520), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1520), + [aux_sym_port_token1] = ACTIONS(1520), + [aux_sym_preferred_authentications_token1] = ACTIONS(1520), + [aux_sym_protocol_token1] = ACTIONS(1520), + [aux_sym_proxy_command_token1] = ACTIONS(1520), + [aux_sym_proxy_jump_token1] = ACTIONS(1520), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1520), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1520), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1520), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1520), + [aux_sym_rekey_limit_token1] = ACTIONS(1520), + [aux_sym_remote_command_token1] = ACTIONS(1520), + [aux_sym_remote_forward_token1] = ACTIONS(1520), + [aux_sym_request_tty_token1] = ACTIONS(1520), + [aux_sym_required_rsa_size_token1] = ACTIONS(1520), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1520), + [aux_sym_security_key_provider_token1] = ACTIONS(1520), + [aux_sym_send_env_token1] = ACTIONS(1520), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1520), + [aux_sym_server_alive_interval_token1] = ACTIONS(1520), + [aux_sym_session_type_token1] = ACTIONS(1520), + [aux_sym_set_env_token1] = ACTIONS(1520), + [aux_sym_stdin_null_token1] = ACTIONS(1520), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1520), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1520), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1520), + [aux_sym_syslog_facility_token1] = ACTIONS(1520), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1520), + [aux_sym_keep_alive_token1] = ACTIONS(1520), + [aux_sym_tunnel_token1] = ACTIONS(1522), + [aux_sym_tunnel_device_token1] = ACTIONS(1520), + [aux_sym_update_host_keys_token1] = ACTIONS(1520), + [aux_sym_use_keychain_token1] = ACTIONS(1520), + [aux_sym_use_roaming_token1] = ACTIONS(1520), + [aux_sym_user_token1] = ACTIONS(1522), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1520), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1520), + [aux_sym_visual_host_key_token1] = ACTIONS(1520), + [aux_sym_xauth_location_token1] = ACTIONS(1520), }, [164] = { - [ts_builtin_sym_end] = ACTIONS(1521), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1525), - [aux_sym_match_token1] = ACTIONS(1521), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1521), - [aux_sym_address_family_token1] = ACTIONS(1521), - [aux_sym_batch_mode_token1] = ACTIONS(1521), - [aux_sym_bind_address_token1] = ACTIONS(1521), - [aux_sym_bind_interface_token1] = ACTIONS(1521), - [aux_sym_canonical_domains_token1] = ACTIONS(1521), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1521), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1521), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1521), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1521), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1521), - [aux_sym_certificate_file_token1] = ACTIONS(1521), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1521), - [aux_sym_check_host_ip_token1] = ACTIONS(1521), - [aux_sym_ciphers_token1] = ACTIONS(1521), - [aux_sym_cipher_token1] = ACTIONS(1523), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1521), - [aux_sym_compression_token1] = ACTIONS(1521), - [aux_sym_connection_attempts_token1] = ACTIONS(1521), - [aux_sym_connect_timeout_token1] = ACTIONS(1521), - [aux_sym_control_master_token1] = ACTIONS(1521), - [aux_sym_control_path_token1] = ACTIONS(1521), - [aux_sym_control_persist_token1] = ACTIONS(1521), - [aux_sym_dynamic_forward_token1] = ACTIONS(1521), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1521), - [aux_sym_escape_char_token1] = ACTIONS(1521), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1521), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1521), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1521), - [aux_sym_forward_agent_token1] = ACTIONS(1521), - [aux_sym_forward_x11_token1] = ACTIONS(1523), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1521), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1521), - [aux_sym_gateway_ports_token1] = ACTIONS(1521), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1521), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1521), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1521), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1521), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1521), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1521), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1521), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1521), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1521), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1521), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1521), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1521), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1521), - [aux_sym_host_key_alias_token1] = ACTIONS(1521), - [aux_sym_hostname_token1] = ACTIONS(1521), - [aux_sym_identities_only_token1] = ACTIONS(1521), - [aux_sym_identity_agent_token1] = ACTIONS(1521), - [aux_sym_identity_file_token1] = ACTIONS(1521), - [aux_sym_ignore_unknown_token1] = ACTIONS(1521), - [aux_sym_include_token1] = ACTIONS(1521), - [aux_sym_ip_qos_token1] = ACTIONS(1521), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1521), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1521), - [aux_sym_kex_algorithms_token1] = ACTIONS(1521), - [aux_sym_known_hosts_command_token1] = ACTIONS(1521), - [aux_sym_local_command_token1] = ACTIONS(1521), - [aux_sym_local_forward_token1] = ACTIONS(1521), - [aux_sym_log_level_token1] = ACTIONS(1521), - [aux_sym_log_verbose_token1] = ACTIONS(1521), - [aux_sym_macs_token1] = ACTIONS(1521), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1521), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1521), - [aux_sym_password_authentication_token1] = ACTIONS(1521), - [aux_sym_permit_local_command_token1] = ACTIONS(1521), - [aux_sym_permit_remote_open_token1] = ACTIONS(1521), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1521), - [aux_sym_port_token1] = ACTIONS(1521), - [aux_sym_preferred_authentications_token1] = ACTIONS(1521), - [aux_sym_protocol_token1] = ACTIONS(1521), - [aux_sym_proxy_command_token1] = ACTIONS(1521), - [aux_sym_proxy_jump_token1] = ACTIONS(1521), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1521), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1521), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1521), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1521), - [aux_sym_rekey_limit_token1] = ACTIONS(1521), - [aux_sym_remote_command_token1] = ACTIONS(1521), - [aux_sym_remote_forward_token1] = ACTIONS(1521), - [aux_sym_request_tty_token1] = ACTIONS(1521), - [aux_sym_required_rsa_size_token1] = ACTIONS(1521), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1521), - [aux_sym_security_key_provider_token1] = ACTIONS(1521), - [aux_sym_send_env_token1] = ACTIONS(1521), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1521), - [aux_sym_server_alive_interval_token1] = ACTIONS(1521), - [aux_sym_session_type_token1] = ACTIONS(1521), - [aux_sym_set_env_token1] = ACTIONS(1521), - [aux_sym_stdin_null_token1] = ACTIONS(1521), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1521), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1521), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1521), - [aux_sym_syslog_facility_token1] = ACTIONS(1521), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1521), - [aux_sym_keep_alive_token1] = ACTIONS(1521), - [aux_sym_tunnel_token1] = ACTIONS(1523), - [aux_sym_tunnel_device_token1] = ACTIONS(1521), - [aux_sym_update_host_keys_token1] = ACTIONS(1521), - [aux_sym_use_keychain_token1] = ACTIONS(1521), - [aux_sym_use_roaming_token1] = ACTIONS(1521), - [aux_sym_user_token1] = ACTIONS(1523), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1521), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1521), - [aux_sym_visual_host_key_token1] = ACTIONS(1521), - [aux_sym_xauth_location_token1] = ACTIONS(1521), + [ts_builtin_sym_end] = ACTIONS(1526), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1530), + [aux_sym_match_token1] = ACTIONS(1526), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1526), + [aux_sym_address_family_token1] = ACTIONS(1526), + [aux_sym_batch_mode_token1] = ACTIONS(1526), + [aux_sym_bind_address_token1] = ACTIONS(1526), + [aux_sym_bind_interface_token1] = ACTIONS(1526), + [aux_sym_canonical_domains_token1] = ACTIONS(1526), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1526), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1526), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1526), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1526), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1526), + [aux_sym_certificate_file_token1] = ACTIONS(1526), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1526), + [aux_sym_check_host_ip_token1] = ACTIONS(1526), + [aux_sym_ciphers_token1] = ACTIONS(1526), + [aux_sym_cipher_token1] = ACTIONS(1528), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1526), + [aux_sym_compression_token1] = ACTIONS(1526), + [aux_sym_connection_attempts_token1] = ACTIONS(1526), + [aux_sym_connect_timeout_token1] = ACTIONS(1526), + [aux_sym_control_master_token1] = ACTIONS(1526), + [aux_sym_control_path_token1] = ACTIONS(1526), + [aux_sym_control_persist_token1] = ACTIONS(1526), + [aux_sym_dynamic_forward_token1] = ACTIONS(1526), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1526), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1526), + [aux_sym_escape_char_token1] = ACTIONS(1526), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1526), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1526), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1526), + [aux_sym_forward_agent_token1] = ACTIONS(1526), + [aux_sym_forward_x11_token1] = ACTIONS(1528), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1526), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1526), + [aux_sym_gateway_ports_token1] = ACTIONS(1526), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1526), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1526), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1526), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1526), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1526), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1526), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1526), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1526), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1526), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1526), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1526), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1526), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1526), + [aux_sym_host_key_alias_token1] = ACTIONS(1526), + [aux_sym_hostname_token1] = ACTIONS(1526), + [aux_sym_identities_only_token1] = ACTIONS(1526), + [aux_sym_identity_agent_token1] = ACTIONS(1526), + [aux_sym_identity_file_token1] = ACTIONS(1526), + [aux_sym_ignore_unknown_token1] = ACTIONS(1526), + [aux_sym_include_token1] = ACTIONS(1526), + [aux_sym_ip_qos_token1] = ACTIONS(1526), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1526), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1526), + [aux_sym_kex_algorithms_token1] = ACTIONS(1526), + [aux_sym_known_hosts_command_token1] = ACTIONS(1526), + [aux_sym_local_command_token1] = ACTIONS(1526), + [aux_sym_local_forward_token1] = ACTIONS(1526), + [aux_sym_log_level_token1] = ACTIONS(1526), + [aux_sym_log_verbose_token1] = ACTIONS(1526), + [aux_sym_macs_token1] = ACTIONS(1526), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1526), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1526), + [aux_sym_password_authentication_token1] = ACTIONS(1526), + [aux_sym_permit_local_command_token1] = ACTIONS(1526), + [aux_sym_permit_remote_open_token1] = ACTIONS(1526), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1526), + [aux_sym_port_token1] = ACTIONS(1526), + [aux_sym_preferred_authentications_token1] = ACTIONS(1526), + [aux_sym_protocol_token1] = ACTIONS(1526), + [aux_sym_proxy_command_token1] = ACTIONS(1526), + [aux_sym_proxy_jump_token1] = ACTIONS(1526), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1526), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1526), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1526), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1526), + [aux_sym_rekey_limit_token1] = ACTIONS(1526), + [aux_sym_remote_command_token1] = ACTIONS(1526), + [aux_sym_remote_forward_token1] = ACTIONS(1526), + [aux_sym_request_tty_token1] = ACTIONS(1526), + [aux_sym_required_rsa_size_token1] = ACTIONS(1526), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1526), + [aux_sym_security_key_provider_token1] = ACTIONS(1526), + [aux_sym_send_env_token1] = ACTIONS(1526), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1526), + [aux_sym_server_alive_interval_token1] = ACTIONS(1526), + [aux_sym_session_type_token1] = ACTIONS(1526), + [aux_sym_set_env_token1] = ACTIONS(1526), + [aux_sym_stdin_null_token1] = ACTIONS(1526), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1526), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1526), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1526), + [aux_sym_syslog_facility_token1] = ACTIONS(1526), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1526), + [aux_sym_keep_alive_token1] = ACTIONS(1526), + [aux_sym_tunnel_token1] = ACTIONS(1528), + [aux_sym_tunnel_device_token1] = ACTIONS(1526), + [aux_sym_update_host_keys_token1] = ACTIONS(1526), + [aux_sym_use_keychain_token1] = ACTIONS(1526), + [aux_sym_use_roaming_token1] = ACTIONS(1526), + [aux_sym_user_token1] = ACTIONS(1528), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1526), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1526), + [aux_sym_visual_host_key_token1] = ACTIONS(1526), + [aux_sym_xauth_location_token1] = ACTIONS(1526), }, [165] = { - [ts_builtin_sym_end] = ACTIONS(1527), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1529), - [anon_sym_DQUOTE] = ACTIONS(1531), - [aux_sym_match_token1] = ACTIONS(1527), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1527), - [aux_sym_address_family_token1] = ACTIONS(1527), - [aux_sym_batch_mode_token1] = ACTIONS(1527), - [aux_sym_bind_address_token1] = ACTIONS(1527), - [aux_sym_bind_interface_token1] = ACTIONS(1527), - [aux_sym_canonical_domains_token1] = ACTIONS(1527), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1527), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1527), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1527), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1527), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1527), - [aux_sym_certificate_file_token1] = ACTIONS(1527), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1527), - [aux_sym_check_host_ip_token1] = ACTIONS(1527), - [aux_sym_ciphers_token1] = ACTIONS(1527), - [aux_sym_cipher_token1] = ACTIONS(1529), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1527), - [aux_sym_compression_token1] = ACTIONS(1527), - [aux_sym_connection_attempts_token1] = ACTIONS(1527), - [aux_sym_connect_timeout_token1] = ACTIONS(1527), - [aux_sym_control_master_token1] = ACTIONS(1527), - [aux_sym_control_path_token1] = ACTIONS(1527), - [aux_sym_control_persist_token1] = ACTIONS(1527), - [aux_sym_dynamic_forward_token1] = ACTIONS(1527), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1527), - [aux_sym_escape_char_token1] = ACTIONS(1527), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1527), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1527), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1527), - [aux_sym_forward_agent_token1] = ACTIONS(1527), - [aux_sym_forward_x11_token1] = ACTIONS(1529), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1527), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1527), - [aux_sym_gateway_ports_token1] = ACTIONS(1527), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1527), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1527), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1527), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1527), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1527), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1527), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1527), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1527), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1527), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1527), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1527), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1527), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1527), - [aux_sym_host_key_alias_token1] = ACTIONS(1527), - [aux_sym_hostname_token1] = ACTIONS(1527), - [aux_sym_identities_only_token1] = ACTIONS(1527), - [aux_sym_identity_agent_token1] = ACTIONS(1527), - [aux_sym_identity_file_token1] = ACTIONS(1527), - [aux_sym_ignore_unknown_token1] = ACTIONS(1527), - [aux_sym_include_token1] = ACTIONS(1527), - [aux_sym_ip_qos_token1] = ACTIONS(1527), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1527), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1527), - [aux_sym_kex_algorithms_token1] = ACTIONS(1527), - [aux_sym_known_hosts_command_token1] = ACTIONS(1527), - [aux_sym_local_command_token1] = ACTIONS(1527), - [aux_sym_local_forward_token1] = ACTIONS(1527), - [aux_sym_log_level_token1] = ACTIONS(1527), - [aux_sym_log_verbose_token1] = ACTIONS(1527), - [aux_sym_macs_token1] = ACTIONS(1527), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1527), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1527), - [aux_sym_password_authentication_token1] = ACTIONS(1527), - [aux_sym_permit_local_command_token1] = ACTIONS(1527), - [aux_sym_permit_remote_open_token1] = ACTIONS(1527), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1527), - [aux_sym_port_token1] = ACTIONS(1527), - [aux_sym_preferred_authentications_token1] = ACTIONS(1527), - [aux_sym_protocol_token1] = ACTIONS(1527), - [aux_sym_proxy_command_token1] = ACTIONS(1527), - [aux_sym_proxy_jump_token1] = ACTIONS(1527), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1527), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1527), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1527), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1527), - [aux_sym_rekey_limit_token1] = ACTIONS(1527), - [aux_sym_remote_command_token1] = ACTIONS(1527), - [aux_sym_remote_forward_token1] = ACTIONS(1527), - [aux_sym_request_tty_token1] = ACTIONS(1527), - [aux_sym_required_rsa_size_token1] = ACTIONS(1527), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1527), - [aux_sym_security_key_provider_token1] = ACTIONS(1527), - [aux_sym_send_env_token1] = ACTIONS(1527), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1527), - [aux_sym_server_alive_interval_token1] = ACTIONS(1527), - [aux_sym_session_type_token1] = ACTIONS(1527), - [aux_sym_set_env_token1] = ACTIONS(1527), - [aux_sym_stdin_null_token1] = ACTIONS(1527), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1527), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1527), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1527), - [aux_sym_syslog_facility_token1] = ACTIONS(1527), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1527), - [aux_sym_keep_alive_token1] = ACTIONS(1527), - [aux_sym_tunnel_token1] = ACTIONS(1529), - [aux_sym_tunnel_device_token1] = ACTIONS(1527), - [aux_sym_update_host_keys_token1] = ACTIONS(1527), - [aux_sym_use_keychain_token1] = ACTIONS(1527), - [aux_sym_use_roaming_token1] = ACTIONS(1527), - [aux_sym_user_token1] = ACTIONS(1529), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1527), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1527), - [aux_sym_visual_host_key_token1] = ACTIONS(1527), - [aux_sym_xauth_location_token1] = ACTIONS(1527), + [ts_builtin_sym_end] = ACTIONS(1532), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1534), + [anon_sym_DQUOTE] = ACTIONS(1536), + [aux_sym_match_token1] = ACTIONS(1532), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1532), + [aux_sym_address_family_token1] = ACTIONS(1532), + [aux_sym_batch_mode_token1] = ACTIONS(1532), + [aux_sym_bind_address_token1] = ACTIONS(1532), + [aux_sym_bind_interface_token1] = ACTIONS(1532), + [aux_sym_canonical_domains_token1] = ACTIONS(1532), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1532), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1532), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1532), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1532), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1532), + [aux_sym_certificate_file_token1] = ACTIONS(1532), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1532), + [aux_sym_check_host_ip_token1] = ACTIONS(1532), + [aux_sym_ciphers_token1] = ACTIONS(1532), + [aux_sym_cipher_token1] = ACTIONS(1534), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1532), + [aux_sym_compression_token1] = ACTIONS(1532), + [aux_sym_connection_attempts_token1] = ACTIONS(1532), + [aux_sym_connect_timeout_token1] = ACTIONS(1532), + [aux_sym_control_master_token1] = ACTIONS(1532), + [aux_sym_control_path_token1] = ACTIONS(1532), + [aux_sym_control_persist_token1] = ACTIONS(1532), + [aux_sym_dynamic_forward_token1] = ACTIONS(1532), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1532), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1532), + [aux_sym_escape_char_token1] = ACTIONS(1532), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1532), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1532), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1532), + [aux_sym_forward_agent_token1] = ACTIONS(1532), + [aux_sym_forward_x11_token1] = ACTIONS(1534), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1532), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1532), + [aux_sym_gateway_ports_token1] = ACTIONS(1532), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1532), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1532), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1532), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1532), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1532), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1532), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1532), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1532), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1532), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1532), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1532), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1532), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1532), + [aux_sym_host_key_alias_token1] = ACTIONS(1532), + [aux_sym_hostname_token1] = ACTIONS(1532), + [aux_sym_identities_only_token1] = ACTIONS(1532), + [aux_sym_identity_agent_token1] = ACTIONS(1532), + [aux_sym_identity_file_token1] = ACTIONS(1532), + [aux_sym_ignore_unknown_token1] = ACTIONS(1532), + [aux_sym_include_token1] = ACTIONS(1532), + [aux_sym_ip_qos_token1] = ACTIONS(1532), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1532), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1532), + [aux_sym_kex_algorithms_token1] = ACTIONS(1532), + [aux_sym_known_hosts_command_token1] = ACTIONS(1532), + [aux_sym_local_command_token1] = ACTIONS(1532), + [aux_sym_local_forward_token1] = ACTIONS(1532), + [aux_sym_log_level_token1] = ACTIONS(1532), + [aux_sym_log_verbose_token1] = ACTIONS(1532), + [aux_sym_macs_token1] = ACTIONS(1532), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1532), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1532), + [aux_sym_password_authentication_token1] = ACTIONS(1532), + [aux_sym_permit_local_command_token1] = ACTIONS(1532), + [aux_sym_permit_remote_open_token1] = ACTIONS(1532), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1532), + [aux_sym_port_token1] = ACTIONS(1532), + [aux_sym_preferred_authentications_token1] = ACTIONS(1532), + [aux_sym_protocol_token1] = ACTIONS(1532), + [aux_sym_proxy_command_token1] = ACTIONS(1532), + [aux_sym_proxy_jump_token1] = ACTIONS(1532), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1532), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1532), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1532), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1532), + [aux_sym_rekey_limit_token1] = ACTIONS(1532), + [aux_sym_remote_command_token1] = ACTIONS(1532), + [aux_sym_remote_forward_token1] = ACTIONS(1532), + [aux_sym_request_tty_token1] = ACTIONS(1532), + [aux_sym_required_rsa_size_token1] = ACTIONS(1532), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1532), + [aux_sym_security_key_provider_token1] = ACTIONS(1532), + [aux_sym_send_env_token1] = ACTIONS(1532), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1532), + [aux_sym_server_alive_interval_token1] = ACTIONS(1532), + [aux_sym_session_type_token1] = ACTIONS(1532), + [aux_sym_set_env_token1] = ACTIONS(1532), + [aux_sym_stdin_null_token1] = ACTIONS(1532), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1532), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1532), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1532), + [aux_sym_syslog_facility_token1] = ACTIONS(1532), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1532), + [aux_sym_keep_alive_token1] = ACTIONS(1532), + [aux_sym_tunnel_token1] = ACTIONS(1534), + [aux_sym_tunnel_device_token1] = ACTIONS(1532), + [aux_sym_update_host_keys_token1] = ACTIONS(1532), + [aux_sym_use_keychain_token1] = ACTIONS(1532), + [aux_sym_use_roaming_token1] = ACTIONS(1532), + [aux_sym_user_token1] = ACTIONS(1534), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1532), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1532), + [aux_sym_visual_host_key_token1] = ACTIONS(1532), + [aux_sym_xauth_location_token1] = ACTIONS(1532), }, [166] = { - [ts_builtin_sym_end] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1537), - [aux_sym_match_token1] = ACTIONS(1533), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1533), - [aux_sym_address_family_token1] = ACTIONS(1533), - [aux_sym_batch_mode_token1] = ACTIONS(1533), - [aux_sym_bind_address_token1] = ACTIONS(1533), - [aux_sym_bind_interface_token1] = ACTIONS(1533), - [aux_sym_canonical_domains_token1] = ACTIONS(1533), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1533), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1533), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1533), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1533), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1533), - [aux_sym_certificate_file_token1] = ACTIONS(1533), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1533), - [aux_sym_check_host_ip_token1] = ACTIONS(1533), - [aux_sym_ciphers_token1] = ACTIONS(1533), - [aux_sym_cipher_token1] = ACTIONS(1535), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1533), - [aux_sym_compression_token1] = ACTIONS(1533), - [aux_sym_connection_attempts_token1] = ACTIONS(1533), - [aux_sym_connect_timeout_token1] = ACTIONS(1533), - [aux_sym_control_master_token1] = ACTIONS(1533), - [aux_sym_control_path_token1] = ACTIONS(1533), - [aux_sym_control_persist_token1] = ACTIONS(1533), - [aux_sym_dynamic_forward_token1] = ACTIONS(1533), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1533), - [aux_sym_escape_char_token1] = ACTIONS(1533), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1533), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1533), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1533), - [aux_sym_forward_agent_token1] = ACTIONS(1533), - [aux_sym_forward_x11_token1] = ACTIONS(1535), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1533), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1533), - [aux_sym_gateway_ports_token1] = ACTIONS(1533), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1533), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1533), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1533), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1533), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1533), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1533), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1533), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1533), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1533), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1533), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1533), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1533), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1533), - [aux_sym_host_key_alias_token1] = ACTIONS(1533), - [aux_sym_hostname_token1] = ACTIONS(1533), - [aux_sym_identities_only_token1] = ACTIONS(1533), - [aux_sym_identity_agent_token1] = ACTIONS(1533), - [aux_sym_identity_file_token1] = ACTIONS(1533), - [aux_sym_ignore_unknown_token1] = ACTIONS(1533), - [aux_sym_include_token1] = ACTIONS(1533), - [aux_sym_ip_qos_token1] = ACTIONS(1533), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1533), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1533), - [aux_sym_kex_algorithms_token1] = ACTIONS(1533), - [aux_sym_known_hosts_command_token1] = ACTIONS(1533), - [aux_sym_local_command_token1] = ACTIONS(1533), - [aux_sym_local_forward_token1] = ACTIONS(1533), - [aux_sym_log_level_token1] = ACTIONS(1533), - [aux_sym_log_verbose_token1] = ACTIONS(1533), - [aux_sym_macs_token1] = ACTIONS(1533), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1533), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1533), - [aux_sym_password_authentication_token1] = ACTIONS(1533), - [aux_sym_permit_local_command_token1] = ACTIONS(1533), - [aux_sym_permit_remote_open_token1] = ACTIONS(1533), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1533), - [aux_sym_port_token1] = ACTIONS(1533), - [aux_sym_preferred_authentications_token1] = ACTIONS(1533), - [aux_sym_protocol_token1] = ACTIONS(1533), - [aux_sym_proxy_command_token1] = ACTIONS(1533), - [aux_sym_proxy_jump_token1] = ACTIONS(1533), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1533), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1533), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1533), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1533), - [aux_sym_rekey_limit_token1] = ACTIONS(1533), - [aux_sym_remote_command_token1] = ACTIONS(1533), - [aux_sym_remote_forward_token1] = ACTIONS(1533), - [aux_sym_request_tty_token1] = ACTIONS(1533), - [aux_sym_required_rsa_size_token1] = ACTIONS(1533), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1533), - [aux_sym_security_key_provider_token1] = ACTIONS(1533), - [aux_sym_send_env_token1] = ACTIONS(1533), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1533), - [aux_sym_server_alive_interval_token1] = ACTIONS(1533), - [aux_sym_session_type_token1] = ACTIONS(1533), - [aux_sym_set_env_token1] = ACTIONS(1533), - [aux_sym_stdin_null_token1] = ACTIONS(1533), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1533), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1533), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1533), - [aux_sym_syslog_facility_token1] = ACTIONS(1533), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1533), - [aux_sym_keep_alive_token1] = ACTIONS(1533), - [aux_sym_tunnel_token1] = ACTIONS(1535), - [aux_sym_tunnel_device_token1] = ACTIONS(1533), - [aux_sym_update_host_keys_token1] = ACTIONS(1533), - [aux_sym_use_keychain_token1] = ACTIONS(1533), - [aux_sym_use_roaming_token1] = ACTIONS(1533), - [aux_sym_user_token1] = ACTIONS(1535), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1533), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1533), - [aux_sym_visual_host_key_token1] = ACTIONS(1533), - [aux_sym_xauth_location_token1] = ACTIONS(1533), + [ts_builtin_sym_end] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1542), + [aux_sym_match_token1] = ACTIONS(1538), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1538), + [aux_sym_address_family_token1] = ACTIONS(1538), + [aux_sym_batch_mode_token1] = ACTIONS(1538), + [aux_sym_bind_address_token1] = ACTIONS(1538), + [aux_sym_bind_interface_token1] = ACTIONS(1538), + [aux_sym_canonical_domains_token1] = ACTIONS(1538), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1538), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1538), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1538), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1538), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1538), + [aux_sym_certificate_file_token1] = ACTIONS(1538), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1538), + [aux_sym_check_host_ip_token1] = ACTIONS(1538), + [aux_sym_ciphers_token1] = ACTIONS(1538), + [aux_sym_cipher_token1] = ACTIONS(1540), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1538), + [aux_sym_compression_token1] = ACTIONS(1538), + [aux_sym_connection_attempts_token1] = ACTIONS(1538), + [aux_sym_connect_timeout_token1] = ACTIONS(1538), + [aux_sym_control_master_token1] = ACTIONS(1538), + [aux_sym_control_path_token1] = ACTIONS(1538), + [aux_sym_control_persist_token1] = ACTIONS(1538), + [aux_sym_dynamic_forward_token1] = ACTIONS(1538), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1538), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1538), + [aux_sym_escape_char_token1] = ACTIONS(1538), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1538), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1538), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1538), + [aux_sym_forward_agent_token1] = ACTIONS(1538), + [aux_sym_forward_x11_token1] = ACTIONS(1540), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1538), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1538), + [aux_sym_gateway_ports_token1] = ACTIONS(1538), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1538), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1538), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1538), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1538), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1538), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1538), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1538), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1538), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1538), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1538), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1538), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1538), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1538), + [aux_sym_host_key_alias_token1] = ACTIONS(1538), + [aux_sym_hostname_token1] = ACTIONS(1538), + [aux_sym_identities_only_token1] = ACTIONS(1538), + [aux_sym_identity_agent_token1] = ACTIONS(1538), + [aux_sym_identity_file_token1] = ACTIONS(1538), + [aux_sym_ignore_unknown_token1] = ACTIONS(1538), + [aux_sym_include_token1] = ACTIONS(1538), + [aux_sym_ip_qos_token1] = ACTIONS(1538), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1538), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1538), + [aux_sym_kex_algorithms_token1] = ACTIONS(1538), + [aux_sym_known_hosts_command_token1] = ACTIONS(1538), + [aux_sym_local_command_token1] = ACTIONS(1538), + [aux_sym_local_forward_token1] = ACTIONS(1538), + [aux_sym_log_level_token1] = ACTIONS(1538), + [aux_sym_log_verbose_token1] = ACTIONS(1538), + [aux_sym_macs_token1] = ACTIONS(1538), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1538), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1538), + [aux_sym_password_authentication_token1] = ACTIONS(1538), + [aux_sym_permit_local_command_token1] = ACTIONS(1538), + [aux_sym_permit_remote_open_token1] = ACTIONS(1538), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1538), + [aux_sym_port_token1] = ACTIONS(1538), + [aux_sym_preferred_authentications_token1] = ACTIONS(1538), + [aux_sym_protocol_token1] = ACTIONS(1538), + [aux_sym_proxy_command_token1] = ACTIONS(1538), + [aux_sym_proxy_jump_token1] = ACTIONS(1538), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1538), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1538), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1538), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1538), + [aux_sym_rekey_limit_token1] = ACTIONS(1538), + [aux_sym_remote_command_token1] = ACTIONS(1538), + [aux_sym_remote_forward_token1] = ACTIONS(1538), + [aux_sym_request_tty_token1] = ACTIONS(1538), + [aux_sym_required_rsa_size_token1] = ACTIONS(1538), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1538), + [aux_sym_security_key_provider_token1] = ACTIONS(1538), + [aux_sym_send_env_token1] = ACTIONS(1538), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1538), + [aux_sym_server_alive_interval_token1] = ACTIONS(1538), + [aux_sym_session_type_token1] = ACTIONS(1538), + [aux_sym_set_env_token1] = ACTIONS(1538), + [aux_sym_stdin_null_token1] = ACTIONS(1538), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1538), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1538), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1538), + [aux_sym_syslog_facility_token1] = ACTIONS(1538), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1538), + [aux_sym_keep_alive_token1] = ACTIONS(1538), + [aux_sym_tunnel_token1] = ACTIONS(1540), + [aux_sym_tunnel_device_token1] = ACTIONS(1538), + [aux_sym_update_host_keys_token1] = ACTIONS(1538), + [aux_sym_use_keychain_token1] = ACTIONS(1538), + [aux_sym_use_roaming_token1] = ACTIONS(1538), + [aux_sym_user_token1] = ACTIONS(1540), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1538), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1538), + [aux_sym_visual_host_key_token1] = ACTIONS(1538), + [aux_sym_xauth_location_token1] = ACTIONS(1538), }, [167] = { - [ts_builtin_sym_end] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1541), - [anon_sym_DQUOTE] = ACTIONS(1543), - [aux_sym_match_token1] = ACTIONS(1539), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1539), - [aux_sym_address_family_token1] = ACTIONS(1539), - [aux_sym_batch_mode_token1] = ACTIONS(1539), - [aux_sym_bind_address_token1] = ACTIONS(1539), - [aux_sym_bind_interface_token1] = ACTIONS(1539), - [aux_sym_canonical_domains_token1] = ACTIONS(1539), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1539), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1539), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1539), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1539), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1539), - [aux_sym_certificate_file_token1] = ACTIONS(1539), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1539), - [aux_sym_check_host_ip_token1] = ACTIONS(1539), - [aux_sym_ciphers_token1] = ACTIONS(1539), - [aux_sym_cipher_token1] = ACTIONS(1541), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1539), - [aux_sym_compression_token1] = ACTIONS(1539), - [aux_sym_connection_attempts_token1] = ACTIONS(1539), - [aux_sym_connect_timeout_token1] = ACTIONS(1539), - [aux_sym_control_master_token1] = ACTIONS(1539), - [aux_sym_control_path_token1] = ACTIONS(1539), - [aux_sym_control_persist_token1] = ACTIONS(1539), - [aux_sym_dynamic_forward_token1] = ACTIONS(1539), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1539), - [aux_sym_escape_char_token1] = ACTIONS(1539), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1539), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1539), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1539), - [aux_sym_forward_agent_token1] = ACTIONS(1539), - [aux_sym_forward_x11_token1] = ACTIONS(1541), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1539), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1539), - [aux_sym_gateway_ports_token1] = ACTIONS(1539), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1539), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1539), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1539), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1539), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1539), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1539), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1539), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1539), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1539), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1539), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1539), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1539), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1539), - [aux_sym_host_key_alias_token1] = ACTIONS(1539), - [aux_sym_hostname_token1] = ACTIONS(1539), - [aux_sym_identities_only_token1] = ACTIONS(1539), - [aux_sym_identity_agent_token1] = ACTIONS(1539), - [aux_sym_identity_file_token1] = ACTIONS(1539), - [aux_sym_ignore_unknown_token1] = ACTIONS(1539), - [aux_sym_include_token1] = ACTIONS(1539), - [aux_sym_ip_qos_token1] = ACTIONS(1539), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1539), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1539), - [aux_sym_kex_algorithms_token1] = ACTIONS(1539), - [aux_sym_known_hosts_command_token1] = ACTIONS(1539), - [aux_sym_local_command_token1] = ACTIONS(1539), - [aux_sym_local_forward_token1] = ACTIONS(1539), - [aux_sym_log_level_token1] = ACTIONS(1539), - [aux_sym_log_verbose_token1] = ACTIONS(1539), - [aux_sym_macs_token1] = ACTIONS(1539), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1539), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1539), - [aux_sym_password_authentication_token1] = ACTIONS(1539), - [aux_sym_permit_local_command_token1] = ACTIONS(1539), - [aux_sym_permit_remote_open_token1] = ACTIONS(1539), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1539), - [aux_sym_port_token1] = ACTIONS(1539), - [aux_sym_preferred_authentications_token1] = ACTIONS(1539), - [aux_sym_protocol_token1] = ACTIONS(1539), - [aux_sym_proxy_command_token1] = ACTIONS(1539), - [aux_sym_proxy_jump_token1] = ACTIONS(1539), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1539), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1539), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1539), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1539), - [aux_sym_rekey_limit_token1] = ACTIONS(1539), - [aux_sym_remote_command_token1] = ACTIONS(1539), - [aux_sym_remote_forward_token1] = ACTIONS(1539), - [aux_sym_request_tty_token1] = ACTIONS(1539), - [aux_sym_required_rsa_size_token1] = ACTIONS(1539), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1539), - [aux_sym_security_key_provider_token1] = ACTIONS(1539), - [aux_sym_send_env_token1] = ACTIONS(1539), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1539), - [aux_sym_server_alive_interval_token1] = ACTIONS(1539), - [aux_sym_session_type_token1] = ACTIONS(1539), - [aux_sym_set_env_token1] = ACTIONS(1539), - [aux_sym_stdin_null_token1] = ACTIONS(1539), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1539), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1539), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1539), - [aux_sym_syslog_facility_token1] = ACTIONS(1539), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1539), - [aux_sym_keep_alive_token1] = ACTIONS(1539), - [aux_sym_tunnel_token1] = ACTIONS(1541), - [aux_sym_tunnel_device_token1] = ACTIONS(1539), - [aux_sym_update_host_keys_token1] = ACTIONS(1539), - [aux_sym_use_keychain_token1] = ACTIONS(1539), - [aux_sym_use_roaming_token1] = ACTIONS(1539), - [aux_sym_user_token1] = ACTIONS(1541), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1539), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1539), - [aux_sym_visual_host_key_token1] = ACTIONS(1539), - [aux_sym_xauth_location_token1] = ACTIONS(1539), + [ts_builtin_sym_end] = ACTIONS(1544), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1548), + [aux_sym_match_token1] = ACTIONS(1544), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1544), + [aux_sym_address_family_token1] = ACTIONS(1544), + [aux_sym_batch_mode_token1] = ACTIONS(1544), + [aux_sym_bind_address_token1] = ACTIONS(1544), + [aux_sym_bind_interface_token1] = ACTIONS(1544), + [aux_sym_canonical_domains_token1] = ACTIONS(1544), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1544), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1544), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1544), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1544), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1544), + [aux_sym_certificate_file_token1] = ACTIONS(1544), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1544), + [aux_sym_check_host_ip_token1] = ACTIONS(1544), + [aux_sym_ciphers_token1] = ACTIONS(1544), + [aux_sym_cipher_token1] = ACTIONS(1546), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1544), + [aux_sym_compression_token1] = ACTIONS(1544), + [aux_sym_connection_attempts_token1] = ACTIONS(1544), + [aux_sym_connect_timeout_token1] = ACTIONS(1544), + [aux_sym_control_master_token1] = ACTIONS(1544), + [aux_sym_control_path_token1] = ACTIONS(1544), + [aux_sym_control_persist_token1] = ACTIONS(1544), + [aux_sym_dynamic_forward_token1] = ACTIONS(1544), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1544), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1544), + [aux_sym_escape_char_token1] = ACTIONS(1544), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1544), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1544), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1544), + [aux_sym_forward_agent_token1] = ACTIONS(1544), + [aux_sym_forward_x11_token1] = ACTIONS(1546), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1544), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1544), + [aux_sym_gateway_ports_token1] = ACTIONS(1544), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1544), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1544), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1544), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1544), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1544), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1544), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1544), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1544), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1544), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1544), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1544), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1544), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1544), + [aux_sym_host_key_alias_token1] = ACTIONS(1544), + [aux_sym_hostname_token1] = ACTIONS(1544), + [aux_sym_identities_only_token1] = ACTIONS(1544), + [aux_sym_identity_agent_token1] = ACTIONS(1544), + [aux_sym_identity_file_token1] = ACTIONS(1544), + [aux_sym_ignore_unknown_token1] = ACTIONS(1544), + [aux_sym_include_token1] = ACTIONS(1544), + [aux_sym_ip_qos_token1] = ACTIONS(1544), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1544), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1544), + [aux_sym_kex_algorithms_token1] = ACTIONS(1544), + [aux_sym_known_hosts_command_token1] = ACTIONS(1544), + [aux_sym_local_command_token1] = ACTIONS(1544), + [aux_sym_local_forward_token1] = ACTIONS(1544), + [aux_sym_log_level_token1] = ACTIONS(1544), + [aux_sym_log_verbose_token1] = ACTIONS(1544), + [aux_sym_macs_token1] = ACTIONS(1544), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1544), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1544), + [aux_sym_password_authentication_token1] = ACTIONS(1544), + [aux_sym_permit_local_command_token1] = ACTIONS(1544), + [aux_sym_permit_remote_open_token1] = ACTIONS(1544), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1544), + [aux_sym_port_token1] = ACTIONS(1544), + [aux_sym_preferred_authentications_token1] = ACTIONS(1544), + [aux_sym_protocol_token1] = ACTIONS(1544), + [aux_sym_proxy_command_token1] = ACTIONS(1544), + [aux_sym_proxy_jump_token1] = ACTIONS(1544), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1544), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1544), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1544), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1544), + [aux_sym_rekey_limit_token1] = ACTIONS(1544), + [aux_sym_remote_command_token1] = ACTIONS(1544), + [aux_sym_remote_forward_token1] = ACTIONS(1544), + [aux_sym_request_tty_token1] = ACTIONS(1544), + [aux_sym_required_rsa_size_token1] = ACTIONS(1544), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1544), + [aux_sym_security_key_provider_token1] = ACTIONS(1544), + [aux_sym_send_env_token1] = ACTIONS(1544), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1544), + [aux_sym_server_alive_interval_token1] = ACTIONS(1544), + [aux_sym_session_type_token1] = ACTIONS(1544), + [aux_sym_set_env_token1] = ACTIONS(1544), + [aux_sym_stdin_null_token1] = ACTIONS(1544), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1544), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1544), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1544), + [aux_sym_syslog_facility_token1] = ACTIONS(1544), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1544), + [aux_sym_keep_alive_token1] = ACTIONS(1544), + [aux_sym_tunnel_token1] = ACTIONS(1546), + [aux_sym_tunnel_device_token1] = ACTIONS(1544), + [aux_sym_update_host_keys_token1] = ACTIONS(1544), + [aux_sym_use_keychain_token1] = ACTIONS(1544), + [aux_sym_use_roaming_token1] = ACTIONS(1544), + [aux_sym_user_token1] = ACTIONS(1546), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1544), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1544), + [aux_sym_visual_host_key_token1] = ACTIONS(1544), + [aux_sym_xauth_location_token1] = ACTIONS(1544), }, [168] = { - [ts_builtin_sym_end] = ACTIONS(1545), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1547), - [anon_sym_DQUOTE] = ACTIONS(1549), - [aux_sym_match_token1] = ACTIONS(1545), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1545), - [aux_sym_address_family_token1] = ACTIONS(1545), - [aux_sym_batch_mode_token1] = ACTIONS(1545), - [aux_sym_bind_address_token1] = ACTIONS(1545), - [aux_sym_bind_interface_token1] = ACTIONS(1545), - [aux_sym_canonical_domains_token1] = ACTIONS(1545), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1545), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1545), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1545), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1545), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1545), - [aux_sym_certificate_file_token1] = ACTIONS(1545), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1545), - [aux_sym_check_host_ip_token1] = ACTIONS(1545), - [aux_sym_ciphers_token1] = ACTIONS(1545), - [aux_sym_cipher_token1] = ACTIONS(1547), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1545), - [aux_sym_compression_token1] = ACTIONS(1545), - [aux_sym_connection_attempts_token1] = ACTIONS(1545), - [aux_sym_connect_timeout_token1] = ACTIONS(1545), - [aux_sym_control_master_token1] = ACTIONS(1545), - [aux_sym_control_path_token1] = ACTIONS(1545), - [aux_sym_control_persist_token1] = ACTIONS(1545), - [aux_sym_dynamic_forward_token1] = ACTIONS(1545), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1545), - [aux_sym_escape_char_token1] = ACTIONS(1545), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1545), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1545), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1545), - [aux_sym_forward_agent_token1] = ACTIONS(1545), - [aux_sym_forward_x11_token1] = ACTIONS(1547), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1545), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1545), - [aux_sym_gateway_ports_token1] = ACTIONS(1545), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1545), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1545), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1545), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1545), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1545), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1545), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1545), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1545), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1545), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1545), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1545), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1545), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1545), - [aux_sym_host_key_alias_token1] = ACTIONS(1545), - [aux_sym_hostname_token1] = ACTIONS(1545), - [aux_sym_identities_only_token1] = ACTIONS(1545), - [aux_sym_identity_agent_token1] = ACTIONS(1545), - [aux_sym_identity_file_token1] = ACTIONS(1545), - [aux_sym_ignore_unknown_token1] = ACTIONS(1545), - [aux_sym_include_token1] = ACTIONS(1545), - [aux_sym_ip_qos_token1] = ACTIONS(1545), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1545), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1545), - [aux_sym_kex_algorithms_token1] = ACTIONS(1545), - [aux_sym_known_hosts_command_token1] = ACTIONS(1545), - [aux_sym_local_command_token1] = ACTIONS(1545), - [aux_sym_local_forward_token1] = ACTIONS(1545), - [aux_sym_log_level_token1] = ACTIONS(1545), - [aux_sym_log_verbose_token1] = ACTIONS(1545), - [aux_sym_macs_token1] = ACTIONS(1545), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1545), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1545), - [aux_sym_password_authentication_token1] = ACTIONS(1545), - [aux_sym_permit_local_command_token1] = ACTIONS(1545), - [aux_sym_permit_remote_open_token1] = ACTIONS(1545), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1545), - [aux_sym_port_token1] = ACTIONS(1545), - [aux_sym_preferred_authentications_token1] = ACTIONS(1545), - [aux_sym_protocol_token1] = ACTIONS(1545), - [aux_sym_proxy_command_token1] = ACTIONS(1545), - [aux_sym_proxy_jump_token1] = ACTIONS(1545), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1545), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1545), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1545), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1545), - [aux_sym_rekey_limit_token1] = ACTIONS(1545), - [aux_sym_remote_command_token1] = ACTIONS(1545), - [aux_sym_remote_forward_token1] = ACTIONS(1545), - [aux_sym_request_tty_token1] = ACTIONS(1545), - [aux_sym_required_rsa_size_token1] = ACTIONS(1545), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1545), - [aux_sym_security_key_provider_token1] = ACTIONS(1545), - [aux_sym_send_env_token1] = ACTIONS(1545), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1545), - [aux_sym_server_alive_interval_token1] = ACTIONS(1545), - [aux_sym_session_type_token1] = ACTIONS(1545), - [aux_sym_set_env_token1] = ACTIONS(1545), - [aux_sym_stdin_null_token1] = ACTIONS(1545), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1545), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1545), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1545), - [aux_sym_syslog_facility_token1] = ACTIONS(1545), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1545), - [aux_sym_keep_alive_token1] = ACTIONS(1545), - [aux_sym_tunnel_token1] = ACTIONS(1547), - [aux_sym_tunnel_device_token1] = ACTIONS(1545), - [aux_sym_update_host_keys_token1] = ACTIONS(1545), - [aux_sym_use_keychain_token1] = ACTIONS(1545), - [aux_sym_use_roaming_token1] = ACTIONS(1545), - [aux_sym_user_token1] = ACTIONS(1547), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1545), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1545), - [aux_sym_visual_host_key_token1] = ACTIONS(1545), - [aux_sym_xauth_location_token1] = ACTIONS(1545), + [ts_builtin_sym_end] = ACTIONS(1550), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1552), + [anon_sym_DQUOTE] = ACTIONS(1554), + [aux_sym_match_token1] = ACTIONS(1550), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1550), + [aux_sym_address_family_token1] = ACTIONS(1550), + [aux_sym_batch_mode_token1] = ACTIONS(1550), + [aux_sym_bind_address_token1] = ACTIONS(1550), + [aux_sym_bind_interface_token1] = ACTIONS(1550), + [aux_sym_canonical_domains_token1] = ACTIONS(1550), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1550), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1550), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1550), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1550), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1550), + [aux_sym_certificate_file_token1] = ACTIONS(1550), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1550), + [aux_sym_check_host_ip_token1] = ACTIONS(1550), + [aux_sym_ciphers_token1] = ACTIONS(1550), + [aux_sym_cipher_token1] = ACTIONS(1552), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1550), + [aux_sym_compression_token1] = ACTIONS(1550), + [aux_sym_connection_attempts_token1] = ACTIONS(1550), + [aux_sym_connect_timeout_token1] = ACTIONS(1550), + [aux_sym_control_master_token1] = ACTIONS(1550), + [aux_sym_control_path_token1] = ACTIONS(1550), + [aux_sym_control_persist_token1] = ACTIONS(1550), + [aux_sym_dynamic_forward_token1] = ACTIONS(1550), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1550), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1550), + [aux_sym_escape_char_token1] = ACTIONS(1550), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1550), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1550), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1550), + [aux_sym_forward_agent_token1] = ACTIONS(1550), + [aux_sym_forward_x11_token1] = ACTIONS(1552), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1550), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1550), + [aux_sym_gateway_ports_token1] = ACTIONS(1550), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1550), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1550), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1550), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1550), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1550), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1550), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1550), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1550), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1550), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1550), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1550), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1550), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1550), + [aux_sym_host_key_alias_token1] = ACTIONS(1550), + [aux_sym_hostname_token1] = ACTIONS(1550), + [aux_sym_identities_only_token1] = ACTIONS(1550), + [aux_sym_identity_agent_token1] = ACTIONS(1550), + [aux_sym_identity_file_token1] = ACTIONS(1550), + [aux_sym_ignore_unknown_token1] = ACTIONS(1550), + [aux_sym_include_token1] = ACTIONS(1550), + [aux_sym_ip_qos_token1] = ACTIONS(1550), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1550), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1550), + [aux_sym_kex_algorithms_token1] = ACTIONS(1550), + [aux_sym_known_hosts_command_token1] = ACTIONS(1550), + [aux_sym_local_command_token1] = ACTIONS(1550), + [aux_sym_local_forward_token1] = ACTIONS(1550), + [aux_sym_log_level_token1] = ACTIONS(1550), + [aux_sym_log_verbose_token1] = ACTIONS(1550), + [aux_sym_macs_token1] = ACTIONS(1550), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1550), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1550), + [aux_sym_password_authentication_token1] = ACTIONS(1550), + [aux_sym_permit_local_command_token1] = ACTIONS(1550), + [aux_sym_permit_remote_open_token1] = ACTIONS(1550), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1550), + [aux_sym_port_token1] = ACTIONS(1550), + [aux_sym_preferred_authentications_token1] = ACTIONS(1550), + [aux_sym_protocol_token1] = ACTIONS(1550), + [aux_sym_proxy_command_token1] = ACTIONS(1550), + [aux_sym_proxy_jump_token1] = ACTIONS(1550), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1550), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1550), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1550), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1550), + [aux_sym_rekey_limit_token1] = ACTIONS(1550), + [aux_sym_remote_command_token1] = ACTIONS(1550), + [aux_sym_remote_forward_token1] = ACTIONS(1550), + [aux_sym_request_tty_token1] = ACTIONS(1550), + [aux_sym_required_rsa_size_token1] = ACTIONS(1550), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1550), + [aux_sym_security_key_provider_token1] = ACTIONS(1550), + [aux_sym_send_env_token1] = ACTIONS(1550), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1550), + [aux_sym_server_alive_interval_token1] = ACTIONS(1550), + [aux_sym_session_type_token1] = ACTIONS(1550), + [aux_sym_set_env_token1] = ACTIONS(1550), + [aux_sym_stdin_null_token1] = ACTIONS(1550), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1550), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1550), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1550), + [aux_sym_syslog_facility_token1] = ACTIONS(1550), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1550), + [aux_sym_keep_alive_token1] = ACTIONS(1550), + [aux_sym_tunnel_token1] = ACTIONS(1552), + [aux_sym_tunnel_device_token1] = ACTIONS(1550), + [aux_sym_update_host_keys_token1] = ACTIONS(1550), + [aux_sym_use_keychain_token1] = ACTIONS(1550), + [aux_sym_use_roaming_token1] = ACTIONS(1550), + [aux_sym_user_token1] = ACTIONS(1552), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1550), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1550), + [aux_sym_visual_host_key_token1] = ACTIONS(1550), + [aux_sym_xauth_location_token1] = ACTIONS(1550), }, [169] = { - [ts_builtin_sym_end] = ACTIONS(1551), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1553), - [anon_sym_DQUOTE] = ACTIONS(1555), - [aux_sym_match_token1] = ACTIONS(1551), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1551), - [aux_sym_address_family_token1] = ACTIONS(1551), - [aux_sym_batch_mode_token1] = ACTIONS(1551), - [aux_sym_bind_address_token1] = ACTIONS(1551), - [aux_sym_bind_interface_token1] = ACTIONS(1551), - [aux_sym_canonical_domains_token1] = ACTIONS(1551), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1551), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1551), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1551), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1551), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1551), - [aux_sym_certificate_file_token1] = ACTIONS(1551), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1551), - [aux_sym_check_host_ip_token1] = ACTIONS(1551), - [aux_sym_ciphers_token1] = ACTIONS(1551), - [aux_sym_cipher_token1] = ACTIONS(1553), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1551), - [aux_sym_compression_token1] = ACTIONS(1551), - [aux_sym_connection_attempts_token1] = ACTIONS(1551), - [aux_sym_connect_timeout_token1] = ACTIONS(1551), - [aux_sym_control_master_token1] = ACTIONS(1551), - [aux_sym_control_path_token1] = ACTIONS(1551), - [aux_sym_control_persist_token1] = ACTIONS(1551), - [aux_sym_dynamic_forward_token1] = ACTIONS(1551), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1551), - [aux_sym_escape_char_token1] = ACTIONS(1551), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1551), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1551), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1551), - [aux_sym_forward_agent_token1] = ACTIONS(1551), - [aux_sym_forward_x11_token1] = ACTIONS(1553), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1551), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1551), - [aux_sym_gateway_ports_token1] = ACTIONS(1551), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1551), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1551), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1551), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1551), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1551), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1551), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1551), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1551), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1551), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1551), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1551), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1551), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1551), - [aux_sym_host_key_alias_token1] = ACTIONS(1551), - [aux_sym_hostname_token1] = ACTIONS(1551), - [aux_sym_identities_only_token1] = ACTIONS(1551), - [aux_sym_identity_agent_token1] = ACTIONS(1551), - [aux_sym_identity_file_token1] = ACTIONS(1551), - [aux_sym_ignore_unknown_token1] = ACTIONS(1551), - [aux_sym_include_token1] = ACTIONS(1551), - [aux_sym_ip_qos_token1] = ACTIONS(1551), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1551), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1551), - [aux_sym_kex_algorithms_token1] = ACTIONS(1551), - [aux_sym_known_hosts_command_token1] = ACTIONS(1551), - [aux_sym_local_command_token1] = ACTIONS(1551), - [aux_sym_local_forward_token1] = ACTIONS(1551), - [aux_sym_log_level_token1] = ACTIONS(1551), - [aux_sym_log_verbose_token1] = ACTIONS(1551), - [aux_sym_macs_token1] = ACTIONS(1551), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1551), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1551), - [aux_sym_password_authentication_token1] = ACTIONS(1551), - [aux_sym_permit_local_command_token1] = ACTIONS(1551), - [aux_sym_permit_remote_open_token1] = ACTIONS(1551), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1551), - [aux_sym_port_token1] = ACTIONS(1551), - [aux_sym_preferred_authentications_token1] = ACTIONS(1551), - [aux_sym_protocol_token1] = ACTIONS(1551), - [aux_sym_proxy_command_token1] = ACTIONS(1551), - [aux_sym_proxy_jump_token1] = ACTIONS(1551), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1551), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1551), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1551), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1551), - [aux_sym_rekey_limit_token1] = ACTIONS(1551), - [aux_sym_remote_command_token1] = ACTIONS(1551), - [aux_sym_remote_forward_token1] = ACTIONS(1551), - [aux_sym_request_tty_token1] = ACTIONS(1551), - [aux_sym_required_rsa_size_token1] = ACTIONS(1551), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1551), - [aux_sym_security_key_provider_token1] = ACTIONS(1551), - [aux_sym_send_env_token1] = ACTIONS(1551), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1551), - [aux_sym_server_alive_interval_token1] = ACTIONS(1551), - [aux_sym_session_type_token1] = ACTIONS(1551), - [aux_sym_set_env_token1] = ACTIONS(1551), - [aux_sym_stdin_null_token1] = ACTIONS(1551), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1551), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1551), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1551), - [aux_sym_syslog_facility_token1] = ACTIONS(1551), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1551), - [aux_sym_keep_alive_token1] = ACTIONS(1551), - [aux_sym_tunnel_token1] = ACTIONS(1553), - [aux_sym_tunnel_device_token1] = ACTIONS(1551), - [aux_sym_update_host_keys_token1] = ACTIONS(1551), - [aux_sym_use_keychain_token1] = ACTIONS(1551), - [aux_sym_use_roaming_token1] = ACTIONS(1551), - [aux_sym_user_token1] = ACTIONS(1553), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1551), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1551), - [aux_sym_visual_host_key_token1] = ACTIONS(1551), - [aux_sym_xauth_location_token1] = ACTIONS(1551), + [ts_builtin_sym_end] = ACTIONS(1556), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1558), + [anon_sym_DQUOTE] = ACTIONS(1560), + [aux_sym_match_token1] = ACTIONS(1556), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1556), + [aux_sym_address_family_token1] = ACTIONS(1556), + [aux_sym_batch_mode_token1] = ACTIONS(1556), + [aux_sym_bind_address_token1] = ACTIONS(1556), + [aux_sym_bind_interface_token1] = ACTIONS(1556), + [aux_sym_canonical_domains_token1] = ACTIONS(1556), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1556), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1556), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1556), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1556), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1556), + [aux_sym_certificate_file_token1] = ACTIONS(1556), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1556), + [aux_sym_check_host_ip_token1] = ACTIONS(1556), + [aux_sym_ciphers_token1] = ACTIONS(1556), + [aux_sym_cipher_token1] = ACTIONS(1558), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1556), + [aux_sym_compression_token1] = ACTIONS(1556), + [aux_sym_connection_attempts_token1] = ACTIONS(1556), + [aux_sym_connect_timeout_token1] = ACTIONS(1556), + [aux_sym_control_master_token1] = ACTIONS(1556), + [aux_sym_control_path_token1] = ACTIONS(1556), + [aux_sym_control_persist_token1] = ACTIONS(1556), + [aux_sym_dynamic_forward_token1] = ACTIONS(1556), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1556), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1556), + [aux_sym_escape_char_token1] = ACTIONS(1556), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1556), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1556), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1556), + [aux_sym_forward_agent_token1] = ACTIONS(1556), + [aux_sym_forward_x11_token1] = ACTIONS(1558), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1556), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1556), + [aux_sym_gateway_ports_token1] = ACTIONS(1556), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1556), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1556), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1556), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1556), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1556), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1556), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1556), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1556), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1556), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1556), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1556), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1556), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1556), + [aux_sym_host_key_alias_token1] = ACTIONS(1556), + [aux_sym_hostname_token1] = ACTIONS(1556), + [aux_sym_identities_only_token1] = ACTIONS(1556), + [aux_sym_identity_agent_token1] = ACTIONS(1556), + [aux_sym_identity_file_token1] = ACTIONS(1556), + [aux_sym_ignore_unknown_token1] = ACTIONS(1556), + [aux_sym_include_token1] = ACTIONS(1556), + [aux_sym_ip_qos_token1] = ACTIONS(1556), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1556), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1556), + [aux_sym_kex_algorithms_token1] = ACTIONS(1556), + [aux_sym_known_hosts_command_token1] = ACTIONS(1556), + [aux_sym_local_command_token1] = ACTIONS(1556), + [aux_sym_local_forward_token1] = ACTIONS(1556), + [aux_sym_log_level_token1] = ACTIONS(1556), + [aux_sym_log_verbose_token1] = ACTIONS(1556), + [aux_sym_macs_token1] = ACTIONS(1556), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1556), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1556), + [aux_sym_password_authentication_token1] = ACTIONS(1556), + [aux_sym_permit_local_command_token1] = ACTIONS(1556), + [aux_sym_permit_remote_open_token1] = ACTIONS(1556), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1556), + [aux_sym_port_token1] = ACTIONS(1556), + [aux_sym_preferred_authentications_token1] = ACTIONS(1556), + [aux_sym_protocol_token1] = ACTIONS(1556), + [aux_sym_proxy_command_token1] = ACTIONS(1556), + [aux_sym_proxy_jump_token1] = ACTIONS(1556), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1556), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1556), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1556), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1556), + [aux_sym_rekey_limit_token1] = ACTIONS(1556), + [aux_sym_remote_command_token1] = ACTIONS(1556), + [aux_sym_remote_forward_token1] = ACTIONS(1556), + [aux_sym_request_tty_token1] = ACTIONS(1556), + [aux_sym_required_rsa_size_token1] = ACTIONS(1556), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1556), + [aux_sym_security_key_provider_token1] = ACTIONS(1556), + [aux_sym_send_env_token1] = ACTIONS(1556), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1556), + [aux_sym_server_alive_interval_token1] = ACTIONS(1556), + [aux_sym_session_type_token1] = ACTIONS(1556), + [aux_sym_set_env_token1] = ACTIONS(1556), + [aux_sym_stdin_null_token1] = ACTIONS(1556), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1556), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1556), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1556), + [aux_sym_syslog_facility_token1] = ACTIONS(1556), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1556), + [aux_sym_keep_alive_token1] = ACTIONS(1556), + [aux_sym_tunnel_token1] = ACTIONS(1558), + [aux_sym_tunnel_device_token1] = ACTIONS(1556), + [aux_sym_update_host_keys_token1] = ACTIONS(1556), + [aux_sym_use_keychain_token1] = ACTIONS(1556), + [aux_sym_use_roaming_token1] = ACTIONS(1556), + [aux_sym_user_token1] = ACTIONS(1558), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1556), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1556), + [aux_sym_visual_host_key_token1] = ACTIONS(1556), + [aux_sym_xauth_location_token1] = ACTIONS(1556), }, [170] = { - [ts_builtin_sym_end] = ACTIONS(1557), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1561), - [aux_sym_match_token1] = ACTIONS(1557), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1557), - [aux_sym_address_family_token1] = ACTIONS(1557), - [aux_sym_batch_mode_token1] = ACTIONS(1557), - [aux_sym_bind_address_token1] = ACTIONS(1557), - [aux_sym_bind_interface_token1] = ACTIONS(1557), - [aux_sym_canonical_domains_token1] = ACTIONS(1557), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1557), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1557), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1557), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1557), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1557), - [aux_sym_certificate_file_token1] = ACTIONS(1557), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1557), - [aux_sym_check_host_ip_token1] = ACTIONS(1557), - [aux_sym_ciphers_token1] = ACTIONS(1557), - [aux_sym_cipher_token1] = ACTIONS(1559), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1557), - [aux_sym_compression_token1] = ACTIONS(1557), - [aux_sym_connection_attempts_token1] = ACTIONS(1557), - [aux_sym_connect_timeout_token1] = ACTIONS(1557), - [aux_sym_control_master_token1] = ACTIONS(1557), - [aux_sym_control_path_token1] = ACTIONS(1557), - [aux_sym_control_persist_token1] = ACTIONS(1557), - [aux_sym_dynamic_forward_token1] = ACTIONS(1557), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1557), - [aux_sym_escape_char_token1] = ACTIONS(1557), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1557), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1557), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1557), - [aux_sym_forward_agent_token1] = ACTIONS(1557), - [aux_sym_forward_x11_token1] = ACTIONS(1559), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1557), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1557), - [aux_sym_gateway_ports_token1] = ACTIONS(1557), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1557), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1557), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1557), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1557), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1557), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1557), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1557), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1557), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1557), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1557), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1557), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1557), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1557), - [aux_sym_host_key_alias_token1] = ACTIONS(1557), - [aux_sym_hostname_token1] = ACTIONS(1557), - [aux_sym_identities_only_token1] = ACTIONS(1557), - [aux_sym_identity_agent_token1] = ACTIONS(1557), - [aux_sym_identity_file_token1] = ACTIONS(1557), - [aux_sym_ignore_unknown_token1] = ACTIONS(1557), - [aux_sym_include_token1] = ACTIONS(1557), - [aux_sym_ip_qos_token1] = ACTIONS(1557), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1557), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1557), - [aux_sym_kex_algorithms_token1] = ACTIONS(1557), - [aux_sym_known_hosts_command_token1] = ACTIONS(1557), - [aux_sym_local_command_token1] = ACTIONS(1557), - [aux_sym_local_forward_token1] = ACTIONS(1557), - [aux_sym_log_level_token1] = ACTIONS(1557), - [aux_sym_log_verbose_token1] = ACTIONS(1557), - [aux_sym_macs_token1] = ACTIONS(1557), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1557), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1557), - [aux_sym_password_authentication_token1] = ACTIONS(1557), - [aux_sym_permit_local_command_token1] = ACTIONS(1557), - [aux_sym_permit_remote_open_token1] = ACTIONS(1557), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1557), - [aux_sym_port_token1] = ACTIONS(1557), - [aux_sym_preferred_authentications_token1] = ACTIONS(1557), - [aux_sym_protocol_token1] = ACTIONS(1557), - [aux_sym_proxy_command_token1] = ACTIONS(1557), - [aux_sym_proxy_jump_token1] = ACTIONS(1557), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1557), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1557), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1557), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1557), - [aux_sym_rekey_limit_token1] = ACTIONS(1557), - [aux_sym_remote_command_token1] = ACTIONS(1557), - [aux_sym_remote_forward_token1] = ACTIONS(1557), - [aux_sym_request_tty_token1] = ACTIONS(1557), - [aux_sym_required_rsa_size_token1] = ACTIONS(1557), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1557), - [aux_sym_security_key_provider_token1] = ACTIONS(1557), - [aux_sym_send_env_token1] = ACTIONS(1557), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1557), - [aux_sym_server_alive_interval_token1] = ACTIONS(1557), - [aux_sym_session_type_token1] = ACTIONS(1557), - [aux_sym_set_env_token1] = ACTIONS(1557), - [aux_sym_stdin_null_token1] = ACTIONS(1557), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1557), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1557), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1557), - [aux_sym_syslog_facility_token1] = ACTIONS(1557), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1557), - [aux_sym_keep_alive_token1] = ACTIONS(1557), - [aux_sym_tunnel_token1] = ACTIONS(1559), - [aux_sym_tunnel_device_token1] = ACTIONS(1557), - [aux_sym_update_host_keys_token1] = ACTIONS(1557), - [aux_sym_use_keychain_token1] = ACTIONS(1557), - [aux_sym_use_roaming_token1] = ACTIONS(1557), - [aux_sym_user_token1] = ACTIONS(1559), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1557), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1557), - [aux_sym_visual_host_key_token1] = ACTIONS(1557), - [aux_sym_xauth_location_token1] = ACTIONS(1557), + [ts_builtin_sym_end] = ACTIONS(1562), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1564), + [anon_sym_DQUOTE] = ACTIONS(1566), + [aux_sym_match_token1] = ACTIONS(1562), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1562), + [aux_sym_address_family_token1] = ACTIONS(1562), + [aux_sym_batch_mode_token1] = ACTIONS(1562), + [aux_sym_bind_address_token1] = ACTIONS(1562), + [aux_sym_bind_interface_token1] = ACTIONS(1562), + [aux_sym_canonical_domains_token1] = ACTIONS(1562), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1562), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1562), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1562), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1562), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1562), + [aux_sym_certificate_file_token1] = ACTIONS(1562), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1562), + [aux_sym_check_host_ip_token1] = ACTIONS(1562), + [aux_sym_ciphers_token1] = ACTIONS(1562), + [aux_sym_cipher_token1] = ACTIONS(1564), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1562), + [aux_sym_compression_token1] = ACTIONS(1562), + [aux_sym_connection_attempts_token1] = ACTIONS(1562), + [aux_sym_connect_timeout_token1] = ACTIONS(1562), + [aux_sym_control_master_token1] = ACTIONS(1562), + [aux_sym_control_path_token1] = ACTIONS(1562), + [aux_sym_control_persist_token1] = ACTIONS(1562), + [aux_sym_dynamic_forward_token1] = ACTIONS(1562), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1562), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1562), + [aux_sym_escape_char_token1] = ACTIONS(1562), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1562), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1562), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1562), + [aux_sym_forward_agent_token1] = ACTIONS(1562), + [aux_sym_forward_x11_token1] = ACTIONS(1564), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1562), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1562), + [aux_sym_gateway_ports_token1] = ACTIONS(1562), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1562), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1562), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1562), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1562), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1562), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1562), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1562), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1562), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1562), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1562), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1562), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1562), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1562), + [aux_sym_host_key_alias_token1] = ACTIONS(1562), + [aux_sym_hostname_token1] = ACTIONS(1562), + [aux_sym_identities_only_token1] = ACTIONS(1562), + [aux_sym_identity_agent_token1] = ACTIONS(1562), + [aux_sym_identity_file_token1] = ACTIONS(1562), + [aux_sym_ignore_unknown_token1] = ACTIONS(1562), + [aux_sym_include_token1] = ACTIONS(1562), + [aux_sym_ip_qos_token1] = ACTIONS(1562), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1562), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1562), + [aux_sym_kex_algorithms_token1] = ACTIONS(1562), + [aux_sym_known_hosts_command_token1] = ACTIONS(1562), + [aux_sym_local_command_token1] = ACTIONS(1562), + [aux_sym_local_forward_token1] = ACTIONS(1562), + [aux_sym_log_level_token1] = ACTIONS(1562), + [aux_sym_log_verbose_token1] = ACTIONS(1562), + [aux_sym_macs_token1] = ACTIONS(1562), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1562), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1562), + [aux_sym_password_authentication_token1] = ACTIONS(1562), + [aux_sym_permit_local_command_token1] = ACTIONS(1562), + [aux_sym_permit_remote_open_token1] = ACTIONS(1562), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1562), + [aux_sym_port_token1] = ACTIONS(1562), + [aux_sym_preferred_authentications_token1] = ACTIONS(1562), + [aux_sym_protocol_token1] = ACTIONS(1562), + [aux_sym_proxy_command_token1] = ACTIONS(1562), + [aux_sym_proxy_jump_token1] = ACTIONS(1562), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1562), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1562), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1562), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1562), + [aux_sym_rekey_limit_token1] = ACTIONS(1562), + [aux_sym_remote_command_token1] = ACTIONS(1562), + [aux_sym_remote_forward_token1] = ACTIONS(1562), + [aux_sym_request_tty_token1] = ACTIONS(1562), + [aux_sym_required_rsa_size_token1] = ACTIONS(1562), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1562), + [aux_sym_security_key_provider_token1] = ACTIONS(1562), + [aux_sym_send_env_token1] = ACTIONS(1562), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1562), + [aux_sym_server_alive_interval_token1] = ACTIONS(1562), + [aux_sym_session_type_token1] = ACTIONS(1562), + [aux_sym_set_env_token1] = ACTIONS(1562), + [aux_sym_stdin_null_token1] = ACTIONS(1562), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1562), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1562), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1562), + [aux_sym_syslog_facility_token1] = ACTIONS(1562), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1562), + [aux_sym_keep_alive_token1] = ACTIONS(1562), + [aux_sym_tunnel_token1] = ACTIONS(1564), + [aux_sym_tunnel_device_token1] = ACTIONS(1562), + [aux_sym_update_host_keys_token1] = ACTIONS(1562), + [aux_sym_use_keychain_token1] = ACTIONS(1562), + [aux_sym_use_roaming_token1] = ACTIONS(1562), + [aux_sym_user_token1] = ACTIONS(1564), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1562), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1562), + [aux_sym_visual_host_key_token1] = ACTIONS(1562), + [aux_sym_xauth_location_token1] = ACTIONS(1562), }, [171] = { - [ts_builtin_sym_end] = ACTIONS(1563), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1567), - [aux_sym_match_token1] = ACTIONS(1563), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1563), - [aux_sym_address_family_token1] = ACTIONS(1563), - [aux_sym_batch_mode_token1] = ACTIONS(1563), - [aux_sym_bind_address_token1] = ACTIONS(1563), - [aux_sym_bind_interface_token1] = ACTIONS(1563), - [aux_sym_canonical_domains_token1] = ACTIONS(1563), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1563), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1563), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1563), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1563), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1563), - [aux_sym_certificate_file_token1] = ACTIONS(1563), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1563), - [aux_sym_check_host_ip_token1] = ACTIONS(1563), - [aux_sym_ciphers_token1] = ACTIONS(1563), - [aux_sym_cipher_token1] = ACTIONS(1565), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1563), - [aux_sym_compression_token1] = ACTIONS(1563), - [aux_sym_connection_attempts_token1] = ACTIONS(1563), - [aux_sym_connect_timeout_token1] = ACTIONS(1563), - [aux_sym_control_master_token1] = ACTIONS(1563), - [aux_sym_control_path_token1] = ACTIONS(1563), - [aux_sym_control_persist_token1] = ACTIONS(1563), - [aux_sym_dynamic_forward_token1] = ACTIONS(1563), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1563), - [aux_sym_escape_char_token1] = ACTIONS(1563), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1563), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1563), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1563), - [aux_sym_forward_agent_token1] = ACTIONS(1563), - [aux_sym_forward_x11_token1] = ACTIONS(1565), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1563), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1563), - [aux_sym_gateway_ports_token1] = ACTIONS(1563), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1563), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1563), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1563), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1563), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1563), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1563), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1563), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1563), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1563), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1563), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1563), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1563), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1563), - [aux_sym_host_key_alias_token1] = ACTIONS(1563), - [aux_sym_hostname_token1] = ACTIONS(1563), - [aux_sym_identities_only_token1] = ACTIONS(1563), - [aux_sym_identity_agent_token1] = ACTIONS(1563), - [aux_sym_identity_file_token1] = ACTIONS(1563), - [aux_sym_ignore_unknown_token1] = ACTIONS(1563), - [aux_sym_include_token1] = ACTIONS(1563), - [aux_sym_ip_qos_token1] = ACTIONS(1563), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1563), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1563), - [aux_sym_kex_algorithms_token1] = ACTIONS(1563), - [aux_sym_known_hosts_command_token1] = ACTIONS(1563), - [aux_sym_local_command_token1] = ACTIONS(1563), - [aux_sym_local_forward_token1] = ACTIONS(1563), - [aux_sym_log_level_token1] = ACTIONS(1563), - [aux_sym_log_verbose_token1] = ACTIONS(1563), - [aux_sym_macs_token1] = ACTIONS(1563), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1563), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1563), - [aux_sym_password_authentication_token1] = ACTIONS(1563), - [aux_sym_permit_local_command_token1] = ACTIONS(1563), - [aux_sym_permit_remote_open_token1] = ACTIONS(1563), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1563), - [aux_sym_port_token1] = ACTIONS(1563), - [aux_sym_preferred_authentications_token1] = ACTIONS(1563), - [aux_sym_protocol_token1] = ACTIONS(1563), - [aux_sym_proxy_command_token1] = ACTIONS(1563), - [aux_sym_proxy_jump_token1] = ACTIONS(1563), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1563), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1563), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1563), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1563), - [aux_sym_rekey_limit_token1] = ACTIONS(1563), - [aux_sym_remote_command_token1] = ACTIONS(1563), - [aux_sym_remote_forward_token1] = ACTIONS(1563), - [aux_sym_request_tty_token1] = ACTIONS(1563), - [aux_sym_required_rsa_size_token1] = ACTIONS(1563), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1563), - [aux_sym_security_key_provider_token1] = ACTIONS(1563), - [aux_sym_send_env_token1] = ACTIONS(1563), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1563), - [aux_sym_server_alive_interval_token1] = ACTIONS(1563), - [aux_sym_session_type_token1] = ACTIONS(1563), - [aux_sym_set_env_token1] = ACTIONS(1563), - [aux_sym_stdin_null_token1] = ACTIONS(1563), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1563), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1563), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1563), - [aux_sym_syslog_facility_token1] = ACTIONS(1563), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1563), - [aux_sym_keep_alive_token1] = ACTIONS(1563), - [aux_sym_tunnel_token1] = ACTIONS(1565), - [aux_sym_tunnel_device_token1] = ACTIONS(1563), - [aux_sym_update_host_keys_token1] = ACTIONS(1563), - [aux_sym_use_keychain_token1] = ACTIONS(1563), - [aux_sym_use_roaming_token1] = ACTIONS(1563), - [aux_sym_user_token1] = ACTIONS(1565), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1563), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1563), - [aux_sym_visual_host_key_token1] = ACTIONS(1563), - [aux_sym_xauth_location_token1] = ACTIONS(1563), + [ts_builtin_sym_end] = ACTIONS(1568), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1570), + [anon_sym_DQUOTE] = ACTIONS(1572), + [aux_sym_match_token1] = ACTIONS(1568), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1568), + [aux_sym_address_family_token1] = ACTIONS(1568), + [aux_sym_batch_mode_token1] = ACTIONS(1568), + [aux_sym_bind_address_token1] = ACTIONS(1568), + [aux_sym_bind_interface_token1] = ACTIONS(1568), + [aux_sym_canonical_domains_token1] = ACTIONS(1568), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1568), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1568), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1568), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1568), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1568), + [aux_sym_certificate_file_token1] = ACTIONS(1568), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1568), + [aux_sym_check_host_ip_token1] = ACTIONS(1568), + [aux_sym_ciphers_token1] = ACTIONS(1568), + [aux_sym_cipher_token1] = ACTIONS(1570), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1568), + [aux_sym_compression_token1] = ACTIONS(1568), + [aux_sym_connection_attempts_token1] = ACTIONS(1568), + [aux_sym_connect_timeout_token1] = ACTIONS(1568), + [aux_sym_control_master_token1] = ACTIONS(1568), + [aux_sym_control_path_token1] = ACTIONS(1568), + [aux_sym_control_persist_token1] = ACTIONS(1568), + [aux_sym_dynamic_forward_token1] = ACTIONS(1568), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1568), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1568), + [aux_sym_escape_char_token1] = ACTIONS(1568), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1568), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1568), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1568), + [aux_sym_forward_agent_token1] = ACTIONS(1568), + [aux_sym_forward_x11_token1] = ACTIONS(1570), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1568), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1568), + [aux_sym_gateway_ports_token1] = ACTIONS(1568), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1568), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1568), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1568), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1568), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1568), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1568), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1568), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1568), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1568), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1568), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1568), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1568), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1568), + [aux_sym_host_key_alias_token1] = ACTIONS(1568), + [aux_sym_hostname_token1] = ACTIONS(1568), + [aux_sym_identities_only_token1] = ACTIONS(1568), + [aux_sym_identity_agent_token1] = ACTIONS(1568), + [aux_sym_identity_file_token1] = ACTIONS(1568), + [aux_sym_ignore_unknown_token1] = ACTIONS(1568), + [aux_sym_include_token1] = ACTIONS(1568), + [aux_sym_ip_qos_token1] = ACTIONS(1568), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1568), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1568), + [aux_sym_kex_algorithms_token1] = ACTIONS(1568), + [aux_sym_known_hosts_command_token1] = ACTIONS(1568), + [aux_sym_local_command_token1] = ACTIONS(1568), + [aux_sym_local_forward_token1] = ACTIONS(1568), + [aux_sym_log_level_token1] = ACTIONS(1568), + [aux_sym_log_verbose_token1] = ACTIONS(1568), + [aux_sym_macs_token1] = ACTIONS(1568), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1568), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1568), + [aux_sym_password_authentication_token1] = ACTIONS(1568), + [aux_sym_permit_local_command_token1] = ACTIONS(1568), + [aux_sym_permit_remote_open_token1] = ACTIONS(1568), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1568), + [aux_sym_port_token1] = ACTIONS(1568), + [aux_sym_preferred_authentications_token1] = ACTIONS(1568), + [aux_sym_protocol_token1] = ACTIONS(1568), + [aux_sym_proxy_command_token1] = ACTIONS(1568), + [aux_sym_proxy_jump_token1] = ACTIONS(1568), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1568), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1568), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1568), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1568), + [aux_sym_rekey_limit_token1] = ACTIONS(1568), + [aux_sym_remote_command_token1] = ACTIONS(1568), + [aux_sym_remote_forward_token1] = ACTIONS(1568), + [aux_sym_request_tty_token1] = ACTIONS(1568), + [aux_sym_required_rsa_size_token1] = ACTIONS(1568), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1568), + [aux_sym_security_key_provider_token1] = ACTIONS(1568), + [aux_sym_send_env_token1] = ACTIONS(1568), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1568), + [aux_sym_server_alive_interval_token1] = ACTIONS(1568), + [aux_sym_session_type_token1] = ACTIONS(1568), + [aux_sym_set_env_token1] = ACTIONS(1568), + [aux_sym_stdin_null_token1] = ACTIONS(1568), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1568), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1568), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1568), + [aux_sym_syslog_facility_token1] = ACTIONS(1568), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1568), + [aux_sym_keep_alive_token1] = ACTIONS(1568), + [aux_sym_tunnel_token1] = ACTIONS(1570), + [aux_sym_tunnel_device_token1] = ACTIONS(1568), + [aux_sym_update_host_keys_token1] = ACTIONS(1568), + [aux_sym_use_keychain_token1] = ACTIONS(1568), + [aux_sym_use_roaming_token1] = ACTIONS(1568), + [aux_sym_user_token1] = ACTIONS(1570), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1568), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1568), + [aux_sym_visual_host_key_token1] = ACTIONS(1568), + [aux_sym_xauth_location_token1] = ACTIONS(1568), }, [172] = { - [ts_builtin_sym_end] = ACTIONS(1569), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1573), - [aux_sym_match_token1] = ACTIONS(1569), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1569), - [aux_sym_address_family_token1] = ACTIONS(1569), - [aux_sym_batch_mode_token1] = ACTIONS(1569), - [aux_sym_bind_address_token1] = ACTIONS(1569), - [aux_sym_bind_interface_token1] = ACTIONS(1569), - [aux_sym_canonical_domains_token1] = ACTIONS(1569), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1569), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1569), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1569), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1569), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1569), - [aux_sym_certificate_file_token1] = ACTIONS(1569), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1569), - [aux_sym_check_host_ip_token1] = ACTIONS(1569), - [aux_sym_ciphers_token1] = ACTIONS(1569), - [aux_sym_cipher_token1] = ACTIONS(1571), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1569), - [aux_sym_compression_token1] = ACTIONS(1569), - [aux_sym_connection_attempts_token1] = ACTIONS(1569), - [aux_sym_connect_timeout_token1] = ACTIONS(1569), - [aux_sym_control_master_token1] = ACTIONS(1569), - [aux_sym_control_path_token1] = ACTIONS(1569), - [aux_sym_control_persist_token1] = ACTIONS(1569), - [aux_sym_dynamic_forward_token1] = ACTIONS(1569), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1569), - [aux_sym_escape_char_token1] = ACTIONS(1569), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1569), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1569), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1569), - [aux_sym_forward_agent_token1] = ACTIONS(1569), - [aux_sym_forward_x11_token1] = ACTIONS(1571), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1569), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1569), - [aux_sym_gateway_ports_token1] = ACTIONS(1569), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1569), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1569), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1569), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1569), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1569), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1569), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1569), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1569), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1569), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1569), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1569), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1569), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1569), - [aux_sym_host_key_alias_token1] = ACTIONS(1569), - [aux_sym_hostname_token1] = ACTIONS(1569), - [aux_sym_identities_only_token1] = ACTIONS(1569), - [aux_sym_identity_agent_token1] = ACTIONS(1569), - [aux_sym_identity_file_token1] = ACTIONS(1569), - [aux_sym_ignore_unknown_token1] = ACTIONS(1569), - [aux_sym_include_token1] = ACTIONS(1569), - [aux_sym_ip_qos_token1] = ACTIONS(1569), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1569), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1569), - [aux_sym_kex_algorithms_token1] = ACTIONS(1569), - [aux_sym_known_hosts_command_token1] = ACTIONS(1569), - [aux_sym_local_command_token1] = ACTIONS(1569), - [aux_sym_local_forward_token1] = ACTIONS(1569), - [aux_sym_log_level_token1] = ACTIONS(1569), - [aux_sym_log_verbose_token1] = ACTIONS(1569), - [aux_sym_macs_token1] = ACTIONS(1569), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1569), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1569), - [aux_sym_password_authentication_token1] = ACTIONS(1569), - [aux_sym_permit_local_command_token1] = ACTIONS(1569), - [aux_sym_permit_remote_open_token1] = ACTIONS(1569), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1569), - [aux_sym_port_token1] = ACTIONS(1569), - [aux_sym_preferred_authentications_token1] = ACTIONS(1569), - [aux_sym_protocol_token1] = ACTIONS(1569), - [aux_sym_proxy_command_token1] = ACTIONS(1569), - [aux_sym_proxy_jump_token1] = ACTIONS(1569), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1569), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1569), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1569), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1569), - [aux_sym_rekey_limit_token1] = ACTIONS(1569), - [aux_sym_remote_command_token1] = ACTIONS(1569), - [aux_sym_remote_forward_token1] = ACTIONS(1569), - [aux_sym_request_tty_token1] = ACTIONS(1569), - [aux_sym_required_rsa_size_token1] = ACTIONS(1569), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1569), - [aux_sym_security_key_provider_token1] = ACTIONS(1569), - [aux_sym_send_env_token1] = ACTIONS(1569), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1569), - [aux_sym_server_alive_interval_token1] = ACTIONS(1569), - [aux_sym_session_type_token1] = ACTIONS(1569), - [aux_sym_set_env_token1] = ACTIONS(1569), - [aux_sym_stdin_null_token1] = ACTIONS(1569), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1569), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1569), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1569), - [aux_sym_syslog_facility_token1] = ACTIONS(1569), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1569), - [aux_sym_keep_alive_token1] = ACTIONS(1569), - [aux_sym_tunnel_token1] = ACTIONS(1571), - [aux_sym_tunnel_device_token1] = ACTIONS(1569), - [aux_sym_update_host_keys_token1] = ACTIONS(1569), - [aux_sym_use_keychain_token1] = ACTIONS(1569), - [aux_sym_use_roaming_token1] = ACTIONS(1569), - [aux_sym_user_token1] = ACTIONS(1571), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1569), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1569), - [aux_sym_visual_host_key_token1] = ACTIONS(1569), - [aux_sym_xauth_location_token1] = ACTIONS(1569), + [ts_builtin_sym_end] = ACTIONS(1574), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1576), + [anon_sym_DQUOTE] = ACTIONS(1578), + [aux_sym_match_token1] = ACTIONS(1574), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1574), + [aux_sym_address_family_token1] = ACTIONS(1574), + [aux_sym_batch_mode_token1] = ACTIONS(1574), + [aux_sym_bind_address_token1] = ACTIONS(1574), + [aux_sym_bind_interface_token1] = ACTIONS(1574), + [aux_sym_canonical_domains_token1] = ACTIONS(1574), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1574), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1574), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1574), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1574), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1574), + [aux_sym_certificate_file_token1] = ACTIONS(1574), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1574), + [aux_sym_check_host_ip_token1] = ACTIONS(1574), + [aux_sym_ciphers_token1] = ACTIONS(1574), + [aux_sym_cipher_token1] = ACTIONS(1576), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1574), + [aux_sym_compression_token1] = ACTIONS(1574), + [aux_sym_connection_attempts_token1] = ACTIONS(1574), + [aux_sym_connect_timeout_token1] = ACTIONS(1574), + [aux_sym_control_master_token1] = ACTIONS(1574), + [aux_sym_control_path_token1] = ACTIONS(1574), + [aux_sym_control_persist_token1] = ACTIONS(1574), + [aux_sym_dynamic_forward_token1] = ACTIONS(1574), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1574), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1574), + [aux_sym_escape_char_token1] = ACTIONS(1574), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1574), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1574), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1574), + [aux_sym_forward_agent_token1] = ACTIONS(1574), + [aux_sym_forward_x11_token1] = ACTIONS(1576), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1574), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1574), + [aux_sym_gateway_ports_token1] = ACTIONS(1574), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1574), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1574), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1574), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1574), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1574), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1574), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1574), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1574), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1574), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1574), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1574), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1574), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1574), + [aux_sym_host_key_alias_token1] = ACTIONS(1574), + [aux_sym_hostname_token1] = ACTIONS(1574), + [aux_sym_identities_only_token1] = ACTIONS(1574), + [aux_sym_identity_agent_token1] = ACTIONS(1574), + [aux_sym_identity_file_token1] = ACTIONS(1574), + [aux_sym_ignore_unknown_token1] = ACTIONS(1574), + [aux_sym_include_token1] = ACTIONS(1574), + [aux_sym_ip_qos_token1] = ACTIONS(1574), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1574), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1574), + [aux_sym_kex_algorithms_token1] = ACTIONS(1574), + [aux_sym_known_hosts_command_token1] = ACTIONS(1574), + [aux_sym_local_command_token1] = ACTIONS(1574), + [aux_sym_local_forward_token1] = ACTIONS(1574), + [aux_sym_log_level_token1] = ACTIONS(1574), + [aux_sym_log_verbose_token1] = ACTIONS(1574), + [aux_sym_macs_token1] = ACTIONS(1574), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1574), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1574), + [aux_sym_password_authentication_token1] = ACTIONS(1574), + [aux_sym_permit_local_command_token1] = ACTIONS(1574), + [aux_sym_permit_remote_open_token1] = ACTIONS(1574), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1574), + [aux_sym_port_token1] = ACTIONS(1574), + [aux_sym_preferred_authentications_token1] = ACTIONS(1574), + [aux_sym_protocol_token1] = ACTIONS(1574), + [aux_sym_proxy_command_token1] = ACTIONS(1574), + [aux_sym_proxy_jump_token1] = ACTIONS(1574), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1574), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1574), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1574), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1574), + [aux_sym_rekey_limit_token1] = ACTIONS(1574), + [aux_sym_remote_command_token1] = ACTIONS(1574), + [aux_sym_remote_forward_token1] = ACTIONS(1574), + [aux_sym_request_tty_token1] = ACTIONS(1574), + [aux_sym_required_rsa_size_token1] = ACTIONS(1574), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1574), + [aux_sym_security_key_provider_token1] = ACTIONS(1574), + [aux_sym_send_env_token1] = ACTIONS(1574), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1574), + [aux_sym_server_alive_interval_token1] = ACTIONS(1574), + [aux_sym_session_type_token1] = ACTIONS(1574), + [aux_sym_set_env_token1] = ACTIONS(1574), + [aux_sym_stdin_null_token1] = ACTIONS(1574), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1574), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1574), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1574), + [aux_sym_syslog_facility_token1] = ACTIONS(1574), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1574), + [aux_sym_keep_alive_token1] = ACTIONS(1574), + [aux_sym_tunnel_token1] = ACTIONS(1576), + [aux_sym_tunnel_device_token1] = ACTIONS(1574), + [aux_sym_update_host_keys_token1] = ACTIONS(1574), + [aux_sym_use_keychain_token1] = ACTIONS(1574), + [aux_sym_use_roaming_token1] = ACTIONS(1574), + [aux_sym_user_token1] = ACTIONS(1576), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1574), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1574), + [aux_sym_visual_host_key_token1] = ACTIONS(1574), + [aux_sym_xauth_location_token1] = ACTIONS(1574), }, [173] = { - [ts_builtin_sym_end] = ACTIONS(1575), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1579), - [aux_sym_match_token1] = ACTIONS(1575), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1575), - [aux_sym_address_family_token1] = ACTIONS(1575), - [aux_sym_batch_mode_token1] = ACTIONS(1575), - [aux_sym_bind_address_token1] = ACTIONS(1575), - [aux_sym_bind_interface_token1] = ACTIONS(1575), - [aux_sym_canonical_domains_token1] = ACTIONS(1575), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1575), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1575), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1575), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1575), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1575), - [aux_sym_certificate_file_token1] = ACTIONS(1575), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1575), - [aux_sym_check_host_ip_token1] = ACTIONS(1575), - [aux_sym_ciphers_token1] = ACTIONS(1575), - [aux_sym_cipher_token1] = ACTIONS(1577), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1575), - [aux_sym_compression_token1] = ACTIONS(1575), - [aux_sym_connection_attempts_token1] = ACTIONS(1575), - [aux_sym_connect_timeout_token1] = ACTIONS(1575), - [aux_sym_control_master_token1] = ACTIONS(1575), - [aux_sym_control_path_token1] = ACTIONS(1575), - [aux_sym_control_persist_token1] = ACTIONS(1575), - [aux_sym_dynamic_forward_token1] = ACTIONS(1575), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1575), - [aux_sym_escape_char_token1] = ACTIONS(1575), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1575), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1575), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1575), - [aux_sym_forward_agent_token1] = ACTIONS(1575), - [aux_sym_forward_x11_token1] = ACTIONS(1577), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1575), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1575), - [aux_sym_gateway_ports_token1] = ACTIONS(1575), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1575), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1575), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1575), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1575), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1575), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1575), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1575), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1575), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1575), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1575), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1575), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1575), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1575), - [aux_sym_host_key_alias_token1] = ACTIONS(1575), - [aux_sym_hostname_token1] = ACTIONS(1575), - [aux_sym_identities_only_token1] = ACTIONS(1575), - [aux_sym_identity_agent_token1] = ACTIONS(1575), - [aux_sym_identity_file_token1] = ACTIONS(1575), - [aux_sym_ignore_unknown_token1] = ACTIONS(1575), - [aux_sym_include_token1] = ACTIONS(1575), - [aux_sym_ip_qos_token1] = ACTIONS(1575), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1575), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1575), - [aux_sym_kex_algorithms_token1] = ACTIONS(1575), - [aux_sym_known_hosts_command_token1] = ACTIONS(1575), - [aux_sym_local_command_token1] = ACTIONS(1575), - [aux_sym_local_forward_token1] = ACTIONS(1575), - [aux_sym_log_level_token1] = ACTIONS(1575), - [aux_sym_log_verbose_token1] = ACTIONS(1575), - [aux_sym_macs_token1] = ACTIONS(1575), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1575), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1575), - [aux_sym_password_authentication_token1] = ACTIONS(1575), - [aux_sym_permit_local_command_token1] = ACTIONS(1575), - [aux_sym_permit_remote_open_token1] = ACTIONS(1575), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1575), - [aux_sym_port_token1] = ACTIONS(1575), - [aux_sym_preferred_authentications_token1] = ACTIONS(1575), - [aux_sym_protocol_token1] = ACTIONS(1575), - [aux_sym_proxy_command_token1] = ACTIONS(1575), - [aux_sym_proxy_jump_token1] = ACTIONS(1575), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1575), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1575), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1575), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1575), - [aux_sym_rekey_limit_token1] = ACTIONS(1575), - [aux_sym_remote_command_token1] = ACTIONS(1575), - [aux_sym_remote_forward_token1] = ACTIONS(1575), - [aux_sym_request_tty_token1] = ACTIONS(1575), - [aux_sym_required_rsa_size_token1] = ACTIONS(1575), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1575), - [aux_sym_security_key_provider_token1] = ACTIONS(1575), - [aux_sym_send_env_token1] = ACTIONS(1575), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1575), - [aux_sym_server_alive_interval_token1] = ACTIONS(1575), - [aux_sym_session_type_token1] = ACTIONS(1575), - [aux_sym_set_env_token1] = ACTIONS(1575), - [aux_sym_stdin_null_token1] = ACTIONS(1575), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1575), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1575), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1575), - [aux_sym_syslog_facility_token1] = ACTIONS(1575), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1575), - [aux_sym_keep_alive_token1] = ACTIONS(1575), - [aux_sym_tunnel_token1] = ACTIONS(1577), - [aux_sym_tunnel_device_token1] = ACTIONS(1575), - [aux_sym_update_host_keys_token1] = ACTIONS(1575), - [aux_sym_use_keychain_token1] = ACTIONS(1575), - [aux_sym_use_roaming_token1] = ACTIONS(1575), - [aux_sym_user_token1] = ACTIONS(1577), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1575), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1575), - [aux_sym_visual_host_key_token1] = ACTIONS(1575), - [aux_sym_xauth_location_token1] = ACTIONS(1575), + [ts_builtin_sym_end] = ACTIONS(1580), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1584), + [aux_sym_match_token1] = ACTIONS(1580), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1580), + [aux_sym_address_family_token1] = ACTIONS(1580), + [aux_sym_batch_mode_token1] = ACTIONS(1580), + [aux_sym_bind_address_token1] = ACTIONS(1580), + [aux_sym_bind_interface_token1] = ACTIONS(1580), + [aux_sym_canonical_domains_token1] = ACTIONS(1580), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1580), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1580), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1580), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1580), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1580), + [aux_sym_certificate_file_token1] = ACTIONS(1580), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1580), + [aux_sym_check_host_ip_token1] = ACTIONS(1580), + [aux_sym_ciphers_token1] = ACTIONS(1580), + [aux_sym_cipher_token1] = ACTIONS(1582), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1580), + [aux_sym_compression_token1] = ACTIONS(1580), + [aux_sym_connection_attempts_token1] = ACTIONS(1580), + [aux_sym_connect_timeout_token1] = ACTIONS(1580), + [aux_sym_control_master_token1] = ACTIONS(1580), + [aux_sym_control_path_token1] = ACTIONS(1580), + [aux_sym_control_persist_token1] = ACTIONS(1580), + [aux_sym_dynamic_forward_token1] = ACTIONS(1580), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1580), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1580), + [aux_sym_escape_char_token1] = ACTIONS(1580), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1580), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1580), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1580), + [aux_sym_forward_agent_token1] = ACTIONS(1580), + [aux_sym_forward_x11_token1] = ACTIONS(1582), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1580), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1580), + [aux_sym_gateway_ports_token1] = ACTIONS(1580), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1580), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1580), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1580), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1580), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1580), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1580), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1580), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1580), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1580), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1580), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1580), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1580), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1580), + [aux_sym_host_key_alias_token1] = ACTIONS(1580), + [aux_sym_hostname_token1] = ACTIONS(1580), + [aux_sym_identities_only_token1] = ACTIONS(1580), + [aux_sym_identity_agent_token1] = ACTIONS(1580), + [aux_sym_identity_file_token1] = ACTIONS(1580), + [aux_sym_ignore_unknown_token1] = ACTIONS(1580), + [aux_sym_include_token1] = ACTIONS(1580), + [aux_sym_ip_qos_token1] = ACTIONS(1580), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1580), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1580), + [aux_sym_kex_algorithms_token1] = ACTIONS(1580), + [aux_sym_known_hosts_command_token1] = ACTIONS(1580), + [aux_sym_local_command_token1] = ACTIONS(1580), + [aux_sym_local_forward_token1] = ACTIONS(1580), + [aux_sym_log_level_token1] = ACTIONS(1580), + [aux_sym_log_verbose_token1] = ACTIONS(1580), + [aux_sym_macs_token1] = ACTIONS(1580), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1580), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1580), + [aux_sym_password_authentication_token1] = ACTIONS(1580), + [aux_sym_permit_local_command_token1] = ACTIONS(1580), + [aux_sym_permit_remote_open_token1] = ACTIONS(1580), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1580), + [aux_sym_port_token1] = ACTIONS(1580), + [aux_sym_preferred_authentications_token1] = ACTIONS(1580), + [aux_sym_protocol_token1] = ACTIONS(1580), + [aux_sym_proxy_command_token1] = ACTIONS(1580), + [aux_sym_proxy_jump_token1] = ACTIONS(1580), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1580), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1580), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1580), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1580), + [aux_sym_rekey_limit_token1] = ACTIONS(1580), + [aux_sym_remote_command_token1] = ACTIONS(1580), + [aux_sym_remote_forward_token1] = ACTIONS(1580), + [aux_sym_request_tty_token1] = ACTIONS(1580), + [aux_sym_required_rsa_size_token1] = ACTIONS(1580), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1580), + [aux_sym_security_key_provider_token1] = ACTIONS(1580), + [aux_sym_send_env_token1] = ACTIONS(1580), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1580), + [aux_sym_server_alive_interval_token1] = ACTIONS(1580), + [aux_sym_session_type_token1] = ACTIONS(1580), + [aux_sym_set_env_token1] = ACTIONS(1580), + [aux_sym_stdin_null_token1] = ACTIONS(1580), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1580), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1580), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1580), + [aux_sym_syslog_facility_token1] = ACTIONS(1580), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1580), + [aux_sym_keep_alive_token1] = ACTIONS(1580), + [aux_sym_tunnel_token1] = ACTIONS(1582), + [aux_sym_tunnel_device_token1] = ACTIONS(1580), + [aux_sym_update_host_keys_token1] = ACTIONS(1580), + [aux_sym_use_keychain_token1] = ACTIONS(1580), + [aux_sym_use_roaming_token1] = ACTIONS(1580), + [aux_sym_user_token1] = ACTIONS(1582), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1580), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1580), + [aux_sym_visual_host_key_token1] = ACTIONS(1580), + [aux_sym_xauth_location_token1] = ACTIONS(1580), }, [174] = { - [ts_builtin_sym_end] = ACTIONS(1581), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1583), - [anon_sym_DQUOTE] = ACTIONS(1585), - [aux_sym_match_token1] = ACTIONS(1581), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1581), - [aux_sym_address_family_token1] = ACTIONS(1581), - [aux_sym_batch_mode_token1] = ACTIONS(1581), - [aux_sym_bind_address_token1] = ACTIONS(1581), - [aux_sym_bind_interface_token1] = ACTIONS(1581), - [aux_sym_canonical_domains_token1] = ACTIONS(1581), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1581), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1581), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1581), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1581), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1581), - [aux_sym_certificate_file_token1] = ACTIONS(1581), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1581), - [aux_sym_check_host_ip_token1] = ACTIONS(1581), - [aux_sym_ciphers_token1] = ACTIONS(1581), - [aux_sym_cipher_token1] = ACTIONS(1583), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1581), - [aux_sym_compression_token1] = ACTIONS(1581), - [aux_sym_connection_attempts_token1] = ACTIONS(1581), - [aux_sym_connect_timeout_token1] = ACTIONS(1581), - [aux_sym_control_master_token1] = ACTIONS(1581), - [aux_sym_control_path_token1] = ACTIONS(1581), - [aux_sym_control_persist_token1] = ACTIONS(1581), - [aux_sym_dynamic_forward_token1] = ACTIONS(1581), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1581), - [aux_sym_escape_char_token1] = ACTIONS(1581), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1581), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1581), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1581), - [aux_sym_forward_agent_token1] = ACTIONS(1581), - [aux_sym_forward_x11_token1] = ACTIONS(1583), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1581), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1581), - [aux_sym_gateway_ports_token1] = ACTIONS(1581), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1581), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1581), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1581), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1581), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1581), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1581), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1581), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1581), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1581), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1581), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1581), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1581), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1581), - [aux_sym_host_key_alias_token1] = ACTIONS(1581), - [aux_sym_hostname_token1] = ACTIONS(1581), - [aux_sym_identities_only_token1] = ACTIONS(1581), - [aux_sym_identity_agent_token1] = ACTIONS(1581), - [aux_sym_identity_file_token1] = ACTIONS(1581), - [aux_sym_ignore_unknown_token1] = ACTIONS(1581), - [aux_sym_include_token1] = ACTIONS(1581), - [aux_sym_ip_qos_token1] = ACTIONS(1581), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1581), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1581), - [aux_sym_kex_algorithms_token1] = ACTIONS(1581), - [aux_sym_known_hosts_command_token1] = ACTIONS(1581), - [aux_sym_local_command_token1] = ACTIONS(1581), - [aux_sym_local_forward_token1] = ACTIONS(1581), - [aux_sym_log_level_token1] = ACTIONS(1581), - [aux_sym_log_verbose_token1] = ACTIONS(1581), - [aux_sym_macs_token1] = ACTIONS(1581), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1581), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1581), - [aux_sym_password_authentication_token1] = ACTIONS(1581), - [aux_sym_permit_local_command_token1] = ACTIONS(1581), - [aux_sym_permit_remote_open_token1] = ACTIONS(1581), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1581), - [aux_sym_port_token1] = ACTIONS(1581), - [aux_sym_preferred_authentications_token1] = ACTIONS(1581), - [aux_sym_protocol_token1] = ACTIONS(1581), - [aux_sym_proxy_command_token1] = ACTIONS(1581), - [aux_sym_proxy_jump_token1] = ACTIONS(1581), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1581), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1581), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1581), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1581), - [aux_sym_rekey_limit_token1] = ACTIONS(1581), - [aux_sym_remote_command_token1] = ACTIONS(1581), - [aux_sym_remote_forward_token1] = ACTIONS(1581), - [aux_sym_request_tty_token1] = ACTIONS(1581), - [aux_sym_required_rsa_size_token1] = ACTIONS(1581), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1581), - [aux_sym_security_key_provider_token1] = ACTIONS(1581), - [aux_sym_send_env_token1] = ACTIONS(1581), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1581), - [aux_sym_server_alive_interval_token1] = ACTIONS(1581), - [aux_sym_session_type_token1] = ACTIONS(1581), - [aux_sym_set_env_token1] = ACTIONS(1581), - [aux_sym_stdin_null_token1] = ACTIONS(1581), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1581), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1581), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1581), - [aux_sym_syslog_facility_token1] = ACTIONS(1581), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1581), - [aux_sym_keep_alive_token1] = ACTIONS(1581), - [aux_sym_tunnel_token1] = ACTIONS(1583), - [aux_sym_tunnel_device_token1] = ACTIONS(1581), - [aux_sym_update_host_keys_token1] = ACTIONS(1581), - [aux_sym_use_keychain_token1] = ACTIONS(1581), - [aux_sym_use_roaming_token1] = ACTIONS(1581), - [aux_sym_user_token1] = ACTIONS(1583), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1581), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1581), - [aux_sym_visual_host_key_token1] = ACTIONS(1581), - [aux_sym_xauth_location_token1] = ACTIONS(1581), + [ts_builtin_sym_end] = ACTIONS(1586), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1590), + [aux_sym_match_token1] = ACTIONS(1586), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1586), + [aux_sym_address_family_token1] = ACTIONS(1586), + [aux_sym_batch_mode_token1] = ACTIONS(1586), + [aux_sym_bind_address_token1] = ACTIONS(1586), + [aux_sym_bind_interface_token1] = ACTIONS(1586), + [aux_sym_canonical_domains_token1] = ACTIONS(1586), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1586), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1586), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1586), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1586), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1586), + [aux_sym_certificate_file_token1] = ACTIONS(1586), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1586), + [aux_sym_check_host_ip_token1] = ACTIONS(1586), + [aux_sym_ciphers_token1] = ACTIONS(1586), + [aux_sym_cipher_token1] = ACTIONS(1588), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1586), + [aux_sym_compression_token1] = ACTIONS(1586), + [aux_sym_connection_attempts_token1] = ACTIONS(1586), + [aux_sym_connect_timeout_token1] = ACTIONS(1586), + [aux_sym_control_master_token1] = ACTIONS(1586), + [aux_sym_control_path_token1] = ACTIONS(1586), + [aux_sym_control_persist_token1] = ACTIONS(1586), + [aux_sym_dynamic_forward_token1] = ACTIONS(1586), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1586), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1586), + [aux_sym_escape_char_token1] = ACTIONS(1586), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1586), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1586), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1586), + [aux_sym_forward_agent_token1] = ACTIONS(1586), + [aux_sym_forward_x11_token1] = ACTIONS(1588), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1586), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1586), + [aux_sym_gateway_ports_token1] = ACTIONS(1586), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1586), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1586), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1586), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1586), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1586), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1586), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1586), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1586), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1586), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1586), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1586), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1586), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1586), + [aux_sym_host_key_alias_token1] = ACTIONS(1586), + [aux_sym_hostname_token1] = ACTIONS(1586), + [aux_sym_identities_only_token1] = ACTIONS(1586), + [aux_sym_identity_agent_token1] = ACTIONS(1586), + [aux_sym_identity_file_token1] = ACTIONS(1586), + [aux_sym_ignore_unknown_token1] = ACTIONS(1586), + [aux_sym_include_token1] = ACTIONS(1586), + [aux_sym_ip_qos_token1] = ACTIONS(1586), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1586), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1586), + [aux_sym_kex_algorithms_token1] = ACTIONS(1586), + [aux_sym_known_hosts_command_token1] = ACTIONS(1586), + [aux_sym_local_command_token1] = ACTIONS(1586), + [aux_sym_local_forward_token1] = ACTIONS(1586), + [aux_sym_log_level_token1] = ACTIONS(1586), + [aux_sym_log_verbose_token1] = ACTIONS(1586), + [aux_sym_macs_token1] = ACTIONS(1586), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1586), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1586), + [aux_sym_password_authentication_token1] = ACTIONS(1586), + [aux_sym_permit_local_command_token1] = ACTIONS(1586), + [aux_sym_permit_remote_open_token1] = ACTIONS(1586), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1586), + [aux_sym_port_token1] = ACTIONS(1586), + [aux_sym_preferred_authentications_token1] = ACTIONS(1586), + [aux_sym_protocol_token1] = ACTIONS(1586), + [aux_sym_proxy_command_token1] = ACTIONS(1586), + [aux_sym_proxy_jump_token1] = ACTIONS(1586), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1586), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1586), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1586), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1586), + [aux_sym_rekey_limit_token1] = ACTIONS(1586), + [aux_sym_remote_command_token1] = ACTIONS(1586), + [aux_sym_remote_forward_token1] = ACTIONS(1586), + [aux_sym_request_tty_token1] = ACTIONS(1586), + [aux_sym_required_rsa_size_token1] = ACTIONS(1586), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1586), + [aux_sym_security_key_provider_token1] = ACTIONS(1586), + [aux_sym_send_env_token1] = ACTIONS(1586), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1586), + [aux_sym_server_alive_interval_token1] = ACTIONS(1586), + [aux_sym_session_type_token1] = ACTIONS(1586), + [aux_sym_set_env_token1] = ACTIONS(1586), + [aux_sym_stdin_null_token1] = ACTIONS(1586), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1586), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1586), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1586), + [aux_sym_syslog_facility_token1] = ACTIONS(1586), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1586), + [aux_sym_keep_alive_token1] = ACTIONS(1586), + [aux_sym_tunnel_token1] = ACTIONS(1588), + [aux_sym_tunnel_device_token1] = ACTIONS(1586), + [aux_sym_update_host_keys_token1] = ACTIONS(1586), + [aux_sym_use_keychain_token1] = ACTIONS(1586), + [aux_sym_use_roaming_token1] = ACTIONS(1586), + [aux_sym_user_token1] = ACTIONS(1588), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1586), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1586), + [aux_sym_visual_host_key_token1] = ACTIONS(1586), + [aux_sym_xauth_location_token1] = ACTIONS(1586), }, [175] = { - [ts_builtin_sym_end] = ACTIONS(1587), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1591), - [aux_sym_match_token1] = ACTIONS(1587), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1587), - [aux_sym_address_family_token1] = ACTIONS(1587), - [aux_sym_batch_mode_token1] = ACTIONS(1587), - [aux_sym_bind_address_token1] = ACTIONS(1587), - [aux_sym_bind_interface_token1] = ACTIONS(1587), - [aux_sym_canonical_domains_token1] = ACTIONS(1587), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1587), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1587), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1587), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1587), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1587), - [aux_sym_certificate_file_token1] = ACTIONS(1587), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1587), - [aux_sym_check_host_ip_token1] = ACTIONS(1587), - [aux_sym_ciphers_token1] = ACTIONS(1587), - [aux_sym_cipher_token1] = ACTIONS(1589), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1587), - [aux_sym_compression_token1] = ACTIONS(1587), - [aux_sym_connection_attempts_token1] = ACTIONS(1587), - [aux_sym_connect_timeout_token1] = ACTIONS(1587), - [aux_sym_control_master_token1] = ACTIONS(1587), - [aux_sym_control_path_token1] = ACTIONS(1587), - [aux_sym_control_persist_token1] = ACTIONS(1587), - [aux_sym_dynamic_forward_token1] = ACTIONS(1587), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1587), - [aux_sym_escape_char_token1] = ACTIONS(1587), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1587), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1587), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1587), - [aux_sym_forward_agent_token1] = ACTIONS(1587), - [aux_sym_forward_x11_token1] = ACTIONS(1589), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1587), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1587), - [aux_sym_gateway_ports_token1] = ACTIONS(1587), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1587), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1587), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1587), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1587), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1587), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1587), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1587), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1587), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1587), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1587), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1587), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1587), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1587), - [aux_sym_host_key_alias_token1] = ACTIONS(1587), - [aux_sym_hostname_token1] = ACTIONS(1587), - [aux_sym_identities_only_token1] = ACTIONS(1587), - [aux_sym_identity_agent_token1] = ACTIONS(1587), - [aux_sym_identity_file_token1] = ACTIONS(1587), - [aux_sym_ignore_unknown_token1] = ACTIONS(1587), - [aux_sym_include_token1] = ACTIONS(1587), - [aux_sym_ip_qos_token1] = ACTIONS(1587), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1587), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1587), - [aux_sym_kex_algorithms_token1] = ACTIONS(1587), - [aux_sym_known_hosts_command_token1] = ACTIONS(1587), - [aux_sym_local_command_token1] = ACTIONS(1587), - [aux_sym_local_forward_token1] = ACTIONS(1587), - [aux_sym_log_level_token1] = ACTIONS(1587), - [aux_sym_log_verbose_token1] = ACTIONS(1587), - [aux_sym_macs_token1] = ACTIONS(1587), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1587), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1587), - [aux_sym_password_authentication_token1] = ACTIONS(1587), - [aux_sym_permit_local_command_token1] = ACTIONS(1587), - [aux_sym_permit_remote_open_token1] = ACTIONS(1587), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1587), - [aux_sym_port_token1] = ACTIONS(1587), - [aux_sym_preferred_authentications_token1] = ACTIONS(1587), - [aux_sym_protocol_token1] = ACTIONS(1587), - [aux_sym_proxy_command_token1] = ACTIONS(1587), - [aux_sym_proxy_jump_token1] = ACTIONS(1587), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1587), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1587), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1587), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1587), - [aux_sym_rekey_limit_token1] = ACTIONS(1587), - [aux_sym_remote_command_token1] = ACTIONS(1587), - [aux_sym_remote_forward_token1] = ACTIONS(1587), - [aux_sym_request_tty_token1] = ACTIONS(1587), - [aux_sym_required_rsa_size_token1] = ACTIONS(1587), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1587), - [aux_sym_security_key_provider_token1] = ACTIONS(1587), - [aux_sym_send_env_token1] = ACTIONS(1587), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1587), - [aux_sym_server_alive_interval_token1] = ACTIONS(1587), - [aux_sym_session_type_token1] = ACTIONS(1587), - [aux_sym_set_env_token1] = ACTIONS(1587), - [aux_sym_stdin_null_token1] = ACTIONS(1587), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1587), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1587), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1587), - [aux_sym_syslog_facility_token1] = ACTIONS(1587), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1587), - [aux_sym_keep_alive_token1] = ACTIONS(1587), - [aux_sym_tunnel_token1] = ACTIONS(1589), - [aux_sym_tunnel_device_token1] = ACTIONS(1587), - [aux_sym_update_host_keys_token1] = ACTIONS(1587), - [aux_sym_use_keychain_token1] = ACTIONS(1587), - [aux_sym_use_roaming_token1] = ACTIONS(1587), - [aux_sym_user_token1] = ACTIONS(1589), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1587), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1587), - [aux_sym_visual_host_key_token1] = ACTIONS(1587), - [aux_sym_xauth_location_token1] = ACTIONS(1587), + [ts_builtin_sym_end] = ACTIONS(1592), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1594), + [anon_sym_DQUOTE] = ACTIONS(1596), + [aux_sym_match_token1] = ACTIONS(1592), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1592), + [aux_sym_address_family_token1] = ACTIONS(1592), + [aux_sym_batch_mode_token1] = ACTIONS(1592), + [aux_sym_bind_address_token1] = ACTIONS(1592), + [aux_sym_bind_interface_token1] = ACTIONS(1592), + [aux_sym_canonical_domains_token1] = ACTIONS(1592), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1592), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1592), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1592), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1592), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1592), + [aux_sym_certificate_file_token1] = ACTIONS(1592), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1592), + [aux_sym_check_host_ip_token1] = ACTIONS(1592), + [aux_sym_ciphers_token1] = ACTIONS(1592), + [aux_sym_cipher_token1] = ACTIONS(1594), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1592), + [aux_sym_compression_token1] = ACTIONS(1592), + [aux_sym_connection_attempts_token1] = ACTIONS(1592), + [aux_sym_connect_timeout_token1] = ACTIONS(1592), + [aux_sym_control_master_token1] = ACTIONS(1592), + [aux_sym_control_path_token1] = ACTIONS(1592), + [aux_sym_control_persist_token1] = ACTIONS(1592), + [aux_sym_dynamic_forward_token1] = ACTIONS(1592), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1592), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1592), + [aux_sym_escape_char_token1] = ACTIONS(1592), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1592), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1592), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1592), + [aux_sym_forward_agent_token1] = ACTIONS(1592), + [aux_sym_forward_x11_token1] = ACTIONS(1594), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1592), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1592), + [aux_sym_gateway_ports_token1] = ACTIONS(1592), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1592), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1592), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1592), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1592), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1592), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1592), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1592), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1592), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1592), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1592), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1592), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1592), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1592), + [aux_sym_host_key_alias_token1] = ACTIONS(1592), + [aux_sym_hostname_token1] = ACTIONS(1592), + [aux_sym_identities_only_token1] = ACTIONS(1592), + [aux_sym_identity_agent_token1] = ACTIONS(1592), + [aux_sym_identity_file_token1] = ACTIONS(1592), + [aux_sym_ignore_unknown_token1] = ACTIONS(1592), + [aux_sym_include_token1] = ACTIONS(1592), + [aux_sym_ip_qos_token1] = ACTIONS(1592), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1592), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1592), + [aux_sym_kex_algorithms_token1] = ACTIONS(1592), + [aux_sym_known_hosts_command_token1] = ACTIONS(1592), + [aux_sym_local_command_token1] = ACTIONS(1592), + [aux_sym_local_forward_token1] = ACTIONS(1592), + [aux_sym_log_level_token1] = ACTIONS(1592), + [aux_sym_log_verbose_token1] = ACTIONS(1592), + [aux_sym_macs_token1] = ACTIONS(1592), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1592), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1592), + [aux_sym_password_authentication_token1] = ACTIONS(1592), + [aux_sym_permit_local_command_token1] = ACTIONS(1592), + [aux_sym_permit_remote_open_token1] = ACTIONS(1592), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1592), + [aux_sym_port_token1] = ACTIONS(1592), + [aux_sym_preferred_authentications_token1] = ACTIONS(1592), + [aux_sym_protocol_token1] = ACTIONS(1592), + [aux_sym_proxy_command_token1] = ACTIONS(1592), + [aux_sym_proxy_jump_token1] = ACTIONS(1592), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1592), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1592), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1592), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1592), + [aux_sym_rekey_limit_token1] = ACTIONS(1592), + [aux_sym_remote_command_token1] = ACTIONS(1592), + [aux_sym_remote_forward_token1] = ACTIONS(1592), + [aux_sym_request_tty_token1] = ACTIONS(1592), + [aux_sym_required_rsa_size_token1] = ACTIONS(1592), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1592), + [aux_sym_security_key_provider_token1] = ACTIONS(1592), + [aux_sym_send_env_token1] = ACTIONS(1592), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1592), + [aux_sym_server_alive_interval_token1] = ACTIONS(1592), + [aux_sym_session_type_token1] = ACTIONS(1592), + [aux_sym_set_env_token1] = ACTIONS(1592), + [aux_sym_stdin_null_token1] = ACTIONS(1592), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1592), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1592), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1592), + [aux_sym_syslog_facility_token1] = ACTIONS(1592), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1592), + [aux_sym_keep_alive_token1] = ACTIONS(1592), + [aux_sym_tunnel_token1] = ACTIONS(1594), + [aux_sym_tunnel_device_token1] = ACTIONS(1592), + [aux_sym_update_host_keys_token1] = ACTIONS(1592), + [aux_sym_use_keychain_token1] = ACTIONS(1592), + [aux_sym_use_roaming_token1] = ACTIONS(1592), + [aux_sym_user_token1] = ACTIONS(1594), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1592), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1592), + [aux_sym_visual_host_key_token1] = ACTIONS(1592), + [aux_sym_xauth_location_token1] = ACTIONS(1592), }, [176] = { - [ts_builtin_sym_end] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [aux_sym_match_token1] = ACTIONS(1593), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1593), - [aux_sym_address_family_token1] = ACTIONS(1593), - [aux_sym_batch_mode_token1] = ACTIONS(1593), - [aux_sym_bind_address_token1] = ACTIONS(1593), - [aux_sym_bind_interface_token1] = ACTIONS(1593), - [aux_sym_canonical_domains_token1] = ACTIONS(1593), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1593), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1593), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1593), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1593), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1593), - [aux_sym_certificate_file_token1] = ACTIONS(1593), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1593), - [aux_sym_check_host_ip_token1] = ACTIONS(1593), - [aux_sym_ciphers_token1] = ACTIONS(1593), - [aux_sym_cipher_token1] = ACTIONS(1595), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1593), - [aux_sym_compression_token1] = ACTIONS(1593), - [aux_sym_connection_attempts_token1] = ACTIONS(1593), - [aux_sym_connect_timeout_token1] = ACTIONS(1593), - [aux_sym_control_master_token1] = ACTIONS(1593), - [aux_sym_control_path_token1] = ACTIONS(1593), - [aux_sym_control_persist_token1] = ACTIONS(1593), - [aux_sym_dynamic_forward_token1] = ACTIONS(1593), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1593), - [aux_sym_escape_char_token1] = ACTIONS(1593), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1593), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1593), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1593), - [aux_sym_forward_agent_token1] = ACTIONS(1593), - [aux_sym_forward_x11_token1] = ACTIONS(1595), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1593), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1593), - [aux_sym_gateway_ports_token1] = ACTIONS(1593), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1593), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1593), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1593), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1593), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1593), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1593), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1593), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1593), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1593), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1593), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1593), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1593), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1593), - [aux_sym_host_key_alias_token1] = ACTIONS(1593), - [aux_sym_hostname_token1] = ACTIONS(1593), - [aux_sym_identities_only_token1] = ACTIONS(1593), - [aux_sym_identity_agent_token1] = ACTIONS(1593), - [aux_sym_identity_file_token1] = ACTIONS(1593), - [aux_sym_ignore_unknown_token1] = ACTIONS(1593), - [aux_sym_include_token1] = ACTIONS(1593), - [aux_sym_ip_qos_token1] = ACTIONS(1593), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1593), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1593), - [aux_sym_kex_algorithms_token1] = ACTIONS(1593), - [aux_sym_known_hosts_command_token1] = ACTIONS(1593), - [aux_sym_local_command_token1] = ACTIONS(1593), - [aux_sym_local_forward_token1] = ACTIONS(1593), - [aux_sym_log_level_token1] = ACTIONS(1593), - [aux_sym_log_verbose_token1] = ACTIONS(1593), - [aux_sym_macs_token1] = ACTIONS(1593), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1593), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1593), - [aux_sym_password_authentication_token1] = ACTIONS(1593), - [aux_sym_permit_local_command_token1] = ACTIONS(1593), - [aux_sym_permit_remote_open_token1] = ACTIONS(1593), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1593), - [aux_sym_port_token1] = ACTIONS(1593), - [aux_sym_preferred_authentications_token1] = ACTIONS(1593), - [aux_sym_protocol_token1] = ACTIONS(1593), - [aux_sym_proxy_command_token1] = ACTIONS(1593), - [aux_sym_proxy_jump_token1] = ACTIONS(1593), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1593), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1593), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1593), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1593), - [aux_sym_rekey_limit_token1] = ACTIONS(1593), - [aux_sym_remote_command_token1] = ACTIONS(1593), - [aux_sym_remote_forward_token1] = ACTIONS(1593), - [aux_sym_request_tty_token1] = ACTIONS(1593), - [aux_sym_required_rsa_size_token1] = ACTIONS(1593), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1593), - [aux_sym_security_key_provider_token1] = ACTIONS(1593), - [aux_sym_send_env_token1] = ACTIONS(1593), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1593), - [aux_sym_server_alive_interval_token1] = ACTIONS(1593), - [aux_sym_session_type_token1] = ACTIONS(1593), - [aux_sym_set_env_token1] = ACTIONS(1593), - [aux_sym_stdin_null_token1] = ACTIONS(1593), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1593), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1593), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1593), - [aux_sym_syslog_facility_token1] = ACTIONS(1593), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1593), - [aux_sym_keep_alive_token1] = ACTIONS(1593), - [aux_sym_tunnel_token1] = ACTIONS(1595), - [aux_sym_tunnel_device_token1] = ACTIONS(1593), - [aux_sym_update_host_keys_token1] = ACTIONS(1593), - [aux_sym_use_keychain_token1] = ACTIONS(1593), - [aux_sym_use_roaming_token1] = ACTIONS(1593), - [aux_sym_user_token1] = ACTIONS(1595), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1593), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1593), - [aux_sym_visual_host_key_token1] = ACTIONS(1593), - [aux_sym_xauth_location_token1] = ACTIONS(1593), + [ts_builtin_sym_end] = ACTIONS(1598), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1600), + [anon_sym_DQUOTE] = ACTIONS(1602), + [aux_sym_match_token1] = ACTIONS(1598), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1598), + [aux_sym_address_family_token1] = ACTIONS(1598), + [aux_sym_batch_mode_token1] = ACTIONS(1598), + [aux_sym_bind_address_token1] = ACTIONS(1598), + [aux_sym_bind_interface_token1] = ACTIONS(1598), + [aux_sym_canonical_domains_token1] = ACTIONS(1598), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1598), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1598), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1598), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1598), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1598), + [aux_sym_certificate_file_token1] = ACTIONS(1598), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1598), + [aux_sym_check_host_ip_token1] = ACTIONS(1598), + [aux_sym_ciphers_token1] = ACTIONS(1598), + [aux_sym_cipher_token1] = ACTIONS(1600), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1598), + [aux_sym_compression_token1] = ACTIONS(1598), + [aux_sym_connection_attempts_token1] = ACTIONS(1598), + [aux_sym_connect_timeout_token1] = ACTIONS(1598), + [aux_sym_control_master_token1] = ACTIONS(1598), + [aux_sym_control_path_token1] = ACTIONS(1598), + [aux_sym_control_persist_token1] = ACTIONS(1598), + [aux_sym_dynamic_forward_token1] = ACTIONS(1598), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1598), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1598), + [aux_sym_escape_char_token1] = ACTIONS(1598), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1598), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1598), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1598), + [aux_sym_forward_agent_token1] = ACTIONS(1598), + [aux_sym_forward_x11_token1] = ACTIONS(1600), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1598), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1598), + [aux_sym_gateway_ports_token1] = ACTIONS(1598), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1598), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1598), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1598), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1598), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1598), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1598), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1598), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1598), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1598), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1598), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1598), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1598), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1598), + [aux_sym_host_key_alias_token1] = ACTIONS(1598), + [aux_sym_hostname_token1] = ACTIONS(1598), + [aux_sym_identities_only_token1] = ACTIONS(1598), + [aux_sym_identity_agent_token1] = ACTIONS(1598), + [aux_sym_identity_file_token1] = ACTIONS(1598), + [aux_sym_ignore_unknown_token1] = ACTIONS(1598), + [aux_sym_include_token1] = ACTIONS(1598), + [aux_sym_ip_qos_token1] = ACTIONS(1598), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1598), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1598), + [aux_sym_kex_algorithms_token1] = ACTIONS(1598), + [aux_sym_known_hosts_command_token1] = ACTIONS(1598), + [aux_sym_local_command_token1] = ACTIONS(1598), + [aux_sym_local_forward_token1] = ACTIONS(1598), + [aux_sym_log_level_token1] = ACTIONS(1598), + [aux_sym_log_verbose_token1] = ACTIONS(1598), + [aux_sym_macs_token1] = ACTIONS(1598), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1598), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1598), + [aux_sym_password_authentication_token1] = ACTIONS(1598), + [aux_sym_permit_local_command_token1] = ACTIONS(1598), + [aux_sym_permit_remote_open_token1] = ACTIONS(1598), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1598), + [aux_sym_port_token1] = ACTIONS(1598), + [aux_sym_preferred_authentications_token1] = ACTIONS(1598), + [aux_sym_protocol_token1] = ACTIONS(1598), + [aux_sym_proxy_command_token1] = ACTIONS(1598), + [aux_sym_proxy_jump_token1] = ACTIONS(1598), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1598), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1598), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1598), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1598), + [aux_sym_rekey_limit_token1] = ACTIONS(1598), + [aux_sym_remote_command_token1] = ACTIONS(1598), + [aux_sym_remote_forward_token1] = ACTIONS(1598), + [aux_sym_request_tty_token1] = ACTIONS(1598), + [aux_sym_required_rsa_size_token1] = ACTIONS(1598), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1598), + [aux_sym_security_key_provider_token1] = ACTIONS(1598), + [aux_sym_send_env_token1] = ACTIONS(1598), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1598), + [aux_sym_server_alive_interval_token1] = ACTIONS(1598), + [aux_sym_session_type_token1] = ACTIONS(1598), + [aux_sym_set_env_token1] = ACTIONS(1598), + [aux_sym_stdin_null_token1] = ACTIONS(1598), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1598), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1598), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1598), + [aux_sym_syslog_facility_token1] = ACTIONS(1598), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1598), + [aux_sym_keep_alive_token1] = ACTIONS(1598), + [aux_sym_tunnel_token1] = ACTIONS(1600), + [aux_sym_tunnel_device_token1] = ACTIONS(1598), + [aux_sym_update_host_keys_token1] = ACTIONS(1598), + [aux_sym_use_keychain_token1] = ACTIONS(1598), + [aux_sym_use_roaming_token1] = ACTIONS(1598), + [aux_sym_user_token1] = ACTIONS(1600), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1598), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1598), + [aux_sym_visual_host_key_token1] = ACTIONS(1598), + [aux_sym_xauth_location_token1] = ACTIONS(1598), }, [177] = { - [ts_builtin_sym_end] = ACTIONS(1599), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1601), - [anon_sym_DQUOTE] = ACTIONS(1603), - [aux_sym_match_token1] = ACTIONS(1599), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1599), - [aux_sym_address_family_token1] = ACTIONS(1599), - [aux_sym_batch_mode_token1] = ACTIONS(1599), - [aux_sym_bind_address_token1] = ACTIONS(1599), - [aux_sym_bind_interface_token1] = ACTIONS(1599), - [aux_sym_canonical_domains_token1] = ACTIONS(1599), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1599), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1599), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1599), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1599), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1599), - [aux_sym_certificate_file_token1] = ACTIONS(1599), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1599), - [aux_sym_check_host_ip_token1] = ACTIONS(1599), - [aux_sym_ciphers_token1] = ACTIONS(1599), - [aux_sym_cipher_token1] = ACTIONS(1601), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1599), - [aux_sym_compression_token1] = ACTIONS(1599), - [aux_sym_connection_attempts_token1] = ACTIONS(1599), - [aux_sym_connect_timeout_token1] = ACTIONS(1599), - [aux_sym_control_master_token1] = ACTIONS(1599), - [aux_sym_control_path_token1] = ACTIONS(1599), - [aux_sym_control_persist_token1] = ACTIONS(1599), - [aux_sym_dynamic_forward_token1] = ACTIONS(1599), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1599), - [aux_sym_escape_char_token1] = ACTIONS(1599), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1599), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1599), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1599), - [aux_sym_forward_agent_token1] = ACTIONS(1599), - [aux_sym_forward_x11_token1] = ACTIONS(1601), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1599), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1599), - [aux_sym_gateway_ports_token1] = ACTIONS(1599), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1599), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1599), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1599), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1599), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1599), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1599), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1599), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1599), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1599), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1599), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1599), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1599), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1599), - [aux_sym_host_key_alias_token1] = ACTIONS(1599), - [aux_sym_hostname_token1] = ACTIONS(1599), - [aux_sym_identities_only_token1] = ACTIONS(1599), - [aux_sym_identity_agent_token1] = ACTIONS(1599), - [aux_sym_identity_file_token1] = ACTIONS(1599), - [aux_sym_ignore_unknown_token1] = ACTIONS(1599), - [aux_sym_include_token1] = ACTIONS(1599), - [aux_sym_ip_qos_token1] = ACTIONS(1599), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1599), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1599), - [aux_sym_kex_algorithms_token1] = ACTIONS(1599), - [aux_sym_known_hosts_command_token1] = ACTIONS(1599), - [aux_sym_local_command_token1] = ACTIONS(1599), - [aux_sym_local_forward_token1] = ACTIONS(1599), - [aux_sym_log_level_token1] = ACTIONS(1599), - [aux_sym_log_verbose_token1] = ACTIONS(1599), - [aux_sym_macs_token1] = ACTIONS(1599), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1599), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1599), - [aux_sym_password_authentication_token1] = ACTIONS(1599), - [aux_sym_permit_local_command_token1] = ACTIONS(1599), - [aux_sym_permit_remote_open_token1] = ACTIONS(1599), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1599), - [aux_sym_port_token1] = ACTIONS(1599), - [aux_sym_preferred_authentications_token1] = ACTIONS(1599), - [aux_sym_protocol_token1] = ACTIONS(1599), - [aux_sym_proxy_command_token1] = ACTIONS(1599), - [aux_sym_proxy_jump_token1] = ACTIONS(1599), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1599), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1599), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1599), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1599), - [aux_sym_rekey_limit_token1] = ACTIONS(1599), - [aux_sym_remote_command_token1] = ACTIONS(1599), - [aux_sym_remote_forward_token1] = ACTIONS(1599), - [aux_sym_request_tty_token1] = ACTIONS(1599), - [aux_sym_required_rsa_size_token1] = ACTIONS(1599), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1599), - [aux_sym_security_key_provider_token1] = ACTIONS(1599), - [aux_sym_send_env_token1] = ACTIONS(1599), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1599), - [aux_sym_server_alive_interval_token1] = ACTIONS(1599), - [aux_sym_session_type_token1] = ACTIONS(1599), - [aux_sym_set_env_token1] = ACTIONS(1599), - [aux_sym_stdin_null_token1] = ACTIONS(1599), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1599), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1599), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1599), - [aux_sym_syslog_facility_token1] = ACTIONS(1599), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1599), - [aux_sym_keep_alive_token1] = ACTIONS(1599), - [aux_sym_tunnel_token1] = ACTIONS(1601), - [aux_sym_tunnel_device_token1] = ACTIONS(1599), - [aux_sym_update_host_keys_token1] = ACTIONS(1599), - [aux_sym_use_keychain_token1] = ACTIONS(1599), - [aux_sym_use_roaming_token1] = ACTIONS(1599), - [aux_sym_user_token1] = ACTIONS(1601), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1599), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1599), - [aux_sym_visual_host_key_token1] = ACTIONS(1599), - [aux_sym_xauth_location_token1] = ACTIONS(1599), + [ts_builtin_sym_end] = ACTIONS(1604), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1606), + [anon_sym_DQUOTE] = ACTIONS(1608), + [aux_sym_match_token1] = ACTIONS(1604), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1604), + [aux_sym_address_family_token1] = ACTIONS(1604), + [aux_sym_batch_mode_token1] = ACTIONS(1604), + [aux_sym_bind_address_token1] = ACTIONS(1604), + [aux_sym_bind_interface_token1] = ACTIONS(1604), + [aux_sym_canonical_domains_token1] = ACTIONS(1604), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1604), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1604), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1604), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1604), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1604), + [aux_sym_certificate_file_token1] = ACTIONS(1604), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1604), + [aux_sym_check_host_ip_token1] = ACTIONS(1604), + [aux_sym_ciphers_token1] = ACTIONS(1604), + [aux_sym_cipher_token1] = ACTIONS(1606), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1604), + [aux_sym_compression_token1] = ACTIONS(1604), + [aux_sym_connection_attempts_token1] = ACTIONS(1604), + [aux_sym_connect_timeout_token1] = ACTIONS(1604), + [aux_sym_control_master_token1] = ACTIONS(1604), + [aux_sym_control_path_token1] = ACTIONS(1604), + [aux_sym_control_persist_token1] = ACTIONS(1604), + [aux_sym_dynamic_forward_token1] = ACTIONS(1604), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1604), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1604), + [aux_sym_escape_char_token1] = ACTIONS(1604), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1604), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1604), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1604), + [aux_sym_forward_agent_token1] = ACTIONS(1604), + [aux_sym_forward_x11_token1] = ACTIONS(1606), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1604), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1604), + [aux_sym_gateway_ports_token1] = ACTIONS(1604), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1604), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1604), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1604), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1604), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1604), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1604), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1604), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1604), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1604), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1604), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1604), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1604), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1604), + [aux_sym_host_key_alias_token1] = ACTIONS(1604), + [aux_sym_hostname_token1] = ACTIONS(1604), + [aux_sym_identities_only_token1] = ACTIONS(1604), + [aux_sym_identity_agent_token1] = ACTIONS(1604), + [aux_sym_identity_file_token1] = ACTIONS(1604), + [aux_sym_ignore_unknown_token1] = ACTIONS(1604), + [aux_sym_include_token1] = ACTIONS(1604), + [aux_sym_ip_qos_token1] = ACTIONS(1604), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1604), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1604), + [aux_sym_kex_algorithms_token1] = ACTIONS(1604), + [aux_sym_known_hosts_command_token1] = ACTIONS(1604), + [aux_sym_local_command_token1] = ACTIONS(1604), + [aux_sym_local_forward_token1] = ACTIONS(1604), + [aux_sym_log_level_token1] = ACTIONS(1604), + [aux_sym_log_verbose_token1] = ACTIONS(1604), + [aux_sym_macs_token1] = ACTIONS(1604), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1604), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1604), + [aux_sym_password_authentication_token1] = ACTIONS(1604), + [aux_sym_permit_local_command_token1] = ACTIONS(1604), + [aux_sym_permit_remote_open_token1] = ACTIONS(1604), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1604), + [aux_sym_port_token1] = ACTIONS(1604), + [aux_sym_preferred_authentications_token1] = ACTIONS(1604), + [aux_sym_protocol_token1] = ACTIONS(1604), + [aux_sym_proxy_command_token1] = ACTIONS(1604), + [aux_sym_proxy_jump_token1] = ACTIONS(1604), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1604), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1604), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1604), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1604), + [aux_sym_rekey_limit_token1] = ACTIONS(1604), + [aux_sym_remote_command_token1] = ACTIONS(1604), + [aux_sym_remote_forward_token1] = ACTIONS(1604), + [aux_sym_request_tty_token1] = ACTIONS(1604), + [aux_sym_required_rsa_size_token1] = ACTIONS(1604), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1604), + [aux_sym_security_key_provider_token1] = ACTIONS(1604), + [aux_sym_send_env_token1] = ACTIONS(1604), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1604), + [aux_sym_server_alive_interval_token1] = ACTIONS(1604), + [aux_sym_session_type_token1] = ACTIONS(1604), + [aux_sym_set_env_token1] = ACTIONS(1604), + [aux_sym_stdin_null_token1] = ACTIONS(1604), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1604), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1604), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1604), + [aux_sym_syslog_facility_token1] = ACTIONS(1604), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1604), + [aux_sym_keep_alive_token1] = ACTIONS(1604), + [aux_sym_tunnel_token1] = ACTIONS(1606), + [aux_sym_tunnel_device_token1] = ACTIONS(1604), + [aux_sym_update_host_keys_token1] = ACTIONS(1604), + [aux_sym_use_keychain_token1] = ACTIONS(1604), + [aux_sym_use_roaming_token1] = ACTIONS(1604), + [aux_sym_user_token1] = ACTIONS(1606), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1604), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1604), + [aux_sym_visual_host_key_token1] = ACTIONS(1604), + [aux_sym_xauth_location_token1] = ACTIONS(1604), }, [178] = { - [ts_builtin_sym_end] = ACTIONS(1605), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1609), - [aux_sym_match_token1] = ACTIONS(1605), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1605), - [aux_sym_address_family_token1] = ACTIONS(1605), - [aux_sym_batch_mode_token1] = ACTIONS(1605), - [aux_sym_bind_address_token1] = ACTIONS(1605), - [aux_sym_bind_interface_token1] = ACTIONS(1605), - [aux_sym_canonical_domains_token1] = ACTIONS(1605), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1605), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1605), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1605), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1605), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1605), - [aux_sym_certificate_file_token1] = ACTIONS(1605), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1605), - [aux_sym_check_host_ip_token1] = ACTIONS(1605), - [aux_sym_ciphers_token1] = ACTIONS(1605), - [aux_sym_cipher_token1] = ACTIONS(1607), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1605), - [aux_sym_compression_token1] = ACTIONS(1605), - [aux_sym_connection_attempts_token1] = ACTIONS(1605), - [aux_sym_connect_timeout_token1] = ACTIONS(1605), - [aux_sym_control_master_token1] = ACTIONS(1605), - [aux_sym_control_path_token1] = ACTIONS(1605), - [aux_sym_control_persist_token1] = ACTIONS(1605), - [aux_sym_dynamic_forward_token1] = ACTIONS(1605), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1605), - [aux_sym_escape_char_token1] = ACTIONS(1605), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1605), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1605), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1605), - [aux_sym_forward_agent_token1] = ACTIONS(1605), - [aux_sym_forward_x11_token1] = ACTIONS(1607), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1605), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1605), - [aux_sym_gateway_ports_token1] = ACTIONS(1605), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1605), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1605), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1605), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1605), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1605), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1605), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1605), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1605), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1605), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1605), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1605), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1605), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1605), - [aux_sym_host_key_alias_token1] = ACTIONS(1605), - [aux_sym_hostname_token1] = ACTIONS(1605), - [aux_sym_identities_only_token1] = ACTIONS(1605), - [aux_sym_identity_agent_token1] = ACTIONS(1605), - [aux_sym_identity_file_token1] = ACTIONS(1605), - [aux_sym_ignore_unknown_token1] = ACTIONS(1605), - [aux_sym_include_token1] = ACTIONS(1605), - [aux_sym_ip_qos_token1] = ACTIONS(1605), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1605), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1605), - [aux_sym_kex_algorithms_token1] = ACTIONS(1605), - [aux_sym_known_hosts_command_token1] = ACTIONS(1605), - [aux_sym_local_command_token1] = ACTIONS(1605), - [aux_sym_local_forward_token1] = ACTIONS(1605), - [aux_sym_log_level_token1] = ACTIONS(1605), - [aux_sym_log_verbose_token1] = ACTIONS(1605), - [aux_sym_macs_token1] = ACTIONS(1605), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1605), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1605), - [aux_sym_password_authentication_token1] = ACTIONS(1605), - [aux_sym_permit_local_command_token1] = ACTIONS(1605), - [aux_sym_permit_remote_open_token1] = ACTIONS(1605), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1605), - [aux_sym_port_token1] = ACTIONS(1605), - [aux_sym_preferred_authentications_token1] = ACTIONS(1605), - [aux_sym_protocol_token1] = ACTIONS(1605), - [aux_sym_proxy_command_token1] = ACTIONS(1605), - [aux_sym_proxy_jump_token1] = ACTIONS(1605), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1605), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1605), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1605), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1605), - [aux_sym_rekey_limit_token1] = ACTIONS(1605), - [aux_sym_remote_command_token1] = ACTIONS(1605), - [aux_sym_remote_forward_token1] = ACTIONS(1605), - [aux_sym_request_tty_token1] = ACTIONS(1605), - [aux_sym_required_rsa_size_token1] = ACTIONS(1605), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1605), - [aux_sym_security_key_provider_token1] = ACTIONS(1605), - [aux_sym_send_env_token1] = ACTIONS(1605), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1605), - [aux_sym_server_alive_interval_token1] = ACTIONS(1605), - [aux_sym_session_type_token1] = ACTIONS(1605), - [aux_sym_set_env_token1] = ACTIONS(1605), - [aux_sym_stdin_null_token1] = ACTIONS(1605), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1605), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1605), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1605), - [aux_sym_syslog_facility_token1] = ACTIONS(1605), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1605), - [aux_sym_keep_alive_token1] = ACTIONS(1605), - [aux_sym_tunnel_token1] = ACTIONS(1607), - [aux_sym_tunnel_device_token1] = ACTIONS(1605), - [aux_sym_update_host_keys_token1] = ACTIONS(1605), - [aux_sym_use_keychain_token1] = ACTIONS(1605), - [aux_sym_use_roaming_token1] = ACTIONS(1605), - [aux_sym_user_token1] = ACTIONS(1607), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1605), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1605), - [aux_sym_visual_host_key_token1] = ACTIONS(1605), - [aux_sym_xauth_location_token1] = ACTIONS(1605), + [ts_builtin_sym_end] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1612), + [anon_sym_DQUOTE] = ACTIONS(1614), + [aux_sym_match_token1] = ACTIONS(1610), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1610), + [aux_sym_address_family_token1] = ACTIONS(1610), + [aux_sym_batch_mode_token1] = ACTIONS(1610), + [aux_sym_bind_address_token1] = ACTIONS(1610), + [aux_sym_bind_interface_token1] = ACTIONS(1610), + [aux_sym_canonical_domains_token1] = ACTIONS(1610), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1610), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1610), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1610), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1610), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1610), + [aux_sym_certificate_file_token1] = ACTIONS(1610), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1610), + [aux_sym_check_host_ip_token1] = ACTIONS(1610), + [aux_sym_ciphers_token1] = ACTIONS(1610), + [aux_sym_cipher_token1] = ACTIONS(1612), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1610), + [aux_sym_compression_token1] = ACTIONS(1610), + [aux_sym_connection_attempts_token1] = ACTIONS(1610), + [aux_sym_connect_timeout_token1] = ACTIONS(1610), + [aux_sym_control_master_token1] = ACTIONS(1610), + [aux_sym_control_path_token1] = ACTIONS(1610), + [aux_sym_control_persist_token1] = ACTIONS(1610), + [aux_sym_dynamic_forward_token1] = ACTIONS(1610), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1610), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1610), + [aux_sym_escape_char_token1] = ACTIONS(1610), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1610), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1610), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1610), + [aux_sym_forward_agent_token1] = ACTIONS(1610), + [aux_sym_forward_x11_token1] = ACTIONS(1612), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1610), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1610), + [aux_sym_gateway_ports_token1] = ACTIONS(1610), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1610), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1610), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1610), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1610), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1610), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1610), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1610), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1610), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1610), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1610), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1610), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1610), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1610), + [aux_sym_host_key_alias_token1] = ACTIONS(1610), + [aux_sym_hostname_token1] = ACTIONS(1610), + [aux_sym_identities_only_token1] = ACTIONS(1610), + [aux_sym_identity_agent_token1] = ACTIONS(1610), + [aux_sym_identity_file_token1] = ACTIONS(1610), + [aux_sym_ignore_unknown_token1] = ACTIONS(1610), + [aux_sym_include_token1] = ACTIONS(1610), + [aux_sym_ip_qos_token1] = ACTIONS(1610), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1610), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1610), + [aux_sym_kex_algorithms_token1] = ACTIONS(1610), + [aux_sym_known_hosts_command_token1] = ACTIONS(1610), + [aux_sym_local_command_token1] = ACTIONS(1610), + [aux_sym_local_forward_token1] = ACTIONS(1610), + [aux_sym_log_level_token1] = ACTIONS(1610), + [aux_sym_log_verbose_token1] = ACTIONS(1610), + [aux_sym_macs_token1] = ACTIONS(1610), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1610), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1610), + [aux_sym_password_authentication_token1] = ACTIONS(1610), + [aux_sym_permit_local_command_token1] = ACTIONS(1610), + [aux_sym_permit_remote_open_token1] = ACTIONS(1610), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1610), + [aux_sym_port_token1] = ACTIONS(1610), + [aux_sym_preferred_authentications_token1] = ACTIONS(1610), + [aux_sym_protocol_token1] = ACTIONS(1610), + [aux_sym_proxy_command_token1] = ACTIONS(1610), + [aux_sym_proxy_jump_token1] = ACTIONS(1610), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1610), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1610), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1610), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1610), + [aux_sym_rekey_limit_token1] = ACTIONS(1610), + [aux_sym_remote_command_token1] = ACTIONS(1610), + [aux_sym_remote_forward_token1] = ACTIONS(1610), + [aux_sym_request_tty_token1] = ACTIONS(1610), + [aux_sym_required_rsa_size_token1] = ACTIONS(1610), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1610), + [aux_sym_security_key_provider_token1] = ACTIONS(1610), + [aux_sym_send_env_token1] = ACTIONS(1610), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1610), + [aux_sym_server_alive_interval_token1] = ACTIONS(1610), + [aux_sym_session_type_token1] = ACTIONS(1610), + [aux_sym_set_env_token1] = ACTIONS(1610), + [aux_sym_stdin_null_token1] = ACTIONS(1610), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1610), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1610), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1610), + [aux_sym_syslog_facility_token1] = ACTIONS(1610), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1610), + [aux_sym_keep_alive_token1] = ACTIONS(1610), + [aux_sym_tunnel_token1] = ACTIONS(1612), + [aux_sym_tunnel_device_token1] = ACTIONS(1610), + [aux_sym_update_host_keys_token1] = ACTIONS(1610), + [aux_sym_use_keychain_token1] = ACTIONS(1610), + [aux_sym_use_roaming_token1] = ACTIONS(1610), + [aux_sym_user_token1] = ACTIONS(1612), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1610), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1610), + [aux_sym_visual_host_key_token1] = ACTIONS(1610), + [aux_sym_xauth_location_token1] = ACTIONS(1610), }, [179] = { - [ts_builtin_sym_end] = ACTIONS(1611), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1613), - [anon_sym_DQUOTE] = ACTIONS(1615), - [aux_sym_match_token1] = ACTIONS(1611), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1611), - [aux_sym_address_family_token1] = ACTIONS(1611), - [aux_sym_batch_mode_token1] = ACTIONS(1611), - [aux_sym_bind_address_token1] = ACTIONS(1611), - [aux_sym_bind_interface_token1] = ACTIONS(1611), - [aux_sym_canonical_domains_token1] = ACTIONS(1611), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1611), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1611), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1611), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1611), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1611), - [aux_sym_certificate_file_token1] = ACTIONS(1611), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1611), - [aux_sym_check_host_ip_token1] = ACTIONS(1611), - [aux_sym_ciphers_token1] = ACTIONS(1611), - [aux_sym_cipher_token1] = ACTIONS(1613), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1611), - [aux_sym_compression_token1] = ACTIONS(1611), - [aux_sym_connection_attempts_token1] = ACTIONS(1611), - [aux_sym_connect_timeout_token1] = ACTIONS(1611), - [aux_sym_control_master_token1] = ACTIONS(1611), - [aux_sym_control_path_token1] = ACTIONS(1611), - [aux_sym_control_persist_token1] = ACTIONS(1611), - [aux_sym_dynamic_forward_token1] = ACTIONS(1611), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1611), - [aux_sym_escape_char_token1] = ACTIONS(1611), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1611), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1611), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1611), - [aux_sym_forward_agent_token1] = ACTIONS(1611), - [aux_sym_forward_x11_token1] = ACTIONS(1613), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1611), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1611), - [aux_sym_gateway_ports_token1] = ACTIONS(1611), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1611), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1611), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1611), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1611), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1611), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1611), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1611), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1611), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1611), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1611), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1611), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1611), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1611), - [aux_sym_host_key_alias_token1] = ACTIONS(1611), - [aux_sym_hostname_token1] = ACTIONS(1611), - [aux_sym_identities_only_token1] = ACTIONS(1611), - [aux_sym_identity_agent_token1] = ACTIONS(1611), - [aux_sym_identity_file_token1] = ACTIONS(1611), - [aux_sym_ignore_unknown_token1] = ACTIONS(1611), - [aux_sym_include_token1] = ACTIONS(1611), - [aux_sym_ip_qos_token1] = ACTIONS(1611), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1611), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1611), - [aux_sym_kex_algorithms_token1] = ACTIONS(1611), - [aux_sym_known_hosts_command_token1] = ACTIONS(1611), - [aux_sym_local_command_token1] = ACTIONS(1611), - [aux_sym_local_forward_token1] = ACTIONS(1611), - [aux_sym_log_level_token1] = ACTIONS(1611), - [aux_sym_log_verbose_token1] = ACTIONS(1611), - [aux_sym_macs_token1] = ACTIONS(1611), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1611), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1611), - [aux_sym_password_authentication_token1] = ACTIONS(1611), - [aux_sym_permit_local_command_token1] = ACTIONS(1611), - [aux_sym_permit_remote_open_token1] = ACTIONS(1611), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1611), - [aux_sym_port_token1] = ACTIONS(1611), - [aux_sym_preferred_authentications_token1] = ACTIONS(1611), - [aux_sym_protocol_token1] = ACTIONS(1611), - [aux_sym_proxy_command_token1] = ACTIONS(1611), - [aux_sym_proxy_jump_token1] = ACTIONS(1611), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1611), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1611), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1611), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1611), - [aux_sym_rekey_limit_token1] = ACTIONS(1611), - [aux_sym_remote_command_token1] = ACTIONS(1611), - [aux_sym_remote_forward_token1] = ACTIONS(1611), - [aux_sym_request_tty_token1] = ACTIONS(1611), - [aux_sym_required_rsa_size_token1] = ACTIONS(1611), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1611), - [aux_sym_security_key_provider_token1] = ACTIONS(1611), - [aux_sym_send_env_token1] = ACTIONS(1611), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1611), - [aux_sym_server_alive_interval_token1] = ACTIONS(1611), - [aux_sym_session_type_token1] = ACTIONS(1611), - [aux_sym_set_env_token1] = ACTIONS(1611), - [aux_sym_stdin_null_token1] = ACTIONS(1611), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1611), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1611), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1611), - [aux_sym_syslog_facility_token1] = ACTIONS(1611), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1611), - [aux_sym_keep_alive_token1] = ACTIONS(1611), - [aux_sym_tunnel_token1] = ACTIONS(1613), - [aux_sym_tunnel_device_token1] = ACTIONS(1611), - [aux_sym_update_host_keys_token1] = ACTIONS(1611), - [aux_sym_use_keychain_token1] = ACTIONS(1611), - [aux_sym_use_roaming_token1] = ACTIONS(1611), - [aux_sym_user_token1] = ACTIONS(1613), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1611), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1611), - [aux_sym_visual_host_key_token1] = ACTIONS(1611), - [aux_sym_xauth_location_token1] = ACTIONS(1611), + [ts_builtin_sym_end] = ACTIONS(1616), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1618), + [anon_sym_DQUOTE] = ACTIONS(1620), + [aux_sym_match_token1] = ACTIONS(1616), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1616), + [aux_sym_address_family_token1] = ACTIONS(1616), + [aux_sym_batch_mode_token1] = ACTIONS(1616), + [aux_sym_bind_address_token1] = ACTIONS(1616), + [aux_sym_bind_interface_token1] = ACTIONS(1616), + [aux_sym_canonical_domains_token1] = ACTIONS(1616), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1616), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1616), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1616), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1616), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1616), + [aux_sym_certificate_file_token1] = ACTIONS(1616), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1616), + [aux_sym_check_host_ip_token1] = ACTIONS(1616), + [aux_sym_ciphers_token1] = ACTIONS(1616), + [aux_sym_cipher_token1] = ACTIONS(1618), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1616), + [aux_sym_compression_token1] = ACTIONS(1616), + [aux_sym_connection_attempts_token1] = ACTIONS(1616), + [aux_sym_connect_timeout_token1] = ACTIONS(1616), + [aux_sym_control_master_token1] = ACTIONS(1616), + [aux_sym_control_path_token1] = ACTIONS(1616), + [aux_sym_control_persist_token1] = ACTIONS(1616), + [aux_sym_dynamic_forward_token1] = ACTIONS(1616), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1616), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1616), + [aux_sym_escape_char_token1] = ACTIONS(1616), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1616), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1616), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1616), + [aux_sym_forward_agent_token1] = ACTIONS(1616), + [aux_sym_forward_x11_token1] = ACTIONS(1618), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1616), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1616), + [aux_sym_gateway_ports_token1] = ACTIONS(1616), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1616), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1616), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1616), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1616), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1616), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1616), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1616), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1616), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1616), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1616), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1616), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1616), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1616), + [aux_sym_host_key_alias_token1] = ACTIONS(1616), + [aux_sym_hostname_token1] = ACTIONS(1616), + [aux_sym_identities_only_token1] = ACTIONS(1616), + [aux_sym_identity_agent_token1] = ACTIONS(1616), + [aux_sym_identity_file_token1] = ACTIONS(1616), + [aux_sym_ignore_unknown_token1] = ACTIONS(1616), + [aux_sym_include_token1] = ACTIONS(1616), + [aux_sym_ip_qos_token1] = ACTIONS(1616), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1616), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1616), + [aux_sym_kex_algorithms_token1] = ACTIONS(1616), + [aux_sym_known_hosts_command_token1] = ACTIONS(1616), + [aux_sym_local_command_token1] = ACTIONS(1616), + [aux_sym_local_forward_token1] = ACTIONS(1616), + [aux_sym_log_level_token1] = ACTIONS(1616), + [aux_sym_log_verbose_token1] = ACTIONS(1616), + [aux_sym_macs_token1] = ACTIONS(1616), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1616), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1616), + [aux_sym_password_authentication_token1] = ACTIONS(1616), + [aux_sym_permit_local_command_token1] = ACTIONS(1616), + [aux_sym_permit_remote_open_token1] = ACTIONS(1616), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1616), + [aux_sym_port_token1] = ACTIONS(1616), + [aux_sym_preferred_authentications_token1] = ACTIONS(1616), + [aux_sym_protocol_token1] = ACTIONS(1616), + [aux_sym_proxy_command_token1] = ACTIONS(1616), + [aux_sym_proxy_jump_token1] = ACTIONS(1616), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1616), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1616), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1616), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1616), + [aux_sym_rekey_limit_token1] = ACTIONS(1616), + [aux_sym_remote_command_token1] = ACTIONS(1616), + [aux_sym_remote_forward_token1] = ACTIONS(1616), + [aux_sym_request_tty_token1] = ACTIONS(1616), + [aux_sym_required_rsa_size_token1] = ACTIONS(1616), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1616), + [aux_sym_security_key_provider_token1] = ACTIONS(1616), + [aux_sym_send_env_token1] = ACTIONS(1616), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1616), + [aux_sym_server_alive_interval_token1] = ACTIONS(1616), + [aux_sym_session_type_token1] = ACTIONS(1616), + [aux_sym_set_env_token1] = ACTIONS(1616), + [aux_sym_stdin_null_token1] = ACTIONS(1616), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1616), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1616), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1616), + [aux_sym_syslog_facility_token1] = ACTIONS(1616), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1616), + [aux_sym_keep_alive_token1] = ACTIONS(1616), + [aux_sym_tunnel_token1] = ACTIONS(1618), + [aux_sym_tunnel_device_token1] = ACTIONS(1616), + [aux_sym_update_host_keys_token1] = ACTIONS(1616), + [aux_sym_use_keychain_token1] = ACTIONS(1616), + [aux_sym_use_roaming_token1] = ACTIONS(1616), + [aux_sym_user_token1] = ACTIONS(1618), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1616), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1616), + [aux_sym_visual_host_key_token1] = ACTIONS(1616), + [aux_sym_xauth_location_token1] = ACTIONS(1616), }, [180] = { - [ts_builtin_sym_end] = ACTIONS(1617), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1621), - [aux_sym_match_token1] = ACTIONS(1617), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1617), - [aux_sym_address_family_token1] = ACTIONS(1617), - [aux_sym_batch_mode_token1] = ACTIONS(1617), - [aux_sym_bind_address_token1] = ACTIONS(1617), - [aux_sym_bind_interface_token1] = ACTIONS(1617), - [aux_sym_canonical_domains_token1] = ACTIONS(1617), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1617), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1617), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1617), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1617), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1617), - [aux_sym_certificate_file_token1] = ACTIONS(1617), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1617), - [aux_sym_check_host_ip_token1] = ACTIONS(1617), - [aux_sym_ciphers_token1] = ACTIONS(1617), - [aux_sym_cipher_token1] = ACTIONS(1619), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1617), - [aux_sym_compression_token1] = ACTIONS(1617), - [aux_sym_connection_attempts_token1] = ACTIONS(1617), - [aux_sym_connect_timeout_token1] = ACTIONS(1617), - [aux_sym_control_master_token1] = ACTIONS(1617), - [aux_sym_control_path_token1] = ACTIONS(1617), - [aux_sym_control_persist_token1] = ACTIONS(1617), - [aux_sym_dynamic_forward_token1] = ACTIONS(1617), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1617), - [aux_sym_escape_char_token1] = ACTIONS(1617), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1617), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1617), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1617), - [aux_sym_forward_agent_token1] = ACTIONS(1617), - [aux_sym_forward_x11_token1] = ACTIONS(1619), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1617), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1617), - [aux_sym_gateway_ports_token1] = ACTIONS(1617), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1617), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1617), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1617), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1617), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1617), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1617), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1617), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1617), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1617), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1617), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1617), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1617), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1617), - [aux_sym_host_key_alias_token1] = ACTIONS(1617), - [aux_sym_hostname_token1] = ACTIONS(1617), - [aux_sym_identities_only_token1] = ACTIONS(1617), - [aux_sym_identity_agent_token1] = ACTIONS(1617), - [aux_sym_identity_file_token1] = ACTIONS(1617), - [aux_sym_ignore_unknown_token1] = ACTIONS(1617), - [aux_sym_include_token1] = ACTIONS(1617), - [aux_sym_ip_qos_token1] = ACTIONS(1617), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1617), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1617), - [aux_sym_kex_algorithms_token1] = ACTIONS(1617), - [aux_sym_known_hosts_command_token1] = ACTIONS(1617), - [aux_sym_local_command_token1] = ACTIONS(1617), - [aux_sym_local_forward_token1] = ACTIONS(1617), - [aux_sym_log_level_token1] = ACTIONS(1617), - [aux_sym_log_verbose_token1] = ACTIONS(1617), - [aux_sym_macs_token1] = ACTIONS(1617), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1617), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1617), - [aux_sym_password_authentication_token1] = ACTIONS(1617), - [aux_sym_permit_local_command_token1] = ACTIONS(1617), - [aux_sym_permit_remote_open_token1] = ACTIONS(1617), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1617), - [aux_sym_port_token1] = ACTIONS(1617), - [aux_sym_preferred_authentications_token1] = ACTIONS(1617), - [aux_sym_protocol_token1] = ACTIONS(1617), - [aux_sym_proxy_command_token1] = ACTIONS(1617), - [aux_sym_proxy_jump_token1] = ACTIONS(1617), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1617), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1617), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1617), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1617), - [aux_sym_rekey_limit_token1] = ACTIONS(1617), - [aux_sym_remote_command_token1] = ACTIONS(1617), - [aux_sym_remote_forward_token1] = ACTIONS(1617), - [aux_sym_request_tty_token1] = ACTIONS(1617), - [aux_sym_required_rsa_size_token1] = ACTIONS(1617), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1617), - [aux_sym_security_key_provider_token1] = ACTIONS(1617), - [aux_sym_send_env_token1] = ACTIONS(1617), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1617), - [aux_sym_server_alive_interval_token1] = ACTIONS(1617), - [aux_sym_session_type_token1] = ACTIONS(1617), - [aux_sym_set_env_token1] = ACTIONS(1617), - [aux_sym_stdin_null_token1] = ACTIONS(1617), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1617), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1617), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1617), - [aux_sym_syslog_facility_token1] = ACTIONS(1617), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1617), - [aux_sym_keep_alive_token1] = ACTIONS(1617), - [aux_sym_tunnel_token1] = ACTIONS(1619), - [aux_sym_tunnel_device_token1] = ACTIONS(1617), - [aux_sym_update_host_keys_token1] = ACTIONS(1617), - [aux_sym_use_keychain_token1] = ACTIONS(1617), - [aux_sym_use_roaming_token1] = ACTIONS(1617), - [aux_sym_user_token1] = ACTIONS(1619), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1617), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1617), - [aux_sym_visual_host_key_token1] = ACTIONS(1617), - [aux_sym_xauth_location_token1] = ACTIONS(1617), + [ts_builtin_sym_end] = ACTIONS(1622), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1624), + [anon_sym_DQUOTE] = ACTIONS(1626), + [aux_sym_match_token1] = ACTIONS(1622), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1622), + [aux_sym_address_family_token1] = ACTIONS(1622), + [aux_sym_batch_mode_token1] = ACTIONS(1622), + [aux_sym_bind_address_token1] = ACTIONS(1622), + [aux_sym_bind_interface_token1] = ACTIONS(1622), + [aux_sym_canonical_domains_token1] = ACTIONS(1622), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1622), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1622), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1622), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1622), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1622), + [aux_sym_certificate_file_token1] = ACTIONS(1622), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1622), + [aux_sym_check_host_ip_token1] = ACTIONS(1622), + [aux_sym_ciphers_token1] = ACTIONS(1622), + [aux_sym_cipher_token1] = ACTIONS(1624), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1622), + [aux_sym_compression_token1] = ACTIONS(1622), + [aux_sym_connection_attempts_token1] = ACTIONS(1622), + [aux_sym_connect_timeout_token1] = ACTIONS(1622), + [aux_sym_control_master_token1] = ACTIONS(1622), + [aux_sym_control_path_token1] = ACTIONS(1622), + [aux_sym_control_persist_token1] = ACTIONS(1622), + [aux_sym_dynamic_forward_token1] = ACTIONS(1622), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1622), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1622), + [aux_sym_escape_char_token1] = ACTIONS(1622), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1622), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1622), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1622), + [aux_sym_forward_agent_token1] = ACTIONS(1622), + [aux_sym_forward_x11_token1] = ACTIONS(1624), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1622), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1622), + [aux_sym_gateway_ports_token1] = ACTIONS(1622), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1622), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1622), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1622), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1622), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1622), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1622), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1622), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1622), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1622), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1622), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1622), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1622), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1622), + [aux_sym_host_key_alias_token1] = ACTIONS(1622), + [aux_sym_hostname_token1] = ACTIONS(1622), + [aux_sym_identities_only_token1] = ACTIONS(1622), + [aux_sym_identity_agent_token1] = ACTIONS(1622), + [aux_sym_identity_file_token1] = ACTIONS(1622), + [aux_sym_ignore_unknown_token1] = ACTIONS(1622), + [aux_sym_include_token1] = ACTIONS(1622), + [aux_sym_ip_qos_token1] = ACTIONS(1622), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1622), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1622), + [aux_sym_kex_algorithms_token1] = ACTIONS(1622), + [aux_sym_known_hosts_command_token1] = ACTIONS(1622), + [aux_sym_local_command_token1] = ACTIONS(1622), + [aux_sym_local_forward_token1] = ACTIONS(1622), + [aux_sym_log_level_token1] = ACTIONS(1622), + [aux_sym_log_verbose_token1] = ACTIONS(1622), + [aux_sym_macs_token1] = ACTIONS(1622), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1622), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1622), + [aux_sym_password_authentication_token1] = ACTIONS(1622), + [aux_sym_permit_local_command_token1] = ACTIONS(1622), + [aux_sym_permit_remote_open_token1] = ACTIONS(1622), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1622), + [aux_sym_port_token1] = ACTIONS(1622), + [aux_sym_preferred_authentications_token1] = ACTIONS(1622), + [aux_sym_protocol_token1] = ACTIONS(1622), + [aux_sym_proxy_command_token1] = ACTIONS(1622), + [aux_sym_proxy_jump_token1] = ACTIONS(1622), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1622), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1622), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1622), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1622), + [aux_sym_rekey_limit_token1] = ACTIONS(1622), + [aux_sym_remote_command_token1] = ACTIONS(1622), + [aux_sym_remote_forward_token1] = ACTIONS(1622), + [aux_sym_request_tty_token1] = ACTIONS(1622), + [aux_sym_required_rsa_size_token1] = ACTIONS(1622), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1622), + [aux_sym_security_key_provider_token1] = ACTIONS(1622), + [aux_sym_send_env_token1] = ACTIONS(1622), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1622), + [aux_sym_server_alive_interval_token1] = ACTIONS(1622), + [aux_sym_session_type_token1] = ACTIONS(1622), + [aux_sym_set_env_token1] = ACTIONS(1622), + [aux_sym_stdin_null_token1] = ACTIONS(1622), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1622), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1622), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1622), + [aux_sym_syslog_facility_token1] = ACTIONS(1622), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1622), + [aux_sym_keep_alive_token1] = ACTIONS(1622), + [aux_sym_tunnel_token1] = ACTIONS(1624), + [aux_sym_tunnel_device_token1] = ACTIONS(1622), + [aux_sym_update_host_keys_token1] = ACTIONS(1622), + [aux_sym_use_keychain_token1] = ACTIONS(1622), + [aux_sym_use_roaming_token1] = ACTIONS(1622), + [aux_sym_user_token1] = ACTIONS(1624), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1622), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1622), + [aux_sym_visual_host_key_token1] = ACTIONS(1622), + [aux_sym_xauth_location_token1] = ACTIONS(1622), }, [181] = { - [ts_builtin_sym_end] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1625), - [anon_sym_DQUOTE] = ACTIONS(1627), - [aux_sym_match_token1] = ACTIONS(1623), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1623), - [aux_sym_address_family_token1] = ACTIONS(1623), - [aux_sym_batch_mode_token1] = ACTIONS(1623), - [aux_sym_bind_address_token1] = ACTIONS(1623), - [aux_sym_bind_interface_token1] = ACTIONS(1623), - [aux_sym_canonical_domains_token1] = ACTIONS(1623), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1623), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1623), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1623), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1623), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1623), - [aux_sym_certificate_file_token1] = ACTIONS(1623), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1623), - [aux_sym_check_host_ip_token1] = ACTIONS(1623), - [aux_sym_ciphers_token1] = ACTIONS(1623), - [aux_sym_cipher_token1] = ACTIONS(1625), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1623), - [aux_sym_compression_token1] = ACTIONS(1623), - [aux_sym_connection_attempts_token1] = ACTIONS(1623), - [aux_sym_connect_timeout_token1] = ACTIONS(1623), - [aux_sym_control_master_token1] = ACTIONS(1623), - [aux_sym_control_path_token1] = ACTIONS(1623), - [aux_sym_control_persist_token1] = ACTIONS(1623), - [aux_sym_dynamic_forward_token1] = ACTIONS(1623), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1623), - [aux_sym_escape_char_token1] = ACTIONS(1623), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1623), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1623), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1623), - [aux_sym_forward_agent_token1] = ACTIONS(1623), - [aux_sym_forward_x11_token1] = ACTIONS(1625), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1623), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1623), - [aux_sym_gateway_ports_token1] = ACTIONS(1623), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1623), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1623), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1623), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1623), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1623), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1623), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1623), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1623), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1623), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1623), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1623), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1623), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1623), - [aux_sym_host_key_alias_token1] = ACTIONS(1623), - [aux_sym_hostname_token1] = ACTIONS(1623), - [aux_sym_identities_only_token1] = ACTIONS(1623), - [aux_sym_identity_agent_token1] = ACTIONS(1623), - [aux_sym_identity_file_token1] = ACTIONS(1623), - [aux_sym_ignore_unknown_token1] = ACTIONS(1623), - [aux_sym_include_token1] = ACTIONS(1623), - [aux_sym_ip_qos_token1] = ACTIONS(1623), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1623), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1623), - [aux_sym_kex_algorithms_token1] = ACTIONS(1623), - [aux_sym_known_hosts_command_token1] = ACTIONS(1623), - [aux_sym_local_command_token1] = ACTIONS(1623), - [aux_sym_local_forward_token1] = ACTIONS(1623), - [aux_sym_log_level_token1] = ACTIONS(1623), - [aux_sym_log_verbose_token1] = ACTIONS(1623), - [aux_sym_macs_token1] = ACTIONS(1623), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1623), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1623), - [aux_sym_password_authentication_token1] = ACTIONS(1623), - [aux_sym_permit_local_command_token1] = ACTIONS(1623), - [aux_sym_permit_remote_open_token1] = ACTIONS(1623), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1623), - [aux_sym_port_token1] = ACTIONS(1623), - [aux_sym_preferred_authentications_token1] = ACTIONS(1623), - [aux_sym_protocol_token1] = ACTIONS(1623), - [aux_sym_proxy_command_token1] = ACTIONS(1623), - [aux_sym_proxy_jump_token1] = ACTIONS(1623), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1623), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1623), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1623), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1623), - [aux_sym_rekey_limit_token1] = ACTIONS(1623), - [aux_sym_remote_command_token1] = ACTIONS(1623), - [aux_sym_remote_forward_token1] = ACTIONS(1623), - [aux_sym_request_tty_token1] = ACTIONS(1623), - [aux_sym_required_rsa_size_token1] = ACTIONS(1623), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1623), - [aux_sym_security_key_provider_token1] = ACTIONS(1623), - [aux_sym_send_env_token1] = ACTIONS(1623), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1623), - [aux_sym_server_alive_interval_token1] = ACTIONS(1623), - [aux_sym_session_type_token1] = ACTIONS(1623), - [aux_sym_set_env_token1] = ACTIONS(1623), - [aux_sym_stdin_null_token1] = ACTIONS(1623), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1623), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1623), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1623), - [aux_sym_syslog_facility_token1] = ACTIONS(1623), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1623), - [aux_sym_keep_alive_token1] = ACTIONS(1623), - [aux_sym_tunnel_token1] = ACTIONS(1625), - [aux_sym_tunnel_device_token1] = ACTIONS(1623), - [aux_sym_update_host_keys_token1] = ACTIONS(1623), - [aux_sym_use_keychain_token1] = ACTIONS(1623), - [aux_sym_use_roaming_token1] = ACTIONS(1623), - [aux_sym_user_token1] = ACTIONS(1625), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1623), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1623), - [aux_sym_visual_host_key_token1] = ACTIONS(1623), - [aux_sym_xauth_location_token1] = ACTIONS(1623), + [ts_builtin_sym_end] = ACTIONS(1628), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1630), + [anon_sym_DQUOTE] = ACTIONS(1632), + [aux_sym_match_token1] = ACTIONS(1628), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1628), + [aux_sym_address_family_token1] = ACTIONS(1628), + [aux_sym_batch_mode_token1] = ACTIONS(1628), + [aux_sym_bind_address_token1] = ACTIONS(1628), + [aux_sym_bind_interface_token1] = ACTIONS(1628), + [aux_sym_canonical_domains_token1] = ACTIONS(1628), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1628), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1628), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1628), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1628), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1628), + [aux_sym_certificate_file_token1] = ACTIONS(1628), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1628), + [aux_sym_check_host_ip_token1] = ACTIONS(1628), + [aux_sym_ciphers_token1] = ACTIONS(1628), + [aux_sym_cipher_token1] = ACTIONS(1630), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1628), + [aux_sym_compression_token1] = ACTIONS(1628), + [aux_sym_connection_attempts_token1] = ACTIONS(1628), + [aux_sym_connect_timeout_token1] = ACTIONS(1628), + [aux_sym_control_master_token1] = ACTIONS(1628), + [aux_sym_control_path_token1] = ACTIONS(1628), + [aux_sym_control_persist_token1] = ACTIONS(1628), + [aux_sym_dynamic_forward_token1] = ACTIONS(1628), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1628), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1628), + [aux_sym_escape_char_token1] = ACTIONS(1628), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1628), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1628), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1628), + [aux_sym_forward_agent_token1] = ACTIONS(1628), + [aux_sym_forward_x11_token1] = ACTIONS(1630), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1628), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1628), + [aux_sym_gateway_ports_token1] = ACTIONS(1628), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1628), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1628), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1628), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1628), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1628), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1628), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1628), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1628), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1628), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1628), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1628), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1628), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1628), + [aux_sym_host_key_alias_token1] = ACTIONS(1628), + [aux_sym_hostname_token1] = ACTIONS(1628), + [aux_sym_identities_only_token1] = ACTIONS(1628), + [aux_sym_identity_agent_token1] = ACTIONS(1628), + [aux_sym_identity_file_token1] = ACTIONS(1628), + [aux_sym_ignore_unknown_token1] = ACTIONS(1628), + [aux_sym_include_token1] = ACTIONS(1628), + [aux_sym_ip_qos_token1] = ACTIONS(1628), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1628), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1628), + [aux_sym_kex_algorithms_token1] = ACTIONS(1628), + [aux_sym_known_hosts_command_token1] = ACTIONS(1628), + [aux_sym_local_command_token1] = ACTIONS(1628), + [aux_sym_local_forward_token1] = ACTIONS(1628), + [aux_sym_log_level_token1] = ACTIONS(1628), + [aux_sym_log_verbose_token1] = ACTIONS(1628), + [aux_sym_macs_token1] = ACTIONS(1628), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1628), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1628), + [aux_sym_password_authentication_token1] = ACTIONS(1628), + [aux_sym_permit_local_command_token1] = ACTIONS(1628), + [aux_sym_permit_remote_open_token1] = ACTIONS(1628), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1628), + [aux_sym_port_token1] = ACTIONS(1628), + [aux_sym_preferred_authentications_token1] = ACTIONS(1628), + [aux_sym_protocol_token1] = ACTIONS(1628), + [aux_sym_proxy_command_token1] = ACTIONS(1628), + [aux_sym_proxy_jump_token1] = ACTIONS(1628), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1628), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1628), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1628), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1628), + [aux_sym_rekey_limit_token1] = ACTIONS(1628), + [aux_sym_remote_command_token1] = ACTIONS(1628), + [aux_sym_remote_forward_token1] = ACTIONS(1628), + [aux_sym_request_tty_token1] = ACTIONS(1628), + [aux_sym_required_rsa_size_token1] = ACTIONS(1628), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1628), + [aux_sym_security_key_provider_token1] = ACTIONS(1628), + [aux_sym_send_env_token1] = ACTIONS(1628), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1628), + [aux_sym_server_alive_interval_token1] = ACTIONS(1628), + [aux_sym_session_type_token1] = ACTIONS(1628), + [aux_sym_set_env_token1] = ACTIONS(1628), + [aux_sym_stdin_null_token1] = ACTIONS(1628), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1628), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1628), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1628), + [aux_sym_syslog_facility_token1] = ACTIONS(1628), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1628), + [aux_sym_keep_alive_token1] = ACTIONS(1628), + [aux_sym_tunnel_token1] = ACTIONS(1630), + [aux_sym_tunnel_device_token1] = ACTIONS(1628), + [aux_sym_update_host_keys_token1] = ACTIONS(1628), + [aux_sym_use_keychain_token1] = ACTIONS(1628), + [aux_sym_use_roaming_token1] = ACTIONS(1628), + [aux_sym_user_token1] = ACTIONS(1630), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1628), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1628), + [aux_sym_visual_host_key_token1] = ACTIONS(1628), + [aux_sym_xauth_location_token1] = ACTIONS(1628), }, [182] = { - [ts_builtin_sym_end] = ACTIONS(1629), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1633), - [aux_sym_match_token1] = ACTIONS(1629), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1629), - [aux_sym_address_family_token1] = ACTIONS(1629), - [aux_sym_batch_mode_token1] = ACTIONS(1629), - [aux_sym_bind_address_token1] = ACTIONS(1629), - [aux_sym_bind_interface_token1] = ACTIONS(1629), - [aux_sym_canonical_domains_token1] = ACTIONS(1629), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1629), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1629), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1629), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1629), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1629), - [aux_sym_certificate_file_token1] = ACTIONS(1629), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1629), - [aux_sym_check_host_ip_token1] = ACTIONS(1629), - [aux_sym_ciphers_token1] = ACTIONS(1629), - [aux_sym_cipher_token1] = ACTIONS(1631), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1629), - [aux_sym_compression_token1] = ACTIONS(1629), - [aux_sym_connection_attempts_token1] = ACTIONS(1629), - [aux_sym_connect_timeout_token1] = ACTIONS(1629), - [aux_sym_control_master_token1] = ACTIONS(1629), - [aux_sym_control_path_token1] = ACTIONS(1629), - [aux_sym_control_persist_token1] = ACTIONS(1629), - [aux_sym_dynamic_forward_token1] = ACTIONS(1629), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1629), - [aux_sym_escape_char_token1] = ACTIONS(1629), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1629), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1629), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1629), - [aux_sym_forward_agent_token1] = ACTIONS(1629), - [aux_sym_forward_x11_token1] = ACTIONS(1631), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1629), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1629), - [aux_sym_gateway_ports_token1] = ACTIONS(1629), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1629), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1629), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1629), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1629), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1629), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1629), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1629), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1629), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1629), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1629), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1629), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1629), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1629), - [aux_sym_host_key_alias_token1] = ACTIONS(1629), - [aux_sym_hostname_token1] = ACTIONS(1629), - [aux_sym_identities_only_token1] = ACTIONS(1629), - [aux_sym_identity_agent_token1] = ACTIONS(1629), - [aux_sym_identity_file_token1] = ACTIONS(1629), - [aux_sym_ignore_unknown_token1] = ACTIONS(1629), - [aux_sym_include_token1] = ACTIONS(1629), - [aux_sym_ip_qos_token1] = ACTIONS(1629), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1629), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1629), - [aux_sym_kex_algorithms_token1] = ACTIONS(1629), - [aux_sym_known_hosts_command_token1] = ACTIONS(1629), - [aux_sym_local_command_token1] = ACTIONS(1629), - [aux_sym_local_forward_token1] = ACTIONS(1629), - [aux_sym_log_level_token1] = ACTIONS(1629), - [aux_sym_log_verbose_token1] = ACTIONS(1629), - [aux_sym_macs_token1] = ACTIONS(1629), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1629), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1629), - [aux_sym_password_authentication_token1] = ACTIONS(1629), - [aux_sym_permit_local_command_token1] = ACTIONS(1629), - [aux_sym_permit_remote_open_token1] = ACTIONS(1629), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1629), - [aux_sym_port_token1] = ACTIONS(1629), - [aux_sym_preferred_authentications_token1] = ACTIONS(1629), - [aux_sym_protocol_token1] = ACTIONS(1629), - [aux_sym_proxy_command_token1] = ACTIONS(1629), - [aux_sym_proxy_jump_token1] = ACTIONS(1629), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1629), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1629), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1629), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1629), - [aux_sym_rekey_limit_token1] = ACTIONS(1629), - [aux_sym_remote_command_token1] = ACTIONS(1629), - [aux_sym_remote_forward_token1] = ACTIONS(1629), - [aux_sym_request_tty_token1] = ACTIONS(1629), - [aux_sym_required_rsa_size_token1] = ACTIONS(1629), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1629), - [aux_sym_security_key_provider_token1] = ACTIONS(1629), - [aux_sym_send_env_token1] = ACTIONS(1629), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1629), - [aux_sym_server_alive_interval_token1] = ACTIONS(1629), - [aux_sym_session_type_token1] = ACTIONS(1629), - [aux_sym_set_env_token1] = ACTIONS(1629), - [aux_sym_stdin_null_token1] = ACTIONS(1629), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1629), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1629), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1629), - [aux_sym_syslog_facility_token1] = ACTIONS(1629), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1629), - [aux_sym_keep_alive_token1] = ACTIONS(1629), - [aux_sym_tunnel_token1] = ACTIONS(1631), - [aux_sym_tunnel_device_token1] = ACTIONS(1629), - [aux_sym_update_host_keys_token1] = ACTIONS(1629), - [aux_sym_use_keychain_token1] = ACTIONS(1629), - [aux_sym_use_roaming_token1] = ACTIONS(1629), - [aux_sym_user_token1] = ACTIONS(1631), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1629), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1629), - [aux_sym_visual_host_key_token1] = ACTIONS(1629), - [aux_sym_xauth_location_token1] = ACTIONS(1629), + [ts_builtin_sym_end] = ACTIONS(1634), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1638), + [aux_sym_match_token1] = ACTIONS(1634), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1634), + [aux_sym_address_family_token1] = ACTIONS(1634), + [aux_sym_batch_mode_token1] = ACTIONS(1634), + [aux_sym_bind_address_token1] = ACTIONS(1634), + [aux_sym_bind_interface_token1] = ACTIONS(1634), + [aux_sym_canonical_domains_token1] = ACTIONS(1634), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1634), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1634), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1634), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1634), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1634), + [aux_sym_certificate_file_token1] = ACTIONS(1634), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1634), + [aux_sym_check_host_ip_token1] = ACTIONS(1634), + [aux_sym_ciphers_token1] = ACTIONS(1634), + [aux_sym_cipher_token1] = ACTIONS(1636), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1634), + [aux_sym_compression_token1] = ACTIONS(1634), + [aux_sym_connection_attempts_token1] = ACTIONS(1634), + [aux_sym_connect_timeout_token1] = ACTIONS(1634), + [aux_sym_control_master_token1] = ACTIONS(1634), + [aux_sym_control_path_token1] = ACTIONS(1634), + [aux_sym_control_persist_token1] = ACTIONS(1634), + [aux_sym_dynamic_forward_token1] = ACTIONS(1634), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1634), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1634), + [aux_sym_escape_char_token1] = ACTIONS(1634), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1634), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1634), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1634), + [aux_sym_forward_agent_token1] = ACTIONS(1634), + [aux_sym_forward_x11_token1] = ACTIONS(1636), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1634), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1634), + [aux_sym_gateway_ports_token1] = ACTIONS(1634), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1634), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1634), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1634), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1634), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1634), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1634), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1634), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1634), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1634), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1634), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1634), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1634), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1634), + [aux_sym_host_key_alias_token1] = ACTIONS(1634), + [aux_sym_hostname_token1] = ACTIONS(1634), + [aux_sym_identities_only_token1] = ACTIONS(1634), + [aux_sym_identity_agent_token1] = ACTIONS(1634), + [aux_sym_identity_file_token1] = ACTIONS(1634), + [aux_sym_ignore_unknown_token1] = ACTIONS(1634), + [aux_sym_include_token1] = ACTIONS(1634), + [aux_sym_ip_qos_token1] = ACTIONS(1634), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1634), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1634), + [aux_sym_kex_algorithms_token1] = ACTIONS(1634), + [aux_sym_known_hosts_command_token1] = ACTIONS(1634), + [aux_sym_local_command_token1] = ACTIONS(1634), + [aux_sym_local_forward_token1] = ACTIONS(1634), + [aux_sym_log_level_token1] = ACTIONS(1634), + [aux_sym_log_verbose_token1] = ACTIONS(1634), + [aux_sym_macs_token1] = ACTIONS(1634), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1634), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1634), + [aux_sym_password_authentication_token1] = ACTIONS(1634), + [aux_sym_permit_local_command_token1] = ACTIONS(1634), + [aux_sym_permit_remote_open_token1] = ACTIONS(1634), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1634), + [aux_sym_port_token1] = ACTIONS(1634), + [aux_sym_preferred_authentications_token1] = ACTIONS(1634), + [aux_sym_protocol_token1] = ACTIONS(1634), + [aux_sym_proxy_command_token1] = ACTIONS(1634), + [aux_sym_proxy_jump_token1] = ACTIONS(1634), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1634), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1634), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1634), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1634), + [aux_sym_rekey_limit_token1] = ACTIONS(1634), + [aux_sym_remote_command_token1] = ACTIONS(1634), + [aux_sym_remote_forward_token1] = ACTIONS(1634), + [aux_sym_request_tty_token1] = ACTIONS(1634), + [aux_sym_required_rsa_size_token1] = ACTIONS(1634), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1634), + [aux_sym_security_key_provider_token1] = ACTIONS(1634), + [aux_sym_send_env_token1] = ACTIONS(1634), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1634), + [aux_sym_server_alive_interval_token1] = ACTIONS(1634), + [aux_sym_session_type_token1] = ACTIONS(1634), + [aux_sym_set_env_token1] = ACTIONS(1634), + [aux_sym_stdin_null_token1] = ACTIONS(1634), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1634), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1634), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1634), + [aux_sym_syslog_facility_token1] = ACTIONS(1634), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1634), + [aux_sym_keep_alive_token1] = ACTIONS(1634), + [aux_sym_tunnel_token1] = ACTIONS(1636), + [aux_sym_tunnel_device_token1] = ACTIONS(1634), + [aux_sym_update_host_keys_token1] = ACTIONS(1634), + [aux_sym_use_keychain_token1] = ACTIONS(1634), + [aux_sym_use_roaming_token1] = ACTIONS(1634), + [aux_sym_user_token1] = ACTIONS(1636), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1634), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1634), + [aux_sym_visual_host_key_token1] = ACTIONS(1634), + [aux_sym_xauth_location_token1] = ACTIONS(1634), }, [183] = { - [ts_builtin_sym_end] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1637), - [anon_sym_DQUOTE] = ACTIONS(1639), - [aux_sym_match_token1] = ACTIONS(1635), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1635), - [aux_sym_address_family_token1] = ACTIONS(1635), - [aux_sym_batch_mode_token1] = ACTIONS(1635), - [aux_sym_bind_address_token1] = ACTIONS(1635), - [aux_sym_bind_interface_token1] = ACTIONS(1635), - [aux_sym_canonical_domains_token1] = ACTIONS(1635), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1635), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1635), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1635), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1635), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1635), - [aux_sym_certificate_file_token1] = ACTIONS(1635), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1635), - [aux_sym_check_host_ip_token1] = ACTIONS(1635), - [aux_sym_ciphers_token1] = ACTIONS(1635), - [aux_sym_cipher_token1] = ACTIONS(1637), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1635), - [aux_sym_compression_token1] = ACTIONS(1635), - [aux_sym_connection_attempts_token1] = ACTIONS(1635), - [aux_sym_connect_timeout_token1] = ACTIONS(1635), - [aux_sym_control_master_token1] = ACTIONS(1635), - [aux_sym_control_path_token1] = ACTIONS(1635), - [aux_sym_control_persist_token1] = ACTIONS(1635), - [aux_sym_dynamic_forward_token1] = ACTIONS(1635), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1635), - [aux_sym_escape_char_token1] = ACTIONS(1635), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1635), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1635), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1635), - [aux_sym_forward_agent_token1] = ACTIONS(1635), - [aux_sym_forward_x11_token1] = ACTIONS(1637), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1635), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1635), - [aux_sym_gateway_ports_token1] = ACTIONS(1635), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1635), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1635), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1635), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1635), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1635), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1635), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1635), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1635), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1635), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1635), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1635), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1635), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1635), - [aux_sym_host_key_alias_token1] = ACTIONS(1635), - [aux_sym_hostname_token1] = ACTIONS(1635), - [aux_sym_identities_only_token1] = ACTIONS(1635), - [aux_sym_identity_agent_token1] = ACTIONS(1635), - [aux_sym_identity_file_token1] = ACTIONS(1635), - [aux_sym_ignore_unknown_token1] = ACTIONS(1635), - [aux_sym_include_token1] = ACTIONS(1635), - [aux_sym_ip_qos_token1] = ACTIONS(1635), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1635), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1635), - [aux_sym_kex_algorithms_token1] = ACTIONS(1635), - [aux_sym_known_hosts_command_token1] = ACTIONS(1635), - [aux_sym_local_command_token1] = ACTIONS(1635), - [aux_sym_local_forward_token1] = ACTIONS(1635), - [aux_sym_log_level_token1] = ACTIONS(1635), - [aux_sym_log_verbose_token1] = ACTIONS(1635), - [aux_sym_macs_token1] = ACTIONS(1635), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1635), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1635), - [aux_sym_password_authentication_token1] = ACTIONS(1635), - [aux_sym_permit_local_command_token1] = ACTIONS(1635), - [aux_sym_permit_remote_open_token1] = ACTIONS(1635), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1635), - [aux_sym_port_token1] = ACTIONS(1635), - [aux_sym_preferred_authentications_token1] = ACTIONS(1635), - [aux_sym_protocol_token1] = ACTIONS(1635), - [aux_sym_proxy_command_token1] = ACTIONS(1635), - [aux_sym_proxy_jump_token1] = ACTIONS(1635), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1635), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1635), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1635), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1635), - [aux_sym_rekey_limit_token1] = ACTIONS(1635), - [aux_sym_remote_command_token1] = ACTIONS(1635), - [aux_sym_remote_forward_token1] = ACTIONS(1635), - [aux_sym_request_tty_token1] = ACTIONS(1635), - [aux_sym_required_rsa_size_token1] = ACTIONS(1635), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1635), - [aux_sym_security_key_provider_token1] = ACTIONS(1635), - [aux_sym_send_env_token1] = ACTIONS(1635), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1635), - [aux_sym_server_alive_interval_token1] = ACTIONS(1635), - [aux_sym_session_type_token1] = ACTIONS(1635), - [aux_sym_set_env_token1] = ACTIONS(1635), - [aux_sym_stdin_null_token1] = ACTIONS(1635), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1635), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1635), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1635), - [aux_sym_syslog_facility_token1] = ACTIONS(1635), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1635), - [aux_sym_keep_alive_token1] = ACTIONS(1635), - [aux_sym_tunnel_token1] = ACTIONS(1637), - [aux_sym_tunnel_device_token1] = ACTIONS(1635), - [aux_sym_update_host_keys_token1] = ACTIONS(1635), - [aux_sym_use_keychain_token1] = ACTIONS(1635), - [aux_sym_use_roaming_token1] = ACTIONS(1635), - [aux_sym_user_token1] = ACTIONS(1637), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1635), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1635), - [aux_sym_visual_host_key_token1] = ACTIONS(1635), - [aux_sym_xauth_location_token1] = ACTIONS(1635), + [ts_builtin_sym_end] = ACTIONS(1640), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1642), + [anon_sym_DQUOTE] = ACTIONS(1644), + [aux_sym_match_token1] = ACTIONS(1640), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1640), + [aux_sym_address_family_token1] = ACTIONS(1640), + [aux_sym_batch_mode_token1] = ACTIONS(1640), + [aux_sym_bind_address_token1] = ACTIONS(1640), + [aux_sym_bind_interface_token1] = ACTIONS(1640), + [aux_sym_canonical_domains_token1] = ACTIONS(1640), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1640), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1640), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1640), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1640), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1640), + [aux_sym_certificate_file_token1] = ACTIONS(1640), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1640), + [aux_sym_check_host_ip_token1] = ACTIONS(1640), + [aux_sym_ciphers_token1] = ACTIONS(1640), + [aux_sym_cipher_token1] = ACTIONS(1642), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1640), + [aux_sym_compression_token1] = ACTIONS(1640), + [aux_sym_connection_attempts_token1] = ACTIONS(1640), + [aux_sym_connect_timeout_token1] = ACTIONS(1640), + [aux_sym_control_master_token1] = ACTIONS(1640), + [aux_sym_control_path_token1] = ACTIONS(1640), + [aux_sym_control_persist_token1] = ACTIONS(1640), + [aux_sym_dynamic_forward_token1] = ACTIONS(1640), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1640), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1640), + [aux_sym_escape_char_token1] = ACTIONS(1640), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1640), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1640), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1640), + [aux_sym_forward_agent_token1] = ACTIONS(1640), + [aux_sym_forward_x11_token1] = ACTIONS(1642), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1640), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1640), + [aux_sym_gateway_ports_token1] = ACTIONS(1640), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1640), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1640), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1640), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1640), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1640), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1640), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1640), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1640), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1640), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1640), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1640), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1640), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1640), + [aux_sym_host_key_alias_token1] = ACTIONS(1640), + [aux_sym_hostname_token1] = ACTIONS(1640), + [aux_sym_identities_only_token1] = ACTIONS(1640), + [aux_sym_identity_agent_token1] = ACTIONS(1640), + [aux_sym_identity_file_token1] = ACTIONS(1640), + [aux_sym_ignore_unknown_token1] = ACTIONS(1640), + [aux_sym_include_token1] = ACTIONS(1640), + [aux_sym_ip_qos_token1] = ACTIONS(1640), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1640), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1640), + [aux_sym_kex_algorithms_token1] = ACTIONS(1640), + [aux_sym_known_hosts_command_token1] = ACTIONS(1640), + [aux_sym_local_command_token1] = ACTIONS(1640), + [aux_sym_local_forward_token1] = ACTIONS(1640), + [aux_sym_log_level_token1] = ACTIONS(1640), + [aux_sym_log_verbose_token1] = ACTIONS(1640), + [aux_sym_macs_token1] = ACTIONS(1640), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1640), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1640), + [aux_sym_password_authentication_token1] = ACTIONS(1640), + [aux_sym_permit_local_command_token1] = ACTIONS(1640), + [aux_sym_permit_remote_open_token1] = ACTIONS(1640), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1640), + [aux_sym_port_token1] = ACTIONS(1640), + [aux_sym_preferred_authentications_token1] = ACTIONS(1640), + [aux_sym_protocol_token1] = ACTIONS(1640), + [aux_sym_proxy_command_token1] = ACTIONS(1640), + [aux_sym_proxy_jump_token1] = ACTIONS(1640), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1640), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1640), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1640), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1640), + [aux_sym_rekey_limit_token1] = ACTIONS(1640), + [aux_sym_remote_command_token1] = ACTIONS(1640), + [aux_sym_remote_forward_token1] = ACTIONS(1640), + [aux_sym_request_tty_token1] = ACTIONS(1640), + [aux_sym_required_rsa_size_token1] = ACTIONS(1640), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1640), + [aux_sym_security_key_provider_token1] = ACTIONS(1640), + [aux_sym_send_env_token1] = ACTIONS(1640), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1640), + [aux_sym_server_alive_interval_token1] = ACTIONS(1640), + [aux_sym_session_type_token1] = ACTIONS(1640), + [aux_sym_set_env_token1] = ACTIONS(1640), + [aux_sym_stdin_null_token1] = ACTIONS(1640), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1640), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1640), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1640), + [aux_sym_syslog_facility_token1] = ACTIONS(1640), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1640), + [aux_sym_keep_alive_token1] = ACTIONS(1640), + [aux_sym_tunnel_token1] = ACTIONS(1642), + [aux_sym_tunnel_device_token1] = ACTIONS(1640), + [aux_sym_update_host_keys_token1] = ACTIONS(1640), + [aux_sym_use_keychain_token1] = ACTIONS(1640), + [aux_sym_use_roaming_token1] = ACTIONS(1640), + [aux_sym_user_token1] = ACTIONS(1642), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1640), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1640), + [aux_sym_visual_host_key_token1] = ACTIONS(1640), + [aux_sym_xauth_location_token1] = ACTIONS(1640), }, [184] = { - [ts_builtin_sym_end] = ACTIONS(1641), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1645), - [aux_sym_match_token1] = ACTIONS(1641), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1641), - [aux_sym_address_family_token1] = ACTIONS(1641), - [aux_sym_batch_mode_token1] = ACTIONS(1641), - [aux_sym_bind_address_token1] = ACTIONS(1641), - [aux_sym_bind_interface_token1] = ACTIONS(1641), - [aux_sym_canonical_domains_token1] = ACTIONS(1641), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1641), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1641), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1641), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1641), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1641), - [aux_sym_certificate_file_token1] = ACTIONS(1641), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1641), - [aux_sym_check_host_ip_token1] = ACTIONS(1641), - [aux_sym_ciphers_token1] = ACTIONS(1641), - [aux_sym_cipher_token1] = ACTIONS(1643), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1641), - [aux_sym_compression_token1] = ACTIONS(1641), - [aux_sym_connection_attempts_token1] = ACTIONS(1641), - [aux_sym_connect_timeout_token1] = ACTIONS(1641), - [aux_sym_control_master_token1] = ACTIONS(1641), - [aux_sym_control_path_token1] = ACTIONS(1641), - [aux_sym_control_persist_token1] = ACTIONS(1641), - [aux_sym_dynamic_forward_token1] = ACTIONS(1641), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1641), - [aux_sym_escape_char_token1] = ACTIONS(1641), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1641), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1641), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1641), - [aux_sym_forward_agent_token1] = ACTIONS(1641), - [aux_sym_forward_x11_token1] = ACTIONS(1643), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1641), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1641), - [aux_sym_gateway_ports_token1] = ACTIONS(1641), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1641), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1641), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1641), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1641), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1641), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1641), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1641), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1641), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1641), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1641), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1641), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1641), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1641), - [aux_sym_host_key_alias_token1] = ACTIONS(1641), - [aux_sym_hostname_token1] = ACTIONS(1641), - [aux_sym_identities_only_token1] = ACTIONS(1641), - [aux_sym_identity_agent_token1] = ACTIONS(1641), - [aux_sym_identity_file_token1] = ACTIONS(1641), - [aux_sym_ignore_unknown_token1] = ACTIONS(1641), - [aux_sym_include_token1] = ACTIONS(1641), - [aux_sym_ip_qos_token1] = ACTIONS(1641), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1641), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1641), - [aux_sym_kex_algorithms_token1] = ACTIONS(1641), - [aux_sym_known_hosts_command_token1] = ACTIONS(1641), - [aux_sym_local_command_token1] = ACTIONS(1641), - [aux_sym_local_forward_token1] = ACTIONS(1641), - [aux_sym_log_level_token1] = ACTIONS(1641), - [aux_sym_log_verbose_token1] = ACTIONS(1641), - [aux_sym_macs_token1] = ACTIONS(1641), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1641), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1641), - [aux_sym_password_authentication_token1] = ACTIONS(1641), - [aux_sym_permit_local_command_token1] = ACTIONS(1641), - [aux_sym_permit_remote_open_token1] = ACTIONS(1641), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1641), - [aux_sym_port_token1] = ACTIONS(1641), - [aux_sym_preferred_authentications_token1] = ACTIONS(1641), - [aux_sym_protocol_token1] = ACTIONS(1641), - [aux_sym_proxy_command_token1] = ACTIONS(1641), - [aux_sym_proxy_jump_token1] = ACTIONS(1641), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1641), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1641), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1641), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1641), - [aux_sym_rekey_limit_token1] = ACTIONS(1641), - [aux_sym_remote_command_token1] = ACTIONS(1641), - [aux_sym_remote_forward_token1] = ACTIONS(1641), - [aux_sym_request_tty_token1] = ACTIONS(1641), - [aux_sym_required_rsa_size_token1] = ACTIONS(1641), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1641), - [aux_sym_security_key_provider_token1] = ACTIONS(1641), - [aux_sym_send_env_token1] = ACTIONS(1641), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1641), - [aux_sym_server_alive_interval_token1] = ACTIONS(1641), - [aux_sym_session_type_token1] = ACTIONS(1641), - [aux_sym_set_env_token1] = ACTIONS(1641), - [aux_sym_stdin_null_token1] = ACTIONS(1641), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1641), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1641), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1641), - [aux_sym_syslog_facility_token1] = ACTIONS(1641), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1641), - [aux_sym_keep_alive_token1] = ACTIONS(1641), - [aux_sym_tunnel_token1] = ACTIONS(1643), - [aux_sym_tunnel_device_token1] = ACTIONS(1641), - [aux_sym_update_host_keys_token1] = ACTIONS(1641), - [aux_sym_use_keychain_token1] = ACTIONS(1641), - [aux_sym_use_roaming_token1] = ACTIONS(1641), - [aux_sym_user_token1] = ACTIONS(1643), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1641), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1641), - [aux_sym_visual_host_key_token1] = ACTIONS(1641), - [aux_sym_xauth_location_token1] = ACTIONS(1641), + [ts_builtin_sym_end] = ACTIONS(1646), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1648), + [anon_sym_DQUOTE] = ACTIONS(1650), + [aux_sym_match_token1] = ACTIONS(1646), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1646), + [aux_sym_address_family_token1] = ACTIONS(1646), + [aux_sym_batch_mode_token1] = ACTIONS(1646), + [aux_sym_bind_address_token1] = ACTIONS(1646), + [aux_sym_bind_interface_token1] = ACTIONS(1646), + [aux_sym_canonical_domains_token1] = ACTIONS(1646), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1646), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1646), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1646), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1646), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1646), + [aux_sym_certificate_file_token1] = ACTIONS(1646), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1646), + [aux_sym_check_host_ip_token1] = ACTIONS(1646), + [aux_sym_ciphers_token1] = ACTIONS(1646), + [aux_sym_cipher_token1] = ACTIONS(1648), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1646), + [aux_sym_compression_token1] = ACTIONS(1646), + [aux_sym_connection_attempts_token1] = ACTIONS(1646), + [aux_sym_connect_timeout_token1] = ACTIONS(1646), + [aux_sym_control_master_token1] = ACTIONS(1646), + [aux_sym_control_path_token1] = ACTIONS(1646), + [aux_sym_control_persist_token1] = ACTIONS(1646), + [aux_sym_dynamic_forward_token1] = ACTIONS(1646), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1646), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1646), + [aux_sym_escape_char_token1] = ACTIONS(1646), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1646), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1646), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1646), + [aux_sym_forward_agent_token1] = ACTIONS(1646), + [aux_sym_forward_x11_token1] = ACTIONS(1648), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1646), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1646), + [aux_sym_gateway_ports_token1] = ACTIONS(1646), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1646), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1646), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1646), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1646), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1646), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1646), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1646), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1646), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1646), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1646), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1646), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1646), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1646), + [aux_sym_host_key_alias_token1] = ACTIONS(1646), + [aux_sym_hostname_token1] = ACTIONS(1646), + [aux_sym_identities_only_token1] = ACTIONS(1646), + [aux_sym_identity_agent_token1] = ACTIONS(1646), + [aux_sym_identity_file_token1] = ACTIONS(1646), + [aux_sym_ignore_unknown_token1] = ACTIONS(1646), + [aux_sym_include_token1] = ACTIONS(1646), + [aux_sym_ip_qos_token1] = ACTIONS(1646), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1646), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1646), + [aux_sym_kex_algorithms_token1] = ACTIONS(1646), + [aux_sym_known_hosts_command_token1] = ACTIONS(1646), + [aux_sym_local_command_token1] = ACTIONS(1646), + [aux_sym_local_forward_token1] = ACTIONS(1646), + [aux_sym_log_level_token1] = ACTIONS(1646), + [aux_sym_log_verbose_token1] = ACTIONS(1646), + [aux_sym_macs_token1] = ACTIONS(1646), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1646), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1646), + [aux_sym_password_authentication_token1] = ACTIONS(1646), + [aux_sym_permit_local_command_token1] = ACTIONS(1646), + [aux_sym_permit_remote_open_token1] = ACTIONS(1646), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1646), + [aux_sym_port_token1] = ACTIONS(1646), + [aux_sym_preferred_authentications_token1] = ACTIONS(1646), + [aux_sym_protocol_token1] = ACTIONS(1646), + [aux_sym_proxy_command_token1] = ACTIONS(1646), + [aux_sym_proxy_jump_token1] = ACTIONS(1646), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1646), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1646), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1646), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1646), + [aux_sym_rekey_limit_token1] = ACTIONS(1646), + [aux_sym_remote_command_token1] = ACTIONS(1646), + [aux_sym_remote_forward_token1] = ACTIONS(1646), + [aux_sym_request_tty_token1] = ACTIONS(1646), + [aux_sym_required_rsa_size_token1] = ACTIONS(1646), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1646), + [aux_sym_security_key_provider_token1] = ACTIONS(1646), + [aux_sym_send_env_token1] = ACTIONS(1646), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1646), + [aux_sym_server_alive_interval_token1] = ACTIONS(1646), + [aux_sym_session_type_token1] = ACTIONS(1646), + [aux_sym_set_env_token1] = ACTIONS(1646), + [aux_sym_stdin_null_token1] = ACTIONS(1646), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1646), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1646), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1646), + [aux_sym_syslog_facility_token1] = ACTIONS(1646), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1646), + [aux_sym_keep_alive_token1] = ACTIONS(1646), + [aux_sym_tunnel_token1] = ACTIONS(1648), + [aux_sym_tunnel_device_token1] = ACTIONS(1646), + [aux_sym_update_host_keys_token1] = ACTIONS(1646), + [aux_sym_use_keychain_token1] = ACTIONS(1646), + [aux_sym_use_roaming_token1] = ACTIONS(1646), + [aux_sym_user_token1] = ACTIONS(1648), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1646), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1646), + [aux_sym_visual_host_key_token1] = ACTIONS(1646), + [aux_sym_xauth_location_token1] = ACTIONS(1646), }, [185] = { - [ts_builtin_sym_end] = ACTIONS(1647), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1649), - [anon_sym_DQUOTE] = ACTIONS(1651), - [aux_sym_match_token1] = ACTIONS(1647), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1647), - [aux_sym_address_family_token1] = ACTIONS(1647), - [aux_sym_batch_mode_token1] = ACTIONS(1647), - [aux_sym_bind_address_token1] = ACTIONS(1647), - [aux_sym_bind_interface_token1] = ACTIONS(1647), - [aux_sym_canonical_domains_token1] = ACTIONS(1647), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1647), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1647), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1647), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1647), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1647), - [aux_sym_certificate_file_token1] = ACTIONS(1647), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1647), - [aux_sym_check_host_ip_token1] = ACTIONS(1647), - [aux_sym_ciphers_token1] = ACTIONS(1647), - [aux_sym_cipher_token1] = ACTIONS(1649), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1647), - [aux_sym_compression_token1] = ACTIONS(1647), - [aux_sym_connection_attempts_token1] = ACTIONS(1647), - [aux_sym_connect_timeout_token1] = ACTIONS(1647), - [aux_sym_control_master_token1] = ACTIONS(1647), - [aux_sym_control_path_token1] = ACTIONS(1647), - [aux_sym_control_persist_token1] = ACTIONS(1647), - [aux_sym_dynamic_forward_token1] = ACTIONS(1647), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1647), - [aux_sym_escape_char_token1] = ACTIONS(1647), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1647), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1647), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1647), - [aux_sym_forward_agent_token1] = ACTIONS(1647), - [aux_sym_forward_x11_token1] = ACTIONS(1649), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1647), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1647), - [aux_sym_gateway_ports_token1] = ACTIONS(1647), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1647), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1647), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1647), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1647), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1647), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1647), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1647), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1647), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1647), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1647), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1647), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1647), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1647), - [aux_sym_host_key_alias_token1] = ACTIONS(1647), - [aux_sym_hostname_token1] = ACTIONS(1647), - [aux_sym_identities_only_token1] = ACTIONS(1647), - [aux_sym_identity_agent_token1] = ACTIONS(1647), - [aux_sym_identity_file_token1] = ACTIONS(1647), - [aux_sym_ignore_unknown_token1] = ACTIONS(1647), - [aux_sym_include_token1] = ACTIONS(1647), - [aux_sym_ip_qos_token1] = ACTIONS(1647), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1647), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1647), - [aux_sym_kex_algorithms_token1] = ACTIONS(1647), - [aux_sym_known_hosts_command_token1] = ACTIONS(1647), - [aux_sym_local_command_token1] = ACTIONS(1647), - [aux_sym_local_forward_token1] = ACTIONS(1647), - [aux_sym_log_level_token1] = ACTIONS(1647), - [aux_sym_log_verbose_token1] = ACTIONS(1647), - [aux_sym_macs_token1] = ACTIONS(1647), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1647), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1647), - [aux_sym_password_authentication_token1] = ACTIONS(1647), - [aux_sym_permit_local_command_token1] = ACTIONS(1647), - [aux_sym_permit_remote_open_token1] = ACTIONS(1647), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1647), - [aux_sym_port_token1] = ACTIONS(1647), - [aux_sym_preferred_authentications_token1] = ACTIONS(1647), - [aux_sym_protocol_token1] = ACTIONS(1647), - [aux_sym_proxy_command_token1] = ACTIONS(1647), - [aux_sym_proxy_jump_token1] = ACTIONS(1647), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1647), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1647), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1647), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1647), - [aux_sym_rekey_limit_token1] = ACTIONS(1647), - [aux_sym_remote_command_token1] = ACTIONS(1647), - [aux_sym_remote_forward_token1] = ACTIONS(1647), - [aux_sym_request_tty_token1] = ACTIONS(1647), - [aux_sym_required_rsa_size_token1] = ACTIONS(1647), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1647), - [aux_sym_security_key_provider_token1] = ACTIONS(1647), - [aux_sym_send_env_token1] = ACTIONS(1647), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1647), - [aux_sym_server_alive_interval_token1] = ACTIONS(1647), - [aux_sym_session_type_token1] = ACTIONS(1647), - [aux_sym_set_env_token1] = ACTIONS(1647), - [aux_sym_stdin_null_token1] = ACTIONS(1647), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1647), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1647), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1647), - [aux_sym_syslog_facility_token1] = ACTIONS(1647), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1647), - [aux_sym_keep_alive_token1] = ACTIONS(1647), - [aux_sym_tunnel_token1] = ACTIONS(1649), - [aux_sym_tunnel_device_token1] = ACTIONS(1647), - [aux_sym_update_host_keys_token1] = ACTIONS(1647), - [aux_sym_use_keychain_token1] = ACTIONS(1647), - [aux_sym_use_roaming_token1] = ACTIONS(1647), - [aux_sym_user_token1] = ACTIONS(1649), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1647), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1647), - [aux_sym_visual_host_key_token1] = ACTIONS(1647), - [aux_sym_xauth_location_token1] = ACTIONS(1647), + [ts_builtin_sym_end] = ACTIONS(1652), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1654), + [anon_sym_DQUOTE] = ACTIONS(1656), + [aux_sym_match_token1] = ACTIONS(1652), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1652), + [aux_sym_address_family_token1] = ACTIONS(1652), + [aux_sym_batch_mode_token1] = ACTIONS(1652), + [aux_sym_bind_address_token1] = ACTIONS(1652), + [aux_sym_bind_interface_token1] = ACTIONS(1652), + [aux_sym_canonical_domains_token1] = ACTIONS(1652), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1652), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1652), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1652), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1652), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1652), + [aux_sym_certificate_file_token1] = ACTIONS(1652), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1652), + [aux_sym_check_host_ip_token1] = ACTIONS(1652), + [aux_sym_ciphers_token1] = ACTIONS(1652), + [aux_sym_cipher_token1] = ACTIONS(1654), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1652), + [aux_sym_compression_token1] = ACTIONS(1652), + [aux_sym_connection_attempts_token1] = ACTIONS(1652), + [aux_sym_connect_timeout_token1] = ACTIONS(1652), + [aux_sym_control_master_token1] = ACTIONS(1652), + [aux_sym_control_path_token1] = ACTIONS(1652), + [aux_sym_control_persist_token1] = ACTIONS(1652), + [aux_sym_dynamic_forward_token1] = ACTIONS(1652), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1652), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1652), + [aux_sym_escape_char_token1] = ACTIONS(1652), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1652), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1652), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1652), + [aux_sym_forward_agent_token1] = ACTIONS(1652), + [aux_sym_forward_x11_token1] = ACTIONS(1654), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1652), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1652), + [aux_sym_gateway_ports_token1] = ACTIONS(1652), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1652), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1652), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1652), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1652), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1652), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1652), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1652), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1652), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1652), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1652), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1652), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1652), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1652), + [aux_sym_host_key_alias_token1] = ACTIONS(1652), + [aux_sym_hostname_token1] = ACTIONS(1652), + [aux_sym_identities_only_token1] = ACTIONS(1652), + [aux_sym_identity_agent_token1] = ACTIONS(1652), + [aux_sym_identity_file_token1] = ACTIONS(1652), + [aux_sym_ignore_unknown_token1] = ACTIONS(1652), + [aux_sym_include_token1] = ACTIONS(1652), + [aux_sym_ip_qos_token1] = ACTIONS(1652), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1652), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1652), + [aux_sym_kex_algorithms_token1] = ACTIONS(1652), + [aux_sym_known_hosts_command_token1] = ACTIONS(1652), + [aux_sym_local_command_token1] = ACTIONS(1652), + [aux_sym_local_forward_token1] = ACTIONS(1652), + [aux_sym_log_level_token1] = ACTIONS(1652), + [aux_sym_log_verbose_token1] = ACTIONS(1652), + [aux_sym_macs_token1] = ACTIONS(1652), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1652), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1652), + [aux_sym_password_authentication_token1] = ACTIONS(1652), + [aux_sym_permit_local_command_token1] = ACTIONS(1652), + [aux_sym_permit_remote_open_token1] = ACTIONS(1652), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1652), + [aux_sym_port_token1] = ACTIONS(1652), + [aux_sym_preferred_authentications_token1] = ACTIONS(1652), + [aux_sym_protocol_token1] = ACTIONS(1652), + [aux_sym_proxy_command_token1] = ACTIONS(1652), + [aux_sym_proxy_jump_token1] = ACTIONS(1652), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1652), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1652), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1652), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1652), + [aux_sym_rekey_limit_token1] = ACTIONS(1652), + [aux_sym_remote_command_token1] = ACTIONS(1652), + [aux_sym_remote_forward_token1] = ACTIONS(1652), + [aux_sym_request_tty_token1] = ACTIONS(1652), + [aux_sym_required_rsa_size_token1] = ACTIONS(1652), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1652), + [aux_sym_security_key_provider_token1] = ACTIONS(1652), + [aux_sym_send_env_token1] = ACTIONS(1652), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1652), + [aux_sym_server_alive_interval_token1] = ACTIONS(1652), + [aux_sym_session_type_token1] = ACTIONS(1652), + [aux_sym_set_env_token1] = ACTIONS(1652), + [aux_sym_stdin_null_token1] = ACTIONS(1652), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1652), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1652), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1652), + [aux_sym_syslog_facility_token1] = ACTIONS(1652), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1652), + [aux_sym_keep_alive_token1] = ACTIONS(1652), + [aux_sym_tunnel_token1] = ACTIONS(1654), + [aux_sym_tunnel_device_token1] = ACTIONS(1652), + [aux_sym_update_host_keys_token1] = ACTIONS(1652), + [aux_sym_use_keychain_token1] = ACTIONS(1652), + [aux_sym_use_roaming_token1] = ACTIONS(1652), + [aux_sym_user_token1] = ACTIONS(1654), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1652), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1652), + [aux_sym_visual_host_key_token1] = ACTIONS(1652), + [aux_sym_xauth_location_token1] = ACTIONS(1652), }, [186] = { - [ts_builtin_sym_end] = ACTIONS(1653), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(1657), - [aux_sym_match_token1] = ACTIONS(1653), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1653), - [aux_sym_address_family_token1] = ACTIONS(1653), - [aux_sym_batch_mode_token1] = ACTIONS(1653), - [aux_sym_bind_address_token1] = ACTIONS(1653), - [aux_sym_bind_interface_token1] = ACTIONS(1653), - [aux_sym_canonical_domains_token1] = ACTIONS(1653), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1653), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1653), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1653), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1653), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1653), - [aux_sym_certificate_file_token1] = ACTIONS(1653), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1653), - [aux_sym_check_host_ip_token1] = ACTIONS(1653), - [aux_sym_ciphers_token1] = ACTIONS(1653), - [aux_sym_cipher_token1] = ACTIONS(1655), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1653), - [aux_sym_compression_token1] = ACTIONS(1653), - [aux_sym_connection_attempts_token1] = ACTIONS(1653), - [aux_sym_connect_timeout_token1] = ACTIONS(1653), - [aux_sym_control_master_token1] = ACTIONS(1653), - [aux_sym_control_path_token1] = ACTIONS(1653), - [aux_sym_control_persist_token1] = ACTIONS(1653), - [aux_sym_dynamic_forward_token1] = ACTIONS(1653), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1653), - [aux_sym_escape_char_token1] = ACTIONS(1653), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1653), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1653), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1653), - [aux_sym_forward_agent_token1] = ACTIONS(1653), - [aux_sym_forward_x11_token1] = ACTIONS(1655), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1653), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1653), - [aux_sym_gateway_ports_token1] = ACTIONS(1653), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1653), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1653), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1653), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1653), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1653), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1653), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1653), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1653), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1653), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1653), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1653), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1653), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1653), - [aux_sym_host_key_alias_token1] = ACTIONS(1653), - [aux_sym_hostname_token1] = ACTIONS(1653), - [aux_sym_identities_only_token1] = ACTIONS(1653), - [aux_sym_identity_agent_token1] = ACTIONS(1653), - [aux_sym_identity_file_token1] = ACTIONS(1653), - [aux_sym_ignore_unknown_token1] = ACTIONS(1653), - [aux_sym_include_token1] = ACTIONS(1653), - [aux_sym_ip_qos_token1] = ACTIONS(1653), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1653), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1653), - [aux_sym_kex_algorithms_token1] = ACTIONS(1653), - [aux_sym_known_hosts_command_token1] = ACTIONS(1653), - [aux_sym_local_command_token1] = ACTIONS(1653), - [aux_sym_local_forward_token1] = ACTIONS(1653), - [aux_sym_log_level_token1] = ACTIONS(1653), - [aux_sym_log_verbose_token1] = ACTIONS(1653), - [aux_sym_macs_token1] = ACTIONS(1653), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1653), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1653), - [aux_sym_password_authentication_token1] = ACTIONS(1653), - [aux_sym_permit_local_command_token1] = ACTIONS(1653), - [aux_sym_permit_remote_open_token1] = ACTIONS(1653), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1653), - [aux_sym_port_token1] = ACTIONS(1653), - [aux_sym_preferred_authentications_token1] = ACTIONS(1653), - [aux_sym_protocol_token1] = ACTIONS(1653), - [aux_sym_proxy_command_token1] = ACTIONS(1653), - [aux_sym_proxy_jump_token1] = ACTIONS(1653), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1653), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1653), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1653), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1653), - [aux_sym_rekey_limit_token1] = ACTIONS(1653), - [aux_sym_remote_command_token1] = ACTIONS(1653), - [aux_sym_remote_forward_token1] = ACTIONS(1653), - [aux_sym_request_tty_token1] = ACTIONS(1653), - [aux_sym_required_rsa_size_token1] = ACTIONS(1653), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1653), - [aux_sym_security_key_provider_token1] = ACTIONS(1653), - [aux_sym_send_env_token1] = ACTIONS(1653), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1653), - [aux_sym_server_alive_interval_token1] = ACTIONS(1653), - [aux_sym_session_type_token1] = ACTIONS(1653), - [aux_sym_set_env_token1] = ACTIONS(1653), - [aux_sym_stdin_null_token1] = ACTIONS(1653), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1653), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1653), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1653), - [aux_sym_syslog_facility_token1] = ACTIONS(1653), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1653), - [aux_sym_keep_alive_token1] = ACTIONS(1653), - [aux_sym_tunnel_token1] = ACTIONS(1655), - [aux_sym_tunnel_device_token1] = ACTIONS(1653), - [aux_sym_update_host_keys_token1] = ACTIONS(1653), - [aux_sym_use_keychain_token1] = ACTIONS(1653), - [aux_sym_use_roaming_token1] = ACTIONS(1653), - [aux_sym_user_token1] = ACTIONS(1655), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1653), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1653), - [aux_sym_visual_host_key_token1] = ACTIONS(1653), - [aux_sym_xauth_location_token1] = ACTIONS(1653), + [ts_builtin_sym_end] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1660), + [anon_sym_DQUOTE] = ACTIONS(1662), + [aux_sym_match_token1] = ACTIONS(1658), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1658), + [aux_sym_address_family_token1] = ACTIONS(1658), + [aux_sym_batch_mode_token1] = ACTIONS(1658), + [aux_sym_bind_address_token1] = ACTIONS(1658), + [aux_sym_bind_interface_token1] = ACTIONS(1658), + [aux_sym_canonical_domains_token1] = ACTIONS(1658), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1658), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1658), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1658), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1658), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1658), + [aux_sym_certificate_file_token1] = ACTIONS(1658), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1658), + [aux_sym_check_host_ip_token1] = ACTIONS(1658), + [aux_sym_ciphers_token1] = ACTIONS(1658), + [aux_sym_cipher_token1] = ACTIONS(1660), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1658), + [aux_sym_compression_token1] = ACTIONS(1658), + [aux_sym_connection_attempts_token1] = ACTIONS(1658), + [aux_sym_connect_timeout_token1] = ACTIONS(1658), + [aux_sym_control_master_token1] = ACTIONS(1658), + [aux_sym_control_path_token1] = ACTIONS(1658), + [aux_sym_control_persist_token1] = ACTIONS(1658), + [aux_sym_dynamic_forward_token1] = ACTIONS(1658), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1658), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1658), + [aux_sym_escape_char_token1] = ACTIONS(1658), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1658), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1658), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1658), + [aux_sym_forward_agent_token1] = ACTIONS(1658), + [aux_sym_forward_x11_token1] = ACTIONS(1660), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1658), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1658), + [aux_sym_gateway_ports_token1] = ACTIONS(1658), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1658), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1658), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1658), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1658), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1658), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1658), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1658), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1658), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1658), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1658), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1658), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1658), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1658), + [aux_sym_host_key_alias_token1] = ACTIONS(1658), + [aux_sym_hostname_token1] = ACTIONS(1658), + [aux_sym_identities_only_token1] = ACTIONS(1658), + [aux_sym_identity_agent_token1] = ACTIONS(1658), + [aux_sym_identity_file_token1] = ACTIONS(1658), + [aux_sym_ignore_unknown_token1] = ACTIONS(1658), + [aux_sym_include_token1] = ACTIONS(1658), + [aux_sym_ip_qos_token1] = ACTIONS(1658), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1658), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1658), + [aux_sym_kex_algorithms_token1] = ACTIONS(1658), + [aux_sym_known_hosts_command_token1] = ACTIONS(1658), + [aux_sym_local_command_token1] = ACTIONS(1658), + [aux_sym_local_forward_token1] = ACTIONS(1658), + [aux_sym_log_level_token1] = ACTIONS(1658), + [aux_sym_log_verbose_token1] = ACTIONS(1658), + [aux_sym_macs_token1] = ACTIONS(1658), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1658), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1658), + [aux_sym_password_authentication_token1] = ACTIONS(1658), + [aux_sym_permit_local_command_token1] = ACTIONS(1658), + [aux_sym_permit_remote_open_token1] = ACTIONS(1658), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1658), + [aux_sym_port_token1] = ACTIONS(1658), + [aux_sym_preferred_authentications_token1] = ACTIONS(1658), + [aux_sym_protocol_token1] = ACTIONS(1658), + [aux_sym_proxy_command_token1] = ACTIONS(1658), + [aux_sym_proxy_jump_token1] = ACTIONS(1658), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1658), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1658), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1658), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1658), + [aux_sym_rekey_limit_token1] = ACTIONS(1658), + [aux_sym_remote_command_token1] = ACTIONS(1658), + [aux_sym_remote_forward_token1] = ACTIONS(1658), + [aux_sym_request_tty_token1] = ACTIONS(1658), + [aux_sym_required_rsa_size_token1] = ACTIONS(1658), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1658), + [aux_sym_security_key_provider_token1] = ACTIONS(1658), + [aux_sym_send_env_token1] = ACTIONS(1658), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1658), + [aux_sym_server_alive_interval_token1] = ACTIONS(1658), + [aux_sym_session_type_token1] = ACTIONS(1658), + [aux_sym_set_env_token1] = ACTIONS(1658), + [aux_sym_stdin_null_token1] = ACTIONS(1658), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1658), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1658), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1658), + [aux_sym_syslog_facility_token1] = ACTIONS(1658), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1658), + [aux_sym_keep_alive_token1] = ACTIONS(1658), + [aux_sym_tunnel_token1] = ACTIONS(1660), + [aux_sym_tunnel_device_token1] = ACTIONS(1658), + [aux_sym_update_host_keys_token1] = ACTIONS(1658), + [aux_sym_use_keychain_token1] = ACTIONS(1658), + [aux_sym_use_roaming_token1] = ACTIONS(1658), + [aux_sym_user_token1] = ACTIONS(1660), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1658), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1658), + [aux_sym_visual_host_key_token1] = ACTIONS(1658), + [aux_sym_xauth_location_token1] = ACTIONS(1658), }, [187] = { - [ts_builtin_sym_end] = ACTIONS(1659), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1663), - [aux_sym_match_token1] = ACTIONS(1659), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1659), - [aux_sym_address_family_token1] = ACTIONS(1659), - [aux_sym_batch_mode_token1] = ACTIONS(1659), - [aux_sym_bind_address_token1] = ACTIONS(1659), - [aux_sym_bind_interface_token1] = ACTIONS(1659), - [aux_sym_canonical_domains_token1] = ACTIONS(1659), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1659), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1659), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1659), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1659), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1659), - [aux_sym_certificate_file_token1] = ACTIONS(1659), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1659), - [aux_sym_check_host_ip_token1] = ACTIONS(1659), - [aux_sym_ciphers_token1] = ACTIONS(1659), - [aux_sym_cipher_token1] = ACTIONS(1661), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1659), - [aux_sym_compression_token1] = ACTIONS(1659), - [aux_sym_connection_attempts_token1] = ACTIONS(1659), - [aux_sym_connect_timeout_token1] = ACTIONS(1659), - [aux_sym_control_master_token1] = ACTIONS(1659), - [aux_sym_control_path_token1] = ACTIONS(1659), - [aux_sym_control_persist_token1] = ACTIONS(1659), - [aux_sym_dynamic_forward_token1] = ACTIONS(1659), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1659), - [aux_sym_escape_char_token1] = ACTIONS(1659), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1659), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1659), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1659), - [aux_sym_forward_agent_token1] = ACTIONS(1659), - [aux_sym_forward_x11_token1] = ACTIONS(1661), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1659), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1659), - [aux_sym_gateway_ports_token1] = ACTIONS(1659), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1659), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1659), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1659), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1659), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1659), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1659), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1659), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1659), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1659), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1659), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1659), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1659), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1659), - [aux_sym_host_key_alias_token1] = ACTIONS(1659), - [aux_sym_hostname_token1] = ACTIONS(1659), - [aux_sym_identities_only_token1] = ACTIONS(1659), - [aux_sym_identity_agent_token1] = ACTIONS(1659), - [aux_sym_identity_file_token1] = ACTIONS(1659), - [aux_sym_ignore_unknown_token1] = ACTIONS(1659), - [aux_sym_include_token1] = ACTIONS(1659), - [aux_sym_ip_qos_token1] = ACTIONS(1659), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1659), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1659), - [aux_sym_kex_algorithms_token1] = ACTIONS(1659), - [aux_sym_known_hosts_command_token1] = ACTIONS(1659), - [aux_sym_local_command_token1] = ACTIONS(1659), - [aux_sym_local_forward_token1] = ACTIONS(1659), - [aux_sym_log_level_token1] = ACTIONS(1659), - [aux_sym_log_verbose_token1] = ACTIONS(1659), - [aux_sym_macs_token1] = ACTIONS(1659), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1659), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1659), - [aux_sym_password_authentication_token1] = ACTIONS(1659), - [aux_sym_permit_local_command_token1] = ACTIONS(1659), - [aux_sym_permit_remote_open_token1] = ACTIONS(1659), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1659), - [aux_sym_port_token1] = ACTIONS(1659), - [aux_sym_preferred_authentications_token1] = ACTIONS(1659), - [aux_sym_protocol_token1] = ACTIONS(1659), - [aux_sym_proxy_command_token1] = ACTIONS(1659), - [aux_sym_proxy_jump_token1] = ACTIONS(1659), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1659), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1659), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1659), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1659), - [aux_sym_rekey_limit_token1] = ACTIONS(1659), - [aux_sym_remote_command_token1] = ACTIONS(1659), - [aux_sym_remote_forward_token1] = ACTIONS(1659), - [aux_sym_request_tty_token1] = ACTIONS(1659), - [aux_sym_required_rsa_size_token1] = ACTIONS(1659), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1659), - [aux_sym_security_key_provider_token1] = ACTIONS(1659), - [aux_sym_send_env_token1] = ACTIONS(1659), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1659), - [aux_sym_server_alive_interval_token1] = ACTIONS(1659), - [aux_sym_session_type_token1] = ACTIONS(1659), - [aux_sym_set_env_token1] = ACTIONS(1659), - [aux_sym_stdin_null_token1] = ACTIONS(1659), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1659), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1659), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1659), - [aux_sym_syslog_facility_token1] = ACTIONS(1659), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1659), - [aux_sym_keep_alive_token1] = ACTIONS(1659), - [aux_sym_tunnel_token1] = ACTIONS(1661), - [aux_sym_tunnel_device_token1] = ACTIONS(1659), - [aux_sym_update_host_keys_token1] = ACTIONS(1659), - [aux_sym_use_keychain_token1] = ACTIONS(1659), - [aux_sym_use_roaming_token1] = ACTIONS(1659), - [aux_sym_user_token1] = ACTIONS(1661), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1659), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1659), - [aux_sym_visual_host_key_token1] = ACTIONS(1659), - [aux_sym_xauth_location_token1] = ACTIONS(1659), + [ts_builtin_sym_end] = ACTIONS(1664), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1666), + [anon_sym_DQUOTE] = ACTIONS(1668), + [aux_sym_match_token1] = ACTIONS(1664), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1664), + [aux_sym_address_family_token1] = ACTIONS(1664), + [aux_sym_batch_mode_token1] = ACTIONS(1664), + [aux_sym_bind_address_token1] = ACTIONS(1664), + [aux_sym_bind_interface_token1] = ACTIONS(1664), + [aux_sym_canonical_domains_token1] = ACTIONS(1664), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1664), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1664), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1664), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1664), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1664), + [aux_sym_certificate_file_token1] = ACTIONS(1664), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1664), + [aux_sym_check_host_ip_token1] = ACTIONS(1664), + [aux_sym_ciphers_token1] = ACTIONS(1664), + [aux_sym_cipher_token1] = ACTIONS(1666), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1664), + [aux_sym_compression_token1] = ACTIONS(1664), + [aux_sym_connection_attempts_token1] = ACTIONS(1664), + [aux_sym_connect_timeout_token1] = ACTIONS(1664), + [aux_sym_control_master_token1] = ACTIONS(1664), + [aux_sym_control_path_token1] = ACTIONS(1664), + [aux_sym_control_persist_token1] = ACTIONS(1664), + [aux_sym_dynamic_forward_token1] = ACTIONS(1664), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1664), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1664), + [aux_sym_escape_char_token1] = ACTIONS(1664), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1664), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1664), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1664), + [aux_sym_forward_agent_token1] = ACTIONS(1664), + [aux_sym_forward_x11_token1] = ACTIONS(1666), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1664), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1664), + [aux_sym_gateway_ports_token1] = ACTIONS(1664), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1664), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1664), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1664), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1664), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1664), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1664), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1664), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1664), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1664), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1664), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1664), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1664), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1664), + [aux_sym_host_key_alias_token1] = ACTIONS(1664), + [aux_sym_hostname_token1] = ACTIONS(1664), + [aux_sym_identities_only_token1] = ACTIONS(1664), + [aux_sym_identity_agent_token1] = ACTIONS(1664), + [aux_sym_identity_file_token1] = ACTIONS(1664), + [aux_sym_ignore_unknown_token1] = ACTIONS(1664), + [aux_sym_include_token1] = ACTIONS(1664), + [aux_sym_ip_qos_token1] = ACTIONS(1664), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1664), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1664), + [aux_sym_kex_algorithms_token1] = ACTIONS(1664), + [aux_sym_known_hosts_command_token1] = ACTIONS(1664), + [aux_sym_local_command_token1] = ACTIONS(1664), + [aux_sym_local_forward_token1] = ACTIONS(1664), + [aux_sym_log_level_token1] = ACTIONS(1664), + [aux_sym_log_verbose_token1] = ACTIONS(1664), + [aux_sym_macs_token1] = ACTIONS(1664), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1664), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1664), + [aux_sym_password_authentication_token1] = ACTIONS(1664), + [aux_sym_permit_local_command_token1] = ACTIONS(1664), + [aux_sym_permit_remote_open_token1] = ACTIONS(1664), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1664), + [aux_sym_port_token1] = ACTIONS(1664), + [aux_sym_preferred_authentications_token1] = ACTIONS(1664), + [aux_sym_protocol_token1] = ACTIONS(1664), + [aux_sym_proxy_command_token1] = ACTIONS(1664), + [aux_sym_proxy_jump_token1] = ACTIONS(1664), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1664), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1664), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1664), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1664), + [aux_sym_rekey_limit_token1] = ACTIONS(1664), + [aux_sym_remote_command_token1] = ACTIONS(1664), + [aux_sym_remote_forward_token1] = ACTIONS(1664), + [aux_sym_request_tty_token1] = ACTIONS(1664), + [aux_sym_required_rsa_size_token1] = ACTIONS(1664), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1664), + [aux_sym_security_key_provider_token1] = ACTIONS(1664), + [aux_sym_send_env_token1] = ACTIONS(1664), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1664), + [aux_sym_server_alive_interval_token1] = ACTIONS(1664), + [aux_sym_session_type_token1] = ACTIONS(1664), + [aux_sym_set_env_token1] = ACTIONS(1664), + [aux_sym_stdin_null_token1] = ACTIONS(1664), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1664), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1664), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1664), + [aux_sym_syslog_facility_token1] = ACTIONS(1664), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1664), + [aux_sym_keep_alive_token1] = ACTIONS(1664), + [aux_sym_tunnel_token1] = ACTIONS(1666), + [aux_sym_tunnel_device_token1] = ACTIONS(1664), + [aux_sym_update_host_keys_token1] = ACTIONS(1664), + [aux_sym_use_keychain_token1] = ACTIONS(1664), + [aux_sym_use_roaming_token1] = ACTIONS(1664), + [aux_sym_user_token1] = ACTIONS(1666), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1664), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1664), + [aux_sym_visual_host_key_token1] = ACTIONS(1664), + [aux_sym_xauth_location_token1] = ACTIONS(1664), }, [188] = { - [ts_builtin_sym_end] = ACTIONS(1665), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1667), - [anon_sym_DQUOTE] = ACTIONS(1669), - [aux_sym_match_token1] = ACTIONS(1665), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1665), - [aux_sym_address_family_token1] = ACTIONS(1665), - [aux_sym_batch_mode_token1] = ACTIONS(1665), - [aux_sym_bind_address_token1] = ACTIONS(1665), - [aux_sym_bind_interface_token1] = ACTIONS(1665), - [aux_sym_canonical_domains_token1] = ACTIONS(1665), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1665), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1665), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1665), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1665), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1665), - [aux_sym_certificate_file_token1] = ACTIONS(1665), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1665), - [aux_sym_check_host_ip_token1] = ACTIONS(1665), - [aux_sym_ciphers_token1] = ACTIONS(1665), - [aux_sym_cipher_token1] = ACTIONS(1667), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1665), - [aux_sym_compression_token1] = ACTIONS(1665), - [aux_sym_connection_attempts_token1] = ACTIONS(1665), - [aux_sym_connect_timeout_token1] = ACTIONS(1665), - [aux_sym_control_master_token1] = ACTIONS(1665), - [aux_sym_control_path_token1] = ACTIONS(1665), - [aux_sym_control_persist_token1] = ACTIONS(1665), - [aux_sym_dynamic_forward_token1] = ACTIONS(1665), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1665), - [aux_sym_escape_char_token1] = ACTIONS(1665), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1665), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1665), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1665), - [aux_sym_forward_agent_token1] = ACTIONS(1665), - [aux_sym_forward_x11_token1] = ACTIONS(1667), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1665), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1665), - [aux_sym_gateway_ports_token1] = ACTIONS(1665), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1665), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1665), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1665), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1665), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1665), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1665), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1665), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1665), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1665), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1665), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1665), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1665), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1665), - [aux_sym_host_key_alias_token1] = ACTIONS(1665), - [aux_sym_hostname_token1] = ACTIONS(1665), - [aux_sym_identities_only_token1] = ACTIONS(1665), - [aux_sym_identity_agent_token1] = ACTIONS(1665), - [aux_sym_identity_file_token1] = ACTIONS(1665), - [aux_sym_ignore_unknown_token1] = ACTIONS(1665), - [aux_sym_include_token1] = ACTIONS(1665), - [aux_sym_ip_qos_token1] = ACTIONS(1665), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1665), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1665), - [aux_sym_kex_algorithms_token1] = ACTIONS(1665), - [aux_sym_known_hosts_command_token1] = ACTIONS(1665), - [aux_sym_local_command_token1] = ACTIONS(1665), - [aux_sym_local_forward_token1] = ACTIONS(1665), - [aux_sym_log_level_token1] = ACTIONS(1665), - [aux_sym_log_verbose_token1] = ACTIONS(1665), - [aux_sym_macs_token1] = ACTIONS(1665), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1665), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1665), - [aux_sym_password_authentication_token1] = ACTIONS(1665), - [aux_sym_permit_local_command_token1] = ACTIONS(1665), - [aux_sym_permit_remote_open_token1] = ACTIONS(1665), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1665), - [aux_sym_port_token1] = ACTIONS(1665), - [aux_sym_preferred_authentications_token1] = ACTIONS(1665), - [aux_sym_protocol_token1] = ACTIONS(1665), - [aux_sym_proxy_command_token1] = ACTIONS(1665), - [aux_sym_proxy_jump_token1] = ACTIONS(1665), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1665), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1665), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1665), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1665), - [aux_sym_rekey_limit_token1] = ACTIONS(1665), - [aux_sym_remote_command_token1] = ACTIONS(1665), - [aux_sym_remote_forward_token1] = ACTIONS(1665), - [aux_sym_request_tty_token1] = ACTIONS(1665), - [aux_sym_required_rsa_size_token1] = ACTIONS(1665), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1665), - [aux_sym_security_key_provider_token1] = ACTIONS(1665), - [aux_sym_send_env_token1] = ACTIONS(1665), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1665), - [aux_sym_server_alive_interval_token1] = ACTIONS(1665), - [aux_sym_session_type_token1] = ACTIONS(1665), - [aux_sym_set_env_token1] = ACTIONS(1665), - [aux_sym_stdin_null_token1] = ACTIONS(1665), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1665), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1665), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1665), - [aux_sym_syslog_facility_token1] = ACTIONS(1665), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1665), - [aux_sym_keep_alive_token1] = ACTIONS(1665), - [aux_sym_tunnel_token1] = ACTIONS(1667), - [aux_sym_tunnel_device_token1] = ACTIONS(1665), - [aux_sym_update_host_keys_token1] = ACTIONS(1665), - [aux_sym_use_keychain_token1] = ACTIONS(1665), - [aux_sym_use_roaming_token1] = ACTIONS(1665), - [aux_sym_user_token1] = ACTIONS(1667), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1665), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1665), - [aux_sym_visual_host_key_token1] = ACTIONS(1665), - [aux_sym_xauth_location_token1] = ACTIONS(1665), + [ts_builtin_sym_end] = ACTIONS(1670), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1674), + [aux_sym_match_token1] = ACTIONS(1670), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1670), + [aux_sym_address_family_token1] = ACTIONS(1670), + [aux_sym_batch_mode_token1] = ACTIONS(1670), + [aux_sym_bind_address_token1] = ACTIONS(1670), + [aux_sym_bind_interface_token1] = ACTIONS(1670), + [aux_sym_canonical_domains_token1] = ACTIONS(1670), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1670), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1670), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1670), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1670), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1670), + [aux_sym_certificate_file_token1] = ACTIONS(1670), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1670), + [aux_sym_check_host_ip_token1] = ACTIONS(1670), + [aux_sym_ciphers_token1] = ACTIONS(1670), + [aux_sym_cipher_token1] = ACTIONS(1672), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1670), + [aux_sym_compression_token1] = ACTIONS(1670), + [aux_sym_connection_attempts_token1] = ACTIONS(1670), + [aux_sym_connect_timeout_token1] = ACTIONS(1670), + [aux_sym_control_master_token1] = ACTIONS(1670), + [aux_sym_control_path_token1] = ACTIONS(1670), + [aux_sym_control_persist_token1] = ACTIONS(1670), + [aux_sym_dynamic_forward_token1] = ACTIONS(1670), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1670), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1670), + [aux_sym_escape_char_token1] = ACTIONS(1670), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1670), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1670), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1670), + [aux_sym_forward_agent_token1] = ACTIONS(1670), + [aux_sym_forward_x11_token1] = ACTIONS(1672), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1670), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1670), + [aux_sym_gateway_ports_token1] = ACTIONS(1670), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1670), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1670), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1670), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1670), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1670), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1670), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1670), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1670), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1670), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1670), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1670), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1670), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1670), + [aux_sym_host_key_alias_token1] = ACTIONS(1670), + [aux_sym_hostname_token1] = ACTIONS(1670), + [aux_sym_identities_only_token1] = ACTIONS(1670), + [aux_sym_identity_agent_token1] = ACTIONS(1670), + [aux_sym_identity_file_token1] = ACTIONS(1670), + [aux_sym_ignore_unknown_token1] = ACTIONS(1670), + [aux_sym_include_token1] = ACTIONS(1670), + [aux_sym_ip_qos_token1] = ACTIONS(1670), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1670), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1670), + [aux_sym_kex_algorithms_token1] = ACTIONS(1670), + [aux_sym_known_hosts_command_token1] = ACTIONS(1670), + [aux_sym_local_command_token1] = ACTIONS(1670), + [aux_sym_local_forward_token1] = ACTIONS(1670), + [aux_sym_log_level_token1] = ACTIONS(1670), + [aux_sym_log_verbose_token1] = ACTIONS(1670), + [aux_sym_macs_token1] = ACTIONS(1670), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1670), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1670), + [aux_sym_password_authentication_token1] = ACTIONS(1670), + [aux_sym_permit_local_command_token1] = ACTIONS(1670), + [aux_sym_permit_remote_open_token1] = ACTIONS(1670), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1670), + [aux_sym_port_token1] = ACTIONS(1670), + [aux_sym_preferred_authentications_token1] = ACTIONS(1670), + [aux_sym_protocol_token1] = ACTIONS(1670), + [aux_sym_proxy_command_token1] = ACTIONS(1670), + [aux_sym_proxy_jump_token1] = ACTIONS(1670), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1670), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1670), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1670), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1670), + [aux_sym_rekey_limit_token1] = ACTIONS(1670), + [aux_sym_remote_command_token1] = ACTIONS(1670), + [aux_sym_remote_forward_token1] = ACTIONS(1670), + [aux_sym_request_tty_token1] = ACTIONS(1670), + [aux_sym_required_rsa_size_token1] = ACTIONS(1670), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1670), + [aux_sym_security_key_provider_token1] = ACTIONS(1670), + [aux_sym_send_env_token1] = ACTIONS(1670), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1670), + [aux_sym_server_alive_interval_token1] = ACTIONS(1670), + [aux_sym_session_type_token1] = ACTIONS(1670), + [aux_sym_set_env_token1] = ACTIONS(1670), + [aux_sym_stdin_null_token1] = ACTIONS(1670), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1670), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1670), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1670), + [aux_sym_syslog_facility_token1] = ACTIONS(1670), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1670), + [aux_sym_keep_alive_token1] = ACTIONS(1670), + [aux_sym_tunnel_token1] = ACTIONS(1672), + [aux_sym_tunnel_device_token1] = ACTIONS(1670), + [aux_sym_update_host_keys_token1] = ACTIONS(1670), + [aux_sym_use_keychain_token1] = ACTIONS(1670), + [aux_sym_use_roaming_token1] = ACTIONS(1670), + [aux_sym_user_token1] = ACTIONS(1672), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1670), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1670), + [aux_sym_visual_host_key_token1] = ACTIONS(1670), + [aux_sym_xauth_location_token1] = ACTIONS(1670), }, [189] = { - [ts_builtin_sym_end] = ACTIONS(1671), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1673), - [anon_sym_DQUOTE] = ACTIONS(1675), - [aux_sym_match_token1] = ACTIONS(1671), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1671), - [aux_sym_address_family_token1] = ACTIONS(1671), - [aux_sym_batch_mode_token1] = ACTIONS(1671), - [aux_sym_bind_address_token1] = ACTIONS(1671), - [aux_sym_bind_interface_token1] = ACTIONS(1671), - [aux_sym_canonical_domains_token1] = ACTIONS(1671), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1671), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1671), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1671), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1671), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1671), - [aux_sym_certificate_file_token1] = ACTIONS(1671), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1671), - [aux_sym_check_host_ip_token1] = ACTIONS(1671), - [aux_sym_ciphers_token1] = ACTIONS(1671), - [aux_sym_cipher_token1] = ACTIONS(1673), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1671), - [aux_sym_compression_token1] = ACTIONS(1671), - [aux_sym_connection_attempts_token1] = ACTIONS(1671), - [aux_sym_connect_timeout_token1] = ACTIONS(1671), - [aux_sym_control_master_token1] = ACTIONS(1671), - [aux_sym_control_path_token1] = ACTIONS(1671), - [aux_sym_control_persist_token1] = ACTIONS(1671), - [aux_sym_dynamic_forward_token1] = ACTIONS(1671), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1671), - [aux_sym_escape_char_token1] = ACTIONS(1671), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1671), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1671), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1671), - [aux_sym_forward_agent_token1] = ACTIONS(1671), - [aux_sym_forward_x11_token1] = ACTIONS(1673), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1671), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1671), - [aux_sym_gateway_ports_token1] = ACTIONS(1671), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1671), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1671), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1671), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1671), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1671), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1671), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1671), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1671), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1671), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1671), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1671), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1671), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1671), - [aux_sym_host_key_alias_token1] = ACTIONS(1671), - [aux_sym_hostname_token1] = ACTIONS(1671), - [aux_sym_identities_only_token1] = ACTIONS(1671), - [aux_sym_identity_agent_token1] = ACTIONS(1671), - [aux_sym_identity_file_token1] = ACTIONS(1671), - [aux_sym_ignore_unknown_token1] = ACTIONS(1671), - [aux_sym_include_token1] = ACTIONS(1671), - [aux_sym_ip_qos_token1] = ACTIONS(1671), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1671), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1671), - [aux_sym_kex_algorithms_token1] = ACTIONS(1671), - [aux_sym_known_hosts_command_token1] = ACTIONS(1671), - [aux_sym_local_command_token1] = ACTIONS(1671), - [aux_sym_local_forward_token1] = ACTIONS(1671), - [aux_sym_log_level_token1] = ACTIONS(1671), - [aux_sym_log_verbose_token1] = ACTIONS(1671), - [aux_sym_macs_token1] = ACTIONS(1671), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1671), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1671), - [aux_sym_password_authentication_token1] = ACTIONS(1671), - [aux_sym_permit_local_command_token1] = ACTIONS(1671), - [aux_sym_permit_remote_open_token1] = ACTIONS(1671), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1671), - [aux_sym_port_token1] = ACTIONS(1671), - [aux_sym_preferred_authentications_token1] = ACTIONS(1671), - [aux_sym_protocol_token1] = ACTIONS(1671), - [aux_sym_proxy_command_token1] = ACTIONS(1671), - [aux_sym_proxy_jump_token1] = ACTIONS(1671), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1671), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1671), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1671), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1671), - [aux_sym_rekey_limit_token1] = ACTIONS(1671), - [aux_sym_remote_command_token1] = ACTIONS(1671), - [aux_sym_remote_forward_token1] = ACTIONS(1671), - [aux_sym_request_tty_token1] = ACTIONS(1671), - [aux_sym_required_rsa_size_token1] = ACTIONS(1671), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1671), - [aux_sym_security_key_provider_token1] = ACTIONS(1671), - [aux_sym_send_env_token1] = ACTIONS(1671), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1671), - [aux_sym_server_alive_interval_token1] = ACTIONS(1671), - [aux_sym_session_type_token1] = ACTIONS(1671), - [aux_sym_set_env_token1] = ACTIONS(1671), - [aux_sym_stdin_null_token1] = ACTIONS(1671), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1671), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1671), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1671), - [aux_sym_syslog_facility_token1] = ACTIONS(1671), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1671), - [aux_sym_keep_alive_token1] = ACTIONS(1671), - [aux_sym_tunnel_token1] = ACTIONS(1673), - [aux_sym_tunnel_device_token1] = ACTIONS(1671), - [aux_sym_update_host_keys_token1] = ACTIONS(1671), - [aux_sym_use_keychain_token1] = ACTIONS(1671), - [aux_sym_use_roaming_token1] = ACTIONS(1671), - [aux_sym_user_token1] = ACTIONS(1673), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1671), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1671), - [aux_sym_visual_host_key_token1] = ACTIONS(1671), - [aux_sym_xauth_location_token1] = ACTIONS(1671), + [ts_builtin_sym_end] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1680), + [aux_sym_match_token1] = ACTIONS(1676), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1676), + [aux_sym_address_family_token1] = ACTIONS(1676), + [aux_sym_batch_mode_token1] = ACTIONS(1676), + [aux_sym_bind_address_token1] = ACTIONS(1676), + [aux_sym_bind_interface_token1] = ACTIONS(1676), + [aux_sym_canonical_domains_token1] = ACTIONS(1676), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1676), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1676), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1676), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1676), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1676), + [aux_sym_certificate_file_token1] = ACTIONS(1676), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1676), + [aux_sym_check_host_ip_token1] = ACTIONS(1676), + [aux_sym_ciphers_token1] = ACTIONS(1676), + [aux_sym_cipher_token1] = ACTIONS(1678), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1676), + [aux_sym_compression_token1] = ACTIONS(1676), + [aux_sym_connection_attempts_token1] = ACTIONS(1676), + [aux_sym_connect_timeout_token1] = ACTIONS(1676), + [aux_sym_control_master_token1] = ACTIONS(1676), + [aux_sym_control_path_token1] = ACTIONS(1676), + [aux_sym_control_persist_token1] = ACTIONS(1676), + [aux_sym_dynamic_forward_token1] = ACTIONS(1676), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1676), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1676), + [aux_sym_escape_char_token1] = ACTIONS(1676), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1676), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1676), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1676), + [aux_sym_forward_agent_token1] = ACTIONS(1676), + [aux_sym_forward_x11_token1] = ACTIONS(1678), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1676), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1676), + [aux_sym_gateway_ports_token1] = ACTIONS(1676), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1676), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1676), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1676), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1676), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1676), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1676), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1676), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1676), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1676), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1676), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1676), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1676), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1676), + [aux_sym_host_key_alias_token1] = ACTIONS(1676), + [aux_sym_hostname_token1] = ACTIONS(1676), + [aux_sym_identities_only_token1] = ACTIONS(1676), + [aux_sym_identity_agent_token1] = ACTIONS(1676), + [aux_sym_identity_file_token1] = ACTIONS(1676), + [aux_sym_ignore_unknown_token1] = ACTIONS(1676), + [aux_sym_include_token1] = ACTIONS(1676), + [aux_sym_ip_qos_token1] = ACTIONS(1676), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1676), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1676), + [aux_sym_kex_algorithms_token1] = ACTIONS(1676), + [aux_sym_known_hosts_command_token1] = ACTIONS(1676), + [aux_sym_local_command_token1] = ACTIONS(1676), + [aux_sym_local_forward_token1] = ACTIONS(1676), + [aux_sym_log_level_token1] = ACTIONS(1676), + [aux_sym_log_verbose_token1] = ACTIONS(1676), + [aux_sym_macs_token1] = ACTIONS(1676), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1676), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1676), + [aux_sym_password_authentication_token1] = ACTIONS(1676), + [aux_sym_permit_local_command_token1] = ACTIONS(1676), + [aux_sym_permit_remote_open_token1] = ACTIONS(1676), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1676), + [aux_sym_port_token1] = ACTIONS(1676), + [aux_sym_preferred_authentications_token1] = ACTIONS(1676), + [aux_sym_protocol_token1] = ACTIONS(1676), + [aux_sym_proxy_command_token1] = ACTIONS(1676), + [aux_sym_proxy_jump_token1] = ACTIONS(1676), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1676), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1676), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1676), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1676), + [aux_sym_rekey_limit_token1] = ACTIONS(1676), + [aux_sym_remote_command_token1] = ACTIONS(1676), + [aux_sym_remote_forward_token1] = ACTIONS(1676), + [aux_sym_request_tty_token1] = ACTIONS(1676), + [aux_sym_required_rsa_size_token1] = ACTIONS(1676), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1676), + [aux_sym_security_key_provider_token1] = ACTIONS(1676), + [aux_sym_send_env_token1] = ACTIONS(1676), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1676), + [aux_sym_server_alive_interval_token1] = ACTIONS(1676), + [aux_sym_session_type_token1] = ACTIONS(1676), + [aux_sym_set_env_token1] = ACTIONS(1676), + [aux_sym_stdin_null_token1] = ACTIONS(1676), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1676), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1676), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1676), + [aux_sym_syslog_facility_token1] = ACTIONS(1676), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1676), + [aux_sym_keep_alive_token1] = ACTIONS(1676), + [aux_sym_tunnel_token1] = ACTIONS(1678), + [aux_sym_tunnel_device_token1] = ACTIONS(1676), + [aux_sym_update_host_keys_token1] = ACTIONS(1676), + [aux_sym_use_keychain_token1] = ACTIONS(1676), + [aux_sym_use_roaming_token1] = ACTIONS(1676), + [aux_sym_user_token1] = ACTIONS(1678), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1676), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1676), + [aux_sym_visual_host_key_token1] = ACTIONS(1676), + [aux_sym_xauth_location_token1] = ACTIONS(1676), }, [190] = { - [ts_builtin_sym_end] = ACTIONS(1677), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1681), - [aux_sym_match_token1] = ACTIONS(1677), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1677), - [aux_sym_address_family_token1] = ACTIONS(1677), - [aux_sym_batch_mode_token1] = ACTIONS(1677), - [aux_sym_bind_address_token1] = ACTIONS(1677), - [aux_sym_bind_interface_token1] = ACTIONS(1677), - [aux_sym_canonical_domains_token1] = ACTIONS(1677), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1677), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1677), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1677), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1677), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1677), - [aux_sym_certificate_file_token1] = ACTIONS(1677), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1677), - [aux_sym_check_host_ip_token1] = ACTIONS(1677), - [aux_sym_ciphers_token1] = ACTIONS(1677), - [aux_sym_cipher_token1] = ACTIONS(1679), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1677), - [aux_sym_compression_token1] = ACTIONS(1677), - [aux_sym_connection_attempts_token1] = ACTIONS(1677), - [aux_sym_connect_timeout_token1] = ACTIONS(1677), - [aux_sym_control_master_token1] = ACTIONS(1677), - [aux_sym_control_path_token1] = ACTIONS(1677), - [aux_sym_control_persist_token1] = ACTIONS(1677), - [aux_sym_dynamic_forward_token1] = ACTIONS(1677), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1677), - [aux_sym_escape_char_token1] = ACTIONS(1677), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1677), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1677), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1677), - [aux_sym_forward_agent_token1] = ACTIONS(1677), - [aux_sym_forward_x11_token1] = ACTIONS(1679), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1677), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1677), - [aux_sym_gateway_ports_token1] = ACTIONS(1677), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1677), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1677), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1677), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1677), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1677), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1677), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1677), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1677), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1677), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1677), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1677), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1677), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1677), - [aux_sym_host_key_alias_token1] = ACTIONS(1677), - [aux_sym_hostname_token1] = ACTIONS(1677), - [aux_sym_identities_only_token1] = ACTIONS(1677), - [aux_sym_identity_agent_token1] = ACTIONS(1677), - [aux_sym_identity_file_token1] = ACTIONS(1677), - [aux_sym_ignore_unknown_token1] = ACTIONS(1677), - [aux_sym_include_token1] = ACTIONS(1677), - [aux_sym_ip_qos_token1] = ACTIONS(1677), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1677), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1677), - [aux_sym_kex_algorithms_token1] = ACTIONS(1677), - [aux_sym_known_hosts_command_token1] = ACTIONS(1677), - [aux_sym_local_command_token1] = ACTIONS(1677), - [aux_sym_local_forward_token1] = ACTIONS(1677), - [aux_sym_log_level_token1] = ACTIONS(1677), - [aux_sym_log_verbose_token1] = ACTIONS(1677), - [aux_sym_macs_token1] = ACTIONS(1677), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1677), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1677), - [aux_sym_password_authentication_token1] = ACTIONS(1677), - [aux_sym_permit_local_command_token1] = ACTIONS(1677), - [aux_sym_permit_remote_open_token1] = ACTIONS(1677), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1677), - [aux_sym_port_token1] = ACTIONS(1677), - [aux_sym_preferred_authentications_token1] = ACTIONS(1677), - [aux_sym_protocol_token1] = ACTIONS(1677), - [aux_sym_proxy_command_token1] = ACTIONS(1677), - [aux_sym_proxy_jump_token1] = ACTIONS(1677), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1677), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1677), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1677), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1677), - [aux_sym_rekey_limit_token1] = ACTIONS(1677), - [aux_sym_remote_command_token1] = ACTIONS(1677), - [aux_sym_remote_forward_token1] = ACTIONS(1677), - [aux_sym_request_tty_token1] = ACTIONS(1677), - [aux_sym_required_rsa_size_token1] = ACTIONS(1677), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1677), - [aux_sym_security_key_provider_token1] = ACTIONS(1677), - [aux_sym_send_env_token1] = ACTIONS(1677), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1677), - [aux_sym_server_alive_interval_token1] = ACTIONS(1677), - [aux_sym_session_type_token1] = ACTIONS(1677), - [aux_sym_set_env_token1] = ACTIONS(1677), - [aux_sym_stdin_null_token1] = ACTIONS(1677), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1677), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1677), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1677), - [aux_sym_syslog_facility_token1] = ACTIONS(1677), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1677), - [aux_sym_keep_alive_token1] = ACTIONS(1677), - [aux_sym_tunnel_token1] = ACTIONS(1679), - [aux_sym_tunnel_device_token1] = ACTIONS(1677), - [aux_sym_update_host_keys_token1] = ACTIONS(1677), - [aux_sym_use_keychain_token1] = ACTIONS(1677), - [aux_sym_use_roaming_token1] = ACTIONS(1677), - [aux_sym_user_token1] = ACTIONS(1679), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1677), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1677), - [aux_sym_visual_host_key_token1] = ACTIONS(1677), - [aux_sym_xauth_location_token1] = ACTIONS(1677), + [ts_builtin_sym_end] = ACTIONS(1682), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1684), + [anon_sym_DQUOTE] = ACTIONS(1686), + [aux_sym_match_token1] = ACTIONS(1682), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1682), + [aux_sym_address_family_token1] = ACTIONS(1682), + [aux_sym_batch_mode_token1] = ACTIONS(1682), + [aux_sym_bind_address_token1] = ACTIONS(1682), + [aux_sym_bind_interface_token1] = ACTIONS(1682), + [aux_sym_canonical_domains_token1] = ACTIONS(1682), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1682), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1682), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1682), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1682), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1682), + [aux_sym_certificate_file_token1] = ACTIONS(1682), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1682), + [aux_sym_check_host_ip_token1] = ACTIONS(1682), + [aux_sym_ciphers_token1] = ACTIONS(1682), + [aux_sym_cipher_token1] = ACTIONS(1684), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1682), + [aux_sym_compression_token1] = ACTIONS(1682), + [aux_sym_connection_attempts_token1] = ACTIONS(1682), + [aux_sym_connect_timeout_token1] = ACTIONS(1682), + [aux_sym_control_master_token1] = ACTIONS(1682), + [aux_sym_control_path_token1] = ACTIONS(1682), + [aux_sym_control_persist_token1] = ACTIONS(1682), + [aux_sym_dynamic_forward_token1] = ACTIONS(1682), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1682), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1682), + [aux_sym_escape_char_token1] = ACTIONS(1682), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1682), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1682), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1682), + [aux_sym_forward_agent_token1] = ACTIONS(1682), + [aux_sym_forward_x11_token1] = ACTIONS(1684), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1682), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1682), + [aux_sym_gateway_ports_token1] = ACTIONS(1682), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1682), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1682), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1682), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1682), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1682), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1682), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1682), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1682), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1682), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1682), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1682), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1682), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1682), + [aux_sym_host_key_alias_token1] = ACTIONS(1682), + [aux_sym_hostname_token1] = ACTIONS(1682), + [aux_sym_identities_only_token1] = ACTIONS(1682), + [aux_sym_identity_agent_token1] = ACTIONS(1682), + [aux_sym_identity_file_token1] = ACTIONS(1682), + [aux_sym_ignore_unknown_token1] = ACTIONS(1682), + [aux_sym_include_token1] = ACTIONS(1682), + [aux_sym_ip_qos_token1] = ACTIONS(1682), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1682), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1682), + [aux_sym_kex_algorithms_token1] = ACTIONS(1682), + [aux_sym_known_hosts_command_token1] = ACTIONS(1682), + [aux_sym_local_command_token1] = ACTIONS(1682), + [aux_sym_local_forward_token1] = ACTIONS(1682), + [aux_sym_log_level_token1] = ACTIONS(1682), + [aux_sym_log_verbose_token1] = ACTIONS(1682), + [aux_sym_macs_token1] = ACTIONS(1682), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1682), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1682), + [aux_sym_password_authentication_token1] = ACTIONS(1682), + [aux_sym_permit_local_command_token1] = ACTIONS(1682), + [aux_sym_permit_remote_open_token1] = ACTIONS(1682), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1682), + [aux_sym_port_token1] = ACTIONS(1682), + [aux_sym_preferred_authentications_token1] = ACTIONS(1682), + [aux_sym_protocol_token1] = ACTIONS(1682), + [aux_sym_proxy_command_token1] = ACTIONS(1682), + [aux_sym_proxy_jump_token1] = ACTIONS(1682), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1682), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1682), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1682), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1682), + [aux_sym_rekey_limit_token1] = ACTIONS(1682), + [aux_sym_remote_command_token1] = ACTIONS(1682), + [aux_sym_remote_forward_token1] = ACTIONS(1682), + [aux_sym_request_tty_token1] = ACTIONS(1682), + [aux_sym_required_rsa_size_token1] = ACTIONS(1682), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1682), + [aux_sym_security_key_provider_token1] = ACTIONS(1682), + [aux_sym_send_env_token1] = ACTIONS(1682), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1682), + [aux_sym_server_alive_interval_token1] = ACTIONS(1682), + [aux_sym_session_type_token1] = ACTIONS(1682), + [aux_sym_set_env_token1] = ACTIONS(1682), + [aux_sym_stdin_null_token1] = ACTIONS(1682), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1682), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1682), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1682), + [aux_sym_syslog_facility_token1] = ACTIONS(1682), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1682), + [aux_sym_keep_alive_token1] = ACTIONS(1682), + [aux_sym_tunnel_token1] = ACTIONS(1684), + [aux_sym_tunnel_device_token1] = ACTIONS(1682), + [aux_sym_update_host_keys_token1] = ACTIONS(1682), + [aux_sym_use_keychain_token1] = ACTIONS(1682), + [aux_sym_use_roaming_token1] = ACTIONS(1682), + [aux_sym_user_token1] = ACTIONS(1684), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1682), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1682), + [aux_sym_visual_host_key_token1] = ACTIONS(1682), + [aux_sym_xauth_location_token1] = ACTIONS(1682), }, [191] = { - [ts_builtin_sym_end] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1685), - [anon_sym_DQUOTE] = ACTIONS(1687), - [aux_sym_match_token1] = ACTIONS(1683), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1683), - [aux_sym_address_family_token1] = ACTIONS(1683), - [aux_sym_batch_mode_token1] = ACTIONS(1683), - [aux_sym_bind_address_token1] = ACTIONS(1683), - [aux_sym_bind_interface_token1] = ACTIONS(1683), - [aux_sym_canonical_domains_token1] = ACTIONS(1683), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1683), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1683), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1683), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1683), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1683), - [aux_sym_certificate_file_token1] = ACTIONS(1683), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1683), - [aux_sym_check_host_ip_token1] = ACTIONS(1683), - [aux_sym_ciphers_token1] = ACTIONS(1683), - [aux_sym_cipher_token1] = ACTIONS(1685), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1683), - [aux_sym_compression_token1] = ACTIONS(1683), - [aux_sym_connection_attempts_token1] = ACTIONS(1683), - [aux_sym_connect_timeout_token1] = ACTIONS(1683), - [aux_sym_control_master_token1] = ACTIONS(1683), - [aux_sym_control_path_token1] = ACTIONS(1683), - [aux_sym_control_persist_token1] = ACTIONS(1683), - [aux_sym_dynamic_forward_token1] = ACTIONS(1683), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1683), - [aux_sym_escape_char_token1] = ACTIONS(1683), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1683), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1683), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1683), - [aux_sym_forward_agent_token1] = ACTIONS(1683), - [aux_sym_forward_x11_token1] = ACTIONS(1685), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1683), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1683), - [aux_sym_gateway_ports_token1] = ACTIONS(1683), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1683), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1683), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1683), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1683), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1683), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1683), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1683), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1683), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1683), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1683), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1683), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1683), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1683), - [aux_sym_host_key_alias_token1] = ACTIONS(1683), - [aux_sym_hostname_token1] = ACTIONS(1683), - [aux_sym_identities_only_token1] = ACTIONS(1683), - [aux_sym_identity_agent_token1] = ACTIONS(1683), - [aux_sym_identity_file_token1] = ACTIONS(1683), - [aux_sym_ignore_unknown_token1] = ACTIONS(1683), - [aux_sym_include_token1] = ACTIONS(1683), - [aux_sym_ip_qos_token1] = ACTIONS(1683), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1683), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1683), - [aux_sym_kex_algorithms_token1] = ACTIONS(1683), - [aux_sym_known_hosts_command_token1] = ACTIONS(1683), - [aux_sym_local_command_token1] = ACTIONS(1683), - [aux_sym_local_forward_token1] = ACTIONS(1683), - [aux_sym_log_level_token1] = ACTIONS(1683), - [aux_sym_log_verbose_token1] = ACTIONS(1683), - [aux_sym_macs_token1] = ACTIONS(1683), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1683), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1683), - [aux_sym_password_authentication_token1] = ACTIONS(1683), - [aux_sym_permit_local_command_token1] = ACTIONS(1683), - [aux_sym_permit_remote_open_token1] = ACTIONS(1683), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1683), - [aux_sym_port_token1] = ACTIONS(1683), - [aux_sym_preferred_authentications_token1] = ACTIONS(1683), - [aux_sym_protocol_token1] = ACTIONS(1683), - [aux_sym_proxy_command_token1] = ACTIONS(1683), - [aux_sym_proxy_jump_token1] = ACTIONS(1683), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1683), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1683), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1683), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1683), - [aux_sym_rekey_limit_token1] = ACTIONS(1683), - [aux_sym_remote_command_token1] = ACTIONS(1683), - [aux_sym_remote_forward_token1] = ACTIONS(1683), - [aux_sym_request_tty_token1] = ACTIONS(1683), - [aux_sym_required_rsa_size_token1] = ACTIONS(1683), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1683), - [aux_sym_security_key_provider_token1] = ACTIONS(1683), - [aux_sym_send_env_token1] = ACTIONS(1683), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1683), - [aux_sym_server_alive_interval_token1] = ACTIONS(1683), - [aux_sym_session_type_token1] = ACTIONS(1683), - [aux_sym_set_env_token1] = ACTIONS(1683), - [aux_sym_stdin_null_token1] = ACTIONS(1683), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1683), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1683), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1683), - [aux_sym_syslog_facility_token1] = ACTIONS(1683), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1683), - [aux_sym_keep_alive_token1] = ACTIONS(1683), - [aux_sym_tunnel_token1] = ACTIONS(1685), - [aux_sym_tunnel_device_token1] = ACTIONS(1683), - [aux_sym_update_host_keys_token1] = ACTIONS(1683), - [aux_sym_use_keychain_token1] = ACTIONS(1683), - [aux_sym_use_roaming_token1] = ACTIONS(1683), - [aux_sym_user_token1] = ACTIONS(1685), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1683), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1683), - [aux_sym_visual_host_key_token1] = ACTIONS(1683), - [aux_sym_xauth_location_token1] = ACTIONS(1683), + [ts_builtin_sym_end] = ACTIONS(1688), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1690), + [anon_sym_DQUOTE] = ACTIONS(1692), + [aux_sym_match_token1] = ACTIONS(1688), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1688), + [aux_sym_address_family_token1] = ACTIONS(1688), + [aux_sym_batch_mode_token1] = ACTIONS(1688), + [aux_sym_bind_address_token1] = ACTIONS(1688), + [aux_sym_bind_interface_token1] = ACTIONS(1688), + [aux_sym_canonical_domains_token1] = ACTIONS(1688), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1688), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1688), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1688), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1688), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1688), + [aux_sym_certificate_file_token1] = ACTIONS(1688), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1688), + [aux_sym_check_host_ip_token1] = ACTIONS(1688), + [aux_sym_ciphers_token1] = ACTIONS(1688), + [aux_sym_cipher_token1] = ACTIONS(1690), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1688), + [aux_sym_compression_token1] = ACTIONS(1688), + [aux_sym_connection_attempts_token1] = ACTIONS(1688), + [aux_sym_connect_timeout_token1] = ACTIONS(1688), + [aux_sym_control_master_token1] = ACTIONS(1688), + [aux_sym_control_path_token1] = ACTIONS(1688), + [aux_sym_control_persist_token1] = ACTIONS(1688), + [aux_sym_dynamic_forward_token1] = ACTIONS(1688), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1688), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1688), + [aux_sym_escape_char_token1] = ACTIONS(1688), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1688), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1688), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1688), + [aux_sym_forward_agent_token1] = ACTIONS(1688), + [aux_sym_forward_x11_token1] = ACTIONS(1690), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1688), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1688), + [aux_sym_gateway_ports_token1] = ACTIONS(1688), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1688), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1688), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1688), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1688), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1688), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1688), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1688), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1688), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1688), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1688), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1688), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1688), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1688), + [aux_sym_host_key_alias_token1] = ACTIONS(1688), + [aux_sym_hostname_token1] = ACTIONS(1688), + [aux_sym_identities_only_token1] = ACTIONS(1688), + [aux_sym_identity_agent_token1] = ACTIONS(1688), + [aux_sym_identity_file_token1] = ACTIONS(1688), + [aux_sym_ignore_unknown_token1] = ACTIONS(1688), + [aux_sym_include_token1] = ACTIONS(1688), + [aux_sym_ip_qos_token1] = ACTIONS(1688), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1688), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1688), + [aux_sym_kex_algorithms_token1] = ACTIONS(1688), + [aux_sym_known_hosts_command_token1] = ACTIONS(1688), + [aux_sym_local_command_token1] = ACTIONS(1688), + [aux_sym_local_forward_token1] = ACTIONS(1688), + [aux_sym_log_level_token1] = ACTIONS(1688), + [aux_sym_log_verbose_token1] = ACTIONS(1688), + [aux_sym_macs_token1] = ACTIONS(1688), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1688), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1688), + [aux_sym_password_authentication_token1] = ACTIONS(1688), + [aux_sym_permit_local_command_token1] = ACTIONS(1688), + [aux_sym_permit_remote_open_token1] = ACTIONS(1688), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1688), + [aux_sym_port_token1] = ACTIONS(1688), + [aux_sym_preferred_authentications_token1] = ACTIONS(1688), + [aux_sym_protocol_token1] = ACTIONS(1688), + [aux_sym_proxy_command_token1] = ACTIONS(1688), + [aux_sym_proxy_jump_token1] = ACTIONS(1688), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1688), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1688), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1688), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1688), + [aux_sym_rekey_limit_token1] = ACTIONS(1688), + [aux_sym_remote_command_token1] = ACTIONS(1688), + [aux_sym_remote_forward_token1] = ACTIONS(1688), + [aux_sym_request_tty_token1] = ACTIONS(1688), + [aux_sym_required_rsa_size_token1] = ACTIONS(1688), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1688), + [aux_sym_security_key_provider_token1] = ACTIONS(1688), + [aux_sym_send_env_token1] = ACTIONS(1688), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1688), + [aux_sym_server_alive_interval_token1] = ACTIONS(1688), + [aux_sym_session_type_token1] = ACTIONS(1688), + [aux_sym_set_env_token1] = ACTIONS(1688), + [aux_sym_stdin_null_token1] = ACTIONS(1688), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1688), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1688), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1688), + [aux_sym_syslog_facility_token1] = ACTIONS(1688), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1688), + [aux_sym_keep_alive_token1] = ACTIONS(1688), + [aux_sym_tunnel_token1] = ACTIONS(1690), + [aux_sym_tunnel_device_token1] = ACTIONS(1688), + [aux_sym_update_host_keys_token1] = ACTIONS(1688), + [aux_sym_use_keychain_token1] = ACTIONS(1688), + [aux_sym_use_roaming_token1] = ACTIONS(1688), + [aux_sym_user_token1] = ACTIONS(1690), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1688), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1688), + [aux_sym_visual_host_key_token1] = ACTIONS(1688), + [aux_sym_xauth_location_token1] = ACTIONS(1688), }, [192] = { - [ts_builtin_sym_end] = ACTIONS(1689), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1691), - [anon_sym_DQUOTE] = ACTIONS(1693), - [aux_sym_match_token1] = ACTIONS(1689), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1689), - [aux_sym_address_family_token1] = ACTIONS(1689), - [aux_sym_batch_mode_token1] = ACTIONS(1689), - [aux_sym_bind_address_token1] = ACTIONS(1689), - [aux_sym_bind_interface_token1] = ACTIONS(1689), - [aux_sym_canonical_domains_token1] = ACTIONS(1689), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1689), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1689), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1689), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1689), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1689), - [aux_sym_certificate_file_token1] = ACTIONS(1689), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1689), - [aux_sym_check_host_ip_token1] = ACTIONS(1689), - [aux_sym_ciphers_token1] = ACTIONS(1689), - [aux_sym_cipher_token1] = ACTIONS(1691), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1689), - [aux_sym_compression_token1] = ACTIONS(1689), - [aux_sym_connection_attempts_token1] = ACTIONS(1689), - [aux_sym_connect_timeout_token1] = ACTIONS(1689), - [aux_sym_control_master_token1] = ACTIONS(1689), - [aux_sym_control_path_token1] = ACTIONS(1689), - [aux_sym_control_persist_token1] = ACTIONS(1689), - [aux_sym_dynamic_forward_token1] = ACTIONS(1689), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1689), - [aux_sym_escape_char_token1] = ACTIONS(1689), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1689), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1689), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1689), - [aux_sym_forward_agent_token1] = ACTIONS(1689), - [aux_sym_forward_x11_token1] = ACTIONS(1691), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1689), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1689), - [aux_sym_gateway_ports_token1] = ACTIONS(1689), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1689), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1689), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1689), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1689), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1689), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1689), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1689), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1689), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1689), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1689), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1689), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1689), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1689), - [aux_sym_host_key_alias_token1] = ACTIONS(1689), - [aux_sym_hostname_token1] = ACTIONS(1689), - [aux_sym_identities_only_token1] = ACTIONS(1689), - [aux_sym_identity_agent_token1] = ACTIONS(1689), - [aux_sym_identity_file_token1] = ACTIONS(1689), - [aux_sym_ignore_unknown_token1] = ACTIONS(1689), - [aux_sym_include_token1] = ACTIONS(1689), - [aux_sym_ip_qos_token1] = ACTIONS(1689), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1689), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1689), - [aux_sym_kex_algorithms_token1] = ACTIONS(1689), - [aux_sym_known_hosts_command_token1] = ACTIONS(1689), - [aux_sym_local_command_token1] = ACTIONS(1689), - [aux_sym_local_forward_token1] = ACTIONS(1689), - [aux_sym_log_level_token1] = ACTIONS(1689), - [aux_sym_log_verbose_token1] = ACTIONS(1689), - [aux_sym_macs_token1] = ACTIONS(1689), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1689), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1689), - [aux_sym_password_authentication_token1] = ACTIONS(1689), - [aux_sym_permit_local_command_token1] = ACTIONS(1689), - [aux_sym_permit_remote_open_token1] = ACTIONS(1689), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1689), - [aux_sym_port_token1] = ACTIONS(1689), - [aux_sym_preferred_authentications_token1] = ACTIONS(1689), - [aux_sym_protocol_token1] = ACTIONS(1689), - [aux_sym_proxy_command_token1] = ACTIONS(1689), - [aux_sym_proxy_jump_token1] = ACTIONS(1689), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1689), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1689), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1689), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1689), - [aux_sym_rekey_limit_token1] = ACTIONS(1689), - [aux_sym_remote_command_token1] = ACTIONS(1689), - [aux_sym_remote_forward_token1] = ACTIONS(1689), - [aux_sym_request_tty_token1] = ACTIONS(1689), - [aux_sym_required_rsa_size_token1] = ACTIONS(1689), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1689), - [aux_sym_security_key_provider_token1] = ACTIONS(1689), - [aux_sym_send_env_token1] = ACTIONS(1689), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1689), - [aux_sym_server_alive_interval_token1] = ACTIONS(1689), - [aux_sym_session_type_token1] = ACTIONS(1689), - [aux_sym_set_env_token1] = ACTIONS(1689), - [aux_sym_stdin_null_token1] = ACTIONS(1689), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1689), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1689), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1689), - [aux_sym_syslog_facility_token1] = ACTIONS(1689), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1689), - [aux_sym_keep_alive_token1] = ACTIONS(1689), - [aux_sym_tunnel_token1] = ACTIONS(1691), - [aux_sym_tunnel_device_token1] = ACTIONS(1689), - [aux_sym_update_host_keys_token1] = ACTIONS(1689), - [aux_sym_use_keychain_token1] = ACTIONS(1689), - [aux_sym_use_roaming_token1] = ACTIONS(1689), - [aux_sym_user_token1] = ACTIONS(1691), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1689), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1689), - [aux_sym_visual_host_key_token1] = ACTIONS(1689), - [aux_sym_xauth_location_token1] = ACTIONS(1689), + [ts_builtin_sym_end] = ACTIONS(1694), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1696), + [anon_sym_DQUOTE] = ACTIONS(1698), + [aux_sym_match_token1] = ACTIONS(1694), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1694), + [aux_sym_address_family_token1] = ACTIONS(1694), + [aux_sym_batch_mode_token1] = ACTIONS(1694), + [aux_sym_bind_address_token1] = ACTIONS(1694), + [aux_sym_bind_interface_token1] = ACTIONS(1694), + [aux_sym_canonical_domains_token1] = ACTIONS(1694), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1694), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1694), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1694), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1694), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1694), + [aux_sym_certificate_file_token1] = ACTIONS(1694), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1694), + [aux_sym_check_host_ip_token1] = ACTIONS(1694), + [aux_sym_ciphers_token1] = ACTIONS(1694), + [aux_sym_cipher_token1] = ACTIONS(1696), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1694), + [aux_sym_compression_token1] = ACTIONS(1694), + [aux_sym_connection_attempts_token1] = ACTIONS(1694), + [aux_sym_connect_timeout_token1] = ACTIONS(1694), + [aux_sym_control_master_token1] = ACTIONS(1694), + [aux_sym_control_path_token1] = ACTIONS(1694), + [aux_sym_control_persist_token1] = ACTIONS(1694), + [aux_sym_dynamic_forward_token1] = ACTIONS(1694), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1694), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1694), + [aux_sym_escape_char_token1] = ACTIONS(1694), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1694), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1694), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1694), + [aux_sym_forward_agent_token1] = ACTIONS(1694), + [aux_sym_forward_x11_token1] = ACTIONS(1696), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1694), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1694), + [aux_sym_gateway_ports_token1] = ACTIONS(1694), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1694), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1694), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1694), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1694), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1694), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1694), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1694), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1694), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1694), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1694), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1694), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1694), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1694), + [aux_sym_host_key_alias_token1] = ACTIONS(1694), + [aux_sym_hostname_token1] = ACTIONS(1694), + [aux_sym_identities_only_token1] = ACTIONS(1694), + [aux_sym_identity_agent_token1] = ACTIONS(1694), + [aux_sym_identity_file_token1] = ACTIONS(1694), + [aux_sym_ignore_unknown_token1] = ACTIONS(1694), + [aux_sym_include_token1] = ACTIONS(1694), + [aux_sym_ip_qos_token1] = ACTIONS(1694), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1694), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1694), + [aux_sym_kex_algorithms_token1] = ACTIONS(1694), + [aux_sym_known_hosts_command_token1] = ACTIONS(1694), + [aux_sym_local_command_token1] = ACTIONS(1694), + [aux_sym_local_forward_token1] = ACTIONS(1694), + [aux_sym_log_level_token1] = ACTIONS(1694), + [aux_sym_log_verbose_token1] = ACTIONS(1694), + [aux_sym_macs_token1] = ACTIONS(1694), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1694), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1694), + [aux_sym_password_authentication_token1] = ACTIONS(1694), + [aux_sym_permit_local_command_token1] = ACTIONS(1694), + [aux_sym_permit_remote_open_token1] = ACTIONS(1694), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1694), + [aux_sym_port_token1] = ACTIONS(1694), + [aux_sym_preferred_authentications_token1] = ACTIONS(1694), + [aux_sym_protocol_token1] = ACTIONS(1694), + [aux_sym_proxy_command_token1] = ACTIONS(1694), + [aux_sym_proxy_jump_token1] = ACTIONS(1694), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1694), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1694), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1694), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1694), + [aux_sym_rekey_limit_token1] = ACTIONS(1694), + [aux_sym_remote_command_token1] = ACTIONS(1694), + [aux_sym_remote_forward_token1] = ACTIONS(1694), + [aux_sym_request_tty_token1] = ACTIONS(1694), + [aux_sym_required_rsa_size_token1] = ACTIONS(1694), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1694), + [aux_sym_security_key_provider_token1] = ACTIONS(1694), + [aux_sym_send_env_token1] = ACTIONS(1694), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1694), + [aux_sym_server_alive_interval_token1] = ACTIONS(1694), + [aux_sym_session_type_token1] = ACTIONS(1694), + [aux_sym_set_env_token1] = ACTIONS(1694), + [aux_sym_stdin_null_token1] = ACTIONS(1694), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1694), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1694), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1694), + [aux_sym_syslog_facility_token1] = ACTIONS(1694), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1694), + [aux_sym_keep_alive_token1] = ACTIONS(1694), + [aux_sym_tunnel_token1] = ACTIONS(1696), + [aux_sym_tunnel_device_token1] = ACTIONS(1694), + [aux_sym_update_host_keys_token1] = ACTIONS(1694), + [aux_sym_use_keychain_token1] = ACTIONS(1694), + [aux_sym_use_roaming_token1] = ACTIONS(1694), + [aux_sym_user_token1] = ACTIONS(1696), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1694), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1694), + [aux_sym_visual_host_key_token1] = ACTIONS(1694), + [aux_sym_xauth_location_token1] = ACTIONS(1694), }, [193] = { - [ts_builtin_sym_end] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1697), - [anon_sym_DQUOTE] = ACTIONS(1699), - [aux_sym_match_token1] = ACTIONS(1695), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1695), - [aux_sym_address_family_token1] = ACTIONS(1695), - [aux_sym_batch_mode_token1] = ACTIONS(1695), - [aux_sym_bind_address_token1] = ACTIONS(1695), - [aux_sym_bind_interface_token1] = ACTIONS(1695), - [aux_sym_canonical_domains_token1] = ACTIONS(1695), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1695), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1695), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1695), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1695), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1695), - [aux_sym_certificate_file_token1] = ACTIONS(1695), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1695), - [aux_sym_check_host_ip_token1] = ACTIONS(1695), - [aux_sym_ciphers_token1] = ACTIONS(1695), - [aux_sym_cipher_token1] = ACTIONS(1697), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1695), - [aux_sym_compression_token1] = ACTIONS(1695), - [aux_sym_connection_attempts_token1] = ACTIONS(1695), - [aux_sym_connect_timeout_token1] = ACTIONS(1695), - [aux_sym_control_master_token1] = ACTIONS(1695), - [aux_sym_control_path_token1] = ACTIONS(1695), - [aux_sym_control_persist_token1] = ACTIONS(1695), - [aux_sym_dynamic_forward_token1] = ACTIONS(1695), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1695), - [aux_sym_escape_char_token1] = ACTIONS(1695), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1695), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1695), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1695), - [aux_sym_forward_agent_token1] = ACTIONS(1695), - [aux_sym_forward_x11_token1] = ACTIONS(1697), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1695), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1695), - [aux_sym_gateway_ports_token1] = ACTIONS(1695), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1695), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1695), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1695), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1695), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1695), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1695), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1695), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1695), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1695), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1695), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1695), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1695), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1695), - [aux_sym_host_key_alias_token1] = ACTIONS(1695), - [aux_sym_hostname_token1] = ACTIONS(1695), - [aux_sym_identities_only_token1] = ACTIONS(1695), - [aux_sym_identity_agent_token1] = ACTIONS(1695), - [aux_sym_identity_file_token1] = ACTIONS(1695), - [aux_sym_ignore_unknown_token1] = ACTIONS(1695), - [aux_sym_include_token1] = ACTIONS(1695), - [aux_sym_ip_qos_token1] = ACTIONS(1695), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1695), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1695), - [aux_sym_kex_algorithms_token1] = ACTIONS(1695), - [aux_sym_known_hosts_command_token1] = ACTIONS(1695), - [aux_sym_local_command_token1] = ACTIONS(1695), - [aux_sym_local_forward_token1] = ACTIONS(1695), - [aux_sym_log_level_token1] = ACTIONS(1695), - [aux_sym_log_verbose_token1] = ACTIONS(1695), - [aux_sym_macs_token1] = ACTIONS(1695), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1695), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1695), - [aux_sym_password_authentication_token1] = ACTIONS(1695), - [aux_sym_permit_local_command_token1] = ACTIONS(1695), - [aux_sym_permit_remote_open_token1] = ACTIONS(1695), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1695), - [aux_sym_port_token1] = ACTIONS(1695), - [aux_sym_preferred_authentications_token1] = ACTIONS(1695), - [aux_sym_protocol_token1] = ACTIONS(1695), - [aux_sym_proxy_command_token1] = ACTIONS(1695), - [aux_sym_proxy_jump_token1] = ACTIONS(1695), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1695), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1695), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1695), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1695), - [aux_sym_rekey_limit_token1] = ACTIONS(1695), - [aux_sym_remote_command_token1] = ACTIONS(1695), - [aux_sym_remote_forward_token1] = ACTIONS(1695), - [aux_sym_request_tty_token1] = ACTIONS(1695), - [aux_sym_required_rsa_size_token1] = ACTIONS(1695), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1695), - [aux_sym_security_key_provider_token1] = ACTIONS(1695), - [aux_sym_send_env_token1] = ACTIONS(1695), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1695), - [aux_sym_server_alive_interval_token1] = ACTIONS(1695), - [aux_sym_session_type_token1] = ACTIONS(1695), - [aux_sym_set_env_token1] = ACTIONS(1695), - [aux_sym_stdin_null_token1] = ACTIONS(1695), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1695), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1695), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1695), - [aux_sym_syslog_facility_token1] = ACTIONS(1695), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1695), - [aux_sym_keep_alive_token1] = ACTIONS(1695), - [aux_sym_tunnel_token1] = ACTIONS(1697), - [aux_sym_tunnel_device_token1] = ACTIONS(1695), - [aux_sym_update_host_keys_token1] = ACTIONS(1695), - [aux_sym_use_keychain_token1] = ACTIONS(1695), - [aux_sym_use_roaming_token1] = ACTIONS(1695), - [aux_sym_user_token1] = ACTIONS(1697), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1695), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1695), - [aux_sym_visual_host_key_token1] = ACTIONS(1695), - [aux_sym_xauth_location_token1] = ACTIONS(1695), + [ts_builtin_sym_end] = ACTIONS(1700), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(1704), + [aux_sym_match_token1] = ACTIONS(1700), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1700), + [aux_sym_address_family_token1] = ACTIONS(1700), + [aux_sym_batch_mode_token1] = ACTIONS(1700), + [aux_sym_bind_address_token1] = ACTIONS(1700), + [aux_sym_bind_interface_token1] = ACTIONS(1700), + [aux_sym_canonical_domains_token1] = ACTIONS(1700), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1700), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1700), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1700), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1700), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1700), + [aux_sym_certificate_file_token1] = ACTIONS(1700), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1700), + [aux_sym_check_host_ip_token1] = ACTIONS(1700), + [aux_sym_ciphers_token1] = ACTIONS(1700), + [aux_sym_cipher_token1] = ACTIONS(1702), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1700), + [aux_sym_compression_token1] = ACTIONS(1700), + [aux_sym_connection_attempts_token1] = ACTIONS(1700), + [aux_sym_connect_timeout_token1] = ACTIONS(1700), + [aux_sym_control_master_token1] = ACTIONS(1700), + [aux_sym_control_path_token1] = ACTIONS(1700), + [aux_sym_control_persist_token1] = ACTIONS(1700), + [aux_sym_dynamic_forward_token1] = ACTIONS(1700), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1700), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1700), + [aux_sym_escape_char_token1] = ACTIONS(1700), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1700), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1700), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1700), + [aux_sym_forward_agent_token1] = ACTIONS(1700), + [aux_sym_forward_x11_token1] = ACTIONS(1702), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1700), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1700), + [aux_sym_gateway_ports_token1] = ACTIONS(1700), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1700), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1700), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1700), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1700), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1700), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1700), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1700), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1700), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1700), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1700), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1700), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1700), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1700), + [aux_sym_host_key_alias_token1] = ACTIONS(1700), + [aux_sym_hostname_token1] = ACTIONS(1700), + [aux_sym_identities_only_token1] = ACTIONS(1700), + [aux_sym_identity_agent_token1] = ACTIONS(1700), + [aux_sym_identity_file_token1] = ACTIONS(1700), + [aux_sym_ignore_unknown_token1] = ACTIONS(1700), + [aux_sym_include_token1] = ACTIONS(1700), + [aux_sym_ip_qos_token1] = ACTIONS(1700), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1700), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1700), + [aux_sym_kex_algorithms_token1] = ACTIONS(1700), + [aux_sym_known_hosts_command_token1] = ACTIONS(1700), + [aux_sym_local_command_token1] = ACTIONS(1700), + [aux_sym_local_forward_token1] = ACTIONS(1700), + [aux_sym_log_level_token1] = ACTIONS(1700), + [aux_sym_log_verbose_token1] = ACTIONS(1700), + [aux_sym_macs_token1] = ACTIONS(1700), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1700), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1700), + [aux_sym_password_authentication_token1] = ACTIONS(1700), + [aux_sym_permit_local_command_token1] = ACTIONS(1700), + [aux_sym_permit_remote_open_token1] = ACTIONS(1700), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1700), + [aux_sym_port_token1] = ACTIONS(1700), + [aux_sym_preferred_authentications_token1] = ACTIONS(1700), + [aux_sym_protocol_token1] = ACTIONS(1700), + [aux_sym_proxy_command_token1] = ACTIONS(1700), + [aux_sym_proxy_jump_token1] = ACTIONS(1700), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1700), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1700), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1700), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1700), + [aux_sym_rekey_limit_token1] = ACTIONS(1700), + [aux_sym_remote_command_token1] = ACTIONS(1700), + [aux_sym_remote_forward_token1] = ACTIONS(1700), + [aux_sym_request_tty_token1] = ACTIONS(1700), + [aux_sym_required_rsa_size_token1] = ACTIONS(1700), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1700), + [aux_sym_security_key_provider_token1] = ACTIONS(1700), + [aux_sym_send_env_token1] = ACTIONS(1700), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1700), + [aux_sym_server_alive_interval_token1] = ACTIONS(1700), + [aux_sym_session_type_token1] = ACTIONS(1700), + [aux_sym_set_env_token1] = ACTIONS(1700), + [aux_sym_stdin_null_token1] = ACTIONS(1700), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1700), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1700), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1700), + [aux_sym_syslog_facility_token1] = ACTIONS(1700), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1700), + [aux_sym_keep_alive_token1] = ACTIONS(1700), + [aux_sym_tunnel_token1] = ACTIONS(1702), + [aux_sym_tunnel_device_token1] = ACTIONS(1700), + [aux_sym_update_host_keys_token1] = ACTIONS(1700), + [aux_sym_use_keychain_token1] = ACTIONS(1700), + [aux_sym_use_roaming_token1] = ACTIONS(1700), + [aux_sym_user_token1] = ACTIONS(1702), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1700), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1700), + [aux_sym_visual_host_key_token1] = ACTIONS(1700), + [aux_sym_xauth_location_token1] = ACTIONS(1700), }, [194] = { - [ts_builtin_sym_end] = ACTIONS(1701), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1705), - [aux_sym_match_token1] = ACTIONS(1701), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1701), - [aux_sym_address_family_token1] = ACTIONS(1701), - [aux_sym_batch_mode_token1] = ACTIONS(1701), - [aux_sym_bind_address_token1] = ACTIONS(1701), - [aux_sym_bind_interface_token1] = ACTIONS(1701), - [aux_sym_canonical_domains_token1] = ACTIONS(1701), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1701), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1701), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1701), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1701), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1701), - [aux_sym_certificate_file_token1] = ACTIONS(1701), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1701), - [aux_sym_check_host_ip_token1] = ACTIONS(1701), - [aux_sym_ciphers_token1] = ACTIONS(1701), - [aux_sym_cipher_token1] = ACTIONS(1703), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1701), - [aux_sym_compression_token1] = ACTIONS(1701), - [aux_sym_connection_attempts_token1] = ACTIONS(1701), - [aux_sym_connect_timeout_token1] = ACTIONS(1701), - [aux_sym_control_master_token1] = ACTIONS(1701), - [aux_sym_control_path_token1] = ACTIONS(1701), - [aux_sym_control_persist_token1] = ACTIONS(1701), - [aux_sym_dynamic_forward_token1] = ACTIONS(1701), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1701), - [aux_sym_escape_char_token1] = ACTIONS(1701), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1701), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1701), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1701), - [aux_sym_forward_agent_token1] = ACTIONS(1701), - [aux_sym_forward_x11_token1] = ACTIONS(1703), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1701), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1701), - [aux_sym_gateway_ports_token1] = ACTIONS(1701), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1701), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1701), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1701), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1701), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1701), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1701), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1701), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1701), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1701), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1701), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1701), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1701), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1701), - [aux_sym_host_key_alias_token1] = ACTIONS(1701), - [aux_sym_hostname_token1] = ACTIONS(1701), - [aux_sym_identities_only_token1] = ACTIONS(1701), - [aux_sym_identity_agent_token1] = ACTIONS(1701), - [aux_sym_identity_file_token1] = ACTIONS(1701), - [aux_sym_ignore_unknown_token1] = ACTIONS(1701), - [aux_sym_include_token1] = ACTIONS(1701), - [aux_sym_ip_qos_token1] = ACTIONS(1701), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1701), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1701), - [aux_sym_kex_algorithms_token1] = ACTIONS(1701), - [aux_sym_known_hosts_command_token1] = ACTIONS(1701), - [aux_sym_local_command_token1] = ACTIONS(1701), - [aux_sym_local_forward_token1] = ACTIONS(1701), - [aux_sym_log_level_token1] = ACTIONS(1701), - [aux_sym_log_verbose_token1] = ACTIONS(1701), - [aux_sym_macs_token1] = ACTIONS(1701), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1701), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1701), - [aux_sym_password_authentication_token1] = ACTIONS(1701), - [aux_sym_permit_local_command_token1] = ACTIONS(1701), - [aux_sym_permit_remote_open_token1] = ACTIONS(1701), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1701), - [aux_sym_port_token1] = ACTIONS(1701), - [aux_sym_preferred_authentications_token1] = ACTIONS(1701), - [aux_sym_protocol_token1] = ACTIONS(1701), - [aux_sym_proxy_command_token1] = ACTIONS(1701), - [aux_sym_proxy_jump_token1] = ACTIONS(1701), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1701), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1701), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1701), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1701), - [aux_sym_rekey_limit_token1] = ACTIONS(1701), - [aux_sym_remote_command_token1] = ACTIONS(1701), - [aux_sym_remote_forward_token1] = ACTIONS(1701), - [aux_sym_request_tty_token1] = ACTIONS(1701), - [aux_sym_required_rsa_size_token1] = ACTIONS(1701), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1701), - [aux_sym_security_key_provider_token1] = ACTIONS(1701), - [aux_sym_send_env_token1] = ACTIONS(1701), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1701), - [aux_sym_server_alive_interval_token1] = ACTIONS(1701), - [aux_sym_session_type_token1] = ACTIONS(1701), - [aux_sym_set_env_token1] = ACTIONS(1701), - [aux_sym_stdin_null_token1] = ACTIONS(1701), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1701), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1701), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1701), - [aux_sym_syslog_facility_token1] = ACTIONS(1701), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1701), - [aux_sym_keep_alive_token1] = ACTIONS(1701), - [aux_sym_tunnel_token1] = ACTIONS(1703), - [aux_sym_tunnel_device_token1] = ACTIONS(1701), - [aux_sym_update_host_keys_token1] = ACTIONS(1701), - [aux_sym_use_keychain_token1] = ACTIONS(1701), - [aux_sym_use_roaming_token1] = ACTIONS(1701), - [aux_sym_user_token1] = ACTIONS(1703), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1701), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1701), - [aux_sym_visual_host_key_token1] = ACTIONS(1701), - [aux_sym_xauth_location_token1] = ACTIONS(1701), + [ts_builtin_sym_end] = ACTIONS(1706), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1710), + [aux_sym_match_token1] = ACTIONS(1706), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1706), + [aux_sym_address_family_token1] = ACTIONS(1706), + [aux_sym_batch_mode_token1] = ACTIONS(1706), + [aux_sym_bind_address_token1] = ACTIONS(1706), + [aux_sym_bind_interface_token1] = ACTIONS(1706), + [aux_sym_canonical_domains_token1] = ACTIONS(1706), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1706), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1706), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1706), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1706), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1706), + [aux_sym_certificate_file_token1] = ACTIONS(1706), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1706), + [aux_sym_check_host_ip_token1] = ACTIONS(1706), + [aux_sym_ciphers_token1] = ACTIONS(1706), + [aux_sym_cipher_token1] = ACTIONS(1708), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1706), + [aux_sym_compression_token1] = ACTIONS(1706), + [aux_sym_connection_attempts_token1] = ACTIONS(1706), + [aux_sym_connect_timeout_token1] = ACTIONS(1706), + [aux_sym_control_master_token1] = ACTIONS(1706), + [aux_sym_control_path_token1] = ACTIONS(1706), + [aux_sym_control_persist_token1] = ACTIONS(1706), + [aux_sym_dynamic_forward_token1] = ACTIONS(1706), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1706), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1706), + [aux_sym_escape_char_token1] = ACTIONS(1706), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1706), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1706), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1706), + [aux_sym_forward_agent_token1] = ACTIONS(1706), + [aux_sym_forward_x11_token1] = ACTIONS(1708), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1706), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1706), + [aux_sym_gateway_ports_token1] = ACTIONS(1706), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1706), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1706), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1706), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1706), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1706), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1706), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1706), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1706), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1706), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1706), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1706), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1706), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1706), + [aux_sym_host_key_alias_token1] = ACTIONS(1706), + [aux_sym_hostname_token1] = ACTIONS(1706), + [aux_sym_identities_only_token1] = ACTIONS(1706), + [aux_sym_identity_agent_token1] = ACTIONS(1706), + [aux_sym_identity_file_token1] = ACTIONS(1706), + [aux_sym_ignore_unknown_token1] = ACTIONS(1706), + [aux_sym_include_token1] = ACTIONS(1706), + [aux_sym_ip_qos_token1] = ACTIONS(1706), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1706), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1706), + [aux_sym_kex_algorithms_token1] = ACTIONS(1706), + [aux_sym_known_hosts_command_token1] = ACTIONS(1706), + [aux_sym_local_command_token1] = ACTIONS(1706), + [aux_sym_local_forward_token1] = ACTIONS(1706), + [aux_sym_log_level_token1] = ACTIONS(1706), + [aux_sym_log_verbose_token1] = ACTIONS(1706), + [aux_sym_macs_token1] = ACTIONS(1706), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1706), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1706), + [aux_sym_password_authentication_token1] = ACTIONS(1706), + [aux_sym_permit_local_command_token1] = ACTIONS(1706), + [aux_sym_permit_remote_open_token1] = ACTIONS(1706), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1706), + [aux_sym_port_token1] = ACTIONS(1706), + [aux_sym_preferred_authentications_token1] = ACTIONS(1706), + [aux_sym_protocol_token1] = ACTIONS(1706), + [aux_sym_proxy_command_token1] = ACTIONS(1706), + [aux_sym_proxy_jump_token1] = ACTIONS(1706), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1706), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1706), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1706), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1706), + [aux_sym_rekey_limit_token1] = ACTIONS(1706), + [aux_sym_remote_command_token1] = ACTIONS(1706), + [aux_sym_remote_forward_token1] = ACTIONS(1706), + [aux_sym_request_tty_token1] = ACTIONS(1706), + [aux_sym_required_rsa_size_token1] = ACTIONS(1706), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1706), + [aux_sym_security_key_provider_token1] = ACTIONS(1706), + [aux_sym_send_env_token1] = ACTIONS(1706), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1706), + [aux_sym_server_alive_interval_token1] = ACTIONS(1706), + [aux_sym_session_type_token1] = ACTIONS(1706), + [aux_sym_set_env_token1] = ACTIONS(1706), + [aux_sym_stdin_null_token1] = ACTIONS(1706), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1706), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1706), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1706), + [aux_sym_syslog_facility_token1] = ACTIONS(1706), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1706), + [aux_sym_keep_alive_token1] = ACTIONS(1706), + [aux_sym_tunnel_token1] = ACTIONS(1708), + [aux_sym_tunnel_device_token1] = ACTIONS(1706), + [aux_sym_update_host_keys_token1] = ACTIONS(1706), + [aux_sym_use_keychain_token1] = ACTIONS(1706), + [aux_sym_use_roaming_token1] = ACTIONS(1706), + [aux_sym_user_token1] = ACTIONS(1708), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1706), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1706), + [aux_sym_visual_host_key_token1] = ACTIONS(1706), + [aux_sym_xauth_location_token1] = ACTIONS(1706), }, [195] = { - [ts_builtin_sym_end] = ACTIONS(1707), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1709), - [anon_sym_DQUOTE] = ACTIONS(1711), - [aux_sym_match_token1] = ACTIONS(1707), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1707), - [aux_sym_address_family_token1] = ACTIONS(1707), - [aux_sym_batch_mode_token1] = ACTIONS(1707), - [aux_sym_bind_address_token1] = ACTIONS(1707), - [aux_sym_bind_interface_token1] = ACTIONS(1707), - [aux_sym_canonical_domains_token1] = ACTIONS(1707), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1707), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1707), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1707), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1707), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1707), - [aux_sym_certificate_file_token1] = ACTIONS(1707), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1707), - [aux_sym_check_host_ip_token1] = ACTIONS(1707), - [aux_sym_ciphers_token1] = ACTIONS(1707), - [aux_sym_cipher_token1] = ACTIONS(1709), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1707), - [aux_sym_compression_token1] = ACTIONS(1707), - [aux_sym_connection_attempts_token1] = ACTIONS(1707), - [aux_sym_connect_timeout_token1] = ACTIONS(1707), - [aux_sym_control_master_token1] = ACTIONS(1707), - [aux_sym_control_path_token1] = ACTIONS(1707), - [aux_sym_control_persist_token1] = ACTIONS(1707), - [aux_sym_dynamic_forward_token1] = ACTIONS(1707), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1707), - [aux_sym_escape_char_token1] = ACTIONS(1707), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1707), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1707), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1707), - [aux_sym_forward_agent_token1] = ACTIONS(1707), - [aux_sym_forward_x11_token1] = ACTIONS(1709), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1707), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1707), - [aux_sym_gateway_ports_token1] = ACTIONS(1707), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1707), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1707), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1707), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1707), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1707), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1707), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1707), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1707), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1707), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1707), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1707), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1707), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1707), - [aux_sym_host_key_alias_token1] = ACTIONS(1707), - [aux_sym_hostname_token1] = ACTIONS(1707), - [aux_sym_identities_only_token1] = ACTIONS(1707), - [aux_sym_identity_agent_token1] = ACTIONS(1707), - [aux_sym_identity_file_token1] = ACTIONS(1707), - [aux_sym_ignore_unknown_token1] = ACTIONS(1707), - [aux_sym_include_token1] = ACTIONS(1707), - [aux_sym_ip_qos_token1] = ACTIONS(1707), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1707), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1707), - [aux_sym_kex_algorithms_token1] = ACTIONS(1707), - [aux_sym_known_hosts_command_token1] = ACTIONS(1707), - [aux_sym_local_command_token1] = ACTIONS(1707), - [aux_sym_local_forward_token1] = ACTIONS(1707), - [aux_sym_log_level_token1] = ACTIONS(1707), - [aux_sym_log_verbose_token1] = ACTIONS(1707), - [aux_sym_macs_token1] = ACTIONS(1707), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1707), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1707), - [aux_sym_password_authentication_token1] = ACTIONS(1707), - [aux_sym_permit_local_command_token1] = ACTIONS(1707), - [aux_sym_permit_remote_open_token1] = ACTIONS(1707), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1707), - [aux_sym_port_token1] = ACTIONS(1707), - [aux_sym_preferred_authentications_token1] = ACTIONS(1707), - [aux_sym_protocol_token1] = ACTIONS(1707), - [aux_sym_proxy_command_token1] = ACTIONS(1707), - [aux_sym_proxy_jump_token1] = ACTIONS(1707), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1707), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1707), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1707), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1707), - [aux_sym_rekey_limit_token1] = ACTIONS(1707), - [aux_sym_remote_command_token1] = ACTIONS(1707), - [aux_sym_remote_forward_token1] = ACTIONS(1707), - [aux_sym_request_tty_token1] = ACTIONS(1707), - [aux_sym_required_rsa_size_token1] = ACTIONS(1707), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1707), - [aux_sym_security_key_provider_token1] = ACTIONS(1707), - [aux_sym_send_env_token1] = ACTIONS(1707), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1707), - [aux_sym_server_alive_interval_token1] = ACTIONS(1707), - [aux_sym_session_type_token1] = ACTIONS(1707), - [aux_sym_set_env_token1] = ACTIONS(1707), - [aux_sym_stdin_null_token1] = ACTIONS(1707), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1707), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1707), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1707), - [aux_sym_syslog_facility_token1] = ACTIONS(1707), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1707), - [aux_sym_keep_alive_token1] = ACTIONS(1707), - [aux_sym_tunnel_token1] = ACTIONS(1709), - [aux_sym_tunnel_device_token1] = ACTIONS(1707), - [aux_sym_update_host_keys_token1] = ACTIONS(1707), - [aux_sym_use_keychain_token1] = ACTIONS(1707), - [aux_sym_use_roaming_token1] = ACTIONS(1707), - [aux_sym_user_token1] = ACTIONS(1709), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1707), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1707), - [aux_sym_visual_host_key_token1] = ACTIONS(1707), - [aux_sym_xauth_location_token1] = ACTIONS(1707), + [ts_builtin_sym_end] = ACTIONS(1712), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1714), + [anon_sym_DQUOTE] = ACTIONS(1716), + [aux_sym_match_token1] = ACTIONS(1712), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1712), + [aux_sym_address_family_token1] = ACTIONS(1712), + [aux_sym_batch_mode_token1] = ACTIONS(1712), + [aux_sym_bind_address_token1] = ACTIONS(1712), + [aux_sym_bind_interface_token1] = ACTIONS(1712), + [aux_sym_canonical_domains_token1] = ACTIONS(1712), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1712), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1712), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1712), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1712), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1712), + [aux_sym_certificate_file_token1] = ACTIONS(1712), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1712), + [aux_sym_check_host_ip_token1] = ACTIONS(1712), + [aux_sym_ciphers_token1] = ACTIONS(1712), + [aux_sym_cipher_token1] = ACTIONS(1714), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1712), + [aux_sym_compression_token1] = ACTIONS(1712), + [aux_sym_connection_attempts_token1] = ACTIONS(1712), + [aux_sym_connect_timeout_token1] = ACTIONS(1712), + [aux_sym_control_master_token1] = ACTIONS(1712), + [aux_sym_control_path_token1] = ACTIONS(1712), + [aux_sym_control_persist_token1] = ACTIONS(1712), + [aux_sym_dynamic_forward_token1] = ACTIONS(1712), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1712), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1712), + [aux_sym_escape_char_token1] = ACTIONS(1712), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1712), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1712), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1712), + [aux_sym_forward_agent_token1] = ACTIONS(1712), + [aux_sym_forward_x11_token1] = ACTIONS(1714), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1712), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1712), + [aux_sym_gateway_ports_token1] = ACTIONS(1712), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1712), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1712), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1712), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1712), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1712), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1712), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1712), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1712), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1712), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1712), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1712), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1712), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1712), + [aux_sym_host_key_alias_token1] = ACTIONS(1712), + [aux_sym_hostname_token1] = ACTIONS(1712), + [aux_sym_identities_only_token1] = ACTIONS(1712), + [aux_sym_identity_agent_token1] = ACTIONS(1712), + [aux_sym_identity_file_token1] = ACTIONS(1712), + [aux_sym_ignore_unknown_token1] = ACTIONS(1712), + [aux_sym_include_token1] = ACTIONS(1712), + [aux_sym_ip_qos_token1] = ACTIONS(1712), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1712), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1712), + [aux_sym_kex_algorithms_token1] = ACTIONS(1712), + [aux_sym_known_hosts_command_token1] = ACTIONS(1712), + [aux_sym_local_command_token1] = ACTIONS(1712), + [aux_sym_local_forward_token1] = ACTIONS(1712), + [aux_sym_log_level_token1] = ACTIONS(1712), + [aux_sym_log_verbose_token1] = ACTIONS(1712), + [aux_sym_macs_token1] = ACTIONS(1712), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1712), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1712), + [aux_sym_password_authentication_token1] = ACTIONS(1712), + [aux_sym_permit_local_command_token1] = ACTIONS(1712), + [aux_sym_permit_remote_open_token1] = ACTIONS(1712), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1712), + [aux_sym_port_token1] = ACTIONS(1712), + [aux_sym_preferred_authentications_token1] = ACTIONS(1712), + [aux_sym_protocol_token1] = ACTIONS(1712), + [aux_sym_proxy_command_token1] = ACTIONS(1712), + [aux_sym_proxy_jump_token1] = ACTIONS(1712), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1712), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1712), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1712), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1712), + [aux_sym_rekey_limit_token1] = ACTIONS(1712), + [aux_sym_remote_command_token1] = ACTIONS(1712), + [aux_sym_remote_forward_token1] = ACTIONS(1712), + [aux_sym_request_tty_token1] = ACTIONS(1712), + [aux_sym_required_rsa_size_token1] = ACTIONS(1712), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1712), + [aux_sym_security_key_provider_token1] = ACTIONS(1712), + [aux_sym_send_env_token1] = ACTIONS(1712), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1712), + [aux_sym_server_alive_interval_token1] = ACTIONS(1712), + [aux_sym_session_type_token1] = ACTIONS(1712), + [aux_sym_set_env_token1] = ACTIONS(1712), + [aux_sym_stdin_null_token1] = ACTIONS(1712), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1712), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1712), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1712), + [aux_sym_syslog_facility_token1] = ACTIONS(1712), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1712), + [aux_sym_keep_alive_token1] = ACTIONS(1712), + [aux_sym_tunnel_token1] = ACTIONS(1714), + [aux_sym_tunnel_device_token1] = ACTIONS(1712), + [aux_sym_update_host_keys_token1] = ACTIONS(1712), + [aux_sym_use_keychain_token1] = ACTIONS(1712), + [aux_sym_use_roaming_token1] = ACTIONS(1712), + [aux_sym_user_token1] = ACTIONS(1714), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1712), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1712), + [aux_sym_visual_host_key_token1] = ACTIONS(1712), + [aux_sym_xauth_location_token1] = ACTIONS(1712), }, [196] = { - [ts_builtin_sym_end] = ACTIONS(1713), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(1717), - [aux_sym_match_token1] = ACTIONS(1713), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1713), - [aux_sym_address_family_token1] = ACTIONS(1713), - [aux_sym_batch_mode_token1] = ACTIONS(1713), - [aux_sym_bind_address_token1] = ACTIONS(1713), - [aux_sym_bind_interface_token1] = ACTIONS(1713), - [aux_sym_canonical_domains_token1] = ACTIONS(1713), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1713), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1713), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1713), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1713), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1713), - [aux_sym_certificate_file_token1] = ACTIONS(1713), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1713), - [aux_sym_check_host_ip_token1] = ACTIONS(1713), - [aux_sym_ciphers_token1] = ACTIONS(1713), - [aux_sym_cipher_token1] = ACTIONS(1715), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1713), - [aux_sym_compression_token1] = ACTIONS(1713), - [aux_sym_connection_attempts_token1] = ACTIONS(1713), - [aux_sym_connect_timeout_token1] = ACTIONS(1713), - [aux_sym_control_master_token1] = ACTIONS(1713), - [aux_sym_control_path_token1] = ACTIONS(1713), - [aux_sym_control_persist_token1] = ACTIONS(1713), - [aux_sym_dynamic_forward_token1] = ACTIONS(1713), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1713), - [aux_sym_escape_char_token1] = ACTIONS(1713), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1713), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1713), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1713), - [aux_sym_forward_agent_token1] = ACTIONS(1713), - [aux_sym_forward_x11_token1] = ACTIONS(1715), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1713), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1713), - [aux_sym_gateway_ports_token1] = ACTIONS(1713), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1713), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1713), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1713), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1713), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1713), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1713), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1713), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1713), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1713), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1713), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1713), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1713), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1713), - [aux_sym_host_key_alias_token1] = ACTIONS(1713), - [aux_sym_hostname_token1] = ACTIONS(1713), - [aux_sym_identities_only_token1] = ACTIONS(1713), - [aux_sym_identity_agent_token1] = ACTIONS(1713), - [aux_sym_identity_file_token1] = ACTIONS(1713), - [aux_sym_ignore_unknown_token1] = ACTIONS(1713), - [aux_sym_include_token1] = ACTIONS(1713), - [aux_sym_ip_qos_token1] = ACTIONS(1713), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1713), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1713), - [aux_sym_kex_algorithms_token1] = ACTIONS(1713), - [aux_sym_known_hosts_command_token1] = ACTIONS(1713), - [aux_sym_local_command_token1] = ACTIONS(1713), - [aux_sym_local_forward_token1] = ACTIONS(1713), - [aux_sym_log_level_token1] = ACTIONS(1713), - [aux_sym_log_verbose_token1] = ACTIONS(1713), - [aux_sym_macs_token1] = ACTIONS(1713), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1713), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1713), - [aux_sym_password_authentication_token1] = ACTIONS(1713), - [aux_sym_permit_local_command_token1] = ACTIONS(1713), - [aux_sym_permit_remote_open_token1] = ACTIONS(1713), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1713), - [aux_sym_port_token1] = ACTIONS(1713), - [aux_sym_preferred_authentications_token1] = ACTIONS(1713), - [aux_sym_protocol_token1] = ACTIONS(1713), - [aux_sym_proxy_command_token1] = ACTIONS(1713), - [aux_sym_proxy_jump_token1] = ACTIONS(1713), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1713), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1713), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1713), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1713), - [aux_sym_rekey_limit_token1] = ACTIONS(1713), - [aux_sym_remote_command_token1] = ACTIONS(1713), - [aux_sym_remote_forward_token1] = ACTIONS(1713), - [aux_sym_request_tty_token1] = ACTIONS(1713), - [aux_sym_required_rsa_size_token1] = ACTIONS(1713), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1713), - [aux_sym_security_key_provider_token1] = ACTIONS(1713), - [aux_sym_send_env_token1] = ACTIONS(1713), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1713), - [aux_sym_server_alive_interval_token1] = ACTIONS(1713), - [aux_sym_session_type_token1] = ACTIONS(1713), - [aux_sym_set_env_token1] = ACTIONS(1713), - [aux_sym_stdin_null_token1] = ACTIONS(1713), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1713), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1713), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1713), - [aux_sym_syslog_facility_token1] = ACTIONS(1713), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1713), - [aux_sym_keep_alive_token1] = ACTIONS(1713), - [aux_sym_tunnel_token1] = ACTIONS(1715), - [aux_sym_tunnel_device_token1] = ACTIONS(1713), - [aux_sym_update_host_keys_token1] = ACTIONS(1713), - [aux_sym_use_keychain_token1] = ACTIONS(1713), - [aux_sym_use_roaming_token1] = ACTIONS(1713), - [aux_sym_user_token1] = ACTIONS(1715), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1713), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1713), - [aux_sym_visual_host_key_token1] = ACTIONS(1713), - [aux_sym_xauth_location_token1] = ACTIONS(1713), + [ts_builtin_sym_end] = ACTIONS(1718), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1720), + [anon_sym_DQUOTE] = ACTIONS(1722), + [aux_sym_match_token1] = ACTIONS(1718), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1718), + [aux_sym_address_family_token1] = ACTIONS(1718), + [aux_sym_batch_mode_token1] = ACTIONS(1718), + [aux_sym_bind_address_token1] = ACTIONS(1718), + [aux_sym_bind_interface_token1] = ACTIONS(1718), + [aux_sym_canonical_domains_token1] = ACTIONS(1718), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1718), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1718), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1718), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1718), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1718), + [aux_sym_certificate_file_token1] = ACTIONS(1718), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1718), + [aux_sym_check_host_ip_token1] = ACTIONS(1718), + [aux_sym_ciphers_token1] = ACTIONS(1718), + [aux_sym_cipher_token1] = ACTIONS(1720), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1718), + [aux_sym_compression_token1] = ACTIONS(1718), + [aux_sym_connection_attempts_token1] = ACTIONS(1718), + [aux_sym_connect_timeout_token1] = ACTIONS(1718), + [aux_sym_control_master_token1] = ACTIONS(1718), + [aux_sym_control_path_token1] = ACTIONS(1718), + [aux_sym_control_persist_token1] = ACTIONS(1718), + [aux_sym_dynamic_forward_token1] = ACTIONS(1718), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1718), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1718), + [aux_sym_escape_char_token1] = ACTIONS(1718), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1718), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1718), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1718), + [aux_sym_forward_agent_token1] = ACTIONS(1718), + [aux_sym_forward_x11_token1] = ACTIONS(1720), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1718), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1718), + [aux_sym_gateway_ports_token1] = ACTIONS(1718), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1718), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1718), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1718), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1718), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1718), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1718), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1718), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1718), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1718), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1718), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1718), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1718), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1718), + [aux_sym_host_key_alias_token1] = ACTIONS(1718), + [aux_sym_hostname_token1] = ACTIONS(1718), + [aux_sym_identities_only_token1] = ACTIONS(1718), + [aux_sym_identity_agent_token1] = ACTIONS(1718), + [aux_sym_identity_file_token1] = ACTIONS(1718), + [aux_sym_ignore_unknown_token1] = ACTIONS(1718), + [aux_sym_include_token1] = ACTIONS(1718), + [aux_sym_ip_qos_token1] = ACTIONS(1718), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1718), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1718), + [aux_sym_kex_algorithms_token1] = ACTIONS(1718), + [aux_sym_known_hosts_command_token1] = ACTIONS(1718), + [aux_sym_local_command_token1] = ACTIONS(1718), + [aux_sym_local_forward_token1] = ACTIONS(1718), + [aux_sym_log_level_token1] = ACTIONS(1718), + [aux_sym_log_verbose_token1] = ACTIONS(1718), + [aux_sym_macs_token1] = ACTIONS(1718), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1718), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1718), + [aux_sym_password_authentication_token1] = ACTIONS(1718), + [aux_sym_permit_local_command_token1] = ACTIONS(1718), + [aux_sym_permit_remote_open_token1] = ACTIONS(1718), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1718), + [aux_sym_port_token1] = ACTIONS(1718), + [aux_sym_preferred_authentications_token1] = ACTIONS(1718), + [aux_sym_protocol_token1] = ACTIONS(1718), + [aux_sym_proxy_command_token1] = ACTIONS(1718), + [aux_sym_proxy_jump_token1] = ACTIONS(1718), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1718), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1718), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1718), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1718), + [aux_sym_rekey_limit_token1] = ACTIONS(1718), + [aux_sym_remote_command_token1] = ACTIONS(1718), + [aux_sym_remote_forward_token1] = ACTIONS(1718), + [aux_sym_request_tty_token1] = ACTIONS(1718), + [aux_sym_required_rsa_size_token1] = ACTIONS(1718), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1718), + [aux_sym_security_key_provider_token1] = ACTIONS(1718), + [aux_sym_send_env_token1] = ACTIONS(1718), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1718), + [aux_sym_server_alive_interval_token1] = ACTIONS(1718), + [aux_sym_session_type_token1] = ACTIONS(1718), + [aux_sym_set_env_token1] = ACTIONS(1718), + [aux_sym_stdin_null_token1] = ACTIONS(1718), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1718), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1718), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1718), + [aux_sym_syslog_facility_token1] = ACTIONS(1718), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1718), + [aux_sym_keep_alive_token1] = ACTIONS(1718), + [aux_sym_tunnel_token1] = ACTIONS(1720), + [aux_sym_tunnel_device_token1] = ACTIONS(1718), + [aux_sym_update_host_keys_token1] = ACTIONS(1718), + [aux_sym_use_keychain_token1] = ACTIONS(1718), + [aux_sym_use_roaming_token1] = ACTIONS(1718), + [aux_sym_user_token1] = ACTIONS(1720), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1718), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1718), + [aux_sym_visual_host_key_token1] = ACTIONS(1718), + [aux_sym_xauth_location_token1] = ACTIONS(1718), }, [197] = { - [ts_builtin_sym_end] = ACTIONS(1719), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1723), - [aux_sym_match_token1] = ACTIONS(1719), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1719), - [aux_sym_address_family_token1] = ACTIONS(1719), - [aux_sym_batch_mode_token1] = ACTIONS(1719), - [aux_sym_bind_address_token1] = ACTIONS(1719), - [aux_sym_bind_interface_token1] = ACTIONS(1719), - [aux_sym_canonical_domains_token1] = ACTIONS(1719), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1719), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1719), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1719), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1719), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1719), - [aux_sym_certificate_file_token1] = ACTIONS(1719), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1719), - [aux_sym_check_host_ip_token1] = ACTIONS(1719), - [aux_sym_ciphers_token1] = ACTIONS(1719), - [aux_sym_cipher_token1] = ACTIONS(1721), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1719), - [aux_sym_compression_token1] = ACTIONS(1719), - [aux_sym_connection_attempts_token1] = ACTIONS(1719), - [aux_sym_connect_timeout_token1] = ACTIONS(1719), - [aux_sym_control_master_token1] = ACTIONS(1719), - [aux_sym_control_path_token1] = ACTIONS(1719), - [aux_sym_control_persist_token1] = ACTIONS(1719), - [aux_sym_dynamic_forward_token1] = ACTIONS(1719), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1719), - [aux_sym_escape_char_token1] = ACTIONS(1719), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1719), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1719), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1719), - [aux_sym_forward_agent_token1] = ACTIONS(1719), - [aux_sym_forward_x11_token1] = ACTIONS(1721), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1719), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1719), - [aux_sym_gateway_ports_token1] = ACTIONS(1719), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1719), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1719), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1719), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1719), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1719), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1719), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1719), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1719), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1719), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1719), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1719), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1719), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1719), - [aux_sym_host_key_alias_token1] = ACTIONS(1719), - [aux_sym_hostname_token1] = ACTIONS(1719), - [aux_sym_identities_only_token1] = ACTIONS(1719), - [aux_sym_identity_agent_token1] = ACTIONS(1719), - [aux_sym_identity_file_token1] = ACTIONS(1719), - [aux_sym_ignore_unknown_token1] = ACTIONS(1719), - [aux_sym_include_token1] = ACTIONS(1719), - [aux_sym_ip_qos_token1] = ACTIONS(1719), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1719), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1719), - [aux_sym_kex_algorithms_token1] = ACTIONS(1719), - [aux_sym_known_hosts_command_token1] = ACTIONS(1719), - [aux_sym_local_command_token1] = ACTIONS(1719), - [aux_sym_local_forward_token1] = ACTIONS(1719), - [aux_sym_log_level_token1] = ACTIONS(1719), - [aux_sym_log_verbose_token1] = ACTIONS(1719), - [aux_sym_macs_token1] = ACTIONS(1719), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1719), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1719), - [aux_sym_password_authentication_token1] = ACTIONS(1719), - [aux_sym_permit_local_command_token1] = ACTIONS(1719), - [aux_sym_permit_remote_open_token1] = ACTIONS(1719), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1719), - [aux_sym_port_token1] = ACTIONS(1719), - [aux_sym_preferred_authentications_token1] = ACTIONS(1719), - [aux_sym_protocol_token1] = ACTIONS(1719), - [aux_sym_proxy_command_token1] = ACTIONS(1719), - [aux_sym_proxy_jump_token1] = ACTIONS(1719), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1719), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1719), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1719), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1719), - [aux_sym_rekey_limit_token1] = ACTIONS(1719), - [aux_sym_remote_command_token1] = ACTIONS(1719), - [aux_sym_remote_forward_token1] = ACTIONS(1719), - [aux_sym_request_tty_token1] = ACTIONS(1719), - [aux_sym_required_rsa_size_token1] = ACTIONS(1719), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1719), - [aux_sym_security_key_provider_token1] = ACTIONS(1719), - [aux_sym_send_env_token1] = ACTIONS(1719), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1719), - [aux_sym_server_alive_interval_token1] = ACTIONS(1719), - [aux_sym_session_type_token1] = ACTIONS(1719), - [aux_sym_set_env_token1] = ACTIONS(1719), - [aux_sym_stdin_null_token1] = ACTIONS(1719), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1719), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1719), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1719), - [aux_sym_syslog_facility_token1] = ACTIONS(1719), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1719), - [aux_sym_keep_alive_token1] = ACTIONS(1719), - [aux_sym_tunnel_token1] = ACTIONS(1721), - [aux_sym_tunnel_device_token1] = ACTIONS(1719), - [aux_sym_update_host_keys_token1] = ACTIONS(1719), - [aux_sym_use_keychain_token1] = ACTIONS(1719), - [aux_sym_use_roaming_token1] = ACTIONS(1719), - [aux_sym_user_token1] = ACTIONS(1721), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1719), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1719), - [aux_sym_visual_host_key_token1] = ACTIONS(1719), - [aux_sym_xauth_location_token1] = ACTIONS(1719), + [ts_builtin_sym_end] = ACTIONS(1724), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1728), + [aux_sym_match_token1] = ACTIONS(1724), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1724), + [aux_sym_address_family_token1] = ACTIONS(1724), + [aux_sym_batch_mode_token1] = ACTIONS(1724), + [aux_sym_bind_address_token1] = ACTIONS(1724), + [aux_sym_bind_interface_token1] = ACTIONS(1724), + [aux_sym_canonical_domains_token1] = ACTIONS(1724), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1724), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1724), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1724), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1724), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1724), + [aux_sym_certificate_file_token1] = ACTIONS(1724), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1724), + [aux_sym_check_host_ip_token1] = ACTIONS(1724), + [aux_sym_ciphers_token1] = ACTIONS(1724), + [aux_sym_cipher_token1] = ACTIONS(1726), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1724), + [aux_sym_compression_token1] = ACTIONS(1724), + [aux_sym_connection_attempts_token1] = ACTIONS(1724), + [aux_sym_connect_timeout_token1] = ACTIONS(1724), + [aux_sym_control_master_token1] = ACTIONS(1724), + [aux_sym_control_path_token1] = ACTIONS(1724), + [aux_sym_control_persist_token1] = ACTIONS(1724), + [aux_sym_dynamic_forward_token1] = ACTIONS(1724), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1724), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1724), + [aux_sym_escape_char_token1] = ACTIONS(1724), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1724), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1724), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1724), + [aux_sym_forward_agent_token1] = ACTIONS(1724), + [aux_sym_forward_x11_token1] = ACTIONS(1726), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1724), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1724), + [aux_sym_gateway_ports_token1] = ACTIONS(1724), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1724), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1724), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1724), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1724), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1724), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1724), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1724), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1724), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1724), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1724), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1724), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1724), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1724), + [aux_sym_host_key_alias_token1] = ACTIONS(1724), + [aux_sym_hostname_token1] = ACTIONS(1724), + [aux_sym_identities_only_token1] = ACTIONS(1724), + [aux_sym_identity_agent_token1] = ACTIONS(1724), + [aux_sym_identity_file_token1] = ACTIONS(1724), + [aux_sym_ignore_unknown_token1] = ACTIONS(1724), + [aux_sym_include_token1] = ACTIONS(1724), + [aux_sym_ip_qos_token1] = ACTIONS(1724), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1724), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1724), + [aux_sym_kex_algorithms_token1] = ACTIONS(1724), + [aux_sym_known_hosts_command_token1] = ACTIONS(1724), + [aux_sym_local_command_token1] = ACTIONS(1724), + [aux_sym_local_forward_token1] = ACTIONS(1724), + [aux_sym_log_level_token1] = ACTIONS(1724), + [aux_sym_log_verbose_token1] = ACTIONS(1724), + [aux_sym_macs_token1] = ACTIONS(1724), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1724), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1724), + [aux_sym_password_authentication_token1] = ACTIONS(1724), + [aux_sym_permit_local_command_token1] = ACTIONS(1724), + [aux_sym_permit_remote_open_token1] = ACTIONS(1724), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1724), + [aux_sym_port_token1] = ACTIONS(1724), + [aux_sym_preferred_authentications_token1] = ACTIONS(1724), + [aux_sym_protocol_token1] = ACTIONS(1724), + [aux_sym_proxy_command_token1] = ACTIONS(1724), + [aux_sym_proxy_jump_token1] = ACTIONS(1724), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1724), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1724), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1724), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1724), + [aux_sym_rekey_limit_token1] = ACTIONS(1724), + [aux_sym_remote_command_token1] = ACTIONS(1724), + [aux_sym_remote_forward_token1] = ACTIONS(1724), + [aux_sym_request_tty_token1] = ACTIONS(1724), + [aux_sym_required_rsa_size_token1] = ACTIONS(1724), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1724), + [aux_sym_security_key_provider_token1] = ACTIONS(1724), + [aux_sym_send_env_token1] = ACTIONS(1724), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1724), + [aux_sym_server_alive_interval_token1] = ACTIONS(1724), + [aux_sym_session_type_token1] = ACTIONS(1724), + [aux_sym_set_env_token1] = ACTIONS(1724), + [aux_sym_stdin_null_token1] = ACTIONS(1724), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1724), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1724), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1724), + [aux_sym_syslog_facility_token1] = ACTIONS(1724), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1724), + [aux_sym_keep_alive_token1] = ACTIONS(1724), + [aux_sym_tunnel_token1] = ACTIONS(1726), + [aux_sym_tunnel_device_token1] = ACTIONS(1724), + [aux_sym_update_host_keys_token1] = ACTIONS(1724), + [aux_sym_use_keychain_token1] = ACTIONS(1724), + [aux_sym_use_roaming_token1] = ACTIONS(1724), + [aux_sym_user_token1] = ACTIONS(1726), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1724), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1724), + [aux_sym_visual_host_key_token1] = ACTIONS(1724), + [aux_sym_xauth_location_token1] = ACTIONS(1724), }, [198] = { - [ts_builtin_sym_end] = ACTIONS(1725), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1729), - [aux_sym_match_token1] = ACTIONS(1725), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1725), - [aux_sym_address_family_token1] = ACTIONS(1725), - [aux_sym_batch_mode_token1] = ACTIONS(1725), - [aux_sym_bind_address_token1] = ACTIONS(1725), - [aux_sym_bind_interface_token1] = ACTIONS(1725), - [aux_sym_canonical_domains_token1] = ACTIONS(1725), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1725), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1725), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1725), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1725), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1725), - [aux_sym_certificate_file_token1] = ACTIONS(1725), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1725), - [aux_sym_check_host_ip_token1] = ACTIONS(1725), - [aux_sym_ciphers_token1] = ACTIONS(1725), - [aux_sym_cipher_token1] = ACTIONS(1727), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1725), - [aux_sym_compression_token1] = ACTIONS(1725), - [aux_sym_connection_attempts_token1] = ACTIONS(1725), - [aux_sym_connect_timeout_token1] = ACTIONS(1725), - [aux_sym_control_master_token1] = ACTIONS(1725), - [aux_sym_control_path_token1] = ACTIONS(1725), - [aux_sym_control_persist_token1] = ACTIONS(1725), - [aux_sym_dynamic_forward_token1] = ACTIONS(1725), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1725), - [aux_sym_escape_char_token1] = ACTIONS(1725), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1725), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1725), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1725), - [aux_sym_forward_agent_token1] = ACTIONS(1725), - [aux_sym_forward_x11_token1] = ACTIONS(1727), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1725), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1725), - [aux_sym_gateway_ports_token1] = ACTIONS(1725), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1725), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1725), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1725), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1725), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1725), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1725), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1725), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1725), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1725), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1725), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1725), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1725), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1725), - [aux_sym_host_key_alias_token1] = ACTIONS(1725), - [aux_sym_hostname_token1] = ACTIONS(1725), - [aux_sym_identities_only_token1] = ACTIONS(1725), - [aux_sym_identity_agent_token1] = ACTIONS(1725), - [aux_sym_identity_file_token1] = ACTIONS(1725), - [aux_sym_ignore_unknown_token1] = ACTIONS(1725), - [aux_sym_include_token1] = ACTIONS(1725), - [aux_sym_ip_qos_token1] = ACTIONS(1725), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1725), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1725), - [aux_sym_kex_algorithms_token1] = ACTIONS(1725), - [aux_sym_known_hosts_command_token1] = ACTIONS(1725), - [aux_sym_local_command_token1] = ACTIONS(1725), - [aux_sym_local_forward_token1] = ACTIONS(1725), - [aux_sym_log_level_token1] = ACTIONS(1725), - [aux_sym_log_verbose_token1] = ACTIONS(1725), - [aux_sym_macs_token1] = ACTIONS(1725), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1725), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1725), - [aux_sym_password_authentication_token1] = ACTIONS(1725), - [aux_sym_permit_local_command_token1] = ACTIONS(1725), - [aux_sym_permit_remote_open_token1] = ACTIONS(1725), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1725), - [aux_sym_port_token1] = ACTIONS(1725), - [aux_sym_preferred_authentications_token1] = ACTIONS(1725), - [aux_sym_protocol_token1] = ACTIONS(1725), - [aux_sym_proxy_command_token1] = ACTIONS(1725), - [aux_sym_proxy_jump_token1] = ACTIONS(1725), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1725), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1725), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1725), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1725), - [aux_sym_rekey_limit_token1] = ACTIONS(1725), - [aux_sym_remote_command_token1] = ACTIONS(1725), - [aux_sym_remote_forward_token1] = ACTIONS(1725), - [aux_sym_request_tty_token1] = ACTIONS(1725), - [aux_sym_required_rsa_size_token1] = ACTIONS(1725), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1725), - [aux_sym_security_key_provider_token1] = ACTIONS(1725), - [aux_sym_send_env_token1] = ACTIONS(1725), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1725), - [aux_sym_server_alive_interval_token1] = ACTIONS(1725), - [aux_sym_session_type_token1] = ACTIONS(1725), - [aux_sym_set_env_token1] = ACTIONS(1725), - [aux_sym_stdin_null_token1] = ACTIONS(1725), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1725), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1725), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1725), - [aux_sym_syslog_facility_token1] = ACTIONS(1725), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1725), - [aux_sym_keep_alive_token1] = ACTIONS(1725), - [aux_sym_tunnel_token1] = ACTIONS(1727), - [aux_sym_tunnel_device_token1] = ACTIONS(1725), - [aux_sym_update_host_keys_token1] = ACTIONS(1725), - [aux_sym_use_keychain_token1] = ACTIONS(1725), - [aux_sym_use_roaming_token1] = ACTIONS(1725), - [aux_sym_user_token1] = ACTIONS(1727), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1725), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1725), - [aux_sym_visual_host_key_token1] = ACTIONS(1725), - [aux_sym_xauth_location_token1] = ACTIONS(1725), + [ts_builtin_sym_end] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [aux_sym_match_token1] = ACTIONS(1730), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1730), + [aux_sym_address_family_token1] = ACTIONS(1730), + [aux_sym_batch_mode_token1] = ACTIONS(1730), + [aux_sym_bind_address_token1] = ACTIONS(1730), + [aux_sym_bind_interface_token1] = ACTIONS(1730), + [aux_sym_canonical_domains_token1] = ACTIONS(1730), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1730), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1730), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1730), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1730), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1730), + [aux_sym_certificate_file_token1] = ACTIONS(1730), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1730), + [aux_sym_check_host_ip_token1] = ACTIONS(1730), + [aux_sym_ciphers_token1] = ACTIONS(1730), + [aux_sym_cipher_token1] = ACTIONS(1732), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1730), + [aux_sym_compression_token1] = ACTIONS(1730), + [aux_sym_connection_attempts_token1] = ACTIONS(1730), + [aux_sym_connect_timeout_token1] = ACTIONS(1730), + [aux_sym_control_master_token1] = ACTIONS(1730), + [aux_sym_control_path_token1] = ACTIONS(1730), + [aux_sym_control_persist_token1] = ACTIONS(1730), + [aux_sym_dynamic_forward_token1] = ACTIONS(1730), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1730), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1730), + [aux_sym_escape_char_token1] = ACTIONS(1730), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1730), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1730), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1730), + [aux_sym_forward_agent_token1] = ACTIONS(1730), + [aux_sym_forward_x11_token1] = ACTIONS(1732), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1730), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1730), + [aux_sym_gateway_ports_token1] = ACTIONS(1730), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1730), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1730), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1730), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1730), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1730), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1730), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1730), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1730), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1730), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1730), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1730), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1730), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1730), + [aux_sym_host_key_alias_token1] = ACTIONS(1730), + [aux_sym_hostname_token1] = ACTIONS(1730), + [aux_sym_identities_only_token1] = ACTIONS(1730), + [aux_sym_identity_agent_token1] = ACTIONS(1730), + [aux_sym_identity_file_token1] = ACTIONS(1730), + [aux_sym_ignore_unknown_token1] = ACTIONS(1730), + [aux_sym_include_token1] = ACTIONS(1730), + [aux_sym_ip_qos_token1] = ACTIONS(1730), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1730), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1730), + [aux_sym_kex_algorithms_token1] = ACTIONS(1730), + [aux_sym_known_hosts_command_token1] = ACTIONS(1730), + [aux_sym_local_command_token1] = ACTIONS(1730), + [aux_sym_local_forward_token1] = ACTIONS(1730), + [aux_sym_log_level_token1] = ACTIONS(1730), + [aux_sym_log_verbose_token1] = ACTIONS(1730), + [aux_sym_macs_token1] = ACTIONS(1730), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1730), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1730), + [aux_sym_password_authentication_token1] = ACTIONS(1730), + [aux_sym_permit_local_command_token1] = ACTIONS(1730), + [aux_sym_permit_remote_open_token1] = ACTIONS(1730), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1730), + [aux_sym_port_token1] = ACTIONS(1730), + [aux_sym_preferred_authentications_token1] = ACTIONS(1730), + [aux_sym_protocol_token1] = ACTIONS(1730), + [aux_sym_proxy_command_token1] = ACTIONS(1730), + [aux_sym_proxy_jump_token1] = ACTIONS(1730), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1730), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1730), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1730), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1730), + [aux_sym_rekey_limit_token1] = ACTIONS(1730), + [aux_sym_remote_command_token1] = ACTIONS(1730), + [aux_sym_remote_forward_token1] = ACTIONS(1730), + [aux_sym_request_tty_token1] = ACTIONS(1730), + [aux_sym_required_rsa_size_token1] = ACTIONS(1730), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1730), + [aux_sym_security_key_provider_token1] = ACTIONS(1730), + [aux_sym_send_env_token1] = ACTIONS(1730), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1730), + [aux_sym_server_alive_interval_token1] = ACTIONS(1730), + [aux_sym_session_type_token1] = ACTIONS(1730), + [aux_sym_set_env_token1] = ACTIONS(1730), + [aux_sym_stdin_null_token1] = ACTIONS(1730), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1730), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1730), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1730), + [aux_sym_syslog_facility_token1] = ACTIONS(1730), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1730), + [aux_sym_keep_alive_token1] = ACTIONS(1730), + [aux_sym_tunnel_token1] = ACTIONS(1732), + [aux_sym_tunnel_device_token1] = ACTIONS(1730), + [aux_sym_update_host_keys_token1] = ACTIONS(1730), + [aux_sym_use_keychain_token1] = ACTIONS(1730), + [aux_sym_use_roaming_token1] = ACTIONS(1730), + [aux_sym_user_token1] = ACTIONS(1732), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1730), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1730), + [aux_sym_visual_host_key_token1] = ACTIONS(1730), + [aux_sym_xauth_location_token1] = ACTIONS(1730), }, [199] = { - [ts_builtin_sym_end] = ACTIONS(1731), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1733), - [anon_sym_DQUOTE] = ACTIONS(1735), - [aux_sym_match_token1] = ACTIONS(1731), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1731), - [aux_sym_address_family_token1] = ACTIONS(1731), - [aux_sym_batch_mode_token1] = ACTIONS(1731), - [aux_sym_bind_address_token1] = ACTIONS(1731), - [aux_sym_bind_interface_token1] = ACTIONS(1731), - [aux_sym_canonical_domains_token1] = ACTIONS(1731), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1731), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1731), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1731), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1731), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1731), - [aux_sym_certificate_file_token1] = ACTIONS(1731), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1731), - [aux_sym_check_host_ip_token1] = ACTIONS(1731), - [aux_sym_ciphers_token1] = ACTIONS(1731), - [aux_sym_cipher_token1] = ACTIONS(1733), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1731), - [aux_sym_compression_token1] = ACTIONS(1731), - [aux_sym_connection_attempts_token1] = ACTIONS(1731), - [aux_sym_connect_timeout_token1] = ACTIONS(1731), - [aux_sym_control_master_token1] = ACTIONS(1731), - [aux_sym_control_path_token1] = ACTIONS(1731), - [aux_sym_control_persist_token1] = ACTIONS(1731), - [aux_sym_dynamic_forward_token1] = ACTIONS(1731), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1731), - [aux_sym_escape_char_token1] = ACTIONS(1731), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1731), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1731), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1731), - [aux_sym_forward_agent_token1] = ACTIONS(1731), - [aux_sym_forward_x11_token1] = ACTIONS(1733), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1731), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1731), - [aux_sym_gateway_ports_token1] = ACTIONS(1731), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1731), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1731), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1731), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1731), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1731), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1731), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1731), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1731), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1731), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1731), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1731), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1731), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1731), - [aux_sym_host_key_alias_token1] = ACTIONS(1731), - [aux_sym_hostname_token1] = ACTIONS(1731), - [aux_sym_identities_only_token1] = ACTIONS(1731), - [aux_sym_identity_agent_token1] = ACTIONS(1731), - [aux_sym_identity_file_token1] = ACTIONS(1731), - [aux_sym_ignore_unknown_token1] = ACTIONS(1731), - [aux_sym_include_token1] = ACTIONS(1731), - [aux_sym_ip_qos_token1] = ACTIONS(1731), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1731), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1731), - [aux_sym_kex_algorithms_token1] = ACTIONS(1731), - [aux_sym_known_hosts_command_token1] = ACTIONS(1731), - [aux_sym_local_command_token1] = ACTIONS(1731), - [aux_sym_local_forward_token1] = ACTIONS(1731), - [aux_sym_log_level_token1] = ACTIONS(1731), - [aux_sym_log_verbose_token1] = ACTIONS(1731), - [aux_sym_macs_token1] = ACTIONS(1731), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1731), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1731), - [aux_sym_password_authentication_token1] = ACTIONS(1731), - [aux_sym_permit_local_command_token1] = ACTIONS(1731), - [aux_sym_permit_remote_open_token1] = ACTIONS(1731), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1731), - [aux_sym_port_token1] = ACTIONS(1731), - [aux_sym_preferred_authentications_token1] = ACTIONS(1731), - [aux_sym_protocol_token1] = ACTIONS(1731), - [aux_sym_proxy_command_token1] = ACTIONS(1731), - [aux_sym_proxy_jump_token1] = ACTIONS(1731), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1731), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1731), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1731), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1731), - [aux_sym_rekey_limit_token1] = ACTIONS(1731), - [aux_sym_remote_command_token1] = ACTIONS(1731), - [aux_sym_remote_forward_token1] = ACTIONS(1731), - [aux_sym_request_tty_token1] = ACTIONS(1731), - [aux_sym_required_rsa_size_token1] = ACTIONS(1731), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1731), - [aux_sym_security_key_provider_token1] = ACTIONS(1731), - [aux_sym_send_env_token1] = ACTIONS(1731), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1731), - [aux_sym_server_alive_interval_token1] = ACTIONS(1731), - [aux_sym_session_type_token1] = ACTIONS(1731), - [aux_sym_set_env_token1] = ACTIONS(1731), - [aux_sym_stdin_null_token1] = ACTIONS(1731), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1731), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1731), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1731), - [aux_sym_syslog_facility_token1] = ACTIONS(1731), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1731), - [aux_sym_keep_alive_token1] = ACTIONS(1731), - [aux_sym_tunnel_token1] = ACTIONS(1733), - [aux_sym_tunnel_device_token1] = ACTIONS(1731), - [aux_sym_update_host_keys_token1] = ACTIONS(1731), - [aux_sym_use_keychain_token1] = ACTIONS(1731), - [aux_sym_use_roaming_token1] = ACTIONS(1731), - [aux_sym_user_token1] = ACTIONS(1733), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1731), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1731), - [aux_sym_visual_host_key_token1] = ACTIONS(1731), - [aux_sym_xauth_location_token1] = ACTIONS(1731), + [ts_builtin_sym_end] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1738), + [anon_sym_DQUOTE] = ACTIONS(1740), + [aux_sym_match_token1] = ACTIONS(1736), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1736), + [aux_sym_address_family_token1] = ACTIONS(1736), + [aux_sym_batch_mode_token1] = ACTIONS(1736), + [aux_sym_bind_address_token1] = ACTIONS(1736), + [aux_sym_bind_interface_token1] = ACTIONS(1736), + [aux_sym_canonical_domains_token1] = ACTIONS(1736), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1736), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1736), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1736), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1736), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1736), + [aux_sym_certificate_file_token1] = ACTIONS(1736), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1736), + [aux_sym_check_host_ip_token1] = ACTIONS(1736), + [aux_sym_ciphers_token1] = ACTIONS(1736), + [aux_sym_cipher_token1] = ACTIONS(1738), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1736), + [aux_sym_compression_token1] = ACTIONS(1736), + [aux_sym_connection_attempts_token1] = ACTIONS(1736), + [aux_sym_connect_timeout_token1] = ACTIONS(1736), + [aux_sym_control_master_token1] = ACTIONS(1736), + [aux_sym_control_path_token1] = ACTIONS(1736), + [aux_sym_control_persist_token1] = ACTIONS(1736), + [aux_sym_dynamic_forward_token1] = ACTIONS(1736), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1736), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1736), + [aux_sym_escape_char_token1] = ACTIONS(1736), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1736), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1736), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1736), + [aux_sym_forward_agent_token1] = ACTIONS(1736), + [aux_sym_forward_x11_token1] = ACTIONS(1738), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1736), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1736), + [aux_sym_gateway_ports_token1] = ACTIONS(1736), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1736), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1736), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1736), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1736), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1736), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1736), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1736), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1736), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1736), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1736), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1736), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1736), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1736), + [aux_sym_host_key_alias_token1] = ACTIONS(1736), + [aux_sym_hostname_token1] = ACTIONS(1736), + [aux_sym_identities_only_token1] = ACTIONS(1736), + [aux_sym_identity_agent_token1] = ACTIONS(1736), + [aux_sym_identity_file_token1] = ACTIONS(1736), + [aux_sym_ignore_unknown_token1] = ACTIONS(1736), + [aux_sym_include_token1] = ACTIONS(1736), + [aux_sym_ip_qos_token1] = ACTIONS(1736), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1736), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1736), + [aux_sym_kex_algorithms_token1] = ACTIONS(1736), + [aux_sym_known_hosts_command_token1] = ACTIONS(1736), + [aux_sym_local_command_token1] = ACTIONS(1736), + [aux_sym_local_forward_token1] = ACTIONS(1736), + [aux_sym_log_level_token1] = ACTIONS(1736), + [aux_sym_log_verbose_token1] = ACTIONS(1736), + [aux_sym_macs_token1] = ACTIONS(1736), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1736), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1736), + [aux_sym_password_authentication_token1] = ACTIONS(1736), + [aux_sym_permit_local_command_token1] = ACTIONS(1736), + [aux_sym_permit_remote_open_token1] = ACTIONS(1736), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1736), + [aux_sym_port_token1] = ACTIONS(1736), + [aux_sym_preferred_authentications_token1] = ACTIONS(1736), + [aux_sym_protocol_token1] = ACTIONS(1736), + [aux_sym_proxy_command_token1] = ACTIONS(1736), + [aux_sym_proxy_jump_token1] = ACTIONS(1736), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1736), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1736), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1736), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1736), + [aux_sym_rekey_limit_token1] = ACTIONS(1736), + [aux_sym_remote_command_token1] = ACTIONS(1736), + [aux_sym_remote_forward_token1] = ACTIONS(1736), + [aux_sym_request_tty_token1] = ACTIONS(1736), + [aux_sym_required_rsa_size_token1] = ACTIONS(1736), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1736), + [aux_sym_security_key_provider_token1] = ACTIONS(1736), + [aux_sym_send_env_token1] = ACTIONS(1736), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1736), + [aux_sym_server_alive_interval_token1] = ACTIONS(1736), + [aux_sym_session_type_token1] = ACTIONS(1736), + [aux_sym_set_env_token1] = ACTIONS(1736), + [aux_sym_stdin_null_token1] = ACTIONS(1736), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1736), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1736), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1736), + [aux_sym_syslog_facility_token1] = ACTIONS(1736), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1736), + [aux_sym_keep_alive_token1] = ACTIONS(1736), + [aux_sym_tunnel_token1] = ACTIONS(1738), + [aux_sym_tunnel_device_token1] = ACTIONS(1736), + [aux_sym_update_host_keys_token1] = ACTIONS(1736), + [aux_sym_use_keychain_token1] = ACTIONS(1736), + [aux_sym_use_roaming_token1] = ACTIONS(1736), + [aux_sym_user_token1] = ACTIONS(1738), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1736), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1736), + [aux_sym_visual_host_key_token1] = ACTIONS(1736), + [aux_sym_xauth_location_token1] = ACTIONS(1736), }, [200] = { - [ts_builtin_sym_end] = ACTIONS(1737), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1741), - [aux_sym_match_token1] = ACTIONS(1737), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1737), - [aux_sym_address_family_token1] = ACTIONS(1737), - [aux_sym_batch_mode_token1] = ACTIONS(1737), - [aux_sym_bind_address_token1] = ACTIONS(1737), - [aux_sym_bind_interface_token1] = ACTIONS(1737), - [aux_sym_canonical_domains_token1] = ACTIONS(1737), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1737), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1737), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1737), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1737), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1737), - [aux_sym_certificate_file_token1] = ACTIONS(1737), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1737), - [aux_sym_check_host_ip_token1] = ACTIONS(1737), - [aux_sym_ciphers_token1] = ACTIONS(1737), - [aux_sym_cipher_token1] = ACTIONS(1739), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1737), - [aux_sym_compression_token1] = ACTIONS(1737), - [aux_sym_connection_attempts_token1] = ACTIONS(1737), - [aux_sym_connect_timeout_token1] = ACTIONS(1737), - [aux_sym_control_master_token1] = ACTIONS(1737), - [aux_sym_control_path_token1] = ACTIONS(1737), - [aux_sym_control_persist_token1] = ACTIONS(1737), - [aux_sym_dynamic_forward_token1] = ACTIONS(1737), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1737), - [aux_sym_escape_char_token1] = ACTIONS(1737), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1737), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1737), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1737), - [aux_sym_forward_agent_token1] = ACTIONS(1737), - [aux_sym_forward_x11_token1] = ACTIONS(1739), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1737), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1737), - [aux_sym_gateway_ports_token1] = ACTIONS(1737), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1737), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1737), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1737), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1737), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1737), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1737), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1737), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1737), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1737), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1737), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1737), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1737), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1737), - [aux_sym_host_key_alias_token1] = ACTIONS(1737), - [aux_sym_hostname_token1] = ACTIONS(1737), - [aux_sym_identities_only_token1] = ACTIONS(1737), - [aux_sym_identity_agent_token1] = ACTIONS(1737), - [aux_sym_identity_file_token1] = ACTIONS(1737), - [aux_sym_ignore_unknown_token1] = ACTIONS(1737), - [aux_sym_include_token1] = ACTIONS(1737), - [aux_sym_ip_qos_token1] = ACTIONS(1737), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1737), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1737), - [aux_sym_kex_algorithms_token1] = ACTIONS(1737), - [aux_sym_known_hosts_command_token1] = ACTIONS(1737), - [aux_sym_local_command_token1] = ACTIONS(1737), - [aux_sym_local_forward_token1] = ACTIONS(1737), - [aux_sym_log_level_token1] = ACTIONS(1737), - [aux_sym_log_verbose_token1] = ACTIONS(1737), - [aux_sym_macs_token1] = ACTIONS(1737), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1737), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1737), - [aux_sym_password_authentication_token1] = ACTIONS(1737), - [aux_sym_permit_local_command_token1] = ACTIONS(1737), - [aux_sym_permit_remote_open_token1] = ACTIONS(1737), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1737), - [aux_sym_port_token1] = ACTIONS(1737), - [aux_sym_preferred_authentications_token1] = ACTIONS(1737), - [aux_sym_protocol_token1] = ACTIONS(1737), - [aux_sym_proxy_command_token1] = ACTIONS(1737), - [aux_sym_proxy_jump_token1] = ACTIONS(1737), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1737), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1737), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1737), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1737), - [aux_sym_rekey_limit_token1] = ACTIONS(1737), - [aux_sym_remote_command_token1] = ACTIONS(1737), - [aux_sym_remote_forward_token1] = ACTIONS(1737), - [aux_sym_request_tty_token1] = ACTIONS(1737), - [aux_sym_required_rsa_size_token1] = ACTIONS(1737), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1737), - [aux_sym_security_key_provider_token1] = ACTIONS(1737), - [aux_sym_send_env_token1] = ACTIONS(1737), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1737), - [aux_sym_server_alive_interval_token1] = ACTIONS(1737), - [aux_sym_session_type_token1] = ACTIONS(1737), - [aux_sym_set_env_token1] = ACTIONS(1737), - [aux_sym_stdin_null_token1] = ACTIONS(1737), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1737), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1737), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1737), - [aux_sym_syslog_facility_token1] = ACTIONS(1737), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1737), - [aux_sym_keep_alive_token1] = ACTIONS(1737), - [aux_sym_tunnel_token1] = ACTIONS(1739), - [aux_sym_tunnel_device_token1] = ACTIONS(1737), - [aux_sym_update_host_keys_token1] = ACTIONS(1737), - [aux_sym_use_keychain_token1] = ACTIONS(1737), - [aux_sym_use_roaming_token1] = ACTIONS(1737), - [aux_sym_user_token1] = ACTIONS(1739), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1737), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1737), - [aux_sym_visual_host_key_token1] = ACTIONS(1737), - [aux_sym_xauth_location_token1] = ACTIONS(1737), + [ts_builtin_sym_end] = ACTIONS(1742), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [aux_sym_match_token1] = ACTIONS(1742), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1742), + [aux_sym_address_family_token1] = ACTIONS(1742), + [aux_sym_batch_mode_token1] = ACTIONS(1742), + [aux_sym_bind_address_token1] = ACTIONS(1742), + [aux_sym_bind_interface_token1] = ACTIONS(1742), + [aux_sym_canonical_domains_token1] = ACTIONS(1742), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1742), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1742), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1742), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1742), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1742), + [aux_sym_certificate_file_token1] = ACTIONS(1742), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1742), + [aux_sym_check_host_ip_token1] = ACTIONS(1742), + [aux_sym_ciphers_token1] = ACTIONS(1742), + [aux_sym_cipher_token1] = ACTIONS(1744), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1742), + [aux_sym_compression_token1] = ACTIONS(1742), + [aux_sym_connection_attempts_token1] = ACTIONS(1742), + [aux_sym_connect_timeout_token1] = ACTIONS(1742), + [aux_sym_control_master_token1] = ACTIONS(1742), + [aux_sym_control_path_token1] = ACTIONS(1742), + [aux_sym_control_persist_token1] = ACTIONS(1742), + [aux_sym_dynamic_forward_token1] = ACTIONS(1742), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1742), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1742), + [aux_sym_escape_char_token1] = ACTIONS(1742), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1742), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1742), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1742), + [aux_sym_forward_agent_token1] = ACTIONS(1742), + [aux_sym_forward_x11_token1] = ACTIONS(1744), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1742), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1742), + [aux_sym_gateway_ports_token1] = ACTIONS(1742), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1742), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1742), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1742), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1742), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1742), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1742), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1742), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1742), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1742), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1742), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1742), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1742), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1742), + [aux_sym_host_key_alias_token1] = ACTIONS(1742), + [aux_sym_hostname_token1] = ACTIONS(1742), + [aux_sym_identities_only_token1] = ACTIONS(1742), + [aux_sym_identity_agent_token1] = ACTIONS(1742), + [aux_sym_identity_file_token1] = ACTIONS(1742), + [aux_sym_ignore_unknown_token1] = ACTIONS(1742), + [aux_sym_include_token1] = ACTIONS(1742), + [aux_sym_ip_qos_token1] = ACTIONS(1742), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1742), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1742), + [aux_sym_kex_algorithms_token1] = ACTIONS(1742), + [aux_sym_known_hosts_command_token1] = ACTIONS(1742), + [aux_sym_local_command_token1] = ACTIONS(1742), + [aux_sym_local_forward_token1] = ACTIONS(1742), + [aux_sym_log_level_token1] = ACTIONS(1742), + [aux_sym_log_verbose_token1] = ACTIONS(1742), + [aux_sym_macs_token1] = ACTIONS(1742), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1742), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1742), + [aux_sym_password_authentication_token1] = ACTIONS(1742), + [aux_sym_permit_local_command_token1] = ACTIONS(1742), + [aux_sym_permit_remote_open_token1] = ACTIONS(1742), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1742), + [aux_sym_port_token1] = ACTIONS(1742), + [aux_sym_preferred_authentications_token1] = ACTIONS(1742), + [aux_sym_protocol_token1] = ACTIONS(1742), + [aux_sym_proxy_command_token1] = ACTIONS(1742), + [aux_sym_proxy_jump_token1] = ACTIONS(1742), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1742), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1742), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1742), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1742), + [aux_sym_rekey_limit_token1] = ACTIONS(1742), + [aux_sym_remote_command_token1] = ACTIONS(1742), + [aux_sym_remote_forward_token1] = ACTIONS(1742), + [aux_sym_request_tty_token1] = ACTIONS(1742), + [aux_sym_required_rsa_size_token1] = ACTIONS(1742), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1742), + [aux_sym_security_key_provider_token1] = ACTIONS(1742), + [aux_sym_send_env_token1] = ACTIONS(1742), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1742), + [aux_sym_server_alive_interval_token1] = ACTIONS(1742), + [aux_sym_session_type_token1] = ACTIONS(1742), + [aux_sym_set_env_token1] = ACTIONS(1742), + [aux_sym_stdin_null_token1] = ACTIONS(1742), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1742), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1742), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1742), + [aux_sym_syslog_facility_token1] = ACTIONS(1742), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1742), + [aux_sym_keep_alive_token1] = ACTIONS(1742), + [aux_sym_tunnel_token1] = ACTIONS(1744), + [aux_sym_tunnel_device_token1] = ACTIONS(1742), + [aux_sym_update_host_keys_token1] = ACTIONS(1742), + [aux_sym_use_keychain_token1] = ACTIONS(1742), + [aux_sym_use_roaming_token1] = ACTIONS(1742), + [aux_sym_user_token1] = ACTIONS(1744), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1742), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1742), + [aux_sym_visual_host_key_token1] = ACTIONS(1742), + [aux_sym_xauth_location_token1] = ACTIONS(1742), }, [201] = { - [ts_builtin_sym_end] = ACTIONS(1743), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [aux_sym_match_token1] = ACTIONS(1743), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1743), - [aux_sym_address_family_token1] = ACTIONS(1743), - [aux_sym_batch_mode_token1] = ACTIONS(1743), - [aux_sym_bind_address_token1] = ACTIONS(1743), - [aux_sym_bind_interface_token1] = ACTIONS(1743), - [aux_sym_canonical_domains_token1] = ACTIONS(1743), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1743), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1743), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1743), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1743), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1743), - [aux_sym_certificate_file_token1] = ACTIONS(1743), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1743), - [aux_sym_check_host_ip_token1] = ACTIONS(1743), - [aux_sym_ciphers_token1] = ACTIONS(1743), - [aux_sym_cipher_token1] = ACTIONS(1745), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1743), - [aux_sym_compression_token1] = ACTIONS(1743), - [aux_sym_connection_attempts_token1] = ACTIONS(1743), - [aux_sym_connect_timeout_token1] = ACTIONS(1743), - [aux_sym_control_master_token1] = ACTIONS(1743), - [aux_sym_control_path_token1] = ACTIONS(1743), - [aux_sym_control_persist_token1] = ACTIONS(1743), - [aux_sym_dynamic_forward_token1] = ACTIONS(1743), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1743), - [aux_sym_escape_char_token1] = ACTIONS(1743), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1743), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1743), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1743), - [aux_sym_forward_agent_token1] = ACTIONS(1743), - [aux_sym_forward_x11_token1] = ACTIONS(1745), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1743), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1743), - [aux_sym_gateway_ports_token1] = ACTIONS(1743), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1743), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1743), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1743), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1743), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1743), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1743), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1743), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1743), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1743), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1743), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1743), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1743), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1743), - [aux_sym_host_key_alias_token1] = ACTIONS(1743), - [aux_sym_hostname_token1] = ACTIONS(1743), - [aux_sym_identities_only_token1] = ACTIONS(1743), - [aux_sym_identity_agent_token1] = ACTIONS(1743), - [aux_sym_identity_file_token1] = ACTIONS(1743), - [aux_sym_ignore_unknown_token1] = ACTIONS(1743), - [aux_sym_include_token1] = ACTIONS(1743), - [aux_sym_ip_qos_token1] = ACTIONS(1743), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1743), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1743), - [aux_sym_kex_algorithms_token1] = ACTIONS(1743), - [aux_sym_known_hosts_command_token1] = ACTIONS(1743), - [aux_sym_local_command_token1] = ACTIONS(1743), - [aux_sym_local_forward_token1] = ACTIONS(1743), - [aux_sym_log_level_token1] = ACTIONS(1743), - [aux_sym_log_verbose_token1] = ACTIONS(1743), - [aux_sym_macs_token1] = ACTIONS(1743), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1743), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1743), - [aux_sym_password_authentication_token1] = ACTIONS(1743), - [aux_sym_permit_local_command_token1] = ACTIONS(1743), - [aux_sym_permit_remote_open_token1] = ACTIONS(1743), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1743), - [aux_sym_port_token1] = ACTIONS(1743), - [aux_sym_preferred_authentications_token1] = ACTIONS(1743), - [aux_sym_protocol_token1] = ACTIONS(1743), - [aux_sym_proxy_command_token1] = ACTIONS(1743), - [aux_sym_proxy_jump_token1] = ACTIONS(1743), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1743), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1743), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1743), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1743), - [aux_sym_rekey_limit_token1] = ACTIONS(1743), - [aux_sym_remote_command_token1] = ACTIONS(1743), - [aux_sym_remote_forward_token1] = ACTIONS(1743), - [aux_sym_request_tty_token1] = ACTIONS(1743), - [aux_sym_required_rsa_size_token1] = ACTIONS(1743), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1743), - [aux_sym_security_key_provider_token1] = ACTIONS(1743), - [aux_sym_send_env_token1] = ACTIONS(1743), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1743), - [aux_sym_server_alive_interval_token1] = ACTIONS(1743), - [aux_sym_session_type_token1] = ACTIONS(1743), - [aux_sym_set_env_token1] = ACTIONS(1743), - [aux_sym_stdin_null_token1] = ACTIONS(1743), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1743), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1743), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1743), - [aux_sym_syslog_facility_token1] = ACTIONS(1743), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1743), - [aux_sym_keep_alive_token1] = ACTIONS(1743), - [aux_sym_tunnel_token1] = ACTIONS(1745), - [aux_sym_tunnel_device_token1] = ACTIONS(1743), - [aux_sym_update_host_keys_token1] = ACTIONS(1743), - [aux_sym_use_keychain_token1] = ACTIONS(1743), - [aux_sym_use_roaming_token1] = ACTIONS(1743), - [aux_sym_user_token1] = ACTIONS(1745), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1743), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1743), - [aux_sym_visual_host_key_token1] = ACTIONS(1743), - [aux_sym_xauth_location_token1] = ACTIONS(1743), + [ts_builtin_sym_end] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1750), + [anon_sym_DQUOTE] = ACTIONS(1752), + [aux_sym_match_token1] = ACTIONS(1748), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1748), + [aux_sym_address_family_token1] = ACTIONS(1748), + [aux_sym_batch_mode_token1] = ACTIONS(1748), + [aux_sym_bind_address_token1] = ACTIONS(1748), + [aux_sym_bind_interface_token1] = ACTIONS(1748), + [aux_sym_canonical_domains_token1] = ACTIONS(1748), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1748), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1748), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1748), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1748), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1748), + [aux_sym_certificate_file_token1] = ACTIONS(1748), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1748), + [aux_sym_check_host_ip_token1] = ACTIONS(1748), + [aux_sym_ciphers_token1] = ACTIONS(1748), + [aux_sym_cipher_token1] = ACTIONS(1750), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1748), + [aux_sym_compression_token1] = ACTIONS(1748), + [aux_sym_connection_attempts_token1] = ACTIONS(1748), + [aux_sym_connect_timeout_token1] = ACTIONS(1748), + [aux_sym_control_master_token1] = ACTIONS(1748), + [aux_sym_control_path_token1] = ACTIONS(1748), + [aux_sym_control_persist_token1] = ACTIONS(1748), + [aux_sym_dynamic_forward_token1] = ACTIONS(1748), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1748), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1748), + [aux_sym_escape_char_token1] = ACTIONS(1748), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1748), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1748), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1748), + [aux_sym_forward_agent_token1] = ACTIONS(1748), + [aux_sym_forward_x11_token1] = ACTIONS(1750), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1748), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1748), + [aux_sym_gateway_ports_token1] = ACTIONS(1748), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1748), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1748), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1748), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1748), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1748), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1748), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1748), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1748), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1748), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1748), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1748), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1748), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1748), + [aux_sym_host_key_alias_token1] = ACTIONS(1748), + [aux_sym_hostname_token1] = ACTIONS(1748), + [aux_sym_identities_only_token1] = ACTIONS(1748), + [aux_sym_identity_agent_token1] = ACTIONS(1748), + [aux_sym_identity_file_token1] = ACTIONS(1748), + [aux_sym_ignore_unknown_token1] = ACTIONS(1748), + [aux_sym_include_token1] = ACTIONS(1748), + [aux_sym_ip_qos_token1] = ACTIONS(1748), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1748), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1748), + [aux_sym_kex_algorithms_token1] = ACTIONS(1748), + [aux_sym_known_hosts_command_token1] = ACTIONS(1748), + [aux_sym_local_command_token1] = ACTIONS(1748), + [aux_sym_local_forward_token1] = ACTIONS(1748), + [aux_sym_log_level_token1] = ACTIONS(1748), + [aux_sym_log_verbose_token1] = ACTIONS(1748), + [aux_sym_macs_token1] = ACTIONS(1748), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1748), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1748), + [aux_sym_password_authentication_token1] = ACTIONS(1748), + [aux_sym_permit_local_command_token1] = ACTIONS(1748), + [aux_sym_permit_remote_open_token1] = ACTIONS(1748), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1748), + [aux_sym_port_token1] = ACTIONS(1748), + [aux_sym_preferred_authentications_token1] = ACTIONS(1748), + [aux_sym_protocol_token1] = ACTIONS(1748), + [aux_sym_proxy_command_token1] = ACTIONS(1748), + [aux_sym_proxy_jump_token1] = ACTIONS(1748), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1748), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1748), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1748), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1748), + [aux_sym_rekey_limit_token1] = ACTIONS(1748), + [aux_sym_remote_command_token1] = ACTIONS(1748), + [aux_sym_remote_forward_token1] = ACTIONS(1748), + [aux_sym_request_tty_token1] = ACTIONS(1748), + [aux_sym_required_rsa_size_token1] = ACTIONS(1748), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1748), + [aux_sym_security_key_provider_token1] = ACTIONS(1748), + [aux_sym_send_env_token1] = ACTIONS(1748), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1748), + [aux_sym_server_alive_interval_token1] = ACTIONS(1748), + [aux_sym_session_type_token1] = ACTIONS(1748), + [aux_sym_set_env_token1] = ACTIONS(1748), + [aux_sym_stdin_null_token1] = ACTIONS(1748), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1748), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1748), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1748), + [aux_sym_syslog_facility_token1] = ACTIONS(1748), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1748), + [aux_sym_keep_alive_token1] = ACTIONS(1748), + [aux_sym_tunnel_token1] = ACTIONS(1750), + [aux_sym_tunnel_device_token1] = ACTIONS(1748), + [aux_sym_update_host_keys_token1] = ACTIONS(1748), + [aux_sym_use_keychain_token1] = ACTIONS(1748), + [aux_sym_use_roaming_token1] = ACTIONS(1748), + [aux_sym_user_token1] = ACTIONS(1750), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1748), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1748), + [aux_sym_visual_host_key_token1] = ACTIONS(1748), + [aux_sym_xauth_location_token1] = ACTIONS(1748), }, [202] = { - [ts_builtin_sym_end] = ACTIONS(1749), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1751), - [anon_sym_DQUOTE] = ACTIONS(1753), - [aux_sym_match_token1] = ACTIONS(1749), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1749), - [aux_sym_address_family_token1] = ACTIONS(1749), - [aux_sym_batch_mode_token1] = ACTIONS(1749), - [aux_sym_bind_address_token1] = ACTIONS(1749), - [aux_sym_bind_interface_token1] = ACTIONS(1749), - [aux_sym_canonical_domains_token1] = ACTIONS(1749), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1749), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1749), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1749), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1749), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1749), - [aux_sym_certificate_file_token1] = ACTIONS(1749), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1749), - [aux_sym_check_host_ip_token1] = ACTIONS(1749), - [aux_sym_ciphers_token1] = ACTIONS(1749), - [aux_sym_cipher_token1] = ACTIONS(1751), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1749), - [aux_sym_compression_token1] = ACTIONS(1749), - [aux_sym_connection_attempts_token1] = ACTIONS(1749), - [aux_sym_connect_timeout_token1] = ACTIONS(1749), - [aux_sym_control_master_token1] = ACTIONS(1749), - [aux_sym_control_path_token1] = ACTIONS(1749), - [aux_sym_control_persist_token1] = ACTIONS(1749), - [aux_sym_dynamic_forward_token1] = ACTIONS(1749), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1749), - [aux_sym_escape_char_token1] = ACTIONS(1749), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1749), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1749), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1749), - [aux_sym_forward_agent_token1] = ACTIONS(1749), - [aux_sym_forward_x11_token1] = ACTIONS(1751), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1749), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1749), - [aux_sym_gateway_ports_token1] = ACTIONS(1749), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1749), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1749), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1749), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1749), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1749), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1749), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1749), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1749), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1749), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1749), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1749), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1749), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1749), - [aux_sym_host_key_alias_token1] = ACTIONS(1749), - [aux_sym_hostname_token1] = ACTIONS(1749), - [aux_sym_identities_only_token1] = ACTIONS(1749), - [aux_sym_identity_agent_token1] = ACTIONS(1749), - [aux_sym_identity_file_token1] = ACTIONS(1749), - [aux_sym_ignore_unknown_token1] = ACTIONS(1749), - [aux_sym_include_token1] = ACTIONS(1749), - [aux_sym_ip_qos_token1] = ACTIONS(1749), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1749), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1749), - [aux_sym_kex_algorithms_token1] = ACTIONS(1749), - [aux_sym_known_hosts_command_token1] = ACTIONS(1749), - [aux_sym_local_command_token1] = ACTIONS(1749), - [aux_sym_local_forward_token1] = ACTIONS(1749), - [aux_sym_log_level_token1] = ACTIONS(1749), - [aux_sym_log_verbose_token1] = ACTIONS(1749), - [aux_sym_macs_token1] = ACTIONS(1749), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1749), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1749), - [aux_sym_password_authentication_token1] = ACTIONS(1749), - [aux_sym_permit_local_command_token1] = ACTIONS(1749), - [aux_sym_permit_remote_open_token1] = ACTIONS(1749), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1749), - [aux_sym_port_token1] = ACTIONS(1749), - [aux_sym_preferred_authentications_token1] = ACTIONS(1749), - [aux_sym_protocol_token1] = ACTIONS(1749), - [aux_sym_proxy_command_token1] = ACTIONS(1749), - [aux_sym_proxy_jump_token1] = ACTIONS(1749), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1749), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1749), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1749), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1749), - [aux_sym_rekey_limit_token1] = ACTIONS(1749), - [aux_sym_remote_command_token1] = ACTIONS(1749), - [aux_sym_remote_forward_token1] = ACTIONS(1749), - [aux_sym_request_tty_token1] = ACTIONS(1749), - [aux_sym_required_rsa_size_token1] = ACTIONS(1749), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1749), - [aux_sym_security_key_provider_token1] = ACTIONS(1749), - [aux_sym_send_env_token1] = ACTIONS(1749), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1749), - [aux_sym_server_alive_interval_token1] = ACTIONS(1749), - [aux_sym_session_type_token1] = ACTIONS(1749), - [aux_sym_set_env_token1] = ACTIONS(1749), - [aux_sym_stdin_null_token1] = ACTIONS(1749), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1749), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1749), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1749), - [aux_sym_syslog_facility_token1] = ACTIONS(1749), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1749), - [aux_sym_keep_alive_token1] = ACTIONS(1749), - [aux_sym_tunnel_token1] = ACTIONS(1751), - [aux_sym_tunnel_device_token1] = ACTIONS(1749), - [aux_sym_update_host_keys_token1] = ACTIONS(1749), - [aux_sym_use_keychain_token1] = ACTIONS(1749), - [aux_sym_use_roaming_token1] = ACTIONS(1749), - [aux_sym_user_token1] = ACTIONS(1751), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1749), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1749), - [aux_sym_visual_host_key_token1] = ACTIONS(1749), - [aux_sym_xauth_location_token1] = ACTIONS(1749), + [ts_builtin_sym_end] = ACTIONS(1754), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1758), + [aux_sym_match_token1] = ACTIONS(1754), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1754), + [aux_sym_address_family_token1] = ACTIONS(1754), + [aux_sym_batch_mode_token1] = ACTIONS(1754), + [aux_sym_bind_address_token1] = ACTIONS(1754), + [aux_sym_bind_interface_token1] = ACTIONS(1754), + [aux_sym_canonical_domains_token1] = ACTIONS(1754), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1754), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1754), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1754), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1754), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1754), + [aux_sym_certificate_file_token1] = ACTIONS(1754), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1754), + [aux_sym_check_host_ip_token1] = ACTIONS(1754), + [aux_sym_ciphers_token1] = ACTIONS(1754), + [aux_sym_cipher_token1] = ACTIONS(1756), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1754), + [aux_sym_compression_token1] = ACTIONS(1754), + [aux_sym_connection_attempts_token1] = ACTIONS(1754), + [aux_sym_connect_timeout_token1] = ACTIONS(1754), + [aux_sym_control_master_token1] = ACTIONS(1754), + [aux_sym_control_path_token1] = ACTIONS(1754), + [aux_sym_control_persist_token1] = ACTIONS(1754), + [aux_sym_dynamic_forward_token1] = ACTIONS(1754), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1754), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1754), + [aux_sym_escape_char_token1] = ACTIONS(1754), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1754), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1754), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1754), + [aux_sym_forward_agent_token1] = ACTIONS(1754), + [aux_sym_forward_x11_token1] = ACTIONS(1756), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1754), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1754), + [aux_sym_gateway_ports_token1] = ACTIONS(1754), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1754), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1754), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1754), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1754), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1754), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1754), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1754), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1754), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1754), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1754), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1754), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1754), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1754), + [aux_sym_host_key_alias_token1] = ACTIONS(1754), + [aux_sym_hostname_token1] = ACTIONS(1754), + [aux_sym_identities_only_token1] = ACTIONS(1754), + [aux_sym_identity_agent_token1] = ACTIONS(1754), + [aux_sym_identity_file_token1] = ACTIONS(1754), + [aux_sym_ignore_unknown_token1] = ACTIONS(1754), + [aux_sym_include_token1] = ACTIONS(1754), + [aux_sym_ip_qos_token1] = ACTIONS(1754), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1754), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1754), + [aux_sym_kex_algorithms_token1] = ACTIONS(1754), + [aux_sym_known_hosts_command_token1] = ACTIONS(1754), + [aux_sym_local_command_token1] = ACTIONS(1754), + [aux_sym_local_forward_token1] = ACTIONS(1754), + [aux_sym_log_level_token1] = ACTIONS(1754), + [aux_sym_log_verbose_token1] = ACTIONS(1754), + [aux_sym_macs_token1] = ACTIONS(1754), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1754), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1754), + [aux_sym_password_authentication_token1] = ACTIONS(1754), + [aux_sym_permit_local_command_token1] = ACTIONS(1754), + [aux_sym_permit_remote_open_token1] = ACTIONS(1754), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1754), + [aux_sym_port_token1] = ACTIONS(1754), + [aux_sym_preferred_authentications_token1] = ACTIONS(1754), + [aux_sym_protocol_token1] = ACTIONS(1754), + [aux_sym_proxy_command_token1] = ACTIONS(1754), + [aux_sym_proxy_jump_token1] = ACTIONS(1754), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1754), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1754), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1754), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1754), + [aux_sym_rekey_limit_token1] = ACTIONS(1754), + [aux_sym_remote_command_token1] = ACTIONS(1754), + [aux_sym_remote_forward_token1] = ACTIONS(1754), + [aux_sym_request_tty_token1] = ACTIONS(1754), + [aux_sym_required_rsa_size_token1] = ACTIONS(1754), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1754), + [aux_sym_security_key_provider_token1] = ACTIONS(1754), + [aux_sym_send_env_token1] = ACTIONS(1754), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1754), + [aux_sym_server_alive_interval_token1] = ACTIONS(1754), + [aux_sym_session_type_token1] = ACTIONS(1754), + [aux_sym_set_env_token1] = ACTIONS(1754), + [aux_sym_stdin_null_token1] = ACTIONS(1754), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1754), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1754), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1754), + [aux_sym_syslog_facility_token1] = ACTIONS(1754), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1754), + [aux_sym_keep_alive_token1] = ACTIONS(1754), + [aux_sym_tunnel_token1] = ACTIONS(1756), + [aux_sym_tunnel_device_token1] = ACTIONS(1754), + [aux_sym_update_host_keys_token1] = ACTIONS(1754), + [aux_sym_use_keychain_token1] = ACTIONS(1754), + [aux_sym_use_roaming_token1] = ACTIONS(1754), + [aux_sym_user_token1] = ACTIONS(1756), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1754), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1754), + [aux_sym_visual_host_key_token1] = ACTIONS(1754), + [aux_sym_xauth_location_token1] = ACTIONS(1754), }, [203] = { - [ts_builtin_sym_end] = ACTIONS(1755), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1759), - [aux_sym_match_token1] = ACTIONS(1755), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1755), - [aux_sym_address_family_token1] = ACTIONS(1755), - [aux_sym_batch_mode_token1] = ACTIONS(1755), - [aux_sym_bind_address_token1] = ACTIONS(1755), - [aux_sym_bind_interface_token1] = ACTIONS(1755), - [aux_sym_canonical_domains_token1] = ACTIONS(1755), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1755), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1755), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1755), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1755), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1755), - [aux_sym_certificate_file_token1] = ACTIONS(1755), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1755), - [aux_sym_check_host_ip_token1] = ACTIONS(1755), - [aux_sym_ciphers_token1] = ACTIONS(1755), - [aux_sym_cipher_token1] = ACTIONS(1757), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1755), - [aux_sym_compression_token1] = ACTIONS(1755), - [aux_sym_connection_attempts_token1] = ACTIONS(1755), - [aux_sym_connect_timeout_token1] = ACTIONS(1755), - [aux_sym_control_master_token1] = ACTIONS(1755), - [aux_sym_control_path_token1] = ACTIONS(1755), - [aux_sym_control_persist_token1] = ACTIONS(1755), - [aux_sym_dynamic_forward_token1] = ACTIONS(1755), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1755), - [aux_sym_escape_char_token1] = ACTIONS(1755), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1755), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1755), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1755), - [aux_sym_forward_agent_token1] = ACTIONS(1755), - [aux_sym_forward_x11_token1] = ACTIONS(1757), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1755), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1755), - [aux_sym_gateway_ports_token1] = ACTIONS(1755), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1755), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1755), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1755), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1755), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1755), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1755), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1755), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1755), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1755), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1755), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1755), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1755), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1755), - [aux_sym_host_key_alias_token1] = ACTIONS(1755), - [aux_sym_hostname_token1] = ACTIONS(1755), - [aux_sym_identities_only_token1] = ACTIONS(1755), - [aux_sym_identity_agent_token1] = ACTIONS(1755), - [aux_sym_identity_file_token1] = ACTIONS(1755), - [aux_sym_ignore_unknown_token1] = ACTIONS(1755), - [aux_sym_include_token1] = ACTIONS(1755), - [aux_sym_ip_qos_token1] = ACTIONS(1755), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1755), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1755), - [aux_sym_kex_algorithms_token1] = ACTIONS(1755), - [aux_sym_known_hosts_command_token1] = ACTIONS(1755), - [aux_sym_local_command_token1] = ACTIONS(1755), - [aux_sym_local_forward_token1] = ACTIONS(1755), - [aux_sym_log_level_token1] = ACTIONS(1755), - [aux_sym_log_verbose_token1] = ACTIONS(1755), - [aux_sym_macs_token1] = ACTIONS(1755), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1755), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1755), - [aux_sym_password_authentication_token1] = ACTIONS(1755), - [aux_sym_permit_local_command_token1] = ACTIONS(1755), - [aux_sym_permit_remote_open_token1] = ACTIONS(1755), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1755), - [aux_sym_port_token1] = ACTIONS(1755), - [aux_sym_preferred_authentications_token1] = ACTIONS(1755), - [aux_sym_protocol_token1] = ACTIONS(1755), - [aux_sym_proxy_command_token1] = ACTIONS(1755), - [aux_sym_proxy_jump_token1] = ACTIONS(1755), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1755), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1755), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1755), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1755), - [aux_sym_rekey_limit_token1] = ACTIONS(1755), - [aux_sym_remote_command_token1] = ACTIONS(1755), - [aux_sym_remote_forward_token1] = ACTIONS(1755), - [aux_sym_request_tty_token1] = ACTIONS(1755), - [aux_sym_required_rsa_size_token1] = ACTIONS(1755), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1755), - [aux_sym_security_key_provider_token1] = ACTIONS(1755), - [aux_sym_send_env_token1] = ACTIONS(1755), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1755), - [aux_sym_server_alive_interval_token1] = ACTIONS(1755), - [aux_sym_session_type_token1] = ACTIONS(1755), - [aux_sym_set_env_token1] = ACTIONS(1755), - [aux_sym_stdin_null_token1] = ACTIONS(1755), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1755), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1755), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1755), - [aux_sym_syslog_facility_token1] = ACTIONS(1755), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1755), - [aux_sym_keep_alive_token1] = ACTIONS(1755), - [aux_sym_tunnel_token1] = ACTIONS(1757), - [aux_sym_tunnel_device_token1] = ACTIONS(1755), - [aux_sym_update_host_keys_token1] = ACTIONS(1755), - [aux_sym_use_keychain_token1] = ACTIONS(1755), - [aux_sym_use_roaming_token1] = ACTIONS(1755), - [aux_sym_user_token1] = ACTIONS(1757), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1755), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1755), - [aux_sym_visual_host_key_token1] = ACTIONS(1755), - [aux_sym_xauth_location_token1] = ACTIONS(1755), + [ts_builtin_sym_end] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1764), + [aux_sym_match_token1] = ACTIONS(1760), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1760), + [aux_sym_address_family_token1] = ACTIONS(1760), + [aux_sym_batch_mode_token1] = ACTIONS(1760), + [aux_sym_bind_address_token1] = ACTIONS(1760), + [aux_sym_bind_interface_token1] = ACTIONS(1760), + [aux_sym_canonical_domains_token1] = ACTIONS(1760), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1760), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1760), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1760), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1760), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1760), + [aux_sym_certificate_file_token1] = ACTIONS(1760), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1760), + [aux_sym_check_host_ip_token1] = ACTIONS(1760), + [aux_sym_ciphers_token1] = ACTIONS(1760), + [aux_sym_cipher_token1] = ACTIONS(1762), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1760), + [aux_sym_compression_token1] = ACTIONS(1760), + [aux_sym_connection_attempts_token1] = ACTIONS(1760), + [aux_sym_connect_timeout_token1] = ACTIONS(1760), + [aux_sym_control_master_token1] = ACTIONS(1760), + [aux_sym_control_path_token1] = ACTIONS(1760), + [aux_sym_control_persist_token1] = ACTIONS(1760), + [aux_sym_dynamic_forward_token1] = ACTIONS(1760), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1760), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1760), + [aux_sym_escape_char_token1] = ACTIONS(1760), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1760), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1760), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1760), + [aux_sym_forward_agent_token1] = ACTIONS(1760), + [aux_sym_forward_x11_token1] = ACTIONS(1762), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1760), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1760), + [aux_sym_gateway_ports_token1] = ACTIONS(1760), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1760), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1760), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1760), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1760), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1760), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1760), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1760), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1760), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1760), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1760), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1760), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1760), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1760), + [aux_sym_host_key_alias_token1] = ACTIONS(1760), + [aux_sym_hostname_token1] = ACTIONS(1760), + [aux_sym_identities_only_token1] = ACTIONS(1760), + [aux_sym_identity_agent_token1] = ACTIONS(1760), + [aux_sym_identity_file_token1] = ACTIONS(1760), + [aux_sym_ignore_unknown_token1] = ACTIONS(1760), + [aux_sym_include_token1] = ACTIONS(1760), + [aux_sym_ip_qos_token1] = ACTIONS(1760), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1760), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1760), + [aux_sym_kex_algorithms_token1] = ACTIONS(1760), + [aux_sym_known_hosts_command_token1] = ACTIONS(1760), + [aux_sym_local_command_token1] = ACTIONS(1760), + [aux_sym_local_forward_token1] = ACTIONS(1760), + [aux_sym_log_level_token1] = ACTIONS(1760), + [aux_sym_log_verbose_token1] = ACTIONS(1760), + [aux_sym_macs_token1] = ACTIONS(1760), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1760), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1760), + [aux_sym_password_authentication_token1] = ACTIONS(1760), + [aux_sym_permit_local_command_token1] = ACTIONS(1760), + [aux_sym_permit_remote_open_token1] = ACTIONS(1760), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1760), + [aux_sym_port_token1] = ACTIONS(1760), + [aux_sym_preferred_authentications_token1] = ACTIONS(1760), + [aux_sym_protocol_token1] = ACTIONS(1760), + [aux_sym_proxy_command_token1] = ACTIONS(1760), + [aux_sym_proxy_jump_token1] = ACTIONS(1760), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1760), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1760), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1760), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1760), + [aux_sym_rekey_limit_token1] = ACTIONS(1760), + [aux_sym_remote_command_token1] = ACTIONS(1760), + [aux_sym_remote_forward_token1] = ACTIONS(1760), + [aux_sym_request_tty_token1] = ACTIONS(1760), + [aux_sym_required_rsa_size_token1] = ACTIONS(1760), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1760), + [aux_sym_security_key_provider_token1] = ACTIONS(1760), + [aux_sym_send_env_token1] = ACTIONS(1760), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1760), + [aux_sym_server_alive_interval_token1] = ACTIONS(1760), + [aux_sym_session_type_token1] = ACTIONS(1760), + [aux_sym_set_env_token1] = ACTIONS(1760), + [aux_sym_stdin_null_token1] = ACTIONS(1760), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1760), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1760), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1760), + [aux_sym_syslog_facility_token1] = ACTIONS(1760), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1760), + [aux_sym_keep_alive_token1] = ACTIONS(1760), + [aux_sym_tunnel_token1] = ACTIONS(1762), + [aux_sym_tunnel_device_token1] = ACTIONS(1760), + [aux_sym_update_host_keys_token1] = ACTIONS(1760), + [aux_sym_use_keychain_token1] = ACTIONS(1760), + [aux_sym_use_roaming_token1] = ACTIONS(1760), + [aux_sym_user_token1] = ACTIONS(1762), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1760), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1760), + [aux_sym_visual_host_key_token1] = ACTIONS(1760), + [aux_sym_xauth_location_token1] = ACTIONS(1760), }, [204] = { - [ts_builtin_sym_end] = ACTIONS(1761), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1765), - [aux_sym_match_token1] = ACTIONS(1761), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1761), - [aux_sym_address_family_token1] = ACTIONS(1761), - [aux_sym_batch_mode_token1] = ACTIONS(1761), - [aux_sym_bind_address_token1] = ACTIONS(1761), - [aux_sym_bind_interface_token1] = ACTIONS(1761), - [aux_sym_canonical_domains_token1] = ACTIONS(1761), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1761), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1761), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1761), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1761), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1761), - [aux_sym_certificate_file_token1] = ACTIONS(1761), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1761), - [aux_sym_check_host_ip_token1] = ACTIONS(1761), - [aux_sym_ciphers_token1] = ACTIONS(1761), - [aux_sym_cipher_token1] = ACTIONS(1763), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1761), - [aux_sym_compression_token1] = ACTIONS(1761), - [aux_sym_connection_attempts_token1] = ACTIONS(1761), - [aux_sym_connect_timeout_token1] = ACTIONS(1761), - [aux_sym_control_master_token1] = ACTIONS(1761), - [aux_sym_control_path_token1] = ACTIONS(1761), - [aux_sym_control_persist_token1] = ACTIONS(1761), - [aux_sym_dynamic_forward_token1] = ACTIONS(1761), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1761), - [aux_sym_escape_char_token1] = ACTIONS(1761), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1761), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1761), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1761), - [aux_sym_forward_agent_token1] = ACTIONS(1761), - [aux_sym_forward_x11_token1] = ACTIONS(1763), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1761), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1761), - [aux_sym_gateway_ports_token1] = ACTIONS(1761), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1761), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1761), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1761), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1761), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1761), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1761), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1761), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1761), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1761), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1761), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1761), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1761), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1761), - [aux_sym_host_key_alias_token1] = ACTIONS(1761), - [aux_sym_hostname_token1] = ACTIONS(1761), - [aux_sym_identities_only_token1] = ACTIONS(1761), - [aux_sym_identity_agent_token1] = ACTIONS(1761), - [aux_sym_identity_file_token1] = ACTIONS(1761), - [aux_sym_ignore_unknown_token1] = ACTIONS(1761), - [aux_sym_include_token1] = ACTIONS(1761), - [aux_sym_ip_qos_token1] = ACTIONS(1761), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1761), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1761), - [aux_sym_kex_algorithms_token1] = ACTIONS(1761), - [aux_sym_known_hosts_command_token1] = ACTIONS(1761), - [aux_sym_local_command_token1] = ACTIONS(1761), - [aux_sym_local_forward_token1] = ACTIONS(1761), - [aux_sym_log_level_token1] = ACTIONS(1761), - [aux_sym_log_verbose_token1] = ACTIONS(1761), - [aux_sym_macs_token1] = ACTIONS(1761), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1761), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1761), - [aux_sym_password_authentication_token1] = ACTIONS(1761), - [aux_sym_permit_local_command_token1] = ACTIONS(1761), - [aux_sym_permit_remote_open_token1] = ACTIONS(1761), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1761), - [aux_sym_port_token1] = ACTIONS(1761), - [aux_sym_preferred_authentications_token1] = ACTIONS(1761), - [aux_sym_protocol_token1] = ACTIONS(1761), - [aux_sym_proxy_command_token1] = ACTIONS(1761), - [aux_sym_proxy_jump_token1] = ACTIONS(1761), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1761), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1761), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1761), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1761), - [aux_sym_rekey_limit_token1] = ACTIONS(1761), - [aux_sym_remote_command_token1] = ACTIONS(1761), - [aux_sym_remote_forward_token1] = ACTIONS(1761), - [aux_sym_request_tty_token1] = ACTIONS(1761), - [aux_sym_required_rsa_size_token1] = ACTIONS(1761), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1761), - [aux_sym_security_key_provider_token1] = ACTIONS(1761), - [aux_sym_send_env_token1] = ACTIONS(1761), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1761), - [aux_sym_server_alive_interval_token1] = ACTIONS(1761), - [aux_sym_session_type_token1] = ACTIONS(1761), - [aux_sym_set_env_token1] = ACTIONS(1761), - [aux_sym_stdin_null_token1] = ACTIONS(1761), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1761), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1761), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1761), - [aux_sym_syslog_facility_token1] = ACTIONS(1761), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1761), - [aux_sym_keep_alive_token1] = ACTIONS(1761), - [aux_sym_tunnel_token1] = ACTIONS(1763), - [aux_sym_tunnel_device_token1] = ACTIONS(1761), - [aux_sym_update_host_keys_token1] = ACTIONS(1761), - [aux_sym_use_keychain_token1] = ACTIONS(1761), - [aux_sym_use_roaming_token1] = ACTIONS(1761), - [aux_sym_user_token1] = ACTIONS(1763), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1761), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1761), - [aux_sym_visual_host_key_token1] = ACTIONS(1761), - [aux_sym_xauth_location_token1] = ACTIONS(1761), + [ts_builtin_sym_end] = ACTIONS(1766), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1768), + [anon_sym_DQUOTE] = ACTIONS(1770), + [aux_sym_match_token1] = ACTIONS(1766), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1766), + [aux_sym_address_family_token1] = ACTIONS(1766), + [aux_sym_batch_mode_token1] = ACTIONS(1766), + [aux_sym_bind_address_token1] = ACTIONS(1766), + [aux_sym_bind_interface_token1] = ACTIONS(1766), + [aux_sym_canonical_domains_token1] = ACTIONS(1766), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1766), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1766), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1766), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1766), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1766), + [aux_sym_certificate_file_token1] = ACTIONS(1766), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1766), + [aux_sym_check_host_ip_token1] = ACTIONS(1766), + [aux_sym_ciphers_token1] = ACTIONS(1766), + [aux_sym_cipher_token1] = ACTIONS(1768), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1766), + [aux_sym_compression_token1] = ACTIONS(1766), + [aux_sym_connection_attempts_token1] = ACTIONS(1766), + [aux_sym_connect_timeout_token1] = ACTIONS(1766), + [aux_sym_control_master_token1] = ACTIONS(1766), + [aux_sym_control_path_token1] = ACTIONS(1766), + [aux_sym_control_persist_token1] = ACTIONS(1766), + [aux_sym_dynamic_forward_token1] = ACTIONS(1766), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1766), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1766), + [aux_sym_escape_char_token1] = ACTIONS(1766), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1766), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1766), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1766), + [aux_sym_forward_agent_token1] = ACTIONS(1766), + [aux_sym_forward_x11_token1] = ACTIONS(1768), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1766), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1766), + [aux_sym_gateway_ports_token1] = ACTIONS(1766), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1766), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1766), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1766), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1766), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1766), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1766), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1766), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1766), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1766), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1766), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1766), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1766), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1766), + [aux_sym_host_key_alias_token1] = ACTIONS(1766), + [aux_sym_hostname_token1] = ACTIONS(1766), + [aux_sym_identities_only_token1] = ACTIONS(1766), + [aux_sym_identity_agent_token1] = ACTIONS(1766), + [aux_sym_identity_file_token1] = ACTIONS(1766), + [aux_sym_ignore_unknown_token1] = ACTIONS(1766), + [aux_sym_include_token1] = ACTIONS(1766), + [aux_sym_ip_qos_token1] = ACTIONS(1766), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1766), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1766), + [aux_sym_kex_algorithms_token1] = ACTIONS(1766), + [aux_sym_known_hosts_command_token1] = ACTIONS(1766), + [aux_sym_local_command_token1] = ACTIONS(1766), + [aux_sym_local_forward_token1] = ACTIONS(1766), + [aux_sym_log_level_token1] = ACTIONS(1766), + [aux_sym_log_verbose_token1] = ACTIONS(1766), + [aux_sym_macs_token1] = ACTIONS(1766), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1766), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1766), + [aux_sym_password_authentication_token1] = ACTIONS(1766), + [aux_sym_permit_local_command_token1] = ACTIONS(1766), + [aux_sym_permit_remote_open_token1] = ACTIONS(1766), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1766), + [aux_sym_port_token1] = ACTIONS(1766), + [aux_sym_preferred_authentications_token1] = ACTIONS(1766), + [aux_sym_protocol_token1] = ACTIONS(1766), + [aux_sym_proxy_command_token1] = ACTIONS(1766), + [aux_sym_proxy_jump_token1] = ACTIONS(1766), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1766), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1766), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1766), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1766), + [aux_sym_rekey_limit_token1] = ACTIONS(1766), + [aux_sym_remote_command_token1] = ACTIONS(1766), + [aux_sym_remote_forward_token1] = ACTIONS(1766), + [aux_sym_request_tty_token1] = ACTIONS(1766), + [aux_sym_required_rsa_size_token1] = ACTIONS(1766), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1766), + [aux_sym_security_key_provider_token1] = ACTIONS(1766), + [aux_sym_send_env_token1] = ACTIONS(1766), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1766), + [aux_sym_server_alive_interval_token1] = ACTIONS(1766), + [aux_sym_session_type_token1] = ACTIONS(1766), + [aux_sym_set_env_token1] = ACTIONS(1766), + [aux_sym_stdin_null_token1] = ACTIONS(1766), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1766), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1766), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1766), + [aux_sym_syslog_facility_token1] = ACTIONS(1766), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1766), + [aux_sym_keep_alive_token1] = ACTIONS(1766), + [aux_sym_tunnel_token1] = ACTIONS(1768), + [aux_sym_tunnel_device_token1] = ACTIONS(1766), + [aux_sym_update_host_keys_token1] = ACTIONS(1766), + [aux_sym_use_keychain_token1] = ACTIONS(1766), + [aux_sym_use_roaming_token1] = ACTIONS(1766), + [aux_sym_user_token1] = ACTIONS(1768), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1766), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1766), + [aux_sym_visual_host_key_token1] = ACTIONS(1766), + [aux_sym_xauth_location_token1] = ACTIONS(1766), }, [205] = { - [ts_builtin_sym_end] = ACTIONS(1767), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1769), - [anon_sym_DQUOTE] = ACTIONS(1771), - [aux_sym_match_token1] = ACTIONS(1767), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1767), - [aux_sym_address_family_token1] = ACTIONS(1767), - [aux_sym_batch_mode_token1] = ACTIONS(1767), - [aux_sym_bind_address_token1] = ACTIONS(1767), - [aux_sym_bind_interface_token1] = ACTIONS(1767), - [aux_sym_canonical_domains_token1] = ACTIONS(1767), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1767), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1767), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1767), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1767), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1767), - [aux_sym_certificate_file_token1] = ACTIONS(1767), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1767), - [aux_sym_check_host_ip_token1] = ACTIONS(1767), - [aux_sym_ciphers_token1] = ACTIONS(1767), - [aux_sym_cipher_token1] = ACTIONS(1769), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1767), - [aux_sym_compression_token1] = ACTIONS(1767), - [aux_sym_connection_attempts_token1] = ACTIONS(1767), - [aux_sym_connect_timeout_token1] = ACTIONS(1767), - [aux_sym_control_master_token1] = ACTIONS(1767), - [aux_sym_control_path_token1] = ACTIONS(1767), - [aux_sym_control_persist_token1] = ACTIONS(1767), - [aux_sym_dynamic_forward_token1] = ACTIONS(1767), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1767), - [aux_sym_escape_char_token1] = ACTIONS(1767), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1767), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1767), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1767), - [aux_sym_forward_agent_token1] = ACTIONS(1767), - [aux_sym_forward_x11_token1] = ACTIONS(1769), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1767), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1767), - [aux_sym_gateway_ports_token1] = ACTIONS(1767), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1767), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1767), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1767), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1767), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1767), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1767), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1767), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1767), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1767), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1767), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1767), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1767), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1767), - [aux_sym_host_key_alias_token1] = ACTIONS(1767), - [aux_sym_hostname_token1] = ACTIONS(1767), - [aux_sym_identities_only_token1] = ACTIONS(1767), - [aux_sym_identity_agent_token1] = ACTIONS(1767), - [aux_sym_identity_file_token1] = ACTIONS(1767), - [aux_sym_ignore_unknown_token1] = ACTIONS(1767), - [aux_sym_include_token1] = ACTIONS(1767), - [aux_sym_ip_qos_token1] = ACTIONS(1767), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1767), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1767), - [aux_sym_kex_algorithms_token1] = ACTIONS(1767), - [aux_sym_known_hosts_command_token1] = ACTIONS(1767), - [aux_sym_local_command_token1] = ACTIONS(1767), - [aux_sym_local_forward_token1] = ACTIONS(1767), - [aux_sym_log_level_token1] = ACTIONS(1767), - [aux_sym_log_verbose_token1] = ACTIONS(1767), - [aux_sym_macs_token1] = ACTIONS(1767), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1767), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1767), - [aux_sym_password_authentication_token1] = ACTIONS(1767), - [aux_sym_permit_local_command_token1] = ACTIONS(1767), - [aux_sym_permit_remote_open_token1] = ACTIONS(1767), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1767), - [aux_sym_port_token1] = ACTIONS(1767), - [aux_sym_preferred_authentications_token1] = ACTIONS(1767), - [aux_sym_protocol_token1] = ACTIONS(1767), - [aux_sym_proxy_command_token1] = ACTIONS(1767), - [aux_sym_proxy_jump_token1] = ACTIONS(1767), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1767), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1767), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1767), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1767), - [aux_sym_rekey_limit_token1] = ACTIONS(1767), - [aux_sym_remote_command_token1] = ACTIONS(1767), - [aux_sym_remote_forward_token1] = ACTIONS(1767), - [aux_sym_request_tty_token1] = ACTIONS(1767), - [aux_sym_required_rsa_size_token1] = ACTIONS(1767), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1767), - [aux_sym_security_key_provider_token1] = ACTIONS(1767), - [aux_sym_send_env_token1] = ACTIONS(1767), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1767), - [aux_sym_server_alive_interval_token1] = ACTIONS(1767), - [aux_sym_session_type_token1] = ACTIONS(1767), - [aux_sym_set_env_token1] = ACTIONS(1767), - [aux_sym_stdin_null_token1] = ACTIONS(1767), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1767), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1767), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1767), - [aux_sym_syslog_facility_token1] = ACTIONS(1767), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1767), - [aux_sym_keep_alive_token1] = ACTIONS(1767), - [aux_sym_tunnel_token1] = ACTIONS(1769), - [aux_sym_tunnel_device_token1] = ACTIONS(1767), - [aux_sym_update_host_keys_token1] = ACTIONS(1767), - [aux_sym_use_keychain_token1] = ACTIONS(1767), - [aux_sym_use_roaming_token1] = ACTIONS(1767), - [aux_sym_user_token1] = ACTIONS(1769), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1767), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1767), - [aux_sym_visual_host_key_token1] = ACTIONS(1767), - [aux_sym_xauth_location_token1] = ACTIONS(1767), + [ts_builtin_sym_end] = ACTIONS(1772), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1776), + [aux_sym_match_token1] = ACTIONS(1772), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1772), + [aux_sym_address_family_token1] = ACTIONS(1772), + [aux_sym_batch_mode_token1] = ACTIONS(1772), + [aux_sym_bind_address_token1] = ACTIONS(1772), + [aux_sym_bind_interface_token1] = ACTIONS(1772), + [aux_sym_canonical_domains_token1] = ACTIONS(1772), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1772), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1772), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1772), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1772), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1772), + [aux_sym_certificate_file_token1] = ACTIONS(1772), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1772), + [aux_sym_check_host_ip_token1] = ACTIONS(1772), + [aux_sym_ciphers_token1] = ACTIONS(1772), + [aux_sym_cipher_token1] = ACTIONS(1774), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1772), + [aux_sym_compression_token1] = ACTIONS(1772), + [aux_sym_connection_attempts_token1] = ACTIONS(1772), + [aux_sym_connect_timeout_token1] = ACTIONS(1772), + [aux_sym_control_master_token1] = ACTIONS(1772), + [aux_sym_control_path_token1] = ACTIONS(1772), + [aux_sym_control_persist_token1] = ACTIONS(1772), + [aux_sym_dynamic_forward_token1] = ACTIONS(1772), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1772), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1772), + [aux_sym_escape_char_token1] = ACTIONS(1772), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1772), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1772), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1772), + [aux_sym_forward_agent_token1] = ACTIONS(1772), + [aux_sym_forward_x11_token1] = ACTIONS(1774), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1772), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1772), + [aux_sym_gateway_ports_token1] = ACTIONS(1772), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1772), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1772), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1772), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1772), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1772), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1772), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1772), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1772), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1772), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1772), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1772), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1772), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1772), + [aux_sym_host_key_alias_token1] = ACTIONS(1772), + [aux_sym_hostname_token1] = ACTIONS(1772), + [aux_sym_identities_only_token1] = ACTIONS(1772), + [aux_sym_identity_agent_token1] = ACTIONS(1772), + [aux_sym_identity_file_token1] = ACTIONS(1772), + [aux_sym_ignore_unknown_token1] = ACTIONS(1772), + [aux_sym_include_token1] = ACTIONS(1772), + [aux_sym_ip_qos_token1] = ACTIONS(1772), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1772), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1772), + [aux_sym_kex_algorithms_token1] = ACTIONS(1772), + [aux_sym_known_hosts_command_token1] = ACTIONS(1772), + [aux_sym_local_command_token1] = ACTIONS(1772), + [aux_sym_local_forward_token1] = ACTIONS(1772), + [aux_sym_log_level_token1] = ACTIONS(1772), + [aux_sym_log_verbose_token1] = ACTIONS(1772), + [aux_sym_macs_token1] = ACTIONS(1772), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1772), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1772), + [aux_sym_password_authentication_token1] = ACTIONS(1772), + [aux_sym_permit_local_command_token1] = ACTIONS(1772), + [aux_sym_permit_remote_open_token1] = ACTIONS(1772), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1772), + [aux_sym_port_token1] = ACTIONS(1772), + [aux_sym_preferred_authentications_token1] = ACTIONS(1772), + [aux_sym_protocol_token1] = ACTIONS(1772), + [aux_sym_proxy_command_token1] = ACTIONS(1772), + [aux_sym_proxy_jump_token1] = ACTIONS(1772), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1772), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1772), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1772), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1772), + [aux_sym_rekey_limit_token1] = ACTIONS(1772), + [aux_sym_remote_command_token1] = ACTIONS(1772), + [aux_sym_remote_forward_token1] = ACTIONS(1772), + [aux_sym_request_tty_token1] = ACTIONS(1772), + [aux_sym_required_rsa_size_token1] = ACTIONS(1772), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1772), + [aux_sym_security_key_provider_token1] = ACTIONS(1772), + [aux_sym_send_env_token1] = ACTIONS(1772), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1772), + [aux_sym_server_alive_interval_token1] = ACTIONS(1772), + [aux_sym_session_type_token1] = ACTIONS(1772), + [aux_sym_set_env_token1] = ACTIONS(1772), + [aux_sym_stdin_null_token1] = ACTIONS(1772), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1772), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1772), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1772), + [aux_sym_syslog_facility_token1] = ACTIONS(1772), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1772), + [aux_sym_keep_alive_token1] = ACTIONS(1772), + [aux_sym_tunnel_token1] = ACTIONS(1774), + [aux_sym_tunnel_device_token1] = ACTIONS(1772), + [aux_sym_update_host_keys_token1] = ACTIONS(1772), + [aux_sym_use_keychain_token1] = ACTIONS(1772), + [aux_sym_use_roaming_token1] = ACTIONS(1772), + [aux_sym_user_token1] = ACTIONS(1774), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1772), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1772), + [aux_sym_visual_host_key_token1] = ACTIONS(1772), + [aux_sym_xauth_location_token1] = ACTIONS(1772), }, [206] = { - [ts_builtin_sym_end] = ACTIONS(1773), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1775), - [anon_sym_DQUOTE] = ACTIONS(1777), - [aux_sym_match_token1] = ACTIONS(1773), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1773), - [aux_sym_address_family_token1] = ACTIONS(1773), - [aux_sym_batch_mode_token1] = ACTIONS(1773), - [aux_sym_bind_address_token1] = ACTIONS(1773), - [aux_sym_bind_interface_token1] = ACTIONS(1773), - [aux_sym_canonical_domains_token1] = ACTIONS(1773), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1773), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1773), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1773), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1773), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1773), - [aux_sym_certificate_file_token1] = ACTIONS(1773), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1773), - [aux_sym_check_host_ip_token1] = ACTIONS(1773), - [aux_sym_ciphers_token1] = ACTIONS(1773), - [aux_sym_cipher_token1] = ACTIONS(1775), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1773), - [aux_sym_compression_token1] = ACTIONS(1773), - [aux_sym_connection_attempts_token1] = ACTIONS(1773), - [aux_sym_connect_timeout_token1] = ACTIONS(1773), - [aux_sym_control_master_token1] = ACTIONS(1773), - [aux_sym_control_path_token1] = ACTIONS(1773), - [aux_sym_control_persist_token1] = ACTIONS(1773), - [aux_sym_dynamic_forward_token1] = ACTIONS(1773), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1773), - [aux_sym_escape_char_token1] = ACTIONS(1773), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1773), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1773), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1773), - [aux_sym_forward_agent_token1] = ACTIONS(1773), - [aux_sym_forward_x11_token1] = ACTIONS(1775), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1773), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1773), - [aux_sym_gateway_ports_token1] = ACTIONS(1773), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1773), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1773), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1773), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1773), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1773), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1773), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1773), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1773), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1773), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1773), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1773), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1773), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1773), - [aux_sym_host_key_alias_token1] = ACTIONS(1773), - [aux_sym_hostname_token1] = ACTIONS(1773), - [aux_sym_identities_only_token1] = ACTIONS(1773), - [aux_sym_identity_agent_token1] = ACTIONS(1773), - [aux_sym_identity_file_token1] = ACTIONS(1773), - [aux_sym_ignore_unknown_token1] = ACTIONS(1773), - [aux_sym_include_token1] = ACTIONS(1773), - [aux_sym_ip_qos_token1] = ACTIONS(1773), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1773), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1773), - [aux_sym_kex_algorithms_token1] = ACTIONS(1773), - [aux_sym_known_hosts_command_token1] = ACTIONS(1773), - [aux_sym_local_command_token1] = ACTIONS(1773), - [aux_sym_local_forward_token1] = ACTIONS(1773), - [aux_sym_log_level_token1] = ACTIONS(1773), - [aux_sym_log_verbose_token1] = ACTIONS(1773), - [aux_sym_macs_token1] = ACTIONS(1773), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1773), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1773), - [aux_sym_password_authentication_token1] = ACTIONS(1773), - [aux_sym_permit_local_command_token1] = ACTIONS(1773), - [aux_sym_permit_remote_open_token1] = ACTIONS(1773), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1773), - [aux_sym_port_token1] = ACTIONS(1773), - [aux_sym_preferred_authentications_token1] = ACTIONS(1773), - [aux_sym_protocol_token1] = ACTIONS(1773), - [aux_sym_proxy_command_token1] = ACTIONS(1773), - [aux_sym_proxy_jump_token1] = ACTIONS(1773), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1773), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1773), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1773), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1773), - [aux_sym_rekey_limit_token1] = ACTIONS(1773), - [aux_sym_remote_command_token1] = ACTIONS(1773), - [aux_sym_remote_forward_token1] = ACTIONS(1773), - [aux_sym_request_tty_token1] = ACTIONS(1773), - [aux_sym_required_rsa_size_token1] = ACTIONS(1773), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1773), - [aux_sym_security_key_provider_token1] = ACTIONS(1773), - [aux_sym_send_env_token1] = ACTIONS(1773), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1773), - [aux_sym_server_alive_interval_token1] = ACTIONS(1773), - [aux_sym_session_type_token1] = ACTIONS(1773), - [aux_sym_set_env_token1] = ACTIONS(1773), - [aux_sym_stdin_null_token1] = ACTIONS(1773), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1773), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1773), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1773), - [aux_sym_syslog_facility_token1] = ACTIONS(1773), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1773), - [aux_sym_keep_alive_token1] = ACTIONS(1773), - [aux_sym_tunnel_token1] = ACTIONS(1775), - [aux_sym_tunnel_device_token1] = ACTIONS(1773), - [aux_sym_update_host_keys_token1] = ACTIONS(1773), - [aux_sym_use_keychain_token1] = ACTIONS(1773), - [aux_sym_use_roaming_token1] = ACTIONS(1773), - [aux_sym_user_token1] = ACTIONS(1775), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1773), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1773), - [aux_sym_visual_host_key_token1] = ACTIONS(1773), - [aux_sym_xauth_location_token1] = ACTIONS(1773), + [ts_builtin_sym_end] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(1782), + [aux_sym_match_token1] = ACTIONS(1778), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1778), + [aux_sym_address_family_token1] = ACTIONS(1778), + [aux_sym_batch_mode_token1] = ACTIONS(1778), + [aux_sym_bind_address_token1] = ACTIONS(1778), + [aux_sym_bind_interface_token1] = ACTIONS(1778), + [aux_sym_canonical_domains_token1] = ACTIONS(1778), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1778), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1778), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1778), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1778), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1778), + [aux_sym_certificate_file_token1] = ACTIONS(1778), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1778), + [aux_sym_check_host_ip_token1] = ACTIONS(1778), + [aux_sym_ciphers_token1] = ACTIONS(1778), + [aux_sym_cipher_token1] = ACTIONS(1780), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1778), + [aux_sym_compression_token1] = ACTIONS(1778), + [aux_sym_connection_attempts_token1] = ACTIONS(1778), + [aux_sym_connect_timeout_token1] = ACTIONS(1778), + [aux_sym_control_master_token1] = ACTIONS(1778), + [aux_sym_control_path_token1] = ACTIONS(1778), + [aux_sym_control_persist_token1] = ACTIONS(1778), + [aux_sym_dynamic_forward_token1] = ACTIONS(1778), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1778), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1778), + [aux_sym_escape_char_token1] = ACTIONS(1778), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1778), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1778), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1778), + [aux_sym_forward_agent_token1] = ACTIONS(1778), + [aux_sym_forward_x11_token1] = ACTIONS(1780), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1778), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1778), + [aux_sym_gateway_ports_token1] = ACTIONS(1778), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1778), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1778), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1778), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1778), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1778), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1778), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1778), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1778), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1778), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1778), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1778), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1778), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1778), + [aux_sym_host_key_alias_token1] = ACTIONS(1778), + [aux_sym_hostname_token1] = ACTIONS(1778), + [aux_sym_identities_only_token1] = ACTIONS(1778), + [aux_sym_identity_agent_token1] = ACTIONS(1778), + [aux_sym_identity_file_token1] = ACTIONS(1778), + [aux_sym_ignore_unknown_token1] = ACTIONS(1778), + [aux_sym_include_token1] = ACTIONS(1778), + [aux_sym_ip_qos_token1] = ACTIONS(1778), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1778), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1778), + [aux_sym_kex_algorithms_token1] = ACTIONS(1778), + [aux_sym_known_hosts_command_token1] = ACTIONS(1778), + [aux_sym_local_command_token1] = ACTIONS(1778), + [aux_sym_local_forward_token1] = ACTIONS(1778), + [aux_sym_log_level_token1] = ACTIONS(1778), + [aux_sym_log_verbose_token1] = ACTIONS(1778), + [aux_sym_macs_token1] = ACTIONS(1778), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1778), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1778), + [aux_sym_password_authentication_token1] = ACTIONS(1778), + [aux_sym_permit_local_command_token1] = ACTIONS(1778), + [aux_sym_permit_remote_open_token1] = ACTIONS(1778), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1778), + [aux_sym_port_token1] = ACTIONS(1778), + [aux_sym_preferred_authentications_token1] = ACTIONS(1778), + [aux_sym_protocol_token1] = ACTIONS(1778), + [aux_sym_proxy_command_token1] = ACTIONS(1778), + [aux_sym_proxy_jump_token1] = ACTIONS(1778), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1778), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1778), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1778), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1778), + [aux_sym_rekey_limit_token1] = ACTIONS(1778), + [aux_sym_remote_command_token1] = ACTIONS(1778), + [aux_sym_remote_forward_token1] = ACTIONS(1778), + [aux_sym_request_tty_token1] = ACTIONS(1778), + [aux_sym_required_rsa_size_token1] = ACTIONS(1778), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1778), + [aux_sym_security_key_provider_token1] = ACTIONS(1778), + [aux_sym_send_env_token1] = ACTIONS(1778), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1778), + [aux_sym_server_alive_interval_token1] = ACTIONS(1778), + [aux_sym_session_type_token1] = ACTIONS(1778), + [aux_sym_set_env_token1] = ACTIONS(1778), + [aux_sym_stdin_null_token1] = ACTIONS(1778), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1778), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1778), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1778), + [aux_sym_syslog_facility_token1] = ACTIONS(1778), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1778), + [aux_sym_keep_alive_token1] = ACTIONS(1778), + [aux_sym_tunnel_token1] = ACTIONS(1780), + [aux_sym_tunnel_device_token1] = ACTIONS(1778), + [aux_sym_update_host_keys_token1] = ACTIONS(1778), + [aux_sym_use_keychain_token1] = ACTIONS(1778), + [aux_sym_use_roaming_token1] = ACTIONS(1778), + [aux_sym_user_token1] = ACTIONS(1780), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1778), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1778), + [aux_sym_visual_host_key_token1] = ACTIONS(1778), + [aux_sym_xauth_location_token1] = ACTIONS(1778), }, [207] = { - [ts_builtin_sym_end] = ACTIONS(1779), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1783), - [aux_sym_match_token1] = ACTIONS(1779), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1779), - [aux_sym_address_family_token1] = ACTIONS(1779), - [aux_sym_batch_mode_token1] = ACTIONS(1779), - [aux_sym_bind_address_token1] = ACTIONS(1779), - [aux_sym_bind_interface_token1] = ACTIONS(1779), - [aux_sym_canonical_domains_token1] = ACTIONS(1779), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1779), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1779), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1779), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1779), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1779), - [aux_sym_certificate_file_token1] = ACTIONS(1779), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1779), - [aux_sym_check_host_ip_token1] = ACTIONS(1779), - [aux_sym_ciphers_token1] = ACTIONS(1779), - [aux_sym_cipher_token1] = ACTIONS(1781), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1779), - [aux_sym_compression_token1] = ACTIONS(1779), - [aux_sym_connection_attempts_token1] = ACTIONS(1779), - [aux_sym_connect_timeout_token1] = ACTIONS(1779), - [aux_sym_control_master_token1] = ACTIONS(1779), - [aux_sym_control_path_token1] = ACTIONS(1779), - [aux_sym_control_persist_token1] = ACTIONS(1779), - [aux_sym_dynamic_forward_token1] = ACTIONS(1779), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1779), - [aux_sym_escape_char_token1] = ACTIONS(1779), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1779), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1779), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1779), - [aux_sym_forward_agent_token1] = ACTIONS(1779), - [aux_sym_forward_x11_token1] = ACTIONS(1781), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1779), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1779), - [aux_sym_gateway_ports_token1] = ACTIONS(1779), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1779), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1779), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1779), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1779), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1779), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1779), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1779), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1779), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1779), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1779), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1779), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1779), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1779), - [aux_sym_host_key_alias_token1] = ACTIONS(1779), - [aux_sym_hostname_token1] = ACTIONS(1779), - [aux_sym_identities_only_token1] = ACTIONS(1779), - [aux_sym_identity_agent_token1] = ACTIONS(1779), - [aux_sym_identity_file_token1] = ACTIONS(1779), - [aux_sym_ignore_unknown_token1] = ACTIONS(1779), - [aux_sym_include_token1] = ACTIONS(1779), - [aux_sym_ip_qos_token1] = ACTIONS(1779), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1779), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1779), - [aux_sym_kex_algorithms_token1] = ACTIONS(1779), - [aux_sym_known_hosts_command_token1] = ACTIONS(1779), - [aux_sym_local_command_token1] = ACTIONS(1779), - [aux_sym_local_forward_token1] = ACTIONS(1779), - [aux_sym_log_level_token1] = ACTIONS(1779), - [aux_sym_log_verbose_token1] = ACTIONS(1779), - [aux_sym_macs_token1] = ACTIONS(1779), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1779), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1779), - [aux_sym_password_authentication_token1] = ACTIONS(1779), - [aux_sym_permit_local_command_token1] = ACTIONS(1779), - [aux_sym_permit_remote_open_token1] = ACTIONS(1779), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1779), - [aux_sym_port_token1] = ACTIONS(1779), - [aux_sym_preferred_authentications_token1] = ACTIONS(1779), - [aux_sym_protocol_token1] = ACTIONS(1779), - [aux_sym_proxy_command_token1] = ACTIONS(1779), - [aux_sym_proxy_jump_token1] = ACTIONS(1779), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1779), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1779), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1779), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1779), - [aux_sym_rekey_limit_token1] = ACTIONS(1779), - [aux_sym_remote_command_token1] = ACTIONS(1779), - [aux_sym_remote_forward_token1] = ACTIONS(1779), - [aux_sym_request_tty_token1] = ACTIONS(1779), - [aux_sym_required_rsa_size_token1] = ACTIONS(1779), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1779), - [aux_sym_security_key_provider_token1] = ACTIONS(1779), - [aux_sym_send_env_token1] = ACTIONS(1779), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1779), - [aux_sym_server_alive_interval_token1] = ACTIONS(1779), - [aux_sym_session_type_token1] = ACTIONS(1779), - [aux_sym_set_env_token1] = ACTIONS(1779), - [aux_sym_stdin_null_token1] = ACTIONS(1779), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1779), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1779), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1779), - [aux_sym_syslog_facility_token1] = ACTIONS(1779), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1779), - [aux_sym_keep_alive_token1] = ACTIONS(1779), - [aux_sym_tunnel_token1] = ACTIONS(1781), - [aux_sym_tunnel_device_token1] = ACTIONS(1779), - [aux_sym_update_host_keys_token1] = ACTIONS(1779), - [aux_sym_use_keychain_token1] = ACTIONS(1779), - [aux_sym_use_roaming_token1] = ACTIONS(1779), - [aux_sym_user_token1] = ACTIONS(1781), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1779), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1779), - [aux_sym_visual_host_key_token1] = ACTIONS(1779), - [aux_sym_xauth_location_token1] = ACTIONS(1779), + [ts_builtin_sym_end] = ACTIONS(1784), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1788), + [aux_sym_match_token1] = ACTIONS(1784), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1784), + [aux_sym_address_family_token1] = ACTIONS(1784), + [aux_sym_batch_mode_token1] = ACTIONS(1784), + [aux_sym_bind_address_token1] = ACTIONS(1784), + [aux_sym_bind_interface_token1] = ACTIONS(1784), + [aux_sym_canonical_domains_token1] = ACTIONS(1784), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1784), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1784), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1784), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1784), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1784), + [aux_sym_certificate_file_token1] = ACTIONS(1784), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1784), + [aux_sym_check_host_ip_token1] = ACTIONS(1784), + [aux_sym_ciphers_token1] = ACTIONS(1784), + [aux_sym_cipher_token1] = ACTIONS(1786), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1784), + [aux_sym_compression_token1] = ACTIONS(1784), + [aux_sym_connection_attempts_token1] = ACTIONS(1784), + [aux_sym_connect_timeout_token1] = ACTIONS(1784), + [aux_sym_control_master_token1] = ACTIONS(1784), + [aux_sym_control_path_token1] = ACTIONS(1784), + [aux_sym_control_persist_token1] = ACTIONS(1784), + [aux_sym_dynamic_forward_token1] = ACTIONS(1784), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1784), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1784), + [aux_sym_escape_char_token1] = ACTIONS(1784), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1784), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1784), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1784), + [aux_sym_forward_agent_token1] = ACTIONS(1784), + [aux_sym_forward_x11_token1] = ACTIONS(1786), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1784), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1784), + [aux_sym_gateway_ports_token1] = ACTIONS(1784), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1784), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1784), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1784), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1784), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1784), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1784), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1784), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1784), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1784), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1784), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1784), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1784), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1784), + [aux_sym_host_key_alias_token1] = ACTIONS(1784), + [aux_sym_hostname_token1] = ACTIONS(1784), + [aux_sym_identities_only_token1] = ACTIONS(1784), + [aux_sym_identity_agent_token1] = ACTIONS(1784), + [aux_sym_identity_file_token1] = ACTIONS(1784), + [aux_sym_ignore_unknown_token1] = ACTIONS(1784), + [aux_sym_include_token1] = ACTIONS(1784), + [aux_sym_ip_qos_token1] = ACTIONS(1784), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1784), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1784), + [aux_sym_kex_algorithms_token1] = ACTIONS(1784), + [aux_sym_known_hosts_command_token1] = ACTIONS(1784), + [aux_sym_local_command_token1] = ACTIONS(1784), + [aux_sym_local_forward_token1] = ACTIONS(1784), + [aux_sym_log_level_token1] = ACTIONS(1784), + [aux_sym_log_verbose_token1] = ACTIONS(1784), + [aux_sym_macs_token1] = ACTIONS(1784), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1784), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1784), + [aux_sym_password_authentication_token1] = ACTIONS(1784), + [aux_sym_permit_local_command_token1] = ACTIONS(1784), + [aux_sym_permit_remote_open_token1] = ACTIONS(1784), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1784), + [aux_sym_port_token1] = ACTIONS(1784), + [aux_sym_preferred_authentications_token1] = ACTIONS(1784), + [aux_sym_protocol_token1] = ACTIONS(1784), + [aux_sym_proxy_command_token1] = ACTIONS(1784), + [aux_sym_proxy_jump_token1] = ACTIONS(1784), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1784), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1784), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1784), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1784), + [aux_sym_rekey_limit_token1] = ACTIONS(1784), + [aux_sym_remote_command_token1] = ACTIONS(1784), + [aux_sym_remote_forward_token1] = ACTIONS(1784), + [aux_sym_request_tty_token1] = ACTIONS(1784), + [aux_sym_required_rsa_size_token1] = ACTIONS(1784), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1784), + [aux_sym_security_key_provider_token1] = ACTIONS(1784), + [aux_sym_send_env_token1] = ACTIONS(1784), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1784), + [aux_sym_server_alive_interval_token1] = ACTIONS(1784), + [aux_sym_session_type_token1] = ACTIONS(1784), + [aux_sym_set_env_token1] = ACTIONS(1784), + [aux_sym_stdin_null_token1] = ACTIONS(1784), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1784), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1784), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1784), + [aux_sym_syslog_facility_token1] = ACTIONS(1784), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1784), + [aux_sym_keep_alive_token1] = ACTIONS(1784), + [aux_sym_tunnel_token1] = ACTIONS(1786), + [aux_sym_tunnel_device_token1] = ACTIONS(1784), + [aux_sym_update_host_keys_token1] = ACTIONS(1784), + [aux_sym_use_keychain_token1] = ACTIONS(1784), + [aux_sym_use_roaming_token1] = ACTIONS(1784), + [aux_sym_user_token1] = ACTIONS(1786), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1784), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1784), + [aux_sym_visual_host_key_token1] = ACTIONS(1784), + [aux_sym_xauth_location_token1] = ACTIONS(1784), }, [208] = { - [ts_builtin_sym_end] = ACTIONS(1785), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1789), - [aux_sym_match_token1] = ACTIONS(1785), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1785), - [aux_sym_address_family_token1] = ACTIONS(1785), - [aux_sym_batch_mode_token1] = ACTIONS(1785), - [aux_sym_bind_address_token1] = ACTIONS(1785), - [aux_sym_bind_interface_token1] = ACTIONS(1785), - [aux_sym_canonical_domains_token1] = ACTIONS(1785), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1785), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1785), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1785), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1785), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1785), - [aux_sym_certificate_file_token1] = ACTIONS(1785), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1785), - [aux_sym_check_host_ip_token1] = ACTIONS(1785), - [aux_sym_ciphers_token1] = ACTIONS(1785), - [aux_sym_cipher_token1] = ACTIONS(1787), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1785), - [aux_sym_compression_token1] = ACTIONS(1785), - [aux_sym_connection_attempts_token1] = ACTIONS(1785), - [aux_sym_connect_timeout_token1] = ACTIONS(1785), - [aux_sym_control_master_token1] = ACTIONS(1785), - [aux_sym_control_path_token1] = ACTIONS(1785), - [aux_sym_control_persist_token1] = ACTIONS(1785), - [aux_sym_dynamic_forward_token1] = ACTIONS(1785), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1785), - [aux_sym_escape_char_token1] = ACTIONS(1785), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1785), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1785), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1785), - [aux_sym_forward_agent_token1] = ACTIONS(1785), - [aux_sym_forward_x11_token1] = ACTIONS(1787), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1785), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1785), - [aux_sym_gateway_ports_token1] = ACTIONS(1785), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1785), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1785), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1785), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1785), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1785), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1785), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1785), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1785), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1785), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1785), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1785), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1785), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1785), - [aux_sym_host_key_alias_token1] = ACTIONS(1785), - [aux_sym_hostname_token1] = ACTIONS(1785), - [aux_sym_identities_only_token1] = ACTIONS(1785), - [aux_sym_identity_agent_token1] = ACTIONS(1785), - [aux_sym_identity_file_token1] = ACTIONS(1785), - [aux_sym_ignore_unknown_token1] = ACTIONS(1785), - [aux_sym_include_token1] = ACTIONS(1785), - [aux_sym_ip_qos_token1] = ACTIONS(1785), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1785), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1785), - [aux_sym_kex_algorithms_token1] = ACTIONS(1785), - [aux_sym_known_hosts_command_token1] = ACTIONS(1785), - [aux_sym_local_command_token1] = ACTIONS(1785), - [aux_sym_local_forward_token1] = ACTIONS(1785), - [aux_sym_log_level_token1] = ACTIONS(1785), - [aux_sym_log_verbose_token1] = ACTIONS(1785), - [aux_sym_macs_token1] = ACTIONS(1785), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1785), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1785), - [aux_sym_password_authentication_token1] = ACTIONS(1785), - [aux_sym_permit_local_command_token1] = ACTIONS(1785), - [aux_sym_permit_remote_open_token1] = ACTIONS(1785), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1785), - [aux_sym_port_token1] = ACTIONS(1785), - [aux_sym_preferred_authentications_token1] = ACTIONS(1785), - [aux_sym_protocol_token1] = ACTIONS(1785), - [aux_sym_proxy_command_token1] = ACTIONS(1785), - [aux_sym_proxy_jump_token1] = ACTIONS(1785), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1785), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1785), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1785), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1785), - [aux_sym_rekey_limit_token1] = ACTIONS(1785), - [aux_sym_remote_command_token1] = ACTIONS(1785), - [aux_sym_remote_forward_token1] = ACTIONS(1785), - [aux_sym_request_tty_token1] = ACTIONS(1785), - [aux_sym_required_rsa_size_token1] = ACTIONS(1785), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1785), - [aux_sym_security_key_provider_token1] = ACTIONS(1785), - [aux_sym_send_env_token1] = ACTIONS(1785), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1785), - [aux_sym_server_alive_interval_token1] = ACTIONS(1785), - [aux_sym_session_type_token1] = ACTIONS(1785), - [aux_sym_set_env_token1] = ACTIONS(1785), - [aux_sym_stdin_null_token1] = ACTIONS(1785), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1785), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1785), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1785), - [aux_sym_syslog_facility_token1] = ACTIONS(1785), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1785), - [aux_sym_keep_alive_token1] = ACTIONS(1785), - [aux_sym_tunnel_token1] = ACTIONS(1787), - [aux_sym_tunnel_device_token1] = ACTIONS(1785), - [aux_sym_update_host_keys_token1] = ACTIONS(1785), - [aux_sym_use_keychain_token1] = ACTIONS(1785), - [aux_sym_use_roaming_token1] = ACTIONS(1785), - [aux_sym_user_token1] = ACTIONS(1787), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1785), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1785), - [aux_sym_visual_host_key_token1] = ACTIONS(1785), - [aux_sym_xauth_location_token1] = ACTIONS(1785), + [ts_builtin_sym_end] = ACTIONS(1790), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1792), + [anon_sym_DQUOTE] = ACTIONS(1794), + [aux_sym_match_token1] = ACTIONS(1790), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1790), + [aux_sym_address_family_token1] = ACTIONS(1790), + [aux_sym_batch_mode_token1] = ACTIONS(1790), + [aux_sym_bind_address_token1] = ACTIONS(1790), + [aux_sym_bind_interface_token1] = ACTIONS(1790), + [aux_sym_canonical_domains_token1] = ACTIONS(1790), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1790), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1790), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1790), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1790), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1790), + [aux_sym_certificate_file_token1] = ACTIONS(1790), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1790), + [aux_sym_check_host_ip_token1] = ACTIONS(1790), + [aux_sym_ciphers_token1] = ACTIONS(1790), + [aux_sym_cipher_token1] = ACTIONS(1792), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1790), + [aux_sym_compression_token1] = ACTIONS(1790), + [aux_sym_connection_attempts_token1] = ACTIONS(1790), + [aux_sym_connect_timeout_token1] = ACTIONS(1790), + [aux_sym_control_master_token1] = ACTIONS(1790), + [aux_sym_control_path_token1] = ACTIONS(1790), + [aux_sym_control_persist_token1] = ACTIONS(1790), + [aux_sym_dynamic_forward_token1] = ACTIONS(1790), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1790), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1790), + [aux_sym_escape_char_token1] = ACTIONS(1790), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1790), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1790), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1790), + [aux_sym_forward_agent_token1] = ACTIONS(1790), + [aux_sym_forward_x11_token1] = ACTIONS(1792), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1790), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1790), + [aux_sym_gateway_ports_token1] = ACTIONS(1790), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1790), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1790), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1790), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1790), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1790), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1790), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1790), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1790), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1790), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1790), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1790), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1790), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1790), + [aux_sym_host_key_alias_token1] = ACTIONS(1790), + [aux_sym_hostname_token1] = ACTIONS(1790), + [aux_sym_identities_only_token1] = ACTIONS(1790), + [aux_sym_identity_agent_token1] = ACTIONS(1790), + [aux_sym_identity_file_token1] = ACTIONS(1790), + [aux_sym_ignore_unknown_token1] = ACTIONS(1790), + [aux_sym_include_token1] = ACTIONS(1790), + [aux_sym_ip_qos_token1] = ACTIONS(1790), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1790), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1790), + [aux_sym_kex_algorithms_token1] = ACTIONS(1790), + [aux_sym_known_hosts_command_token1] = ACTIONS(1790), + [aux_sym_local_command_token1] = ACTIONS(1790), + [aux_sym_local_forward_token1] = ACTIONS(1790), + [aux_sym_log_level_token1] = ACTIONS(1790), + [aux_sym_log_verbose_token1] = ACTIONS(1790), + [aux_sym_macs_token1] = ACTIONS(1790), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1790), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1790), + [aux_sym_password_authentication_token1] = ACTIONS(1790), + [aux_sym_permit_local_command_token1] = ACTIONS(1790), + [aux_sym_permit_remote_open_token1] = ACTIONS(1790), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1790), + [aux_sym_port_token1] = ACTIONS(1790), + [aux_sym_preferred_authentications_token1] = ACTIONS(1790), + [aux_sym_protocol_token1] = ACTIONS(1790), + [aux_sym_proxy_command_token1] = ACTIONS(1790), + [aux_sym_proxy_jump_token1] = ACTIONS(1790), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1790), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1790), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1790), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1790), + [aux_sym_rekey_limit_token1] = ACTIONS(1790), + [aux_sym_remote_command_token1] = ACTIONS(1790), + [aux_sym_remote_forward_token1] = ACTIONS(1790), + [aux_sym_request_tty_token1] = ACTIONS(1790), + [aux_sym_required_rsa_size_token1] = ACTIONS(1790), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1790), + [aux_sym_security_key_provider_token1] = ACTIONS(1790), + [aux_sym_send_env_token1] = ACTIONS(1790), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1790), + [aux_sym_server_alive_interval_token1] = ACTIONS(1790), + [aux_sym_session_type_token1] = ACTIONS(1790), + [aux_sym_set_env_token1] = ACTIONS(1790), + [aux_sym_stdin_null_token1] = ACTIONS(1790), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1790), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1790), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1790), + [aux_sym_syslog_facility_token1] = ACTIONS(1790), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1790), + [aux_sym_keep_alive_token1] = ACTIONS(1790), + [aux_sym_tunnel_token1] = ACTIONS(1792), + [aux_sym_tunnel_device_token1] = ACTIONS(1790), + [aux_sym_update_host_keys_token1] = ACTIONS(1790), + [aux_sym_use_keychain_token1] = ACTIONS(1790), + [aux_sym_use_roaming_token1] = ACTIONS(1790), + [aux_sym_user_token1] = ACTIONS(1792), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1790), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1790), + [aux_sym_visual_host_key_token1] = ACTIONS(1790), + [aux_sym_xauth_location_token1] = ACTIONS(1790), }, [209] = { - [ts_builtin_sym_end] = ACTIONS(1791), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [aux_sym_match_token1] = ACTIONS(1791), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1791), - [aux_sym_address_family_token1] = ACTIONS(1791), - [aux_sym_batch_mode_token1] = ACTIONS(1791), - [aux_sym_bind_address_token1] = ACTIONS(1791), - [aux_sym_bind_interface_token1] = ACTIONS(1791), - [aux_sym_canonical_domains_token1] = ACTIONS(1791), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1791), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1791), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1791), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1791), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1791), - [aux_sym_certificate_file_token1] = ACTIONS(1791), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1791), - [aux_sym_check_host_ip_token1] = ACTIONS(1791), - [aux_sym_ciphers_token1] = ACTIONS(1791), - [aux_sym_cipher_token1] = ACTIONS(1793), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1791), - [aux_sym_compression_token1] = ACTIONS(1791), - [aux_sym_connection_attempts_token1] = ACTIONS(1791), - [aux_sym_connect_timeout_token1] = ACTIONS(1791), - [aux_sym_control_master_token1] = ACTIONS(1791), - [aux_sym_control_path_token1] = ACTIONS(1791), - [aux_sym_control_persist_token1] = ACTIONS(1791), - [aux_sym_dynamic_forward_token1] = ACTIONS(1791), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1791), - [aux_sym_escape_char_token1] = ACTIONS(1791), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1791), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1791), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1791), - [aux_sym_forward_agent_token1] = ACTIONS(1791), - [aux_sym_forward_x11_token1] = ACTIONS(1793), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1791), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1791), - [aux_sym_gateway_ports_token1] = ACTIONS(1791), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1791), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1791), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1791), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1791), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1791), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1791), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1791), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1791), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1791), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1791), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1791), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1791), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1791), - [aux_sym_host_key_alias_token1] = ACTIONS(1791), - [aux_sym_hostname_token1] = ACTIONS(1791), - [aux_sym_identities_only_token1] = ACTIONS(1791), - [aux_sym_identity_agent_token1] = ACTIONS(1791), - [aux_sym_identity_file_token1] = ACTIONS(1791), - [aux_sym_ignore_unknown_token1] = ACTIONS(1791), - [aux_sym_include_token1] = ACTIONS(1791), - [aux_sym_ip_qos_token1] = ACTIONS(1791), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1791), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1791), - [aux_sym_kex_algorithms_token1] = ACTIONS(1791), - [aux_sym_known_hosts_command_token1] = ACTIONS(1791), - [aux_sym_local_command_token1] = ACTIONS(1791), - [aux_sym_local_forward_token1] = ACTIONS(1791), - [aux_sym_log_level_token1] = ACTIONS(1791), - [aux_sym_log_verbose_token1] = ACTIONS(1791), - [aux_sym_macs_token1] = ACTIONS(1791), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1791), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1791), - [aux_sym_password_authentication_token1] = ACTIONS(1791), - [aux_sym_permit_local_command_token1] = ACTIONS(1791), - [aux_sym_permit_remote_open_token1] = ACTIONS(1791), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1791), - [aux_sym_port_token1] = ACTIONS(1791), - [aux_sym_preferred_authentications_token1] = ACTIONS(1791), - [aux_sym_protocol_token1] = ACTIONS(1791), - [aux_sym_proxy_command_token1] = ACTIONS(1791), - [aux_sym_proxy_jump_token1] = ACTIONS(1791), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1791), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1791), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1791), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1791), - [aux_sym_rekey_limit_token1] = ACTIONS(1791), - [aux_sym_remote_command_token1] = ACTIONS(1791), - [aux_sym_remote_forward_token1] = ACTIONS(1791), - [aux_sym_request_tty_token1] = ACTIONS(1791), - [aux_sym_required_rsa_size_token1] = ACTIONS(1791), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1791), - [aux_sym_security_key_provider_token1] = ACTIONS(1791), - [aux_sym_send_env_token1] = ACTIONS(1791), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1791), - [aux_sym_server_alive_interval_token1] = ACTIONS(1791), - [aux_sym_session_type_token1] = ACTIONS(1791), - [aux_sym_set_env_token1] = ACTIONS(1791), - [aux_sym_stdin_null_token1] = ACTIONS(1791), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1791), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1791), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1791), - [aux_sym_syslog_facility_token1] = ACTIONS(1791), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1791), - [aux_sym_keep_alive_token1] = ACTIONS(1791), - [aux_sym_tunnel_token1] = ACTIONS(1793), - [aux_sym_tunnel_device_token1] = ACTIONS(1791), - [aux_sym_update_host_keys_token1] = ACTIONS(1791), - [aux_sym_use_keychain_token1] = ACTIONS(1791), - [aux_sym_use_roaming_token1] = ACTIONS(1791), - [aux_sym_user_token1] = ACTIONS(1793), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1791), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1791), - [aux_sym_visual_host_key_token1] = ACTIONS(1791), - [aux_sym_xauth_location_token1] = ACTIONS(1791), + [ts_builtin_sym_end] = ACTIONS(1796), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(1800), + [aux_sym_match_token1] = ACTIONS(1796), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1796), + [aux_sym_address_family_token1] = ACTIONS(1796), + [aux_sym_batch_mode_token1] = ACTIONS(1796), + [aux_sym_bind_address_token1] = ACTIONS(1796), + [aux_sym_bind_interface_token1] = ACTIONS(1796), + [aux_sym_canonical_domains_token1] = ACTIONS(1796), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1796), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1796), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1796), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1796), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1796), + [aux_sym_certificate_file_token1] = ACTIONS(1796), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1796), + [aux_sym_check_host_ip_token1] = ACTIONS(1796), + [aux_sym_ciphers_token1] = ACTIONS(1796), + [aux_sym_cipher_token1] = ACTIONS(1798), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1796), + [aux_sym_compression_token1] = ACTIONS(1796), + [aux_sym_connection_attempts_token1] = ACTIONS(1796), + [aux_sym_connect_timeout_token1] = ACTIONS(1796), + [aux_sym_control_master_token1] = ACTIONS(1796), + [aux_sym_control_path_token1] = ACTIONS(1796), + [aux_sym_control_persist_token1] = ACTIONS(1796), + [aux_sym_dynamic_forward_token1] = ACTIONS(1796), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1796), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1796), + [aux_sym_escape_char_token1] = ACTIONS(1796), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1796), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1796), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1796), + [aux_sym_forward_agent_token1] = ACTIONS(1796), + [aux_sym_forward_x11_token1] = ACTIONS(1798), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1796), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1796), + [aux_sym_gateway_ports_token1] = ACTIONS(1796), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1796), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1796), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1796), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1796), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1796), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1796), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1796), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1796), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1796), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1796), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1796), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1796), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1796), + [aux_sym_host_key_alias_token1] = ACTIONS(1796), + [aux_sym_hostname_token1] = ACTIONS(1796), + [aux_sym_identities_only_token1] = ACTIONS(1796), + [aux_sym_identity_agent_token1] = ACTIONS(1796), + [aux_sym_identity_file_token1] = ACTIONS(1796), + [aux_sym_ignore_unknown_token1] = ACTIONS(1796), + [aux_sym_include_token1] = ACTIONS(1796), + [aux_sym_ip_qos_token1] = ACTIONS(1796), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1796), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1796), + [aux_sym_kex_algorithms_token1] = ACTIONS(1796), + [aux_sym_known_hosts_command_token1] = ACTIONS(1796), + [aux_sym_local_command_token1] = ACTIONS(1796), + [aux_sym_local_forward_token1] = ACTIONS(1796), + [aux_sym_log_level_token1] = ACTIONS(1796), + [aux_sym_log_verbose_token1] = ACTIONS(1796), + [aux_sym_macs_token1] = ACTIONS(1796), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1796), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1796), + [aux_sym_password_authentication_token1] = ACTIONS(1796), + [aux_sym_permit_local_command_token1] = ACTIONS(1796), + [aux_sym_permit_remote_open_token1] = ACTIONS(1796), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1796), + [aux_sym_port_token1] = ACTIONS(1796), + [aux_sym_preferred_authentications_token1] = ACTIONS(1796), + [aux_sym_protocol_token1] = ACTIONS(1796), + [aux_sym_proxy_command_token1] = ACTIONS(1796), + [aux_sym_proxy_jump_token1] = ACTIONS(1796), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1796), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1796), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1796), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1796), + [aux_sym_rekey_limit_token1] = ACTIONS(1796), + [aux_sym_remote_command_token1] = ACTIONS(1796), + [aux_sym_remote_forward_token1] = ACTIONS(1796), + [aux_sym_request_tty_token1] = ACTIONS(1796), + [aux_sym_required_rsa_size_token1] = ACTIONS(1796), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1796), + [aux_sym_security_key_provider_token1] = ACTIONS(1796), + [aux_sym_send_env_token1] = ACTIONS(1796), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1796), + [aux_sym_server_alive_interval_token1] = ACTIONS(1796), + [aux_sym_session_type_token1] = ACTIONS(1796), + [aux_sym_set_env_token1] = ACTIONS(1796), + [aux_sym_stdin_null_token1] = ACTIONS(1796), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1796), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1796), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1796), + [aux_sym_syslog_facility_token1] = ACTIONS(1796), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1796), + [aux_sym_keep_alive_token1] = ACTIONS(1796), + [aux_sym_tunnel_token1] = ACTIONS(1798), + [aux_sym_tunnel_device_token1] = ACTIONS(1796), + [aux_sym_update_host_keys_token1] = ACTIONS(1796), + [aux_sym_use_keychain_token1] = ACTIONS(1796), + [aux_sym_use_roaming_token1] = ACTIONS(1796), + [aux_sym_user_token1] = ACTIONS(1798), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1796), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1796), + [aux_sym_visual_host_key_token1] = ACTIONS(1796), + [aux_sym_xauth_location_token1] = ACTIONS(1796), }, [210] = { - [ts_builtin_sym_end] = ACTIONS(1797), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(1801), - [aux_sym_match_token1] = ACTIONS(1797), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1797), - [aux_sym_address_family_token1] = ACTIONS(1797), - [aux_sym_batch_mode_token1] = ACTIONS(1797), - [aux_sym_bind_address_token1] = ACTIONS(1797), - [aux_sym_bind_interface_token1] = ACTIONS(1797), - [aux_sym_canonical_domains_token1] = ACTIONS(1797), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1797), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1797), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1797), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1797), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1797), - [aux_sym_certificate_file_token1] = ACTIONS(1797), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1797), - [aux_sym_check_host_ip_token1] = ACTIONS(1797), - [aux_sym_ciphers_token1] = ACTIONS(1797), - [aux_sym_cipher_token1] = ACTIONS(1799), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1797), - [aux_sym_compression_token1] = ACTIONS(1797), - [aux_sym_connection_attempts_token1] = ACTIONS(1797), - [aux_sym_connect_timeout_token1] = ACTIONS(1797), - [aux_sym_control_master_token1] = ACTIONS(1797), - [aux_sym_control_path_token1] = ACTIONS(1797), - [aux_sym_control_persist_token1] = ACTIONS(1797), - [aux_sym_dynamic_forward_token1] = ACTIONS(1797), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1797), - [aux_sym_escape_char_token1] = ACTIONS(1797), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1797), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1797), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1797), - [aux_sym_forward_agent_token1] = ACTIONS(1797), - [aux_sym_forward_x11_token1] = ACTIONS(1799), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1797), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1797), - [aux_sym_gateway_ports_token1] = ACTIONS(1797), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1797), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1797), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1797), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1797), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1797), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1797), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1797), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1797), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1797), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1797), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1797), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1797), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1797), - [aux_sym_host_key_alias_token1] = ACTIONS(1797), - [aux_sym_hostname_token1] = ACTIONS(1797), - [aux_sym_identities_only_token1] = ACTIONS(1797), - [aux_sym_identity_agent_token1] = ACTIONS(1797), - [aux_sym_identity_file_token1] = ACTIONS(1797), - [aux_sym_ignore_unknown_token1] = ACTIONS(1797), - [aux_sym_include_token1] = ACTIONS(1797), - [aux_sym_ip_qos_token1] = ACTIONS(1797), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1797), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1797), - [aux_sym_kex_algorithms_token1] = ACTIONS(1797), - [aux_sym_known_hosts_command_token1] = ACTIONS(1797), - [aux_sym_local_command_token1] = ACTIONS(1797), - [aux_sym_local_forward_token1] = ACTIONS(1797), - [aux_sym_log_level_token1] = ACTIONS(1797), - [aux_sym_log_verbose_token1] = ACTIONS(1797), - [aux_sym_macs_token1] = ACTIONS(1797), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1797), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1797), - [aux_sym_password_authentication_token1] = ACTIONS(1797), - [aux_sym_permit_local_command_token1] = ACTIONS(1797), - [aux_sym_permit_remote_open_token1] = ACTIONS(1797), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1797), - [aux_sym_port_token1] = ACTIONS(1797), - [aux_sym_preferred_authentications_token1] = ACTIONS(1797), - [aux_sym_protocol_token1] = ACTIONS(1797), - [aux_sym_proxy_command_token1] = ACTIONS(1797), - [aux_sym_proxy_jump_token1] = ACTIONS(1797), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1797), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1797), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1797), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1797), - [aux_sym_rekey_limit_token1] = ACTIONS(1797), - [aux_sym_remote_command_token1] = ACTIONS(1797), - [aux_sym_remote_forward_token1] = ACTIONS(1797), - [aux_sym_request_tty_token1] = ACTIONS(1797), - [aux_sym_required_rsa_size_token1] = ACTIONS(1797), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1797), - [aux_sym_security_key_provider_token1] = ACTIONS(1797), - [aux_sym_send_env_token1] = ACTIONS(1797), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1797), - [aux_sym_server_alive_interval_token1] = ACTIONS(1797), - [aux_sym_session_type_token1] = ACTIONS(1797), - [aux_sym_set_env_token1] = ACTIONS(1797), - [aux_sym_stdin_null_token1] = ACTIONS(1797), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1797), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1797), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1797), - [aux_sym_syslog_facility_token1] = ACTIONS(1797), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1797), - [aux_sym_keep_alive_token1] = ACTIONS(1797), - [aux_sym_tunnel_token1] = ACTIONS(1799), - [aux_sym_tunnel_device_token1] = ACTIONS(1797), - [aux_sym_update_host_keys_token1] = ACTIONS(1797), - [aux_sym_use_keychain_token1] = ACTIONS(1797), - [aux_sym_use_roaming_token1] = ACTIONS(1797), - [aux_sym_user_token1] = ACTIONS(1799), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1797), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1797), - [aux_sym_visual_host_key_token1] = ACTIONS(1797), - [aux_sym_xauth_location_token1] = ACTIONS(1797), + [ts_builtin_sym_end] = ACTIONS(1802), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1804), + [anon_sym_DQUOTE] = ACTIONS(1806), + [aux_sym_match_token1] = ACTIONS(1802), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1802), + [aux_sym_address_family_token1] = ACTIONS(1802), + [aux_sym_batch_mode_token1] = ACTIONS(1802), + [aux_sym_bind_address_token1] = ACTIONS(1802), + [aux_sym_bind_interface_token1] = ACTIONS(1802), + [aux_sym_canonical_domains_token1] = ACTIONS(1802), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1802), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1802), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1802), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1802), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1802), + [aux_sym_certificate_file_token1] = ACTIONS(1802), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1802), + [aux_sym_check_host_ip_token1] = ACTIONS(1802), + [aux_sym_ciphers_token1] = ACTIONS(1802), + [aux_sym_cipher_token1] = ACTIONS(1804), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1802), + [aux_sym_compression_token1] = ACTIONS(1802), + [aux_sym_connection_attempts_token1] = ACTIONS(1802), + [aux_sym_connect_timeout_token1] = ACTIONS(1802), + [aux_sym_control_master_token1] = ACTIONS(1802), + [aux_sym_control_path_token1] = ACTIONS(1802), + [aux_sym_control_persist_token1] = ACTIONS(1802), + [aux_sym_dynamic_forward_token1] = ACTIONS(1802), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1802), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1802), + [aux_sym_escape_char_token1] = ACTIONS(1802), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1802), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1802), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1802), + [aux_sym_forward_agent_token1] = ACTIONS(1802), + [aux_sym_forward_x11_token1] = ACTIONS(1804), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1802), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1802), + [aux_sym_gateway_ports_token1] = ACTIONS(1802), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1802), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1802), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1802), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1802), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1802), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1802), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1802), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1802), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1802), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1802), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1802), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1802), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1802), + [aux_sym_host_key_alias_token1] = ACTIONS(1802), + [aux_sym_hostname_token1] = ACTIONS(1802), + [aux_sym_identities_only_token1] = ACTIONS(1802), + [aux_sym_identity_agent_token1] = ACTIONS(1802), + [aux_sym_identity_file_token1] = ACTIONS(1802), + [aux_sym_ignore_unknown_token1] = ACTIONS(1802), + [aux_sym_include_token1] = ACTIONS(1802), + [aux_sym_ip_qos_token1] = ACTIONS(1802), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1802), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1802), + [aux_sym_kex_algorithms_token1] = ACTIONS(1802), + [aux_sym_known_hosts_command_token1] = ACTIONS(1802), + [aux_sym_local_command_token1] = ACTIONS(1802), + [aux_sym_local_forward_token1] = ACTIONS(1802), + [aux_sym_log_level_token1] = ACTIONS(1802), + [aux_sym_log_verbose_token1] = ACTIONS(1802), + [aux_sym_macs_token1] = ACTIONS(1802), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1802), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1802), + [aux_sym_password_authentication_token1] = ACTIONS(1802), + [aux_sym_permit_local_command_token1] = ACTIONS(1802), + [aux_sym_permit_remote_open_token1] = ACTIONS(1802), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1802), + [aux_sym_port_token1] = ACTIONS(1802), + [aux_sym_preferred_authentications_token1] = ACTIONS(1802), + [aux_sym_protocol_token1] = ACTIONS(1802), + [aux_sym_proxy_command_token1] = ACTIONS(1802), + [aux_sym_proxy_jump_token1] = ACTIONS(1802), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1802), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1802), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1802), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1802), + [aux_sym_rekey_limit_token1] = ACTIONS(1802), + [aux_sym_remote_command_token1] = ACTIONS(1802), + [aux_sym_remote_forward_token1] = ACTIONS(1802), + [aux_sym_request_tty_token1] = ACTIONS(1802), + [aux_sym_required_rsa_size_token1] = ACTIONS(1802), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1802), + [aux_sym_security_key_provider_token1] = ACTIONS(1802), + [aux_sym_send_env_token1] = ACTIONS(1802), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1802), + [aux_sym_server_alive_interval_token1] = ACTIONS(1802), + [aux_sym_session_type_token1] = ACTIONS(1802), + [aux_sym_set_env_token1] = ACTIONS(1802), + [aux_sym_stdin_null_token1] = ACTIONS(1802), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1802), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1802), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1802), + [aux_sym_syslog_facility_token1] = ACTIONS(1802), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1802), + [aux_sym_keep_alive_token1] = ACTIONS(1802), + [aux_sym_tunnel_token1] = ACTIONS(1804), + [aux_sym_tunnel_device_token1] = ACTIONS(1802), + [aux_sym_update_host_keys_token1] = ACTIONS(1802), + [aux_sym_use_keychain_token1] = ACTIONS(1802), + [aux_sym_use_roaming_token1] = ACTIONS(1802), + [aux_sym_user_token1] = ACTIONS(1804), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1802), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1802), + [aux_sym_visual_host_key_token1] = ACTIONS(1802), + [aux_sym_xauth_location_token1] = ACTIONS(1802), }, [211] = { - [ts_builtin_sym_end] = ACTIONS(1803), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1805), - [anon_sym_DQUOTE] = ACTIONS(1807), - [aux_sym_match_token1] = ACTIONS(1803), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1803), - [aux_sym_address_family_token1] = ACTIONS(1803), - [aux_sym_batch_mode_token1] = ACTIONS(1803), - [aux_sym_bind_address_token1] = ACTIONS(1803), - [aux_sym_bind_interface_token1] = ACTIONS(1803), - [aux_sym_canonical_domains_token1] = ACTIONS(1803), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1803), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1803), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1803), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1803), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1803), - [aux_sym_certificate_file_token1] = ACTIONS(1803), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1803), - [aux_sym_check_host_ip_token1] = ACTIONS(1803), - [aux_sym_ciphers_token1] = ACTIONS(1803), - [aux_sym_cipher_token1] = ACTIONS(1805), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1803), - [aux_sym_compression_token1] = ACTIONS(1803), - [aux_sym_connection_attempts_token1] = ACTIONS(1803), - [aux_sym_connect_timeout_token1] = ACTIONS(1803), - [aux_sym_control_master_token1] = ACTIONS(1803), - [aux_sym_control_path_token1] = ACTIONS(1803), - [aux_sym_control_persist_token1] = ACTIONS(1803), - [aux_sym_dynamic_forward_token1] = ACTIONS(1803), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1803), - [aux_sym_escape_char_token1] = ACTIONS(1803), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1803), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1803), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1803), - [aux_sym_forward_agent_token1] = ACTIONS(1803), - [aux_sym_forward_x11_token1] = ACTIONS(1805), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1803), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1803), - [aux_sym_gateway_ports_token1] = ACTIONS(1803), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1803), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1803), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1803), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1803), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1803), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1803), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1803), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1803), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1803), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1803), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1803), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1803), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1803), - [aux_sym_host_key_alias_token1] = ACTIONS(1803), - [aux_sym_hostname_token1] = ACTIONS(1803), - [aux_sym_identities_only_token1] = ACTIONS(1803), - [aux_sym_identity_agent_token1] = ACTIONS(1803), - [aux_sym_identity_file_token1] = ACTIONS(1803), - [aux_sym_ignore_unknown_token1] = ACTIONS(1803), - [aux_sym_include_token1] = ACTIONS(1803), - [aux_sym_ip_qos_token1] = ACTIONS(1803), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1803), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1803), - [aux_sym_kex_algorithms_token1] = ACTIONS(1803), - [aux_sym_known_hosts_command_token1] = ACTIONS(1803), - [aux_sym_local_command_token1] = ACTIONS(1803), - [aux_sym_local_forward_token1] = ACTIONS(1803), - [aux_sym_log_level_token1] = ACTIONS(1803), - [aux_sym_log_verbose_token1] = ACTIONS(1803), - [aux_sym_macs_token1] = ACTIONS(1803), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1803), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1803), - [aux_sym_password_authentication_token1] = ACTIONS(1803), - [aux_sym_permit_local_command_token1] = ACTIONS(1803), - [aux_sym_permit_remote_open_token1] = ACTIONS(1803), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1803), - [aux_sym_port_token1] = ACTIONS(1803), - [aux_sym_preferred_authentications_token1] = ACTIONS(1803), - [aux_sym_protocol_token1] = ACTIONS(1803), - [aux_sym_proxy_command_token1] = ACTIONS(1803), - [aux_sym_proxy_jump_token1] = ACTIONS(1803), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1803), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1803), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1803), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1803), - [aux_sym_rekey_limit_token1] = ACTIONS(1803), - [aux_sym_remote_command_token1] = ACTIONS(1803), - [aux_sym_remote_forward_token1] = ACTIONS(1803), - [aux_sym_request_tty_token1] = ACTIONS(1803), - [aux_sym_required_rsa_size_token1] = ACTIONS(1803), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1803), - [aux_sym_security_key_provider_token1] = ACTIONS(1803), - [aux_sym_send_env_token1] = ACTIONS(1803), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1803), - [aux_sym_server_alive_interval_token1] = ACTIONS(1803), - [aux_sym_session_type_token1] = ACTIONS(1803), - [aux_sym_set_env_token1] = ACTIONS(1803), - [aux_sym_stdin_null_token1] = ACTIONS(1803), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1803), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1803), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1803), - [aux_sym_syslog_facility_token1] = ACTIONS(1803), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1803), - [aux_sym_keep_alive_token1] = ACTIONS(1803), - [aux_sym_tunnel_token1] = ACTIONS(1805), - [aux_sym_tunnel_device_token1] = ACTIONS(1803), - [aux_sym_update_host_keys_token1] = ACTIONS(1803), - [aux_sym_use_keychain_token1] = ACTIONS(1803), - [aux_sym_use_roaming_token1] = ACTIONS(1803), - [aux_sym_user_token1] = ACTIONS(1805), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1803), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1803), - [aux_sym_visual_host_key_token1] = ACTIONS(1803), - [aux_sym_xauth_location_token1] = ACTIONS(1803), + [ts_builtin_sym_end] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1810), + [anon_sym_DQUOTE] = ACTIONS(1812), + [aux_sym_match_token1] = ACTIONS(1808), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1808), + [aux_sym_address_family_token1] = ACTIONS(1808), + [aux_sym_batch_mode_token1] = ACTIONS(1808), + [aux_sym_bind_address_token1] = ACTIONS(1808), + [aux_sym_bind_interface_token1] = ACTIONS(1808), + [aux_sym_canonical_domains_token1] = ACTIONS(1808), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1808), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1808), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1808), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1808), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1808), + [aux_sym_certificate_file_token1] = ACTIONS(1808), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1808), + [aux_sym_check_host_ip_token1] = ACTIONS(1808), + [aux_sym_ciphers_token1] = ACTIONS(1808), + [aux_sym_cipher_token1] = ACTIONS(1810), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1808), + [aux_sym_compression_token1] = ACTIONS(1808), + [aux_sym_connection_attempts_token1] = ACTIONS(1808), + [aux_sym_connect_timeout_token1] = ACTIONS(1808), + [aux_sym_control_master_token1] = ACTIONS(1808), + [aux_sym_control_path_token1] = ACTIONS(1808), + [aux_sym_control_persist_token1] = ACTIONS(1808), + [aux_sym_dynamic_forward_token1] = ACTIONS(1808), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1808), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1808), + [aux_sym_escape_char_token1] = ACTIONS(1808), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1808), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1808), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1808), + [aux_sym_forward_agent_token1] = ACTIONS(1808), + [aux_sym_forward_x11_token1] = ACTIONS(1810), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1808), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1808), + [aux_sym_gateway_ports_token1] = ACTIONS(1808), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1808), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1808), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1808), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1808), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1808), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1808), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1808), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1808), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1808), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1808), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1808), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1808), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1808), + [aux_sym_host_key_alias_token1] = ACTIONS(1808), + [aux_sym_hostname_token1] = ACTIONS(1808), + [aux_sym_identities_only_token1] = ACTIONS(1808), + [aux_sym_identity_agent_token1] = ACTIONS(1808), + [aux_sym_identity_file_token1] = ACTIONS(1808), + [aux_sym_ignore_unknown_token1] = ACTIONS(1808), + [aux_sym_include_token1] = ACTIONS(1808), + [aux_sym_ip_qos_token1] = ACTIONS(1808), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1808), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1808), + [aux_sym_kex_algorithms_token1] = ACTIONS(1808), + [aux_sym_known_hosts_command_token1] = ACTIONS(1808), + [aux_sym_local_command_token1] = ACTIONS(1808), + [aux_sym_local_forward_token1] = ACTIONS(1808), + [aux_sym_log_level_token1] = ACTIONS(1808), + [aux_sym_log_verbose_token1] = ACTIONS(1808), + [aux_sym_macs_token1] = ACTIONS(1808), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1808), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1808), + [aux_sym_password_authentication_token1] = ACTIONS(1808), + [aux_sym_permit_local_command_token1] = ACTIONS(1808), + [aux_sym_permit_remote_open_token1] = ACTIONS(1808), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1808), + [aux_sym_port_token1] = ACTIONS(1808), + [aux_sym_preferred_authentications_token1] = ACTIONS(1808), + [aux_sym_protocol_token1] = ACTIONS(1808), + [aux_sym_proxy_command_token1] = ACTIONS(1808), + [aux_sym_proxy_jump_token1] = ACTIONS(1808), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1808), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1808), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1808), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1808), + [aux_sym_rekey_limit_token1] = ACTIONS(1808), + [aux_sym_remote_command_token1] = ACTIONS(1808), + [aux_sym_remote_forward_token1] = ACTIONS(1808), + [aux_sym_request_tty_token1] = ACTIONS(1808), + [aux_sym_required_rsa_size_token1] = ACTIONS(1808), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1808), + [aux_sym_security_key_provider_token1] = ACTIONS(1808), + [aux_sym_send_env_token1] = ACTIONS(1808), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1808), + [aux_sym_server_alive_interval_token1] = ACTIONS(1808), + [aux_sym_session_type_token1] = ACTIONS(1808), + [aux_sym_set_env_token1] = ACTIONS(1808), + [aux_sym_stdin_null_token1] = ACTIONS(1808), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1808), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1808), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1808), + [aux_sym_syslog_facility_token1] = ACTIONS(1808), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1808), + [aux_sym_keep_alive_token1] = ACTIONS(1808), + [aux_sym_tunnel_token1] = ACTIONS(1810), + [aux_sym_tunnel_device_token1] = ACTIONS(1808), + [aux_sym_update_host_keys_token1] = ACTIONS(1808), + [aux_sym_use_keychain_token1] = ACTIONS(1808), + [aux_sym_use_roaming_token1] = ACTIONS(1808), + [aux_sym_user_token1] = ACTIONS(1810), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1808), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1808), + [aux_sym_visual_host_key_token1] = ACTIONS(1808), + [aux_sym_xauth_location_token1] = ACTIONS(1808), }, [212] = { - [ts_builtin_sym_end] = ACTIONS(1809), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1811), - [anon_sym_DQUOTE] = ACTIONS(1813), - [aux_sym_match_token1] = ACTIONS(1809), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1809), - [aux_sym_address_family_token1] = ACTIONS(1809), - [aux_sym_batch_mode_token1] = ACTIONS(1809), - [aux_sym_bind_address_token1] = ACTIONS(1809), - [aux_sym_bind_interface_token1] = ACTIONS(1809), - [aux_sym_canonical_domains_token1] = ACTIONS(1809), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1809), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1809), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1809), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1809), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1809), - [aux_sym_certificate_file_token1] = ACTIONS(1809), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1809), - [aux_sym_check_host_ip_token1] = ACTIONS(1809), - [aux_sym_ciphers_token1] = ACTIONS(1809), - [aux_sym_cipher_token1] = ACTIONS(1811), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1809), - [aux_sym_compression_token1] = ACTIONS(1809), - [aux_sym_connection_attempts_token1] = ACTIONS(1809), - [aux_sym_connect_timeout_token1] = ACTIONS(1809), - [aux_sym_control_master_token1] = ACTIONS(1809), - [aux_sym_control_path_token1] = ACTIONS(1809), - [aux_sym_control_persist_token1] = ACTIONS(1809), - [aux_sym_dynamic_forward_token1] = ACTIONS(1809), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1809), - [aux_sym_escape_char_token1] = ACTIONS(1809), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1809), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1809), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1809), - [aux_sym_forward_agent_token1] = ACTIONS(1809), - [aux_sym_forward_x11_token1] = ACTIONS(1811), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1809), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1809), - [aux_sym_gateway_ports_token1] = ACTIONS(1809), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1809), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1809), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1809), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1809), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1809), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1809), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1809), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1809), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1809), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1809), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1809), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1809), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1809), - [aux_sym_host_key_alias_token1] = ACTIONS(1809), - [aux_sym_hostname_token1] = ACTIONS(1809), - [aux_sym_identities_only_token1] = ACTIONS(1809), - [aux_sym_identity_agent_token1] = ACTIONS(1809), - [aux_sym_identity_file_token1] = ACTIONS(1809), - [aux_sym_ignore_unknown_token1] = ACTIONS(1809), - [aux_sym_include_token1] = ACTIONS(1809), - [aux_sym_ip_qos_token1] = ACTIONS(1809), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1809), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1809), - [aux_sym_kex_algorithms_token1] = ACTIONS(1809), - [aux_sym_known_hosts_command_token1] = ACTIONS(1809), - [aux_sym_local_command_token1] = ACTIONS(1809), - [aux_sym_local_forward_token1] = ACTIONS(1809), - [aux_sym_log_level_token1] = ACTIONS(1809), - [aux_sym_log_verbose_token1] = ACTIONS(1809), - [aux_sym_macs_token1] = ACTIONS(1809), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1809), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1809), - [aux_sym_password_authentication_token1] = ACTIONS(1809), - [aux_sym_permit_local_command_token1] = ACTIONS(1809), - [aux_sym_permit_remote_open_token1] = ACTIONS(1809), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1809), - [aux_sym_port_token1] = ACTIONS(1809), - [aux_sym_preferred_authentications_token1] = ACTIONS(1809), - [aux_sym_protocol_token1] = ACTIONS(1809), - [aux_sym_proxy_command_token1] = ACTIONS(1809), - [aux_sym_proxy_jump_token1] = ACTIONS(1809), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1809), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1809), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1809), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1809), - [aux_sym_rekey_limit_token1] = ACTIONS(1809), - [aux_sym_remote_command_token1] = ACTIONS(1809), - [aux_sym_remote_forward_token1] = ACTIONS(1809), - [aux_sym_request_tty_token1] = ACTIONS(1809), - [aux_sym_required_rsa_size_token1] = ACTIONS(1809), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1809), - [aux_sym_security_key_provider_token1] = ACTIONS(1809), - [aux_sym_send_env_token1] = ACTIONS(1809), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1809), - [aux_sym_server_alive_interval_token1] = ACTIONS(1809), - [aux_sym_session_type_token1] = ACTIONS(1809), - [aux_sym_set_env_token1] = ACTIONS(1809), - [aux_sym_stdin_null_token1] = ACTIONS(1809), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1809), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1809), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1809), - [aux_sym_syslog_facility_token1] = ACTIONS(1809), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1809), - [aux_sym_keep_alive_token1] = ACTIONS(1809), - [aux_sym_tunnel_token1] = ACTIONS(1811), - [aux_sym_tunnel_device_token1] = ACTIONS(1809), - [aux_sym_update_host_keys_token1] = ACTIONS(1809), - [aux_sym_use_keychain_token1] = ACTIONS(1809), - [aux_sym_use_roaming_token1] = ACTIONS(1809), - [aux_sym_user_token1] = ACTIONS(1811), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1809), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1809), - [aux_sym_visual_host_key_token1] = ACTIONS(1809), - [aux_sym_xauth_location_token1] = ACTIONS(1809), + [ts_builtin_sym_end] = ACTIONS(1814), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1816), + [anon_sym_DQUOTE] = ACTIONS(1818), + [aux_sym_match_token1] = ACTIONS(1814), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1814), + [aux_sym_address_family_token1] = ACTIONS(1814), + [aux_sym_batch_mode_token1] = ACTIONS(1814), + [aux_sym_bind_address_token1] = ACTIONS(1814), + [aux_sym_bind_interface_token1] = ACTIONS(1814), + [aux_sym_canonical_domains_token1] = ACTIONS(1814), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1814), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1814), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1814), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1814), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1814), + [aux_sym_certificate_file_token1] = ACTIONS(1814), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1814), + [aux_sym_check_host_ip_token1] = ACTIONS(1814), + [aux_sym_ciphers_token1] = ACTIONS(1814), + [aux_sym_cipher_token1] = ACTIONS(1816), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1814), + [aux_sym_compression_token1] = ACTIONS(1814), + [aux_sym_connection_attempts_token1] = ACTIONS(1814), + [aux_sym_connect_timeout_token1] = ACTIONS(1814), + [aux_sym_control_master_token1] = ACTIONS(1814), + [aux_sym_control_path_token1] = ACTIONS(1814), + [aux_sym_control_persist_token1] = ACTIONS(1814), + [aux_sym_dynamic_forward_token1] = ACTIONS(1814), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1814), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1814), + [aux_sym_escape_char_token1] = ACTIONS(1814), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1814), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1814), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1814), + [aux_sym_forward_agent_token1] = ACTIONS(1814), + [aux_sym_forward_x11_token1] = ACTIONS(1816), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1814), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1814), + [aux_sym_gateway_ports_token1] = ACTIONS(1814), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1814), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1814), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1814), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1814), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1814), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1814), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1814), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1814), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1814), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1814), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1814), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1814), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1814), + [aux_sym_host_key_alias_token1] = ACTIONS(1814), + [aux_sym_hostname_token1] = ACTIONS(1814), + [aux_sym_identities_only_token1] = ACTIONS(1814), + [aux_sym_identity_agent_token1] = ACTIONS(1814), + [aux_sym_identity_file_token1] = ACTIONS(1814), + [aux_sym_ignore_unknown_token1] = ACTIONS(1814), + [aux_sym_include_token1] = ACTIONS(1814), + [aux_sym_ip_qos_token1] = ACTIONS(1814), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1814), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1814), + [aux_sym_kex_algorithms_token1] = ACTIONS(1814), + [aux_sym_known_hosts_command_token1] = ACTIONS(1814), + [aux_sym_local_command_token1] = ACTIONS(1814), + [aux_sym_local_forward_token1] = ACTIONS(1814), + [aux_sym_log_level_token1] = ACTIONS(1814), + [aux_sym_log_verbose_token1] = ACTIONS(1814), + [aux_sym_macs_token1] = ACTIONS(1814), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1814), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1814), + [aux_sym_password_authentication_token1] = ACTIONS(1814), + [aux_sym_permit_local_command_token1] = ACTIONS(1814), + [aux_sym_permit_remote_open_token1] = ACTIONS(1814), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1814), + [aux_sym_port_token1] = ACTIONS(1814), + [aux_sym_preferred_authentications_token1] = ACTIONS(1814), + [aux_sym_protocol_token1] = ACTIONS(1814), + [aux_sym_proxy_command_token1] = ACTIONS(1814), + [aux_sym_proxy_jump_token1] = ACTIONS(1814), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1814), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1814), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1814), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1814), + [aux_sym_rekey_limit_token1] = ACTIONS(1814), + [aux_sym_remote_command_token1] = ACTIONS(1814), + [aux_sym_remote_forward_token1] = ACTIONS(1814), + [aux_sym_request_tty_token1] = ACTIONS(1814), + [aux_sym_required_rsa_size_token1] = ACTIONS(1814), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1814), + [aux_sym_security_key_provider_token1] = ACTIONS(1814), + [aux_sym_send_env_token1] = ACTIONS(1814), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1814), + [aux_sym_server_alive_interval_token1] = ACTIONS(1814), + [aux_sym_session_type_token1] = ACTIONS(1814), + [aux_sym_set_env_token1] = ACTIONS(1814), + [aux_sym_stdin_null_token1] = ACTIONS(1814), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1814), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1814), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1814), + [aux_sym_syslog_facility_token1] = ACTIONS(1814), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1814), + [aux_sym_keep_alive_token1] = ACTIONS(1814), + [aux_sym_tunnel_token1] = ACTIONS(1816), + [aux_sym_tunnel_device_token1] = ACTIONS(1814), + [aux_sym_update_host_keys_token1] = ACTIONS(1814), + [aux_sym_use_keychain_token1] = ACTIONS(1814), + [aux_sym_use_roaming_token1] = ACTIONS(1814), + [aux_sym_user_token1] = ACTIONS(1816), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1814), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1814), + [aux_sym_visual_host_key_token1] = ACTIONS(1814), + [aux_sym_xauth_location_token1] = ACTIONS(1814), }, [213] = { - [ts_builtin_sym_end] = ACTIONS(1815), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1819), - [aux_sym_match_token1] = ACTIONS(1815), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1815), - [aux_sym_address_family_token1] = ACTIONS(1815), - [aux_sym_batch_mode_token1] = ACTIONS(1815), - [aux_sym_bind_address_token1] = ACTIONS(1815), - [aux_sym_bind_interface_token1] = ACTIONS(1815), - [aux_sym_canonical_domains_token1] = ACTIONS(1815), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1815), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1815), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1815), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1815), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1815), - [aux_sym_certificate_file_token1] = ACTIONS(1815), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1815), - [aux_sym_check_host_ip_token1] = ACTIONS(1815), - [aux_sym_ciphers_token1] = ACTIONS(1815), - [aux_sym_cipher_token1] = ACTIONS(1817), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1815), - [aux_sym_compression_token1] = ACTIONS(1815), - [aux_sym_connection_attempts_token1] = ACTIONS(1815), - [aux_sym_connect_timeout_token1] = ACTIONS(1815), - [aux_sym_control_master_token1] = ACTIONS(1815), - [aux_sym_control_path_token1] = ACTIONS(1815), - [aux_sym_control_persist_token1] = ACTIONS(1815), - [aux_sym_dynamic_forward_token1] = ACTIONS(1815), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1815), - [aux_sym_escape_char_token1] = ACTIONS(1815), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1815), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1815), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1815), - [aux_sym_forward_agent_token1] = ACTIONS(1815), - [aux_sym_forward_x11_token1] = ACTIONS(1817), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1815), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1815), - [aux_sym_gateway_ports_token1] = ACTIONS(1815), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1815), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1815), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1815), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1815), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1815), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1815), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1815), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1815), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1815), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1815), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1815), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1815), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1815), - [aux_sym_host_key_alias_token1] = ACTIONS(1815), - [aux_sym_hostname_token1] = ACTIONS(1815), - [aux_sym_identities_only_token1] = ACTIONS(1815), - [aux_sym_identity_agent_token1] = ACTIONS(1815), - [aux_sym_identity_file_token1] = ACTIONS(1815), - [aux_sym_ignore_unknown_token1] = ACTIONS(1815), - [aux_sym_include_token1] = ACTIONS(1815), - [aux_sym_ip_qos_token1] = ACTIONS(1815), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1815), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1815), - [aux_sym_kex_algorithms_token1] = ACTIONS(1815), - [aux_sym_known_hosts_command_token1] = ACTIONS(1815), - [aux_sym_local_command_token1] = ACTIONS(1815), - [aux_sym_local_forward_token1] = ACTIONS(1815), - [aux_sym_log_level_token1] = ACTIONS(1815), - [aux_sym_log_verbose_token1] = ACTIONS(1815), - [aux_sym_macs_token1] = ACTIONS(1815), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1815), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1815), - [aux_sym_password_authentication_token1] = ACTIONS(1815), - [aux_sym_permit_local_command_token1] = ACTIONS(1815), - [aux_sym_permit_remote_open_token1] = ACTIONS(1815), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1815), - [aux_sym_port_token1] = ACTIONS(1815), - [aux_sym_preferred_authentications_token1] = ACTIONS(1815), - [aux_sym_protocol_token1] = ACTIONS(1815), - [aux_sym_proxy_command_token1] = ACTIONS(1815), - [aux_sym_proxy_jump_token1] = ACTIONS(1815), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1815), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1815), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1815), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1815), - [aux_sym_rekey_limit_token1] = ACTIONS(1815), - [aux_sym_remote_command_token1] = ACTIONS(1815), - [aux_sym_remote_forward_token1] = ACTIONS(1815), - [aux_sym_request_tty_token1] = ACTIONS(1815), - [aux_sym_required_rsa_size_token1] = ACTIONS(1815), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1815), - [aux_sym_security_key_provider_token1] = ACTIONS(1815), - [aux_sym_send_env_token1] = ACTIONS(1815), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1815), - [aux_sym_server_alive_interval_token1] = ACTIONS(1815), - [aux_sym_session_type_token1] = ACTIONS(1815), - [aux_sym_set_env_token1] = ACTIONS(1815), - [aux_sym_stdin_null_token1] = ACTIONS(1815), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1815), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1815), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1815), - [aux_sym_syslog_facility_token1] = ACTIONS(1815), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1815), - [aux_sym_keep_alive_token1] = ACTIONS(1815), - [aux_sym_tunnel_token1] = ACTIONS(1817), - [aux_sym_tunnel_device_token1] = ACTIONS(1815), - [aux_sym_update_host_keys_token1] = ACTIONS(1815), - [aux_sym_use_keychain_token1] = ACTIONS(1815), - [aux_sym_use_roaming_token1] = ACTIONS(1815), - [aux_sym_user_token1] = ACTIONS(1817), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1815), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1815), - [aux_sym_visual_host_key_token1] = ACTIONS(1815), - [aux_sym_xauth_location_token1] = ACTIONS(1815), + [ts_builtin_sym_end] = ACTIONS(1820), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1822), + [anon_sym_DQUOTE] = ACTIONS(1824), + [aux_sym_match_token1] = ACTIONS(1820), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1820), + [aux_sym_address_family_token1] = ACTIONS(1820), + [aux_sym_batch_mode_token1] = ACTIONS(1820), + [aux_sym_bind_address_token1] = ACTIONS(1820), + [aux_sym_bind_interface_token1] = ACTIONS(1820), + [aux_sym_canonical_domains_token1] = ACTIONS(1820), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1820), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1820), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1820), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1820), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1820), + [aux_sym_certificate_file_token1] = ACTIONS(1820), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1820), + [aux_sym_check_host_ip_token1] = ACTIONS(1820), + [aux_sym_ciphers_token1] = ACTIONS(1820), + [aux_sym_cipher_token1] = ACTIONS(1822), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1820), + [aux_sym_compression_token1] = ACTIONS(1820), + [aux_sym_connection_attempts_token1] = ACTIONS(1820), + [aux_sym_connect_timeout_token1] = ACTIONS(1820), + [aux_sym_control_master_token1] = ACTIONS(1820), + [aux_sym_control_path_token1] = ACTIONS(1820), + [aux_sym_control_persist_token1] = ACTIONS(1820), + [aux_sym_dynamic_forward_token1] = ACTIONS(1820), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1820), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1820), + [aux_sym_escape_char_token1] = ACTIONS(1820), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1820), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1820), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1820), + [aux_sym_forward_agent_token1] = ACTIONS(1820), + [aux_sym_forward_x11_token1] = ACTIONS(1822), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1820), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1820), + [aux_sym_gateway_ports_token1] = ACTIONS(1820), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1820), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1820), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1820), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1820), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1820), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1820), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1820), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1820), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1820), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1820), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1820), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1820), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1820), + [aux_sym_host_key_alias_token1] = ACTIONS(1820), + [aux_sym_hostname_token1] = ACTIONS(1820), + [aux_sym_identities_only_token1] = ACTIONS(1820), + [aux_sym_identity_agent_token1] = ACTIONS(1820), + [aux_sym_identity_file_token1] = ACTIONS(1820), + [aux_sym_ignore_unknown_token1] = ACTIONS(1820), + [aux_sym_include_token1] = ACTIONS(1820), + [aux_sym_ip_qos_token1] = ACTIONS(1820), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1820), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1820), + [aux_sym_kex_algorithms_token1] = ACTIONS(1820), + [aux_sym_known_hosts_command_token1] = ACTIONS(1820), + [aux_sym_local_command_token1] = ACTIONS(1820), + [aux_sym_local_forward_token1] = ACTIONS(1820), + [aux_sym_log_level_token1] = ACTIONS(1820), + [aux_sym_log_verbose_token1] = ACTIONS(1820), + [aux_sym_macs_token1] = ACTIONS(1820), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1820), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1820), + [aux_sym_password_authentication_token1] = ACTIONS(1820), + [aux_sym_permit_local_command_token1] = ACTIONS(1820), + [aux_sym_permit_remote_open_token1] = ACTIONS(1820), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1820), + [aux_sym_port_token1] = ACTIONS(1820), + [aux_sym_preferred_authentications_token1] = ACTIONS(1820), + [aux_sym_protocol_token1] = ACTIONS(1820), + [aux_sym_proxy_command_token1] = ACTIONS(1820), + [aux_sym_proxy_jump_token1] = ACTIONS(1820), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1820), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1820), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1820), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1820), + [aux_sym_rekey_limit_token1] = ACTIONS(1820), + [aux_sym_remote_command_token1] = ACTIONS(1820), + [aux_sym_remote_forward_token1] = ACTIONS(1820), + [aux_sym_request_tty_token1] = ACTIONS(1820), + [aux_sym_required_rsa_size_token1] = ACTIONS(1820), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1820), + [aux_sym_security_key_provider_token1] = ACTIONS(1820), + [aux_sym_send_env_token1] = ACTIONS(1820), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1820), + [aux_sym_server_alive_interval_token1] = ACTIONS(1820), + [aux_sym_session_type_token1] = ACTIONS(1820), + [aux_sym_set_env_token1] = ACTIONS(1820), + [aux_sym_stdin_null_token1] = ACTIONS(1820), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1820), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1820), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1820), + [aux_sym_syslog_facility_token1] = ACTIONS(1820), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1820), + [aux_sym_keep_alive_token1] = ACTIONS(1820), + [aux_sym_tunnel_token1] = ACTIONS(1822), + [aux_sym_tunnel_device_token1] = ACTIONS(1820), + [aux_sym_update_host_keys_token1] = ACTIONS(1820), + [aux_sym_use_keychain_token1] = ACTIONS(1820), + [aux_sym_use_roaming_token1] = ACTIONS(1820), + [aux_sym_user_token1] = ACTIONS(1822), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1820), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1820), + [aux_sym_visual_host_key_token1] = ACTIONS(1820), + [aux_sym_xauth_location_token1] = ACTIONS(1820), }, [214] = { - [ts_builtin_sym_end] = ACTIONS(1821), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1825), - [aux_sym_match_token1] = ACTIONS(1821), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1821), - [aux_sym_address_family_token1] = ACTIONS(1821), - [aux_sym_batch_mode_token1] = ACTIONS(1821), - [aux_sym_bind_address_token1] = ACTIONS(1821), - [aux_sym_bind_interface_token1] = ACTIONS(1821), - [aux_sym_canonical_domains_token1] = ACTIONS(1821), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1821), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1821), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1821), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1821), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1821), - [aux_sym_certificate_file_token1] = ACTIONS(1821), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1821), - [aux_sym_check_host_ip_token1] = ACTIONS(1821), - [aux_sym_ciphers_token1] = ACTIONS(1821), - [aux_sym_cipher_token1] = ACTIONS(1823), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1821), - [aux_sym_compression_token1] = ACTIONS(1821), - [aux_sym_connection_attempts_token1] = ACTIONS(1821), - [aux_sym_connect_timeout_token1] = ACTIONS(1821), - [aux_sym_control_master_token1] = ACTIONS(1821), - [aux_sym_control_path_token1] = ACTIONS(1821), - [aux_sym_control_persist_token1] = ACTIONS(1821), - [aux_sym_dynamic_forward_token1] = ACTIONS(1821), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1821), - [aux_sym_escape_char_token1] = ACTIONS(1821), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1821), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1821), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1821), - [aux_sym_forward_agent_token1] = ACTIONS(1821), - [aux_sym_forward_x11_token1] = ACTIONS(1823), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1821), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1821), - [aux_sym_gateway_ports_token1] = ACTIONS(1821), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1821), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1821), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1821), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1821), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1821), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1821), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1821), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1821), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1821), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1821), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1821), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1821), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1821), - [aux_sym_host_key_alias_token1] = ACTIONS(1821), - [aux_sym_hostname_token1] = ACTIONS(1821), - [aux_sym_identities_only_token1] = ACTIONS(1821), - [aux_sym_identity_agent_token1] = ACTIONS(1821), - [aux_sym_identity_file_token1] = ACTIONS(1821), - [aux_sym_ignore_unknown_token1] = ACTIONS(1821), - [aux_sym_include_token1] = ACTIONS(1821), - [aux_sym_ip_qos_token1] = ACTIONS(1821), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1821), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1821), - [aux_sym_kex_algorithms_token1] = ACTIONS(1821), - [aux_sym_known_hosts_command_token1] = ACTIONS(1821), - [aux_sym_local_command_token1] = ACTIONS(1821), - [aux_sym_local_forward_token1] = ACTIONS(1821), - [aux_sym_log_level_token1] = ACTIONS(1821), - [aux_sym_log_verbose_token1] = ACTIONS(1821), - [aux_sym_macs_token1] = ACTIONS(1821), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1821), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1821), - [aux_sym_password_authentication_token1] = ACTIONS(1821), - [aux_sym_permit_local_command_token1] = ACTIONS(1821), - [aux_sym_permit_remote_open_token1] = ACTIONS(1821), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1821), - [aux_sym_port_token1] = ACTIONS(1821), - [aux_sym_preferred_authentications_token1] = ACTIONS(1821), - [aux_sym_protocol_token1] = ACTIONS(1821), - [aux_sym_proxy_command_token1] = ACTIONS(1821), - [aux_sym_proxy_jump_token1] = ACTIONS(1821), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1821), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1821), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1821), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1821), - [aux_sym_rekey_limit_token1] = ACTIONS(1821), - [aux_sym_remote_command_token1] = ACTIONS(1821), - [aux_sym_remote_forward_token1] = ACTIONS(1821), - [aux_sym_request_tty_token1] = ACTIONS(1821), - [aux_sym_required_rsa_size_token1] = ACTIONS(1821), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1821), - [aux_sym_security_key_provider_token1] = ACTIONS(1821), - [aux_sym_send_env_token1] = ACTIONS(1821), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1821), - [aux_sym_server_alive_interval_token1] = ACTIONS(1821), - [aux_sym_session_type_token1] = ACTIONS(1821), - [aux_sym_set_env_token1] = ACTIONS(1821), - [aux_sym_stdin_null_token1] = ACTIONS(1821), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1821), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1821), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1821), - [aux_sym_syslog_facility_token1] = ACTIONS(1821), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1821), - [aux_sym_keep_alive_token1] = ACTIONS(1821), - [aux_sym_tunnel_token1] = ACTIONS(1823), - [aux_sym_tunnel_device_token1] = ACTIONS(1821), - [aux_sym_update_host_keys_token1] = ACTIONS(1821), - [aux_sym_use_keychain_token1] = ACTIONS(1821), - [aux_sym_use_roaming_token1] = ACTIONS(1821), - [aux_sym_user_token1] = ACTIONS(1823), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1821), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1821), - [aux_sym_visual_host_key_token1] = ACTIONS(1821), - [aux_sym_xauth_location_token1] = ACTIONS(1821), + [ts_builtin_sym_end] = ACTIONS(1826), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1828), + [anon_sym_DQUOTE] = ACTIONS(1830), + [aux_sym_match_token1] = ACTIONS(1826), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1826), + [aux_sym_address_family_token1] = ACTIONS(1826), + [aux_sym_batch_mode_token1] = ACTIONS(1826), + [aux_sym_bind_address_token1] = ACTIONS(1826), + [aux_sym_bind_interface_token1] = ACTIONS(1826), + [aux_sym_canonical_domains_token1] = ACTIONS(1826), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1826), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1826), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1826), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1826), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1826), + [aux_sym_certificate_file_token1] = ACTIONS(1826), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1826), + [aux_sym_check_host_ip_token1] = ACTIONS(1826), + [aux_sym_ciphers_token1] = ACTIONS(1826), + [aux_sym_cipher_token1] = ACTIONS(1828), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1826), + [aux_sym_compression_token1] = ACTIONS(1826), + [aux_sym_connection_attempts_token1] = ACTIONS(1826), + [aux_sym_connect_timeout_token1] = ACTIONS(1826), + [aux_sym_control_master_token1] = ACTIONS(1826), + [aux_sym_control_path_token1] = ACTIONS(1826), + [aux_sym_control_persist_token1] = ACTIONS(1826), + [aux_sym_dynamic_forward_token1] = ACTIONS(1826), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1826), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1826), + [aux_sym_escape_char_token1] = ACTIONS(1826), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1826), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1826), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1826), + [aux_sym_forward_agent_token1] = ACTIONS(1826), + [aux_sym_forward_x11_token1] = ACTIONS(1828), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1826), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1826), + [aux_sym_gateway_ports_token1] = ACTIONS(1826), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1826), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1826), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1826), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1826), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1826), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1826), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1826), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1826), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1826), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1826), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1826), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1826), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1826), + [aux_sym_host_key_alias_token1] = ACTIONS(1826), + [aux_sym_hostname_token1] = ACTIONS(1826), + [aux_sym_identities_only_token1] = ACTIONS(1826), + [aux_sym_identity_agent_token1] = ACTIONS(1826), + [aux_sym_identity_file_token1] = ACTIONS(1826), + [aux_sym_ignore_unknown_token1] = ACTIONS(1826), + [aux_sym_include_token1] = ACTIONS(1826), + [aux_sym_ip_qos_token1] = ACTIONS(1826), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1826), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1826), + [aux_sym_kex_algorithms_token1] = ACTIONS(1826), + [aux_sym_known_hosts_command_token1] = ACTIONS(1826), + [aux_sym_local_command_token1] = ACTIONS(1826), + [aux_sym_local_forward_token1] = ACTIONS(1826), + [aux_sym_log_level_token1] = ACTIONS(1826), + [aux_sym_log_verbose_token1] = ACTIONS(1826), + [aux_sym_macs_token1] = ACTIONS(1826), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1826), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1826), + [aux_sym_password_authentication_token1] = ACTIONS(1826), + [aux_sym_permit_local_command_token1] = ACTIONS(1826), + [aux_sym_permit_remote_open_token1] = ACTIONS(1826), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1826), + [aux_sym_port_token1] = ACTIONS(1826), + [aux_sym_preferred_authentications_token1] = ACTIONS(1826), + [aux_sym_protocol_token1] = ACTIONS(1826), + [aux_sym_proxy_command_token1] = ACTIONS(1826), + [aux_sym_proxy_jump_token1] = ACTIONS(1826), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1826), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1826), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1826), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1826), + [aux_sym_rekey_limit_token1] = ACTIONS(1826), + [aux_sym_remote_command_token1] = ACTIONS(1826), + [aux_sym_remote_forward_token1] = ACTIONS(1826), + [aux_sym_request_tty_token1] = ACTIONS(1826), + [aux_sym_required_rsa_size_token1] = ACTIONS(1826), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1826), + [aux_sym_security_key_provider_token1] = ACTIONS(1826), + [aux_sym_send_env_token1] = ACTIONS(1826), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1826), + [aux_sym_server_alive_interval_token1] = ACTIONS(1826), + [aux_sym_session_type_token1] = ACTIONS(1826), + [aux_sym_set_env_token1] = ACTIONS(1826), + [aux_sym_stdin_null_token1] = ACTIONS(1826), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1826), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1826), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1826), + [aux_sym_syslog_facility_token1] = ACTIONS(1826), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1826), + [aux_sym_keep_alive_token1] = ACTIONS(1826), + [aux_sym_tunnel_token1] = ACTIONS(1828), + [aux_sym_tunnel_device_token1] = ACTIONS(1826), + [aux_sym_update_host_keys_token1] = ACTIONS(1826), + [aux_sym_use_keychain_token1] = ACTIONS(1826), + [aux_sym_use_roaming_token1] = ACTIONS(1826), + [aux_sym_user_token1] = ACTIONS(1828), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1826), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1826), + [aux_sym_visual_host_key_token1] = ACTIONS(1826), + [aux_sym_xauth_location_token1] = ACTIONS(1826), }, [215] = { - [ts_builtin_sym_end] = ACTIONS(1827), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1829), - [anon_sym_DQUOTE] = ACTIONS(1831), - [aux_sym_match_token1] = ACTIONS(1827), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1827), - [aux_sym_address_family_token1] = ACTIONS(1827), - [aux_sym_batch_mode_token1] = ACTIONS(1827), - [aux_sym_bind_address_token1] = ACTIONS(1827), - [aux_sym_bind_interface_token1] = ACTIONS(1827), - [aux_sym_canonical_domains_token1] = ACTIONS(1827), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1827), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1827), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1827), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1827), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1827), - [aux_sym_certificate_file_token1] = ACTIONS(1827), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1827), - [aux_sym_check_host_ip_token1] = ACTIONS(1827), - [aux_sym_ciphers_token1] = ACTIONS(1827), - [aux_sym_cipher_token1] = ACTIONS(1829), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1827), - [aux_sym_compression_token1] = ACTIONS(1827), - [aux_sym_connection_attempts_token1] = ACTIONS(1827), - [aux_sym_connect_timeout_token1] = ACTIONS(1827), - [aux_sym_control_master_token1] = ACTIONS(1827), - [aux_sym_control_path_token1] = ACTIONS(1827), - [aux_sym_control_persist_token1] = ACTIONS(1827), - [aux_sym_dynamic_forward_token1] = ACTIONS(1827), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1827), - [aux_sym_escape_char_token1] = ACTIONS(1827), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1827), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1827), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1827), - [aux_sym_forward_agent_token1] = ACTIONS(1827), - [aux_sym_forward_x11_token1] = ACTIONS(1829), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1827), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1827), - [aux_sym_gateway_ports_token1] = ACTIONS(1827), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1827), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1827), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1827), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1827), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1827), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1827), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1827), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1827), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1827), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1827), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1827), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1827), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1827), - [aux_sym_host_key_alias_token1] = ACTIONS(1827), - [aux_sym_hostname_token1] = ACTIONS(1827), - [aux_sym_identities_only_token1] = ACTIONS(1827), - [aux_sym_identity_agent_token1] = ACTIONS(1827), - [aux_sym_identity_file_token1] = ACTIONS(1827), - [aux_sym_ignore_unknown_token1] = ACTIONS(1827), - [aux_sym_include_token1] = ACTIONS(1827), - [aux_sym_ip_qos_token1] = ACTIONS(1827), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1827), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1827), - [aux_sym_kex_algorithms_token1] = ACTIONS(1827), - [aux_sym_known_hosts_command_token1] = ACTIONS(1827), - [aux_sym_local_command_token1] = ACTIONS(1827), - [aux_sym_local_forward_token1] = ACTIONS(1827), - [aux_sym_log_level_token1] = ACTIONS(1827), - [aux_sym_log_verbose_token1] = ACTIONS(1827), - [aux_sym_macs_token1] = ACTIONS(1827), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1827), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1827), - [aux_sym_password_authentication_token1] = ACTIONS(1827), - [aux_sym_permit_local_command_token1] = ACTIONS(1827), - [aux_sym_permit_remote_open_token1] = ACTIONS(1827), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1827), - [aux_sym_port_token1] = ACTIONS(1827), - [aux_sym_preferred_authentications_token1] = ACTIONS(1827), - [aux_sym_protocol_token1] = ACTIONS(1827), - [aux_sym_proxy_command_token1] = ACTIONS(1827), - [aux_sym_proxy_jump_token1] = ACTIONS(1827), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1827), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1827), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1827), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1827), - [aux_sym_rekey_limit_token1] = ACTIONS(1827), - [aux_sym_remote_command_token1] = ACTIONS(1827), - [aux_sym_remote_forward_token1] = ACTIONS(1827), - [aux_sym_request_tty_token1] = ACTIONS(1827), - [aux_sym_required_rsa_size_token1] = ACTIONS(1827), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1827), - [aux_sym_security_key_provider_token1] = ACTIONS(1827), - [aux_sym_send_env_token1] = ACTIONS(1827), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1827), - [aux_sym_server_alive_interval_token1] = ACTIONS(1827), - [aux_sym_session_type_token1] = ACTIONS(1827), - [aux_sym_set_env_token1] = ACTIONS(1827), - [aux_sym_stdin_null_token1] = ACTIONS(1827), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1827), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1827), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1827), - [aux_sym_syslog_facility_token1] = ACTIONS(1827), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1827), - [aux_sym_keep_alive_token1] = ACTIONS(1827), - [aux_sym_tunnel_token1] = ACTIONS(1829), - [aux_sym_tunnel_device_token1] = ACTIONS(1827), - [aux_sym_update_host_keys_token1] = ACTIONS(1827), - [aux_sym_use_keychain_token1] = ACTIONS(1827), - [aux_sym_use_roaming_token1] = ACTIONS(1827), - [aux_sym_user_token1] = ACTIONS(1829), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1827), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1827), - [aux_sym_visual_host_key_token1] = ACTIONS(1827), - [aux_sym_xauth_location_token1] = ACTIONS(1827), + [ts_builtin_sym_end] = ACTIONS(1832), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1836), + [aux_sym_match_token1] = ACTIONS(1832), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1832), + [aux_sym_address_family_token1] = ACTIONS(1832), + [aux_sym_batch_mode_token1] = ACTIONS(1832), + [aux_sym_bind_address_token1] = ACTIONS(1832), + [aux_sym_bind_interface_token1] = ACTIONS(1832), + [aux_sym_canonical_domains_token1] = ACTIONS(1832), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1832), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1832), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1832), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1832), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1832), + [aux_sym_certificate_file_token1] = ACTIONS(1832), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1832), + [aux_sym_check_host_ip_token1] = ACTIONS(1832), + [aux_sym_ciphers_token1] = ACTIONS(1832), + [aux_sym_cipher_token1] = ACTIONS(1834), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1832), + [aux_sym_compression_token1] = ACTIONS(1832), + [aux_sym_connection_attempts_token1] = ACTIONS(1832), + [aux_sym_connect_timeout_token1] = ACTIONS(1832), + [aux_sym_control_master_token1] = ACTIONS(1832), + [aux_sym_control_path_token1] = ACTIONS(1832), + [aux_sym_control_persist_token1] = ACTIONS(1832), + [aux_sym_dynamic_forward_token1] = ACTIONS(1832), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1832), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1832), + [aux_sym_escape_char_token1] = ACTIONS(1832), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1832), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1832), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1832), + [aux_sym_forward_agent_token1] = ACTIONS(1832), + [aux_sym_forward_x11_token1] = ACTIONS(1834), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1832), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1832), + [aux_sym_gateway_ports_token1] = ACTIONS(1832), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1832), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1832), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1832), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1832), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1832), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1832), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1832), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1832), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1832), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1832), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1832), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1832), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1832), + [aux_sym_host_key_alias_token1] = ACTIONS(1832), + [aux_sym_hostname_token1] = ACTIONS(1832), + [aux_sym_identities_only_token1] = ACTIONS(1832), + [aux_sym_identity_agent_token1] = ACTIONS(1832), + [aux_sym_identity_file_token1] = ACTIONS(1832), + [aux_sym_ignore_unknown_token1] = ACTIONS(1832), + [aux_sym_include_token1] = ACTIONS(1832), + [aux_sym_ip_qos_token1] = ACTIONS(1832), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1832), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1832), + [aux_sym_kex_algorithms_token1] = ACTIONS(1832), + [aux_sym_known_hosts_command_token1] = ACTIONS(1832), + [aux_sym_local_command_token1] = ACTIONS(1832), + [aux_sym_local_forward_token1] = ACTIONS(1832), + [aux_sym_log_level_token1] = ACTIONS(1832), + [aux_sym_log_verbose_token1] = ACTIONS(1832), + [aux_sym_macs_token1] = ACTIONS(1832), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1832), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1832), + [aux_sym_password_authentication_token1] = ACTIONS(1832), + [aux_sym_permit_local_command_token1] = ACTIONS(1832), + [aux_sym_permit_remote_open_token1] = ACTIONS(1832), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1832), + [aux_sym_port_token1] = ACTIONS(1832), + [aux_sym_preferred_authentications_token1] = ACTIONS(1832), + [aux_sym_protocol_token1] = ACTIONS(1832), + [aux_sym_proxy_command_token1] = ACTIONS(1832), + [aux_sym_proxy_jump_token1] = ACTIONS(1832), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1832), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1832), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1832), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1832), + [aux_sym_rekey_limit_token1] = ACTIONS(1832), + [aux_sym_remote_command_token1] = ACTIONS(1832), + [aux_sym_remote_forward_token1] = ACTIONS(1832), + [aux_sym_request_tty_token1] = ACTIONS(1832), + [aux_sym_required_rsa_size_token1] = ACTIONS(1832), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1832), + [aux_sym_security_key_provider_token1] = ACTIONS(1832), + [aux_sym_send_env_token1] = ACTIONS(1832), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1832), + [aux_sym_server_alive_interval_token1] = ACTIONS(1832), + [aux_sym_session_type_token1] = ACTIONS(1832), + [aux_sym_set_env_token1] = ACTIONS(1832), + [aux_sym_stdin_null_token1] = ACTIONS(1832), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1832), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1832), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1832), + [aux_sym_syslog_facility_token1] = ACTIONS(1832), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1832), + [aux_sym_keep_alive_token1] = ACTIONS(1832), + [aux_sym_tunnel_token1] = ACTIONS(1834), + [aux_sym_tunnel_device_token1] = ACTIONS(1832), + [aux_sym_update_host_keys_token1] = ACTIONS(1832), + [aux_sym_use_keychain_token1] = ACTIONS(1832), + [aux_sym_use_roaming_token1] = ACTIONS(1832), + [aux_sym_user_token1] = ACTIONS(1834), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1832), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1832), + [aux_sym_visual_host_key_token1] = ACTIONS(1832), + [aux_sym_xauth_location_token1] = ACTIONS(1832), }, [216] = { - [ts_builtin_sym_end] = ACTIONS(1833), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1837), - [aux_sym_match_token1] = ACTIONS(1833), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1833), - [aux_sym_address_family_token1] = ACTIONS(1833), - [aux_sym_batch_mode_token1] = ACTIONS(1833), - [aux_sym_bind_address_token1] = ACTIONS(1833), - [aux_sym_bind_interface_token1] = ACTIONS(1833), - [aux_sym_canonical_domains_token1] = ACTIONS(1833), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1833), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1833), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1833), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1833), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1833), - [aux_sym_certificate_file_token1] = ACTIONS(1833), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1833), - [aux_sym_check_host_ip_token1] = ACTIONS(1833), - [aux_sym_ciphers_token1] = ACTIONS(1833), - [aux_sym_cipher_token1] = ACTIONS(1835), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1833), - [aux_sym_compression_token1] = ACTIONS(1833), - [aux_sym_connection_attempts_token1] = ACTIONS(1833), - [aux_sym_connect_timeout_token1] = ACTIONS(1833), - [aux_sym_control_master_token1] = ACTIONS(1833), - [aux_sym_control_path_token1] = ACTIONS(1833), - [aux_sym_control_persist_token1] = ACTIONS(1833), - [aux_sym_dynamic_forward_token1] = ACTIONS(1833), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1833), - [aux_sym_escape_char_token1] = ACTIONS(1833), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1833), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1833), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1833), - [aux_sym_forward_agent_token1] = ACTIONS(1833), - [aux_sym_forward_x11_token1] = ACTIONS(1835), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1833), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1833), - [aux_sym_gateway_ports_token1] = ACTIONS(1833), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1833), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1833), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1833), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1833), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1833), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1833), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1833), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1833), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1833), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1833), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1833), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1833), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1833), - [aux_sym_host_key_alias_token1] = ACTIONS(1833), - [aux_sym_hostname_token1] = ACTIONS(1833), - [aux_sym_identities_only_token1] = ACTIONS(1833), - [aux_sym_identity_agent_token1] = ACTIONS(1833), - [aux_sym_identity_file_token1] = ACTIONS(1833), - [aux_sym_ignore_unknown_token1] = ACTIONS(1833), - [aux_sym_include_token1] = ACTIONS(1833), - [aux_sym_ip_qos_token1] = ACTIONS(1833), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1833), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1833), - [aux_sym_kex_algorithms_token1] = ACTIONS(1833), - [aux_sym_known_hosts_command_token1] = ACTIONS(1833), - [aux_sym_local_command_token1] = ACTIONS(1833), - [aux_sym_local_forward_token1] = ACTIONS(1833), - [aux_sym_log_level_token1] = ACTIONS(1833), - [aux_sym_log_verbose_token1] = ACTIONS(1833), - [aux_sym_macs_token1] = ACTIONS(1833), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1833), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1833), - [aux_sym_password_authentication_token1] = ACTIONS(1833), - [aux_sym_permit_local_command_token1] = ACTIONS(1833), - [aux_sym_permit_remote_open_token1] = ACTIONS(1833), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1833), - [aux_sym_port_token1] = ACTIONS(1833), - [aux_sym_preferred_authentications_token1] = ACTIONS(1833), - [aux_sym_protocol_token1] = ACTIONS(1833), - [aux_sym_proxy_command_token1] = ACTIONS(1833), - [aux_sym_proxy_jump_token1] = ACTIONS(1833), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1833), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1833), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1833), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1833), - [aux_sym_rekey_limit_token1] = ACTIONS(1833), - [aux_sym_remote_command_token1] = ACTIONS(1833), - [aux_sym_remote_forward_token1] = ACTIONS(1833), - [aux_sym_request_tty_token1] = ACTIONS(1833), - [aux_sym_required_rsa_size_token1] = ACTIONS(1833), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1833), - [aux_sym_security_key_provider_token1] = ACTIONS(1833), - [aux_sym_send_env_token1] = ACTIONS(1833), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1833), - [aux_sym_server_alive_interval_token1] = ACTIONS(1833), - [aux_sym_session_type_token1] = ACTIONS(1833), - [aux_sym_set_env_token1] = ACTIONS(1833), - [aux_sym_stdin_null_token1] = ACTIONS(1833), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1833), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1833), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1833), - [aux_sym_syslog_facility_token1] = ACTIONS(1833), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1833), - [aux_sym_keep_alive_token1] = ACTIONS(1833), - [aux_sym_tunnel_token1] = ACTIONS(1835), - [aux_sym_tunnel_device_token1] = ACTIONS(1833), - [aux_sym_update_host_keys_token1] = ACTIONS(1833), - [aux_sym_use_keychain_token1] = ACTIONS(1833), - [aux_sym_use_roaming_token1] = ACTIONS(1833), - [aux_sym_user_token1] = ACTIONS(1835), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1833), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1833), - [aux_sym_visual_host_key_token1] = ACTIONS(1833), - [aux_sym_xauth_location_token1] = ACTIONS(1833), + [ts_builtin_sym_end] = ACTIONS(1838), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1842), + [aux_sym_match_token1] = ACTIONS(1838), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1838), + [aux_sym_address_family_token1] = ACTIONS(1838), + [aux_sym_batch_mode_token1] = ACTIONS(1838), + [aux_sym_bind_address_token1] = ACTIONS(1838), + [aux_sym_bind_interface_token1] = ACTIONS(1838), + [aux_sym_canonical_domains_token1] = ACTIONS(1838), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1838), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1838), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1838), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1838), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1838), + [aux_sym_certificate_file_token1] = ACTIONS(1838), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1838), + [aux_sym_check_host_ip_token1] = ACTIONS(1838), + [aux_sym_ciphers_token1] = ACTIONS(1838), + [aux_sym_cipher_token1] = ACTIONS(1840), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1838), + [aux_sym_compression_token1] = ACTIONS(1838), + [aux_sym_connection_attempts_token1] = ACTIONS(1838), + [aux_sym_connect_timeout_token1] = ACTIONS(1838), + [aux_sym_control_master_token1] = ACTIONS(1838), + [aux_sym_control_path_token1] = ACTIONS(1838), + [aux_sym_control_persist_token1] = ACTIONS(1838), + [aux_sym_dynamic_forward_token1] = ACTIONS(1838), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1838), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1838), + [aux_sym_escape_char_token1] = ACTIONS(1838), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1838), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1838), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1838), + [aux_sym_forward_agent_token1] = ACTIONS(1838), + [aux_sym_forward_x11_token1] = ACTIONS(1840), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1838), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1838), + [aux_sym_gateway_ports_token1] = ACTIONS(1838), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1838), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1838), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1838), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1838), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1838), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1838), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1838), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1838), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1838), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1838), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1838), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1838), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1838), + [aux_sym_host_key_alias_token1] = ACTIONS(1838), + [aux_sym_hostname_token1] = ACTIONS(1838), + [aux_sym_identities_only_token1] = ACTIONS(1838), + [aux_sym_identity_agent_token1] = ACTIONS(1838), + [aux_sym_identity_file_token1] = ACTIONS(1838), + [aux_sym_ignore_unknown_token1] = ACTIONS(1838), + [aux_sym_include_token1] = ACTIONS(1838), + [aux_sym_ip_qos_token1] = ACTIONS(1838), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1838), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1838), + [aux_sym_kex_algorithms_token1] = ACTIONS(1838), + [aux_sym_known_hosts_command_token1] = ACTIONS(1838), + [aux_sym_local_command_token1] = ACTIONS(1838), + [aux_sym_local_forward_token1] = ACTIONS(1838), + [aux_sym_log_level_token1] = ACTIONS(1838), + [aux_sym_log_verbose_token1] = ACTIONS(1838), + [aux_sym_macs_token1] = ACTIONS(1838), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1838), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1838), + [aux_sym_password_authentication_token1] = ACTIONS(1838), + [aux_sym_permit_local_command_token1] = ACTIONS(1838), + [aux_sym_permit_remote_open_token1] = ACTIONS(1838), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1838), + [aux_sym_port_token1] = ACTIONS(1838), + [aux_sym_preferred_authentications_token1] = ACTIONS(1838), + [aux_sym_protocol_token1] = ACTIONS(1838), + [aux_sym_proxy_command_token1] = ACTIONS(1838), + [aux_sym_proxy_jump_token1] = ACTIONS(1838), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1838), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1838), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1838), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1838), + [aux_sym_rekey_limit_token1] = ACTIONS(1838), + [aux_sym_remote_command_token1] = ACTIONS(1838), + [aux_sym_remote_forward_token1] = ACTIONS(1838), + [aux_sym_request_tty_token1] = ACTIONS(1838), + [aux_sym_required_rsa_size_token1] = ACTIONS(1838), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1838), + [aux_sym_security_key_provider_token1] = ACTIONS(1838), + [aux_sym_send_env_token1] = ACTIONS(1838), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1838), + [aux_sym_server_alive_interval_token1] = ACTIONS(1838), + [aux_sym_session_type_token1] = ACTIONS(1838), + [aux_sym_set_env_token1] = ACTIONS(1838), + [aux_sym_stdin_null_token1] = ACTIONS(1838), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1838), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1838), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1838), + [aux_sym_syslog_facility_token1] = ACTIONS(1838), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1838), + [aux_sym_keep_alive_token1] = ACTIONS(1838), + [aux_sym_tunnel_token1] = ACTIONS(1840), + [aux_sym_tunnel_device_token1] = ACTIONS(1838), + [aux_sym_update_host_keys_token1] = ACTIONS(1838), + [aux_sym_use_keychain_token1] = ACTIONS(1838), + [aux_sym_use_roaming_token1] = ACTIONS(1838), + [aux_sym_user_token1] = ACTIONS(1840), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1838), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1838), + [aux_sym_visual_host_key_token1] = ACTIONS(1838), + [aux_sym_xauth_location_token1] = ACTIONS(1838), }, [217] = { - [ts_builtin_sym_end] = ACTIONS(1839), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1843), - [aux_sym_match_token1] = ACTIONS(1839), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1839), - [aux_sym_address_family_token1] = ACTIONS(1839), - [aux_sym_batch_mode_token1] = ACTIONS(1839), - [aux_sym_bind_address_token1] = ACTIONS(1839), - [aux_sym_bind_interface_token1] = ACTIONS(1839), - [aux_sym_canonical_domains_token1] = ACTIONS(1839), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1839), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1839), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1839), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1839), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1839), - [aux_sym_certificate_file_token1] = ACTIONS(1839), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1839), - [aux_sym_check_host_ip_token1] = ACTIONS(1839), - [aux_sym_ciphers_token1] = ACTIONS(1839), - [aux_sym_cipher_token1] = ACTIONS(1841), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1839), - [aux_sym_compression_token1] = ACTIONS(1839), - [aux_sym_connection_attempts_token1] = ACTIONS(1839), - [aux_sym_connect_timeout_token1] = ACTIONS(1839), - [aux_sym_control_master_token1] = ACTIONS(1839), - [aux_sym_control_path_token1] = ACTIONS(1839), - [aux_sym_control_persist_token1] = ACTIONS(1839), - [aux_sym_dynamic_forward_token1] = ACTIONS(1839), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1839), - [aux_sym_escape_char_token1] = ACTIONS(1839), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1839), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1839), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1839), - [aux_sym_forward_agent_token1] = ACTIONS(1839), - [aux_sym_forward_x11_token1] = ACTIONS(1841), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1839), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1839), - [aux_sym_gateway_ports_token1] = ACTIONS(1839), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1839), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1839), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1839), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1839), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1839), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1839), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1839), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1839), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1839), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1839), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1839), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1839), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1839), - [aux_sym_host_key_alias_token1] = ACTIONS(1839), - [aux_sym_hostname_token1] = ACTIONS(1839), - [aux_sym_identities_only_token1] = ACTIONS(1839), - [aux_sym_identity_agent_token1] = ACTIONS(1839), - [aux_sym_identity_file_token1] = ACTIONS(1839), - [aux_sym_ignore_unknown_token1] = ACTIONS(1839), - [aux_sym_include_token1] = ACTIONS(1839), - [aux_sym_ip_qos_token1] = ACTIONS(1839), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1839), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1839), - [aux_sym_kex_algorithms_token1] = ACTIONS(1839), - [aux_sym_known_hosts_command_token1] = ACTIONS(1839), - [aux_sym_local_command_token1] = ACTIONS(1839), - [aux_sym_local_forward_token1] = ACTIONS(1839), - [aux_sym_log_level_token1] = ACTIONS(1839), - [aux_sym_log_verbose_token1] = ACTIONS(1839), - [aux_sym_macs_token1] = ACTIONS(1839), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1839), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1839), - [aux_sym_password_authentication_token1] = ACTIONS(1839), - [aux_sym_permit_local_command_token1] = ACTIONS(1839), - [aux_sym_permit_remote_open_token1] = ACTIONS(1839), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1839), - [aux_sym_port_token1] = ACTIONS(1839), - [aux_sym_preferred_authentications_token1] = ACTIONS(1839), - [aux_sym_protocol_token1] = ACTIONS(1839), - [aux_sym_proxy_command_token1] = ACTIONS(1839), - [aux_sym_proxy_jump_token1] = ACTIONS(1839), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1839), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1839), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1839), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1839), - [aux_sym_rekey_limit_token1] = ACTIONS(1839), - [aux_sym_remote_command_token1] = ACTIONS(1839), - [aux_sym_remote_forward_token1] = ACTIONS(1839), - [aux_sym_request_tty_token1] = ACTIONS(1839), - [aux_sym_required_rsa_size_token1] = ACTIONS(1839), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1839), - [aux_sym_security_key_provider_token1] = ACTIONS(1839), - [aux_sym_send_env_token1] = ACTIONS(1839), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1839), - [aux_sym_server_alive_interval_token1] = ACTIONS(1839), - [aux_sym_session_type_token1] = ACTIONS(1839), - [aux_sym_set_env_token1] = ACTIONS(1839), - [aux_sym_stdin_null_token1] = ACTIONS(1839), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1839), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1839), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1839), - [aux_sym_syslog_facility_token1] = ACTIONS(1839), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1839), - [aux_sym_keep_alive_token1] = ACTIONS(1839), - [aux_sym_tunnel_token1] = ACTIONS(1841), - [aux_sym_tunnel_device_token1] = ACTIONS(1839), - [aux_sym_update_host_keys_token1] = ACTIONS(1839), - [aux_sym_use_keychain_token1] = ACTIONS(1839), - [aux_sym_use_roaming_token1] = ACTIONS(1839), - [aux_sym_user_token1] = ACTIONS(1841), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1839), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1839), - [aux_sym_visual_host_key_token1] = ACTIONS(1839), - [aux_sym_xauth_location_token1] = ACTIONS(1839), + [ts_builtin_sym_end] = ACTIONS(1844), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1846), + [anon_sym_DQUOTE] = ACTIONS(1848), + [aux_sym_match_token1] = ACTIONS(1844), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1844), + [aux_sym_address_family_token1] = ACTIONS(1844), + [aux_sym_batch_mode_token1] = ACTIONS(1844), + [aux_sym_bind_address_token1] = ACTIONS(1844), + [aux_sym_bind_interface_token1] = ACTIONS(1844), + [aux_sym_canonical_domains_token1] = ACTIONS(1844), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1844), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1844), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1844), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1844), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1844), + [aux_sym_certificate_file_token1] = ACTIONS(1844), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1844), + [aux_sym_check_host_ip_token1] = ACTIONS(1844), + [aux_sym_ciphers_token1] = ACTIONS(1844), + [aux_sym_cipher_token1] = ACTIONS(1846), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1844), + [aux_sym_compression_token1] = ACTIONS(1844), + [aux_sym_connection_attempts_token1] = ACTIONS(1844), + [aux_sym_connect_timeout_token1] = ACTIONS(1844), + [aux_sym_control_master_token1] = ACTIONS(1844), + [aux_sym_control_path_token1] = ACTIONS(1844), + [aux_sym_control_persist_token1] = ACTIONS(1844), + [aux_sym_dynamic_forward_token1] = ACTIONS(1844), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1844), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1844), + [aux_sym_escape_char_token1] = ACTIONS(1844), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1844), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1844), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1844), + [aux_sym_forward_agent_token1] = ACTIONS(1844), + [aux_sym_forward_x11_token1] = ACTIONS(1846), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1844), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1844), + [aux_sym_gateway_ports_token1] = ACTIONS(1844), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1844), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1844), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1844), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1844), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1844), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1844), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1844), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1844), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1844), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1844), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1844), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1844), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1844), + [aux_sym_host_key_alias_token1] = ACTIONS(1844), + [aux_sym_hostname_token1] = ACTIONS(1844), + [aux_sym_identities_only_token1] = ACTIONS(1844), + [aux_sym_identity_agent_token1] = ACTIONS(1844), + [aux_sym_identity_file_token1] = ACTIONS(1844), + [aux_sym_ignore_unknown_token1] = ACTIONS(1844), + [aux_sym_include_token1] = ACTIONS(1844), + [aux_sym_ip_qos_token1] = ACTIONS(1844), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1844), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1844), + [aux_sym_kex_algorithms_token1] = ACTIONS(1844), + [aux_sym_known_hosts_command_token1] = ACTIONS(1844), + [aux_sym_local_command_token1] = ACTIONS(1844), + [aux_sym_local_forward_token1] = ACTIONS(1844), + [aux_sym_log_level_token1] = ACTIONS(1844), + [aux_sym_log_verbose_token1] = ACTIONS(1844), + [aux_sym_macs_token1] = ACTIONS(1844), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1844), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1844), + [aux_sym_password_authentication_token1] = ACTIONS(1844), + [aux_sym_permit_local_command_token1] = ACTIONS(1844), + [aux_sym_permit_remote_open_token1] = ACTIONS(1844), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1844), + [aux_sym_port_token1] = ACTIONS(1844), + [aux_sym_preferred_authentications_token1] = ACTIONS(1844), + [aux_sym_protocol_token1] = ACTIONS(1844), + [aux_sym_proxy_command_token1] = ACTIONS(1844), + [aux_sym_proxy_jump_token1] = ACTIONS(1844), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1844), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1844), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1844), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1844), + [aux_sym_rekey_limit_token1] = ACTIONS(1844), + [aux_sym_remote_command_token1] = ACTIONS(1844), + [aux_sym_remote_forward_token1] = ACTIONS(1844), + [aux_sym_request_tty_token1] = ACTIONS(1844), + [aux_sym_required_rsa_size_token1] = ACTIONS(1844), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1844), + [aux_sym_security_key_provider_token1] = ACTIONS(1844), + [aux_sym_send_env_token1] = ACTIONS(1844), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1844), + [aux_sym_server_alive_interval_token1] = ACTIONS(1844), + [aux_sym_session_type_token1] = ACTIONS(1844), + [aux_sym_set_env_token1] = ACTIONS(1844), + [aux_sym_stdin_null_token1] = ACTIONS(1844), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1844), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1844), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1844), + [aux_sym_syslog_facility_token1] = ACTIONS(1844), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1844), + [aux_sym_keep_alive_token1] = ACTIONS(1844), + [aux_sym_tunnel_token1] = ACTIONS(1846), + [aux_sym_tunnel_device_token1] = ACTIONS(1844), + [aux_sym_update_host_keys_token1] = ACTIONS(1844), + [aux_sym_use_keychain_token1] = ACTIONS(1844), + [aux_sym_use_roaming_token1] = ACTIONS(1844), + [aux_sym_user_token1] = ACTIONS(1846), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1844), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1844), + [aux_sym_visual_host_key_token1] = ACTIONS(1844), + [aux_sym_xauth_location_token1] = ACTIONS(1844), }, [218] = { - [ts_builtin_sym_end] = ACTIONS(1845), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1847), - [anon_sym_DQUOTE] = ACTIONS(1849), - [aux_sym_match_token1] = ACTIONS(1845), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1845), - [aux_sym_address_family_token1] = ACTIONS(1845), - [aux_sym_batch_mode_token1] = ACTIONS(1845), - [aux_sym_bind_address_token1] = ACTIONS(1845), - [aux_sym_bind_interface_token1] = ACTIONS(1845), - [aux_sym_canonical_domains_token1] = ACTIONS(1845), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1845), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1845), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1845), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1845), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1845), - [aux_sym_certificate_file_token1] = ACTIONS(1845), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1845), - [aux_sym_check_host_ip_token1] = ACTIONS(1845), - [aux_sym_ciphers_token1] = ACTIONS(1845), - [aux_sym_cipher_token1] = ACTIONS(1847), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1845), - [aux_sym_compression_token1] = ACTIONS(1845), - [aux_sym_connection_attempts_token1] = ACTIONS(1845), - [aux_sym_connect_timeout_token1] = ACTIONS(1845), - [aux_sym_control_master_token1] = ACTIONS(1845), - [aux_sym_control_path_token1] = ACTIONS(1845), - [aux_sym_control_persist_token1] = ACTIONS(1845), - [aux_sym_dynamic_forward_token1] = ACTIONS(1845), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1845), - [aux_sym_escape_char_token1] = ACTIONS(1845), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1845), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1845), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1845), - [aux_sym_forward_agent_token1] = ACTIONS(1845), - [aux_sym_forward_x11_token1] = ACTIONS(1847), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1845), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1845), - [aux_sym_gateway_ports_token1] = ACTIONS(1845), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1845), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1845), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1845), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1845), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1845), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1845), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1845), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1845), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1845), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1845), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1845), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1845), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1845), - [aux_sym_host_key_alias_token1] = ACTIONS(1845), - [aux_sym_hostname_token1] = ACTIONS(1845), - [aux_sym_identities_only_token1] = ACTIONS(1845), - [aux_sym_identity_agent_token1] = ACTIONS(1845), - [aux_sym_identity_file_token1] = ACTIONS(1845), - [aux_sym_ignore_unknown_token1] = ACTIONS(1845), - [aux_sym_include_token1] = ACTIONS(1845), - [aux_sym_ip_qos_token1] = ACTIONS(1845), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1845), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1845), - [aux_sym_kex_algorithms_token1] = ACTIONS(1845), - [aux_sym_known_hosts_command_token1] = ACTIONS(1845), - [aux_sym_local_command_token1] = ACTIONS(1845), - [aux_sym_local_forward_token1] = ACTIONS(1845), - [aux_sym_log_level_token1] = ACTIONS(1845), - [aux_sym_log_verbose_token1] = ACTIONS(1845), - [aux_sym_macs_token1] = ACTIONS(1845), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1845), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1845), - [aux_sym_password_authentication_token1] = ACTIONS(1845), - [aux_sym_permit_local_command_token1] = ACTIONS(1845), - [aux_sym_permit_remote_open_token1] = ACTIONS(1845), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1845), - [aux_sym_port_token1] = ACTIONS(1845), - [aux_sym_preferred_authentications_token1] = ACTIONS(1845), - [aux_sym_protocol_token1] = ACTIONS(1845), - [aux_sym_proxy_command_token1] = ACTIONS(1845), - [aux_sym_proxy_jump_token1] = ACTIONS(1845), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1845), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1845), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1845), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1845), - [aux_sym_rekey_limit_token1] = ACTIONS(1845), - [aux_sym_remote_command_token1] = ACTIONS(1845), - [aux_sym_remote_forward_token1] = ACTIONS(1845), - [aux_sym_request_tty_token1] = ACTIONS(1845), - [aux_sym_required_rsa_size_token1] = ACTIONS(1845), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1845), - [aux_sym_security_key_provider_token1] = ACTIONS(1845), - [aux_sym_send_env_token1] = ACTIONS(1845), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1845), - [aux_sym_server_alive_interval_token1] = ACTIONS(1845), - [aux_sym_session_type_token1] = ACTIONS(1845), - [aux_sym_set_env_token1] = ACTIONS(1845), - [aux_sym_stdin_null_token1] = ACTIONS(1845), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1845), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1845), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1845), - [aux_sym_syslog_facility_token1] = ACTIONS(1845), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1845), - [aux_sym_keep_alive_token1] = ACTIONS(1845), - [aux_sym_tunnel_token1] = ACTIONS(1847), - [aux_sym_tunnel_device_token1] = ACTIONS(1845), - [aux_sym_update_host_keys_token1] = ACTIONS(1845), - [aux_sym_use_keychain_token1] = ACTIONS(1845), - [aux_sym_use_roaming_token1] = ACTIONS(1845), - [aux_sym_user_token1] = ACTIONS(1847), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1845), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1845), - [aux_sym_visual_host_key_token1] = ACTIONS(1845), - [aux_sym_xauth_location_token1] = ACTIONS(1845), + [ts_builtin_sym_end] = ACTIONS(1850), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1852), + [anon_sym_DQUOTE] = ACTIONS(1854), + [aux_sym_match_token1] = ACTIONS(1850), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1850), + [aux_sym_address_family_token1] = ACTIONS(1850), + [aux_sym_batch_mode_token1] = ACTIONS(1850), + [aux_sym_bind_address_token1] = ACTIONS(1850), + [aux_sym_bind_interface_token1] = ACTIONS(1850), + [aux_sym_canonical_domains_token1] = ACTIONS(1850), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1850), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1850), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1850), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1850), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1850), + [aux_sym_certificate_file_token1] = ACTIONS(1850), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1850), + [aux_sym_check_host_ip_token1] = ACTIONS(1850), + [aux_sym_ciphers_token1] = ACTIONS(1850), + [aux_sym_cipher_token1] = ACTIONS(1852), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1850), + [aux_sym_compression_token1] = ACTIONS(1850), + [aux_sym_connection_attempts_token1] = ACTIONS(1850), + [aux_sym_connect_timeout_token1] = ACTIONS(1850), + [aux_sym_control_master_token1] = ACTIONS(1850), + [aux_sym_control_path_token1] = ACTIONS(1850), + [aux_sym_control_persist_token1] = ACTIONS(1850), + [aux_sym_dynamic_forward_token1] = ACTIONS(1850), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1850), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1850), + [aux_sym_escape_char_token1] = ACTIONS(1850), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1850), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1850), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1850), + [aux_sym_forward_agent_token1] = ACTIONS(1850), + [aux_sym_forward_x11_token1] = ACTIONS(1852), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1850), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1850), + [aux_sym_gateway_ports_token1] = ACTIONS(1850), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1850), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1850), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1850), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1850), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1850), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1850), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1850), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1850), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1850), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1850), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1850), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1850), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1850), + [aux_sym_host_key_alias_token1] = ACTIONS(1850), + [aux_sym_hostname_token1] = ACTIONS(1850), + [aux_sym_identities_only_token1] = ACTIONS(1850), + [aux_sym_identity_agent_token1] = ACTIONS(1850), + [aux_sym_identity_file_token1] = ACTIONS(1850), + [aux_sym_ignore_unknown_token1] = ACTIONS(1850), + [aux_sym_include_token1] = ACTIONS(1850), + [aux_sym_ip_qos_token1] = ACTIONS(1850), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1850), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1850), + [aux_sym_kex_algorithms_token1] = ACTIONS(1850), + [aux_sym_known_hosts_command_token1] = ACTIONS(1850), + [aux_sym_local_command_token1] = ACTIONS(1850), + [aux_sym_local_forward_token1] = ACTIONS(1850), + [aux_sym_log_level_token1] = ACTIONS(1850), + [aux_sym_log_verbose_token1] = ACTIONS(1850), + [aux_sym_macs_token1] = ACTIONS(1850), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1850), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1850), + [aux_sym_password_authentication_token1] = ACTIONS(1850), + [aux_sym_permit_local_command_token1] = ACTIONS(1850), + [aux_sym_permit_remote_open_token1] = ACTIONS(1850), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1850), + [aux_sym_port_token1] = ACTIONS(1850), + [aux_sym_preferred_authentications_token1] = ACTIONS(1850), + [aux_sym_protocol_token1] = ACTIONS(1850), + [aux_sym_proxy_command_token1] = ACTIONS(1850), + [aux_sym_proxy_jump_token1] = ACTIONS(1850), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1850), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1850), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1850), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1850), + [aux_sym_rekey_limit_token1] = ACTIONS(1850), + [aux_sym_remote_command_token1] = ACTIONS(1850), + [aux_sym_remote_forward_token1] = ACTIONS(1850), + [aux_sym_request_tty_token1] = ACTIONS(1850), + [aux_sym_required_rsa_size_token1] = ACTIONS(1850), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1850), + [aux_sym_security_key_provider_token1] = ACTIONS(1850), + [aux_sym_send_env_token1] = ACTIONS(1850), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1850), + [aux_sym_server_alive_interval_token1] = ACTIONS(1850), + [aux_sym_session_type_token1] = ACTIONS(1850), + [aux_sym_set_env_token1] = ACTIONS(1850), + [aux_sym_stdin_null_token1] = ACTIONS(1850), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1850), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1850), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1850), + [aux_sym_syslog_facility_token1] = ACTIONS(1850), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1850), + [aux_sym_keep_alive_token1] = ACTIONS(1850), + [aux_sym_tunnel_token1] = ACTIONS(1852), + [aux_sym_tunnel_device_token1] = ACTIONS(1850), + [aux_sym_update_host_keys_token1] = ACTIONS(1850), + [aux_sym_use_keychain_token1] = ACTIONS(1850), + [aux_sym_use_roaming_token1] = ACTIONS(1850), + [aux_sym_user_token1] = ACTIONS(1852), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1850), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1850), + [aux_sym_visual_host_key_token1] = ACTIONS(1850), + [aux_sym_xauth_location_token1] = ACTIONS(1850), }, [219] = { - [ts_builtin_sym_end] = ACTIONS(1851), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1853), - [anon_sym_DQUOTE] = ACTIONS(1855), - [aux_sym_match_token1] = ACTIONS(1851), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1851), - [aux_sym_address_family_token1] = ACTIONS(1851), - [aux_sym_batch_mode_token1] = ACTIONS(1851), - [aux_sym_bind_address_token1] = ACTIONS(1851), - [aux_sym_bind_interface_token1] = ACTIONS(1851), - [aux_sym_canonical_domains_token1] = ACTIONS(1851), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1851), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1851), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1851), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1851), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1851), - [aux_sym_certificate_file_token1] = ACTIONS(1851), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1851), - [aux_sym_check_host_ip_token1] = ACTIONS(1851), - [aux_sym_ciphers_token1] = ACTIONS(1851), - [aux_sym_cipher_token1] = ACTIONS(1853), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1851), - [aux_sym_compression_token1] = ACTIONS(1851), - [aux_sym_connection_attempts_token1] = ACTIONS(1851), - [aux_sym_connect_timeout_token1] = ACTIONS(1851), - [aux_sym_control_master_token1] = ACTIONS(1851), - [aux_sym_control_path_token1] = ACTIONS(1851), - [aux_sym_control_persist_token1] = ACTIONS(1851), - [aux_sym_dynamic_forward_token1] = ACTIONS(1851), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1851), - [aux_sym_escape_char_token1] = ACTIONS(1851), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1851), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1851), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1851), - [aux_sym_forward_agent_token1] = ACTIONS(1851), - [aux_sym_forward_x11_token1] = ACTIONS(1853), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1851), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1851), - [aux_sym_gateway_ports_token1] = ACTIONS(1851), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1851), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1851), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1851), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1851), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1851), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1851), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1851), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1851), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1851), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1851), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1851), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1851), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1851), - [aux_sym_host_key_alias_token1] = ACTIONS(1851), - [aux_sym_hostname_token1] = ACTIONS(1851), - [aux_sym_identities_only_token1] = ACTIONS(1851), - [aux_sym_identity_agent_token1] = ACTIONS(1851), - [aux_sym_identity_file_token1] = ACTIONS(1851), - [aux_sym_ignore_unknown_token1] = ACTIONS(1851), - [aux_sym_include_token1] = ACTIONS(1851), - [aux_sym_ip_qos_token1] = ACTIONS(1851), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1851), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1851), - [aux_sym_kex_algorithms_token1] = ACTIONS(1851), - [aux_sym_known_hosts_command_token1] = ACTIONS(1851), - [aux_sym_local_command_token1] = ACTIONS(1851), - [aux_sym_local_forward_token1] = ACTIONS(1851), - [aux_sym_log_level_token1] = ACTIONS(1851), - [aux_sym_log_verbose_token1] = ACTIONS(1851), - [aux_sym_macs_token1] = ACTIONS(1851), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1851), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1851), - [aux_sym_password_authentication_token1] = ACTIONS(1851), - [aux_sym_permit_local_command_token1] = ACTIONS(1851), - [aux_sym_permit_remote_open_token1] = ACTIONS(1851), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1851), - [aux_sym_port_token1] = ACTIONS(1851), - [aux_sym_preferred_authentications_token1] = ACTIONS(1851), - [aux_sym_protocol_token1] = ACTIONS(1851), - [aux_sym_proxy_command_token1] = ACTIONS(1851), - [aux_sym_proxy_jump_token1] = ACTIONS(1851), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1851), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1851), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1851), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1851), - [aux_sym_rekey_limit_token1] = ACTIONS(1851), - [aux_sym_remote_command_token1] = ACTIONS(1851), - [aux_sym_remote_forward_token1] = ACTIONS(1851), - [aux_sym_request_tty_token1] = ACTIONS(1851), - [aux_sym_required_rsa_size_token1] = ACTIONS(1851), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1851), - [aux_sym_security_key_provider_token1] = ACTIONS(1851), - [aux_sym_send_env_token1] = ACTIONS(1851), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1851), - [aux_sym_server_alive_interval_token1] = ACTIONS(1851), - [aux_sym_session_type_token1] = ACTIONS(1851), - [aux_sym_set_env_token1] = ACTIONS(1851), - [aux_sym_stdin_null_token1] = ACTIONS(1851), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1851), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1851), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1851), - [aux_sym_syslog_facility_token1] = ACTIONS(1851), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1851), - [aux_sym_keep_alive_token1] = ACTIONS(1851), - [aux_sym_tunnel_token1] = ACTIONS(1853), - [aux_sym_tunnel_device_token1] = ACTIONS(1851), - [aux_sym_update_host_keys_token1] = ACTIONS(1851), - [aux_sym_use_keychain_token1] = ACTIONS(1851), - [aux_sym_use_roaming_token1] = ACTIONS(1851), - [aux_sym_user_token1] = ACTIONS(1853), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1851), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1851), - [aux_sym_visual_host_key_token1] = ACTIONS(1851), - [aux_sym_xauth_location_token1] = ACTIONS(1851), + [ts_builtin_sym_end] = ACTIONS(1856), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1858), + [anon_sym_DQUOTE] = ACTIONS(1860), + [aux_sym_match_token1] = ACTIONS(1856), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1856), + [aux_sym_address_family_token1] = ACTIONS(1856), + [aux_sym_batch_mode_token1] = ACTIONS(1856), + [aux_sym_bind_address_token1] = ACTIONS(1856), + [aux_sym_bind_interface_token1] = ACTIONS(1856), + [aux_sym_canonical_domains_token1] = ACTIONS(1856), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1856), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1856), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1856), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1856), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1856), + [aux_sym_certificate_file_token1] = ACTIONS(1856), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1856), + [aux_sym_check_host_ip_token1] = ACTIONS(1856), + [aux_sym_ciphers_token1] = ACTIONS(1856), + [aux_sym_cipher_token1] = ACTIONS(1858), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1856), + [aux_sym_compression_token1] = ACTIONS(1856), + [aux_sym_connection_attempts_token1] = ACTIONS(1856), + [aux_sym_connect_timeout_token1] = ACTIONS(1856), + [aux_sym_control_master_token1] = ACTIONS(1856), + [aux_sym_control_path_token1] = ACTIONS(1856), + [aux_sym_control_persist_token1] = ACTIONS(1856), + [aux_sym_dynamic_forward_token1] = ACTIONS(1856), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1856), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1856), + [aux_sym_escape_char_token1] = ACTIONS(1856), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1856), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1856), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1856), + [aux_sym_forward_agent_token1] = ACTIONS(1856), + [aux_sym_forward_x11_token1] = ACTIONS(1858), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1856), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1856), + [aux_sym_gateway_ports_token1] = ACTIONS(1856), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1856), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1856), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1856), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1856), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1856), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1856), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1856), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1856), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1856), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1856), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1856), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1856), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1856), + [aux_sym_host_key_alias_token1] = ACTIONS(1856), + [aux_sym_hostname_token1] = ACTIONS(1856), + [aux_sym_identities_only_token1] = ACTIONS(1856), + [aux_sym_identity_agent_token1] = ACTIONS(1856), + [aux_sym_identity_file_token1] = ACTIONS(1856), + [aux_sym_ignore_unknown_token1] = ACTIONS(1856), + [aux_sym_include_token1] = ACTIONS(1856), + [aux_sym_ip_qos_token1] = ACTIONS(1856), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1856), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1856), + [aux_sym_kex_algorithms_token1] = ACTIONS(1856), + [aux_sym_known_hosts_command_token1] = ACTIONS(1856), + [aux_sym_local_command_token1] = ACTIONS(1856), + [aux_sym_local_forward_token1] = ACTIONS(1856), + [aux_sym_log_level_token1] = ACTIONS(1856), + [aux_sym_log_verbose_token1] = ACTIONS(1856), + [aux_sym_macs_token1] = ACTIONS(1856), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1856), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1856), + [aux_sym_password_authentication_token1] = ACTIONS(1856), + [aux_sym_permit_local_command_token1] = ACTIONS(1856), + [aux_sym_permit_remote_open_token1] = ACTIONS(1856), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1856), + [aux_sym_port_token1] = ACTIONS(1856), + [aux_sym_preferred_authentications_token1] = ACTIONS(1856), + [aux_sym_protocol_token1] = ACTIONS(1856), + [aux_sym_proxy_command_token1] = ACTIONS(1856), + [aux_sym_proxy_jump_token1] = ACTIONS(1856), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1856), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1856), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1856), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1856), + [aux_sym_rekey_limit_token1] = ACTIONS(1856), + [aux_sym_remote_command_token1] = ACTIONS(1856), + [aux_sym_remote_forward_token1] = ACTIONS(1856), + [aux_sym_request_tty_token1] = ACTIONS(1856), + [aux_sym_required_rsa_size_token1] = ACTIONS(1856), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1856), + [aux_sym_security_key_provider_token1] = ACTIONS(1856), + [aux_sym_send_env_token1] = ACTIONS(1856), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1856), + [aux_sym_server_alive_interval_token1] = ACTIONS(1856), + [aux_sym_session_type_token1] = ACTIONS(1856), + [aux_sym_set_env_token1] = ACTIONS(1856), + [aux_sym_stdin_null_token1] = ACTIONS(1856), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1856), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1856), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1856), + [aux_sym_syslog_facility_token1] = ACTIONS(1856), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1856), + [aux_sym_keep_alive_token1] = ACTIONS(1856), + [aux_sym_tunnel_token1] = ACTIONS(1858), + [aux_sym_tunnel_device_token1] = ACTIONS(1856), + [aux_sym_update_host_keys_token1] = ACTIONS(1856), + [aux_sym_use_keychain_token1] = ACTIONS(1856), + [aux_sym_use_roaming_token1] = ACTIONS(1856), + [aux_sym_user_token1] = ACTIONS(1858), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1856), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1856), + [aux_sym_visual_host_key_token1] = ACTIONS(1856), + [aux_sym_xauth_location_token1] = ACTIONS(1856), }, [220] = { - [ts_builtin_sym_end] = ACTIONS(1857), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1859), - [anon_sym_DQUOTE] = ACTIONS(1861), - [aux_sym_match_token1] = ACTIONS(1857), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1857), - [aux_sym_address_family_token1] = ACTIONS(1857), - [aux_sym_batch_mode_token1] = ACTIONS(1857), - [aux_sym_bind_address_token1] = ACTIONS(1857), - [aux_sym_bind_interface_token1] = ACTIONS(1857), - [aux_sym_canonical_domains_token1] = ACTIONS(1857), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1857), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1857), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1857), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1857), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1857), - [aux_sym_certificate_file_token1] = ACTIONS(1857), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1857), - [aux_sym_check_host_ip_token1] = ACTIONS(1857), - [aux_sym_ciphers_token1] = ACTIONS(1857), - [aux_sym_cipher_token1] = ACTIONS(1859), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1857), - [aux_sym_compression_token1] = ACTIONS(1857), - [aux_sym_connection_attempts_token1] = ACTIONS(1857), - [aux_sym_connect_timeout_token1] = ACTIONS(1857), - [aux_sym_control_master_token1] = ACTIONS(1857), - [aux_sym_control_path_token1] = ACTIONS(1857), - [aux_sym_control_persist_token1] = ACTIONS(1857), - [aux_sym_dynamic_forward_token1] = ACTIONS(1857), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1857), - [aux_sym_escape_char_token1] = ACTIONS(1857), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1857), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1857), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1857), - [aux_sym_forward_agent_token1] = ACTIONS(1857), - [aux_sym_forward_x11_token1] = ACTIONS(1859), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1857), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1857), - [aux_sym_gateway_ports_token1] = ACTIONS(1857), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1857), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1857), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1857), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1857), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1857), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1857), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1857), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1857), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1857), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1857), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1857), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1857), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1857), - [aux_sym_host_key_alias_token1] = ACTIONS(1857), - [aux_sym_hostname_token1] = ACTIONS(1857), - [aux_sym_identities_only_token1] = ACTIONS(1857), - [aux_sym_identity_agent_token1] = ACTIONS(1857), - [aux_sym_identity_file_token1] = ACTIONS(1857), - [aux_sym_ignore_unknown_token1] = ACTIONS(1857), - [aux_sym_include_token1] = ACTIONS(1857), - [aux_sym_ip_qos_token1] = ACTIONS(1857), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1857), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1857), - [aux_sym_kex_algorithms_token1] = ACTIONS(1857), - [aux_sym_known_hosts_command_token1] = ACTIONS(1857), - [aux_sym_local_command_token1] = ACTIONS(1857), - [aux_sym_local_forward_token1] = ACTIONS(1857), - [aux_sym_log_level_token1] = ACTIONS(1857), - [aux_sym_log_verbose_token1] = ACTIONS(1857), - [aux_sym_macs_token1] = ACTIONS(1857), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1857), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1857), - [aux_sym_password_authentication_token1] = ACTIONS(1857), - [aux_sym_permit_local_command_token1] = ACTIONS(1857), - [aux_sym_permit_remote_open_token1] = ACTIONS(1857), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1857), - [aux_sym_port_token1] = ACTIONS(1857), - [aux_sym_preferred_authentications_token1] = ACTIONS(1857), - [aux_sym_protocol_token1] = ACTIONS(1857), - [aux_sym_proxy_command_token1] = ACTIONS(1857), - [aux_sym_proxy_jump_token1] = ACTIONS(1857), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1857), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1857), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1857), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1857), - [aux_sym_rekey_limit_token1] = ACTIONS(1857), - [aux_sym_remote_command_token1] = ACTIONS(1857), - [aux_sym_remote_forward_token1] = ACTIONS(1857), - [aux_sym_request_tty_token1] = ACTIONS(1857), - [aux_sym_required_rsa_size_token1] = ACTIONS(1857), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1857), - [aux_sym_security_key_provider_token1] = ACTIONS(1857), - [aux_sym_send_env_token1] = ACTIONS(1857), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1857), - [aux_sym_server_alive_interval_token1] = ACTIONS(1857), - [aux_sym_session_type_token1] = ACTIONS(1857), - [aux_sym_set_env_token1] = ACTIONS(1857), - [aux_sym_stdin_null_token1] = ACTIONS(1857), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1857), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1857), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1857), - [aux_sym_syslog_facility_token1] = ACTIONS(1857), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1857), - [aux_sym_keep_alive_token1] = ACTIONS(1857), - [aux_sym_tunnel_token1] = ACTIONS(1859), - [aux_sym_tunnel_device_token1] = ACTIONS(1857), - [aux_sym_update_host_keys_token1] = ACTIONS(1857), - [aux_sym_use_keychain_token1] = ACTIONS(1857), - [aux_sym_use_roaming_token1] = ACTIONS(1857), - [aux_sym_user_token1] = ACTIONS(1859), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1857), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1857), - [aux_sym_visual_host_key_token1] = ACTIONS(1857), - [aux_sym_xauth_location_token1] = ACTIONS(1857), + [ts_builtin_sym_end] = ACTIONS(1862), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1864), + [anon_sym_DQUOTE] = ACTIONS(1866), + [aux_sym_match_token1] = ACTIONS(1862), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1862), + [aux_sym_address_family_token1] = ACTIONS(1862), + [aux_sym_batch_mode_token1] = ACTIONS(1862), + [aux_sym_bind_address_token1] = ACTIONS(1862), + [aux_sym_bind_interface_token1] = ACTIONS(1862), + [aux_sym_canonical_domains_token1] = ACTIONS(1862), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1862), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1862), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1862), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1862), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1862), + [aux_sym_certificate_file_token1] = ACTIONS(1862), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1862), + [aux_sym_check_host_ip_token1] = ACTIONS(1862), + [aux_sym_ciphers_token1] = ACTIONS(1862), + [aux_sym_cipher_token1] = ACTIONS(1864), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1862), + [aux_sym_compression_token1] = ACTIONS(1862), + [aux_sym_connection_attempts_token1] = ACTIONS(1862), + [aux_sym_connect_timeout_token1] = ACTIONS(1862), + [aux_sym_control_master_token1] = ACTIONS(1862), + [aux_sym_control_path_token1] = ACTIONS(1862), + [aux_sym_control_persist_token1] = ACTIONS(1862), + [aux_sym_dynamic_forward_token1] = ACTIONS(1862), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1862), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1862), + [aux_sym_escape_char_token1] = ACTIONS(1862), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1862), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1862), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1862), + [aux_sym_forward_agent_token1] = ACTIONS(1862), + [aux_sym_forward_x11_token1] = ACTIONS(1864), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1862), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1862), + [aux_sym_gateway_ports_token1] = ACTIONS(1862), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1862), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1862), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1862), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1862), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1862), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1862), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1862), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1862), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1862), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1862), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1862), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1862), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1862), + [aux_sym_host_key_alias_token1] = ACTIONS(1862), + [aux_sym_hostname_token1] = ACTIONS(1862), + [aux_sym_identities_only_token1] = ACTIONS(1862), + [aux_sym_identity_agent_token1] = ACTIONS(1862), + [aux_sym_identity_file_token1] = ACTIONS(1862), + [aux_sym_ignore_unknown_token1] = ACTIONS(1862), + [aux_sym_include_token1] = ACTIONS(1862), + [aux_sym_ip_qos_token1] = ACTIONS(1862), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1862), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1862), + [aux_sym_kex_algorithms_token1] = ACTIONS(1862), + [aux_sym_known_hosts_command_token1] = ACTIONS(1862), + [aux_sym_local_command_token1] = ACTIONS(1862), + [aux_sym_local_forward_token1] = ACTIONS(1862), + [aux_sym_log_level_token1] = ACTIONS(1862), + [aux_sym_log_verbose_token1] = ACTIONS(1862), + [aux_sym_macs_token1] = ACTIONS(1862), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1862), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1862), + [aux_sym_password_authentication_token1] = ACTIONS(1862), + [aux_sym_permit_local_command_token1] = ACTIONS(1862), + [aux_sym_permit_remote_open_token1] = ACTIONS(1862), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1862), + [aux_sym_port_token1] = ACTIONS(1862), + [aux_sym_preferred_authentications_token1] = ACTIONS(1862), + [aux_sym_protocol_token1] = ACTIONS(1862), + [aux_sym_proxy_command_token1] = ACTIONS(1862), + [aux_sym_proxy_jump_token1] = ACTIONS(1862), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1862), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1862), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1862), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1862), + [aux_sym_rekey_limit_token1] = ACTIONS(1862), + [aux_sym_remote_command_token1] = ACTIONS(1862), + [aux_sym_remote_forward_token1] = ACTIONS(1862), + [aux_sym_request_tty_token1] = ACTIONS(1862), + [aux_sym_required_rsa_size_token1] = ACTIONS(1862), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1862), + [aux_sym_security_key_provider_token1] = ACTIONS(1862), + [aux_sym_send_env_token1] = ACTIONS(1862), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1862), + [aux_sym_server_alive_interval_token1] = ACTIONS(1862), + [aux_sym_session_type_token1] = ACTIONS(1862), + [aux_sym_set_env_token1] = ACTIONS(1862), + [aux_sym_stdin_null_token1] = ACTIONS(1862), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1862), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1862), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1862), + [aux_sym_syslog_facility_token1] = ACTIONS(1862), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1862), + [aux_sym_keep_alive_token1] = ACTIONS(1862), + [aux_sym_tunnel_token1] = ACTIONS(1864), + [aux_sym_tunnel_device_token1] = ACTIONS(1862), + [aux_sym_update_host_keys_token1] = ACTIONS(1862), + [aux_sym_use_keychain_token1] = ACTIONS(1862), + [aux_sym_use_roaming_token1] = ACTIONS(1862), + [aux_sym_user_token1] = ACTIONS(1864), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1862), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1862), + [aux_sym_visual_host_key_token1] = ACTIONS(1862), + [aux_sym_xauth_location_token1] = ACTIONS(1862), }, [221] = { - [ts_builtin_sym_end] = ACTIONS(1863), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1865), - [anon_sym_DQUOTE] = ACTIONS(1867), - [aux_sym_match_token1] = ACTIONS(1863), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1863), - [aux_sym_address_family_token1] = ACTIONS(1863), - [aux_sym_batch_mode_token1] = ACTIONS(1863), - [aux_sym_bind_address_token1] = ACTIONS(1863), - [aux_sym_bind_interface_token1] = ACTIONS(1863), - [aux_sym_canonical_domains_token1] = ACTIONS(1863), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1863), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1863), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1863), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1863), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1863), - [aux_sym_certificate_file_token1] = ACTIONS(1863), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1863), - [aux_sym_check_host_ip_token1] = ACTIONS(1863), - [aux_sym_ciphers_token1] = ACTIONS(1863), - [aux_sym_cipher_token1] = ACTIONS(1865), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1863), - [aux_sym_compression_token1] = ACTIONS(1863), - [aux_sym_connection_attempts_token1] = ACTIONS(1863), - [aux_sym_connect_timeout_token1] = ACTIONS(1863), - [aux_sym_control_master_token1] = ACTIONS(1863), - [aux_sym_control_path_token1] = ACTIONS(1863), - [aux_sym_control_persist_token1] = ACTIONS(1863), - [aux_sym_dynamic_forward_token1] = ACTIONS(1863), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1863), - [aux_sym_escape_char_token1] = ACTIONS(1863), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1863), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1863), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1863), - [aux_sym_forward_agent_token1] = ACTIONS(1863), - [aux_sym_forward_x11_token1] = ACTIONS(1865), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1863), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1863), - [aux_sym_gateway_ports_token1] = ACTIONS(1863), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1863), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1863), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1863), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1863), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1863), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1863), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1863), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1863), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1863), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1863), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1863), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1863), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1863), - [aux_sym_host_key_alias_token1] = ACTIONS(1863), - [aux_sym_hostname_token1] = ACTIONS(1863), - [aux_sym_identities_only_token1] = ACTIONS(1863), - [aux_sym_identity_agent_token1] = ACTIONS(1863), - [aux_sym_identity_file_token1] = ACTIONS(1863), - [aux_sym_ignore_unknown_token1] = ACTIONS(1863), - [aux_sym_include_token1] = ACTIONS(1863), - [aux_sym_ip_qos_token1] = ACTIONS(1863), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1863), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1863), - [aux_sym_kex_algorithms_token1] = ACTIONS(1863), - [aux_sym_known_hosts_command_token1] = ACTIONS(1863), - [aux_sym_local_command_token1] = ACTIONS(1863), - [aux_sym_local_forward_token1] = ACTIONS(1863), - [aux_sym_log_level_token1] = ACTIONS(1863), - [aux_sym_log_verbose_token1] = ACTIONS(1863), - [aux_sym_macs_token1] = ACTIONS(1863), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1863), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1863), - [aux_sym_password_authentication_token1] = ACTIONS(1863), - [aux_sym_permit_local_command_token1] = ACTIONS(1863), - [aux_sym_permit_remote_open_token1] = ACTIONS(1863), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1863), - [aux_sym_port_token1] = ACTIONS(1863), - [aux_sym_preferred_authentications_token1] = ACTIONS(1863), - [aux_sym_protocol_token1] = ACTIONS(1863), - [aux_sym_proxy_command_token1] = ACTIONS(1863), - [aux_sym_proxy_jump_token1] = ACTIONS(1863), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1863), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1863), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1863), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1863), - [aux_sym_rekey_limit_token1] = ACTIONS(1863), - [aux_sym_remote_command_token1] = ACTIONS(1863), - [aux_sym_remote_forward_token1] = ACTIONS(1863), - [aux_sym_request_tty_token1] = ACTIONS(1863), - [aux_sym_required_rsa_size_token1] = ACTIONS(1863), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1863), - [aux_sym_security_key_provider_token1] = ACTIONS(1863), - [aux_sym_send_env_token1] = ACTIONS(1863), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1863), - [aux_sym_server_alive_interval_token1] = ACTIONS(1863), - [aux_sym_session_type_token1] = ACTIONS(1863), - [aux_sym_set_env_token1] = ACTIONS(1863), - [aux_sym_stdin_null_token1] = ACTIONS(1863), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1863), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1863), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1863), - [aux_sym_syslog_facility_token1] = ACTIONS(1863), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1863), - [aux_sym_keep_alive_token1] = ACTIONS(1863), - [aux_sym_tunnel_token1] = ACTIONS(1865), - [aux_sym_tunnel_device_token1] = ACTIONS(1863), - [aux_sym_update_host_keys_token1] = ACTIONS(1863), - [aux_sym_use_keychain_token1] = ACTIONS(1863), - [aux_sym_use_roaming_token1] = ACTIONS(1863), - [aux_sym_user_token1] = ACTIONS(1865), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1863), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1863), - [aux_sym_visual_host_key_token1] = ACTIONS(1863), - [aux_sym_xauth_location_token1] = ACTIONS(1863), + [ts_builtin_sym_end] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1870), + [anon_sym_DQUOTE] = ACTIONS(1872), + [aux_sym_match_token1] = ACTIONS(1868), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1868), + [aux_sym_address_family_token1] = ACTIONS(1868), + [aux_sym_batch_mode_token1] = ACTIONS(1868), + [aux_sym_bind_address_token1] = ACTIONS(1868), + [aux_sym_bind_interface_token1] = ACTIONS(1868), + [aux_sym_canonical_domains_token1] = ACTIONS(1868), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1868), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1868), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1868), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1868), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1868), + [aux_sym_certificate_file_token1] = ACTIONS(1868), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1868), + [aux_sym_check_host_ip_token1] = ACTIONS(1868), + [aux_sym_ciphers_token1] = ACTIONS(1868), + [aux_sym_cipher_token1] = ACTIONS(1870), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1868), + [aux_sym_compression_token1] = ACTIONS(1868), + [aux_sym_connection_attempts_token1] = ACTIONS(1868), + [aux_sym_connect_timeout_token1] = ACTIONS(1868), + [aux_sym_control_master_token1] = ACTIONS(1868), + [aux_sym_control_path_token1] = ACTIONS(1868), + [aux_sym_control_persist_token1] = ACTIONS(1868), + [aux_sym_dynamic_forward_token1] = ACTIONS(1868), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1868), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1868), + [aux_sym_escape_char_token1] = ACTIONS(1868), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1868), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1868), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1868), + [aux_sym_forward_agent_token1] = ACTIONS(1868), + [aux_sym_forward_x11_token1] = ACTIONS(1870), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1868), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1868), + [aux_sym_gateway_ports_token1] = ACTIONS(1868), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1868), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1868), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1868), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1868), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1868), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1868), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1868), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1868), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1868), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1868), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1868), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1868), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1868), + [aux_sym_host_key_alias_token1] = ACTIONS(1868), + [aux_sym_hostname_token1] = ACTIONS(1868), + [aux_sym_identities_only_token1] = ACTIONS(1868), + [aux_sym_identity_agent_token1] = ACTIONS(1868), + [aux_sym_identity_file_token1] = ACTIONS(1868), + [aux_sym_ignore_unknown_token1] = ACTIONS(1868), + [aux_sym_include_token1] = ACTIONS(1868), + [aux_sym_ip_qos_token1] = ACTIONS(1868), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1868), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1868), + [aux_sym_kex_algorithms_token1] = ACTIONS(1868), + [aux_sym_known_hosts_command_token1] = ACTIONS(1868), + [aux_sym_local_command_token1] = ACTIONS(1868), + [aux_sym_local_forward_token1] = ACTIONS(1868), + [aux_sym_log_level_token1] = ACTIONS(1868), + [aux_sym_log_verbose_token1] = ACTIONS(1868), + [aux_sym_macs_token1] = ACTIONS(1868), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1868), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1868), + [aux_sym_password_authentication_token1] = ACTIONS(1868), + [aux_sym_permit_local_command_token1] = ACTIONS(1868), + [aux_sym_permit_remote_open_token1] = ACTIONS(1868), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1868), + [aux_sym_port_token1] = ACTIONS(1868), + [aux_sym_preferred_authentications_token1] = ACTIONS(1868), + [aux_sym_protocol_token1] = ACTIONS(1868), + [aux_sym_proxy_command_token1] = ACTIONS(1868), + [aux_sym_proxy_jump_token1] = ACTIONS(1868), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1868), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1868), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1868), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1868), + [aux_sym_rekey_limit_token1] = ACTIONS(1868), + [aux_sym_remote_command_token1] = ACTIONS(1868), + [aux_sym_remote_forward_token1] = ACTIONS(1868), + [aux_sym_request_tty_token1] = ACTIONS(1868), + [aux_sym_required_rsa_size_token1] = ACTIONS(1868), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1868), + [aux_sym_security_key_provider_token1] = ACTIONS(1868), + [aux_sym_send_env_token1] = ACTIONS(1868), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1868), + [aux_sym_server_alive_interval_token1] = ACTIONS(1868), + [aux_sym_session_type_token1] = ACTIONS(1868), + [aux_sym_set_env_token1] = ACTIONS(1868), + [aux_sym_stdin_null_token1] = ACTIONS(1868), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1868), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1868), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1868), + [aux_sym_syslog_facility_token1] = ACTIONS(1868), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1868), + [aux_sym_keep_alive_token1] = ACTIONS(1868), + [aux_sym_tunnel_token1] = ACTIONS(1870), + [aux_sym_tunnel_device_token1] = ACTIONS(1868), + [aux_sym_update_host_keys_token1] = ACTIONS(1868), + [aux_sym_use_keychain_token1] = ACTIONS(1868), + [aux_sym_use_roaming_token1] = ACTIONS(1868), + [aux_sym_user_token1] = ACTIONS(1870), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1868), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1868), + [aux_sym_visual_host_key_token1] = ACTIONS(1868), + [aux_sym_xauth_location_token1] = ACTIONS(1868), }, [222] = { - [ts_builtin_sym_end] = ACTIONS(1869), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1873), - [aux_sym_match_token1] = ACTIONS(1869), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1869), - [aux_sym_address_family_token1] = ACTIONS(1869), - [aux_sym_batch_mode_token1] = ACTIONS(1869), - [aux_sym_bind_address_token1] = ACTIONS(1869), - [aux_sym_bind_interface_token1] = ACTIONS(1869), - [aux_sym_canonical_domains_token1] = ACTIONS(1869), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1869), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1869), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1869), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1869), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1869), - [aux_sym_certificate_file_token1] = ACTIONS(1869), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1869), - [aux_sym_check_host_ip_token1] = ACTIONS(1869), - [aux_sym_ciphers_token1] = ACTIONS(1869), - [aux_sym_cipher_token1] = ACTIONS(1871), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1869), - [aux_sym_compression_token1] = ACTIONS(1869), - [aux_sym_connection_attempts_token1] = ACTIONS(1869), - [aux_sym_connect_timeout_token1] = ACTIONS(1869), - [aux_sym_control_master_token1] = ACTIONS(1869), - [aux_sym_control_path_token1] = ACTIONS(1869), - [aux_sym_control_persist_token1] = ACTIONS(1869), - [aux_sym_dynamic_forward_token1] = ACTIONS(1869), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1869), - [aux_sym_escape_char_token1] = ACTIONS(1869), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1869), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1869), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1869), - [aux_sym_forward_agent_token1] = ACTIONS(1869), - [aux_sym_forward_x11_token1] = ACTIONS(1871), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1869), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1869), - [aux_sym_gateway_ports_token1] = ACTIONS(1869), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1869), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1869), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1869), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1869), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1869), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1869), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1869), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1869), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1869), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1869), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1869), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1869), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1869), - [aux_sym_host_key_alias_token1] = ACTIONS(1869), - [aux_sym_hostname_token1] = ACTIONS(1869), - [aux_sym_identities_only_token1] = ACTIONS(1869), - [aux_sym_identity_agent_token1] = ACTIONS(1869), - [aux_sym_identity_file_token1] = ACTIONS(1869), - [aux_sym_ignore_unknown_token1] = ACTIONS(1869), - [aux_sym_include_token1] = ACTIONS(1869), - [aux_sym_ip_qos_token1] = ACTIONS(1869), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1869), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1869), - [aux_sym_kex_algorithms_token1] = ACTIONS(1869), - [aux_sym_known_hosts_command_token1] = ACTIONS(1869), - [aux_sym_local_command_token1] = ACTIONS(1869), - [aux_sym_local_forward_token1] = ACTIONS(1869), - [aux_sym_log_level_token1] = ACTIONS(1869), - [aux_sym_log_verbose_token1] = ACTIONS(1869), - [aux_sym_macs_token1] = ACTIONS(1869), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1869), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1869), - [aux_sym_password_authentication_token1] = ACTIONS(1869), - [aux_sym_permit_local_command_token1] = ACTIONS(1869), - [aux_sym_permit_remote_open_token1] = ACTIONS(1869), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1869), - [aux_sym_port_token1] = ACTIONS(1869), - [aux_sym_preferred_authentications_token1] = ACTIONS(1869), - [aux_sym_protocol_token1] = ACTIONS(1869), - [aux_sym_proxy_command_token1] = ACTIONS(1869), - [aux_sym_proxy_jump_token1] = ACTIONS(1869), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1869), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1869), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1869), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1869), - [aux_sym_rekey_limit_token1] = ACTIONS(1869), - [aux_sym_remote_command_token1] = ACTIONS(1869), - [aux_sym_remote_forward_token1] = ACTIONS(1869), - [aux_sym_request_tty_token1] = ACTIONS(1869), - [aux_sym_required_rsa_size_token1] = ACTIONS(1869), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1869), - [aux_sym_security_key_provider_token1] = ACTIONS(1869), - [aux_sym_send_env_token1] = ACTIONS(1869), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1869), - [aux_sym_server_alive_interval_token1] = ACTIONS(1869), - [aux_sym_session_type_token1] = ACTIONS(1869), - [aux_sym_set_env_token1] = ACTIONS(1869), - [aux_sym_stdin_null_token1] = ACTIONS(1869), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1869), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1869), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1869), - [aux_sym_syslog_facility_token1] = ACTIONS(1869), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1869), - [aux_sym_keep_alive_token1] = ACTIONS(1869), - [aux_sym_tunnel_token1] = ACTIONS(1871), - [aux_sym_tunnel_device_token1] = ACTIONS(1869), - [aux_sym_update_host_keys_token1] = ACTIONS(1869), - [aux_sym_use_keychain_token1] = ACTIONS(1869), - [aux_sym_use_roaming_token1] = ACTIONS(1869), - [aux_sym_user_token1] = ACTIONS(1871), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1869), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1869), - [aux_sym_visual_host_key_token1] = ACTIONS(1869), - [aux_sym_xauth_location_token1] = ACTIONS(1869), + [ts_builtin_sym_end] = ACTIONS(1874), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1876), + [anon_sym_DQUOTE] = ACTIONS(1878), + [aux_sym_match_token1] = ACTIONS(1874), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1874), + [aux_sym_address_family_token1] = ACTIONS(1874), + [aux_sym_batch_mode_token1] = ACTIONS(1874), + [aux_sym_bind_address_token1] = ACTIONS(1874), + [aux_sym_bind_interface_token1] = ACTIONS(1874), + [aux_sym_canonical_domains_token1] = ACTIONS(1874), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1874), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1874), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1874), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1874), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1874), + [aux_sym_certificate_file_token1] = ACTIONS(1874), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1874), + [aux_sym_check_host_ip_token1] = ACTIONS(1874), + [aux_sym_ciphers_token1] = ACTIONS(1874), + [aux_sym_cipher_token1] = ACTIONS(1876), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1874), + [aux_sym_compression_token1] = ACTIONS(1874), + [aux_sym_connection_attempts_token1] = ACTIONS(1874), + [aux_sym_connect_timeout_token1] = ACTIONS(1874), + [aux_sym_control_master_token1] = ACTIONS(1874), + [aux_sym_control_path_token1] = ACTIONS(1874), + [aux_sym_control_persist_token1] = ACTIONS(1874), + [aux_sym_dynamic_forward_token1] = ACTIONS(1874), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1874), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1874), + [aux_sym_escape_char_token1] = ACTIONS(1874), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1874), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1874), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1874), + [aux_sym_forward_agent_token1] = ACTIONS(1874), + [aux_sym_forward_x11_token1] = ACTIONS(1876), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1874), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1874), + [aux_sym_gateway_ports_token1] = ACTIONS(1874), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1874), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1874), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1874), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1874), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1874), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1874), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1874), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1874), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1874), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1874), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1874), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1874), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1874), + [aux_sym_host_key_alias_token1] = ACTIONS(1874), + [aux_sym_hostname_token1] = ACTIONS(1874), + [aux_sym_identities_only_token1] = ACTIONS(1874), + [aux_sym_identity_agent_token1] = ACTIONS(1874), + [aux_sym_identity_file_token1] = ACTIONS(1874), + [aux_sym_ignore_unknown_token1] = ACTIONS(1874), + [aux_sym_include_token1] = ACTIONS(1874), + [aux_sym_ip_qos_token1] = ACTIONS(1874), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1874), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1874), + [aux_sym_kex_algorithms_token1] = ACTIONS(1874), + [aux_sym_known_hosts_command_token1] = ACTIONS(1874), + [aux_sym_local_command_token1] = ACTIONS(1874), + [aux_sym_local_forward_token1] = ACTIONS(1874), + [aux_sym_log_level_token1] = ACTIONS(1874), + [aux_sym_log_verbose_token1] = ACTIONS(1874), + [aux_sym_macs_token1] = ACTIONS(1874), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1874), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1874), + [aux_sym_password_authentication_token1] = ACTIONS(1874), + [aux_sym_permit_local_command_token1] = ACTIONS(1874), + [aux_sym_permit_remote_open_token1] = ACTIONS(1874), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1874), + [aux_sym_port_token1] = ACTIONS(1874), + [aux_sym_preferred_authentications_token1] = ACTIONS(1874), + [aux_sym_protocol_token1] = ACTIONS(1874), + [aux_sym_proxy_command_token1] = ACTIONS(1874), + [aux_sym_proxy_jump_token1] = ACTIONS(1874), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1874), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1874), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1874), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1874), + [aux_sym_rekey_limit_token1] = ACTIONS(1874), + [aux_sym_remote_command_token1] = ACTIONS(1874), + [aux_sym_remote_forward_token1] = ACTIONS(1874), + [aux_sym_request_tty_token1] = ACTIONS(1874), + [aux_sym_required_rsa_size_token1] = ACTIONS(1874), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1874), + [aux_sym_security_key_provider_token1] = ACTIONS(1874), + [aux_sym_send_env_token1] = ACTIONS(1874), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1874), + [aux_sym_server_alive_interval_token1] = ACTIONS(1874), + [aux_sym_session_type_token1] = ACTIONS(1874), + [aux_sym_set_env_token1] = ACTIONS(1874), + [aux_sym_stdin_null_token1] = ACTIONS(1874), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1874), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1874), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1874), + [aux_sym_syslog_facility_token1] = ACTIONS(1874), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1874), + [aux_sym_keep_alive_token1] = ACTIONS(1874), + [aux_sym_tunnel_token1] = ACTIONS(1876), + [aux_sym_tunnel_device_token1] = ACTIONS(1874), + [aux_sym_update_host_keys_token1] = ACTIONS(1874), + [aux_sym_use_keychain_token1] = ACTIONS(1874), + [aux_sym_use_roaming_token1] = ACTIONS(1874), + [aux_sym_user_token1] = ACTIONS(1876), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1874), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1874), + [aux_sym_visual_host_key_token1] = ACTIONS(1874), + [aux_sym_xauth_location_token1] = ACTIONS(1874), }, [223] = { - [ts_builtin_sym_end] = ACTIONS(1875), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1877), - [anon_sym_DQUOTE] = ACTIONS(1879), - [aux_sym_match_token1] = ACTIONS(1875), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1875), - [aux_sym_address_family_token1] = ACTIONS(1875), - [aux_sym_batch_mode_token1] = ACTIONS(1875), - [aux_sym_bind_address_token1] = ACTIONS(1875), - [aux_sym_bind_interface_token1] = ACTIONS(1875), - [aux_sym_canonical_domains_token1] = ACTIONS(1875), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1875), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1875), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1875), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1875), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1875), - [aux_sym_certificate_file_token1] = ACTIONS(1875), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1875), - [aux_sym_check_host_ip_token1] = ACTIONS(1875), - [aux_sym_ciphers_token1] = ACTIONS(1875), - [aux_sym_cipher_token1] = ACTIONS(1877), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1875), - [aux_sym_compression_token1] = ACTIONS(1875), - [aux_sym_connection_attempts_token1] = ACTIONS(1875), - [aux_sym_connect_timeout_token1] = ACTIONS(1875), - [aux_sym_control_master_token1] = ACTIONS(1875), - [aux_sym_control_path_token1] = ACTIONS(1875), - [aux_sym_control_persist_token1] = ACTIONS(1875), - [aux_sym_dynamic_forward_token1] = ACTIONS(1875), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1875), - [aux_sym_escape_char_token1] = ACTIONS(1875), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1875), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1875), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1875), - [aux_sym_forward_agent_token1] = ACTIONS(1875), - [aux_sym_forward_x11_token1] = ACTIONS(1877), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1875), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1875), - [aux_sym_gateway_ports_token1] = ACTIONS(1875), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1875), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1875), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1875), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1875), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1875), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1875), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1875), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1875), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1875), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1875), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1875), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1875), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1875), - [aux_sym_host_key_alias_token1] = ACTIONS(1875), - [aux_sym_hostname_token1] = ACTIONS(1875), - [aux_sym_identities_only_token1] = ACTIONS(1875), - [aux_sym_identity_agent_token1] = ACTIONS(1875), - [aux_sym_identity_file_token1] = ACTIONS(1875), - [aux_sym_ignore_unknown_token1] = ACTIONS(1875), - [aux_sym_include_token1] = ACTIONS(1875), - [aux_sym_ip_qos_token1] = ACTIONS(1875), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1875), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1875), - [aux_sym_kex_algorithms_token1] = ACTIONS(1875), - [aux_sym_known_hosts_command_token1] = ACTIONS(1875), - [aux_sym_local_command_token1] = ACTIONS(1875), - [aux_sym_local_forward_token1] = ACTIONS(1875), - [aux_sym_log_level_token1] = ACTIONS(1875), - [aux_sym_log_verbose_token1] = ACTIONS(1875), - [aux_sym_macs_token1] = ACTIONS(1875), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1875), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1875), - [aux_sym_password_authentication_token1] = ACTIONS(1875), - [aux_sym_permit_local_command_token1] = ACTIONS(1875), - [aux_sym_permit_remote_open_token1] = ACTIONS(1875), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1875), - [aux_sym_port_token1] = ACTIONS(1875), - [aux_sym_preferred_authentications_token1] = ACTIONS(1875), - [aux_sym_protocol_token1] = ACTIONS(1875), - [aux_sym_proxy_command_token1] = ACTIONS(1875), - [aux_sym_proxy_jump_token1] = ACTIONS(1875), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1875), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1875), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1875), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1875), - [aux_sym_rekey_limit_token1] = ACTIONS(1875), - [aux_sym_remote_command_token1] = ACTIONS(1875), - [aux_sym_remote_forward_token1] = ACTIONS(1875), - [aux_sym_request_tty_token1] = ACTIONS(1875), - [aux_sym_required_rsa_size_token1] = ACTIONS(1875), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1875), - [aux_sym_security_key_provider_token1] = ACTIONS(1875), - [aux_sym_send_env_token1] = ACTIONS(1875), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1875), - [aux_sym_server_alive_interval_token1] = ACTIONS(1875), - [aux_sym_session_type_token1] = ACTIONS(1875), - [aux_sym_set_env_token1] = ACTIONS(1875), - [aux_sym_stdin_null_token1] = ACTIONS(1875), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1875), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1875), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1875), - [aux_sym_syslog_facility_token1] = ACTIONS(1875), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1875), - [aux_sym_keep_alive_token1] = ACTIONS(1875), - [aux_sym_tunnel_token1] = ACTIONS(1877), - [aux_sym_tunnel_device_token1] = ACTIONS(1875), - [aux_sym_update_host_keys_token1] = ACTIONS(1875), - [aux_sym_use_keychain_token1] = ACTIONS(1875), - [aux_sym_use_roaming_token1] = ACTIONS(1875), - [aux_sym_user_token1] = ACTIONS(1877), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1875), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1875), - [aux_sym_visual_host_key_token1] = ACTIONS(1875), - [aux_sym_xauth_location_token1] = ACTIONS(1875), + [ts_builtin_sym_end] = ACTIONS(1880), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1884), + [aux_sym_match_token1] = ACTIONS(1880), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1880), + [aux_sym_address_family_token1] = ACTIONS(1880), + [aux_sym_batch_mode_token1] = ACTIONS(1880), + [aux_sym_bind_address_token1] = ACTIONS(1880), + [aux_sym_bind_interface_token1] = ACTIONS(1880), + [aux_sym_canonical_domains_token1] = ACTIONS(1880), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1880), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1880), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1880), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1880), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1880), + [aux_sym_certificate_file_token1] = ACTIONS(1880), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1880), + [aux_sym_check_host_ip_token1] = ACTIONS(1880), + [aux_sym_ciphers_token1] = ACTIONS(1880), + [aux_sym_cipher_token1] = ACTIONS(1882), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1880), + [aux_sym_compression_token1] = ACTIONS(1880), + [aux_sym_connection_attempts_token1] = ACTIONS(1880), + [aux_sym_connect_timeout_token1] = ACTIONS(1880), + [aux_sym_control_master_token1] = ACTIONS(1880), + [aux_sym_control_path_token1] = ACTIONS(1880), + [aux_sym_control_persist_token1] = ACTIONS(1880), + [aux_sym_dynamic_forward_token1] = ACTIONS(1880), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1880), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1880), + [aux_sym_escape_char_token1] = ACTIONS(1880), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1880), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1880), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1880), + [aux_sym_forward_agent_token1] = ACTIONS(1880), + [aux_sym_forward_x11_token1] = ACTIONS(1882), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1880), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1880), + [aux_sym_gateway_ports_token1] = ACTIONS(1880), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1880), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1880), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1880), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1880), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1880), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1880), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1880), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1880), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1880), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1880), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1880), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1880), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1880), + [aux_sym_host_key_alias_token1] = ACTIONS(1880), + [aux_sym_hostname_token1] = ACTIONS(1880), + [aux_sym_identities_only_token1] = ACTIONS(1880), + [aux_sym_identity_agent_token1] = ACTIONS(1880), + [aux_sym_identity_file_token1] = ACTIONS(1880), + [aux_sym_ignore_unknown_token1] = ACTIONS(1880), + [aux_sym_include_token1] = ACTIONS(1880), + [aux_sym_ip_qos_token1] = ACTIONS(1880), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1880), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1880), + [aux_sym_kex_algorithms_token1] = ACTIONS(1880), + [aux_sym_known_hosts_command_token1] = ACTIONS(1880), + [aux_sym_local_command_token1] = ACTIONS(1880), + [aux_sym_local_forward_token1] = ACTIONS(1880), + [aux_sym_log_level_token1] = ACTIONS(1880), + [aux_sym_log_verbose_token1] = ACTIONS(1880), + [aux_sym_macs_token1] = ACTIONS(1880), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1880), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1880), + [aux_sym_password_authentication_token1] = ACTIONS(1880), + [aux_sym_permit_local_command_token1] = ACTIONS(1880), + [aux_sym_permit_remote_open_token1] = ACTIONS(1880), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1880), + [aux_sym_port_token1] = ACTIONS(1880), + [aux_sym_preferred_authentications_token1] = ACTIONS(1880), + [aux_sym_protocol_token1] = ACTIONS(1880), + [aux_sym_proxy_command_token1] = ACTIONS(1880), + [aux_sym_proxy_jump_token1] = ACTIONS(1880), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1880), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1880), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1880), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1880), + [aux_sym_rekey_limit_token1] = ACTIONS(1880), + [aux_sym_remote_command_token1] = ACTIONS(1880), + [aux_sym_remote_forward_token1] = ACTIONS(1880), + [aux_sym_request_tty_token1] = ACTIONS(1880), + [aux_sym_required_rsa_size_token1] = ACTIONS(1880), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1880), + [aux_sym_security_key_provider_token1] = ACTIONS(1880), + [aux_sym_send_env_token1] = ACTIONS(1880), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1880), + [aux_sym_server_alive_interval_token1] = ACTIONS(1880), + [aux_sym_session_type_token1] = ACTIONS(1880), + [aux_sym_set_env_token1] = ACTIONS(1880), + [aux_sym_stdin_null_token1] = ACTIONS(1880), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1880), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1880), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1880), + [aux_sym_syslog_facility_token1] = ACTIONS(1880), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1880), + [aux_sym_keep_alive_token1] = ACTIONS(1880), + [aux_sym_tunnel_token1] = ACTIONS(1882), + [aux_sym_tunnel_device_token1] = ACTIONS(1880), + [aux_sym_update_host_keys_token1] = ACTIONS(1880), + [aux_sym_use_keychain_token1] = ACTIONS(1880), + [aux_sym_use_roaming_token1] = ACTIONS(1880), + [aux_sym_user_token1] = ACTIONS(1882), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1880), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1880), + [aux_sym_visual_host_key_token1] = ACTIONS(1880), + [aux_sym_xauth_location_token1] = ACTIONS(1880), }, [224] = { - [ts_builtin_sym_end] = ACTIONS(1881), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1883), - [anon_sym_DQUOTE] = ACTIONS(1885), - [aux_sym_match_token1] = ACTIONS(1881), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1881), - [aux_sym_address_family_token1] = ACTIONS(1881), - [aux_sym_batch_mode_token1] = ACTIONS(1881), - [aux_sym_bind_address_token1] = ACTIONS(1881), - [aux_sym_bind_interface_token1] = ACTIONS(1881), - [aux_sym_canonical_domains_token1] = ACTIONS(1881), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1881), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1881), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1881), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1881), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1881), - [aux_sym_certificate_file_token1] = ACTIONS(1881), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1881), - [aux_sym_check_host_ip_token1] = ACTIONS(1881), - [aux_sym_ciphers_token1] = ACTIONS(1881), - [aux_sym_cipher_token1] = ACTIONS(1883), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1881), - [aux_sym_compression_token1] = ACTIONS(1881), - [aux_sym_connection_attempts_token1] = ACTIONS(1881), - [aux_sym_connect_timeout_token1] = ACTIONS(1881), - [aux_sym_control_master_token1] = ACTIONS(1881), - [aux_sym_control_path_token1] = ACTIONS(1881), - [aux_sym_control_persist_token1] = ACTIONS(1881), - [aux_sym_dynamic_forward_token1] = ACTIONS(1881), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1881), - [aux_sym_escape_char_token1] = ACTIONS(1881), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1881), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1881), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1881), - [aux_sym_forward_agent_token1] = ACTIONS(1881), - [aux_sym_forward_x11_token1] = ACTIONS(1883), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1881), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1881), - [aux_sym_gateway_ports_token1] = ACTIONS(1881), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1881), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1881), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1881), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1881), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1881), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1881), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1881), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1881), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1881), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1881), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1881), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1881), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1881), - [aux_sym_host_key_alias_token1] = ACTIONS(1881), - [aux_sym_hostname_token1] = ACTIONS(1881), - [aux_sym_identities_only_token1] = ACTIONS(1881), - [aux_sym_identity_agent_token1] = ACTIONS(1881), - [aux_sym_identity_file_token1] = ACTIONS(1881), - [aux_sym_ignore_unknown_token1] = ACTIONS(1881), - [aux_sym_include_token1] = ACTIONS(1881), - [aux_sym_ip_qos_token1] = ACTIONS(1881), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1881), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1881), - [aux_sym_kex_algorithms_token1] = ACTIONS(1881), - [aux_sym_known_hosts_command_token1] = ACTIONS(1881), - [aux_sym_local_command_token1] = ACTIONS(1881), - [aux_sym_local_forward_token1] = ACTIONS(1881), - [aux_sym_log_level_token1] = ACTIONS(1881), - [aux_sym_log_verbose_token1] = ACTIONS(1881), - [aux_sym_macs_token1] = ACTIONS(1881), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1881), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1881), - [aux_sym_password_authentication_token1] = ACTIONS(1881), - [aux_sym_permit_local_command_token1] = ACTIONS(1881), - [aux_sym_permit_remote_open_token1] = ACTIONS(1881), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1881), - [aux_sym_port_token1] = ACTIONS(1881), - [aux_sym_preferred_authentications_token1] = ACTIONS(1881), - [aux_sym_protocol_token1] = ACTIONS(1881), - [aux_sym_proxy_command_token1] = ACTIONS(1881), - [aux_sym_proxy_jump_token1] = ACTIONS(1881), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1881), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1881), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1881), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1881), - [aux_sym_rekey_limit_token1] = ACTIONS(1881), - [aux_sym_remote_command_token1] = ACTIONS(1881), - [aux_sym_remote_forward_token1] = ACTIONS(1881), - [aux_sym_request_tty_token1] = ACTIONS(1881), - [aux_sym_required_rsa_size_token1] = ACTIONS(1881), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1881), - [aux_sym_security_key_provider_token1] = ACTIONS(1881), - [aux_sym_send_env_token1] = ACTIONS(1881), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1881), - [aux_sym_server_alive_interval_token1] = ACTIONS(1881), - [aux_sym_session_type_token1] = ACTIONS(1881), - [aux_sym_set_env_token1] = ACTIONS(1881), - [aux_sym_stdin_null_token1] = ACTIONS(1881), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1881), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1881), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1881), - [aux_sym_syslog_facility_token1] = ACTIONS(1881), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1881), - [aux_sym_keep_alive_token1] = ACTIONS(1881), - [aux_sym_tunnel_token1] = ACTIONS(1883), - [aux_sym_tunnel_device_token1] = ACTIONS(1881), - [aux_sym_update_host_keys_token1] = ACTIONS(1881), - [aux_sym_use_keychain_token1] = ACTIONS(1881), - [aux_sym_use_roaming_token1] = ACTIONS(1881), - [aux_sym_user_token1] = ACTIONS(1883), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1881), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1881), - [aux_sym_visual_host_key_token1] = ACTIONS(1881), - [aux_sym_xauth_location_token1] = ACTIONS(1881), + [ts_builtin_sym_end] = ACTIONS(1886), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1890), + [aux_sym_match_token1] = ACTIONS(1886), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1886), + [aux_sym_address_family_token1] = ACTIONS(1886), + [aux_sym_batch_mode_token1] = ACTIONS(1886), + [aux_sym_bind_address_token1] = ACTIONS(1886), + [aux_sym_bind_interface_token1] = ACTIONS(1886), + [aux_sym_canonical_domains_token1] = ACTIONS(1886), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1886), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1886), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1886), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1886), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1886), + [aux_sym_certificate_file_token1] = ACTIONS(1886), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1886), + [aux_sym_check_host_ip_token1] = ACTIONS(1886), + [aux_sym_ciphers_token1] = ACTIONS(1886), + [aux_sym_cipher_token1] = ACTIONS(1888), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1886), + [aux_sym_compression_token1] = ACTIONS(1886), + [aux_sym_connection_attempts_token1] = ACTIONS(1886), + [aux_sym_connect_timeout_token1] = ACTIONS(1886), + [aux_sym_control_master_token1] = ACTIONS(1886), + [aux_sym_control_path_token1] = ACTIONS(1886), + [aux_sym_control_persist_token1] = ACTIONS(1886), + [aux_sym_dynamic_forward_token1] = ACTIONS(1886), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1886), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1886), + [aux_sym_escape_char_token1] = ACTIONS(1886), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1886), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1886), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1886), + [aux_sym_forward_agent_token1] = ACTIONS(1886), + [aux_sym_forward_x11_token1] = ACTIONS(1888), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1886), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1886), + [aux_sym_gateway_ports_token1] = ACTIONS(1886), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1886), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1886), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1886), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1886), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1886), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1886), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1886), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1886), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1886), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1886), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1886), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1886), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1886), + [aux_sym_host_key_alias_token1] = ACTIONS(1886), + [aux_sym_hostname_token1] = ACTIONS(1886), + [aux_sym_identities_only_token1] = ACTIONS(1886), + [aux_sym_identity_agent_token1] = ACTIONS(1886), + [aux_sym_identity_file_token1] = ACTIONS(1886), + [aux_sym_ignore_unknown_token1] = ACTIONS(1886), + [aux_sym_include_token1] = ACTIONS(1886), + [aux_sym_ip_qos_token1] = ACTIONS(1886), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1886), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1886), + [aux_sym_kex_algorithms_token1] = ACTIONS(1886), + [aux_sym_known_hosts_command_token1] = ACTIONS(1886), + [aux_sym_local_command_token1] = ACTIONS(1886), + [aux_sym_local_forward_token1] = ACTIONS(1886), + [aux_sym_log_level_token1] = ACTIONS(1886), + [aux_sym_log_verbose_token1] = ACTIONS(1886), + [aux_sym_macs_token1] = ACTIONS(1886), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1886), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1886), + [aux_sym_password_authentication_token1] = ACTIONS(1886), + [aux_sym_permit_local_command_token1] = ACTIONS(1886), + [aux_sym_permit_remote_open_token1] = ACTIONS(1886), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1886), + [aux_sym_port_token1] = ACTIONS(1886), + [aux_sym_preferred_authentications_token1] = ACTIONS(1886), + [aux_sym_protocol_token1] = ACTIONS(1886), + [aux_sym_proxy_command_token1] = ACTIONS(1886), + [aux_sym_proxy_jump_token1] = ACTIONS(1886), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1886), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1886), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1886), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1886), + [aux_sym_rekey_limit_token1] = ACTIONS(1886), + [aux_sym_remote_command_token1] = ACTIONS(1886), + [aux_sym_remote_forward_token1] = ACTIONS(1886), + [aux_sym_request_tty_token1] = ACTIONS(1886), + [aux_sym_required_rsa_size_token1] = ACTIONS(1886), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1886), + [aux_sym_security_key_provider_token1] = ACTIONS(1886), + [aux_sym_send_env_token1] = ACTIONS(1886), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1886), + [aux_sym_server_alive_interval_token1] = ACTIONS(1886), + [aux_sym_session_type_token1] = ACTIONS(1886), + [aux_sym_set_env_token1] = ACTIONS(1886), + [aux_sym_stdin_null_token1] = ACTIONS(1886), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1886), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1886), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1886), + [aux_sym_syslog_facility_token1] = ACTIONS(1886), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1886), + [aux_sym_keep_alive_token1] = ACTIONS(1886), + [aux_sym_tunnel_token1] = ACTIONS(1888), + [aux_sym_tunnel_device_token1] = ACTIONS(1886), + [aux_sym_update_host_keys_token1] = ACTIONS(1886), + [aux_sym_use_keychain_token1] = ACTIONS(1886), + [aux_sym_use_roaming_token1] = ACTIONS(1886), + [aux_sym_user_token1] = ACTIONS(1888), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1886), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1886), + [aux_sym_visual_host_key_token1] = ACTIONS(1886), + [aux_sym_xauth_location_token1] = ACTIONS(1886), }, [225] = { - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1887), - [aux_sym_match_token1] = ACTIONS(1887), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1887), - [aux_sym_address_family_token1] = ACTIONS(1887), - [aux_sym_batch_mode_token1] = ACTIONS(1887), - [aux_sym_bind_address_token1] = ACTIONS(1887), - [aux_sym_bind_interface_token1] = ACTIONS(1887), - [aux_sym_canonical_domains_token1] = ACTIONS(1887), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1887), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1887), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1887), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1887), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1887), - [aux_sym_certificate_file_token1] = ACTIONS(1887), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1887), - [aux_sym_check_host_ip_token1] = ACTIONS(1887), - [aux_sym_ciphers_token1] = ACTIONS(1887), - [aux_sym_cipher_token1] = ACTIONS(1889), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1887), - [aux_sym_compression_token1] = ACTIONS(1887), - [aux_sym_connection_attempts_token1] = ACTIONS(1887), - [aux_sym_connect_timeout_token1] = ACTIONS(1887), - [aux_sym_control_master_token1] = ACTIONS(1887), - [aux_sym_control_path_token1] = ACTIONS(1887), - [aux_sym_control_persist_token1] = ACTIONS(1887), - [aux_sym_dynamic_forward_token1] = ACTIONS(1887), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1887), - [aux_sym_escape_char_token1] = ACTIONS(1887), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1887), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1887), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1887), - [aux_sym_forward_agent_token1] = ACTIONS(1887), - [aux_sym_forward_x11_token1] = ACTIONS(1889), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1887), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1887), - [aux_sym_gateway_ports_token1] = ACTIONS(1887), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1887), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1887), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1887), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1887), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1887), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1887), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1887), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1887), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1887), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1887), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1887), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1887), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1887), - [aux_sym_host_key_alias_token1] = ACTIONS(1887), - [aux_sym_hostname_token1] = ACTIONS(1887), - [aux_sym_identities_only_token1] = ACTIONS(1887), - [aux_sym_identity_agent_token1] = ACTIONS(1887), - [aux_sym_identity_file_token1] = ACTIONS(1887), - [aux_sym_ignore_unknown_token1] = ACTIONS(1887), - [aux_sym_include_token1] = ACTIONS(1887), - [aux_sym_ip_qos_token1] = ACTIONS(1887), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1887), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1887), - [aux_sym_kex_algorithms_token1] = ACTIONS(1887), - [aux_sym_known_hosts_command_token1] = ACTIONS(1887), - [aux_sym_local_command_token1] = ACTIONS(1887), - [aux_sym_local_forward_token1] = ACTIONS(1887), - [aux_sym_log_level_token1] = ACTIONS(1887), - [aux_sym_log_verbose_token1] = ACTIONS(1887), - [aux_sym_macs_token1] = ACTIONS(1887), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1887), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1887), - [aux_sym_password_authentication_token1] = ACTIONS(1887), - [aux_sym_permit_local_command_token1] = ACTIONS(1887), - [aux_sym_permit_remote_open_token1] = ACTIONS(1887), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1887), - [aux_sym_port_token1] = ACTIONS(1887), - [aux_sym_preferred_authentications_token1] = ACTIONS(1887), - [aux_sym_protocol_token1] = ACTIONS(1887), - [aux_sym_proxy_command_token1] = ACTIONS(1887), - [aux_sym_proxy_jump_token1] = ACTIONS(1887), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1887), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1887), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1887), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1887), - [aux_sym_rekey_limit_token1] = ACTIONS(1887), - [aux_sym_remote_command_token1] = ACTIONS(1887), - [aux_sym_remote_forward_token1] = ACTIONS(1887), - [aux_sym_request_tty_token1] = ACTIONS(1887), - [aux_sym_required_rsa_size_token1] = ACTIONS(1887), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1887), - [aux_sym_security_key_provider_token1] = ACTIONS(1887), - [aux_sym_send_env_token1] = ACTIONS(1887), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1887), - [aux_sym_server_alive_interval_token1] = ACTIONS(1887), - [aux_sym_session_type_token1] = ACTIONS(1887), - [aux_sym_set_env_token1] = ACTIONS(1887), - [aux_sym_stdin_null_token1] = ACTIONS(1887), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1887), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1887), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1887), - [aux_sym_syslog_facility_token1] = ACTIONS(1887), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1887), - [aux_sym_keep_alive_token1] = ACTIONS(1887), - [aux_sym_tunnel_token1] = ACTIONS(1889), - [aux_sym_tunnel_device_token1] = ACTIONS(1887), - [aux_sym_update_host_keys_token1] = ACTIONS(1887), - [aux_sym_use_keychain_token1] = ACTIONS(1887), - [aux_sym_use_roaming_token1] = ACTIONS(1887), - [aux_sym_user_token1] = ACTIONS(1889), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1887), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1887), - [aux_sym_visual_host_key_token1] = ACTIONS(1887), - [aux_sym_xauth_location_token1] = ACTIONS(1887), + [ts_builtin_sym_end] = ACTIONS(1892), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1896), + [aux_sym_match_token1] = ACTIONS(1892), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1892), + [aux_sym_address_family_token1] = ACTIONS(1892), + [aux_sym_batch_mode_token1] = ACTIONS(1892), + [aux_sym_bind_address_token1] = ACTIONS(1892), + [aux_sym_bind_interface_token1] = ACTIONS(1892), + [aux_sym_canonical_domains_token1] = ACTIONS(1892), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1892), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1892), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1892), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1892), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1892), + [aux_sym_certificate_file_token1] = ACTIONS(1892), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1892), + [aux_sym_check_host_ip_token1] = ACTIONS(1892), + [aux_sym_ciphers_token1] = ACTIONS(1892), + [aux_sym_cipher_token1] = ACTIONS(1894), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1892), + [aux_sym_compression_token1] = ACTIONS(1892), + [aux_sym_connection_attempts_token1] = ACTIONS(1892), + [aux_sym_connect_timeout_token1] = ACTIONS(1892), + [aux_sym_control_master_token1] = ACTIONS(1892), + [aux_sym_control_path_token1] = ACTIONS(1892), + [aux_sym_control_persist_token1] = ACTIONS(1892), + [aux_sym_dynamic_forward_token1] = ACTIONS(1892), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1892), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1892), + [aux_sym_escape_char_token1] = ACTIONS(1892), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1892), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1892), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1892), + [aux_sym_forward_agent_token1] = ACTIONS(1892), + [aux_sym_forward_x11_token1] = ACTIONS(1894), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1892), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1892), + [aux_sym_gateway_ports_token1] = ACTIONS(1892), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1892), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1892), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1892), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1892), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1892), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1892), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1892), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1892), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1892), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1892), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1892), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1892), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1892), + [aux_sym_host_key_alias_token1] = ACTIONS(1892), + [aux_sym_hostname_token1] = ACTIONS(1892), + [aux_sym_identities_only_token1] = ACTIONS(1892), + [aux_sym_identity_agent_token1] = ACTIONS(1892), + [aux_sym_identity_file_token1] = ACTIONS(1892), + [aux_sym_ignore_unknown_token1] = ACTIONS(1892), + [aux_sym_include_token1] = ACTIONS(1892), + [aux_sym_ip_qos_token1] = ACTIONS(1892), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1892), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1892), + [aux_sym_kex_algorithms_token1] = ACTIONS(1892), + [aux_sym_known_hosts_command_token1] = ACTIONS(1892), + [aux_sym_local_command_token1] = ACTIONS(1892), + [aux_sym_local_forward_token1] = ACTIONS(1892), + [aux_sym_log_level_token1] = ACTIONS(1892), + [aux_sym_log_verbose_token1] = ACTIONS(1892), + [aux_sym_macs_token1] = ACTIONS(1892), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1892), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1892), + [aux_sym_password_authentication_token1] = ACTIONS(1892), + [aux_sym_permit_local_command_token1] = ACTIONS(1892), + [aux_sym_permit_remote_open_token1] = ACTIONS(1892), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1892), + [aux_sym_port_token1] = ACTIONS(1892), + [aux_sym_preferred_authentications_token1] = ACTIONS(1892), + [aux_sym_protocol_token1] = ACTIONS(1892), + [aux_sym_proxy_command_token1] = ACTIONS(1892), + [aux_sym_proxy_jump_token1] = ACTIONS(1892), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1892), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1892), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1892), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1892), + [aux_sym_rekey_limit_token1] = ACTIONS(1892), + [aux_sym_remote_command_token1] = ACTIONS(1892), + [aux_sym_remote_forward_token1] = ACTIONS(1892), + [aux_sym_request_tty_token1] = ACTIONS(1892), + [aux_sym_required_rsa_size_token1] = ACTIONS(1892), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1892), + [aux_sym_security_key_provider_token1] = ACTIONS(1892), + [aux_sym_send_env_token1] = ACTIONS(1892), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1892), + [aux_sym_server_alive_interval_token1] = ACTIONS(1892), + [aux_sym_session_type_token1] = ACTIONS(1892), + [aux_sym_set_env_token1] = ACTIONS(1892), + [aux_sym_stdin_null_token1] = ACTIONS(1892), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1892), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1892), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1892), + [aux_sym_syslog_facility_token1] = ACTIONS(1892), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1892), + [aux_sym_keep_alive_token1] = ACTIONS(1892), + [aux_sym_tunnel_token1] = ACTIONS(1894), + [aux_sym_tunnel_device_token1] = ACTIONS(1892), + [aux_sym_update_host_keys_token1] = ACTIONS(1892), + [aux_sym_use_keychain_token1] = ACTIONS(1892), + [aux_sym_use_roaming_token1] = ACTIONS(1892), + [aux_sym_user_token1] = ACTIONS(1894), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1892), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1892), + [aux_sym_visual_host_key_token1] = ACTIONS(1892), + [aux_sym_xauth_location_token1] = ACTIONS(1892), }, [226] = { - [ts_builtin_sym_end] = ACTIONS(1891), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1893), - [anon_sym_DQUOTE] = ACTIONS(1895), - [aux_sym_match_token1] = ACTIONS(1891), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1891), - [aux_sym_address_family_token1] = ACTIONS(1891), - [aux_sym_batch_mode_token1] = ACTIONS(1891), - [aux_sym_bind_address_token1] = ACTIONS(1891), - [aux_sym_bind_interface_token1] = ACTIONS(1891), - [aux_sym_canonical_domains_token1] = ACTIONS(1891), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1891), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1891), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1891), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1891), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1891), - [aux_sym_certificate_file_token1] = ACTIONS(1891), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1891), - [aux_sym_check_host_ip_token1] = ACTIONS(1891), - [aux_sym_ciphers_token1] = ACTIONS(1891), - [aux_sym_cipher_token1] = ACTIONS(1893), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1891), - [aux_sym_compression_token1] = ACTIONS(1891), - [aux_sym_connection_attempts_token1] = ACTIONS(1891), - [aux_sym_connect_timeout_token1] = ACTIONS(1891), - [aux_sym_control_master_token1] = ACTIONS(1891), - [aux_sym_control_path_token1] = ACTIONS(1891), - [aux_sym_control_persist_token1] = ACTIONS(1891), - [aux_sym_dynamic_forward_token1] = ACTIONS(1891), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1891), - [aux_sym_escape_char_token1] = ACTIONS(1891), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1891), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1891), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1891), - [aux_sym_forward_agent_token1] = ACTIONS(1891), - [aux_sym_forward_x11_token1] = ACTIONS(1893), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1891), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1891), - [aux_sym_gateway_ports_token1] = ACTIONS(1891), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1891), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1891), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1891), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1891), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1891), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1891), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1891), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1891), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1891), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1891), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1891), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1891), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1891), - [aux_sym_host_key_alias_token1] = ACTIONS(1891), - [aux_sym_hostname_token1] = ACTIONS(1891), - [aux_sym_identities_only_token1] = ACTIONS(1891), - [aux_sym_identity_agent_token1] = ACTIONS(1891), - [aux_sym_identity_file_token1] = ACTIONS(1891), - [aux_sym_ignore_unknown_token1] = ACTIONS(1891), - [aux_sym_include_token1] = ACTIONS(1891), - [aux_sym_ip_qos_token1] = ACTIONS(1891), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1891), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1891), - [aux_sym_kex_algorithms_token1] = ACTIONS(1891), - [aux_sym_known_hosts_command_token1] = ACTIONS(1891), - [aux_sym_local_command_token1] = ACTIONS(1891), - [aux_sym_local_forward_token1] = ACTIONS(1891), - [aux_sym_log_level_token1] = ACTIONS(1891), - [aux_sym_log_verbose_token1] = ACTIONS(1891), - [aux_sym_macs_token1] = ACTIONS(1891), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1891), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1891), - [aux_sym_password_authentication_token1] = ACTIONS(1891), - [aux_sym_permit_local_command_token1] = ACTIONS(1891), - [aux_sym_permit_remote_open_token1] = ACTIONS(1891), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1891), - [aux_sym_port_token1] = ACTIONS(1891), - [aux_sym_preferred_authentications_token1] = ACTIONS(1891), - [aux_sym_protocol_token1] = ACTIONS(1891), - [aux_sym_proxy_command_token1] = ACTIONS(1891), - [aux_sym_proxy_jump_token1] = ACTIONS(1891), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1891), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1891), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1891), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1891), - [aux_sym_rekey_limit_token1] = ACTIONS(1891), - [aux_sym_remote_command_token1] = ACTIONS(1891), - [aux_sym_remote_forward_token1] = ACTIONS(1891), - [aux_sym_request_tty_token1] = ACTIONS(1891), - [aux_sym_required_rsa_size_token1] = ACTIONS(1891), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1891), - [aux_sym_security_key_provider_token1] = ACTIONS(1891), - [aux_sym_send_env_token1] = ACTIONS(1891), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1891), - [aux_sym_server_alive_interval_token1] = ACTIONS(1891), - [aux_sym_session_type_token1] = ACTIONS(1891), - [aux_sym_set_env_token1] = ACTIONS(1891), - [aux_sym_stdin_null_token1] = ACTIONS(1891), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1891), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1891), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1891), - [aux_sym_syslog_facility_token1] = ACTIONS(1891), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1891), - [aux_sym_keep_alive_token1] = ACTIONS(1891), - [aux_sym_tunnel_token1] = ACTIONS(1893), - [aux_sym_tunnel_device_token1] = ACTIONS(1891), - [aux_sym_update_host_keys_token1] = ACTIONS(1891), - [aux_sym_use_keychain_token1] = ACTIONS(1891), - [aux_sym_use_roaming_token1] = ACTIONS(1891), - [aux_sym_user_token1] = ACTIONS(1893), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1891), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1891), - [aux_sym_visual_host_key_token1] = ACTIONS(1891), - [aux_sym_xauth_location_token1] = ACTIONS(1891), + [ts_builtin_sym_end] = ACTIONS(1898), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1900), + [anon_sym_DQUOTE] = ACTIONS(1902), + [aux_sym_match_token1] = ACTIONS(1898), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1898), + [aux_sym_address_family_token1] = ACTIONS(1898), + [aux_sym_batch_mode_token1] = ACTIONS(1898), + [aux_sym_bind_address_token1] = ACTIONS(1898), + [aux_sym_bind_interface_token1] = ACTIONS(1898), + [aux_sym_canonical_domains_token1] = ACTIONS(1898), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1898), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1898), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1898), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1898), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1898), + [aux_sym_certificate_file_token1] = ACTIONS(1898), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1898), + [aux_sym_check_host_ip_token1] = ACTIONS(1898), + [aux_sym_ciphers_token1] = ACTIONS(1898), + [aux_sym_cipher_token1] = ACTIONS(1900), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1898), + [aux_sym_compression_token1] = ACTIONS(1898), + [aux_sym_connection_attempts_token1] = ACTIONS(1898), + [aux_sym_connect_timeout_token1] = ACTIONS(1898), + [aux_sym_control_master_token1] = ACTIONS(1898), + [aux_sym_control_path_token1] = ACTIONS(1898), + [aux_sym_control_persist_token1] = ACTIONS(1898), + [aux_sym_dynamic_forward_token1] = ACTIONS(1898), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1898), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1898), + [aux_sym_escape_char_token1] = ACTIONS(1898), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1898), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1898), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1898), + [aux_sym_forward_agent_token1] = ACTIONS(1898), + [aux_sym_forward_x11_token1] = ACTIONS(1900), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1898), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1898), + [aux_sym_gateway_ports_token1] = ACTIONS(1898), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1898), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1898), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1898), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1898), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1898), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1898), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1898), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1898), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1898), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1898), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1898), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1898), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1898), + [aux_sym_host_key_alias_token1] = ACTIONS(1898), + [aux_sym_hostname_token1] = ACTIONS(1898), + [aux_sym_identities_only_token1] = ACTIONS(1898), + [aux_sym_identity_agent_token1] = ACTIONS(1898), + [aux_sym_identity_file_token1] = ACTIONS(1898), + [aux_sym_ignore_unknown_token1] = ACTIONS(1898), + [aux_sym_include_token1] = ACTIONS(1898), + [aux_sym_ip_qos_token1] = ACTIONS(1898), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1898), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1898), + [aux_sym_kex_algorithms_token1] = ACTIONS(1898), + [aux_sym_known_hosts_command_token1] = ACTIONS(1898), + [aux_sym_local_command_token1] = ACTIONS(1898), + [aux_sym_local_forward_token1] = ACTIONS(1898), + [aux_sym_log_level_token1] = ACTIONS(1898), + [aux_sym_log_verbose_token1] = ACTIONS(1898), + [aux_sym_macs_token1] = ACTIONS(1898), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1898), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1898), + [aux_sym_password_authentication_token1] = ACTIONS(1898), + [aux_sym_permit_local_command_token1] = ACTIONS(1898), + [aux_sym_permit_remote_open_token1] = ACTIONS(1898), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1898), + [aux_sym_port_token1] = ACTIONS(1898), + [aux_sym_preferred_authentications_token1] = ACTIONS(1898), + [aux_sym_protocol_token1] = ACTIONS(1898), + [aux_sym_proxy_command_token1] = ACTIONS(1898), + [aux_sym_proxy_jump_token1] = ACTIONS(1898), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1898), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1898), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1898), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1898), + [aux_sym_rekey_limit_token1] = ACTIONS(1898), + [aux_sym_remote_command_token1] = ACTIONS(1898), + [aux_sym_remote_forward_token1] = ACTIONS(1898), + [aux_sym_request_tty_token1] = ACTIONS(1898), + [aux_sym_required_rsa_size_token1] = ACTIONS(1898), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1898), + [aux_sym_security_key_provider_token1] = ACTIONS(1898), + [aux_sym_send_env_token1] = ACTIONS(1898), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1898), + [aux_sym_server_alive_interval_token1] = ACTIONS(1898), + [aux_sym_session_type_token1] = ACTIONS(1898), + [aux_sym_set_env_token1] = ACTIONS(1898), + [aux_sym_stdin_null_token1] = ACTIONS(1898), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1898), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1898), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1898), + [aux_sym_syslog_facility_token1] = ACTIONS(1898), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1898), + [aux_sym_keep_alive_token1] = ACTIONS(1898), + [aux_sym_tunnel_token1] = ACTIONS(1900), + [aux_sym_tunnel_device_token1] = ACTIONS(1898), + [aux_sym_update_host_keys_token1] = ACTIONS(1898), + [aux_sym_use_keychain_token1] = ACTIONS(1898), + [aux_sym_use_roaming_token1] = ACTIONS(1898), + [aux_sym_user_token1] = ACTIONS(1900), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1898), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1898), + [aux_sym_visual_host_key_token1] = ACTIONS(1898), + [aux_sym_xauth_location_token1] = ACTIONS(1898), }, [227] = { - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1897), - [aux_sym_match_token1] = ACTIONS(1897), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1897), - [aux_sym_address_family_token1] = ACTIONS(1897), - [aux_sym_batch_mode_token1] = ACTIONS(1897), - [aux_sym_bind_address_token1] = ACTIONS(1897), - [aux_sym_bind_interface_token1] = ACTIONS(1897), - [aux_sym_canonical_domains_token1] = ACTIONS(1897), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1897), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1897), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1897), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1897), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1897), - [aux_sym_certificate_file_token1] = ACTIONS(1897), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1897), - [aux_sym_check_host_ip_token1] = ACTIONS(1897), - [aux_sym_ciphers_token1] = ACTIONS(1897), - [aux_sym_cipher_token1] = ACTIONS(1899), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1897), - [aux_sym_compression_token1] = ACTIONS(1897), - [aux_sym_connection_attempts_token1] = ACTIONS(1897), - [aux_sym_connect_timeout_token1] = ACTIONS(1897), - [aux_sym_control_master_token1] = ACTIONS(1897), - [aux_sym_control_path_token1] = ACTIONS(1897), - [aux_sym_control_persist_token1] = ACTIONS(1897), - [aux_sym_dynamic_forward_token1] = ACTIONS(1897), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1897), - [aux_sym_escape_char_token1] = ACTIONS(1897), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1897), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1897), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1897), - [aux_sym_forward_agent_token1] = ACTIONS(1897), - [aux_sym_forward_x11_token1] = ACTIONS(1899), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1897), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1897), - [aux_sym_gateway_ports_token1] = ACTIONS(1897), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1897), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1897), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1897), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1897), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1897), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1897), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1897), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1897), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1897), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1897), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1897), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1897), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1897), - [aux_sym_host_key_alias_token1] = ACTIONS(1897), - [aux_sym_hostname_token1] = ACTIONS(1897), - [aux_sym_identities_only_token1] = ACTIONS(1897), - [aux_sym_identity_agent_token1] = ACTIONS(1897), - [aux_sym_identity_file_token1] = ACTIONS(1897), - [aux_sym_ignore_unknown_token1] = ACTIONS(1897), - [aux_sym_include_token1] = ACTIONS(1897), - [aux_sym_ip_qos_token1] = ACTIONS(1897), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1897), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1897), - [aux_sym_kex_algorithms_token1] = ACTIONS(1897), - [aux_sym_known_hosts_command_token1] = ACTIONS(1897), - [aux_sym_local_command_token1] = ACTIONS(1897), - [aux_sym_local_forward_token1] = ACTIONS(1897), - [aux_sym_log_level_token1] = ACTIONS(1897), - [aux_sym_log_verbose_token1] = ACTIONS(1897), - [aux_sym_macs_token1] = ACTIONS(1897), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1897), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1897), - [aux_sym_password_authentication_token1] = ACTIONS(1897), - [aux_sym_permit_local_command_token1] = ACTIONS(1897), - [aux_sym_permit_remote_open_token1] = ACTIONS(1897), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1897), - [aux_sym_port_token1] = ACTIONS(1897), - [aux_sym_preferred_authentications_token1] = ACTIONS(1897), - [aux_sym_protocol_token1] = ACTIONS(1897), - [aux_sym_proxy_command_token1] = ACTIONS(1897), - [aux_sym_proxy_jump_token1] = ACTIONS(1897), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1897), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1897), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1897), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1897), - [aux_sym_rekey_limit_token1] = ACTIONS(1897), - [aux_sym_remote_command_token1] = ACTIONS(1897), - [aux_sym_remote_forward_token1] = ACTIONS(1897), - [aux_sym_request_tty_token1] = ACTIONS(1897), - [aux_sym_required_rsa_size_token1] = ACTIONS(1897), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1897), - [aux_sym_security_key_provider_token1] = ACTIONS(1897), - [aux_sym_send_env_token1] = ACTIONS(1897), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1897), - [aux_sym_server_alive_interval_token1] = ACTIONS(1897), - [aux_sym_session_type_token1] = ACTIONS(1897), - [aux_sym_set_env_token1] = ACTIONS(1897), - [aux_sym_stdin_null_token1] = ACTIONS(1897), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1897), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1897), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1897), - [aux_sym_syslog_facility_token1] = ACTIONS(1897), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1897), - [aux_sym_keep_alive_token1] = ACTIONS(1897), - [aux_sym_tunnel_token1] = ACTIONS(1899), - [aux_sym_tunnel_device_token1] = ACTIONS(1897), - [aux_sym_update_host_keys_token1] = ACTIONS(1897), - [aux_sym_use_keychain_token1] = ACTIONS(1897), - [aux_sym_use_roaming_token1] = ACTIONS(1897), - [aux_sym_user_token1] = ACTIONS(1899), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1897), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1897), - [aux_sym_visual_host_key_token1] = ACTIONS(1897), - [aux_sym_xauth_location_token1] = ACTIONS(1897), + [ts_builtin_sym_end] = ACTIONS(1904), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1906), + [anon_sym_DQUOTE] = ACTIONS(1904), + [aux_sym_match_token1] = ACTIONS(1904), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1904), + [aux_sym_address_family_token1] = ACTIONS(1904), + [aux_sym_batch_mode_token1] = ACTIONS(1904), + [aux_sym_bind_address_token1] = ACTIONS(1904), + [aux_sym_bind_interface_token1] = ACTIONS(1904), + [aux_sym_canonical_domains_token1] = ACTIONS(1904), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1904), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1904), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1904), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1904), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1904), + [aux_sym_certificate_file_token1] = ACTIONS(1904), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1904), + [aux_sym_check_host_ip_token1] = ACTIONS(1904), + [aux_sym_ciphers_token1] = ACTIONS(1904), + [aux_sym_cipher_token1] = ACTIONS(1906), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1904), + [aux_sym_compression_token1] = ACTIONS(1904), + [aux_sym_connection_attempts_token1] = ACTIONS(1904), + [aux_sym_connect_timeout_token1] = ACTIONS(1904), + [aux_sym_control_master_token1] = ACTIONS(1904), + [aux_sym_control_path_token1] = ACTIONS(1904), + [aux_sym_control_persist_token1] = ACTIONS(1904), + [aux_sym_dynamic_forward_token1] = ACTIONS(1904), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1904), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1904), + [aux_sym_escape_char_token1] = ACTIONS(1904), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1904), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1904), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1904), + [aux_sym_forward_agent_token1] = ACTIONS(1904), + [aux_sym_forward_x11_token1] = ACTIONS(1906), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1904), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1904), + [aux_sym_gateway_ports_token1] = ACTIONS(1904), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1904), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1904), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1904), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1904), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1904), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1904), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1904), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1904), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1904), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1904), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1904), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1904), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1904), + [aux_sym_host_key_alias_token1] = ACTIONS(1904), + [aux_sym_hostname_token1] = ACTIONS(1904), + [aux_sym_identities_only_token1] = ACTIONS(1904), + [aux_sym_identity_agent_token1] = ACTIONS(1904), + [aux_sym_identity_file_token1] = ACTIONS(1904), + [aux_sym_ignore_unknown_token1] = ACTIONS(1904), + [aux_sym_include_token1] = ACTIONS(1904), + [aux_sym_ip_qos_token1] = ACTIONS(1904), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1904), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1904), + [aux_sym_kex_algorithms_token1] = ACTIONS(1904), + [aux_sym_known_hosts_command_token1] = ACTIONS(1904), + [aux_sym_local_command_token1] = ACTIONS(1904), + [aux_sym_local_forward_token1] = ACTIONS(1904), + [aux_sym_log_level_token1] = ACTIONS(1904), + [aux_sym_log_verbose_token1] = ACTIONS(1904), + [aux_sym_macs_token1] = ACTIONS(1904), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1904), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1904), + [aux_sym_password_authentication_token1] = ACTIONS(1904), + [aux_sym_permit_local_command_token1] = ACTIONS(1904), + [aux_sym_permit_remote_open_token1] = ACTIONS(1904), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1904), + [aux_sym_port_token1] = ACTIONS(1904), + [aux_sym_preferred_authentications_token1] = ACTIONS(1904), + [aux_sym_protocol_token1] = ACTIONS(1904), + [aux_sym_proxy_command_token1] = ACTIONS(1904), + [aux_sym_proxy_jump_token1] = ACTIONS(1904), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1904), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1904), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1904), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1904), + [aux_sym_rekey_limit_token1] = ACTIONS(1904), + [aux_sym_remote_command_token1] = ACTIONS(1904), + [aux_sym_remote_forward_token1] = ACTIONS(1904), + [aux_sym_request_tty_token1] = ACTIONS(1904), + [aux_sym_required_rsa_size_token1] = ACTIONS(1904), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1904), + [aux_sym_security_key_provider_token1] = ACTIONS(1904), + [aux_sym_send_env_token1] = ACTIONS(1904), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1904), + [aux_sym_server_alive_interval_token1] = ACTIONS(1904), + [aux_sym_session_type_token1] = ACTIONS(1904), + [aux_sym_set_env_token1] = ACTIONS(1904), + [aux_sym_stdin_null_token1] = ACTIONS(1904), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1904), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1904), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1904), + [aux_sym_syslog_facility_token1] = ACTIONS(1904), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1904), + [aux_sym_keep_alive_token1] = ACTIONS(1904), + [aux_sym_tunnel_token1] = ACTIONS(1906), + [aux_sym_tunnel_device_token1] = ACTIONS(1904), + [aux_sym_update_host_keys_token1] = ACTIONS(1904), + [aux_sym_use_keychain_token1] = ACTIONS(1904), + [aux_sym_use_roaming_token1] = ACTIONS(1904), + [aux_sym_user_token1] = ACTIONS(1906), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1904), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1904), + [aux_sym_visual_host_key_token1] = ACTIONS(1904), + [aux_sym_xauth_location_token1] = ACTIONS(1904), }, [228] = { - [ts_builtin_sym_end] = ACTIONS(1901), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1903), - [anon_sym_DQUOTE] = ACTIONS(1901), - [aux_sym_match_token1] = ACTIONS(1901), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1901), - [aux_sym_address_family_token1] = ACTIONS(1901), - [aux_sym_batch_mode_token1] = ACTIONS(1901), - [aux_sym_bind_address_token1] = ACTIONS(1901), - [aux_sym_bind_interface_token1] = ACTIONS(1901), - [aux_sym_canonical_domains_token1] = ACTIONS(1901), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1901), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1901), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1901), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1901), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1901), - [aux_sym_certificate_file_token1] = ACTIONS(1901), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1901), - [aux_sym_check_host_ip_token1] = ACTIONS(1901), - [aux_sym_ciphers_token1] = ACTIONS(1901), - [aux_sym_cipher_token1] = ACTIONS(1903), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1901), - [aux_sym_compression_token1] = ACTIONS(1901), - [aux_sym_connection_attempts_token1] = ACTIONS(1901), - [aux_sym_connect_timeout_token1] = ACTIONS(1901), - [aux_sym_control_master_token1] = ACTIONS(1901), - [aux_sym_control_path_token1] = ACTIONS(1901), - [aux_sym_control_persist_token1] = ACTIONS(1901), - [aux_sym_dynamic_forward_token1] = ACTIONS(1901), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1901), - [aux_sym_escape_char_token1] = ACTIONS(1901), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1901), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1901), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1901), - [aux_sym_forward_agent_token1] = ACTIONS(1901), - [aux_sym_forward_x11_token1] = ACTIONS(1903), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1901), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1901), - [aux_sym_gateway_ports_token1] = ACTIONS(1901), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1901), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1901), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1901), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1901), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1901), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1901), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1901), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1901), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1901), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1901), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1901), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1901), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1901), - [aux_sym_host_key_alias_token1] = ACTIONS(1901), - [aux_sym_hostname_token1] = ACTIONS(1901), - [aux_sym_identities_only_token1] = ACTIONS(1901), - [aux_sym_identity_agent_token1] = ACTIONS(1901), - [aux_sym_identity_file_token1] = ACTIONS(1901), - [aux_sym_ignore_unknown_token1] = ACTIONS(1901), - [aux_sym_include_token1] = ACTIONS(1901), - [aux_sym_ip_qos_token1] = ACTIONS(1901), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1901), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1901), - [aux_sym_kex_algorithms_token1] = ACTIONS(1901), - [aux_sym_known_hosts_command_token1] = ACTIONS(1901), - [aux_sym_local_command_token1] = ACTIONS(1901), - [aux_sym_local_forward_token1] = ACTIONS(1901), - [aux_sym_log_level_token1] = ACTIONS(1901), - [aux_sym_log_verbose_token1] = ACTIONS(1901), - [aux_sym_macs_token1] = ACTIONS(1901), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1901), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1901), - [aux_sym_password_authentication_token1] = ACTIONS(1901), - [aux_sym_permit_local_command_token1] = ACTIONS(1901), - [aux_sym_permit_remote_open_token1] = ACTIONS(1901), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1901), - [aux_sym_port_token1] = ACTIONS(1901), - [aux_sym_preferred_authentications_token1] = ACTIONS(1901), - [aux_sym_protocol_token1] = ACTIONS(1901), - [aux_sym_proxy_command_token1] = ACTIONS(1901), - [aux_sym_proxy_jump_token1] = ACTIONS(1901), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1901), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1901), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1901), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1901), - [aux_sym_rekey_limit_token1] = ACTIONS(1901), - [aux_sym_remote_command_token1] = ACTIONS(1901), - [aux_sym_remote_forward_token1] = ACTIONS(1901), - [aux_sym_request_tty_token1] = ACTIONS(1901), - [aux_sym_required_rsa_size_token1] = ACTIONS(1901), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1901), - [aux_sym_security_key_provider_token1] = ACTIONS(1901), - [aux_sym_send_env_token1] = ACTIONS(1901), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1901), - [aux_sym_server_alive_interval_token1] = ACTIONS(1901), - [aux_sym_session_type_token1] = ACTIONS(1901), - [aux_sym_set_env_token1] = ACTIONS(1901), - [aux_sym_stdin_null_token1] = ACTIONS(1901), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1901), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1901), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1901), - [aux_sym_syslog_facility_token1] = ACTIONS(1901), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1901), - [aux_sym_keep_alive_token1] = ACTIONS(1901), - [aux_sym_tunnel_token1] = ACTIONS(1903), - [aux_sym_tunnel_device_token1] = ACTIONS(1901), - [aux_sym_update_host_keys_token1] = ACTIONS(1901), - [aux_sym_use_keychain_token1] = ACTIONS(1901), - [aux_sym_use_roaming_token1] = ACTIONS(1901), - [aux_sym_user_token1] = ACTIONS(1903), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1901), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1901), - [aux_sym_visual_host_key_token1] = ACTIONS(1901), - [aux_sym_xauth_location_token1] = ACTIONS(1901), + [ts_builtin_sym_end] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1912), + [aux_sym_match_token1] = ACTIONS(1908), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1908), + [aux_sym_address_family_token1] = ACTIONS(1908), + [aux_sym_batch_mode_token1] = ACTIONS(1908), + [aux_sym_bind_address_token1] = ACTIONS(1908), + [aux_sym_bind_interface_token1] = ACTIONS(1908), + [aux_sym_canonical_domains_token1] = ACTIONS(1908), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1908), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1908), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1908), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1908), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1908), + [aux_sym_certificate_file_token1] = ACTIONS(1908), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1908), + [aux_sym_check_host_ip_token1] = ACTIONS(1908), + [aux_sym_ciphers_token1] = ACTIONS(1908), + [aux_sym_cipher_token1] = ACTIONS(1910), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1908), + [aux_sym_compression_token1] = ACTIONS(1908), + [aux_sym_connection_attempts_token1] = ACTIONS(1908), + [aux_sym_connect_timeout_token1] = ACTIONS(1908), + [aux_sym_control_master_token1] = ACTIONS(1908), + [aux_sym_control_path_token1] = ACTIONS(1908), + [aux_sym_control_persist_token1] = ACTIONS(1908), + [aux_sym_dynamic_forward_token1] = ACTIONS(1908), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1908), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1908), + [aux_sym_escape_char_token1] = ACTIONS(1908), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1908), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1908), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1908), + [aux_sym_forward_agent_token1] = ACTIONS(1908), + [aux_sym_forward_x11_token1] = ACTIONS(1910), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1908), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1908), + [aux_sym_gateway_ports_token1] = ACTIONS(1908), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1908), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1908), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1908), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1908), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1908), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1908), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1908), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1908), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1908), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1908), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1908), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1908), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1908), + [aux_sym_host_key_alias_token1] = ACTIONS(1908), + [aux_sym_hostname_token1] = ACTIONS(1908), + [aux_sym_identities_only_token1] = ACTIONS(1908), + [aux_sym_identity_agent_token1] = ACTIONS(1908), + [aux_sym_identity_file_token1] = ACTIONS(1908), + [aux_sym_ignore_unknown_token1] = ACTIONS(1908), + [aux_sym_include_token1] = ACTIONS(1908), + [aux_sym_ip_qos_token1] = ACTIONS(1908), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1908), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1908), + [aux_sym_kex_algorithms_token1] = ACTIONS(1908), + [aux_sym_known_hosts_command_token1] = ACTIONS(1908), + [aux_sym_local_command_token1] = ACTIONS(1908), + [aux_sym_local_forward_token1] = ACTIONS(1908), + [aux_sym_log_level_token1] = ACTIONS(1908), + [aux_sym_log_verbose_token1] = ACTIONS(1908), + [aux_sym_macs_token1] = ACTIONS(1908), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1908), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1908), + [aux_sym_password_authentication_token1] = ACTIONS(1908), + [aux_sym_permit_local_command_token1] = ACTIONS(1908), + [aux_sym_permit_remote_open_token1] = ACTIONS(1908), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1908), + [aux_sym_port_token1] = ACTIONS(1908), + [aux_sym_preferred_authentications_token1] = ACTIONS(1908), + [aux_sym_protocol_token1] = ACTIONS(1908), + [aux_sym_proxy_command_token1] = ACTIONS(1908), + [aux_sym_proxy_jump_token1] = ACTIONS(1908), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1908), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1908), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1908), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1908), + [aux_sym_rekey_limit_token1] = ACTIONS(1908), + [aux_sym_remote_command_token1] = ACTIONS(1908), + [aux_sym_remote_forward_token1] = ACTIONS(1908), + [aux_sym_request_tty_token1] = ACTIONS(1908), + [aux_sym_required_rsa_size_token1] = ACTIONS(1908), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1908), + [aux_sym_security_key_provider_token1] = ACTIONS(1908), + [aux_sym_send_env_token1] = ACTIONS(1908), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1908), + [aux_sym_server_alive_interval_token1] = ACTIONS(1908), + [aux_sym_session_type_token1] = ACTIONS(1908), + [aux_sym_set_env_token1] = ACTIONS(1908), + [aux_sym_stdin_null_token1] = ACTIONS(1908), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1908), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1908), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1908), + [aux_sym_syslog_facility_token1] = ACTIONS(1908), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1908), + [aux_sym_keep_alive_token1] = ACTIONS(1908), + [aux_sym_tunnel_token1] = ACTIONS(1910), + [aux_sym_tunnel_device_token1] = ACTIONS(1908), + [aux_sym_update_host_keys_token1] = ACTIONS(1908), + [aux_sym_use_keychain_token1] = ACTIONS(1908), + [aux_sym_use_roaming_token1] = ACTIONS(1908), + [aux_sym_user_token1] = ACTIONS(1910), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1908), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1908), + [aux_sym_visual_host_key_token1] = ACTIONS(1908), + [aux_sym_xauth_location_token1] = ACTIONS(1908), }, [229] = { - [ts_builtin_sym_end] = ACTIONS(1905), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1907), - [anon_sym_DQUOTE] = ACTIONS(1909), - [aux_sym_match_token1] = ACTIONS(1905), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1905), - [aux_sym_address_family_token1] = ACTIONS(1905), - [aux_sym_batch_mode_token1] = ACTIONS(1905), - [aux_sym_bind_address_token1] = ACTIONS(1905), - [aux_sym_bind_interface_token1] = ACTIONS(1905), - [aux_sym_canonical_domains_token1] = ACTIONS(1905), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1905), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1905), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1905), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1905), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1905), - [aux_sym_certificate_file_token1] = ACTIONS(1905), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1905), - [aux_sym_check_host_ip_token1] = ACTIONS(1905), - [aux_sym_ciphers_token1] = ACTIONS(1905), - [aux_sym_cipher_token1] = ACTIONS(1907), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1905), - [aux_sym_compression_token1] = ACTIONS(1905), - [aux_sym_connection_attempts_token1] = ACTIONS(1905), - [aux_sym_connect_timeout_token1] = ACTIONS(1905), - [aux_sym_control_master_token1] = ACTIONS(1905), - [aux_sym_control_path_token1] = ACTIONS(1905), - [aux_sym_control_persist_token1] = ACTIONS(1905), - [aux_sym_dynamic_forward_token1] = ACTIONS(1905), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1905), - [aux_sym_escape_char_token1] = ACTIONS(1905), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1905), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1905), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1905), - [aux_sym_forward_agent_token1] = ACTIONS(1905), - [aux_sym_forward_x11_token1] = ACTIONS(1907), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1905), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1905), - [aux_sym_gateway_ports_token1] = ACTIONS(1905), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1905), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1905), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1905), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1905), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1905), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1905), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1905), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1905), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1905), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1905), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1905), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1905), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1905), - [aux_sym_host_key_alias_token1] = ACTIONS(1905), - [aux_sym_hostname_token1] = ACTIONS(1905), - [aux_sym_identities_only_token1] = ACTIONS(1905), - [aux_sym_identity_agent_token1] = ACTIONS(1905), - [aux_sym_identity_file_token1] = ACTIONS(1905), - [aux_sym_ignore_unknown_token1] = ACTIONS(1905), - [aux_sym_include_token1] = ACTIONS(1905), - [aux_sym_ip_qos_token1] = ACTIONS(1905), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1905), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1905), - [aux_sym_kex_algorithms_token1] = ACTIONS(1905), - [aux_sym_known_hosts_command_token1] = ACTIONS(1905), - [aux_sym_local_command_token1] = ACTIONS(1905), - [aux_sym_local_forward_token1] = ACTIONS(1905), - [aux_sym_log_level_token1] = ACTIONS(1905), - [aux_sym_log_verbose_token1] = ACTIONS(1905), - [aux_sym_macs_token1] = ACTIONS(1905), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1905), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1905), - [aux_sym_password_authentication_token1] = ACTIONS(1905), - [aux_sym_permit_local_command_token1] = ACTIONS(1905), - [aux_sym_permit_remote_open_token1] = ACTIONS(1905), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1905), - [aux_sym_port_token1] = ACTIONS(1905), - [aux_sym_preferred_authentications_token1] = ACTIONS(1905), - [aux_sym_protocol_token1] = ACTIONS(1905), - [aux_sym_proxy_command_token1] = ACTIONS(1905), - [aux_sym_proxy_jump_token1] = ACTIONS(1905), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1905), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1905), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1905), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1905), - [aux_sym_rekey_limit_token1] = ACTIONS(1905), - [aux_sym_remote_command_token1] = ACTIONS(1905), - [aux_sym_remote_forward_token1] = ACTIONS(1905), - [aux_sym_request_tty_token1] = ACTIONS(1905), - [aux_sym_required_rsa_size_token1] = ACTIONS(1905), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1905), - [aux_sym_security_key_provider_token1] = ACTIONS(1905), - [aux_sym_send_env_token1] = ACTIONS(1905), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1905), - [aux_sym_server_alive_interval_token1] = ACTIONS(1905), - [aux_sym_session_type_token1] = ACTIONS(1905), - [aux_sym_set_env_token1] = ACTIONS(1905), - [aux_sym_stdin_null_token1] = ACTIONS(1905), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1905), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1905), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1905), - [aux_sym_syslog_facility_token1] = ACTIONS(1905), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1905), - [aux_sym_keep_alive_token1] = ACTIONS(1905), - [aux_sym_tunnel_token1] = ACTIONS(1907), - [aux_sym_tunnel_device_token1] = ACTIONS(1905), - [aux_sym_update_host_keys_token1] = ACTIONS(1905), - [aux_sym_use_keychain_token1] = ACTIONS(1905), - [aux_sym_use_roaming_token1] = ACTIONS(1905), - [aux_sym_user_token1] = ACTIONS(1907), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1905), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1905), - [aux_sym_visual_host_key_token1] = ACTIONS(1905), - [aux_sym_xauth_location_token1] = ACTIONS(1905), + [ts_builtin_sym_end] = ACTIONS(1914), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1916), + [anon_sym_DQUOTE] = ACTIONS(1914), + [aux_sym_match_token1] = ACTIONS(1914), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1914), + [aux_sym_address_family_token1] = ACTIONS(1914), + [aux_sym_batch_mode_token1] = ACTIONS(1914), + [aux_sym_bind_address_token1] = ACTIONS(1914), + [aux_sym_bind_interface_token1] = ACTIONS(1914), + [aux_sym_canonical_domains_token1] = ACTIONS(1914), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1914), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1914), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1914), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1914), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1914), + [aux_sym_certificate_file_token1] = ACTIONS(1914), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1914), + [aux_sym_check_host_ip_token1] = ACTIONS(1914), + [aux_sym_ciphers_token1] = ACTIONS(1914), + [aux_sym_cipher_token1] = ACTIONS(1916), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1914), + [aux_sym_compression_token1] = ACTIONS(1914), + [aux_sym_connection_attempts_token1] = ACTIONS(1914), + [aux_sym_connect_timeout_token1] = ACTIONS(1914), + [aux_sym_control_master_token1] = ACTIONS(1914), + [aux_sym_control_path_token1] = ACTIONS(1914), + [aux_sym_control_persist_token1] = ACTIONS(1914), + [aux_sym_dynamic_forward_token1] = ACTIONS(1914), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1914), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1914), + [aux_sym_escape_char_token1] = ACTIONS(1914), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1914), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1914), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1914), + [aux_sym_forward_agent_token1] = ACTIONS(1914), + [aux_sym_forward_x11_token1] = ACTIONS(1916), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1914), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1914), + [aux_sym_gateway_ports_token1] = ACTIONS(1914), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1914), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1914), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1914), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1914), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1914), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1914), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1914), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1914), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1914), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1914), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1914), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1914), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1914), + [aux_sym_host_key_alias_token1] = ACTIONS(1914), + [aux_sym_hostname_token1] = ACTIONS(1914), + [aux_sym_identities_only_token1] = ACTIONS(1914), + [aux_sym_identity_agent_token1] = ACTIONS(1914), + [aux_sym_identity_file_token1] = ACTIONS(1914), + [aux_sym_ignore_unknown_token1] = ACTIONS(1914), + [aux_sym_include_token1] = ACTIONS(1914), + [aux_sym_ip_qos_token1] = ACTIONS(1914), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1914), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1914), + [aux_sym_kex_algorithms_token1] = ACTIONS(1914), + [aux_sym_known_hosts_command_token1] = ACTIONS(1914), + [aux_sym_local_command_token1] = ACTIONS(1914), + [aux_sym_local_forward_token1] = ACTIONS(1914), + [aux_sym_log_level_token1] = ACTIONS(1914), + [aux_sym_log_verbose_token1] = ACTIONS(1914), + [aux_sym_macs_token1] = ACTIONS(1914), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1914), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1914), + [aux_sym_password_authentication_token1] = ACTIONS(1914), + [aux_sym_permit_local_command_token1] = ACTIONS(1914), + [aux_sym_permit_remote_open_token1] = ACTIONS(1914), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1914), + [aux_sym_port_token1] = ACTIONS(1914), + [aux_sym_preferred_authentications_token1] = ACTIONS(1914), + [aux_sym_protocol_token1] = ACTIONS(1914), + [aux_sym_proxy_command_token1] = ACTIONS(1914), + [aux_sym_proxy_jump_token1] = ACTIONS(1914), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1914), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1914), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1914), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1914), + [aux_sym_rekey_limit_token1] = ACTIONS(1914), + [aux_sym_remote_command_token1] = ACTIONS(1914), + [aux_sym_remote_forward_token1] = ACTIONS(1914), + [aux_sym_request_tty_token1] = ACTIONS(1914), + [aux_sym_required_rsa_size_token1] = ACTIONS(1914), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1914), + [aux_sym_security_key_provider_token1] = ACTIONS(1914), + [aux_sym_send_env_token1] = ACTIONS(1914), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1914), + [aux_sym_server_alive_interval_token1] = ACTIONS(1914), + [aux_sym_session_type_token1] = ACTIONS(1914), + [aux_sym_set_env_token1] = ACTIONS(1914), + [aux_sym_stdin_null_token1] = ACTIONS(1914), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1914), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1914), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1914), + [aux_sym_syslog_facility_token1] = ACTIONS(1914), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1914), + [aux_sym_keep_alive_token1] = ACTIONS(1914), + [aux_sym_tunnel_token1] = ACTIONS(1916), + [aux_sym_tunnel_device_token1] = ACTIONS(1914), + [aux_sym_update_host_keys_token1] = ACTIONS(1914), + [aux_sym_use_keychain_token1] = ACTIONS(1914), + [aux_sym_use_roaming_token1] = ACTIONS(1914), + [aux_sym_user_token1] = ACTIONS(1916), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1914), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1914), + [aux_sym_visual_host_key_token1] = ACTIONS(1914), + [aux_sym_xauth_location_token1] = ACTIONS(1914), }, [230] = { - [ts_builtin_sym_end] = ACTIONS(1911), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1913), - [anon_sym_DQUOTE] = ACTIONS(1915), - [aux_sym_match_token1] = ACTIONS(1911), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1911), - [aux_sym_address_family_token1] = ACTIONS(1911), - [aux_sym_batch_mode_token1] = ACTIONS(1911), - [aux_sym_bind_address_token1] = ACTIONS(1911), - [aux_sym_bind_interface_token1] = ACTIONS(1911), - [aux_sym_canonical_domains_token1] = ACTIONS(1911), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1911), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1911), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1911), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1911), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1911), - [aux_sym_certificate_file_token1] = ACTIONS(1911), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1911), - [aux_sym_check_host_ip_token1] = ACTIONS(1911), - [aux_sym_ciphers_token1] = ACTIONS(1911), - [aux_sym_cipher_token1] = ACTIONS(1913), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1911), - [aux_sym_compression_token1] = ACTIONS(1911), - [aux_sym_connection_attempts_token1] = ACTIONS(1911), - [aux_sym_connect_timeout_token1] = ACTIONS(1911), - [aux_sym_control_master_token1] = ACTIONS(1911), - [aux_sym_control_path_token1] = ACTIONS(1911), - [aux_sym_control_persist_token1] = ACTIONS(1911), - [aux_sym_dynamic_forward_token1] = ACTIONS(1911), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1911), - [aux_sym_escape_char_token1] = ACTIONS(1911), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1911), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1911), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1911), - [aux_sym_forward_agent_token1] = ACTIONS(1911), - [aux_sym_forward_x11_token1] = ACTIONS(1913), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1911), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1911), - [aux_sym_gateway_ports_token1] = ACTIONS(1911), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1911), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1911), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1911), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1911), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1911), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1911), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1911), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1911), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1911), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1911), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1911), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1911), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1911), - [aux_sym_host_key_alias_token1] = ACTIONS(1911), - [aux_sym_hostname_token1] = ACTIONS(1911), - [aux_sym_identities_only_token1] = ACTIONS(1911), - [aux_sym_identity_agent_token1] = ACTIONS(1911), - [aux_sym_identity_file_token1] = ACTIONS(1911), - [aux_sym_ignore_unknown_token1] = ACTIONS(1911), - [aux_sym_include_token1] = ACTIONS(1911), - [aux_sym_ip_qos_token1] = ACTIONS(1911), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1911), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1911), - [aux_sym_kex_algorithms_token1] = ACTIONS(1911), - [aux_sym_known_hosts_command_token1] = ACTIONS(1911), - [aux_sym_local_command_token1] = ACTIONS(1911), - [aux_sym_local_forward_token1] = ACTIONS(1911), - [aux_sym_log_level_token1] = ACTIONS(1911), - [aux_sym_log_verbose_token1] = ACTIONS(1911), - [aux_sym_macs_token1] = ACTIONS(1911), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1911), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1911), - [aux_sym_password_authentication_token1] = ACTIONS(1911), - [aux_sym_permit_local_command_token1] = ACTIONS(1911), - [aux_sym_permit_remote_open_token1] = ACTIONS(1911), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1911), - [aux_sym_port_token1] = ACTIONS(1911), - [aux_sym_preferred_authentications_token1] = ACTIONS(1911), - [aux_sym_protocol_token1] = ACTIONS(1911), - [aux_sym_proxy_command_token1] = ACTIONS(1911), - [aux_sym_proxy_jump_token1] = ACTIONS(1911), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1911), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1911), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1911), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1911), - [aux_sym_rekey_limit_token1] = ACTIONS(1911), - [aux_sym_remote_command_token1] = ACTIONS(1911), - [aux_sym_remote_forward_token1] = ACTIONS(1911), - [aux_sym_request_tty_token1] = ACTIONS(1911), - [aux_sym_required_rsa_size_token1] = ACTIONS(1911), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1911), - [aux_sym_security_key_provider_token1] = ACTIONS(1911), - [aux_sym_send_env_token1] = ACTIONS(1911), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1911), - [aux_sym_server_alive_interval_token1] = ACTIONS(1911), - [aux_sym_session_type_token1] = ACTIONS(1911), - [aux_sym_set_env_token1] = ACTIONS(1911), - [aux_sym_stdin_null_token1] = ACTIONS(1911), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1911), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1911), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1911), - [aux_sym_syslog_facility_token1] = ACTIONS(1911), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1911), - [aux_sym_keep_alive_token1] = ACTIONS(1911), - [aux_sym_tunnel_token1] = ACTIONS(1913), - [aux_sym_tunnel_device_token1] = ACTIONS(1911), - [aux_sym_update_host_keys_token1] = ACTIONS(1911), - [aux_sym_use_keychain_token1] = ACTIONS(1911), - [aux_sym_use_roaming_token1] = ACTIONS(1911), - [aux_sym_user_token1] = ACTIONS(1913), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1911), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1911), - [aux_sym_visual_host_key_token1] = ACTIONS(1911), - [aux_sym_xauth_location_token1] = ACTIONS(1911), + [ts_builtin_sym_end] = ACTIONS(1918), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1920), + [anon_sym_DQUOTE] = ACTIONS(1918), + [aux_sym_match_token1] = ACTIONS(1918), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1918), + [aux_sym_address_family_token1] = ACTIONS(1918), + [aux_sym_batch_mode_token1] = ACTIONS(1918), + [aux_sym_bind_address_token1] = ACTIONS(1918), + [aux_sym_bind_interface_token1] = ACTIONS(1918), + [aux_sym_canonical_domains_token1] = ACTIONS(1918), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1918), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1918), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1918), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1918), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1918), + [aux_sym_certificate_file_token1] = ACTIONS(1918), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1918), + [aux_sym_check_host_ip_token1] = ACTIONS(1918), + [aux_sym_ciphers_token1] = ACTIONS(1918), + [aux_sym_cipher_token1] = ACTIONS(1920), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1918), + [aux_sym_compression_token1] = ACTIONS(1918), + [aux_sym_connection_attempts_token1] = ACTIONS(1918), + [aux_sym_connect_timeout_token1] = ACTIONS(1918), + [aux_sym_control_master_token1] = ACTIONS(1918), + [aux_sym_control_path_token1] = ACTIONS(1918), + [aux_sym_control_persist_token1] = ACTIONS(1918), + [aux_sym_dynamic_forward_token1] = ACTIONS(1918), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1918), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1918), + [aux_sym_escape_char_token1] = ACTIONS(1918), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1918), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1918), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1918), + [aux_sym_forward_agent_token1] = ACTIONS(1918), + [aux_sym_forward_x11_token1] = ACTIONS(1920), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1918), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1918), + [aux_sym_gateway_ports_token1] = ACTIONS(1918), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1918), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1918), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1918), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1918), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1918), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1918), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1918), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1918), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1918), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1918), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1918), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1918), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1918), + [aux_sym_host_key_alias_token1] = ACTIONS(1918), + [aux_sym_hostname_token1] = ACTIONS(1918), + [aux_sym_identities_only_token1] = ACTIONS(1918), + [aux_sym_identity_agent_token1] = ACTIONS(1918), + [aux_sym_identity_file_token1] = ACTIONS(1918), + [aux_sym_ignore_unknown_token1] = ACTIONS(1918), + [aux_sym_include_token1] = ACTIONS(1918), + [aux_sym_ip_qos_token1] = ACTIONS(1918), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1918), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1918), + [aux_sym_kex_algorithms_token1] = ACTIONS(1918), + [aux_sym_known_hosts_command_token1] = ACTIONS(1918), + [aux_sym_local_command_token1] = ACTIONS(1918), + [aux_sym_local_forward_token1] = ACTIONS(1918), + [aux_sym_log_level_token1] = ACTIONS(1918), + [aux_sym_log_verbose_token1] = ACTIONS(1918), + [aux_sym_macs_token1] = ACTIONS(1918), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1918), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1918), + [aux_sym_password_authentication_token1] = ACTIONS(1918), + [aux_sym_permit_local_command_token1] = ACTIONS(1918), + [aux_sym_permit_remote_open_token1] = ACTIONS(1918), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1918), + [aux_sym_port_token1] = ACTIONS(1918), + [aux_sym_preferred_authentications_token1] = ACTIONS(1918), + [aux_sym_protocol_token1] = ACTIONS(1918), + [aux_sym_proxy_command_token1] = ACTIONS(1918), + [aux_sym_proxy_jump_token1] = ACTIONS(1918), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1918), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1918), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1918), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1918), + [aux_sym_rekey_limit_token1] = ACTIONS(1918), + [aux_sym_remote_command_token1] = ACTIONS(1918), + [aux_sym_remote_forward_token1] = ACTIONS(1918), + [aux_sym_request_tty_token1] = ACTIONS(1918), + [aux_sym_required_rsa_size_token1] = ACTIONS(1918), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1918), + [aux_sym_security_key_provider_token1] = ACTIONS(1918), + [aux_sym_send_env_token1] = ACTIONS(1918), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1918), + [aux_sym_server_alive_interval_token1] = ACTIONS(1918), + [aux_sym_session_type_token1] = ACTIONS(1918), + [aux_sym_set_env_token1] = ACTIONS(1918), + [aux_sym_stdin_null_token1] = ACTIONS(1918), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1918), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1918), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1918), + [aux_sym_syslog_facility_token1] = ACTIONS(1918), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1918), + [aux_sym_keep_alive_token1] = ACTIONS(1918), + [aux_sym_tunnel_token1] = ACTIONS(1920), + [aux_sym_tunnel_device_token1] = ACTIONS(1918), + [aux_sym_update_host_keys_token1] = ACTIONS(1918), + [aux_sym_use_keychain_token1] = ACTIONS(1918), + [aux_sym_use_roaming_token1] = ACTIONS(1918), + [aux_sym_user_token1] = ACTIONS(1920), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1918), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1918), + [aux_sym_visual_host_key_token1] = ACTIONS(1918), + [aux_sym_xauth_location_token1] = ACTIONS(1918), }, [231] = { - [ts_builtin_sym_end] = ACTIONS(1917), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1919), - [anon_sym_DQUOTE] = ACTIONS(1917), - [aux_sym_match_token1] = ACTIONS(1917), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1917), - [aux_sym_address_family_token1] = ACTIONS(1917), - [aux_sym_batch_mode_token1] = ACTIONS(1917), - [aux_sym_bind_address_token1] = ACTIONS(1917), - [aux_sym_bind_interface_token1] = ACTIONS(1917), - [aux_sym_canonical_domains_token1] = ACTIONS(1917), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1917), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1917), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1917), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1917), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1917), - [aux_sym_certificate_file_token1] = ACTIONS(1917), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1917), - [aux_sym_check_host_ip_token1] = ACTIONS(1917), - [aux_sym_ciphers_token1] = ACTIONS(1917), - [aux_sym_cipher_token1] = ACTIONS(1919), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1917), - [aux_sym_compression_token1] = ACTIONS(1917), - [aux_sym_connection_attempts_token1] = ACTIONS(1917), - [aux_sym_connect_timeout_token1] = ACTIONS(1917), - [aux_sym_control_master_token1] = ACTIONS(1917), - [aux_sym_control_path_token1] = ACTIONS(1917), - [aux_sym_control_persist_token1] = ACTIONS(1917), - [aux_sym_dynamic_forward_token1] = ACTIONS(1917), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1917), - [aux_sym_escape_char_token1] = ACTIONS(1917), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1917), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1917), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1917), - [aux_sym_forward_agent_token1] = ACTIONS(1917), - [aux_sym_forward_x11_token1] = ACTIONS(1919), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1917), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1917), - [aux_sym_gateway_ports_token1] = ACTIONS(1917), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1917), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1917), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1917), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1917), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1917), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1917), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1917), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1917), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1917), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1917), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1917), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1917), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1917), - [aux_sym_host_key_alias_token1] = ACTIONS(1917), - [aux_sym_hostname_token1] = ACTIONS(1917), - [aux_sym_identities_only_token1] = ACTIONS(1917), - [aux_sym_identity_agent_token1] = ACTIONS(1917), - [aux_sym_identity_file_token1] = ACTIONS(1917), - [aux_sym_ignore_unknown_token1] = ACTIONS(1917), - [aux_sym_include_token1] = ACTIONS(1917), - [aux_sym_ip_qos_token1] = ACTIONS(1917), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1917), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1917), - [aux_sym_kex_algorithms_token1] = ACTIONS(1917), - [aux_sym_known_hosts_command_token1] = ACTIONS(1917), - [aux_sym_local_command_token1] = ACTIONS(1917), - [aux_sym_local_forward_token1] = ACTIONS(1917), - [aux_sym_log_level_token1] = ACTIONS(1917), - [aux_sym_log_verbose_token1] = ACTIONS(1917), - [aux_sym_macs_token1] = ACTIONS(1917), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1917), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1917), - [aux_sym_password_authentication_token1] = ACTIONS(1917), - [aux_sym_permit_local_command_token1] = ACTIONS(1917), - [aux_sym_permit_remote_open_token1] = ACTIONS(1917), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1917), - [aux_sym_port_token1] = ACTIONS(1917), - [aux_sym_preferred_authentications_token1] = ACTIONS(1917), - [aux_sym_protocol_token1] = ACTIONS(1917), - [aux_sym_proxy_command_token1] = ACTIONS(1917), - [aux_sym_proxy_jump_token1] = ACTIONS(1917), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1917), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1917), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1917), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1917), - [aux_sym_rekey_limit_token1] = ACTIONS(1917), - [aux_sym_remote_command_token1] = ACTIONS(1917), - [aux_sym_remote_forward_token1] = ACTIONS(1917), - [aux_sym_request_tty_token1] = ACTIONS(1917), - [aux_sym_required_rsa_size_token1] = ACTIONS(1917), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1917), - [aux_sym_security_key_provider_token1] = ACTIONS(1917), - [aux_sym_send_env_token1] = ACTIONS(1917), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1917), - [aux_sym_server_alive_interval_token1] = ACTIONS(1917), - [aux_sym_session_type_token1] = ACTIONS(1917), - [aux_sym_set_env_token1] = ACTIONS(1917), - [aux_sym_stdin_null_token1] = ACTIONS(1917), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1917), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1917), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1917), - [aux_sym_syslog_facility_token1] = ACTIONS(1917), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1917), - [aux_sym_keep_alive_token1] = ACTIONS(1917), - [aux_sym_tunnel_token1] = ACTIONS(1919), - [aux_sym_tunnel_device_token1] = ACTIONS(1917), - [aux_sym_update_host_keys_token1] = ACTIONS(1917), - [aux_sym_use_keychain_token1] = ACTIONS(1917), - [aux_sym_use_roaming_token1] = ACTIONS(1917), - [aux_sym_user_token1] = ACTIONS(1919), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1917), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1917), - [aux_sym_visual_host_key_token1] = ACTIONS(1917), - [aux_sym_xauth_location_token1] = ACTIONS(1917), + [ts_builtin_sym_end] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1924), + [anon_sym_DQUOTE] = ACTIONS(1926), + [aux_sym_match_token1] = ACTIONS(1922), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1922), + [aux_sym_address_family_token1] = ACTIONS(1922), + [aux_sym_batch_mode_token1] = ACTIONS(1922), + [aux_sym_bind_address_token1] = ACTIONS(1922), + [aux_sym_bind_interface_token1] = ACTIONS(1922), + [aux_sym_canonical_domains_token1] = ACTIONS(1922), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1922), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1922), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1922), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1922), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1922), + [aux_sym_certificate_file_token1] = ACTIONS(1922), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1922), + [aux_sym_check_host_ip_token1] = ACTIONS(1922), + [aux_sym_ciphers_token1] = ACTIONS(1922), + [aux_sym_cipher_token1] = ACTIONS(1924), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1922), + [aux_sym_compression_token1] = ACTIONS(1922), + [aux_sym_connection_attempts_token1] = ACTIONS(1922), + [aux_sym_connect_timeout_token1] = ACTIONS(1922), + [aux_sym_control_master_token1] = ACTIONS(1922), + [aux_sym_control_path_token1] = ACTIONS(1922), + [aux_sym_control_persist_token1] = ACTIONS(1922), + [aux_sym_dynamic_forward_token1] = ACTIONS(1922), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1922), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1922), + [aux_sym_escape_char_token1] = ACTIONS(1922), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1922), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1922), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1922), + [aux_sym_forward_agent_token1] = ACTIONS(1922), + [aux_sym_forward_x11_token1] = ACTIONS(1924), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1922), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1922), + [aux_sym_gateway_ports_token1] = ACTIONS(1922), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1922), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1922), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1922), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1922), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1922), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1922), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1922), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1922), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1922), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1922), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1922), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1922), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1922), + [aux_sym_host_key_alias_token1] = ACTIONS(1922), + [aux_sym_hostname_token1] = ACTIONS(1922), + [aux_sym_identities_only_token1] = ACTIONS(1922), + [aux_sym_identity_agent_token1] = ACTIONS(1922), + [aux_sym_identity_file_token1] = ACTIONS(1922), + [aux_sym_ignore_unknown_token1] = ACTIONS(1922), + [aux_sym_include_token1] = ACTIONS(1922), + [aux_sym_ip_qos_token1] = ACTIONS(1922), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1922), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1922), + [aux_sym_kex_algorithms_token1] = ACTIONS(1922), + [aux_sym_known_hosts_command_token1] = ACTIONS(1922), + [aux_sym_local_command_token1] = ACTIONS(1922), + [aux_sym_local_forward_token1] = ACTIONS(1922), + [aux_sym_log_level_token1] = ACTIONS(1922), + [aux_sym_log_verbose_token1] = ACTIONS(1922), + [aux_sym_macs_token1] = ACTIONS(1922), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1922), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1922), + [aux_sym_password_authentication_token1] = ACTIONS(1922), + [aux_sym_permit_local_command_token1] = ACTIONS(1922), + [aux_sym_permit_remote_open_token1] = ACTIONS(1922), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1922), + [aux_sym_port_token1] = ACTIONS(1922), + [aux_sym_preferred_authentications_token1] = ACTIONS(1922), + [aux_sym_protocol_token1] = ACTIONS(1922), + [aux_sym_proxy_command_token1] = ACTIONS(1922), + [aux_sym_proxy_jump_token1] = ACTIONS(1922), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1922), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1922), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1922), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1922), + [aux_sym_rekey_limit_token1] = ACTIONS(1922), + [aux_sym_remote_command_token1] = ACTIONS(1922), + [aux_sym_remote_forward_token1] = ACTIONS(1922), + [aux_sym_request_tty_token1] = ACTIONS(1922), + [aux_sym_required_rsa_size_token1] = ACTIONS(1922), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1922), + [aux_sym_security_key_provider_token1] = ACTIONS(1922), + [aux_sym_send_env_token1] = ACTIONS(1922), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1922), + [aux_sym_server_alive_interval_token1] = ACTIONS(1922), + [aux_sym_session_type_token1] = ACTIONS(1922), + [aux_sym_set_env_token1] = ACTIONS(1922), + [aux_sym_stdin_null_token1] = ACTIONS(1922), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1922), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1922), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1922), + [aux_sym_syslog_facility_token1] = ACTIONS(1922), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1922), + [aux_sym_keep_alive_token1] = ACTIONS(1922), + [aux_sym_tunnel_token1] = ACTIONS(1924), + [aux_sym_tunnel_device_token1] = ACTIONS(1922), + [aux_sym_update_host_keys_token1] = ACTIONS(1922), + [aux_sym_use_keychain_token1] = ACTIONS(1922), + [aux_sym_use_roaming_token1] = ACTIONS(1922), + [aux_sym_user_token1] = ACTIONS(1924), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1922), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1922), + [aux_sym_visual_host_key_token1] = ACTIONS(1922), + [aux_sym_xauth_location_token1] = ACTIONS(1922), }, [232] = { - [ts_builtin_sym_end] = ACTIONS(1921), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1923), - [anon_sym_DQUOTE] = ACTIONS(1921), - [aux_sym_match_token1] = ACTIONS(1921), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1921), - [aux_sym_address_family_token1] = ACTIONS(1921), - [aux_sym_batch_mode_token1] = ACTIONS(1921), - [aux_sym_bind_address_token1] = ACTIONS(1921), - [aux_sym_bind_interface_token1] = ACTIONS(1921), - [aux_sym_canonical_domains_token1] = ACTIONS(1921), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1921), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1921), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1921), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1921), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1921), - [aux_sym_certificate_file_token1] = ACTIONS(1921), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1921), - [aux_sym_check_host_ip_token1] = ACTIONS(1921), - [aux_sym_ciphers_token1] = ACTIONS(1921), - [aux_sym_cipher_token1] = ACTIONS(1923), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1921), - [aux_sym_compression_token1] = ACTIONS(1921), - [aux_sym_connection_attempts_token1] = ACTIONS(1921), - [aux_sym_connect_timeout_token1] = ACTIONS(1921), - [aux_sym_control_master_token1] = ACTIONS(1921), - [aux_sym_control_path_token1] = ACTIONS(1921), - [aux_sym_control_persist_token1] = ACTIONS(1921), - [aux_sym_dynamic_forward_token1] = ACTIONS(1921), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1921), - [aux_sym_escape_char_token1] = ACTIONS(1921), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1921), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1921), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1921), - [aux_sym_forward_agent_token1] = ACTIONS(1921), - [aux_sym_forward_x11_token1] = ACTIONS(1923), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1921), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1921), - [aux_sym_gateway_ports_token1] = ACTIONS(1921), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1921), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1921), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1921), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1921), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1921), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1921), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1921), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1921), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1921), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1921), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1921), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1921), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1921), - [aux_sym_host_key_alias_token1] = ACTIONS(1921), - [aux_sym_hostname_token1] = ACTIONS(1921), - [aux_sym_identities_only_token1] = ACTIONS(1921), - [aux_sym_identity_agent_token1] = ACTIONS(1921), - [aux_sym_identity_file_token1] = ACTIONS(1921), - [aux_sym_ignore_unknown_token1] = ACTIONS(1921), - [aux_sym_include_token1] = ACTIONS(1921), - [aux_sym_ip_qos_token1] = ACTIONS(1921), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1921), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1921), - [aux_sym_kex_algorithms_token1] = ACTIONS(1921), - [aux_sym_known_hosts_command_token1] = ACTIONS(1921), - [aux_sym_local_command_token1] = ACTIONS(1921), - [aux_sym_local_forward_token1] = ACTIONS(1921), - [aux_sym_log_level_token1] = ACTIONS(1921), - [aux_sym_log_verbose_token1] = ACTIONS(1921), - [aux_sym_macs_token1] = ACTIONS(1921), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1921), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1921), - [aux_sym_password_authentication_token1] = ACTIONS(1921), - [aux_sym_permit_local_command_token1] = ACTIONS(1921), - [aux_sym_permit_remote_open_token1] = ACTIONS(1921), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1921), - [aux_sym_port_token1] = ACTIONS(1921), - [aux_sym_preferred_authentications_token1] = ACTIONS(1921), - [aux_sym_protocol_token1] = ACTIONS(1921), - [aux_sym_proxy_command_token1] = ACTIONS(1921), - [aux_sym_proxy_jump_token1] = ACTIONS(1921), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1921), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1921), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1921), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1921), - [aux_sym_rekey_limit_token1] = ACTIONS(1921), - [aux_sym_remote_command_token1] = ACTIONS(1921), - [aux_sym_remote_forward_token1] = ACTIONS(1921), - [aux_sym_request_tty_token1] = ACTIONS(1921), - [aux_sym_required_rsa_size_token1] = ACTIONS(1921), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1921), - [aux_sym_security_key_provider_token1] = ACTIONS(1921), - [aux_sym_send_env_token1] = ACTIONS(1921), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1921), - [aux_sym_server_alive_interval_token1] = ACTIONS(1921), - [aux_sym_session_type_token1] = ACTIONS(1921), - [aux_sym_set_env_token1] = ACTIONS(1921), - [aux_sym_stdin_null_token1] = ACTIONS(1921), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1921), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1921), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1921), - [aux_sym_syslog_facility_token1] = ACTIONS(1921), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1921), - [aux_sym_keep_alive_token1] = ACTIONS(1921), - [aux_sym_tunnel_token1] = ACTIONS(1923), - [aux_sym_tunnel_device_token1] = ACTIONS(1921), - [aux_sym_update_host_keys_token1] = ACTIONS(1921), - [aux_sym_use_keychain_token1] = ACTIONS(1921), - [aux_sym_use_roaming_token1] = ACTIONS(1921), - [aux_sym_user_token1] = ACTIONS(1923), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1921), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1921), - [aux_sym_visual_host_key_token1] = ACTIONS(1921), - [aux_sym_xauth_location_token1] = ACTIONS(1921), + [ts_builtin_sym_end] = ACTIONS(1928), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1930), + [anon_sym_DQUOTE] = ACTIONS(1932), + [aux_sym_match_token1] = ACTIONS(1928), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1928), + [aux_sym_address_family_token1] = ACTIONS(1928), + [aux_sym_batch_mode_token1] = ACTIONS(1928), + [aux_sym_bind_address_token1] = ACTIONS(1928), + [aux_sym_bind_interface_token1] = ACTIONS(1928), + [aux_sym_canonical_domains_token1] = ACTIONS(1928), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1928), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1928), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1928), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1928), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1928), + [aux_sym_certificate_file_token1] = ACTIONS(1928), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1928), + [aux_sym_check_host_ip_token1] = ACTIONS(1928), + [aux_sym_ciphers_token1] = ACTIONS(1928), + [aux_sym_cipher_token1] = ACTIONS(1930), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1928), + [aux_sym_compression_token1] = ACTIONS(1928), + [aux_sym_connection_attempts_token1] = ACTIONS(1928), + [aux_sym_connect_timeout_token1] = ACTIONS(1928), + [aux_sym_control_master_token1] = ACTIONS(1928), + [aux_sym_control_path_token1] = ACTIONS(1928), + [aux_sym_control_persist_token1] = ACTIONS(1928), + [aux_sym_dynamic_forward_token1] = ACTIONS(1928), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1928), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1928), + [aux_sym_escape_char_token1] = ACTIONS(1928), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1928), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1928), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1928), + [aux_sym_forward_agent_token1] = ACTIONS(1928), + [aux_sym_forward_x11_token1] = ACTIONS(1930), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1928), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1928), + [aux_sym_gateway_ports_token1] = ACTIONS(1928), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1928), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1928), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1928), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1928), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1928), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1928), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1928), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1928), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1928), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1928), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1928), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1928), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1928), + [aux_sym_host_key_alias_token1] = ACTIONS(1928), + [aux_sym_hostname_token1] = ACTIONS(1928), + [aux_sym_identities_only_token1] = ACTIONS(1928), + [aux_sym_identity_agent_token1] = ACTIONS(1928), + [aux_sym_identity_file_token1] = ACTIONS(1928), + [aux_sym_ignore_unknown_token1] = ACTIONS(1928), + [aux_sym_include_token1] = ACTIONS(1928), + [aux_sym_ip_qos_token1] = ACTIONS(1928), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1928), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1928), + [aux_sym_kex_algorithms_token1] = ACTIONS(1928), + [aux_sym_known_hosts_command_token1] = ACTIONS(1928), + [aux_sym_local_command_token1] = ACTIONS(1928), + [aux_sym_local_forward_token1] = ACTIONS(1928), + [aux_sym_log_level_token1] = ACTIONS(1928), + [aux_sym_log_verbose_token1] = ACTIONS(1928), + [aux_sym_macs_token1] = ACTIONS(1928), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1928), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1928), + [aux_sym_password_authentication_token1] = ACTIONS(1928), + [aux_sym_permit_local_command_token1] = ACTIONS(1928), + [aux_sym_permit_remote_open_token1] = ACTIONS(1928), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1928), + [aux_sym_port_token1] = ACTIONS(1928), + [aux_sym_preferred_authentications_token1] = ACTIONS(1928), + [aux_sym_protocol_token1] = ACTIONS(1928), + [aux_sym_proxy_command_token1] = ACTIONS(1928), + [aux_sym_proxy_jump_token1] = ACTIONS(1928), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1928), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1928), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1928), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1928), + [aux_sym_rekey_limit_token1] = ACTIONS(1928), + [aux_sym_remote_command_token1] = ACTIONS(1928), + [aux_sym_remote_forward_token1] = ACTIONS(1928), + [aux_sym_request_tty_token1] = ACTIONS(1928), + [aux_sym_required_rsa_size_token1] = ACTIONS(1928), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1928), + [aux_sym_security_key_provider_token1] = ACTIONS(1928), + [aux_sym_send_env_token1] = ACTIONS(1928), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1928), + [aux_sym_server_alive_interval_token1] = ACTIONS(1928), + [aux_sym_session_type_token1] = ACTIONS(1928), + [aux_sym_set_env_token1] = ACTIONS(1928), + [aux_sym_stdin_null_token1] = ACTIONS(1928), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1928), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1928), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1928), + [aux_sym_syslog_facility_token1] = ACTIONS(1928), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1928), + [aux_sym_keep_alive_token1] = ACTIONS(1928), + [aux_sym_tunnel_token1] = ACTIONS(1930), + [aux_sym_tunnel_device_token1] = ACTIONS(1928), + [aux_sym_update_host_keys_token1] = ACTIONS(1928), + [aux_sym_use_keychain_token1] = ACTIONS(1928), + [aux_sym_use_roaming_token1] = ACTIONS(1928), + [aux_sym_user_token1] = ACTIONS(1930), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1928), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1928), + [aux_sym_visual_host_key_token1] = ACTIONS(1928), + [aux_sym_xauth_location_token1] = ACTIONS(1928), }, [233] = { - [ts_builtin_sym_end] = ACTIONS(1925), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1929), - [aux_sym_match_token1] = ACTIONS(1925), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1925), - [aux_sym_address_family_token1] = ACTIONS(1925), - [aux_sym_batch_mode_token1] = ACTIONS(1925), - [aux_sym_bind_address_token1] = ACTIONS(1925), - [aux_sym_bind_interface_token1] = ACTIONS(1925), - [aux_sym_canonical_domains_token1] = ACTIONS(1925), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1925), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1925), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1925), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1925), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1925), - [aux_sym_certificate_file_token1] = ACTIONS(1925), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1925), - [aux_sym_check_host_ip_token1] = ACTIONS(1925), - [aux_sym_ciphers_token1] = ACTIONS(1925), - [aux_sym_cipher_token1] = ACTIONS(1927), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1925), - [aux_sym_compression_token1] = ACTIONS(1925), - [aux_sym_connection_attempts_token1] = ACTIONS(1925), - [aux_sym_connect_timeout_token1] = ACTIONS(1925), - [aux_sym_control_master_token1] = ACTIONS(1925), - [aux_sym_control_path_token1] = ACTIONS(1925), - [aux_sym_control_persist_token1] = ACTIONS(1925), - [aux_sym_dynamic_forward_token1] = ACTIONS(1925), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1925), - [aux_sym_escape_char_token1] = ACTIONS(1925), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1925), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1925), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1925), - [aux_sym_forward_agent_token1] = ACTIONS(1925), - [aux_sym_forward_x11_token1] = ACTIONS(1927), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1925), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1925), - [aux_sym_gateway_ports_token1] = ACTIONS(1925), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1925), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1925), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1925), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1925), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1925), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1925), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1925), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1925), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1925), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1925), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1925), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1925), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1925), - [aux_sym_host_key_alias_token1] = ACTIONS(1925), - [aux_sym_hostname_token1] = ACTIONS(1925), - [aux_sym_identities_only_token1] = ACTIONS(1925), - [aux_sym_identity_agent_token1] = ACTIONS(1925), - [aux_sym_identity_file_token1] = ACTIONS(1925), - [aux_sym_ignore_unknown_token1] = ACTIONS(1925), - [aux_sym_include_token1] = ACTIONS(1925), - [aux_sym_ip_qos_token1] = ACTIONS(1925), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1925), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1925), - [aux_sym_kex_algorithms_token1] = ACTIONS(1925), - [aux_sym_known_hosts_command_token1] = ACTIONS(1925), - [aux_sym_local_command_token1] = ACTIONS(1925), - [aux_sym_local_forward_token1] = ACTIONS(1925), - [aux_sym_log_level_token1] = ACTIONS(1925), - [aux_sym_log_verbose_token1] = ACTIONS(1925), - [aux_sym_macs_token1] = ACTIONS(1925), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1925), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1925), - [aux_sym_password_authentication_token1] = ACTIONS(1925), - [aux_sym_permit_local_command_token1] = ACTIONS(1925), - [aux_sym_permit_remote_open_token1] = ACTIONS(1925), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1925), - [aux_sym_port_token1] = ACTIONS(1925), - [aux_sym_preferred_authentications_token1] = ACTIONS(1925), - [aux_sym_protocol_token1] = ACTIONS(1925), - [aux_sym_proxy_command_token1] = ACTIONS(1925), - [aux_sym_proxy_jump_token1] = ACTIONS(1925), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1925), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1925), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1925), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1925), - [aux_sym_rekey_limit_token1] = ACTIONS(1925), - [aux_sym_remote_command_token1] = ACTIONS(1925), - [aux_sym_remote_forward_token1] = ACTIONS(1925), - [aux_sym_request_tty_token1] = ACTIONS(1925), - [aux_sym_required_rsa_size_token1] = ACTIONS(1925), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1925), - [aux_sym_security_key_provider_token1] = ACTIONS(1925), - [aux_sym_send_env_token1] = ACTIONS(1925), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1925), - [aux_sym_server_alive_interval_token1] = ACTIONS(1925), - [aux_sym_session_type_token1] = ACTIONS(1925), - [aux_sym_set_env_token1] = ACTIONS(1925), - [aux_sym_stdin_null_token1] = ACTIONS(1925), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1925), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1925), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1925), - [aux_sym_syslog_facility_token1] = ACTIONS(1925), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1925), - [aux_sym_keep_alive_token1] = ACTIONS(1925), - [aux_sym_tunnel_token1] = ACTIONS(1927), - [aux_sym_tunnel_device_token1] = ACTIONS(1925), - [aux_sym_update_host_keys_token1] = ACTIONS(1925), - [aux_sym_use_keychain_token1] = ACTIONS(1925), - [aux_sym_use_roaming_token1] = ACTIONS(1925), - [aux_sym_user_token1] = ACTIONS(1927), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1925), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1925), - [aux_sym_visual_host_key_token1] = ACTIONS(1925), - [aux_sym_xauth_location_token1] = ACTIONS(1925), + [ts_builtin_sym_end] = ACTIONS(1934), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1936), + [anon_sym_DQUOTE] = ACTIONS(1934), + [aux_sym_match_token1] = ACTIONS(1934), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1934), + [aux_sym_address_family_token1] = ACTIONS(1934), + [aux_sym_batch_mode_token1] = ACTIONS(1934), + [aux_sym_bind_address_token1] = ACTIONS(1934), + [aux_sym_bind_interface_token1] = ACTIONS(1934), + [aux_sym_canonical_domains_token1] = ACTIONS(1934), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1934), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1934), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1934), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1934), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1934), + [aux_sym_certificate_file_token1] = ACTIONS(1934), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1934), + [aux_sym_check_host_ip_token1] = ACTIONS(1934), + [aux_sym_ciphers_token1] = ACTIONS(1934), + [aux_sym_cipher_token1] = ACTIONS(1936), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1934), + [aux_sym_compression_token1] = ACTIONS(1934), + [aux_sym_connection_attempts_token1] = ACTIONS(1934), + [aux_sym_connect_timeout_token1] = ACTIONS(1934), + [aux_sym_control_master_token1] = ACTIONS(1934), + [aux_sym_control_path_token1] = ACTIONS(1934), + [aux_sym_control_persist_token1] = ACTIONS(1934), + [aux_sym_dynamic_forward_token1] = ACTIONS(1934), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1934), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1934), + [aux_sym_escape_char_token1] = ACTIONS(1934), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1934), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1934), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1934), + [aux_sym_forward_agent_token1] = ACTIONS(1934), + [aux_sym_forward_x11_token1] = ACTIONS(1936), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1934), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1934), + [aux_sym_gateway_ports_token1] = ACTIONS(1934), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1934), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1934), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1934), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1934), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1934), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1934), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1934), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1934), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1934), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1934), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1934), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1934), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1934), + [aux_sym_host_key_alias_token1] = ACTIONS(1934), + [aux_sym_hostname_token1] = ACTIONS(1934), + [aux_sym_identities_only_token1] = ACTIONS(1934), + [aux_sym_identity_agent_token1] = ACTIONS(1934), + [aux_sym_identity_file_token1] = ACTIONS(1934), + [aux_sym_ignore_unknown_token1] = ACTIONS(1934), + [aux_sym_include_token1] = ACTIONS(1934), + [aux_sym_ip_qos_token1] = ACTIONS(1934), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1934), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1934), + [aux_sym_kex_algorithms_token1] = ACTIONS(1934), + [aux_sym_known_hosts_command_token1] = ACTIONS(1934), + [aux_sym_local_command_token1] = ACTIONS(1934), + [aux_sym_local_forward_token1] = ACTIONS(1934), + [aux_sym_log_level_token1] = ACTIONS(1934), + [aux_sym_log_verbose_token1] = ACTIONS(1934), + [aux_sym_macs_token1] = ACTIONS(1934), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1934), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1934), + [aux_sym_password_authentication_token1] = ACTIONS(1934), + [aux_sym_permit_local_command_token1] = ACTIONS(1934), + [aux_sym_permit_remote_open_token1] = ACTIONS(1934), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1934), + [aux_sym_port_token1] = ACTIONS(1934), + [aux_sym_preferred_authentications_token1] = ACTIONS(1934), + [aux_sym_protocol_token1] = ACTIONS(1934), + [aux_sym_proxy_command_token1] = ACTIONS(1934), + [aux_sym_proxy_jump_token1] = ACTIONS(1934), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1934), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1934), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1934), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1934), + [aux_sym_rekey_limit_token1] = ACTIONS(1934), + [aux_sym_remote_command_token1] = ACTIONS(1934), + [aux_sym_remote_forward_token1] = ACTIONS(1934), + [aux_sym_request_tty_token1] = ACTIONS(1934), + [aux_sym_required_rsa_size_token1] = ACTIONS(1934), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1934), + [aux_sym_security_key_provider_token1] = ACTIONS(1934), + [aux_sym_send_env_token1] = ACTIONS(1934), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1934), + [aux_sym_server_alive_interval_token1] = ACTIONS(1934), + [aux_sym_session_type_token1] = ACTIONS(1934), + [aux_sym_set_env_token1] = ACTIONS(1934), + [aux_sym_stdin_null_token1] = ACTIONS(1934), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1934), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1934), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1934), + [aux_sym_syslog_facility_token1] = ACTIONS(1934), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1934), + [aux_sym_keep_alive_token1] = ACTIONS(1934), + [aux_sym_tunnel_token1] = ACTIONS(1936), + [aux_sym_tunnel_device_token1] = ACTIONS(1934), + [aux_sym_update_host_keys_token1] = ACTIONS(1934), + [aux_sym_use_keychain_token1] = ACTIONS(1934), + [aux_sym_use_roaming_token1] = ACTIONS(1934), + [aux_sym_user_token1] = ACTIONS(1936), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1934), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1934), + [aux_sym_visual_host_key_token1] = ACTIONS(1934), + [aux_sym_xauth_location_token1] = ACTIONS(1934), }, [234] = { - [ts_builtin_sym_end] = ACTIONS(1931), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1933), - [anon_sym_DQUOTE] = ACTIONS(1931), - [aux_sym_match_token1] = ACTIONS(1931), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1931), - [aux_sym_address_family_token1] = ACTIONS(1931), - [aux_sym_batch_mode_token1] = ACTIONS(1931), - [aux_sym_bind_address_token1] = ACTIONS(1931), - [aux_sym_bind_interface_token1] = ACTIONS(1931), - [aux_sym_canonical_domains_token1] = ACTIONS(1931), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1931), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1931), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1931), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1931), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1931), - [aux_sym_certificate_file_token1] = ACTIONS(1931), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1931), - [aux_sym_check_host_ip_token1] = ACTIONS(1931), - [aux_sym_ciphers_token1] = ACTIONS(1931), - [aux_sym_cipher_token1] = ACTIONS(1933), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1931), - [aux_sym_compression_token1] = ACTIONS(1931), - [aux_sym_connection_attempts_token1] = ACTIONS(1931), - [aux_sym_connect_timeout_token1] = ACTIONS(1931), - [aux_sym_control_master_token1] = ACTIONS(1931), - [aux_sym_control_path_token1] = ACTIONS(1931), - [aux_sym_control_persist_token1] = ACTIONS(1931), - [aux_sym_dynamic_forward_token1] = ACTIONS(1931), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1931), - [aux_sym_escape_char_token1] = ACTIONS(1931), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1931), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1931), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1931), - [aux_sym_forward_agent_token1] = ACTIONS(1931), - [aux_sym_forward_x11_token1] = ACTIONS(1933), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1931), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1931), - [aux_sym_gateway_ports_token1] = ACTIONS(1931), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1931), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1931), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1931), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1931), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1931), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1931), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1931), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1931), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1931), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1931), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1931), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1931), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1931), - [aux_sym_host_key_alias_token1] = ACTIONS(1931), - [aux_sym_hostname_token1] = ACTIONS(1931), - [aux_sym_identities_only_token1] = ACTIONS(1931), - [aux_sym_identity_agent_token1] = ACTIONS(1931), - [aux_sym_identity_file_token1] = ACTIONS(1931), - [aux_sym_ignore_unknown_token1] = ACTIONS(1931), - [aux_sym_include_token1] = ACTIONS(1931), - [aux_sym_ip_qos_token1] = ACTIONS(1931), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1931), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1931), - [aux_sym_kex_algorithms_token1] = ACTIONS(1931), - [aux_sym_known_hosts_command_token1] = ACTIONS(1931), - [aux_sym_local_command_token1] = ACTIONS(1931), - [aux_sym_local_forward_token1] = ACTIONS(1931), - [aux_sym_log_level_token1] = ACTIONS(1931), - [aux_sym_log_verbose_token1] = ACTIONS(1931), - [aux_sym_macs_token1] = ACTIONS(1931), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1931), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1931), - [aux_sym_password_authentication_token1] = ACTIONS(1931), - [aux_sym_permit_local_command_token1] = ACTIONS(1931), - [aux_sym_permit_remote_open_token1] = ACTIONS(1931), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1931), - [aux_sym_port_token1] = ACTIONS(1931), - [aux_sym_preferred_authentications_token1] = ACTIONS(1931), - [aux_sym_protocol_token1] = ACTIONS(1931), - [aux_sym_proxy_command_token1] = ACTIONS(1931), - [aux_sym_proxy_jump_token1] = ACTIONS(1931), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1931), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1931), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1931), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1931), - [aux_sym_rekey_limit_token1] = ACTIONS(1931), - [aux_sym_remote_command_token1] = ACTIONS(1931), - [aux_sym_remote_forward_token1] = ACTIONS(1931), - [aux_sym_request_tty_token1] = ACTIONS(1931), - [aux_sym_required_rsa_size_token1] = ACTIONS(1931), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1931), - [aux_sym_security_key_provider_token1] = ACTIONS(1931), - [aux_sym_send_env_token1] = ACTIONS(1931), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1931), - [aux_sym_server_alive_interval_token1] = ACTIONS(1931), - [aux_sym_session_type_token1] = ACTIONS(1931), - [aux_sym_set_env_token1] = ACTIONS(1931), - [aux_sym_stdin_null_token1] = ACTIONS(1931), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1931), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1931), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1931), - [aux_sym_syslog_facility_token1] = ACTIONS(1931), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1931), - [aux_sym_keep_alive_token1] = ACTIONS(1931), - [aux_sym_tunnel_token1] = ACTIONS(1933), - [aux_sym_tunnel_device_token1] = ACTIONS(1931), - [aux_sym_update_host_keys_token1] = ACTIONS(1931), - [aux_sym_use_keychain_token1] = ACTIONS(1931), - [aux_sym_use_roaming_token1] = ACTIONS(1931), - [aux_sym_user_token1] = ACTIONS(1933), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1931), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1931), - [aux_sym_visual_host_key_token1] = ACTIONS(1931), - [aux_sym_xauth_location_token1] = ACTIONS(1931), + [ts_builtin_sym_end] = ACTIONS(1938), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1940), + [anon_sym_DQUOTE] = ACTIONS(1938), + [aux_sym_match_token1] = ACTIONS(1938), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1938), + [aux_sym_address_family_token1] = ACTIONS(1938), + [aux_sym_batch_mode_token1] = ACTIONS(1938), + [aux_sym_bind_address_token1] = ACTIONS(1938), + [aux_sym_bind_interface_token1] = ACTIONS(1938), + [aux_sym_canonical_domains_token1] = ACTIONS(1938), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1938), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1938), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1938), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1938), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1938), + [aux_sym_certificate_file_token1] = ACTIONS(1938), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1938), + [aux_sym_check_host_ip_token1] = ACTIONS(1938), + [aux_sym_ciphers_token1] = ACTIONS(1938), + [aux_sym_cipher_token1] = ACTIONS(1940), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1938), + [aux_sym_compression_token1] = ACTIONS(1938), + [aux_sym_connection_attempts_token1] = ACTIONS(1938), + [aux_sym_connect_timeout_token1] = ACTIONS(1938), + [aux_sym_control_master_token1] = ACTIONS(1938), + [aux_sym_control_path_token1] = ACTIONS(1938), + [aux_sym_control_persist_token1] = ACTIONS(1938), + [aux_sym_dynamic_forward_token1] = ACTIONS(1938), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1938), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1938), + [aux_sym_escape_char_token1] = ACTIONS(1938), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1938), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1938), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1938), + [aux_sym_forward_agent_token1] = ACTIONS(1938), + [aux_sym_forward_x11_token1] = ACTIONS(1940), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1938), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1938), + [aux_sym_gateway_ports_token1] = ACTIONS(1938), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1938), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1938), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1938), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1938), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1938), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1938), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1938), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1938), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1938), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1938), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1938), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1938), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1938), + [aux_sym_host_key_alias_token1] = ACTIONS(1938), + [aux_sym_hostname_token1] = ACTIONS(1938), + [aux_sym_identities_only_token1] = ACTIONS(1938), + [aux_sym_identity_agent_token1] = ACTIONS(1938), + [aux_sym_identity_file_token1] = ACTIONS(1938), + [aux_sym_ignore_unknown_token1] = ACTIONS(1938), + [aux_sym_include_token1] = ACTIONS(1938), + [aux_sym_ip_qos_token1] = ACTIONS(1938), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1938), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1938), + [aux_sym_kex_algorithms_token1] = ACTIONS(1938), + [aux_sym_known_hosts_command_token1] = ACTIONS(1938), + [aux_sym_local_command_token1] = ACTIONS(1938), + [aux_sym_local_forward_token1] = ACTIONS(1938), + [aux_sym_log_level_token1] = ACTIONS(1938), + [aux_sym_log_verbose_token1] = ACTIONS(1938), + [aux_sym_macs_token1] = ACTIONS(1938), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1938), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1938), + [aux_sym_password_authentication_token1] = ACTIONS(1938), + [aux_sym_permit_local_command_token1] = ACTIONS(1938), + [aux_sym_permit_remote_open_token1] = ACTIONS(1938), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1938), + [aux_sym_port_token1] = ACTIONS(1938), + [aux_sym_preferred_authentications_token1] = ACTIONS(1938), + [aux_sym_protocol_token1] = ACTIONS(1938), + [aux_sym_proxy_command_token1] = ACTIONS(1938), + [aux_sym_proxy_jump_token1] = ACTIONS(1938), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1938), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1938), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1938), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1938), + [aux_sym_rekey_limit_token1] = ACTIONS(1938), + [aux_sym_remote_command_token1] = ACTIONS(1938), + [aux_sym_remote_forward_token1] = ACTIONS(1938), + [aux_sym_request_tty_token1] = ACTIONS(1938), + [aux_sym_required_rsa_size_token1] = ACTIONS(1938), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1938), + [aux_sym_security_key_provider_token1] = ACTIONS(1938), + [aux_sym_send_env_token1] = ACTIONS(1938), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1938), + [aux_sym_server_alive_interval_token1] = ACTIONS(1938), + [aux_sym_session_type_token1] = ACTIONS(1938), + [aux_sym_set_env_token1] = ACTIONS(1938), + [aux_sym_stdin_null_token1] = ACTIONS(1938), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1938), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1938), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1938), + [aux_sym_syslog_facility_token1] = ACTIONS(1938), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1938), + [aux_sym_keep_alive_token1] = ACTIONS(1938), + [aux_sym_tunnel_token1] = ACTIONS(1940), + [aux_sym_tunnel_device_token1] = ACTIONS(1938), + [aux_sym_update_host_keys_token1] = ACTIONS(1938), + [aux_sym_use_keychain_token1] = ACTIONS(1938), + [aux_sym_use_roaming_token1] = ACTIONS(1938), + [aux_sym_user_token1] = ACTIONS(1940), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1938), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1938), + [aux_sym_visual_host_key_token1] = ACTIONS(1938), + [aux_sym_xauth_location_token1] = ACTIONS(1938), }, [235] = { - [ts_builtin_sym_end] = ACTIONS(1935), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1937), - [anon_sym_DQUOTE] = ACTIONS(1939), - [aux_sym_match_token1] = ACTIONS(1935), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1935), - [aux_sym_address_family_token1] = ACTIONS(1935), - [aux_sym_batch_mode_token1] = ACTIONS(1935), - [aux_sym_bind_address_token1] = ACTIONS(1935), - [aux_sym_bind_interface_token1] = ACTIONS(1935), - [aux_sym_canonical_domains_token1] = ACTIONS(1935), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1935), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1935), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1935), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1935), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1935), - [aux_sym_certificate_file_token1] = ACTIONS(1935), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1935), - [aux_sym_check_host_ip_token1] = ACTIONS(1935), - [aux_sym_ciphers_token1] = ACTIONS(1935), - [aux_sym_cipher_token1] = ACTIONS(1937), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1935), - [aux_sym_compression_token1] = ACTIONS(1935), - [aux_sym_connection_attempts_token1] = ACTIONS(1935), - [aux_sym_connect_timeout_token1] = ACTIONS(1935), - [aux_sym_control_master_token1] = ACTIONS(1935), - [aux_sym_control_path_token1] = ACTIONS(1935), - [aux_sym_control_persist_token1] = ACTIONS(1935), - [aux_sym_dynamic_forward_token1] = ACTIONS(1935), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1935), - [aux_sym_escape_char_token1] = ACTIONS(1935), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1935), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1935), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1935), - [aux_sym_forward_agent_token1] = ACTIONS(1935), - [aux_sym_forward_x11_token1] = ACTIONS(1937), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1935), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1935), - [aux_sym_gateway_ports_token1] = ACTIONS(1935), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1935), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1935), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1935), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1935), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1935), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1935), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1935), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1935), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1935), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1935), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1935), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1935), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1935), - [aux_sym_host_key_alias_token1] = ACTIONS(1935), - [aux_sym_hostname_token1] = ACTIONS(1935), - [aux_sym_identities_only_token1] = ACTIONS(1935), - [aux_sym_identity_agent_token1] = ACTIONS(1935), - [aux_sym_identity_file_token1] = ACTIONS(1935), - [aux_sym_ignore_unknown_token1] = ACTIONS(1935), - [aux_sym_include_token1] = ACTIONS(1935), - [aux_sym_ip_qos_token1] = ACTIONS(1935), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1935), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1935), - [aux_sym_kex_algorithms_token1] = ACTIONS(1935), - [aux_sym_known_hosts_command_token1] = ACTIONS(1935), - [aux_sym_local_command_token1] = ACTIONS(1935), - [aux_sym_local_forward_token1] = ACTIONS(1935), - [aux_sym_log_level_token1] = ACTIONS(1935), - [aux_sym_log_verbose_token1] = ACTIONS(1935), - [aux_sym_macs_token1] = ACTIONS(1935), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1935), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1935), - [aux_sym_password_authentication_token1] = ACTIONS(1935), - [aux_sym_permit_local_command_token1] = ACTIONS(1935), - [aux_sym_permit_remote_open_token1] = ACTIONS(1935), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1935), - [aux_sym_port_token1] = ACTIONS(1935), - [aux_sym_preferred_authentications_token1] = ACTIONS(1935), - [aux_sym_protocol_token1] = ACTIONS(1935), - [aux_sym_proxy_command_token1] = ACTIONS(1935), - [aux_sym_proxy_jump_token1] = ACTIONS(1935), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1935), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1935), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1935), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1935), - [aux_sym_rekey_limit_token1] = ACTIONS(1935), - [aux_sym_remote_command_token1] = ACTIONS(1935), - [aux_sym_remote_forward_token1] = ACTIONS(1935), - [aux_sym_request_tty_token1] = ACTIONS(1935), - [aux_sym_required_rsa_size_token1] = ACTIONS(1935), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1935), - [aux_sym_security_key_provider_token1] = ACTIONS(1935), - [aux_sym_send_env_token1] = ACTIONS(1935), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1935), - [aux_sym_server_alive_interval_token1] = ACTIONS(1935), - [aux_sym_session_type_token1] = ACTIONS(1935), - [aux_sym_set_env_token1] = ACTIONS(1935), - [aux_sym_stdin_null_token1] = ACTIONS(1935), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1935), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1935), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1935), - [aux_sym_syslog_facility_token1] = ACTIONS(1935), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1935), - [aux_sym_keep_alive_token1] = ACTIONS(1935), - [aux_sym_tunnel_token1] = ACTIONS(1937), - [aux_sym_tunnel_device_token1] = ACTIONS(1935), - [aux_sym_update_host_keys_token1] = ACTIONS(1935), - [aux_sym_use_keychain_token1] = ACTIONS(1935), - [aux_sym_use_roaming_token1] = ACTIONS(1935), - [aux_sym_user_token1] = ACTIONS(1937), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1935), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1935), - [aux_sym_visual_host_key_token1] = ACTIONS(1935), - [aux_sym_xauth_location_token1] = ACTIONS(1935), + [ts_builtin_sym_end] = ACTIONS(1942), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1944), + [anon_sym_DQUOTE] = ACTIONS(1946), + [aux_sym_match_token1] = ACTIONS(1942), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1942), + [aux_sym_address_family_token1] = ACTIONS(1942), + [aux_sym_batch_mode_token1] = ACTIONS(1942), + [aux_sym_bind_address_token1] = ACTIONS(1942), + [aux_sym_bind_interface_token1] = ACTIONS(1942), + [aux_sym_canonical_domains_token1] = ACTIONS(1942), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1942), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1942), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1942), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1942), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1942), + [aux_sym_certificate_file_token1] = ACTIONS(1942), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1942), + [aux_sym_check_host_ip_token1] = ACTIONS(1942), + [aux_sym_ciphers_token1] = ACTIONS(1942), + [aux_sym_cipher_token1] = ACTIONS(1944), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1942), + [aux_sym_compression_token1] = ACTIONS(1942), + [aux_sym_connection_attempts_token1] = ACTIONS(1942), + [aux_sym_connect_timeout_token1] = ACTIONS(1942), + [aux_sym_control_master_token1] = ACTIONS(1942), + [aux_sym_control_path_token1] = ACTIONS(1942), + [aux_sym_control_persist_token1] = ACTIONS(1942), + [aux_sym_dynamic_forward_token1] = ACTIONS(1942), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1942), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1942), + [aux_sym_escape_char_token1] = ACTIONS(1942), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1942), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1942), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1942), + [aux_sym_forward_agent_token1] = ACTIONS(1942), + [aux_sym_forward_x11_token1] = ACTIONS(1944), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1942), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1942), + [aux_sym_gateway_ports_token1] = ACTIONS(1942), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1942), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1942), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1942), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1942), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1942), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1942), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1942), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1942), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1942), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1942), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1942), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1942), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1942), + [aux_sym_host_key_alias_token1] = ACTIONS(1942), + [aux_sym_hostname_token1] = ACTIONS(1942), + [aux_sym_identities_only_token1] = ACTIONS(1942), + [aux_sym_identity_agent_token1] = ACTIONS(1942), + [aux_sym_identity_file_token1] = ACTIONS(1942), + [aux_sym_ignore_unknown_token1] = ACTIONS(1942), + [aux_sym_include_token1] = ACTIONS(1942), + [aux_sym_ip_qos_token1] = ACTIONS(1942), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1942), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1942), + [aux_sym_kex_algorithms_token1] = ACTIONS(1942), + [aux_sym_known_hosts_command_token1] = ACTIONS(1942), + [aux_sym_local_command_token1] = ACTIONS(1942), + [aux_sym_local_forward_token1] = ACTIONS(1942), + [aux_sym_log_level_token1] = ACTIONS(1942), + [aux_sym_log_verbose_token1] = ACTIONS(1942), + [aux_sym_macs_token1] = ACTIONS(1942), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1942), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1942), + [aux_sym_password_authentication_token1] = ACTIONS(1942), + [aux_sym_permit_local_command_token1] = ACTIONS(1942), + [aux_sym_permit_remote_open_token1] = ACTIONS(1942), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1942), + [aux_sym_port_token1] = ACTIONS(1942), + [aux_sym_preferred_authentications_token1] = ACTIONS(1942), + [aux_sym_protocol_token1] = ACTIONS(1942), + [aux_sym_proxy_command_token1] = ACTIONS(1942), + [aux_sym_proxy_jump_token1] = ACTIONS(1942), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1942), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1942), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1942), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1942), + [aux_sym_rekey_limit_token1] = ACTIONS(1942), + [aux_sym_remote_command_token1] = ACTIONS(1942), + [aux_sym_remote_forward_token1] = ACTIONS(1942), + [aux_sym_request_tty_token1] = ACTIONS(1942), + [aux_sym_required_rsa_size_token1] = ACTIONS(1942), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1942), + [aux_sym_security_key_provider_token1] = ACTIONS(1942), + [aux_sym_send_env_token1] = ACTIONS(1942), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1942), + [aux_sym_server_alive_interval_token1] = ACTIONS(1942), + [aux_sym_session_type_token1] = ACTIONS(1942), + [aux_sym_set_env_token1] = ACTIONS(1942), + [aux_sym_stdin_null_token1] = ACTIONS(1942), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1942), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1942), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1942), + [aux_sym_syslog_facility_token1] = ACTIONS(1942), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1942), + [aux_sym_keep_alive_token1] = ACTIONS(1942), + [aux_sym_tunnel_token1] = ACTIONS(1944), + [aux_sym_tunnel_device_token1] = ACTIONS(1942), + [aux_sym_update_host_keys_token1] = ACTIONS(1942), + [aux_sym_use_keychain_token1] = ACTIONS(1942), + [aux_sym_use_roaming_token1] = ACTIONS(1942), + [aux_sym_user_token1] = ACTIONS(1944), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1942), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1942), + [aux_sym_visual_host_key_token1] = ACTIONS(1942), + [aux_sym_xauth_location_token1] = ACTIONS(1942), }, [236] = { - [ts_builtin_sym_end] = ACTIONS(1941), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1943), - [anon_sym_DQUOTE] = ACTIONS(1941), - [aux_sym_match_token1] = ACTIONS(1941), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1941), - [aux_sym_address_family_token1] = ACTIONS(1941), - [aux_sym_batch_mode_token1] = ACTIONS(1941), - [aux_sym_bind_address_token1] = ACTIONS(1941), - [aux_sym_bind_interface_token1] = ACTIONS(1941), - [aux_sym_canonical_domains_token1] = ACTIONS(1941), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1941), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1941), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1941), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1941), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1941), - [aux_sym_certificate_file_token1] = ACTIONS(1941), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1941), - [aux_sym_check_host_ip_token1] = ACTIONS(1941), - [aux_sym_ciphers_token1] = ACTIONS(1941), - [aux_sym_cipher_token1] = ACTIONS(1943), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1941), - [aux_sym_compression_token1] = ACTIONS(1941), - [aux_sym_connection_attempts_token1] = ACTIONS(1941), - [aux_sym_connect_timeout_token1] = ACTIONS(1941), - [aux_sym_control_master_token1] = ACTIONS(1941), - [aux_sym_control_path_token1] = ACTIONS(1941), - [aux_sym_control_persist_token1] = ACTIONS(1941), - [aux_sym_dynamic_forward_token1] = ACTIONS(1941), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1941), - [aux_sym_escape_char_token1] = ACTIONS(1941), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1941), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1941), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1941), - [aux_sym_forward_agent_token1] = ACTIONS(1941), - [aux_sym_forward_x11_token1] = ACTIONS(1943), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1941), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1941), - [aux_sym_gateway_ports_token1] = ACTIONS(1941), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1941), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1941), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1941), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1941), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1941), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1941), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1941), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1941), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1941), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1941), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1941), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1941), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1941), - [aux_sym_host_key_alias_token1] = ACTIONS(1941), - [aux_sym_hostname_token1] = ACTIONS(1941), - [aux_sym_identities_only_token1] = ACTIONS(1941), - [aux_sym_identity_agent_token1] = ACTIONS(1941), - [aux_sym_identity_file_token1] = ACTIONS(1941), - [aux_sym_ignore_unknown_token1] = ACTIONS(1941), - [aux_sym_include_token1] = ACTIONS(1941), - [aux_sym_ip_qos_token1] = ACTIONS(1941), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1941), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1941), - [aux_sym_kex_algorithms_token1] = ACTIONS(1941), - [aux_sym_known_hosts_command_token1] = ACTIONS(1941), - [aux_sym_local_command_token1] = ACTIONS(1941), - [aux_sym_local_forward_token1] = ACTIONS(1941), - [aux_sym_log_level_token1] = ACTIONS(1941), - [aux_sym_log_verbose_token1] = ACTIONS(1941), - [aux_sym_macs_token1] = ACTIONS(1941), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1941), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1941), - [aux_sym_password_authentication_token1] = ACTIONS(1941), - [aux_sym_permit_local_command_token1] = ACTIONS(1941), - [aux_sym_permit_remote_open_token1] = ACTIONS(1941), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1941), - [aux_sym_port_token1] = ACTIONS(1941), - [aux_sym_preferred_authentications_token1] = ACTIONS(1941), - [aux_sym_protocol_token1] = ACTIONS(1941), - [aux_sym_proxy_command_token1] = ACTIONS(1941), - [aux_sym_proxy_jump_token1] = ACTIONS(1941), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1941), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1941), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1941), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1941), - [aux_sym_rekey_limit_token1] = ACTIONS(1941), - [aux_sym_remote_command_token1] = ACTIONS(1941), - [aux_sym_remote_forward_token1] = ACTIONS(1941), - [aux_sym_request_tty_token1] = ACTIONS(1941), - [aux_sym_required_rsa_size_token1] = ACTIONS(1941), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1941), - [aux_sym_security_key_provider_token1] = ACTIONS(1941), - [aux_sym_send_env_token1] = ACTIONS(1941), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1941), - [aux_sym_server_alive_interval_token1] = ACTIONS(1941), - [aux_sym_session_type_token1] = ACTIONS(1941), - [aux_sym_set_env_token1] = ACTIONS(1941), - [aux_sym_stdin_null_token1] = ACTIONS(1941), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1941), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1941), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1941), - [aux_sym_syslog_facility_token1] = ACTIONS(1941), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1941), - [aux_sym_keep_alive_token1] = ACTIONS(1941), - [aux_sym_tunnel_token1] = ACTIONS(1943), - [aux_sym_tunnel_device_token1] = ACTIONS(1941), - [aux_sym_update_host_keys_token1] = ACTIONS(1941), - [aux_sym_use_keychain_token1] = ACTIONS(1941), - [aux_sym_use_roaming_token1] = ACTIONS(1941), - [aux_sym_user_token1] = ACTIONS(1943), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1941), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1941), - [aux_sym_visual_host_key_token1] = ACTIONS(1941), - [aux_sym_xauth_location_token1] = ACTIONS(1941), + [ts_builtin_sym_end] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1948), + [aux_sym_match_token1] = ACTIONS(1948), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1948), + [aux_sym_address_family_token1] = ACTIONS(1948), + [aux_sym_batch_mode_token1] = ACTIONS(1948), + [aux_sym_bind_address_token1] = ACTIONS(1948), + [aux_sym_bind_interface_token1] = ACTIONS(1948), + [aux_sym_canonical_domains_token1] = ACTIONS(1948), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1948), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1948), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1948), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1948), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1948), + [aux_sym_certificate_file_token1] = ACTIONS(1948), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1948), + [aux_sym_check_host_ip_token1] = ACTIONS(1948), + [aux_sym_ciphers_token1] = ACTIONS(1948), + [aux_sym_cipher_token1] = ACTIONS(1950), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1948), + [aux_sym_compression_token1] = ACTIONS(1948), + [aux_sym_connection_attempts_token1] = ACTIONS(1948), + [aux_sym_connect_timeout_token1] = ACTIONS(1948), + [aux_sym_control_master_token1] = ACTIONS(1948), + [aux_sym_control_path_token1] = ACTIONS(1948), + [aux_sym_control_persist_token1] = ACTIONS(1948), + [aux_sym_dynamic_forward_token1] = ACTIONS(1948), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1948), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1948), + [aux_sym_escape_char_token1] = ACTIONS(1948), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1948), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1948), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1948), + [aux_sym_forward_agent_token1] = ACTIONS(1948), + [aux_sym_forward_x11_token1] = ACTIONS(1950), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1948), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1948), + [aux_sym_gateway_ports_token1] = ACTIONS(1948), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1948), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1948), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1948), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1948), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1948), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1948), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1948), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1948), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1948), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1948), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1948), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1948), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1948), + [aux_sym_host_key_alias_token1] = ACTIONS(1948), + [aux_sym_hostname_token1] = ACTIONS(1948), + [aux_sym_identities_only_token1] = ACTIONS(1948), + [aux_sym_identity_agent_token1] = ACTIONS(1948), + [aux_sym_identity_file_token1] = ACTIONS(1948), + [aux_sym_ignore_unknown_token1] = ACTIONS(1948), + [aux_sym_include_token1] = ACTIONS(1948), + [aux_sym_ip_qos_token1] = ACTIONS(1948), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1948), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1948), + [aux_sym_kex_algorithms_token1] = ACTIONS(1948), + [aux_sym_known_hosts_command_token1] = ACTIONS(1948), + [aux_sym_local_command_token1] = ACTIONS(1948), + [aux_sym_local_forward_token1] = ACTIONS(1948), + [aux_sym_log_level_token1] = ACTIONS(1948), + [aux_sym_log_verbose_token1] = ACTIONS(1948), + [aux_sym_macs_token1] = ACTIONS(1948), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1948), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1948), + [aux_sym_password_authentication_token1] = ACTIONS(1948), + [aux_sym_permit_local_command_token1] = ACTIONS(1948), + [aux_sym_permit_remote_open_token1] = ACTIONS(1948), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1948), + [aux_sym_port_token1] = ACTIONS(1948), + [aux_sym_preferred_authentications_token1] = ACTIONS(1948), + [aux_sym_protocol_token1] = ACTIONS(1948), + [aux_sym_proxy_command_token1] = ACTIONS(1948), + [aux_sym_proxy_jump_token1] = ACTIONS(1948), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1948), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1948), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1948), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1948), + [aux_sym_rekey_limit_token1] = ACTIONS(1948), + [aux_sym_remote_command_token1] = ACTIONS(1948), + [aux_sym_remote_forward_token1] = ACTIONS(1948), + [aux_sym_request_tty_token1] = ACTIONS(1948), + [aux_sym_required_rsa_size_token1] = ACTIONS(1948), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1948), + [aux_sym_security_key_provider_token1] = ACTIONS(1948), + [aux_sym_send_env_token1] = ACTIONS(1948), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1948), + [aux_sym_server_alive_interval_token1] = ACTIONS(1948), + [aux_sym_session_type_token1] = ACTIONS(1948), + [aux_sym_set_env_token1] = ACTIONS(1948), + [aux_sym_stdin_null_token1] = ACTIONS(1948), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1948), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1948), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1948), + [aux_sym_syslog_facility_token1] = ACTIONS(1948), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1948), + [aux_sym_keep_alive_token1] = ACTIONS(1948), + [aux_sym_tunnel_token1] = ACTIONS(1950), + [aux_sym_tunnel_device_token1] = ACTIONS(1948), + [aux_sym_update_host_keys_token1] = ACTIONS(1948), + [aux_sym_use_keychain_token1] = ACTIONS(1948), + [aux_sym_use_roaming_token1] = ACTIONS(1948), + [aux_sym_user_token1] = ACTIONS(1950), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1948), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1948), + [aux_sym_visual_host_key_token1] = ACTIONS(1948), + [aux_sym_xauth_location_token1] = ACTIONS(1948), }, [237] = { - [ts_builtin_sym_end] = ACTIONS(1945), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1947), - [anon_sym_DQUOTE] = ACTIONS(1945), - [aux_sym_match_token1] = ACTIONS(1945), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1945), - [aux_sym_address_family_token1] = ACTIONS(1945), - [aux_sym_batch_mode_token1] = ACTIONS(1945), - [aux_sym_bind_address_token1] = ACTIONS(1945), - [aux_sym_bind_interface_token1] = ACTIONS(1945), - [aux_sym_canonical_domains_token1] = ACTIONS(1945), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1945), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1945), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1945), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1945), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1945), - [aux_sym_certificate_file_token1] = ACTIONS(1945), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1945), - [aux_sym_check_host_ip_token1] = ACTIONS(1945), - [aux_sym_ciphers_token1] = ACTIONS(1945), - [aux_sym_cipher_token1] = ACTIONS(1947), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1945), - [aux_sym_compression_token1] = ACTIONS(1945), - [aux_sym_connection_attempts_token1] = ACTIONS(1945), - [aux_sym_connect_timeout_token1] = ACTIONS(1945), - [aux_sym_control_master_token1] = ACTIONS(1945), - [aux_sym_control_path_token1] = ACTIONS(1945), - [aux_sym_control_persist_token1] = ACTIONS(1945), - [aux_sym_dynamic_forward_token1] = ACTIONS(1945), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1945), - [aux_sym_escape_char_token1] = ACTIONS(1945), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1945), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1945), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1945), - [aux_sym_forward_agent_token1] = ACTIONS(1945), - [aux_sym_forward_x11_token1] = ACTIONS(1947), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1945), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1945), - [aux_sym_gateway_ports_token1] = ACTIONS(1945), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1945), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1945), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1945), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1945), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1945), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1945), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1945), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1945), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1945), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1945), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1945), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1945), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1945), - [aux_sym_host_key_alias_token1] = ACTIONS(1945), - [aux_sym_hostname_token1] = ACTIONS(1945), - [aux_sym_identities_only_token1] = ACTIONS(1945), - [aux_sym_identity_agent_token1] = ACTIONS(1945), - [aux_sym_identity_file_token1] = ACTIONS(1945), - [aux_sym_ignore_unknown_token1] = ACTIONS(1945), - [aux_sym_include_token1] = ACTIONS(1945), - [aux_sym_ip_qos_token1] = ACTIONS(1945), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1945), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1945), - [aux_sym_kex_algorithms_token1] = ACTIONS(1945), - [aux_sym_known_hosts_command_token1] = ACTIONS(1945), - [aux_sym_local_command_token1] = ACTIONS(1945), - [aux_sym_local_forward_token1] = ACTIONS(1945), - [aux_sym_log_level_token1] = ACTIONS(1945), - [aux_sym_log_verbose_token1] = ACTIONS(1945), - [aux_sym_macs_token1] = ACTIONS(1945), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1945), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1945), - [aux_sym_password_authentication_token1] = ACTIONS(1945), - [aux_sym_permit_local_command_token1] = ACTIONS(1945), - [aux_sym_permit_remote_open_token1] = ACTIONS(1945), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1945), - [aux_sym_port_token1] = ACTIONS(1945), - [aux_sym_preferred_authentications_token1] = ACTIONS(1945), - [aux_sym_protocol_token1] = ACTIONS(1945), - [aux_sym_proxy_command_token1] = ACTIONS(1945), - [aux_sym_proxy_jump_token1] = ACTIONS(1945), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1945), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1945), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1945), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1945), - [aux_sym_rekey_limit_token1] = ACTIONS(1945), - [aux_sym_remote_command_token1] = ACTIONS(1945), - [aux_sym_remote_forward_token1] = ACTIONS(1945), - [aux_sym_request_tty_token1] = ACTIONS(1945), - [aux_sym_required_rsa_size_token1] = ACTIONS(1945), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1945), - [aux_sym_security_key_provider_token1] = ACTIONS(1945), - [aux_sym_send_env_token1] = ACTIONS(1945), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1945), - [aux_sym_server_alive_interval_token1] = ACTIONS(1945), - [aux_sym_session_type_token1] = ACTIONS(1945), - [aux_sym_set_env_token1] = ACTIONS(1945), - [aux_sym_stdin_null_token1] = ACTIONS(1945), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1945), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1945), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1945), - [aux_sym_syslog_facility_token1] = ACTIONS(1945), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1945), - [aux_sym_keep_alive_token1] = ACTIONS(1945), - [aux_sym_tunnel_token1] = ACTIONS(1947), - [aux_sym_tunnel_device_token1] = ACTIONS(1945), - [aux_sym_update_host_keys_token1] = ACTIONS(1945), - [aux_sym_use_keychain_token1] = ACTIONS(1945), - [aux_sym_use_roaming_token1] = ACTIONS(1945), - [aux_sym_user_token1] = ACTIONS(1947), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1945), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1945), - [aux_sym_visual_host_key_token1] = ACTIONS(1945), - [aux_sym_xauth_location_token1] = ACTIONS(1945), + [ts_builtin_sym_end] = ACTIONS(1952), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1954), + [anon_sym_DQUOTE] = ACTIONS(1956), + [aux_sym_match_token1] = ACTIONS(1952), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1952), + [aux_sym_address_family_token1] = ACTIONS(1952), + [aux_sym_batch_mode_token1] = ACTIONS(1952), + [aux_sym_bind_address_token1] = ACTIONS(1952), + [aux_sym_bind_interface_token1] = ACTIONS(1952), + [aux_sym_canonical_domains_token1] = ACTIONS(1952), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1952), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1952), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1952), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1952), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1952), + [aux_sym_certificate_file_token1] = ACTIONS(1952), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1952), + [aux_sym_check_host_ip_token1] = ACTIONS(1952), + [aux_sym_ciphers_token1] = ACTIONS(1952), + [aux_sym_cipher_token1] = ACTIONS(1954), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1952), + [aux_sym_compression_token1] = ACTIONS(1952), + [aux_sym_connection_attempts_token1] = ACTIONS(1952), + [aux_sym_connect_timeout_token1] = ACTIONS(1952), + [aux_sym_control_master_token1] = ACTIONS(1952), + [aux_sym_control_path_token1] = ACTIONS(1952), + [aux_sym_control_persist_token1] = ACTIONS(1952), + [aux_sym_dynamic_forward_token1] = ACTIONS(1952), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1952), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1952), + [aux_sym_escape_char_token1] = ACTIONS(1952), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1952), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1952), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1952), + [aux_sym_forward_agent_token1] = ACTIONS(1952), + [aux_sym_forward_x11_token1] = ACTIONS(1954), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1952), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1952), + [aux_sym_gateway_ports_token1] = ACTIONS(1952), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1952), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1952), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1952), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1952), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1952), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1952), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1952), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1952), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1952), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1952), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1952), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1952), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1952), + [aux_sym_host_key_alias_token1] = ACTIONS(1952), + [aux_sym_hostname_token1] = ACTIONS(1952), + [aux_sym_identities_only_token1] = ACTIONS(1952), + [aux_sym_identity_agent_token1] = ACTIONS(1952), + [aux_sym_identity_file_token1] = ACTIONS(1952), + [aux_sym_ignore_unknown_token1] = ACTIONS(1952), + [aux_sym_include_token1] = ACTIONS(1952), + [aux_sym_ip_qos_token1] = ACTIONS(1952), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1952), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1952), + [aux_sym_kex_algorithms_token1] = ACTIONS(1952), + [aux_sym_known_hosts_command_token1] = ACTIONS(1952), + [aux_sym_local_command_token1] = ACTIONS(1952), + [aux_sym_local_forward_token1] = ACTIONS(1952), + [aux_sym_log_level_token1] = ACTIONS(1952), + [aux_sym_log_verbose_token1] = ACTIONS(1952), + [aux_sym_macs_token1] = ACTIONS(1952), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1952), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1952), + [aux_sym_password_authentication_token1] = ACTIONS(1952), + [aux_sym_permit_local_command_token1] = ACTIONS(1952), + [aux_sym_permit_remote_open_token1] = ACTIONS(1952), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1952), + [aux_sym_port_token1] = ACTIONS(1952), + [aux_sym_preferred_authentications_token1] = ACTIONS(1952), + [aux_sym_protocol_token1] = ACTIONS(1952), + [aux_sym_proxy_command_token1] = ACTIONS(1952), + [aux_sym_proxy_jump_token1] = ACTIONS(1952), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1952), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1952), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1952), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1952), + [aux_sym_rekey_limit_token1] = ACTIONS(1952), + [aux_sym_remote_command_token1] = ACTIONS(1952), + [aux_sym_remote_forward_token1] = ACTIONS(1952), + [aux_sym_request_tty_token1] = ACTIONS(1952), + [aux_sym_required_rsa_size_token1] = ACTIONS(1952), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1952), + [aux_sym_security_key_provider_token1] = ACTIONS(1952), + [aux_sym_send_env_token1] = ACTIONS(1952), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1952), + [aux_sym_server_alive_interval_token1] = ACTIONS(1952), + [aux_sym_session_type_token1] = ACTIONS(1952), + [aux_sym_set_env_token1] = ACTIONS(1952), + [aux_sym_stdin_null_token1] = ACTIONS(1952), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1952), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1952), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1952), + [aux_sym_syslog_facility_token1] = ACTIONS(1952), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1952), + [aux_sym_keep_alive_token1] = ACTIONS(1952), + [aux_sym_tunnel_token1] = ACTIONS(1954), + [aux_sym_tunnel_device_token1] = ACTIONS(1952), + [aux_sym_update_host_keys_token1] = ACTIONS(1952), + [aux_sym_use_keychain_token1] = ACTIONS(1952), + [aux_sym_use_roaming_token1] = ACTIONS(1952), + [aux_sym_user_token1] = ACTIONS(1954), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1952), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1952), + [aux_sym_visual_host_key_token1] = ACTIONS(1952), + [aux_sym_xauth_location_token1] = ACTIONS(1952), }, [238] = { - [ts_builtin_sym_end] = ACTIONS(1949), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1951), - [anon_sym_DQUOTE] = ACTIONS(1953), - [aux_sym_match_token1] = ACTIONS(1949), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1949), - [aux_sym_address_family_token1] = ACTIONS(1949), - [aux_sym_batch_mode_token1] = ACTIONS(1949), - [aux_sym_bind_address_token1] = ACTIONS(1949), - [aux_sym_bind_interface_token1] = ACTIONS(1949), - [aux_sym_canonical_domains_token1] = ACTIONS(1949), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1949), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1949), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1949), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1949), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1949), - [aux_sym_certificate_file_token1] = ACTIONS(1949), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1949), - [aux_sym_check_host_ip_token1] = ACTIONS(1949), - [aux_sym_ciphers_token1] = ACTIONS(1949), - [aux_sym_cipher_token1] = ACTIONS(1951), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1949), - [aux_sym_compression_token1] = ACTIONS(1949), - [aux_sym_connection_attempts_token1] = ACTIONS(1949), - [aux_sym_connect_timeout_token1] = ACTIONS(1949), - [aux_sym_control_master_token1] = ACTIONS(1949), - [aux_sym_control_path_token1] = ACTIONS(1949), - [aux_sym_control_persist_token1] = ACTIONS(1949), - [aux_sym_dynamic_forward_token1] = ACTIONS(1949), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1949), - [aux_sym_escape_char_token1] = ACTIONS(1949), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1949), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1949), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1949), - [aux_sym_forward_agent_token1] = ACTIONS(1949), - [aux_sym_forward_x11_token1] = ACTIONS(1951), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1949), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1949), - [aux_sym_gateway_ports_token1] = ACTIONS(1949), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1949), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1949), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1949), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1949), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1949), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1949), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1949), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1949), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1949), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1949), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1949), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1949), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1949), - [aux_sym_host_key_alias_token1] = ACTIONS(1949), - [aux_sym_hostname_token1] = ACTIONS(1949), - [aux_sym_identities_only_token1] = ACTIONS(1949), - [aux_sym_identity_agent_token1] = ACTIONS(1949), - [aux_sym_identity_file_token1] = ACTIONS(1949), - [aux_sym_ignore_unknown_token1] = ACTIONS(1949), - [aux_sym_include_token1] = ACTIONS(1949), - [aux_sym_ip_qos_token1] = ACTIONS(1949), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1949), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1949), - [aux_sym_kex_algorithms_token1] = ACTIONS(1949), - [aux_sym_known_hosts_command_token1] = ACTIONS(1949), - [aux_sym_local_command_token1] = ACTIONS(1949), - [aux_sym_local_forward_token1] = ACTIONS(1949), - [aux_sym_log_level_token1] = ACTIONS(1949), - [aux_sym_log_verbose_token1] = ACTIONS(1949), - [aux_sym_macs_token1] = ACTIONS(1949), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1949), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1949), - [aux_sym_password_authentication_token1] = ACTIONS(1949), - [aux_sym_permit_local_command_token1] = ACTIONS(1949), - [aux_sym_permit_remote_open_token1] = ACTIONS(1949), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1949), - [aux_sym_port_token1] = ACTIONS(1949), - [aux_sym_preferred_authentications_token1] = ACTIONS(1949), - [aux_sym_protocol_token1] = ACTIONS(1949), - [aux_sym_proxy_command_token1] = ACTIONS(1949), - [aux_sym_proxy_jump_token1] = ACTIONS(1949), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1949), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1949), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1949), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1949), - [aux_sym_rekey_limit_token1] = ACTIONS(1949), - [aux_sym_remote_command_token1] = ACTIONS(1949), - [aux_sym_remote_forward_token1] = ACTIONS(1949), - [aux_sym_request_tty_token1] = ACTIONS(1949), - [aux_sym_required_rsa_size_token1] = ACTIONS(1949), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1949), - [aux_sym_security_key_provider_token1] = ACTIONS(1949), - [aux_sym_send_env_token1] = ACTIONS(1949), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1949), - [aux_sym_server_alive_interval_token1] = ACTIONS(1949), - [aux_sym_session_type_token1] = ACTIONS(1949), - [aux_sym_set_env_token1] = ACTIONS(1949), - [aux_sym_stdin_null_token1] = ACTIONS(1949), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1949), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1949), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1949), - [aux_sym_syslog_facility_token1] = ACTIONS(1949), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1949), - [aux_sym_keep_alive_token1] = ACTIONS(1949), - [aux_sym_tunnel_token1] = ACTIONS(1951), - [aux_sym_tunnel_device_token1] = ACTIONS(1949), - [aux_sym_update_host_keys_token1] = ACTIONS(1949), - [aux_sym_use_keychain_token1] = ACTIONS(1949), - [aux_sym_use_roaming_token1] = ACTIONS(1949), - [aux_sym_user_token1] = ACTIONS(1951), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1949), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1949), - [aux_sym_visual_host_key_token1] = ACTIONS(1949), - [aux_sym_xauth_location_token1] = ACTIONS(1949), + [ts_builtin_sym_end] = ACTIONS(1958), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1960), + [anon_sym_DQUOTE] = ACTIONS(1958), + [aux_sym_match_token1] = ACTIONS(1958), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1958), + [aux_sym_address_family_token1] = ACTIONS(1958), + [aux_sym_batch_mode_token1] = ACTIONS(1958), + [aux_sym_bind_address_token1] = ACTIONS(1958), + [aux_sym_bind_interface_token1] = ACTIONS(1958), + [aux_sym_canonical_domains_token1] = ACTIONS(1958), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1958), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1958), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1958), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1958), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1958), + [aux_sym_certificate_file_token1] = ACTIONS(1958), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1958), + [aux_sym_check_host_ip_token1] = ACTIONS(1958), + [aux_sym_ciphers_token1] = ACTIONS(1958), + [aux_sym_cipher_token1] = ACTIONS(1960), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1958), + [aux_sym_compression_token1] = ACTIONS(1958), + [aux_sym_connection_attempts_token1] = ACTIONS(1958), + [aux_sym_connect_timeout_token1] = ACTIONS(1958), + [aux_sym_control_master_token1] = ACTIONS(1958), + [aux_sym_control_path_token1] = ACTIONS(1958), + [aux_sym_control_persist_token1] = ACTIONS(1958), + [aux_sym_dynamic_forward_token1] = ACTIONS(1958), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1958), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1958), + [aux_sym_escape_char_token1] = ACTIONS(1958), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1958), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1958), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1958), + [aux_sym_forward_agent_token1] = ACTIONS(1958), + [aux_sym_forward_x11_token1] = ACTIONS(1960), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1958), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1958), + [aux_sym_gateway_ports_token1] = ACTIONS(1958), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1958), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1958), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1958), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1958), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1958), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1958), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1958), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1958), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1958), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1958), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1958), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1958), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1958), + [aux_sym_host_key_alias_token1] = ACTIONS(1958), + [aux_sym_hostname_token1] = ACTIONS(1958), + [aux_sym_identities_only_token1] = ACTIONS(1958), + [aux_sym_identity_agent_token1] = ACTIONS(1958), + [aux_sym_identity_file_token1] = ACTIONS(1958), + [aux_sym_ignore_unknown_token1] = ACTIONS(1958), + [aux_sym_include_token1] = ACTIONS(1958), + [aux_sym_ip_qos_token1] = ACTIONS(1958), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1958), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1958), + [aux_sym_kex_algorithms_token1] = ACTIONS(1958), + [aux_sym_known_hosts_command_token1] = ACTIONS(1958), + [aux_sym_local_command_token1] = ACTIONS(1958), + [aux_sym_local_forward_token1] = ACTIONS(1958), + [aux_sym_log_level_token1] = ACTIONS(1958), + [aux_sym_log_verbose_token1] = ACTIONS(1958), + [aux_sym_macs_token1] = ACTIONS(1958), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1958), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1958), + [aux_sym_password_authentication_token1] = ACTIONS(1958), + [aux_sym_permit_local_command_token1] = ACTIONS(1958), + [aux_sym_permit_remote_open_token1] = ACTIONS(1958), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1958), + [aux_sym_port_token1] = ACTIONS(1958), + [aux_sym_preferred_authentications_token1] = ACTIONS(1958), + [aux_sym_protocol_token1] = ACTIONS(1958), + [aux_sym_proxy_command_token1] = ACTIONS(1958), + [aux_sym_proxy_jump_token1] = ACTIONS(1958), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1958), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1958), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1958), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1958), + [aux_sym_rekey_limit_token1] = ACTIONS(1958), + [aux_sym_remote_command_token1] = ACTIONS(1958), + [aux_sym_remote_forward_token1] = ACTIONS(1958), + [aux_sym_request_tty_token1] = ACTIONS(1958), + [aux_sym_required_rsa_size_token1] = ACTIONS(1958), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1958), + [aux_sym_security_key_provider_token1] = ACTIONS(1958), + [aux_sym_send_env_token1] = ACTIONS(1958), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1958), + [aux_sym_server_alive_interval_token1] = ACTIONS(1958), + [aux_sym_session_type_token1] = ACTIONS(1958), + [aux_sym_set_env_token1] = ACTIONS(1958), + [aux_sym_stdin_null_token1] = ACTIONS(1958), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1958), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1958), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1958), + [aux_sym_syslog_facility_token1] = ACTIONS(1958), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1958), + [aux_sym_keep_alive_token1] = ACTIONS(1958), + [aux_sym_tunnel_token1] = ACTIONS(1960), + [aux_sym_tunnel_device_token1] = ACTIONS(1958), + [aux_sym_update_host_keys_token1] = ACTIONS(1958), + [aux_sym_use_keychain_token1] = ACTIONS(1958), + [aux_sym_use_roaming_token1] = ACTIONS(1958), + [aux_sym_user_token1] = ACTIONS(1960), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1958), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1958), + [aux_sym_visual_host_key_token1] = ACTIONS(1958), + [aux_sym_xauth_location_token1] = ACTIONS(1958), }, [239] = { - [ts_builtin_sym_end] = ACTIONS(1955), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1959), - [aux_sym_match_token1] = ACTIONS(1955), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1955), - [aux_sym_address_family_token1] = ACTIONS(1955), - [aux_sym_batch_mode_token1] = ACTIONS(1955), - [aux_sym_bind_address_token1] = ACTIONS(1955), - [aux_sym_bind_interface_token1] = ACTIONS(1955), - [aux_sym_canonical_domains_token1] = ACTIONS(1955), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1955), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1955), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1955), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1955), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1955), - [aux_sym_certificate_file_token1] = ACTIONS(1955), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1955), - [aux_sym_check_host_ip_token1] = ACTIONS(1955), - [aux_sym_ciphers_token1] = ACTIONS(1955), - [aux_sym_cipher_token1] = ACTIONS(1957), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1955), - [aux_sym_compression_token1] = ACTIONS(1955), - [aux_sym_connection_attempts_token1] = ACTIONS(1955), - [aux_sym_connect_timeout_token1] = ACTIONS(1955), - [aux_sym_control_master_token1] = ACTIONS(1955), - [aux_sym_control_path_token1] = ACTIONS(1955), - [aux_sym_control_persist_token1] = ACTIONS(1955), - [aux_sym_dynamic_forward_token1] = ACTIONS(1955), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1955), - [aux_sym_escape_char_token1] = ACTIONS(1955), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1955), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1955), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1955), - [aux_sym_forward_agent_token1] = ACTIONS(1955), - [aux_sym_forward_x11_token1] = ACTIONS(1957), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1955), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1955), - [aux_sym_gateway_ports_token1] = ACTIONS(1955), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1955), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1955), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1955), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1955), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1955), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1955), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1955), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1955), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1955), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1955), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1955), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1955), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1955), - [aux_sym_host_key_alias_token1] = ACTIONS(1955), - [aux_sym_hostname_token1] = ACTIONS(1955), - [aux_sym_identities_only_token1] = ACTIONS(1955), - [aux_sym_identity_agent_token1] = ACTIONS(1955), - [aux_sym_identity_file_token1] = ACTIONS(1955), - [aux_sym_ignore_unknown_token1] = ACTIONS(1955), - [aux_sym_include_token1] = ACTIONS(1955), - [aux_sym_ip_qos_token1] = ACTIONS(1955), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1955), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1955), - [aux_sym_kex_algorithms_token1] = ACTIONS(1955), - [aux_sym_known_hosts_command_token1] = ACTIONS(1955), - [aux_sym_local_command_token1] = ACTIONS(1955), - [aux_sym_local_forward_token1] = ACTIONS(1955), - [aux_sym_log_level_token1] = ACTIONS(1955), - [aux_sym_log_verbose_token1] = ACTIONS(1955), - [aux_sym_macs_token1] = ACTIONS(1955), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1955), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1955), - [aux_sym_password_authentication_token1] = ACTIONS(1955), - [aux_sym_permit_local_command_token1] = ACTIONS(1955), - [aux_sym_permit_remote_open_token1] = ACTIONS(1955), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1955), - [aux_sym_port_token1] = ACTIONS(1955), - [aux_sym_preferred_authentications_token1] = ACTIONS(1955), - [aux_sym_protocol_token1] = ACTIONS(1955), - [aux_sym_proxy_command_token1] = ACTIONS(1955), - [aux_sym_proxy_jump_token1] = ACTIONS(1955), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1955), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1955), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1955), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1955), - [aux_sym_rekey_limit_token1] = ACTIONS(1955), - [aux_sym_remote_command_token1] = ACTIONS(1955), - [aux_sym_remote_forward_token1] = ACTIONS(1955), - [aux_sym_request_tty_token1] = ACTIONS(1955), - [aux_sym_required_rsa_size_token1] = ACTIONS(1955), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1955), - [aux_sym_security_key_provider_token1] = ACTIONS(1955), - [aux_sym_send_env_token1] = ACTIONS(1955), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1955), - [aux_sym_server_alive_interval_token1] = ACTIONS(1955), - [aux_sym_session_type_token1] = ACTIONS(1955), - [aux_sym_set_env_token1] = ACTIONS(1955), - [aux_sym_stdin_null_token1] = ACTIONS(1955), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1955), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1955), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1955), - [aux_sym_syslog_facility_token1] = ACTIONS(1955), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1955), - [aux_sym_keep_alive_token1] = ACTIONS(1955), - [aux_sym_tunnel_token1] = ACTIONS(1957), - [aux_sym_tunnel_device_token1] = ACTIONS(1955), - [aux_sym_update_host_keys_token1] = ACTIONS(1955), - [aux_sym_use_keychain_token1] = ACTIONS(1955), - [aux_sym_use_roaming_token1] = ACTIONS(1955), - [aux_sym_user_token1] = ACTIONS(1957), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1955), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1955), - [aux_sym_visual_host_key_token1] = ACTIONS(1955), - [aux_sym_xauth_location_token1] = ACTIONS(1955), + [ts_builtin_sym_end] = ACTIONS(1962), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1964), + [anon_sym_DQUOTE] = ACTIONS(1962), + [aux_sym_match_token1] = ACTIONS(1962), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1962), + [aux_sym_address_family_token1] = ACTIONS(1962), + [aux_sym_batch_mode_token1] = ACTIONS(1962), + [aux_sym_bind_address_token1] = ACTIONS(1962), + [aux_sym_bind_interface_token1] = ACTIONS(1962), + [aux_sym_canonical_domains_token1] = ACTIONS(1962), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1962), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1962), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1962), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1962), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1962), + [aux_sym_certificate_file_token1] = ACTIONS(1962), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1962), + [aux_sym_check_host_ip_token1] = ACTIONS(1962), + [aux_sym_ciphers_token1] = ACTIONS(1962), + [aux_sym_cipher_token1] = ACTIONS(1964), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1962), + [aux_sym_compression_token1] = ACTIONS(1962), + [aux_sym_connection_attempts_token1] = ACTIONS(1962), + [aux_sym_connect_timeout_token1] = ACTIONS(1962), + [aux_sym_control_master_token1] = ACTIONS(1962), + [aux_sym_control_path_token1] = ACTIONS(1962), + [aux_sym_control_persist_token1] = ACTIONS(1962), + [aux_sym_dynamic_forward_token1] = ACTIONS(1962), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1962), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1962), + [aux_sym_escape_char_token1] = ACTIONS(1962), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1962), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1962), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1962), + [aux_sym_forward_agent_token1] = ACTIONS(1962), + [aux_sym_forward_x11_token1] = ACTIONS(1964), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1962), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1962), + [aux_sym_gateway_ports_token1] = ACTIONS(1962), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1962), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1962), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1962), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1962), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1962), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1962), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1962), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1962), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1962), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1962), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1962), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1962), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1962), + [aux_sym_host_key_alias_token1] = ACTIONS(1962), + [aux_sym_hostname_token1] = ACTIONS(1962), + [aux_sym_identities_only_token1] = ACTIONS(1962), + [aux_sym_identity_agent_token1] = ACTIONS(1962), + [aux_sym_identity_file_token1] = ACTIONS(1962), + [aux_sym_ignore_unknown_token1] = ACTIONS(1962), + [aux_sym_include_token1] = ACTIONS(1962), + [aux_sym_ip_qos_token1] = ACTIONS(1962), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1962), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1962), + [aux_sym_kex_algorithms_token1] = ACTIONS(1962), + [aux_sym_known_hosts_command_token1] = ACTIONS(1962), + [aux_sym_local_command_token1] = ACTIONS(1962), + [aux_sym_local_forward_token1] = ACTIONS(1962), + [aux_sym_log_level_token1] = ACTIONS(1962), + [aux_sym_log_verbose_token1] = ACTIONS(1962), + [aux_sym_macs_token1] = ACTIONS(1962), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1962), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1962), + [aux_sym_password_authentication_token1] = ACTIONS(1962), + [aux_sym_permit_local_command_token1] = ACTIONS(1962), + [aux_sym_permit_remote_open_token1] = ACTIONS(1962), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1962), + [aux_sym_port_token1] = ACTIONS(1962), + [aux_sym_preferred_authentications_token1] = ACTIONS(1962), + [aux_sym_protocol_token1] = ACTIONS(1962), + [aux_sym_proxy_command_token1] = ACTIONS(1962), + [aux_sym_proxy_jump_token1] = ACTIONS(1962), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1962), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1962), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1962), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1962), + [aux_sym_rekey_limit_token1] = ACTIONS(1962), + [aux_sym_remote_command_token1] = ACTIONS(1962), + [aux_sym_remote_forward_token1] = ACTIONS(1962), + [aux_sym_request_tty_token1] = ACTIONS(1962), + [aux_sym_required_rsa_size_token1] = ACTIONS(1962), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1962), + [aux_sym_security_key_provider_token1] = ACTIONS(1962), + [aux_sym_send_env_token1] = ACTIONS(1962), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1962), + [aux_sym_server_alive_interval_token1] = ACTIONS(1962), + [aux_sym_session_type_token1] = ACTIONS(1962), + [aux_sym_set_env_token1] = ACTIONS(1962), + [aux_sym_stdin_null_token1] = ACTIONS(1962), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1962), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1962), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1962), + [aux_sym_syslog_facility_token1] = ACTIONS(1962), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1962), + [aux_sym_keep_alive_token1] = ACTIONS(1962), + [aux_sym_tunnel_token1] = ACTIONS(1964), + [aux_sym_tunnel_device_token1] = ACTIONS(1962), + [aux_sym_update_host_keys_token1] = ACTIONS(1962), + [aux_sym_use_keychain_token1] = ACTIONS(1962), + [aux_sym_use_roaming_token1] = ACTIONS(1962), + [aux_sym_user_token1] = ACTIONS(1964), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1962), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1962), + [aux_sym_visual_host_key_token1] = ACTIONS(1962), + [aux_sym_xauth_location_token1] = ACTIONS(1962), }, [240] = { - [ts_builtin_sym_end] = ACTIONS(1961), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1961), - [aux_sym_match_token1] = ACTIONS(1961), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1961), - [aux_sym_address_family_token1] = ACTIONS(1961), - [aux_sym_batch_mode_token1] = ACTIONS(1961), - [aux_sym_bind_address_token1] = ACTIONS(1961), - [aux_sym_bind_interface_token1] = ACTIONS(1961), - [aux_sym_canonical_domains_token1] = ACTIONS(1961), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1961), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1961), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1961), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1961), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1961), - [aux_sym_certificate_file_token1] = ACTIONS(1961), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1961), - [aux_sym_check_host_ip_token1] = ACTIONS(1961), - [aux_sym_ciphers_token1] = ACTIONS(1961), - [aux_sym_cipher_token1] = ACTIONS(1963), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1961), - [aux_sym_compression_token1] = ACTIONS(1961), - [aux_sym_connection_attempts_token1] = ACTIONS(1961), - [aux_sym_connect_timeout_token1] = ACTIONS(1961), - [aux_sym_control_master_token1] = ACTIONS(1961), - [aux_sym_control_path_token1] = ACTIONS(1961), - [aux_sym_control_persist_token1] = ACTIONS(1961), - [aux_sym_dynamic_forward_token1] = ACTIONS(1961), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1961), - [aux_sym_escape_char_token1] = ACTIONS(1961), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1961), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1961), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1961), - [aux_sym_forward_agent_token1] = ACTIONS(1961), - [aux_sym_forward_x11_token1] = ACTIONS(1963), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1961), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1961), - [aux_sym_gateway_ports_token1] = ACTIONS(1961), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1961), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1961), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1961), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1961), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1961), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1961), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1961), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1961), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1961), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1961), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1961), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1961), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1961), - [aux_sym_host_key_alias_token1] = ACTIONS(1961), - [aux_sym_hostname_token1] = ACTIONS(1961), - [aux_sym_identities_only_token1] = ACTIONS(1961), - [aux_sym_identity_agent_token1] = ACTIONS(1961), - [aux_sym_identity_file_token1] = ACTIONS(1961), - [aux_sym_ignore_unknown_token1] = ACTIONS(1961), - [aux_sym_include_token1] = ACTIONS(1961), - [aux_sym_ip_qos_token1] = ACTIONS(1961), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1961), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1961), - [aux_sym_kex_algorithms_token1] = ACTIONS(1961), - [aux_sym_known_hosts_command_token1] = ACTIONS(1961), - [aux_sym_local_command_token1] = ACTIONS(1961), - [aux_sym_local_forward_token1] = ACTIONS(1961), - [aux_sym_log_level_token1] = ACTIONS(1961), - [aux_sym_log_verbose_token1] = ACTIONS(1961), - [aux_sym_macs_token1] = ACTIONS(1961), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1961), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1961), - [aux_sym_password_authentication_token1] = ACTIONS(1961), - [aux_sym_permit_local_command_token1] = ACTIONS(1961), - [aux_sym_permit_remote_open_token1] = ACTIONS(1961), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1961), - [aux_sym_port_token1] = ACTIONS(1961), - [aux_sym_preferred_authentications_token1] = ACTIONS(1961), - [aux_sym_protocol_token1] = ACTIONS(1961), - [aux_sym_proxy_command_token1] = ACTIONS(1961), - [aux_sym_proxy_jump_token1] = ACTIONS(1961), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1961), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1961), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1961), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1961), - [aux_sym_rekey_limit_token1] = ACTIONS(1961), - [aux_sym_remote_command_token1] = ACTIONS(1961), - [aux_sym_remote_forward_token1] = ACTIONS(1961), - [aux_sym_request_tty_token1] = ACTIONS(1961), - [aux_sym_required_rsa_size_token1] = ACTIONS(1961), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1961), - [aux_sym_security_key_provider_token1] = ACTIONS(1961), - [aux_sym_send_env_token1] = ACTIONS(1961), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1961), - [aux_sym_server_alive_interval_token1] = ACTIONS(1961), - [aux_sym_session_type_token1] = ACTIONS(1961), - [aux_sym_set_env_token1] = ACTIONS(1961), - [aux_sym_stdin_null_token1] = ACTIONS(1961), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1961), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1961), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1961), - [aux_sym_syslog_facility_token1] = ACTIONS(1961), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1961), - [aux_sym_keep_alive_token1] = ACTIONS(1961), - [aux_sym_tunnel_token1] = ACTIONS(1963), - [aux_sym_tunnel_device_token1] = ACTIONS(1961), - [aux_sym_update_host_keys_token1] = ACTIONS(1961), - [aux_sym_use_keychain_token1] = ACTIONS(1961), - [aux_sym_use_roaming_token1] = ACTIONS(1961), - [aux_sym_user_token1] = ACTIONS(1963), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1961), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1961), - [aux_sym_visual_host_key_token1] = ACTIONS(1961), - [aux_sym_xauth_location_token1] = ACTIONS(1961), + [ts_builtin_sym_end] = ACTIONS(1966), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1970), + [aux_sym_match_token1] = ACTIONS(1966), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1966), + [aux_sym_address_family_token1] = ACTIONS(1966), + [aux_sym_batch_mode_token1] = ACTIONS(1966), + [aux_sym_bind_address_token1] = ACTIONS(1966), + [aux_sym_bind_interface_token1] = ACTIONS(1966), + [aux_sym_canonical_domains_token1] = ACTIONS(1966), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1966), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1966), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1966), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1966), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1966), + [aux_sym_certificate_file_token1] = ACTIONS(1966), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1966), + [aux_sym_check_host_ip_token1] = ACTIONS(1966), + [aux_sym_ciphers_token1] = ACTIONS(1966), + [aux_sym_cipher_token1] = ACTIONS(1968), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1966), + [aux_sym_compression_token1] = ACTIONS(1966), + [aux_sym_connection_attempts_token1] = ACTIONS(1966), + [aux_sym_connect_timeout_token1] = ACTIONS(1966), + [aux_sym_control_master_token1] = ACTIONS(1966), + [aux_sym_control_path_token1] = ACTIONS(1966), + [aux_sym_control_persist_token1] = ACTIONS(1966), + [aux_sym_dynamic_forward_token1] = ACTIONS(1966), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1966), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1966), + [aux_sym_escape_char_token1] = ACTIONS(1966), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1966), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1966), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1966), + [aux_sym_forward_agent_token1] = ACTIONS(1966), + [aux_sym_forward_x11_token1] = ACTIONS(1968), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1966), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1966), + [aux_sym_gateway_ports_token1] = ACTIONS(1966), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1966), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1966), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1966), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1966), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1966), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1966), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1966), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1966), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1966), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1966), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1966), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1966), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1966), + [aux_sym_host_key_alias_token1] = ACTIONS(1966), + [aux_sym_hostname_token1] = ACTIONS(1966), + [aux_sym_identities_only_token1] = ACTIONS(1966), + [aux_sym_identity_agent_token1] = ACTIONS(1966), + [aux_sym_identity_file_token1] = ACTIONS(1966), + [aux_sym_ignore_unknown_token1] = ACTIONS(1966), + [aux_sym_include_token1] = ACTIONS(1966), + [aux_sym_ip_qos_token1] = ACTIONS(1966), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1966), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1966), + [aux_sym_kex_algorithms_token1] = ACTIONS(1966), + [aux_sym_known_hosts_command_token1] = ACTIONS(1966), + [aux_sym_local_command_token1] = ACTIONS(1966), + [aux_sym_local_forward_token1] = ACTIONS(1966), + [aux_sym_log_level_token1] = ACTIONS(1966), + [aux_sym_log_verbose_token1] = ACTIONS(1966), + [aux_sym_macs_token1] = ACTIONS(1966), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1966), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1966), + [aux_sym_password_authentication_token1] = ACTIONS(1966), + [aux_sym_permit_local_command_token1] = ACTIONS(1966), + [aux_sym_permit_remote_open_token1] = ACTIONS(1966), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1966), + [aux_sym_port_token1] = ACTIONS(1966), + [aux_sym_preferred_authentications_token1] = ACTIONS(1966), + [aux_sym_protocol_token1] = ACTIONS(1966), + [aux_sym_proxy_command_token1] = ACTIONS(1966), + [aux_sym_proxy_jump_token1] = ACTIONS(1966), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1966), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1966), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1966), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1966), + [aux_sym_rekey_limit_token1] = ACTIONS(1966), + [aux_sym_remote_command_token1] = ACTIONS(1966), + [aux_sym_remote_forward_token1] = ACTIONS(1966), + [aux_sym_request_tty_token1] = ACTIONS(1966), + [aux_sym_required_rsa_size_token1] = ACTIONS(1966), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1966), + [aux_sym_security_key_provider_token1] = ACTIONS(1966), + [aux_sym_send_env_token1] = ACTIONS(1966), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1966), + [aux_sym_server_alive_interval_token1] = ACTIONS(1966), + [aux_sym_session_type_token1] = ACTIONS(1966), + [aux_sym_set_env_token1] = ACTIONS(1966), + [aux_sym_stdin_null_token1] = ACTIONS(1966), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1966), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1966), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1966), + [aux_sym_syslog_facility_token1] = ACTIONS(1966), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1966), + [aux_sym_keep_alive_token1] = ACTIONS(1966), + [aux_sym_tunnel_token1] = ACTIONS(1968), + [aux_sym_tunnel_device_token1] = ACTIONS(1966), + [aux_sym_update_host_keys_token1] = ACTIONS(1966), + [aux_sym_use_keychain_token1] = ACTIONS(1966), + [aux_sym_use_roaming_token1] = ACTIONS(1966), + [aux_sym_user_token1] = ACTIONS(1968), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1966), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1966), + [aux_sym_visual_host_key_token1] = ACTIONS(1966), + [aux_sym_xauth_location_token1] = ACTIONS(1966), }, [241] = { - [ts_builtin_sym_end] = ACTIONS(1965), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1967), - [anon_sym_DQUOTE] = ACTIONS(1965), - [aux_sym_match_token1] = ACTIONS(1965), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1965), - [aux_sym_address_family_token1] = ACTIONS(1965), - [aux_sym_batch_mode_token1] = ACTIONS(1965), - [aux_sym_bind_address_token1] = ACTIONS(1965), - [aux_sym_bind_interface_token1] = ACTIONS(1965), - [aux_sym_canonical_domains_token1] = ACTIONS(1965), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1965), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1965), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1965), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1965), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1965), - [aux_sym_certificate_file_token1] = ACTIONS(1965), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1965), - [aux_sym_check_host_ip_token1] = ACTIONS(1965), - [aux_sym_ciphers_token1] = ACTIONS(1965), - [aux_sym_cipher_token1] = ACTIONS(1967), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1965), - [aux_sym_compression_token1] = ACTIONS(1965), - [aux_sym_connection_attempts_token1] = ACTIONS(1965), - [aux_sym_connect_timeout_token1] = ACTIONS(1965), - [aux_sym_control_master_token1] = ACTIONS(1965), - [aux_sym_control_path_token1] = ACTIONS(1965), - [aux_sym_control_persist_token1] = ACTIONS(1965), - [aux_sym_dynamic_forward_token1] = ACTIONS(1965), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1965), - [aux_sym_escape_char_token1] = ACTIONS(1965), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1965), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1965), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1965), - [aux_sym_forward_agent_token1] = ACTIONS(1965), - [aux_sym_forward_x11_token1] = ACTIONS(1967), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1965), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1965), - [aux_sym_gateway_ports_token1] = ACTIONS(1965), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1965), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1965), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1965), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1965), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1965), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1965), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1965), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1965), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1965), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1965), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1965), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1965), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1965), - [aux_sym_host_key_alias_token1] = ACTIONS(1965), - [aux_sym_hostname_token1] = ACTIONS(1965), - [aux_sym_identities_only_token1] = ACTIONS(1965), - [aux_sym_identity_agent_token1] = ACTIONS(1965), - [aux_sym_identity_file_token1] = ACTIONS(1965), - [aux_sym_ignore_unknown_token1] = ACTIONS(1965), - [aux_sym_include_token1] = ACTIONS(1965), - [aux_sym_ip_qos_token1] = ACTIONS(1965), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1965), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1965), - [aux_sym_kex_algorithms_token1] = ACTIONS(1965), - [aux_sym_known_hosts_command_token1] = ACTIONS(1965), - [aux_sym_local_command_token1] = ACTIONS(1965), - [aux_sym_local_forward_token1] = ACTIONS(1965), - [aux_sym_log_level_token1] = ACTIONS(1965), - [aux_sym_log_verbose_token1] = ACTIONS(1965), - [aux_sym_macs_token1] = ACTIONS(1965), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1965), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1965), - [aux_sym_password_authentication_token1] = ACTIONS(1965), - [aux_sym_permit_local_command_token1] = ACTIONS(1965), - [aux_sym_permit_remote_open_token1] = ACTIONS(1965), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1965), - [aux_sym_port_token1] = ACTIONS(1965), - [aux_sym_preferred_authentications_token1] = ACTIONS(1965), - [aux_sym_protocol_token1] = ACTIONS(1965), - [aux_sym_proxy_command_token1] = ACTIONS(1965), - [aux_sym_proxy_jump_token1] = ACTIONS(1965), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1965), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1965), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1965), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1965), - [aux_sym_rekey_limit_token1] = ACTIONS(1965), - [aux_sym_remote_command_token1] = ACTIONS(1965), - [aux_sym_remote_forward_token1] = ACTIONS(1965), - [aux_sym_request_tty_token1] = ACTIONS(1965), - [aux_sym_required_rsa_size_token1] = ACTIONS(1965), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1965), - [aux_sym_security_key_provider_token1] = ACTIONS(1965), - [aux_sym_send_env_token1] = ACTIONS(1965), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1965), - [aux_sym_server_alive_interval_token1] = ACTIONS(1965), - [aux_sym_session_type_token1] = ACTIONS(1965), - [aux_sym_set_env_token1] = ACTIONS(1965), - [aux_sym_stdin_null_token1] = ACTIONS(1965), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1965), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1965), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1965), - [aux_sym_syslog_facility_token1] = ACTIONS(1965), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1965), - [aux_sym_keep_alive_token1] = ACTIONS(1965), - [aux_sym_tunnel_token1] = ACTIONS(1967), - [aux_sym_tunnel_device_token1] = ACTIONS(1965), - [aux_sym_update_host_keys_token1] = ACTIONS(1965), - [aux_sym_use_keychain_token1] = ACTIONS(1965), - [aux_sym_use_roaming_token1] = ACTIONS(1965), - [aux_sym_user_token1] = ACTIONS(1967), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1965), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1965), - [aux_sym_visual_host_key_token1] = ACTIONS(1965), - [aux_sym_xauth_location_token1] = ACTIONS(1965), + [ts_builtin_sym_end] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1976), + [aux_sym_match_token1] = ACTIONS(1972), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1972), + [aux_sym_address_family_token1] = ACTIONS(1972), + [aux_sym_batch_mode_token1] = ACTIONS(1972), + [aux_sym_bind_address_token1] = ACTIONS(1972), + [aux_sym_bind_interface_token1] = ACTIONS(1972), + [aux_sym_canonical_domains_token1] = ACTIONS(1972), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1972), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1972), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1972), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1972), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1972), + [aux_sym_certificate_file_token1] = ACTIONS(1972), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1972), + [aux_sym_check_host_ip_token1] = ACTIONS(1972), + [aux_sym_ciphers_token1] = ACTIONS(1972), + [aux_sym_cipher_token1] = ACTIONS(1974), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1972), + [aux_sym_compression_token1] = ACTIONS(1972), + [aux_sym_connection_attempts_token1] = ACTIONS(1972), + [aux_sym_connect_timeout_token1] = ACTIONS(1972), + [aux_sym_control_master_token1] = ACTIONS(1972), + [aux_sym_control_path_token1] = ACTIONS(1972), + [aux_sym_control_persist_token1] = ACTIONS(1972), + [aux_sym_dynamic_forward_token1] = ACTIONS(1972), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1972), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1972), + [aux_sym_escape_char_token1] = ACTIONS(1972), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1972), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1972), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1972), + [aux_sym_forward_agent_token1] = ACTIONS(1972), + [aux_sym_forward_x11_token1] = ACTIONS(1974), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1972), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1972), + [aux_sym_gateway_ports_token1] = ACTIONS(1972), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1972), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1972), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1972), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1972), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1972), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1972), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1972), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1972), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1972), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1972), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1972), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1972), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1972), + [aux_sym_host_key_alias_token1] = ACTIONS(1972), + [aux_sym_hostname_token1] = ACTIONS(1972), + [aux_sym_identities_only_token1] = ACTIONS(1972), + [aux_sym_identity_agent_token1] = ACTIONS(1972), + [aux_sym_identity_file_token1] = ACTIONS(1972), + [aux_sym_ignore_unknown_token1] = ACTIONS(1972), + [aux_sym_include_token1] = ACTIONS(1972), + [aux_sym_ip_qos_token1] = ACTIONS(1972), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1972), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1972), + [aux_sym_kex_algorithms_token1] = ACTIONS(1972), + [aux_sym_known_hosts_command_token1] = ACTIONS(1972), + [aux_sym_local_command_token1] = ACTIONS(1972), + [aux_sym_local_forward_token1] = ACTIONS(1972), + [aux_sym_log_level_token1] = ACTIONS(1972), + [aux_sym_log_verbose_token1] = ACTIONS(1972), + [aux_sym_macs_token1] = ACTIONS(1972), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1972), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1972), + [aux_sym_password_authentication_token1] = ACTIONS(1972), + [aux_sym_permit_local_command_token1] = ACTIONS(1972), + [aux_sym_permit_remote_open_token1] = ACTIONS(1972), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1972), + [aux_sym_port_token1] = ACTIONS(1972), + [aux_sym_preferred_authentications_token1] = ACTIONS(1972), + [aux_sym_protocol_token1] = ACTIONS(1972), + [aux_sym_proxy_command_token1] = ACTIONS(1972), + [aux_sym_proxy_jump_token1] = ACTIONS(1972), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1972), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1972), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1972), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1972), + [aux_sym_rekey_limit_token1] = ACTIONS(1972), + [aux_sym_remote_command_token1] = ACTIONS(1972), + [aux_sym_remote_forward_token1] = ACTIONS(1972), + [aux_sym_request_tty_token1] = ACTIONS(1972), + [aux_sym_required_rsa_size_token1] = ACTIONS(1972), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1972), + [aux_sym_security_key_provider_token1] = ACTIONS(1972), + [aux_sym_send_env_token1] = ACTIONS(1972), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1972), + [aux_sym_server_alive_interval_token1] = ACTIONS(1972), + [aux_sym_session_type_token1] = ACTIONS(1972), + [aux_sym_set_env_token1] = ACTIONS(1972), + [aux_sym_stdin_null_token1] = ACTIONS(1972), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1972), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1972), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1972), + [aux_sym_syslog_facility_token1] = ACTIONS(1972), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1972), + [aux_sym_keep_alive_token1] = ACTIONS(1972), + [aux_sym_tunnel_token1] = ACTIONS(1974), + [aux_sym_tunnel_device_token1] = ACTIONS(1972), + [aux_sym_update_host_keys_token1] = ACTIONS(1972), + [aux_sym_use_keychain_token1] = ACTIONS(1972), + [aux_sym_use_roaming_token1] = ACTIONS(1972), + [aux_sym_user_token1] = ACTIONS(1974), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1972), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1972), + [aux_sym_visual_host_key_token1] = ACTIONS(1972), + [aux_sym_xauth_location_token1] = ACTIONS(1972), }, [242] = { - [ts_builtin_sym_end] = ACTIONS(1969), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1973), - [aux_sym_match_token1] = ACTIONS(1969), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1969), - [aux_sym_address_family_token1] = ACTIONS(1969), - [aux_sym_batch_mode_token1] = ACTIONS(1969), - [aux_sym_bind_address_token1] = ACTIONS(1969), - [aux_sym_bind_interface_token1] = ACTIONS(1969), - [aux_sym_canonical_domains_token1] = ACTIONS(1969), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1969), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1969), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1969), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1969), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1969), - [aux_sym_certificate_file_token1] = ACTIONS(1969), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1969), - [aux_sym_check_host_ip_token1] = ACTIONS(1969), - [aux_sym_ciphers_token1] = ACTIONS(1969), - [aux_sym_cipher_token1] = ACTIONS(1971), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1969), - [aux_sym_compression_token1] = ACTIONS(1969), - [aux_sym_connection_attempts_token1] = ACTIONS(1969), - [aux_sym_connect_timeout_token1] = ACTIONS(1969), - [aux_sym_control_master_token1] = ACTIONS(1969), - [aux_sym_control_path_token1] = ACTIONS(1969), - [aux_sym_control_persist_token1] = ACTIONS(1969), - [aux_sym_dynamic_forward_token1] = ACTIONS(1969), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1969), - [aux_sym_escape_char_token1] = ACTIONS(1969), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1969), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1969), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1969), - [aux_sym_forward_agent_token1] = ACTIONS(1969), - [aux_sym_forward_x11_token1] = ACTIONS(1971), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1969), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1969), - [aux_sym_gateway_ports_token1] = ACTIONS(1969), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1969), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1969), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1969), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1969), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1969), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1969), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1969), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1969), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1969), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1969), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1969), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1969), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1969), - [aux_sym_host_key_alias_token1] = ACTIONS(1969), - [aux_sym_hostname_token1] = ACTIONS(1969), - [aux_sym_identities_only_token1] = ACTIONS(1969), - [aux_sym_identity_agent_token1] = ACTIONS(1969), - [aux_sym_identity_file_token1] = ACTIONS(1969), - [aux_sym_ignore_unknown_token1] = ACTIONS(1969), - [aux_sym_include_token1] = ACTIONS(1969), - [aux_sym_ip_qos_token1] = ACTIONS(1969), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1969), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1969), - [aux_sym_kex_algorithms_token1] = ACTIONS(1969), - [aux_sym_known_hosts_command_token1] = ACTIONS(1969), - [aux_sym_local_command_token1] = ACTIONS(1969), - [aux_sym_local_forward_token1] = ACTIONS(1969), - [aux_sym_log_level_token1] = ACTIONS(1969), - [aux_sym_log_verbose_token1] = ACTIONS(1969), - [aux_sym_macs_token1] = ACTIONS(1969), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1969), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1969), - [aux_sym_password_authentication_token1] = ACTIONS(1969), - [aux_sym_permit_local_command_token1] = ACTIONS(1969), - [aux_sym_permit_remote_open_token1] = ACTIONS(1969), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1969), - [aux_sym_port_token1] = ACTIONS(1969), - [aux_sym_preferred_authentications_token1] = ACTIONS(1969), - [aux_sym_protocol_token1] = ACTIONS(1969), - [aux_sym_proxy_command_token1] = ACTIONS(1969), - [aux_sym_proxy_jump_token1] = ACTIONS(1969), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1969), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1969), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1969), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1969), - [aux_sym_rekey_limit_token1] = ACTIONS(1969), - [aux_sym_remote_command_token1] = ACTIONS(1969), - [aux_sym_remote_forward_token1] = ACTIONS(1969), - [aux_sym_request_tty_token1] = ACTIONS(1969), - [aux_sym_required_rsa_size_token1] = ACTIONS(1969), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1969), - [aux_sym_security_key_provider_token1] = ACTIONS(1969), - [aux_sym_send_env_token1] = ACTIONS(1969), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1969), - [aux_sym_server_alive_interval_token1] = ACTIONS(1969), - [aux_sym_session_type_token1] = ACTIONS(1969), - [aux_sym_set_env_token1] = ACTIONS(1969), - [aux_sym_stdin_null_token1] = ACTIONS(1969), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1969), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1969), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1969), - [aux_sym_syslog_facility_token1] = ACTIONS(1969), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1969), - [aux_sym_keep_alive_token1] = ACTIONS(1969), - [aux_sym_tunnel_token1] = ACTIONS(1971), - [aux_sym_tunnel_device_token1] = ACTIONS(1969), - [aux_sym_update_host_keys_token1] = ACTIONS(1969), - [aux_sym_use_keychain_token1] = ACTIONS(1969), - [aux_sym_use_roaming_token1] = ACTIONS(1969), - [aux_sym_user_token1] = ACTIONS(1971), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1969), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1969), - [aux_sym_visual_host_key_token1] = ACTIONS(1969), - [aux_sym_xauth_location_token1] = ACTIONS(1969), + [ts_builtin_sym_end] = ACTIONS(1978), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1980), + [anon_sym_DQUOTE] = ACTIONS(1978), + [aux_sym_match_token1] = ACTIONS(1978), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1978), + [aux_sym_address_family_token1] = ACTIONS(1978), + [aux_sym_batch_mode_token1] = ACTIONS(1978), + [aux_sym_bind_address_token1] = ACTIONS(1978), + [aux_sym_bind_interface_token1] = ACTIONS(1978), + [aux_sym_canonical_domains_token1] = ACTIONS(1978), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1978), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1978), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1978), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1978), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1978), + [aux_sym_certificate_file_token1] = ACTIONS(1978), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1978), + [aux_sym_check_host_ip_token1] = ACTIONS(1978), + [aux_sym_ciphers_token1] = ACTIONS(1978), + [aux_sym_cipher_token1] = ACTIONS(1980), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1978), + [aux_sym_compression_token1] = ACTIONS(1978), + [aux_sym_connection_attempts_token1] = ACTIONS(1978), + [aux_sym_connect_timeout_token1] = ACTIONS(1978), + [aux_sym_control_master_token1] = ACTIONS(1978), + [aux_sym_control_path_token1] = ACTIONS(1978), + [aux_sym_control_persist_token1] = ACTIONS(1978), + [aux_sym_dynamic_forward_token1] = ACTIONS(1978), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1978), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1978), + [aux_sym_escape_char_token1] = ACTIONS(1978), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1978), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1978), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1978), + [aux_sym_forward_agent_token1] = ACTIONS(1978), + [aux_sym_forward_x11_token1] = ACTIONS(1980), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1978), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1978), + [aux_sym_gateway_ports_token1] = ACTIONS(1978), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1978), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1978), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1978), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1978), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1978), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1978), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1978), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1978), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1978), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1978), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1978), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1978), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1978), + [aux_sym_host_key_alias_token1] = ACTIONS(1978), + [aux_sym_hostname_token1] = ACTIONS(1978), + [aux_sym_identities_only_token1] = ACTIONS(1978), + [aux_sym_identity_agent_token1] = ACTIONS(1978), + [aux_sym_identity_file_token1] = ACTIONS(1978), + [aux_sym_ignore_unknown_token1] = ACTIONS(1978), + [aux_sym_include_token1] = ACTIONS(1978), + [aux_sym_ip_qos_token1] = ACTIONS(1978), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1978), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1978), + [aux_sym_kex_algorithms_token1] = ACTIONS(1978), + [aux_sym_known_hosts_command_token1] = ACTIONS(1978), + [aux_sym_local_command_token1] = ACTIONS(1978), + [aux_sym_local_forward_token1] = ACTIONS(1978), + [aux_sym_log_level_token1] = ACTIONS(1978), + [aux_sym_log_verbose_token1] = ACTIONS(1978), + [aux_sym_macs_token1] = ACTIONS(1978), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1978), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1978), + [aux_sym_password_authentication_token1] = ACTIONS(1978), + [aux_sym_permit_local_command_token1] = ACTIONS(1978), + [aux_sym_permit_remote_open_token1] = ACTIONS(1978), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1978), + [aux_sym_port_token1] = ACTIONS(1978), + [aux_sym_preferred_authentications_token1] = ACTIONS(1978), + [aux_sym_protocol_token1] = ACTIONS(1978), + [aux_sym_proxy_command_token1] = ACTIONS(1978), + [aux_sym_proxy_jump_token1] = ACTIONS(1978), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1978), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1978), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1978), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1978), + [aux_sym_rekey_limit_token1] = ACTIONS(1978), + [aux_sym_remote_command_token1] = ACTIONS(1978), + [aux_sym_remote_forward_token1] = ACTIONS(1978), + [aux_sym_request_tty_token1] = ACTIONS(1978), + [aux_sym_required_rsa_size_token1] = ACTIONS(1978), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1978), + [aux_sym_security_key_provider_token1] = ACTIONS(1978), + [aux_sym_send_env_token1] = ACTIONS(1978), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1978), + [aux_sym_server_alive_interval_token1] = ACTIONS(1978), + [aux_sym_session_type_token1] = ACTIONS(1978), + [aux_sym_set_env_token1] = ACTIONS(1978), + [aux_sym_stdin_null_token1] = ACTIONS(1978), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1978), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1978), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1978), + [aux_sym_syslog_facility_token1] = ACTIONS(1978), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1978), + [aux_sym_keep_alive_token1] = ACTIONS(1978), + [aux_sym_tunnel_token1] = ACTIONS(1980), + [aux_sym_tunnel_device_token1] = ACTIONS(1978), + [aux_sym_update_host_keys_token1] = ACTIONS(1978), + [aux_sym_use_keychain_token1] = ACTIONS(1978), + [aux_sym_use_roaming_token1] = ACTIONS(1978), + [aux_sym_user_token1] = ACTIONS(1980), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1978), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1978), + [aux_sym_visual_host_key_token1] = ACTIONS(1978), + [aux_sym_xauth_location_token1] = ACTIONS(1978), }, [243] = { - [ts_builtin_sym_end] = ACTIONS(1975), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1977), - [anon_sym_DQUOTE] = ACTIONS(1979), - [aux_sym_match_token1] = ACTIONS(1975), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1975), - [aux_sym_address_family_token1] = ACTIONS(1975), - [aux_sym_batch_mode_token1] = ACTIONS(1975), - [aux_sym_bind_address_token1] = ACTIONS(1975), - [aux_sym_bind_interface_token1] = ACTIONS(1975), - [aux_sym_canonical_domains_token1] = ACTIONS(1975), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1975), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1975), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1975), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1975), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1975), - [aux_sym_certificate_file_token1] = ACTIONS(1975), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1975), - [aux_sym_check_host_ip_token1] = ACTIONS(1975), - [aux_sym_ciphers_token1] = ACTIONS(1975), - [aux_sym_cipher_token1] = ACTIONS(1977), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1975), - [aux_sym_compression_token1] = ACTIONS(1975), - [aux_sym_connection_attempts_token1] = ACTIONS(1975), - [aux_sym_connect_timeout_token1] = ACTIONS(1975), - [aux_sym_control_master_token1] = ACTIONS(1975), - [aux_sym_control_path_token1] = ACTIONS(1975), - [aux_sym_control_persist_token1] = ACTIONS(1975), - [aux_sym_dynamic_forward_token1] = ACTIONS(1975), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1975), - [aux_sym_escape_char_token1] = ACTIONS(1975), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1975), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1975), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1975), - [aux_sym_forward_agent_token1] = ACTIONS(1975), - [aux_sym_forward_x11_token1] = ACTIONS(1977), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1975), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1975), - [aux_sym_gateway_ports_token1] = ACTIONS(1975), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1975), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1975), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1975), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1975), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1975), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1975), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1975), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1975), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1975), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1975), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1975), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1975), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1975), - [aux_sym_host_key_alias_token1] = ACTIONS(1975), - [aux_sym_hostname_token1] = ACTIONS(1975), - [aux_sym_identities_only_token1] = ACTIONS(1975), - [aux_sym_identity_agent_token1] = ACTIONS(1975), - [aux_sym_identity_file_token1] = ACTIONS(1975), - [aux_sym_ignore_unknown_token1] = ACTIONS(1975), - [aux_sym_include_token1] = ACTIONS(1975), - [aux_sym_ip_qos_token1] = ACTIONS(1975), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1975), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1975), - [aux_sym_kex_algorithms_token1] = ACTIONS(1975), - [aux_sym_known_hosts_command_token1] = ACTIONS(1975), - [aux_sym_local_command_token1] = ACTIONS(1975), - [aux_sym_local_forward_token1] = ACTIONS(1975), - [aux_sym_log_level_token1] = ACTIONS(1975), - [aux_sym_log_verbose_token1] = ACTIONS(1975), - [aux_sym_macs_token1] = ACTIONS(1975), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1975), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1975), - [aux_sym_password_authentication_token1] = ACTIONS(1975), - [aux_sym_permit_local_command_token1] = ACTIONS(1975), - [aux_sym_permit_remote_open_token1] = ACTIONS(1975), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1975), - [aux_sym_port_token1] = ACTIONS(1975), - [aux_sym_preferred_authentications_token1] = ACTIONS(1975), - [aux_sym_protocol_token1] = ACTIONS(1975), - [aux_sym_proxy_command_token1] = ACTIONS(1975), - [aux_sym_proxy_jump_token1] = ACTIONS(1975), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1975), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1975), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1975), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1975), - [aux_sym_rekey_limit_token1] = ACTIONS(1975), - [aux_sym_remote_command_token1] = ACTIONS(1975), - [aux_sym_remote_forward_token1] = ACTIONS(1975), - [aux_sym_request_tty_token1] = ACTIONS(1975), - [aux_sym_required_rsa_size_token1] = ACTIONS(1975), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1975), - [aux_sym_security_key_provider_token1] = ACTIONS(1975), - [aux_sym_send_env_token1] = ACTIONS(1975), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1975), - [aux_sym_server_alive_interval_token1] = ACTIONS(1975), - [aux_sym_session_type_token1] = ACTIONS(1975), - [aux_sym_set_env_token1] = ACTIONS(1975), - [aux_sym_stdin_null_token1] = ACTIONS(1975), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1975), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1975), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1975), - [aux_sym_syslog_facility_token1] = ACTIONS(1975), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1975), - [aux_sym_keep_alive_token1] = ACTIONS(1975), - [aux_sym_tunnel_token1] = ACTIONS(1977), - [aux_sym_tunnel_device_token1] = ACTIONS(1975), - [aux_sym_update_host_keys_token1] = ACTIONS(1975), - [aux_sym_use_keychain_token1] = ACTIONS(1975), - [aux_sym_use_roaming_token1] = ACTIONS(1975), - [aux_sym_user_token1] = ACTIONS(1977), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1975), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1975), - [aux_sym_visual_host_key_token1] = ACTIONS(1975), - [aux_sym_xauth_location_token1] = ACTIONS(1975), + [ts_builtin_sym_end] = ACTIONS(1982), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1984), + [anon_sym_DQUOTE] = ACTIONS(1982), + [aux_sym_match_token1] = ACTIONS(1982), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1982), + [aux_sym_address_family_token1] = ACTIONS(1982), + [aux_sym_batch_mode_token1] = ACTIONS(1982), + [aux_sym_bind_address_token1] = ACTIONS(1982), + [aux_sym_bind_interface_token1] = ACTIONS(1982), + [aux_sym_canonical_domains_token1] = ACTIONS(1982), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1982), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1982), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1982), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1982), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1982), + [aux_sym_certificate_file_token1] = ACTIONS(1982), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1982), + [aux_sym_check_host_ip_token1] = ACTIONS(1982), + [aux_sym_ciphers_token1] = ACTIONS(1982), + [aux_sym_cipher_token1] = ACTIONS(1984), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1982), + [aux_sym_compression_token1] = ACTIONS(1982), + [aux_sym_connection_attempts_token1] = ACTIONS(1982), + [aux_sym_connect_timeout_token1] = ACTIONS(1982), + [aux_sym_control_master_token1] = ACTIONS(1982), + [aux_sym_control_path_token1] = ACTIONS(1982), + [aux_sym_control_persist_token1] = ACTIONS(1982), + [aux_sym_dynamic_forward_token1] = ACTIONS(1982), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1982), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1982), + [aux_sym_escape_char_token1] = ACTIONS(1982), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1982), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1982), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1982), + [aux_sym_forward_agent_token1] = ACTIONS(1982), + [aux_sym_forward_x11_token1] = ACTIONS(1984), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1982), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1982), + [aux_sym_gateway_ports_token1] = ACTIONS(1982), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1982), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1982), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1982), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1982), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1982), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1982), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1982), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1982), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1982), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1982), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1982), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1982), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1982), + [aux_sym_host_key_alias_token1] = ACTIONS(1982), + [aux_sym_hostname_token1] = ACTIONS(1982), + [aux_sym_identities_only_token1] = ACTIONS(1982), + [aux_sym_identity_agent_token1] = ACTIONS(1982), + [aux_sym_identity_file_token1] = ACTIONS(1982), + [aux_sym_ignore_unknown_token1] = ACTIONS(1982), + [aux_sym_include_token1] = ACTIONS(1982), + [aux_sym_ip_qos_token1] = ACTIONS(1982), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1982), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1982), + [aux_sym_kex_algorithms_token1] = ACTIONS(1982), + [aux_sym_known_hosts_command_token1] = ACTIONS(1982), + [aux_sym_local_command_token1] = ACTIONS(1982), + [aux_sym_local_forward_token1] = ACTIONS(1982), + [aux_sym_log_level_token1] = ACTIONS(1982), + [aux_sym_log_verbose_token1] = ACTIONS(1982), + [aux_sym_macs_token1] = ACTIONS(1982), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1982), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1982), + [aux_sym_password_authentication_token1] = ACTIONS(1982), + [aux_sym_permit_local_command_token1] = ACTIONS(1982), + [aux_sym_permit_remote_open_token1] = ACTIONS(1982), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1982), + [aux_sym_port_token1] = ACTIONS(1982), + [aux_sym_preferred_authentications_token1] = ACTIONS(1982), + [aux_sym_protocol_token1] = ACTIONS(1982), + [aux_sym_proxy_command_token1] = ACTIONS(1982), + [aux_sym_proxy_jump_token1] = ACTIONS(1982), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1982), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1982), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1982), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1982), + [aux_sym_rekey_limit_token1] = ACTIONS(1982), + [aux_sym_remote_command_token1] = ACTIONS(1982), + [aux_sym_remote_forward_token1] = ACTIONS(1982), + [aux_sym_request_tty_token1] = ACTIONS(1982), + [aux_sym_required_rsa_size_token1] = ACTIONS(1982), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1982), + [aux_sym_security_key_provider_token1] = ACTIONS(1982), + [aux_sym_send_env_token1] = ACTIONS(1982), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1982), + [aux_sym_server_alive_interval_token1] = ACTIONS(1982), + [aux_sym_session_type_token1] = ACTIONS(1982), + [aux_sym_set_env_token1] = ACTIONS(1982), + [aux_sym_stdin_null_token1] = ACTIONS(1982), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1982), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1982), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1982), + [aux_sym_syslog_facility_token1] = ACTIONS(1982), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1982), + [aux_sym_keep_alive_token1] = ACTIONS(1982), + [aux_sym_tunnel_token1] = ACTIONS(1984), + [aux_sym_tunnel_device_token1] = ACTIONS(1982), + [aux_sym_update_host_keys_token1] = ACTIONS(1982), + [aux_sym_use_keychain_token1] = ACTIONS(1982), + [aux_sym_use_roaming_token1] = ACTIONS(1982), + [aux_sym_user_token1] = ACTIONS(1984), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1982), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1982), + [aux_sym_visual_host_key_token1] = ACTIONS(1982), + [aux_sym_xauth_location_token1] = ACTIONS(1982), }, [244] = { - [ts_builtin_sym_end] = ACTIONS(1981), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1983), - [anon_sym_DQUOTE] = ACTIONS(1981), - [aux_sym_match_token1] = ACTIONS(1981), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1981), - [aux_sym_address_family_token1] = ACTIONS(1981), - [aux_sym_batch_mode_token1] = ACTIONS(1981), - [aux_sym_bind_address_token1] = ACTIONS(1981), - [aux_sym_bind_interface_token1] = ACTIONS(1981), - [aux_sym_canonical_domains_token1] = ACTIONS(1981), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1981), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1981), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1981), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1981), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1981), - [aux_sym_certificate_file_token1] = ACTIONS(1981), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1981), - [aux_sym_check_host_ip_token1] = ACTIONS(1981), - [aux_sym_ciphers_token1] = ACTIONS(1981), - [aux_sym_cipher_token1] = ACTIONS(1983), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1981), - [aux_sym_compression_token1] = ACTIONS(1981), - [aux_sym_connection_attempts_token1] = ACTIONS(1981), - [aux_sym_connect_timeout_token1] = ACTIONS(1981), - [aux_sym_control_master_token1] = ACTIONS(1981), - [aux_sym_control_path_token1] = ACTIONS(1981), - [aux_sym_control_persist_token1] = ACTIONS(1981), - [aux_sym_dynamic_forward_token1] = ACTIONS(1981), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1981), - [aux_sym_escape_char_token1] = ACTIONS(1981), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1981), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1981), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1981), - [aux_sym_forward_agent_token1] = ACTIONS(1981), - [aux_sym_forward_x11_token1] = ACTIONS(1983), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1981), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1981), - [aux_sym_gateway_ports_token1] = ACTIONS(1981), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1981), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1981), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1981), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1981), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1981), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1981), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1981), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1981), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1981), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1981), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1981), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1981), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1981), - [aux_sym_host_key_alias_token1] = ACTIONS(1981), - [aux_sym_hostname_token1] = ACTIONS(1981), - [aux_sym_identities_only_token1] = ACTIONS(1981), - [aux_sym_identity_agent_token1] = ACTIONS(1981), - [aux_sym_identity_file_token1] = ACTIONS(1981), - [aux_sym_ignore_unknown_token1] = ACTIONS(1981), - [aux_sym_include_token1] = ACTIONS(1981), - [aux_sym_ip_qos_token1] = ACTIONS(1981), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1981), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1981), - [aux_sym_kex_algorithms_token1] = ACTIONS(1981), - [aux_sym_known_hosts_command_token1] = ACTIONS(1981), - [aux_sym_local_command_token1] = ACTIONS(1981), - [aux_sym_local_forward_token1] = ACTIONS(1981), - [aux_sym_log_level_token1] = ACTIONS(1981), - [aux_sym_log_verbose_token1] = ACTIONS(1981), - [aux_sym_macs_token1] = ACTIONS(1981), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1981), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1981), - [aux_sym_password_authentication_token1] = ACTIONS(1981), - [aux_sym_permit_local_command_token1] = ACTIONS(1981), - [aux_sym_permit_remote_open_token1] = ACTIONS(1981), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1981), - [aux_sym_port_token1] = ACTIONS(1981), - [aux_sym_preferred_authentications_token1] = ACTIONS(1981), - [aux_sym_protocol_token1] = ACTIONS(1981), - [aux_sym_proxy_command_token1] = ACTIONS(1981), - [aux_sym_proxy_jump_token1] = ACTIONS(1981), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1981), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1981), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1981), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1981), - [aux_sym_rekey_limit_token1] = ACTIONS(1981), - [aux_sym_remote_command_token1] = ACTIONS(1981), - [aux_sym_remote_forward_token1] = ACTIONS(1981), - [aux_sym_request_tty_token1] = ACTIONS(1981), - [aux_sym_required_rsa_size_token1] = ACTIONS(1981), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1981), - [aux_sym_security_key_provider_token1] = ACTIONS(1981), - [aux_sym_send_env_token1] = ACTIONS(1981), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1981), - [aux_sym_server_alive_interval_token1] = ACTIONS(1981), - [aux_sym_session_type_token1] = ACTIONS(1981), - [aux_sym_set_env_token1] = ACTIONS(1981), - [aux_sym_stdin_null_token1] = ACTIONS(1981), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1981), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1981), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1981), - [aux_sym_syslog_facility_token1] = ACTIONS(1981), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1981), - [aux_sym_keep_alive_token1] = ACTIONS(1981), - [aux_sym_tunnel_token1] = ACTIONS(1983), - [aux_sym_tunnel_device_token1] = ACTIONS(1981), - [aux_sym_update_host_keys_token1] = ACTIONS(1981), - [aux_sym_use_keychain_token1] = ACTIONS(1981), - [aux_sym_use_roaming_token1] = ACTIONS(1981), - [aux_sym_user_token1] = ACTIONS(1983), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1981), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1981), - [aux_sym_visual_host_key_token1] = ACTIONS(1981), - [aux_sym_xauth_location_token1] = ACTIONS(1981), + [ts_builtin_sym_end] = ACTIONS(1986), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1990), + [aux_sym_match_token1] = ACTIONS(1986), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1986), + [aux_sym_address_family_token1] = ACTIONS(1986), + [aux_sym_batch_mode_token1] = ACTIONS(1986), + [aux_sym_bind_address_token1] = ACTIONS(1986), + [aux_sym_bind_interface_token1] = ACTIONS(1986), + [aux_sym_canonical_domains_token1] = ACTIONS(1986), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1986), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1986), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1986), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1986), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1986), + [aux_sym_certificate_file_token1] = ACTIONS(1986), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1986), + [aux_sym_check_host_ip_token1] = ACTIONS(1986), + [aux_sym_ciphers_token1] = ACTIONS(1986), + [aux_sym_cipher_token1] = ACTIONS(1988), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1986), + [aux_sym_compression_token1] = ACTIONS(1986), + [aux_sym_connection_attempts_token1] = ACTIONS(1986), + [aux_sym_connect_timeout_token1] = ACTIONS(1986), + [aux_sym_control_master_token1] = ACTIONS(1986), + [aux_sym_control_path_token1] = ACTIONS(1986), + [aux_sym_control_persist_token1] = ACTIONS(1986), + [aux_sym_dynamic_forward_token1] = ACTIONS(1986), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1986), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1986), + [aux_sym_escape_char_token1] = ACTIONS(1986), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1986), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1986), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1986), + [aux_sym_forward_agent_token1] = ACTIONS(1986), + [aux_sym_forward_x11_token1] = ACTIONS(1988), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1986), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1986), + [aux_sym_gateway_ports_token1] = ACTIONS(1986), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1986), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1986), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1986), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1986), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1986), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1986), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1986), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1986), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1986), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1986), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1986), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1986), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1986), + [aux_sym_host_key_alias_token1] = ACTIONS(1986), + [aux_sym_hostname_token1] = ACTIONS(1986), + [aux_sym_identities_only_token1] = ACTIONS(1986), + [aux_sym_identity_agent_token1] = ACTIONS(1986), + [aux_sym_identity_file_token1] = ACTIONS(1986), + [aux_sym_ignore_unknown_token1] = ACTIONS(1986), + [aux_sym_include_token1] = ACTIONS(1986), + [aux_sym_ip_qos_token1] = ACTIONS(1986), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1986), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1986), + [aux_sym_kex_algorithms_token1] = ACTIONS(1986), + [aux_sym_known_hosts_command_token1] = ACTIONS(1986), + [aux_sym_local_command_token1] = ACTIONS(1986), + [aux_sym_local_forward_token1] = ACTIONS(1986), + [aux_sym_log_level_token1] = ACTIONS(1986), + [aux_sym_log_verbose_token1] = ACTIONS(1986), + [aux_sym_macs_token1] = ACTIONS(1986), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1986), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1986), + [aux_sym_password_authentication_token1] = ACTIONS(1986), + [aux_sym_permit_local_command_token1] = ACTIONS(1986), + [aux_sym_permit_remote_open_token1] = ACTIONS(1986), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1986), + [aux_sym_port_token1] = ACTIONS(1986), + [aux_sym_preferred_authentications_token1] = ACTIONS(1986), + [aux_sym_protocol_token1] = ACTIONS(1986), + [aux_sym_proxy_command_token1] = ACTIONS(1986), + [aux_sym_proxy_jump_token1] = ACTIONS(1986), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1986), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1986), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1986), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1986), + [aux_sym_rekey_limit_token1] = ACTIONS(1986), + [aux_sym_remote_command_token1] = ACTIONS(1986), + [aux_sym_remote_forward_token1] = ACTIONS(1986), + [aux_sym_request_tty_token1] = ACTIONS(1986), + [aux_sym_required_rsa_size_token1] = ACTIONS(1986), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1986), + [aux_sym_security_key_provider_token1] = ACTIONS(1986), + [aux_sym_send_env_token1] = ACTIONS(1986), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1986), + [aux_sym_server_alive_interval_token1] = ACTIONS(1986), + [aux_sym_session_type_token1] = ACTIONS(1986), + [aux_sym_set_env_token1] = ACTIONS(1986), + [aux_sym_stdin_null_token1] = ACTIONS(1986), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1986), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1986), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1986), + [aux_sym_syslog_facility_token1] = ACTIONS(1986), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1986), + [aux_sym_keep_alive_token1] = ACTIONS(1986), + [aux_sym_tunnel_token1] = ACTIONS(1988), + [aux_sym_tunnel_device_token1] = ACTIONS(1986), + [aux_sym_update_host_keys_token1] = ACTIONS(1986), + [aux_sym_use_keychain_token1] = ACTIONS(1986), + [aux_sym_use_roaming_token1] = ACTIONS(1986), + [aux_sym_user_token1] = ACTIONS(1988), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1986), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1986), + [aux_sym_visual_host_key_token1] = ACTIONS(1986), + [aux_sym_xauth_location_token1] = ACTIONS(1986), }, [245] = { - [ts_builtin_sym_end] = ACTIONS(1985), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1987), - [anon_sym_DQUOTE] = ACTIONS(1985), - [aux_sym_match_token1] = ACTIONS(1985), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1985), - [aux_sym_address_family_token1] = ACTIONS(1985), - [aux_sym_batch_mode_token1] = ACTIONS(1985), - [aux_sym_bind_address_token1] = ACTIONS(1985), - [aux_sym_bind_interface_token1] = ACTIONS(1985), - [aux_sym_canonical_domains_token1] = ACTIONS(1985), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1985), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1985), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1985), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1985), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1985), - [aux_sym_certificate_file_token1] = ACTIONS(1985), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1985), - [aux_sym_check_host_ip_token1] = ACTIONS(1985), - [aux_sym_ciphers_token1] = ACTIONS(1985), - [aux_sym_cipher_token1] = ACTIONS(1987), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1985), - [aux_sym_compression_token1] = ACTIONS(1985), - [aux_sym_connection_attempts_token1] = ACTIONS(1985), - [aux_sym_connect_timeout_token1] = ACTIONS(1985), - [aux_sym_control_master_token1] = ACTIONS(1985), - [aux_sym_control_path_token1] = ACTIONS(1985), - [aux_sym_control_persist_token1] = ACTIONS(1985), - [aux_sym_dynamic_forward_token1] = ACTIONS(1985), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1985), - [aux_sym_escape_char_token1] = ACTIONS(1985), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1985), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1985), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1985), - [aux_sym_forward_agent_token1] = ACTIONS(1985), - [aux_sym_forward_x11_token1] = ACTIONS(1987), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1985), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1985), - [aux_sym_gateway_ports_token1] = ACTIONS(1985), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1985), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1985), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1985), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1985), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1985), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1985), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1985), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1985), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1985), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1985), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1985), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1985), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1985), - [aux_sym_host_key_alias_token1] = ACTIONS(1985), - [aux_sym_hostname_token1] = ACTIONS(1985), - [aux_sym_identities_only_token1] = ACTIONS(1985), - [aux_sym_identity_agent_token1] = ACTIONS(1985), - [aux_sym_identity_file_token1] = ACTIONS(1985), - [aux_sym_ignore_unknown_token1] = ACTIONS(1985), - [aux_sym_include_token1] = ACTIONS(1985), - [aux_sym_ip_qos_token1] = ACTIONS(1985), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1985), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1985), - [aux_sym_kex_algorithms_token1] = ACTIONS(1985), - [aux_sym_known_hosts_command_token1] = ACTIONS(1985), - [aux_sym_local_command_token1] = ACTIONS(1985), - [aux_sym_local_forward_token1] = ACTIONS(1985), - [aux_sym_log_level_token1] = ACTIONS(1985), - [aux_sym_log_verbose_token1] = ACTIONS(1985), - [aux_sym_macs_token1] = ACTIONS(1985), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1985), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1985), - [aux_sym_password_authentication_token1] = ACTIONS(1985), - [aux_sym_permit_local_command_token1] = ACTIONS(1985), - [aux_sym_permit_remote_open_token1] = ACTIONS(1985), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1985), - [aux_sym_port_token1] = ACTIONS(1985), - [aux_sym_preferred_authentications_token1] = ACTIONS(1985), - [aux_sym_protocol_token1] = ACTIONS(1985), - [aux_sym_proxy_command_token1] = ACTIONS(1985), - [aux_sym_proxy_jump_token1] = ACTIONS(1985), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1985), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1985), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1985), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1985), - [aux_sym_rekey_limit_token1] = ACTIONS(1985), - [aux_sym_remote_command_token1] = ACTIONS(1985), - [aux_sym_remote_forward_token1] = ACTIONS(1985), - [aux_sym_request_tty_token1] = ACTIONS(1985), - [aux_sym_required_rsa_size_token1] = ACTIONS(1985), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1985), - [aux_sym_security_key_provider_token1] = ACTIONS(1985), - [aux_sym_send_env_token1] = ACTIONS(1985), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1985), - [aux_sym_server_alive_interval_token1] = ACTIONS(1985), - [aux_sym_session_type_token1] = ACTIONS(1985), - [aux_sym_set_env_token1] = ACTIONS(1985), - [aux_sym_stdin_null_token1] = ACTIONS(1985), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1985), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1985), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1985), - [aux_sym_syslog_facility_token1] = ACTIONS(1985), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1985), - [aux_sym_keep_alive_token1] = ACTIONS(1985), - [aux_sym_tunnel_token1] = ACTIONS(1987), - [aux_sym_tunnel_device_token1] = ACTIONS(1985), - [aux_sym_update_host_keys_token1] = ACTIONS(1985), - [aux_sym_use_keychain_token1] = ACTIONS(1985), - [aux_sym_use_roaming_token1] = ACTIONS(1985), - [aux_sym_user_token1] = ACTIONS(1987), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1985), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1985), - [aux_sym_visual_host_key_token1] = ACTIONS(1985), - [aux_sym_xauth_location_token1] = ACTIONS(1985), + [ts_builtin_sym_end] = ACTIONS(1992), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1996), + [aux_sym_match_token1] = ACTIONS(1992), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1992), + [aux_sym_address_family_token1] = ACTIONS(1992), + [aux_sym_batch_mode_token1] = ACTIONS(1992), + [aux_sym_bind_address_token1] = ACTIONS(1992), + [aux_sym_bind_interface_token1] = ACTIONS(1992), + [aux_sym_canonical_domains_token1] = ACTIONS(1992), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1992), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1992), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1992), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1992), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1992), + [aux_sym_certificate_file_token1] = ACTIONS(1992), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1992), + [aux_sym_check_host_ip_token1] = ACTIONS(1992), + [aux_sym_ciphers_token1] = ACTIONS(1992), + [aux_sym_cipher_token1] = ACTIONS(1994), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1992), + [aux_sym_compression_token1] = ACTIONS(1992), + [aux_sym_connection_attempts_token1] = ACTIONS(1992), + [aux_sym_connect_timeout_token1] = ACTIONS(1992), + [aux_sym_control_master_token1] = ACTIONS(1992), + [aux_sym_control_path_token1] = ACTIONS(1992), + [aux_sym_control_persist_token1] = ACTIONS(1992), + [aux_sym_dynamic_forward_token1] = ACTIONS(1992), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1992), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1992), + [aux_sym_escape_char_token1] = ACTIONS(1992), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1992), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1992), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1992), + [aux_sym_forward_agent_token1] = ACTIONS(1992), + [aux_sym_forward_x11_token1] = ACTIONS(1994), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1992), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1992), + [aux_sym_gateway_ports_token1] = ACTIONS(1992), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1992), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1992), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1992), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1992), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1992), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1992), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1992), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1992), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1992), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1992), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1992), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1992), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1992), + [aux_sym_host_key_alias_token1] = ACTIONS(1992), + [aux_sym_hostname_token1] = ACTIONS(1992), + [aux_sym_identities_only_token1] = ACTIONS(1992), + [aux_sym_identity_agent_token1] = ACTIONS(1992), + [aux_sym_identity_file_token1] = ACTIONS(1992), + [aux_sym_ignore_unknown_token1] = ACTIONS(1992), + [aux_sym_include_token1] = ACTIONS(1992), + [aux_sym_ip_qos_token1] = ACTIONS(1992), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1992), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1992), + [aux_sym_kex_algorithms_token1] = ACTIONS(1992), + [aux_sym_known_hosts_command_token1] = ACTIONS(1992), + [aux_sym_local_command_token1] = ACTIONS(1992), + [aux_sym_local_forward_token1] = ACTIONS(1992), + [aux_sym_log_level_token1] = ACTIONS(1992), + [aux_sym_log_verbose_token1] = ACTIONS(1992), + [aux_sym_macs_token1] = ACTIONS(1992), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1992), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1992), + [aux_sym_password_authentication_token1] = ACTIONS(1992), + [aux_sym_permit_local_command_token1] = ACTIONS(1992), + [aux_sym_permit_remote_open_token1] = ACTIONS(1992), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1992), + [aux_sym_port_token1] = ACTIONS(1992), + [aux_sym_preferred_authentications_token1] = ACTIONS(1992), + [aux_sym_protocol_token1] = ACTIONS(1992), + [aux_sym_proxy_command_token1] = ACTIONS(1992), + [aux_sym_proxy_jump_token1] = ACTIONS(1992), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1992), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1992), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1992), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1992), + [aux_sym_rekey_limit_token1] = ACTIONS(1992), + [aux_sym_remote_command_token1] = ACTIONS(1992), + [aux_sym_remote_forward_token1] = ACTIONS(1992), + [aux_sym_request_tty_token1] = ACTIONS(1992), + [aux_sym_required_rsa_size_token1] = ACTIONS(1992), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1992), + [aux_sym_security_key_provider_token1] = ACTIONS(1992), + [aux_sym_send_env_token1] = ACTIONS(1992), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1992), + [aux_sym_server_alive_interval_token1] = ACTIONS(1992), + [aux_sym_session_type_token1] = ACTIONS(1992), + [aux_sym_set_env_token1] = ACTIONS(1992), + [aux_sym_stdin_null_token1] = ACTIONS(1992), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1992), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1992), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1992), + [aux_sym_syslog_facility_token1] = ACTIONS(1992), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1992), + [aux_sym_keep_alive_token1] = ACTIONS(1992), + [aux_sym_tunnel_token1] = ACTIONS(1994), + [aux_sym_tunnel_device_token1] = ACTIONS(1992), + [aux_sym_update_host_keys_token1] = ACTIONS(1992), + [aux_sym_use_keychain_token1] = ACTIONS(1992), + [aux_sym_use_roaming_token1] = ACTIONS(1992), + [aux_sym_user_token1] = ACTIONS(1994), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1992), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1992), + [aux_sym_visual_host_key_token1] = ACTIONS(1992), + [aux_sym_xauth_location_token1] = ACTIONS(1992), }, [246] = { - [ts_builtin_sym_end] = ACTIONS(1989), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1991), - [anon_sym_DQUOTE] = ACTIONS(1993), - [aux_sym_match_token1] = ACTIONS(1989), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1989), - [aux_sym_address_family_token1] = ACTIONS(1989), - [aux_sym_batch_mode_token1] = ACTIONS(1989), - [aux_sym_bind_address_token1] = ACTIONS(1989), - [aux_sym_bind_interface_token1] = ACTIONS(1989), - [aux_sym_canonical_domains_token1] = ACTIONS(1989), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1989), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1989), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1989), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1989), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1989), - [aux_sym_certificate_file_token1] = ACTIONS(1989), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1989), - [aux_sym_check_host_ip_token1] = ACTIONS(1989), - [aux_sym_ciphers_token1] = ACTIONS(1989), - [aux_sym_cipher_token1] = ACTIONS(1991), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1989), - [aux_sym_compression_token1] = ACTIONS(1989), - [aux_sym_connection_attempts_token1] = ACTIONS(1989), - [aux_sym_connect_timeout_token1] = ACTIONS(1989), - [aux_sym_control_master_token1] = ACTIONS(1989), - [aux_sym_control_path_token1] = ACTIONS(1989), - [aux_sym_control_persist_token1] = ACTIONS(1989), - [aux_sym_dynamic_forward_token1] = ACTIONS(1989), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1989), - [aux_sym_escape_char_token1] = ACTIONS(1989), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1989), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1989), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1989), - [aux_sym_forward_agent_token1] = ACTIONS(1989), - [aux_sym_forward_x11_token1] = ACTIONS(1991), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1989), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1989), - [aux_sym_gateway_ports_token1] = ACTIONS(1989), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1989), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1989), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1989), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1989), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1989), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1989), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1989), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1989), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1989), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1989), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1989), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1989), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1989), - [aux_sym_host_key_alias_token1] = ACTIONS(1989), - [aux_sym_hostname_token1] = ACTIONS(1989), - [aux_sym_identities_only_token1] = ACTIONS(1989), - [aux_sym_identity_agent_token1] = ACTIONS(1989), - [aux_sym_identity_file_token1] = ACTIONS(1989), - [aux_sym_ignore_unknown_token1] = ACTIONS(1989), - [aux_sym_include_token1] = ACTIONS(1989), - [aux_sym_ip_qos_token1] = ACTIONS(1989), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1989), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1989), - [aux_sym_kex_algorithms_token1] = ACTIONS(1989), - [aux_sym_known_hosts_command_token1] = ACTIONS(1989), - [aux_sym_local_command_token1] = ACTIONS(1989), - [aux_sym_local_forward_token1] = ACTIONS(1989), - [aux_sym_log_level_token1] = ACTIONS(1989), - [aux_sym_log_verbose_token1] = ACTIONS(1989), - [aux_sym_macs_token1] = ACTIONS(1989), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1989), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1989), - [aux_sym_password_authentication_token1] = ACTIONS(1989), - [aux_sym_permit_local_command_token1] = ACTIONS(1989), - [aux_sym_permit_remote_open_token1] = ACTIONS(1989), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1989), - [aux_sym_port_token1] = ACTIONS(1989), - [aux_sym_preferred_authentications_token1] = ACTIONS(1989), - [aux_sym_protocol_token1] = ACTIONS(1989), - [aux_sym_proxy_command_token1] = ACTIONS(1989), - [aux_sym_proxy_jump_token1] = ACTIONS(1989), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1989), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1989), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1989), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1989), - [aux_sym_rekey_limit_token1] = ACTIONS(1989), - [aux_sym_remote_command_token1] = ACTIONS(1989), - [aux_sym_remote_forward_token1] = ACTIONS(1989), - [aux_sym_request_tty_token1] = ACTIONS(1989), - [aux_sym_required_rsa_size_token1] = ACTIONS(1989), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1989), - [aux_sym_security_key_provider_token1] = ACTIONS(1989), - [aux_sym_send_env_token1] = ACTIONS(1989), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1989), - [aux_sym_server_alive_interval_token1] = ACTIONS(1989), - [aux_sym_session_type_token1] = ACTIONS(1989), - [aux_sym_set_env_token1] = ACTIONS(1989), - [aux_sym_stdin_null_token1] = ACTIONS(1989), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1989), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1989), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1989), - [aux_sym_syslog_facility_token1] = ACTIONS(1989), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1989), - [aux_sym_keep_alive_token1] = ACTIONS(1989), - [aux_sym_tunnel_token1] = ACTIONS(1991), - [aux_sym_tunnel_device_token1] = ACTIONS(1989), - [aux_sym_update_host_keys_token1] = ACTIONS(1989), - [aux_sym_use_keychain_token1] = ACTIONS(1989), - [aux_sym_use_roaming_token1] = ACTIONS(1989), - [aux_sym_user_token1] = ACTIONS(1991), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1989), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1989), - [aux_sym_visual_host_key_token1] = ACTIONS(1989), - [aux_sym_xauth_location_token1] = ACTIONS(1989), + [ts_builtin_sym_end] = ACTIONS(1998), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2000), + [anon_sym_DQUOTE] = ACTIONS(1998), + [aux_sym_match_token1] = ACTIONS(1998), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1998), + [aux_sym_address_family_token1] = ACTIONS(1998), + [aux_sym_batch_mode_token1] = ACTIONS(1998), + [aux_sym_bind_address_token1] = ACTIONS(1998), + [aux_sym_bind_interface_token1] = ACTIONS(1998), + [aux_sym_canonical_domains_token1] = ACTIONS(1998), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1998), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1998), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1998), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1998), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1998), + [aux_sym_certificate_file_token1] = ACTIONS(1998), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1998), + [aux_sym_check_host_ip_token1] = ACTIONS(1998), + [aux_sym_ciphers_token1] = ACTIONS(1998), + [aux_sym_cipher_token1] = ACTIONS(2000), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1998), + [aux_sym_compression_token1] = ACTIONS(1998), + [aux_sym_connection_attempts_token1] = ACTIONS(1998), + [aux_sym_connect_timeout_token1] = ACTIONS(1998), + [aux_sym_control_master_token1] = ACTIONS(1998), + [aux_sym_control_path_token1] = ACTIONS(1998), + [aux_sym_control_persist_token1] = ACTIONS(1998), + [aux_sym_dynamic_forward_token1] = ACTIONS(1998), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1998), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1998), + [aux_sym_escape_char_token1] = ACTIONS(1998), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1998), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1998), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1998), + [aux_sym_forward_agent_token1] = ACTIONS(1998), + [aux_sym_forward_x11_token1] = ACTIONS(2000), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1998), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1998), + [aux_sym_gateway_ports_token1] = ACTIONS(1998), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1998), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1998), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1998), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1998), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1998), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1998), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1998), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1998), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1998), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1998), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1998), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1998), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1998), + [aux_sym_host_key_alias_token1] = ACTIONS(1998), + [aux_sym_hostname_token1] = ACTIONS(1998), + [aux_sym_identities_only_token1] = ACTIONS(1998), + [aux_sym_identity_agent_token1] = ACTIONS(1998), + [aux_sym_identity_file_token1] = ACTIONS(1998), + [aux_sym_ignore_unknown_token1] = ACTIONS(1998), + [aux_sym_include_token1] = ACTIONS(1998), + [aux_sym_ip_qos_token1] = ACTIONS(1998), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1998), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1998), + [aux_sym_kex_algorithms_token1] = ACTIONS(1998), + [aux_sym_known_hosts_command_token1] = ACTIONS(1998), + [aux_sym_local_command_token1] = ACTIONS(1998), + [aux_sym_local_forward_token1] = ACTIONS(1998), + [aux_sym_log_level_token1] = ACTIONS(1998), + [aux_sym_log_verbose_token1] = ACTIONS(1998), + [aux_sym_macs_token1] = ACTIONS(1998), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1998), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1998), + [aux_sym_password_authentication_token1] = ACTIONS(1998), + [aux_sym_permit_local_command_token1] = ACTIONS(1998), + [aux_sym_permit_remote_open_token1] = ACTIONS(1998), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1998), + [aux_sym_port_token1] = ACTIONS(1998), + [aux_sym_preferred_authentications_token1] = ACTIONS(1998), + [aux_sym_protocol_token1] = ACTIONS(1998), + [aux_sym_proxy_command_token1] = ACTIONS(1998), + [aux_sym_proxy_jump_token1] = ACTIONS(1998), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1998), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1998), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1998), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1998), + [aux_sym_rekey_limit_token1] = ACTIONS(1998), + [aux_sym_remote_command_token1] = ACTIONS(1998), + [aux_sym_remote_forward_token1] = ACTIONS(1998), + [aux_sym_request_tty_token1] = ACTIONS(1998), + [aux_sym_required_rsa_size_token1] = ACTIONS(1998), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1998), + [aux_sym_security_key_provider_token1] = ACTIONS(1998), + [aux_sym_send_env_token1] = ACTIONS(1998), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1998), + [aux_sym_server_alive_interval_token1] = ACTIONS(1998), + [aux_sym_session_type_token1] = ACTIONS(1998), + [aux_sym_set_env_token1] = ACTIONS(1998), + [aux_sym_stdin_null_token1] = ACTIONS(1998), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1998), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1998), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1998), + [aux_sym_syslog_facility_token1] = ACTIONS(1998), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1998), + [aux_sym_keep_alive_token1] = ACTIONS(1998), + [aux_sym_tunnel_token1] = ACTIONS(2000), + [aux_sym_tunnel_device_token1] = ACTIONS(1998), + [aux_sym_update_host_keys_token1] = ACTIONS(1998), + [aux_sym_use_keychain_token1] = ACTIONS(1998), + [aux_sym_use_roaming_token1] = ACTIONS(1998), + [aux_sym_user_token1] = ACTIONS(2000), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1998), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1998), + [aux_sym_visual_host_key_token1] = ACTIONS(1998), + [aux_sym_xauth_location_token1] = ACTIONS(1998), }, [247] = { - [ts_builtin_sym_end] = ACTIONS(1995), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1997), - [anon_sym_DQUOTE] = ACTIONS(1995), - [aux_sym_match_token1] = ACTIONS(1995), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1995), - [aux_sym_address_family_token1] = ACTIONS(1995), - [aux_sym_batch_mode_token1] = ACTIONS(1995), - [aux_sym_bind_address_token1] = ACTIONS(1995), - [aux_sym_bind_interface_token1] = ACTIONS(1995), - [aux_sym_canonical_domains_token1] = ACTIONS(1995), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1995), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1995), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1995), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1995), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1995), - [aux_sym_certificate_file_token1] = ACTIONS(1995), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1995), - [aux_sym_check_host_ip_token1] = ACTIONS(1995), - [aux_sym_ciphers_token1] = ACTIONS(1995), - [aux_sym_cipher_token1] = ACTIONS(1997), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1995), - [aux_sym_compression_token1] = ACTIONS(1995), - [aux_sym_connection_attempts_token1] = ACTIONS(1995), - [aux_sym_connect_timeout_token1] = ACTIONS(1995), - [aux_sym_control_master_token1] = ACTIONS(1995), - [aux_sym_control_path_token1] = ACTIONS(1995), - [aux_sym_control_persist_token1] = ACTIONS(1995), - [aux_sym_dynamic_forward_token1] = ACTIONS(1995), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1995), - [aux_sym_escape_char_token1] = ACTIONS(1995), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1995), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1995), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1995), - [aux_sym_forward_agent_token1] = ACTIONS(1995), - [aux_sym_forward_x11_token1] = ACTIONS(1997), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1995), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1995), - [aux_sym_gateway_ports_token1] = ACTIONS(1995), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1995), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1995), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1995), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1995), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1995), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1995), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1995), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1995), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1995), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1995), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1995), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1995), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1995), - [aux_sym_host_key_alias_token1] = ACTIONS(1995), - [aux_sym_hostname_token1] = ACTIONS(1995), - [aux_sym_identities_only_token1] = ACTIONS(1995), - [aux_sym_identity_agent_token1] = ACTIONS(1995), - [aux_sym_identity_file_token1] = ACTIONS(1995), - [aux_sym_ignore_unknown_token1] = ACTIONS(1995), - [aux_sym_include_token1] = ACTIONS(1995), - [aux_sym_ip_qos_token1] = ACTIONS(1995), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1995), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1995), - [aux_sym_kex_algorithms_token1] = ACTIONS(1995), - [aux_sym_known_hosts_command_token1] = ACTIONS(1995), - [aux_sym_local_command_token1] = ACTIONS(1995), - [aux_sym_local_forward_token1] = ACTIONS(1995), - [aux_sym_log_level_token1] = ACTIONS(1995), - [aux_sym_log_verbose_token1] = ACTIONS(1995), - [aux_sym_macs_token1] = ACTIONS(1995), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1995), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1995), - [aux_sym_password_authentication_token1] = ACTIONS(1995), - [aux_sym_permit_local_command_token1] = ACTIONS(1995), - [aux_sym_permit_remote_open_token1] = ACTIONS(1995), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1995), - [aux_sym_port_token1] = ACTIONS(1995), - [aux_sym_preferred_authentications_token1] = ACTIONS(1995), - [aux_sym_protocol_token1] = ACTIONS(1995), - [aux_sym_proxy_command_token1] = ACTIONS(1995), - [aux_sym_proxy_jump_token1] = ACTIONS(1995), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1995), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1995), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1995), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1995), - [aux_sym_rekey_limit_token1] = ACTIONS(1995), - [aux_sym_remote_command_token1] = ACTIONS(1995), - [aux_sym_remote_forward_token1] = ACTIONS(1995), - [aux_sym_request_tty_token1] = ACTIONS(1995), - [aux_sym_required_rsa_size_token1] = ACTIONS(1995), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1995), - [aux_sym_security_key_provider_token1] = ACTIONS(1995), - [aux_sym_send_env_token1] = ACTIONS(1995), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1995), - [aux_sym_server_alive_interval_token1] = ACTIONS(1995), - [aux_sym_session_type_token1] = ACTIONS(1995), - [aux_sym_set_env_token1] = ACTIONS(1995), - [aux_sym_stdin_null_token1] = ACTIONS(1995), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1995), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1995), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1995), - [aux_sym_syslog_facility_token1] = ACTIONS(1995), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1995), - [aux_sym_keep_alive_token1] = ACTIONS(1995), - [aux_sym_tunnel_token1] = ACTIONS(1997), - [aux_sym_tunnel_device_token1] = ACTIONS(1995), - [aux_sym_update_host_keys_token1] = ACTIONS(1995), - [aux_sym_use_keychain_token1] = ACTIONS(1995), - [aux_sym_use_roaming_token1] = ACTIONS(1995), - [aux_sym_user_token1] = ACTIONS(1997), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1995), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1995), - [aux_sym_visual_host_key_token1] = ACTIONS(1995), - [aux_sym_xauth_location_token1] = ACTIONS(1995), + [ts_builtin_sym_end] = ACTIONS(2002), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2004), + [anon_sym_DQUOTE] = ACTIONS(2002), + [aux_sym_match_token1] = ACTIONS(2002), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2002), + [aux_sym_address_family_token1] = ACTIONS(2002), + [aux_sym_batch_mode_token1] = ACTIONS(2002), + [aux_sym_bind_address_token1] = ACTIONS(2002), + [aux_sym_bind_interface_token1] = ACTIONS(2002), + [aux_sym_canonical_domains_token1] = ACTIONS(2002), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2002), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2002), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2002), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2002), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2002), + [aux_sym_certificate_file_token1] = ACTIONS(2002), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2002), + [aux_sym_check_host_ip_token1] = ACTIONS(2002), + [aux_sym_ciphers_token1] = ACTIONS(2002), + [aux_sym_cipher_token1] = ACTIONS(2004), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2002), + [aux_sym_compression_token1] = ACTIONS(2002), + [aux_sym_connection_attempts_token1] = ACTIONS(2002), + [aux_sym_connect_timeout_token1] = ACTIONS(2002), + [aux_sym_control_master_token1] = ACTIONS(2002), + [aux_sym_control_path_token1] = ACTIONS(2002), + [aux_sym_control_persist_token1] = ACTIONS(2002), + [aux_sym_dynamic_forward_token1] = ACTIONS(2002), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2002), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2002), + [aux_sym_escape_char_token1] = ACTIONS(2002), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2002), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2002), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2002), + [aux_sym_forward_agent_token1] = ACTIONS(2002), + [aux_sym_forward_x11_token1] = ACTIONS(2004), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2002), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2002), + [aux_sym_gateway_ports_token1] = ACTIONS(2002), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2002), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2002), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2002), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2002), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2002), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2002), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2002), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2002), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2002), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2002), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2002), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2002), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2002), + [aux_sym_host_key_alias_token1] = ACTIONS(2002), + [aux_sym_hostname_token1] = ACTIONS(2002), + [aux_sym_identities_only_token1] = ACTIONS(2002), + [aux_sym_identity_agent_token1] = ACTIONS(2002), + [aux_sym_identity_file_token1] = ACTIONS(2002), + [aux_sym_ignore_unknown_token1] = ACTIONS(2002), + [aux_sym_include_token1] = ACTIONS(2002), + [aux_sym_ip_qos_token1] = ACTIONS(2002), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2002), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2002), + [aux_sym_kex_algorithms_token1] = ACTIONS(2002), + [aux_sym_known_hosts_command_token1] = ACTIONS(2002), + [aux_sym_local_command_token1] = ACTIONS(2002), + [aux_sym_local_forward_token1] = ACTIONS(2002), + [aux_sym_log_level_token1] = ACTIONS(2002), + [aux_sym_log_verbose_token1] = ACTIONS(2002), + [aux_sym_macs_token1] = ACTIONS(2002), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2002), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2002), + [aux_sym_password_authentication_token1] = ACTIONS(2002), + [aux_sym_permit_local_command_token1] = ACTIONS(2002), + [aux_sym_permit_remote_open_token1] = ACTIONS(2002), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2002), + [aux_sym_port_token1] = ACTIONS(2002), + [aux_sym_preferred_authentications_token1] = ACTIONS(2002), + [aux_sym_protocol_token1] = ACTIONS(2002), + [aux_sym_proxy_command_token1] = ACTIONS(2002), + [aux_sym_proxy_jump_token1] = ACTIONS(2002), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2002), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2002), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2002), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2002), + [aux_sym_rekey_limit_token1] = ACTIONS(2002), + [aux_sym_remote_command_token1] = ACTIONS(2002), + [aux_sym_remote_forward_token1] = ACTIONS(2002), + [aux_sym_request_tty_token1] = ACTIONS(2002), + [aux_sym_required_rsa_size_token1] = ACTIONS(2002), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2002), + [aux_sym_security_key_provider_token1] = ACTIONS(2002), + [aux_sym_send_env_token1] = ACTIONS(2002), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2002), + [aux_sym_server_alive_interval_token1] = ACTIONS(2002), + [aux_sym_session_type_token1] = ACTIONS(2002), + [aux_sym_set_env_token1] = ACTIONS(2002), + [aux_sym_stdin_null_token1] = ACTIONS(2002), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2002), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2002), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2002), + [aux_sym_syslog_facility_token1] = ACTIONS(2002), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2002), + [aux_sym_keep_alive_token1] = ACTIONS(2002), + [aux_sym_tunnel_token1] = ACTIONS(2004), + [aux_sym_tunnel_device_token1] = ACTIONS(2002), + [aux_sym_update_host_keys_token1] = ACTIONS(2002), + [aux_sym_use_keychain_token1] = ACTIONS(2002), + [aux_sym_use_roaming_token1] = ACTIONS(2002), + [aux_sym_user_token1] = ACTIONS(2004), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2002), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2002), + [aux_sym_visual_host_key_token1] = ACTIONS(2002), + [aux_sym_xauth_location_token1] = ACTIONS(2002), }, [248] = { - [ts_builtin_sym_end] = ACTIONS(1999), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2001), - [anon_sym_DQUOTE] = ACTIONS(2003), - [aux_sym_match_token1] = ACTIONS(1999), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1999), - [aux_sym_address_family_token1] = ACTIONS(1999), - [aux_sym_batch_mode_token1] = ACTIONS(1999), - [aux_sym_bind_address_token1] = ACTIONS(1999), - [aux_sym_bind_interface_token1] = ACTIONS(1999), - [aux_sym_canonical_domains_token1] = ACTIONS(1999), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1999), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1999), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1999), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1999), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1999), - [aux_sym_certificate_file_token1] = ACTIONS(1999), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1999), - [aux_sym_check_host_ip_token1] = ACTIONS(1999), - [aux_sym_ciphers_token1] = ACTIONS(1999), - [aux_sym_cipher_token1] = ACTIONS(2001), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1999), - [aux_sym_compression_token1] = ACTIONS(1999), - [aux_sym_connection_attempts_token1] = ACTIONS(1999), - [aux_sym_connect_timeout_token1] = ACTIONS(1999), - [aux_sym_control_master_token1] = ACTIONS(1999), - [aux_sym_control_path_token1] = ACTIONS(1999), - [aux_sym_control_persist_token1] = ACTIONS(1999), - [aux_sym_dynamic_forward_token1] = ACTIONS(1999), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1999), - [aux_sym_escape_char_token1] = ACTIONS(1999), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1999), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1999), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1999), - [aux_sym_forward_agent_token1] = ACTIONS(1999), - [aux_sym_forward_x11_token1] = ACTIONS(2001), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1999), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1999), - [aux_sym_gateway_ports_token1] = ACTIONS(1999), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1999), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1999), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1999), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1999), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1999), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1999), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1999), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1999), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1999), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1999), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1999), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1999), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1999), - [aux_sym_host_key_alias_token1] = ACTIONS(1999), - [aux_sym_hostname_token1] = ACTIONS(1999), - [aux_sym_identities_only_token1] = ACTIONS(1999), - [aux_sym_identity_agent_token1] = ACTIONS(1999), - [aux_sym_identity_file_token1] = ACTIONS(1999), - [aux_sym_ignore_unknown_token1] = ACTIONS(1999), - [aux_sym_include_token1] = ACTIONS(1999), - [aux_sym_ip_qos_token1] = ACTIONS(1999), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1999), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1999), - [aux_sym_kex_algorithms_token1] = ACTIONS(1999), - [aux_sym_known_hosts_command_token1] = ACTIONS(1999), - [aux_sym_local_command_token1] = ACTIONS(1999), - [aux_sym_local_forward_token1] = ACTIONS(1999), - [aux_sym_log_level_token1] = ACTIONS(1999), - [aux_sym_log_verbose_token1] = ACTIONS(1999), - [aux_sym_macs_token1] = ACTIONS(1999), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1999), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1999), - [aux_sym_password_authentication_token1] = ACTIONS(1999), - [aux_sym_permit_local_command_token1] = ACTIONS(1999), - [aux_sym_permit_remote_open_token1] = ACTIONS(1999), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1999), - [aux_sym_port_token1] = ACTIONS(1999), - [aux_sym_preferred_authentications_token1] = ACTIONS(1999), - [aux_sym_protocol_token1] = ACTIONS(1999), - [aux_sym_proxy_command_token1] = ACTIONS(1999), - [aux_sym_proxy_jump_token1] = ACTIONS(1999), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1999), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1999), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1999), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1999), - [aux_sym_rekey_limit_token1] = ACTIONS(1999), - [aux_sym_remote_command_token1] = ACTIONS(1999), - [aux_sym_remote_forward_token1] = ACTIONS(1999), - [aux_sym_request_tty_token1] = ACTIONS(1999), - [aux_sym_required_rsa_size_token1] = ACTIONS(1999), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1999), - [aux_sym_security_key_provider_token1] = ACTIONS(1999), - [aux_sym_send_env_token1] = ACTIONS(1999), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1999), - [aux_sym_server_alive_interval_token1] = ACTIONS(1999), - [aux_sym_session_type_token1] = ACTIONS(1999), - [aux_sym_set_env_token1] = ACTIONS(1999), - [aux_sym_stdin_null_token1] = ACTIONS(1999), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1999), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1999), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1999), - [aux_sym_syslog_facility_token1] = ACTIONS(1999), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1999), - [aux_sym_keep_alive_token1] = ACTIONS(1999), - [aux_sym_tunnel_token1] = ACTIONS(2001), - [aux_sym_tunnel_device_token1] = ACTIONS(1999), - [aux_sym_update_host_keys_token1] = ACTIONS(1999), - [aux_sym_use_keychain_token1] = ACTIONS(1999), - [aux_sym_use_roaming_token1] = ACTIONS(1999), - [aux_sym_user_token1] = ACTIONS(2001), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1999), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1999), - [aux_sym_visual_host_key_token1] = ACTIONS(1999), - [aux_sym_xauth_location_token1] = ACTIONS(1999), + [ts_builtin_sym_end] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2008), + [anon_sym_DQUOTE] = ACTIONS(2010), + [aux_sym_match_token1] = ACTIONS(2006), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2006), + [aux_sym_address_family_token1] = ACTIONS(2006), + [aux_sym_batch_mode_token1] = ACTIONS(2006), + [aux_sym_bind_address_token1] = ACTIONS(2006), + [aux_sym_bind_interface_token1] = ACTIONS(2006), + [aux_sym_canonical_domains_token1] = ACTIONS(2006), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2006), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2006), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2006), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2006), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2006), + [aux_sym_certificate_file_token1] = ACTIONS(2006), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2006), + [aux_sym_check_host_ip_token1] = ACTIONS(2006), + [aux_sym_ciphers_token1] = ACTIONS(2006), + [aux_sym_cipher_token1] = ACTIONS(2008), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2006), + [aux_sym_compression_token1] = ACTIONS(2006), + [aux_sym_connection_attempts_token1] = ACTIONS(2006), + [aux_sym_connect_timeout_token1] = ACTIONS(2006), + [aux_sym_control_master_token1] = ACTIONS(2006), + [aux_sym_control_path_token1] = ACTIONS(2006), + [aux_sym_control_persist_token1] = ACTIONS(2006), + [aux_sym_dynamic_forward_token1] = ACTIONS(2006), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2006), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2006), + [aux_sym_escape_char_token1] = ACTIONS(2006), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2006), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2006), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2006), + [aux_sym_forward_agent_token1] = ACTIONS(2006), + [aux_sym_forward_x11_token1] = ACTIONS(2008), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2006), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2006), + [aux_sym_gateway_ports_token1] = ACTIONS(2006), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2006), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2006), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2006), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2006), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2006), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2006), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2006), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2006), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2006), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2006), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2006), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2006), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2006), + [aux_sym_host_key_alias_token1] = ACTIONS(2006), + [aux_sym_hostname_token1] = ACTIONS(2006), + [aux_sym_identities_only_token1] = ACTIONS(2006), + [aux_sym_identity_agent_token1] = ACTIONS(2006), + [aux_sym_identity_file_token1] = ACTIONS(2006), + [aux_sym_ignore_unknown_token1] = ACTIONS(2006), + [aux_sym_include_token1] = ACTIONS(2006), + [aux_sym_ip_qos_token1] = ACTIONS(2006), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2006), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2006), + [aux_sym_kex_algorithms_token1] = ACTIONS(2006), + [aux_sym_known_hosts_command_token1] = ACTIONS(2006), + [aux_sym_local_command_token1] = ACTIONS(2006), + [aux_sym_local_forward_token1] = ACTIONS(2006), + [aux_sym_log_level_token1] = ACTIONS(2006), + [aux_sym_log_verbose_token1] = ACTIONS(2006), + [aux_sym_macs_token1] = ACTIONS(2006), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2006), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2006), + [aux_sym_password_authentication_token1] = ACTIONS(2006), + [aux_sym_permit_local_command_token1] = ACTIONS(2006), + [aux_sym_permit_remote_open_token1] = ACTIONS(2006), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2006), + [aux_sym_port_token1] = ACTIONS(2006), + [aux_sym_preferred_authentications_token1] = ACTIONS(2006), + [aux_sym_protocol_token1] = ACTIONS(2006), + [aux_sym_proxy_command_token1] = ACTIONS(2006), + [aux_sym_proxy_jump_token1] = ACTIONS(2006), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2006), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2006), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2006), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2006), + [aux_sym_rekey_limit_token1] = ACTIONS(2006), + [aux_sym_remote_command_token1] = ACTIONS(2006), + [aux_sym_remote_forward_token1] = ACTIONS(2006), + [aux_sym_request_tty_token1] = ACTIONS(2006), + [aux_sym_required_rsa_size_token1] = ACTIONS(2006), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2006), + [aux_sym_security_key_provider_token1] = ACTIONS(2006), + [aux_sym_send_env_token1] = ACTIONS(2006), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2006), + [aux_sym_server_alive_interval_token1] = ACTIONS(2006), + [aux_sym_session_type_token1] = ACTIONS(2006), + [aux_sym_set_env_token1] = ACTIONS(2006), + [aux_sym_stdin_null_token1] = ACTIONS(2006), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2006), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2006), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2006), + [aux_sym_syslog_facility_token1] = ACTIONS(2006), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2006), + [aux_sym_keep_alive_token1] = ACTIONS(2006), + [aux_sym_tunnel_token1] = ACTIONS(2008), + [aux_sym_tunnel_device_token1] = ACTIONS(2006), + [aux_sym_update_host_keys_token1] = ACTIONS(2006), + [aux_sym_use_keychain_token1] = ACTIONS(2006), + [aux_sym_use_roaming_token1] = ACTIONS(2006), + [aux_sym_user_token1] = ACTIONS(2008), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2006), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2006), + [aux_sym_visual_host_key_token1] = ACTIONS(2006), + [aux_sym_xauth_location_token1] = ACTIONS(2006), }, [249] = { - [ts_builtin_sym_end] = ACTIONS(2005), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2007), - [anon_sym_DQUOTE] = ACTIONS(2005), - [aux_sym_match_token1] = ACTIONS(2005), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2005), - [aux_sym_address_family_token1] = ACTIONS(2005), - [aux_sym_batch_mode_token1] = ACTIONS(2005), - [aux_sym_bind_address_token1] = ACTIONS(2005), - [aux_sym_bind_interface_token1] = ACTIONS(2005), - [aux_sym_canonical_domains_token1] = ACTIONS(2005), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2005), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2005), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2005), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2005), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2005), - [aux_sym_certificate_file_token1] = ACTIONS(2005), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2005), - [aux_sym_check_host_ip_token1] = ACTIONS(2005), - [aux_sym_ciphers_token1] = ACTIONS(2005), - [aux_sym_cipher_token1] = ACTIONS(2007), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2005), - [aux_sym_compression_token1] = ACTIONS(2005), - [aux_sym_connection_attempts_token1] = ACTIONS(2005), - [aux_sym_connect_timeout_token1] = ACTIONS(2005), - [aux_sym_control_master_token1] = ACTIONS(2005), - [aux_sym_control_path_token1] = ACTIONS(2005), - [aux_sym_control_persist_token1] = ACTIONS(2005), - [aux_sym_dynamic_forward_token1] = ACTIONS(2005), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2005), - [aux_sym_escape_char_token1] = ACTIONS(2005), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2005), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2005), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2005), - [aux_sym_forward_agent_token1] = ACTIONS(2005), - [aux_sym_forward_x11_token1] = ACTIONS(2007), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2005), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2005), - [aux_sym_gateway_ports_token1] = ACTIONS(2005), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2005), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2005), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2005), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2005), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2005), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2005), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2005), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2005), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2005), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2005), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2005), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2005), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2005), - [aux_sym_host_key_alias_token1] = ACTIONS(2005), - [aux_sym_hostname_token1] = ACTIONS(2005), - [aux_sym_identities_only_token1] = ACTIONS(2005), - [aux_sym_identity_agent_token1] = ACTIONS(2005), - [aux_sym_identity_file_token1] = ACTIONS(2005), - [aux_sym_ignore_unknown_token1] = ACTIONS(2005), - [aux_sym_include_token1] = ACTIONS(2005), - [aux_sym_ip_qos_token1] = ACTIONS(2005), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2005), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2005), - [aux_sym_kex_algorithms_token1] = ACTIONS(2005), - [aux_sym_known_hosts_command_token1] = ACTIONS(2005), - [aux_sym_local_command_token1] = ACTIONS(2005), - [aux_sym_local_forward_token1] = ACTIONS(2005), - [aux_sym_log_level_token1] = ACTIONS(2005), - [aux_sym_log_verbose_token1] = ACTIONS(2005), - [aux_sym_macs_token1] = ACTIONS(2005), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2005), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2005), - [aux_sym_password_authentication_token1] = ACTIONS(2005), - [aux_sym_permit_local_command_token1] = ACTIONS(2005), - [aux_sym_permit_remote_open_token1] = ACTIONS(2005), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2005), - [aux_sym_port_token1] = ACTIONS(2005), - [aux_sym_preferred_authentications_token1] = ACTIONS(2005), - [aux_sym_protocol_token1] = ACTIONS(2005), - [aux_sym_proxy_command_token1] = ACTIONS(2005), - [aux_sym_proxy_jump_token1] = ACTIONS(2005), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2005), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2005), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2005), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2005), - [aux_sym_rekey_limit_token1] = ACTIONS(2005), - [aux_sym_remote_command_token1] = ACTIONS(2005), - [aux_sym_remote_forward_token1] = ACTIONS(2005), - [aux_sym_request_tty_token1] = ACTIONS(2005), - [aux_sym_required_rsa_size_token1] = ACTIONS(2005), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2005), - [aux_sym_security_key_provider_token1] = ACTIONS(2005), - [aux_sym_send_env_token1] = ACTIONS(2005), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2005), - [aux_sym_server_alive_interval_token1] = ACTIONS(2005), - [aux_sym_session_type_token1] = ACTIONS(2005), - [aux_sym_set_env_token1] = ACTIONS(2005), - [aux_sym_stdin_null_token1] = ACTIONS(2005), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2005), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2005), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2005), - [aux_sym_syslog_facility_token1] = ACTIONS(2005), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2005), - [aux_sym_keep_alive_token1] = ACTIONS(2005), - [aux_sym_tunnel_token1] = ACTIONS(2007), - [aux_sym_tunnel_device_token1] = ACTIONS(2005), - [aux_sym_update_host_keys_token1] = ACTIONS(2005), - [aux_sym_use_keychain_token1] = ACTIONS(2005), - [aux_sym_use_roaming_token1] = ACTIONS(2005), - [aux_sym_user_token1] = ACTIONS(2007), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2005), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2005), - [aux_sym_visual_host_key_token1] = ACTIONS(2005), - [aux_sym_xauth_location_token1] = ACTIONS(2005), + [ts_builtin_sym_end] = ACTIONS(2012), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2012), + [aux_sym_match_token1] = ACTIONS(2012), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2012), + [aux_sym_address_family_token1] = ACTIONS(2012), + [aux_sym_batch_mode_token1] = ACTIONS(2012), + [aux_sym_bind_address_token1] = ACTIONS(2012), + [aux_sym_bind_interface_token1] = ACTIONS(2012), + [aux_sym_canonical_domains_token1] = ACTIONS(2012), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2012), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2012), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2012), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2012), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2012), + [aux_sym_certificate_file_token1] = ACTIONS(2012), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2012), + [aux_sym_check_host_ip_token1] = ACTIONS(2012), + [aux_sym_ciphers_token1] = ACTIONS(2012), + [aux_sym_cipher_token1] = ACTIONS(2014), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2012), + [aux_sym_compression_token1] = ACTIONS(2012), + [aux_sym_connection_attempts_token1] = ACTIONS(2012), + [aux_sym_connect_timeout_token1] = ACTIONS(2012), + [aux_sym_control_master_token1] = ACTIONS(2012), + [aux_sym_control_path_token1] = ACTIONS(2012), + [aux_sym_control_persist_token1] = ACTIONS(2012), + [aux_sym_dynamic_forward_token1] = ACTIONS(2012), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2012), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2012), + [aux_sym_escape_char_token1] = ACTIONS(2012), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2012), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2012), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2012), + [aux_sym_forward_agent_token1] = ACTIONS(2012), + [aux_sym_forward_x11_token1] = ACTIONS(2014), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2012), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2012), + [aux_sym_gateway_ports_token1] = ACTIONS(2012), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2012), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2012), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2012), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2012), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2012), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2012), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2012), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2012), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2012), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2012), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2012), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2012), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2012), + [aux_sym_host_key_alias_token1] = ACTIONS(2012), + [aux_sym_hostname_token1] = ACTIONS(2012), + [aux_sym_identities_only_token1] = ACTIONS(2012), + [aux_sym_identity_agent_token1] = ACTIONS(2012), + [aux_sym_identity_file_token1] = ACTIONS(2012), + [aux_sym_ignore_unknown_token1] = ACTIONS(2012), + [aux_sym_include_token1] = ACTIONS(2012), + [aux_sym_ip_qos_token1] = ACTIONS(2012), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2012), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2012), + [aux_sym_kex_algorithms_token1] = ACTIONS(2012), + [aux_sym_known_hosts_command_token1] = ACTIONS(2012), + [aux_sym_local_command_token1] = ACTIONS(2012), + [aux_sym_local_forward_token1] = ACTIONS(2012), + [aux_sym_log_level_token1] = ACTIONS(2012), + [aux_sym_log_verbose_token1] = ACTIONS(2012), + [aux_sym_macs_token1] = ACTIONS(2012), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2012), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2012), + [aux_sym_password_authentication_token1] = ACTIONS(2012), + [aux_sym_permit_local_command_token1] = ACTIONS(2012), + [aux_sym_permit_remote_open_token1] = ACTIONS(2012), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2012), + [aux_sym_port_token1] = ACTIONS(2012), + [aux_sym_preferred_authentications_token1] = ACTIONS(2012), + [aux_sym_protocol_token1] = ACTIONS(2012), + [aux_sym_proxy_command_token1] = ACTIONS(2012), + [aux_sym_proxy_jump_token1] = ACTIONS(2012), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2012), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2012), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2012), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2012), + [aux_sym_rekey_limit_token1] = ACTIONS(2012), + [aux_sym_remote_command_token1] = ACTIONS(2012), + [aux_sym_remote_forward_token1] = ACTIONS(2012), + [aux_sym_request_tty_token1] = ACTIONS(2012), + [aux_sym_required_rsa_size_token1] = ACTIONS(2012), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2012), + [aux_sym_security_key_provider_token1] = ACTIONS(2012), + [aux_sym_send_env_token1] = ACTIONS(2012), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2012), + [aux_sym_server_alive_interval_token1] = ACTIONS(2012), + [aux_sym_session_type_token1] = ACTIONS(2012), + [aux_sym_set_env_token1] = ACTIONS(2012), + [aux_sym_stdin_null_token1] = ACTIONS(2012), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2012), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2012), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2012), + [aux_sym_syslog_facility_token1] = ACTIONS(2012), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2012), + [aux_sym_keep_alive_token1] = ACTIONS(2012), + [aux_sym_tunnel_token1] = ACTIONS(2014), + [aux_sym_tunnel_device_token1] = ACTIONS(2012), + [aux_sym_update_host_keys_token1] = ACTIONS(2012), + [aux_sym_use_keychain_token1] = ACTIONS(2012), + [aux_sym_use_roaming_token1] = ACTIONS(2012), + [aux_sym_user_token1] = ACTIONS(2014), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2012), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2012), + [aux_sym_visual_host_key_token1] = ACTIONS(2012), + [aux_sym_xauth_location_token1] = ACTIONS(2012), }, [250] = { - [ts_builtin_sym_end] = ACTIONS(2009), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2011), - [anon_sym_DQUOTE] = ACTIONS(2013), - [aux_sym_match_token1] = ACTIONS(2009), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2009), - [aux_sym_address_family_token1] = ACTIONS(2009), - [aux_sym_batch_mode_token1] = ACTIONS(2009), - [aux_sym_bind_address_token1] = ACTIONS(2009), - [aux_sym_bind_interface_token1] = ACTIONS(2009), - [aux_sym_canonical_domains_token1] = ACTIONS(2009), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2009), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2009), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2009), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2009), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2009), - [aux_sym_certificate_file_token1] = ACTIONS(2009), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2009), - [aux_sym_check_host_ip_token1] = ACTIONS(2009), - [aux_sym_ciphers_token1] = ACTIONS(2009), - [aux_sym_cipher_token1] = ACTIONS(2011), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2009), - [aux_sym_compression_token1] = ACTIONS(2009), - [aux_sym_connection_attempts_token1] = ACTIONS(2009), - [aux_sym_connect_timeout_token1] = ACTIONS(2009), - [aux_sym_control_master_token1] = ACTIONS(2009), - [aux_sym_control_path_token1] = ACTIONS(2009), - [aux_sym_control_persist_token1] = ACTIONS(2009), - [aux_sym_dynamic_forward_token1] = ACTIONS(2009), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2009), - [aux_sym_escape_char_token1] = ACTIONS(2009), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2009), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2009), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2009), - [aux_sym_forward_agent_token1] = ACTIONS(2009), - [aux_sym_forward_x11_token1] = ACTIONS(2011), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2009), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2009), - [aux_sym_gateway_ports_token1] = ACTIONS(2009), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2009), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2009), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2009), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2009), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2009), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2009), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2009), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2009), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2009), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2009), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2009), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2009), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2009), - [aux_sym_host_key_alias_token1] = ACTIONS(2009), - [aux_sym_hostname_token1] = ACTIONS(2009), - [aux_sym_identities_only_token1] = ACTIONS(2009), - [aux_sym_identity_agent_token1] = ACTIONS(2009), - [aux_sym_identity_file_token1] = ACTIONS(2009), - [aux_sym_ignore_unknown_token1] = ACTIONS(2009), - [aux_sym_include_token1] = ACTIONS(2009), - [aux_sym_ip_qos_token1] = ACTIONS(2009), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2009), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2009), - [aux_sym_kex_algorithms_token1] = ACTIONS(2009), - [aux_sym_known_hosts_command_token1] = ACTIONS(2009), - [aux_sym_local_command_token1] = ACTIONS(2009), - [aux_sym_local_forward_token1] = ACTIONS(2009), - [aux_sym_log_level_token1] = ACTIONS(2009), - [aux_sym_log_verbose_token1] = ACTIONS(2009), - [aux_sym_macs_token1] = ACTIONS(2009), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2009), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2009), - [aux_sym_password_authentication_token1] = ACTIONS(2009), - [aux_sym_permit_local_command_token1] = ACTIONS(2009), - [aux_sym_permit_remote_open_token1] = ACTIONS(2009), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2009), - [aux_sym_port_token1] = ACTIONS(2009), - [aux_sym_preferred_authentications_token1] = ACTIONS(2009), - [aux_sym_protocol_token1] = ACTIONS(2009), - [aux_sym_proxy_command_token1] = ACTIONS(2009), - [aux_sym_proxy_jump_token1] = ACTIONS(2009), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2009), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2009), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2009), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2009), - [aux_sym_rekey_limit_token1] = ACTIONS(2009), - [aux_sym_remote_command_token1] = ACTIONS(2009), - [aux_sym_remote_forward_token1] = ACTIONS(2009), - [aux_sym_request_tty_token1] = ACTIONS(2009), - [aux_sym_required_rsa_size_token1] = ACTIONS(2009), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2009), - [aux_sym_security_key_provider_token1] = ACTIONS(2009), - [aux_sym_send_env_token1] = ACTIONS(2009), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2009), - [aux_sym_server_alive_interval_token1] = ACTIONS(2009), - [aux_sym_session_type_token1] = ACTIONS(2009), - [aux_sym_set_env_token1] = ACTIONS(2009), - [aux_sym_stdin_null_token1] = ACTIONS(2009), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2009), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2009), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2009), - [aux_sym_syslog_facility_token1] = ACTIONS(2009), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2009), - [aux_sym_keep_alive_token1] = ACTIONS(2009), - [aux_sym_tunnel_token1] = ACTIONS(2011), - [aux_sym_tunnel_device_token1] = ACTIONS(2009), - [aux_sym_update_host_keys_token1] = ACTIONS(2009), - [aux_sym_use_keychain_token1] = ACTIONS(2009), - [aux_sym_use_roaming_token1] = ACTIONS(2009), - [aux_sym_user_token1] = ACTIONS(2011), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2009), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2009), - [aux_sym_visual_host_key_token1] = ACTIONS(2009), - [aux_sym_xauth_location_token1] = ACTIONS(2009), + [ts_builtin_sym_end] = ACTIONS(2016), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2020), + [aux_sym_match_token1] = ACTIONS(2016), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2016), + [aux_sym_address_family_token1] = ACTIONS(2016), + [aux_sym_batch_mode_token1] = ACTIONS(2016), + [aux_sym_bind_address_token1] = ACTIONS(2016), + [aux_sym_bind_interface_token1] = ACTIONS(2016), + [aux_sym_canonical_domains_token1] = ACTIONS(2016), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2016), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2016), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2016), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2016), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2016), + [aux_sym_certificate_file_token1] = ACTIONS(2016), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2016), + [aux_sym_check_host_ip_token1] = ACTIONS(2016), + [aux_sym_ciphers_token1] = ACTIONS(2016), + [aux_sym_cipher_token1] = ACTIONS(2018), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2016), + [aux_sym_compression_token1] = ACTIONS(2016), + [aux_sym_connection_attempts_token1] = ACTIONS(2016), + [aux_sym_connect_timeout_token1] = ACTIONS(2016), + [aux_sym_control_master_token1] = ACTIONS(2016), + [aux_sym_control_path_token1] = ACTIONS(2016), + [aux_sym_control_persist_token1] = ACTIONS(2016), + [aux_sym_dynamic_forward_token1] = ACTIONS(2016), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2016), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2016), + [aux_sym_escape_char_token1] = ACTIONS(2016), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2016), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2016), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2016), + [aux_sym_forward_agent_token1] = ACTIONS(2016), + [aux_sym_forward_x11_token1] = ACTIONS(2018), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2016), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2016), + [aux_sym_gateway_ports_token1] = ACTIONS(2016), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2016), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2016), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2016), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2016), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2016), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2016), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2016), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2016), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2016), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2016), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2016), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2016), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2016), + [aux_sym_host_key_alias_token1] = ACTIONS(2016), + [aux_sym_hostname_token1] = ACTIONS(2016), + [aux_sym_identities_only_token1] = ACTIONS(2016), + [aux_sym_identity_agent_token1] = ACTIONS(2016), + [aux_sym_identity_file_token1] = ACTIONS(2016), + [aux_sym_ignore_unknown_token1] = ACTIONS(2016), + [aux_sym_include_token1] = ACTIONS(2016), + [aux_sym_ip_qos_token1] = ACTIONS(2016), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2016), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2016), + [aux_sym_kex_algorithms_token1] = ACTIONS(2016), + [aux_sym_known_hosts_command_token1] = ACTIONS(2016), + [aux_sym_local_command_token1] = ACTIONS(2016), + [aux_sym_local_forward_token1] = ACTIONS(2016), + [aux_sym_log_level_token1] = ACTIONS(2016), + [aux_sym_log_verbose_token1] = ACTIONS(2016), + [aux_sym_macs_token1] = ACTIONS(2016), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2016), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2016), + [aux_sym_password_authentication_token1] = ACTIONS(2016), + [aux_sym_permit_local_command_token1] = ACTIONS(2016), + [aux_sym_permit_remote_open_token1] = ACTIONS(2016), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2016), + [aux_sym_port_token1] = ACTIONS(2016), + [aux_sym_preferred_authentications_token1] = ACTIONS(2016), + [aux_sym_protocol_token1] = ACTIONS(2016), + [aux_sym_proxy_command_token1] = ACTIONS(2016), + [aux_sym_proxy_jump_token1] = ACTIONS(2016), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2016), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2016), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2016), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2016), + [aux_sym_rekey_limit_token1] = ACTIONS(2016), + [aux_sym_remote_command_token1] = ACTIONS(2016), + [aux_sym_remote_forward_token1] = ACTIONS(2016), + [aux_sym_request_tty_token1] = ACTIONS(2016), + [aux_sym_required_rsa_size_token1] = ACTIONS(2016), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2016), + [aux_sym_security_key_provider_token1] = ACTIONS(2016), + [aux_sym_send_env_token1] = ACTIONS(2016), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2016), + [aux_sym_server_alive_interval_token1] = ACTIONS(2016), + [aux_sym_session_type_token1] = ACTIONS(2016), + [aux_sym_set_env_token1] = ACTIONS(2016), + [aux_sym_stdin_null_token1] = ACTIONS(2016), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2016), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2016), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2016), + [aux_sym_syslog_facility_token1] = ACTIONS(2016), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2016), + [aux_sym_keep_alive_token1] = ACTIONS(2016), + [aux_sym_tunnel_token1] = ACTIONS(2018), + [aux_sym_tunnel_device_token1] = ACTIONS(2016), + [aux_sym_update_host_keys_token1] = ACTIONS(2016), + [aux_sym_use_keychain_token1] = ACTIONS(2016), + [aux_sym_use_roaming_token1] = ACTIONS(2016), + [aux_sym_user_token1] = ACTIONS(2018), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2016), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2016), + [aux_sym_visual_host_key_token1] = ACTIONS(2016), + [aux_sym_xauth_location_token1] = ACTIONS(2016), }, [251] = { - [ts_builtin_sym_end] = ACTIONS(2015), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2017), - [anon_sym_DQUOTE] = ACTIONS(2015), - [aux_sym_match_token1] = ACTIONS(2015), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2015), - [aux_sym_address_family_token1] = ACTIONS(2015), - [aux_sym_batch_mode_token1] = ACTIONS(2015), - [aux_sym_bind_address_token1] = ACTIONS(2015), - [aux_sym_bind_interface_token1] = ACTIONS(2015), - [aux_sym_canonical_domains_token1] = ACTIONS(2015), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2015), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2015), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2015), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2015), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2015), - [aux_sym_certificate_file_token1] = ACTIONS(2015), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2015), - [aux_sym_check_host_ip_token1] = ACTIONS(2015), - [aux_sym_ciphers_token1] = ACTIONS(2015), - [aux_sym_cipher_token1] = ACTIONS(2017), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2015), - [aux_sym_compression_token1] = ACTIONS(2015), - [aux_sym_connection_attempts_token1] = ACTIONS(2015), - [aux_sym_connect_timeout_token1] = ACTIONS(2015), - [aux_sym_control_master_token1] = ACTIONS(2015), - [aux_sym_control_path_token1] = ACTIONS(2015), - [aux_sym_control_persist_token1] = ACTIONS(2015), - [aux_sym_dynamic_forward_token1] = ACTIONS(2015), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2015), - [aux_sym_escape_char_token1] = ACTIONS(2015), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2015), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2015), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2015), - [aux_sym_forward_agent_token1] = ACTIONS(2015), - [aux_sym_forward_x11_token1] = ACTIONS(2017), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2015), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2015), - [aux_sym_gateway_ports_token1] = ACTIONS(2015), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2015), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2015), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2015), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2015), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2015), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2015), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2015), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2015), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2015), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2015), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2015), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2015), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2015), - [aux_sym_host_key_alias_token1] = ACTIONS(2015), - [aux_sym_hostname_token1] = ACTIONS(2015), - [aux_sym_identities_only_token1] = ACTIONS(2015), - [aux_sym_identity_agent_token1] = ACTIONS(2015), - [aux_sym_identity_file_token1] = ACTIONS(2015), - [aux_sym_ignore_unknown_token1] = ACTIONS(2015), - [aux_sym_include_token1] = ACTIONS(2015), - [aux_sym_ip_qos_token1] = ACTIONS(2015), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2015), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2015), - [aux_sym_kex_algorithms_token1] = ACTIONS(2015), - [aux_sym_known_hosts_command_token1] = ACTIONS(2015), - [aux_sym_local_command_token1] = ACTIONS(2015), - [aux_sym_local_forward_token1] = ACTIONS(2015), - [aux_sym_log_level_token1] = ACTIONS(2015), - [aux_sym_log_verbose_token1] = ACTIONS(2015), - [aux_sym_macs_token1] = ACTIONS(2015), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2015), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2015), - [aux_sym_password_authentication_token1] = ACTIONS(2015), - [aux_sym_permit_local_command_token1] = ACTIONS(2015), - [aux_sym_permit_remote_open_token1] = ACTIONS(2015), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2015), - [aux_sym_port_token1] = ACTIONS(2015), - [aux_sym_preferred_authentications_token1] = ACTIONS(2015), - [aux_sym_protocol_token1] = ACTIONS(2015), - [aux_sym_proxy_command_token1] = ACTIONS(2015), - [aux_sym_proxy_jump_token1] = ACTIONS(2015), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2015), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2015), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2015), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2015), - [aux_sym_rekey_limit_token1] = ACTIONS(2015), - [aux_sym_remote_command_token1] = ACTIONS(2015), - [aux_sym_remote_forward_token1] = ACTIONS(2015), - [aux_sym_request_tty_token1] = ACTIONS(2015), - [aux_sym_required_rsa_size_token1] = ACTIONS(2015), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2015), - [aux_sym_security_key_provider_token1] = ACTIONS(2015), - [aux_sym_send_env_token1] = ACTIONS(2015), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2015), - [aux_sym_server_alive_interval_token1] = ACTIONS(2015), - [aux_sym_session_type_token1] = ACTIONS(2015), - [aux_sym_set_env_token1] = ACTIONS(2015), - [aux_sym_stdin_null_token1] = ACTIONS(2015), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2015), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2015), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2015), - [aux_sym_syslog_facility_token1] = ACTIONS(2015), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2015), - [aux_sym_keep_alive_token1] = ACTIONS(2015), - [aux_sym_tunnel_token1] = ACTIONS(2017), - [aux_sym_tunnel_device_token1] = ACTIONS(2015), - [aux_sym_update_host_keys_token1] = ACTIONS(2015), - [aux_sym_use_keychain_token1] = ACTIONS(2015), - [aux_sym_use_roaming_token1] = ACTIONS(2015), - [aux_sym_user_token1] = ACTIONS(2017), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2015), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2015), - [aux_sym_visual_host_key_token1] = ACTIONS(2015), - [aux_sym_xauth_location_token1] = ACTIONS(2015), + [ts_builtin_sym_end] = ACTIONS(2022), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2022), + [aux_sym_match_token1] = ACTIONS(2022), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2022), + [aux_sym_address_family_token1] = ACTIONS(2022), + [aux_sym_batch_mode_token1] = ACTIONS(2022), + [aux_sym_bind_address_token1] = ACTIONS(2022), + [aux_sym_bind_interface_token1] = ACTIONS(2022), + [aux_sym_canonical_domains_token1] = ACTIONS(2022), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2022), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2022), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2022), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2022), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2022), + [aux_sym_certificate_file_token1] = ACTIONS(2022), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2022), + [aux_sym_check_host_ip_token1] = ACTIONS(2022), + [aux_sym_ciphers_token1] = ACTIONS(2022), + [aux_sym_cipher_token1] = ACTIONS(2024), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2022), + [aux_sym_compression_token1] = ACTIONS(2022), + [aux_sym_connection_attempts_token1] = ACTIONS(2022), + [aux_sym_connect_timeout_token1] = ACTIONS(2022), + [aux_sym_control_master_token1] = ACTIONS(2022), + [aux_sym_control_path_token1] = ACTIONS(2022), + [aux_sym_control_persist_token1] = ACTIONS(2022), + [aux_sym_dynamic_forward_token1] = ACTIONS(2022), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2022), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2022), + [aux_sym_escape_char_token1] = ACTIONS(2022), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2022), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2022), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2022), + [aux_sym_forward_agent_token1] = ACTIONS(2022), + [aux_sym_forward_x11_token1] = ACTIONS(2024), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2022), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2022), + [aux_sym_gateway_ports_token1] = ACTIONS(2022), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2022), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2022), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2022), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2022), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2022), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2022), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2022), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2022), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2022), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2022), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2022), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2022), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2022), + [aux_sym_host_key_alias_token1] = ACTIONS(2022), + [aux_sym_hostname_token1] = ACTIONS(2022), + [aux_sym_identities_only_token1] = ACTIONS(2022), + [aux_sym_identity_agent_token1] = ACTIONS(2022), + [aux_sym_identity_file_token1] = ACTIONS(2022), + [aux_sym_ignore_unknown_token1] = ACTIONS(2022), + [aux_sym_include_token1] = ACTIONS(2022), + [aux_sym_ip_qos_token1] = ACTIONS(2022), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2022), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2022), + [aux_sym_kex_algorithms_token1] = ACTIONS(2022), + [aux_sym_known_hosts_command_token1] = ACTIONS(2022), + [aux_sym_local_command_token1] = ACTIONS(2022), + [aux_sym_local_forward_token1] = ACTIONS(2022), + [aux_sym_log_level_token1] = ACTIONS(2022), + [aux_sym_log_verbose_token1] = ACTIONS(2022), + [aux_sym_macs_token1] = ACTIONS(2022), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2022), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2022), + [aux_sym_password_authentication_token1] = ACTIONS(2022), + [aux_sym_permit_local_command_token1] = ACTIONS(2022), + [aux_sym_permit_remote_open_token1] = ACTIONS(2022), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2022), + [aux_sym_port_token1] = ACTIONS(2022), + [aux_sym_preferred_authentications_token1] = ACTIONS(2022), + [aux_sym_protocol_token1] = ACTIONS(2022), + [aux_sym_proxy_command_token1] = ACTIONS(2022), + [aux_sym_proxy_jump_token1] = ACTIONS(2022), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2022), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2022), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2022), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2022), + [aux_sym_rekey_limit_token1] = ACTIONS(2022), + [aux_sym_remote_command_token1] = ACTIONS(2022), + [aux_sym_remote_forward_token1] = ACTIONS(2022), + [aux_sym_request_tty_token1] = ACTIONS(2022), + [aux_sym_required_rsa_size_token1] = ACTIONS(2022), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2022), + [aux_sym_security_key_provider_token1] = ACTIONS(2022), + [aux_sym_send_env_token1] = ACTIONS(2022), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2022), + [aux_sym_server_alive_interval_token1] = ACTIONS(2022), + [aux_sym_session_type_token1] = ACTIONS(2022), + [aux_sym_set_env_token1] = ACTIONS(2022), + [aux_sym_stdin_null_token1] = ACTIONS(2022), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2022), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2022), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2022), + [aux_sym_syslog_facility_token1] = ACTIONS(2022), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2022), + [aux_sym_keep_alive_token1] = ACTIONS(2022), + [aux_sym_tunnel_token1] = ACTIONS(2024), + [aux_sym_tunnel_device_token1] = ACTIONS(2022), + [aux_sym_update_host_keys_token1] = ACTIONS(2022), + [aux_sym_use_keychain_token1] = ACTIONS(2022), + [aux_sym_use_roaming_token1] = ACTIONS(2022), + [aux_sym_user_token1] = ACTIONS(2024), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2022), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2022), + [aux_sym_visual_host_key_token1] = ACTIONS(2022), + [aux_sym_xauth_location_token1] = ACTIONS(2022), }, [252] = { - [ts_builtin_sym_end] = ACTIONS(2019), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2021), - [anon_sym_DQUOTE] = ACTIONS(2023), - [aux_sym_match_token1] = ACTIONS(2019), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2019), - [aux_sym_address_family_token1] = ACTIONS(2019), - [aux_sym_batch_mode_token1] = ACTIONS(2019), - [aux_sym_bind_address_token1] = ACTIONS(2019), - [aux_sym_bind_interface_token1] = ACTIONS(2019), - [aux_sym_canonical_domains_token1] = ACTIONS(2019), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2019), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2019), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2019), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2019), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2019), - [aux_sym_certificate_file_token1] = ACTIONS(2019), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2019), - [aux_sym_check_host_ip_token1] = ACTIONS(2019), - [aux_sym_ciphers_token1] = ACTIONS(2019), - [aux_sym_cipher_token1] = ACTIONS(2021), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2019), - [aux_sym_compression_token1] = ACTIONS(2019), - [aux_sym_connection_attempts_token1] = ACTIONS(2019), - [aux_sym_connect_timeout_token1] = ACTIONS(2019), - [aux_sym_control_master_token1] = ACTIONS(2019), - [aux_sym_control_path_token1] = ACTIONS(2019), - [aux_sym_control_persist_token1] = ACTIONS(2019), - [aux_sym_dynamic_forward_token1] = ACTIONS(2019), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2019), - [aux_sym_escape_char_token1] = ACTIONS(2019), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2019), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2019), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2019), - [aux_sym_forward_agent_token1] = ACTIONS(2019), - [aux_sym_forward_x11_token1] = ACTIONS(2021), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2019), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2019), - [aux_sym_gateway_ports_token1] = ACTIONS(2019), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2019), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2019), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2019), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2019), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2019), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2019), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2019), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2019), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2019), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2019), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2019), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2019), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2019), - [aux_sym_host_key_alias_token1] = ACTIONS(2019), - [aux_sym_hostname_token1] = ACTIONS(2019), - [aux_sym_identities_only_token1] = ACTIONS(2019), - [aux_sym_identity_agent_token1] = ACTIONS(2019), - [aux_sym_identity_file_token1] = ACTIONS(2019), - [aux_sym_ignore_unknown_token1] = ACTIONS(2019), - [aux_sym_include_token1] = ACTIONS(2019), - [aux_sym_ip_qos_token1] = ACTIONS(2019), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2019), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2019), - [aux_sym_kex_algorithms_token1] = ACTIONS(2019), - [aux_sym_known_hosts_command_token1] = ACTIONS(2019), - [aux_sym_local_command_token1] = ACTIONS(2019), - [aux_sym_local_forward_token1] = ACTIONS(2019), - [aux_sym_log_level_token1] = ACTIONS(2019), - [aux_sym_log_verbose_token1] = ACTIONS(2019), - [aux_sym_macs_token1] = ACTIONS(2019), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2019), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2019), - [aux_sym_password_authentication_token1] = ACTIONS(2019), - [aux_sym_permit_local_command_token1] = ACTIONS(2019), - [aux_sym_permit_remote_open_token1] = ACTIONS(2019), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2019), - [aux_sym_port_token1] = ACTIONS(2019), - [aux_sym_preferred_authentications_token1] = ACTIONS(2019), - [aux_sym_protocol_token1] = ACTIONS(2019), - [aux_sym_proxy_command_token1] = ACTIONS(2019), - [aux_sym_proxy_jump_token1] = ACTIONS(2019), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2019), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2019), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2019), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2019), - [aux_sym_rekey_limit_token1] = ACTIONS(2019), - [aux_sym_remote_command_token1] = ACTIONS(2019), - [aux_sym_remote_forward_token1] = ACTIONS(2019), - [aux_sym_request_tty_token1] = ACTIONS(2019), - [aux_sym_required_rsa_size_token1] = ACTIONS(2019), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2019), - [aux_sym_security_key_provider_token1] = ACTIONS(2019), - [aux_sym_send_env_token1] = ACTIONS(2019), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2019), - [aux_sym_server_alive_interval_token1] = ACTIONS(2019), - [aux_sym_session_type_token1] = ACTIONS(2019), - [aux_sym_set_env_token1] = ACTIONS(2019), - [aux_sym_stdin_null_token1] = ACTIONS(2019), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2019), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2019), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2019), - [aux_sym_syslog_facility_token1] = ACTIONS(2019), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2019), - [aux_sym_keep_alive_token1] = ACTIONS(2019), - [aux_sym_tunnel_token1] = ACTIONS(2021), - [aux_sym_tunnel_device_token1] = ACTIONS(2019), - [aux_sym_update_host_keys_token1] = ACTIONS(2019), - [aux_sym_use_keychain_token1] = ACTIONS(2019), - [aux_sym_use_roaming_token1] = ACTIONS(2019), - [aux_sym_user_token1] = ACTIONS(2021), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2019), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2019), - [aux_sym_visual_host_key_token1] = ACTIONS(2019), - [aux_sym_xauth_location_token1] = ACTIONS(2019), + [ts_builtin_sym_end] = ACTIONS(2026), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2030), + [aux_sym_match_token1] = ACTIONS(2026), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2026), + [aux_sym_address_family_token1] = ACTIONS(2026), + [aux_sym_batch_mode_token1] = ACTIONS(2026), + [aux_sym_bind_address_token1] = ACTIONS(2026), + [aux_sym_bind_interface_token1] = ACTIONS(2026), + [aux_sym_canonical_domains_token1] = ACTIONS(2026), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2026), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2026), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2026), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2026), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2026), + [aux_sym_certificate_file_token1] = ACTIONS(2026), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2026), + [aux_sym_check_host_ip_token1] = ACTIONS(2026), + [aux_sym_ciphers_token1] = ACTIONS(2026), + [aux_sym_cipher_token1] = ACTIONS(2028), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2026), + [aux_sym_compression_token1] = ACTIONS(2026), + [aux_sym_connection_attempts_token1] = ACTIONS(2026), + [aux_sym_connect_timeout_token1] = ACTIONS(2026), + [aux_sym_control_master_token1] = ACTIONS(2026), + [aux_sym_control_path_token1] = ACTIONS(2026), + [aux_sym_control_persist_token1] = ACTIONS(2026), + [aux_sym_dynamic_forward_token1] = ACTIONS(2026), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2026), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2026), + [aux_sym_escape_char_token1] = ACTIONS(2026), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2026), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2026), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2026), + [aux_sym_forward_agent_token1] = ACTIONS(2026), + [aux_sym_forward_x11_token1] = ACTIONS(2028), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2026), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2026), + [aux_sym_gateway_ports_token1] = ACTIONS(2026), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2026), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2026), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2026), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2026), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2026), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2026), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2026), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2026), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2026), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2026), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2026), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2026), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2026), + [aux_sym_host_key_alias_token1] = ACTIONS(2026), + [aux_sym_hostname_token1] = ACTIONS(2026), + [aux_sym_identities_only_token1] = ACTIONS(2026), + [aux_sym_identity_agent_token1] = ACTIONS(2026), + [aux_sym_identity_file_token1] = ACTIONS(2026), + [aux_sym_ignore_unknown_token1] = ACTIONS(2026), + [aux_sym_include_token1] = ACTIONS(2026), + [aux_sym_ip_qos_token1] = ACTIONS(2026), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2026), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2026), + [aux_sym_kex_algorithms_token1] = ACTIONS(2026), + [aux_sym_known_hosts_command_token1] = ACTIONS(2026), + [aux_sym_local_command_token1] = ACTIONS(2026), + [aux_sym_local_forward_token1] = ACTIONS(2026), + [aux_sym_log_level_token1] = ACTIONS(2026), + [aux_sym_log_verbose_token1] = ACTIONS(2026), + [aux_sym_macs_token1] = ACTIONS(2026), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2026), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2026), + [aux_sym_password_authentication_token1] = ACTIONS(2026), + [aux_sym_permit_local_command_token1] = ACTIONS(2026), + [aux_sym_permit_remote_open_token1] = ACTIONS(2026), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2026), + [aux_sym_port_token1] = ACTIONS(2026), + [aux_sym_preferred_authentications_token1] = ACTIONS(2026), + [aux_sym_protocol_token1] = ACTIONS(2026), + [aux_sym_proxy_command_token1] = ACTIONS(2026), + [aux_sym_proxy_jump_token1] = ACTIONS(2026), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2026), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2026), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2026), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2026), + [aux_sym_rekey_limit_token1] = ACTIONS(2026), + [aux_sym_remote_command_token1] = ACTIONS(2026), + [aux_sym_remote_forward_token1] = ACTIONS(2026), + [aux_sym_request_tty_token1] = ACTIONS(2026), + [aux_sym_required_rsa_size_token1] = ACTIONS(2026), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2026), + [aux_sym_security_key_provider_token1] = ACTIONS(2026), + [aux_sym_send_env_token1] = ACTIONS(2026), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2026), + [aux_sym_server_alive_interval_token1] = ACTIONS(2026), + [aux_sym_session_type_token1] = ACTIONS(2026), + [aux_sym_set_env_token1] = ACTIONS(2026), + [aux_sym_stdin_null_token1] = ACTIONS(2026), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2026), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2026), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2026), + [aux_sym_syslog_facility_token1] = ACTIONS(2026), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2026), + [aux_sym_keep_alive_token1] = ACTIONS(2026), + [aux_sym_tunnel_token1] = ACTIONS(2028), + [aux_sym_tunnel_device_token1] = ACTIONS(2026), + [aux_sym_update_host_keys_token1] = ACTIONS(2026), + [aux_sym_use_keychain_token1] = ACTIONS(2026), + [aux_sym_use_roaming_token1] = ACTIONS(2026), + [aux_sym_user_token1] = ACTIONS(2028), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2026), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2026), + [aux_sym_visual_host_key_token1] = ACTIONS(2026), + [aux_sym_xauth_location_token1] = ACTIONS(2026), }, [253] = { - [ts_builtin_sym_end] = ACTIONS(2025), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2027), - [anon_sym_DQUOTE] = ACTIONS(2025), - [aux_sym_match_token1] = ACTIONS(2025), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2025), - [aux_sym_address_family_token1] = ACTIONS(2025), - [aux_sym_batch_mode_token1] = ACTIONS(2025), - [aux_sym_bind_address_token1] = ACTIONS(2025), - [aux_sym_bind_interface_token1] = ACTIONS(2025), - [aux_sym_canonical_domains_token1] = ACTIONS(2025), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2025), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2025), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2025), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2025), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2025), - [aux_sym_certificate_file_token1] = ACTIONS(2025), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2025), - [aux_sym_check_host_ip_token1] = ACTIONS(2025), - [aux_sym_ciphers_token1] = ACTIONS(2025), - [aux_sym_cipher_token1] = ACTIONS(2027), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2025), - [aux_sym_compression_token1] = ACTIONS(2025), - [aux_sym_connection_attempts_token1] = ACTIONS(2025), - [aux_sym_connect_timeout_token1] = ACTIONS(2025), - [aux_sym_control_master_token1] = ACTIONS(2025), - [aux_sym_control_path_token1] = ACTIONS(2025), - [aux_sym_control_persist_token1] = ACTIONS(2025), - [aux_sym_dynamic_forward_token1] = ACTIONS(2025), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2025), - [aux_sym_escape_char_token1] = ACTIONS(2025), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2025), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2025), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2025), - [aux_sym_forward_agent_token1] = ACTIONS(2025), - [aux_sym_forward_x11_token1] = ACTIONS(2027), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2025), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2025), - [aux_sym_gateway_ports_token1] = ACTIONS(2025), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2025), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2025), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2025), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2025), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2025), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2025), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2025), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2025), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2025), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2025), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2025), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2025), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2025), - [aux_sym_host_key_alias_token1] = ACTIONS(2025), - [aux_sym_hostname_token1] = ACTIONS(2025), - [aux_sym_identities_only_token1] = ACTIONS(2025), - [aux_sym_identity_agent_token1] = ACTIONS(2025), - [aux_sym_identity_file_token1] = ACTIONS(2025), - [aux_sym_ignore_unknown_token1] = ACTIONS(2025), - [aux_sym_include_token1] = ACTIONS(2025), - [aux_sym_ip_qos_token1] = ACTIONS(2025), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2025), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2025), - [aux_sym_kex_algorithms_token1] = ACTIONS(2025), - [aux_sym_known_hosts_command_token1] = ACTIONS(2025), - [aux_sym_local_command_token1] = ACTIONS(2025), - [aux_sym_local_forward_token1] = ACTIONS(2025), - [aux_sym_log_level_token1] = ACTIONS(2025), - [aux_sym_log_verbose_token1] = ACTIONS(2025), - [aux_sym_macs_token1] = ACTIONS(2025), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2025), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2025), - [aux_sym_password_authentication_token1] = ACTIONS(2025), - [aux_sym_permit_local_command_token1] = ACTIONS(2025), - [aux_sym_permit_remote_open_token1] = ACTIONS(2025), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2025), - [aux_sym_port_token1] = ACTIONS(2025), - [aux_sym_preferred_authentications_token1] = ACTIONS(2025), - [aux_sym_protocol_token1] = ACTIONS(2025), - [aux_sym_proxy_command_token1] = ACTIONS(2025), - [aux_sym_proxy_jump_token1] = ACTIONS(2025), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2025), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2025), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2025), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2025), - [aux_sym_rekey_limit_token1] = ACTIONS(2025), - [aux_sym_remote_command_token1] = ACTIONS(2025), - [aux_sym_remote_forward_token1] = ACTIONS(2025), - [aux_sym_request_tty_token1] = ACTIONS(2025), - [aux_sym_required_rsa_size_token1] = ACTIONS(2025), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2025), - [aux_sym_security_key_provider_token1] = ACTIONS(2025), - [aux_sym_send_env_token1] = ACTIONS(2025), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2025), - [aux_sym_server_alive_interval_token1] = ACTIONS(2025), - [aux_sym_session_type_token1] = ACTIONS(2025), - [aux_sym_set_env_token1] = ACTIONS(2025), - [aux_sym_stdin_null_token1] = ACTIONS(2025), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2025), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2025), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2025), - [aux_sym_syslog_facility_token1] = ACTIONS(2025), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2025), - [aux_sym_keep_alive_token1] = ACTIONS(2025), - [aux_sym_tunnel_token1] = ACTIONS(2027), - [aux_sym_tunnel_device_token1] = ACTIONS(2025), - [aux_sym_update_host_keys_token1] = ACTIONS(2025), - [aux_sym_use_keychain_token1] = ACTIONS(2025), - [aux_sym_use_roaming_token1] = ACTIONS(2025), - [aux_sym_user_token1] = ACTIONS(2027), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2025), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2025), - [aux_sym_visual_host_key_token1] = ACTIONS(2025), - [aux_sym_xauth_location_token1] = ACTIONS(2025), + [ts_builtin_sym_end] = ACTIONS(2032), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2032), + [aux_sym_match_token1] = ACTIONS(2032), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2032), + [aux_sym_address_family_token1] = ACTIONS(2032), + [aux_sym_batch_mode_token1] = ACTIONS(2032), + [aux_sym_bind_address_token1] = ACTIONS(2032), + [aux_sym_bind_interface_token1] = ACTIONS(2032), + [aux_sym_canonical_domains_token1] = ACTIONS(2032), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2032), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2032), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2032), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2032), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2032), + [aux_sym_certificate_file_token1] = ACTIONS(2032), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2032), + [aux_sym_check_host_ip_token1] = ACTIONS(2032), + [aux_sym_ciphers_token1] = ACTIONS(2032), + [aux_sym_cipher_token1] = ACTIONS(2034), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2032), + [aux_sym_compression_token1] = ACTIONS(2032), + [aux_sym_connection_attempts_token1] = ACTIONS(2032), + [aux_sym_connect_timeout_token1] = ACTIONS(2032), + [aux_sym_control_master_token1] = ACTIONS(2032), + [aux_sym_control_path_token1] = ACTIONS(2032), + [aux_sym_control_persist_token1] = ACTIONS(2032), + [aux_sym_dynamic_forward_token1] = ACTIONS(2032), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2032), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2032), + [aux_sym_escape_char_token1] = ACTIONS(2032), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2032), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2032), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2032), + [aux_sym_forward_agent_token1] = ACTIONS(2032), + [aux_sym_forward_x11_token1] = ACTIONS(2034), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2032), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2032), + [aux_sym_gateway_ports_token1] = ACTIONS(2032), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2032), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2032), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2032), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2032), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2032), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2032), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2032), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2032), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2032), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2032), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2032), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2032), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2032), + [aux_sym_host_key_alias_token1] = ACTIONS(2032), + [aux_sym_hostname_token1] = ACTIONS(2032), + [aux_sym_identities_only_token1] = ACTIONS(2032), + [aux_sym_identity_agent_token1] = ACTIONS(2032), + [aux_sym_identity_file_token1] = ACTIONS(2032), + [aux_sym_ignore_unknown_token1] = ACTIONS(2032), + [aux_sym_include_token1] = ACTIONS(2032), + [aux_sym_ip_qos_token1] = ACTIONS(2032), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2032), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2032), + [aux_sym_kex_algorithms_token1] = ACTIONS(2032), + [aux_sym_known_hosts_command_token1] = ACTIONS(2032), + [aux_sym_local_command_token1] = ACTIONS(2032), + [aux_sym_local_forward_token1] = ACTIONS(2032), + [aux_sym_log_level_token1] = ACTIONS(2032), + [aux_sym_log_verbose_token1] = ACTIONS(2032), + [aux_sym_macs_token1] = ACTIONS(2032), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2032), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2032), + [aux_sym_password_authentication_token1] = ACTIONS(2032), + [aux_sym_permit_local_command_token1] = ACTIONS(2032), + [aux_sym_permit_remote_open_token1] = ACTIONS(2032), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2032), + [aux_sym_port_token1] = ACTIONS(2032), + [aux_sym_preferred_authentications_token1] = ACTIONS(2032), + [aux_sym_protocol_token1] = ACTIONS(2032), + [aux_sym_proxy_command_token1] = ACTIONS(2032), + [aux_sym_proxy_jump_token1] = ACTIONS(2032), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2032), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2032), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2032), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2032), + [aux_sym_rekey_limit_token1] = ACTIONS(2032), + [aux_sym_remote_command_token1] = ACTIONS(2032), + [aux_sym_remote_forward_token1] = ACTIONS(2032), + [aux_sym_request_tty_token1] = ACTIONS(2032), + [aux_sym_required_rsa_size_token1] = ACTIONS(2032), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2032), + [aux_sym_security_key_provider_token1] = ACTIONS(2032), + [aux_sym_send_env_token1] = ACTIONS(2032), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2032), + [aux_sym_server_alive_interval_token1] = ACTIONS(2032), + [aux_sym_session_type_token1] = ACTIONS(2032), + [aux_sym_set_env_token1] = ACTIONS(2032), + [aux_sym_stdin_null_token1] = ACTIONS(2032), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2032), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2032), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2032), + [aux_sym_syslog_facility_token1] = ACTIONS(2032), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2032), + [aux_sym_keep_alive_token1] = ACTIONS(2032), + [aux_sym_tunnel_token1] = ACTIONS(2034), + [aux_sym_tunnel_device_token1] = ACTIONS(2032), + [aux_sym_update_host_keys_token1] = ACTIONS(2032), + [aux_sym_use_keychain_token1] = ACTIONS(2032), + [aux_sym_use_roaming_token1] = ACTIONS(2032), + [aux_sym_user_token1] = ACTIONS(2034), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2032), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2032), + [aux_sym_visual_host_key_token1] = ACTIONS(2032), + [aux_sym_xauth_location_token1] = ACTIONS(2032), }, [254] = { - [ts_builtin_sym_end] = ACTIONS(2029), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2031), - [anon_sym_DQUOTE] = ACTIONS(2033), - [aux_sym_match_token1] = ACTIONS(2029), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2029), - [aux_sym_address_family_token1] = ACTIONS(2029), - [aux_sym_batch_mode_token1] = ACTIONS(2029), - [aux_sym_bind_address_token1] = ACTIONS(2029), - [aux_sym_bind_interface_token1] = ACTIONS(2029), - [aux_sym_canonical_domains_token1] = ACTIONS(2029), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2029), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2029), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2029), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2029), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2029), - [aux_sym_certificate_file_token1] = ACTIONS(2029), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2029), - [aux_sym_check_host_ip_token1] = ACTIONS(2029), - [aux_sym_ciphers_token1] = ACTIONS(2029), - [aux_sym_cipher_token1] = ACTIONS(2031), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2029), - [aux_sym_compression_token1] = ACTIONS(2029), - [aux_sym_connection_attempts_token1] = ACTIONS(2029), - [aux_sym_connect_timeout_token1] = ACTIONS(2029), - [aux_sym_control_master_token1] = ACTIONS(2029), - [aux_sym_control_path_token1] = ACTIONS(2029), - [aux_sym_control_persist_token1] = ACTIONS(2029), - [aux_sym_dynamic_forward_token1] = ACTIONS(2029), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2029), - [aux_sym_escape_char_token1] = ACTIONS(2029), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2029), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2029), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2029), - [aux_sym_forward_agent_token1] = ACTIONS(2029), - [aux_sym_forward_x11_token1] = ACTIONS(2031), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2029), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2029), - [aux_sym_gateway_ports_token1] = ACTIONS(2029), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2029), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2029), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2029), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2029), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2029), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2029), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2029), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2029), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2029), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2029), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2029), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2029), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2029), - [aux_sym_host_key_alias_token1] = ACTIONS(2029), - [aux_sym_hostname_token1] = ACTIONS(2029), - [aux_sym_identities_only_token1] = ACTIONS(2029), - [aux_sym_identity_agent_token1] = ACTIONS(2029), - [aux_sym_identity_file_token1] = ACTIONS(2029), - [aux_sym_ignore_unknown_token1] = ACTIONS(2029), - [aux_sym_include_token1] = ACTIONS(2029), - [aux_sym_ip_qos_token1] = ACTIONS(2029), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2029), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2029), - [aux_sym_kex_algorithms_token1] = ACTIONS(2029), - [aux_sym_known_hosts_command_token1] = ACTIONS(2029), - [aux_sym_local_command_token1] = ACTIONS(2029), - [aux_sym_local_forward_token1] = ACTIONS(2029), - [aux_sym_log_level_token1] = ACTIONS(2029), - [aux_sym_log_verbose_token1] = ACTIONS(2029), - [aux_sym_macs_token1] = ACTIONS(2029), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2029), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2029), - [aux_sym_password_authentication_token1] = ACTIONS(2029), - [aux_sym_permit_local_command_token1] = ACTIONS(2029), - [aux_sym_permit_remote_open_token1] = ACTIONS(2029), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2029), - [aux_sym_port_token1] = ACTIONS(2029), - [aux_sym_preferred_authentications_token1] = ACTIONS(2029), - [aux_sym_protocol_token1] = ACTIONS(2029), - [aux_sym_proxy_command_token1] = ACTIONS(2029), - [aux_sym_proxy_jump_token1] = ACTIONS(2029), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2029), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2029), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2029), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2029), - [aux_sym_rekey_limit_token1] = ACTIONS(2029), - [aux_sym_remote_command_token1] = ACTIONS(2029), - [aux_sym_remote_forward_token1] = ACTIONS(2029), - [aux_sym_request_tty_token1] = ACTIONS(2029), - [aux_sym_required_rsa_size_token1] = ACTIONS(2029), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2029), - [aux_sym_security_key_provider_token1] = ACTIONS(2029), - [aux_sym_send_env_token1] = ACTIONS(2029), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2029), - [aux_sym_server_alive_interval_token1] = ACTIONS(2029), - [aux_sym_session_type_token1] = ACTIONS(2029), - [aux_sym_set_env_token1] = ACTIONS(2029), - [aux_sym_stdin_null_token1] = ACTIONS(2029), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2029), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2029), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2029), - [aux_sym_syslog_facility_token1] = ACTIONS(2029), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2029), - [aux_sym_keep_alive_token1] = ACTIONS(2029), - [aux_sym_tunnel_token1] = ACTIONS(2031), - [aux_sym_tunnel_device_token1] = ACTIONS(2029), - [aux_sym_update_host_keys_token1] = ACTIONS(2029), - [aux_sym_use_keychain_token1] = ACTIONS(2029), - [aux_sym_use_roaming_token1] = ACTIONS(2029), - [aux_sym_user_token1] = ACTIONS(2031), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2029), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2029), - [aux_sym_visual_host_key_token1] = ACTIONS(2029), - [aux_sym_xauth_location_token1] = ACTIONS(2029), + [ts_builtin_sym_end] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2040), + [aux_sym_match_token1] = ACTIONS(2036), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2036), + [aux_sym_address_family_token1] = ACTIONS(2036), + [aux_sym_batch_mode_token1] = ACTIONS(2036), + [aux_sym_bind_address_token1] = ACTIONS(2036), + [aux_sym_bind_interface_token1] = ACTIONS(2036), + [aux_sym_canonical_domains_token1] = ACTIONS(2036), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2036), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2036), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2036), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2036), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2036), + [aux_sym_certificate_file_token1] = ACTIONS(2036), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2036), + [aux_sym_check_host_ip_token1] = ACTIONS(2036), + [aux_sym_ciphers_token1] = ACTIONS(2036), + [aux_sym_cipher_token1] = ACTIONS(2038), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2036), + [aux_sym_compression_token1] = ACTIONS(2036), + [aux_sym_connection_attempts_token1] = ACTIONS(2036), + [aux_sym_connect_timeout_token1] = ACTIONS(2036), + [aux_sym_control_master_token1] = ACTIONS(2036), + [aux_sym_control_path_token1] = ACTIONS(2036), + [aux_sym_control_persist_token1] = ACTIONS(2036), + [aux_sym_dynamic_forward_token1] = ACTIONS(2036), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2036), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2036), + [aux_sym_escape_char_token1] = ACTIONS(2036), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2036), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2036), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2036), + [aux_sym_forward_agent_token1] = ACTIONS(2036), + [aux_sym_forward_x11_token1] = ACTIONS(2038), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2036), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2036), + [aux_sym_gateway_ports_token1] = ACTIONS(2036), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2036), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2036), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2036), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2036), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2036), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2036), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2036), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2036), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2036), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2036), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2036), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2036), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2036), + [aux_sym_host_key_alias_token1] = ACTIONS(2036), + [aux_sym_hostname_token1] = ACTIONS(2036), + [aux_sym_identities_only_token1] = ACTIONS(2036), + [aux_sym_identity_agent_token1] = ACTIONS(2036), + [aux_sym_identity_file_token1] = ACTIONS(2036), + [aux_sym_ignore_unknown_token1] = ACTIONS(2036), + [aux_sym_include_token1] = ACTIONS(2036), + [aux_sym_ip_qos_token1] = ACTIONS(2036), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2036), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2036), + [aux_sym_kex_algorithms_token1] = ACTIONS(2036), + [aux_sym_known_hosts_command_token1] = ACTIONS(2036), + [aux_sym_local_command_token1] = ACTIONS(2036), + [aux_sym_local_forward_token1] = ACTIONS(2036), + [aux_sym_log_level_token1] = ACTIONS(2036), + [aux_sym_log_verbose_token1] = ACTIONS(2036), + [aux_sym_macs_token1] = ACTIONS(2036), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2036), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2036), + [aux_sym_password_authentication_token1] = ACTIONS(2036), + [aux_sym_permit_local_command_token1] = ACTIONS(2036), + [aux_sym_permit_remote_open_token1] = ACTIONS(2036), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2036), + [aux_sym_port_token1] = ACTIONS(2036), + [aux_sym_preferred_authentications_token1] = ACTIONS(2036), + [aux_sym_protocol_token1] = ACTIONS(2036), + [aux_sym_proxy_command_token1] = ACTIONS(2036), + [aux_sym_proxy_jump_token1] = ACTIONS(2036), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2036), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2036), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2036), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2036), + [aux_sym_rekey_limit_token1] = ACTIONS(2036), + [aux_sym_remote_command_token1] = ACTIONS(2036), + [aux_sym_remote_forward_token1] = ACTIONS(2036), + [aux_sym_request_tty_token1] = ACTIONS(2036), + [aux_sym_required_rsa_size_token1] = ACTIONS(2036), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2036), + [aux_sym_security_key_provider_token1] = ACTIONS(2036), + [aux_sym_send_env_token1] = ACTIONS(2036), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2036), + [aux_sym_server_alive_interval_token1] = ACTIONS(2036), + [aux_sym_session_type_token1] = ACTIONS(2036), + [aux_sym_set_env_token1] = ACTIONS(2036), + [aux_sym_stdin_null_token1] = ACTIONS(2036), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2036), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2036), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2036), + [aux_sym_syslog_facility_token1] = ACTIONS(2036), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2036), + [aux_sym_keep_alive_token1] = ACTIONS(2036), + [aux_sym_tunnel_token1] = ACTIONS(2038), + [aux_sym_tunnel_device_token1] = ACTIONS(2036), + [aux_sym_update_host_keys_token1] = ACTIONS(2036), + [aux_sym_use_keychain_token1] = ACTIONS(2036), + [aux_sym_use_roaming_token1] = ACTIONS(2036), + [aux_sym_user_token1] = ACTIONS(2038), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2036), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2036), + [aux_sym_visual_host_key_token1] = ACTIONS(2036), + [aux_sym_xauth_location_token1] = ACTIONS(2036), }, [255] = { - [ts_builtin_sym_end] = ACTIONS(2035), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2037), - [anon_sym_DQUOTE] = ACTIONS(2035), - [aux_sym_match_token1] = ACTIONS(2035), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2035), - [aux_sym_address_family_token1] = ACTIONS(2035), - [aux_sym_batch_mode_token1] = ACTIONS(2035), - [aux_sym_bind_address_token1] = ACTIONS(2035), - [aux_sym_bind_interface_token1] = ACTIONS(2035), - [aux_sym_canonical_domains_token1] = ACTIONS(2035), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2035), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2035), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2035), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2035), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2035), - [aux_sym_certificate_file_token1] = ACTIONS(2035), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2035), - [aux_sym_check_host_ip_token1] = ACTIONS(2035), - [aux_sym_ciphers_token1] = ACTIONS(2035), - [aux_sym_cipher_token1] = ACTIONS(2037), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2035), - [aux_sym_compression_token1] = ACTIONS(2035), - [aux_sym_connection_attempts_token1] = ACTIONS(2035), - [aux_sym_connect_timeout_token1] = ACTIONS(2035), - [aux_sym_control_master_token1] = ACTIONS(2035), - [aux_sym_control_path_token1] = ACTIONS(2035), - [aux_sym_control_persist_token1] = ACTIONS(2035), - [aux_sym_dynamic_forward_token1] = ACTIONS(2035), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2035), - [aux_sym_escape_char_token1] = ACTIONS(2035), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2035), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2035), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2035), - [aux_sym_forward_agent_token1] = ACTIONS(2035), - [aux_sym_forward_x11_token1] = ACTIONS(2037), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2035), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2035), - [aux_sym_gateway_ports_token1] = ACTIONS(2035), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2035), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2035), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2035), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2035), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2035), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2035), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2035), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2035), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2035), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2035), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2035), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2035), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2035), - [aux_sym_host_key_alias_token1] = ACTIONS(2035), - [aux_sym_hostname_token1] = ACTIONS(2035), - [aux_sym_identities_only_token1] = ACTIONS(2035), - [aux_sym_identity_agent_token1] = ACTIONS(2035), - [aux_sym_identity_file_token1] = ACTIONS(2035), - [aux_sym_ignore_unknown_token1] = ACTIONS(2035), - [aux_sym_include_token1] = ACTIONS(2035), - [aux_sym_ip_qos_token1] = ACTIONS(2035), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2035), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2035), - [aux_sym_kex_algorithms_token1] = ACTIONS(2035), - [aux_sym_known_hosts_command_token1] = ACTIONS(2035), - [aux_sym_local_command_token1] = ACTIONS(2035), - [aux_sym_local_forward_token1] = ACTIONS(2035), - [aux_sym_log_level_token1] = ACTIONS(2035), - [aux_sym_log_verbose_token1] = ACTIONS(2035), - [aux_sym_macs_token1] = ACTIONS(2035), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2035), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2035), - [aux_sym_password_authentication_token1] = ACTIONS(2035), - [aux_sym_permit_local_command_token1] = ACTIONS(2035), - [aux_sym_permit_remote_open_token1] = ACTIONS(2035), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2035), - [aux_sym_port_token1] = ACTIONS(2035), - [aux_sym_preferred_authentications_token1] = ACTIONS(2035), - [aux_sym_protocol_token1] = ACTIONS(2035), - [aux_sym_proxy_command_token1] = ACTIONS(2035), - [aux_sym_proxy_jump_token1] = ACTIONS(2035), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2035), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2035), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2035), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2035), - [aux_sym_rekey_limit_token1] = ACTIONS(2035), - [aux_sym_remote_command_token1] = ACTIONS(2035), - [aux_sym_remote_forward_token1] = ACTIONS(2035), - [aux_sym_request_tty_token1] = ACTIONS(2035), - [aux_sym_required_rsa_size_token1] = ACTIONS(2035), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2035), - [aux_sym_security_key_provider_token1] = ACTIONS(2035), - [aux_sym_send_env_token1] = ACTIONS(2035), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2035), - [aux_sym_server_alive_interval_token1] = ACTIONS(2035), - [aux_sym_session_type_token1] = ACTIONS(2035), - [aux_sym_set_env_token1] = ACTIONS(2035), - [aux_sym_stdin_null_token1] = ACTIONS(2035), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2035), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2035), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2035), - [aux_sym_syslog_facility_token1] = ACTIONS(2035), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2035), - [aux_sym_keep_alive_token1] = ACTIONS(2035), - [aux_sym_tunnel_token1] = ACTIONS(2037), - [aux_sym_tunnel_device_token1] = ACTIONS(2035), - [aux_sym_update_host_keys_token1] = ACTIONS(2035), - [aux_sym_use_keychain_token1] = ACTIONS(2035), - [aux_sym_use_roaming_token1] = ACTIONS(2035), - [aux_sym_user_token1] = ACTIONS(2037), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2035), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2035), - [aux_sym_visual_host_key_token1] = ACTIONS(2035), - [aux_sym_xauth_location_token1] = ACTIONS(2035), + [ts_builtin_sym_end] = ACTIONS(2042), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2044), + [anon_sym_DQUOTE] = ACTIONS(2042), + [aux_sym_match_token1] = ACTIONS(2042), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2042), + [aux_sym_address_family_token1] = ACTIONS(2042), + [aux_sym_batch_mode_token1] = ACTIONS(2042), + [aux_sym_bind_address_token1] = ACTIONS(2042), + [aux_sym_bind_interface_token1] = ACTIONS(2042), + [aux_sym_canonical_domains_token1] = ACTIONS(2042), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2042), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2042), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2042), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2042), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2042), + [aux_sym_certificate_file_token1] = ACTIONS(2042), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2042), + [aux_sym_check_host_ip_token1] = ACTIONS(2042), + [aux_sym_ciphers_token1] = ACTIONS(2042), + [aux_sym_cipher_token1] = ACTIONS(2044), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2042), + [aux_sym_compression_token1] = ACTIONS(2042), + [aux_sym_connection_attempts_token1] = ACTIONS(2042), + [aux_sym_connect_timeout_token1] = ACTIONS(2042), + [aux_sym_control_master_token1] = ACTIONS(2042), + [aux_sym_control_path_token1] = ACTIONS(2042), + [aux_sym_control_persist_token1] = ACTIONS(2042), + [aux_sym_dynamic_forward_token1] = ACTIONS(2042), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2042), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2042), + [aux_sym_escape_char_token1] = ACTIONS(2042), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2042), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2042), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2042), + [aux_sym_forward_agent_token1] = ACTIONS(2042), + [aux_sym_forward_x11_token1] = ACTIONS(2044), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2042), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2042), + [aux_sym_gateway_ports_token1] = ACTIONS(2042), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2042), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2042), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2042), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2042), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2042), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2042), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2042), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2042), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2042), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2042), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2042), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2042), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2042), + [aux_sym_host_key_alias_token1] = ACTIONS(2042), + [aux_sym_hostname_token1] = ACTIONS(2042), + [aux_sym_identities_only_token1] = ACTIONS(2042), + [aux_sym_identity_agent_token1] = ACTIONS(2042), + [aux_sym_identity_file_token1] = ACTIONS(2042), + [aux_sym_ignore_unknown_token1] = ACTIONS(2042), + [aux_sym_include_token1] = ACTIONS(2042), + [aux_sym_ip_qos_token1] = ACTIONS(2042), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2042), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2042), + [aux_sym_kex_algorithms_token1] = ACTIONS(2042), + [aux_sym_known_hosts_command_token1] = ACTIONS(2042), + [aux_sym_local_command_token1] = ACTIONS(2042), + [aux_sym_local_forward_token1] = ACTIONS(2042), + [aux_sym_log_level_token1] = ACTIONS(2042), + [aux_sym_log_verbose_token1] = ACTIONS(2042), + [aux_sym_macs_token1] = ACTIONS(2042), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2042), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2042), + [aux_sym_password_authentication_token1] = ACTIONS(2042), + [aux_sym_permit_local_command_token1] = ACTIONS(2042), + [aux_sym_permit_remote_open_token1] = ACTIONS(2042), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2042), + [aux_sym_port_token1] = ACTIONS(2042), + [aux_sym_preferred_authentications_token1] = ACTIONS(2042), + [aux_sym_protocol_token1] = ACTIONS(2042), + [aux_sym_proxy_command_token1] = ACTIONS(2042), + [aux_sym_proxy_jump_token1] = ACTIONS(2042), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2042), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2042), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2042), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2042), + [aux_sym_rekey_limit_token1] = ACTIONS(2042), + [aux_sym_remote_command_token1] = ACTIONS(2042), + [aux_sym_remote_forward_token1] = ACTIONS(2042), + [aux_sym_request_tty_token1] = ACTIONS(2042), + [aux_sym_required_rsa_size_token1] = ACTIONS(2042), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2042), + [aux_sym_security_key_provider_token1] = ACTIONS(2042), + [aux_sym_send_env_token1] = ACTIONS(2042), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2042), + [aux_sym_server_alive_interval_token1] = ACTIONS(2042), + [aux_sym_session_type_token1] = ACTIONS(2042), + [aux_sym_set_env_token1] = ACTIONS(2042), + [aux_sym_stdin_null_token1] = ACTIONS(2042), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2042), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2042), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2042), + [aux_sym_syslog_facility_token1] = ACTIONS(2042), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2042), + [aux_sym_keep_alive_token1] = ACTIONS(2042), + [aux_sym_tunnel_token1] = ACTIONS(2044), + [aux_sym_tunnel_device_token1] = ACTIONS(2042), + [aux_sym_update_host_keys_token1] = ACTIONS(2042), + [aux_sym_use_keychain_token1] = ACTIONS(2042), + [aux_sym_use_roaming_token1] = ACTIONS(2042), + [aux_sym_user_token1] = ACTIONS(2044), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2042), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2042), + [aux_sym_visual_host_key_token1] = ACTIONS(2042), + [aux_sym_xauth_location_token1] = ACTIONS(2042), }, [256] = { - [ts_builtin_sym_end] = ACTIONS(2039), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2041), - [anon_sym_DQUOTE] = ACTIONS(2043), - [aux_sym_match_token1] = ACTIONS(2039), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2039), - [aux_sym_address_family_token1] = ACTIONS(2039), - [aux_sym_batch_mode_token1] = ACTIONS(2039), - [aux_sym_bind_address_token1] = ACTIONS(2039), - [aux_sym_bind_interface_token1] = ACTIONS(2039), - [aux_sym_canonical_domains_token1] = ACTIONS(2039), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2039), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2039), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2039), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2039), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2039), - [aux_sym_certificate_file_token1] = ACTIONS(2039), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2039), - [aux_sym_check_host_ip_token1] = ACTIONS(2039), - [aux_sym_ciphers_token1] = ACTIONS(2039), - [aux_sym_cipher_token1] = ACTIONS(2041), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2039), - [aux_sym_compression_token1] = ACTIONS(2039), - [aux_sym_connection_attempts_token1] = ACTIONS(2039), - [aux_sym_connect_timeout_token1] = ACTIONS(2039), - [aux_sym_control_master_token1] = ACTIONS(2039), - [aux_sym_control_path_token1] = ACTIONS(2039), - [aux_sym_control_persist_token1] = ACTIONS(2039), - [aux_sym_dynamic_forward_token1] = ACTIONS(2039), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2039), - [aux_sym_escape_char_token1] = ACTIONS(2039), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2039), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2039), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2039), - [aux_sym_forward_agent_token1] = ACTIONS(2039), - [aux_sym_forward_x11_token1] = ACTIONS(2041), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2039), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2039), - [aux_sym_gateway_ports_token1] = ACTIONS(2039), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2039), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2039), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2039), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2039), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2039), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2039), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2039), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2039), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2039), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2039), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2039), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2039), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2039), - [aux_sym_host_key_alias_token1] = ACTIONS(2039), - [aux_sym_hostname_token1] = ACTIONS(2039), - [aux_sym_identities_only_token1] = ACTIONS(2039), - [aux_sym_identity_agent_token1] = ACTIONS(2039), - [aux_sym_identity_file_token1] = ACTIONS(2039), - [aux_sym_ignore_unknown_token1] = ACTIONS(2039), - [aux_sym_include_token1] = ACTIONS(2039), - [aux_sym_ip_qos_token1] = ACTIONS(2039), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2039), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2039), - [aux_sym_kex_algorithms_token1] = ACTIONS(2039), - [aux_sym_known_hosts_command_token1] = ACTIONS(2039), - [aux_sym_local_command_token1] = ACTIONS(2039), - [aux_sym_local_forward_token1] = ACTIONS(2039), - [aux_sym_log_level_token1] = ACTIONS(2039), - [aux_sym_log_verbose_token1] = ACTIONS(2039), - [aux_sym_macs_token1] = ACTIONS(2039), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2039), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2039), - [aux_sym_password_authentication_token1] = ACTIONS(2039), - [aux_sym_permit_local_command_token1] = ACTIONS(2039), - [aux_sym_permit_remote_open_token1] = ACTIONS(2039), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2039), - [aux_sym_port_token1] = ACTIONS(2039), - [aux_sym_preferred_authentications_token1] = ACTIONS(2039), - [aux_sym_protocol_token1] = ACTIONS(2039), - [aux_sym_proxy_command_token1] = ACTIONS(2039), - [aux_sym_proxy_jump_token1] = ACTIONS(2039), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2039), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2039), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2039), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2039), - [aux_sym_rekey_limit_token1] = ACTIONS(2039), - [aux_sym_remote_command_token1] = ACTIONS(2039), - [aux_sym_remote_forward_token1] = ACTIONS(2039), - [aux_sym_request_tty_token1] = ACTIONS(2039), - [aux_sym_required_rsa_size_token1] = ACTIONS(2039), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2039), - [aux_sym_security_key_provider_token1] = ACTIONS(2039), - [aux_sym_send_env_token1] = ACTIONS(2039), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2039), - [aux_sym_server_alive_interval_token1] = ACTIONS(2039), - [aux_sym_session_type_token1] = ACTIONS(2039), - [aux_sym_set_env_token1] = ACTIONS(2039), - [aux_sym_stdin_null_token1] = ACTIONS(2039), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2039), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2039), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2039), - [aux_sym_syslog_facility_token1] = ACTIONS(2039), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2039), - [aux_sym_keep_alive_token1] = ACTIONS(2039), - [aux_sym_tunnel_token1] = ACTIONS(2041), - [aux_sym_tunnel_device_token1] = ACTIONS(2039), - [aux_sym_update_host_keys_token1] = ACTIONS(2039), - [aux_sym_use_keychain_token1] = ACTIONS(2039), - [aux_sym_use_roaming_token1] = ACTIONS(2039), - [aux_sym_user_token1] = ACTIONS(2041), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2039), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2039), - [aux_sym_visual_host_key_token1] = ACTIONS(2039), - [aux_sym_xauth_location_token1] = ACTIONS(2039), + [ts_builtin_sym_end] = ACTIONS(2046), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2048), + [anon_sym_DQUOTE] = ACTIONS(2050), + [aux_sym_match_token1] = ACTIONS(2046), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2046), + [aux_sym_address_family_token1] = ACTIONS(2046), + [aux_sym_batch_mode_token1] = ACTIONS(2046), + [aux_sym_bind_address_token1] = ACTIONS(2046), + [aux_sym_bind_interface_token1] = ACTIONS(2046), + [aux_sym_canonical_domains_token1] = ACTIONS(2046), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2046), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2046), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2046), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2046), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2046), + [aux_sym_certificate_file_token1] = ACTIONS(2046), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2046), + [aux_sym_check_host_ip_token1] = ACTIONS(2046), + [aux_sym_ciphers_token1] = ACTIONS(2046), + [aux_sym_cipher_token1] = ACTIONS(2048), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2046), + [aux_sym_compression_token1] = ACTIONS(2046), + [aux_sym_connection_attempts_token1] = ACTIONS(2046), + [aux_sym_connect_timeout_token1] = ACTIONS(2046), + [aux_sym_control_master_token1] = ACTIONS(2046), + [aux_sym_control_path_token1] = ACTIONS(2046), + [aux_sym_control_persist_token1] = ACTIONS(2046), + [aux_sym_dynamic_forward_token1] = ACTIONS(2046), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2046), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2046), + [aux_sym_escape_char_token1] = ACTIONS(2046), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2046), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2046), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2046), + [aux_sym_forward_agent_token1] = ACTIONS(2046), + [aux_sym_forward_x11_token1] = ACTIONS(2048), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2046), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2046), + [aux_sym_gateway_ports_token1] = ACTIONS(2046), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2046), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2046), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2046), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2046), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2046), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2046), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2046), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2046), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2046), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2046), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2046), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2046), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2046), + [aux_sym_host_key_alias_token1] = ACTIONS(2046), + [aux_sym_hostname_token1] = ACTIONS(2046), + [aux_sym_identities_only_token1] = ACTIONS(2046), + [aux_sym_identity_agent_token1] = ACTIONS(2046), + [aux_sym_identity_file_token1] = ACTIONS(2046), + [aux_sym_ignore_unknown_token1] = ACTIONS(2046), + [aux_sym_include_token1] = ACTIONS(2046), + [aux_sym_ip_qos_token1] = ACTIONS(2046), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2046), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2046), + [aux_sym_kex_algorithms_token1] = ACTIONS(2046), + [aux_sym_known_hosts_command_token1] = ACTIONS(2046), + [aux_sym_local_command_token1] = ACTIONS(2046), + [aux_sym_local_forward_token1] = ACTIONS(2046), + [aux_sym_log_level_token1] = ACTIONS(2046), + [aux_sym_log_verbose_token1] = ACTIONS(2046), + [aux_sym_macs_token1] = ACTIONS(2046), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2046), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2046), + [aux_sym_password_authentication_token1] = ACTIONS(2046), + [aux_sym_permit_local_command_token1] = ACTIONS(2046), + [aux_sym_permit_remote_open_token1] = ACTIONS(2046), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2046), + [aux_sym_port_token1] = ACTIONS(2046), + [aux_sym_preferred_authentications_token1] = ACTIONS(2046), + [aux_sym_protocol_token1] = ACTIONS(2046), + [aux_sym_proxy_command_token1] = ACTIONS(2046), + [aux_sym_proxy_jump_token1] = ACTIONS(2046), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2046), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2046), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2046), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2046), + [aux_sym_rekey_limit_token1] = ACTIONS(2046), + [aux_sym_remote_command_token1] = ACTIONS(2046), + [aux_sym_remote_forward_token1] = ACTIONS(2046), + [aux_sym_request_tty_token1] = ACTIONS(2046), + [aux_sym_required_rsa_size_token1] = ACTIONS(2046), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2046), + [aux_sym_security_key_provider_token1] = ACTIONS(2046), + [aux_sym_send_env_token1] = ACTIONS(2046), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2046), + [aux_sym_server_alive_interval_token1] = ACTIONS(2046), + [aux_sym_session_type_token1] = ACTIONS(2046), + [aux_sym_set_env_token1] = ACTIONS(2046), + [aux_sym_stdin_null_token1] = ACTIONS(2046), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2046), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2046), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2046), + [aux_sym_syslog_facility_token1] = ACTIONS(2046), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2046), + [aux_sym_keep_alive_token1] = ACTIONS(2046), + [aux_sym_tunnel_token1] = ACTIONS(2048), + [aux_sym_tunnel_device_token1] = ACTIONS(2046), + [aux_sym_update_host_keys_token1] = ACTIONS(2046), + [aux_sym_use_keychain_token1] = ACTIONS(2046), + [aux_sym_use_roaming_token1] = ACTIONS(2046), + [aux_sym_user_token1] = ACTIONS(2048), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2046), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2046), + [aux_sym_visual_host_key_token1] = ACTIONS(2046), + [aux_sym_xauth_location_token1] = ACTIONS(2046), }, [257] = { - [ts_builtin_sym_end] = ACTIONS(2045), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2047), - [anon_sym_DQUOTE] = ACTIONS(2045), - [aux_sym_match_token1] = ACTIONS(2045), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2045), - [aux_sym_address_family_token1] = ACTIONS(2045), - [aux_sym_batch_mode_token1] = ACTIONS(2045), - [aux_sym_bind_address_token1] = ACTIONS(2045), - [aux_sym_bind_interface_token1] = ACTIONS(2045), - [aux_sym_canonical_domains_token1] = ACTIONS(2045), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2045), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2045), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2045), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2045), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2045), - [aux_sym_certificate_file_token1] = ACTIONS(2045), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2045), - [aux_sym_check_host_ip_token1] = ACTIONS(2045), - [aux_sym_ciphers_token1] = ACTIONS(2045), - [aux_sym_cipher_token1] = ACTIONS(2047), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2045), - [aux_sym_compression_token1] = ACTIONS(2045), - [aux_sym_connection_attempts_token1] = ACTIONS(2045), - [aux_sym_connect_timeout_token1] = ACTIONS(2045), - [aux_sym_control_master_token1] = ACTIONS(2045), - [aux_sym_control_path_token1] = ACTIONS(2045), - [aux_sym_control_persist_token1] = ACTIONS(2045), - [aux_sym_dynamic_forward_token1] = ACTIONS(2045), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2045), - [aux_sym_escape_char_token1] = ACTIONS(2045), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2045), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2045), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2045), - [aux_sym_forward_agent_token1] = ACTIONS(2045), - [aux_sym_forward_x11_token1] = ACTIONS(2047), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2045), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2045), - [aux_sym_gateway_ports_token1] = ACTIONS(2045), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2045), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2045), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2045), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2045), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2045), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2045), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2045), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2045), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2045), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2045), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2045), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2045), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2045), - [aux_sym_host_key_alias_token1] = ACTIONS(2045), - [aux_sym_hostname_token1] = ACTIONS(2045), - [aux_sym_identities_only_token1] = ACTIONS(2045), - [aux_sym_identity_agent_token1] = ACTIONS(2045), - [aux_sym_identity_file_token1] = ACTIONS(2045), - [aux_sym_ignore_unknown_token1] = ACTIONS(2045), - [aux_sym_include_token1] = ACTIONS(2045), - [aux_sym_ip_qos_token1] = ACTIONS(2045), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2045), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2045), - [aux_sym_kex_algorithms_token1] = ACTIONS(2045), - [aux_sym_known_hosts_command_token1] = ACTIONS(2045), - [aux_sym_local_command_token1] = ACTIONS(2045), - [aux_sym_local_forward_token1] = ACTIONS(2045), - [aux_sym_log_level_token1] = ACTIONS(2045), - [aux_sym_log_verbose_token1] = ACTIONS(2045), - [aux_sym_macs_token1] = ACTIONS(2045), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2045), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2045), - [aux_sym_password_authentication_token1] = ACTIONS(2045), - [aux_sym_permit_local_command_token1] = ACTIONS(2045), - [aux_sym_permit_remote_open_token1] = ACTIONS(2045), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2045), - [aux_sym_port_token1] = ACTIONS(2045), - [aux_sym_preferred_authentications_token1] = ACTIONS(2045), - [aux_sym_protocol_token1] = ACTIONS(2045), - [aux_sym_proxy_command_token1] = ACTIONS(2045), - [aux_sym_proxy_jump_token1] = ACTIONS(2045), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2045), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2045), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2045), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2045), - [aux_sym_rekey_limit_token1] = ACTIONS(2045), - [aux_sym_remote_command_token1] = ACTIONS(2045), - [aux_sym_remote_forward_token1] = ACTIONS(2045), - [aux_sym_request_tty_token1] = ACTIONS(2045), - [aux_sym_required_rsa_size_token1] = ACTIONS(2045), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2045), - [aux_sym_security_key_provider_token1] = ACTIONS(2045), - [aux_sym_send_env_token1] = ACTIONS(2045), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2045), - [aux_sym_server_alive_interval_token1] = ACTIONS(2045), - [aux_sym_session_type_token1] = ACTIONS(2045), - [aux_sym_set_env_token1] = ACTIONS(2045), - [aux_sym_stdin_null_token1] = ACTIONS(2045), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2045), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2045), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2045), - [aux_sym_syslog_facility_token1] = ACTIONS(2045), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2045), - [aux_sym_keep_alive_token1] = ACTIONS(2045), - [aux_sym_tunnel_token1] = ACTIONS(2047), - [aux_sym_tunnel_device_token1] = ACTIONS(2045), - [aux_sym_update_host_keys_token1] = ACTIONS(2045), - [aux_sym_use_keychain_token1] = ACTIONS(2045), - [aux_sym_use_roaming_token1] = ACTIONS(2045), - [aux_sym_user_token1] = ACTIONS(2047), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2045), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2045), - [aux_sym_visual_host_key_token1] = ACTIONS(2045), - [aux_sym_xauth_location_token1] = ACTIONS(2045), + [ts_builtin_sym_end] = ACTIONS(2052), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2054), + [anon_sym_DQUOTE] = ACTIONS(2052), + [aux_sym_match_token1] = ACTIONS(2052), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2052), + [aux_sym_address_family_token1] = ACTIONS(2052), + [aux_sym_batch_mode_token1] = ACTIONS(2052), + [aux_sym_bind_address_token1] = ACTIONS(2052), + [aux_sym_bind_interface_token1] = ACTIONS(2052), + [aux_sym_canonical_domains_token1] = ACTIONS(2052), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2052), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2052), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2052), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2052), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2052), + [aux_sym_certificate_file_token1] = ACTIONS(2052), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2052), + [aux_sym_check_host_ip_token1] = ACTIONS(2052), + [aux_sym_ciphers_token1] = ACTIONS(2052), + [aux_sym_cipher_token1] = ACTIONS(2054), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2052), + [aux_sym_compression_token1] = ACTIONS(2052), + [aux_sym_connection_attempts_token1] = ACTIONS(2052), + [aux_sym_connect_timeout_token1] = ACTIONS(2052), + [aux_sym_control_master_token1] = ACTIONS(2052), + [aux_sym_control_path_token1] = ACTIONS(2052), + [aux_sym_control_persist_token1] = ACTIONS(2052), + [aux_sym_dynamic_forward_token1] = ACTIONS(2052), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2052), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2052), + [aux_sym_escape_char_token1] = ACTIONS(2052), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2052), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2052), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2052), + [aux_sym_forward_agent_token1] = ACTIONS(2052), + [aux_sym_forward_x11_token1] = ACTIONS(2054), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2052), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2052), + [aux_sym_gateway_ports_token1] = ACTIONS(2052), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2052), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2052), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2052), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2052), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2052), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2052), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2052), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2052), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2052), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2052), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2052), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2052), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2052), + [aux_sym_host_key_alias_token1] = ACTIONS(2052), + [aux_sym_hostname_token1] = ACTIONS(2052), + [aux_sym_identities_only_token1] = ACTIONS(2052), + [aux_sym_identity_agent_token1] = ACTIONS(2052), + [aux_sym_identity_file_token1] = ACTIONS(2052), + [aux_sym_ignore_unknown_token1] = ACTIONS(2052), + [aux_sym_include_token1] = ACTIONS(2052), + [aux_sym_ip_qos_token1] = ACTIONS(2052), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2052), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2052), + [aux_sym_kex_algorithms_token1] = ACTIONS(2052), + [aux_sym_known_hosts_command_token1] = ACTIONS(2052), + [aux_sym_local_command_token1] = ACTIONS(2052), + [aux_sym_local_forward_token1] = ACTIONS(2052), + [aux_sym_log_level_token1] = ACTIONS(2052), + [aux_sym_log_verbose_token1] = ACTIONS(2052), + [aux_sym_macs_token1] = ACTIONS(2052), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2052), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2052), + [aux_sym_password_authentication_token1] = ACTIONS(2052), + [aux_sym_permit_local_command_token1] = ACTIONS(2052), + [aux_sym_permit_remote_open_token1] = ACTIONS(2052), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2052), + [aux_sym_port_token1] = ACTIONS(2052), + [aux_sym_preferred_authentications_token1] = ACTIONS(2052), + [aux_sym_protocol_token1] = ACTIONS(2052), + [aux_sym_proxy_command_token1] = ACTIONS(2052), + [aux_sym_proxy_jump_token1] = ACTIONS(2052), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2052), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2052), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2052), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2052), + [aux_sym_rekey_limit_token1] = ACTIONS(2052), + [aux_sym_remote_command_token1] = ACTIONS(2052), + [aux_sym_remote_forward_token1] = ACTIONS(2052), + [aux_sym_request_tty_token1] = ACTIONS(2052), + [aux_sym_required_rsa_size_token1] = ACTIONS(2052), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2052), + [aux_sym_security_key_provider_token1] = ACTIONS(2052), + [aux_sym_send_env_token1] = ACTIONS(2052), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2052), + [aux_sym_server_alive_interval_token1] = ACTIONS(2052), + [aux_sym_session_type_token1] = ACTIONS(2052), + [aux_sym_set_env_token1] = ACTIONS(2052), + [aux_sym_stdin_null_token1] = ACTIONS(2052), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2052), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2052), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2052), + [aux_sym_syslog_facility_token1] = ACTIONS(2052), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2052), + [aux_sym_keep_alive_token1] = ACTIONS(2052), + [aux_sym_tunnel_token1] = ACTIONS(2054), + [aux_sym_tunnel_device_token1] = ACTIONS(2052), + [aux_sym_update_host_keys_token1] = ACTIONS(2052), + [aux_sym_use_keychain_token1] = ACTIONS(2052), + [aux_sym_use_roaming_token1] = ACTIONS(2052), + [aux_sym_user_token1] = ACTIONS(2054), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2052), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2052), + [aux_sym_visual_host_key_token1] = ACTIONS(2052), + [aux_sym_xauth_location_token1] = ACTIONS(2052), }, [258] = { - [ts_builtin_sym_end] = ACTIONS(2049), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2051), - [anon_sym_DQUOTE] = ACTIONS(2053), - [aux_sym_match_token1] = ACTIONS(2049), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2049), - [aux_sym_address_family_token1] = ACTIONS(2049), - [aux_sym_batch_mode_token1] = ACTIONS(2049), - [aux_sym_bind_address_token1] = ACTIONS(2049), - [aux_sym_bind_interface_token1] = ACTIONS(2049), - [aux_sym_canonical_domains_token1] = ACTIONS(2049), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2049), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2049), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2049), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2049), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2049), - [aux_sym_certificate_file_token1] = ACTIONS(2049), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2049), - [aux_sym_check_host_ip_token1] = ACTIONS(2049), - [aux_sym_ciphers_token1] = ACTIONS(2049), - [aux_sym_cipher_token1] = ACTIONS(2051), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2049), - [aux_sym_compression_token1] = ACTIONS(2049), - [aux_sym_connection_attempts_token1] = ACTIONS(2049), - [aux_sym_connect_timeout_token1] = ACTIONS(2049), - [aux_sym_control_master_token1] = ACTIONS(2049), - [aux_sym_control_path_token1] = ACTIONS(2049), - [aux_sym_control_persist_token1] = ACTIONS(2049), - [aux_sym_dynamic_forward_token1] = ACTIONS(2049), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2049), - [aux_sym_escape_char_token1] = ACTIONS(2049), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2049), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2049), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2049), - [aux_sym_forward_agent_token1] = ACTIONS(2049), - [aux_sym_forward_x11_token1] = ACTIONS(2051), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2049), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2049), - [aux_sym_gateway_ports_token1] = ACTIONS(2049), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2049), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2049), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2049), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2049), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2049), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2049), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2049), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2049), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2049), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2049), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2049), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2049), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2049), - [aux_sym_host_key_alias_token1] = ACTIONS(2049), - [aux_sym_hostname_token1] = ACTIONS(2049), - [aux_sym_identities_only_token1] = ACTIONS(2049), - [aux_sym_identity_agent_token1] = ACTIONS(2049), - [aux_sym_identity_file_token1] = ACTIONS(2049), - [aux_sym_ignore_unknown_token1] = ACTIONS(2049), - [aux_sym_include_token1] = ACTIONS(2049), - [aux_sym_ip_qos_token1] = ACTIONS(2049), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2049), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2049), - [aux_sym_kex_algorithms_token1] = ACTIONS(2049), - [aux_sym_known_hosts_command_token1] = ACTIONS(2049), - [aux_sym_local_command_token1] = ACTIONS(2049), - [aux_sym_local_forward_token1] = ACTIONS(2049), - [aux_sym_log_level_token1] = ACTIONS(2049), - [aux_sym_log_verbose_token1] = ACTIONS(2049), - [aux_sym_macs_token1] = ACTIONS(2049), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2049), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2049), - [aux_sym_password_authentication_token1] = ACTIONS(2049), - [aux_sym_permit_local_command_token1] = ACTIONS(2049), - [aux_sym_permit_remote_open_token1] = ACTIONS(2049), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2049), - [aux_sym_port_token1] = ACTIONS(2049), - [aux_sym_preferred_authentications_token1] = ACTIONS(2049), - [aux_sym_protocol_token1] = ACTIONS(2049), - [aux_sym_proxy_command_token1] = ACTIONS(2049), - [aux_sym_proxy_jump_token1] = ACTIONS(2049), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2049), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2049), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2049), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2049), - [aux_sym_rekey_limit_token1] = ACTIONS(2049), - [aux_sym_remote_command_token1] = ACTIONS(2049), - [aux_sym_remote_forward_token1] = ACTIONS(2049), - [aux_sym_request_tty_token1] = ACTIONS(2049), - [aux_sym_required_rsa_size_token1] = ACTIONS(2049), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2049), - [aux_sym_security_key_provider_token1] = ACTIONS(2049), - [aux_sym_send_env_token1] = ACTIONS(2049), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2049), - [aux_sym_server_alive_interval_token1] = ACTIONS(2049), - [aux_sym_session_type_token1] = ACTIONS(2049), - [aux_sym_set_env_token1] = ACTIONS(2049), - [aux_sym_stdin_null_token1] = ACTIONS(2049), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2049), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2049), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2049), - [aux_sym_syslog_facility_token1] = ACTIONS(2049), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2049), - [aux_sym_keep_alive_token1] = ACTIONS(2049), - [aux_sym_tunnel_token1] = ACTIONS(2051), - [aux_sym_tunnel_device_token1] = ACTIONS(2049), - [aux_sym_update_host_keys_token1] = ACTIONS(2049), - [aux_sym_use_keychain_token1] = ACTIONS(2049), - [aux_sym_use_roaming_token1] = ACTIONS(2049), - [aux_sym_user_token1] = ACTIONS(2051), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2049), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2049), - [aux_sym_visual_host_key_token1] = ACTIONS(2049), - [aux_sym_xauth_location_token1] = ACTIONS(2049), + [ts_builtin_sym_end] = ACTIONS(2056), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2058), + [anon_sym_DQUOTE] = ACTIONS(2060), + [aux_sym_match_token1] = ACTIONS(2056), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2056), + [aux_sym_address_family_token1] = ACTIONS(2056), + [aux_sym_batch_mode_token1] = ACTIONS(2056), + [aux_sym_bind_address_token1] = ACTIONS(2056), + [aux_sym_bind_interface_token1] = ACTIONS(2056), + [aux_sym_canonical_domains_token1] = ACTIONS(2056), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2056), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2056), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2056), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2056), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2056), + [aux_sym_certificate_file_token1] = ACTIONS(2056), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2056), + [aux_sym_check_host_ip_token1] = ACTIONS(2056), + [aux_sym_ciphers_token1] = ACTIONS(2056), + [aux_sym_cipher_token1] = ACTIONS(2058), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2056), + [aux_sym_compression_token1] = ACTIONS(2056), + [aux_sym_connection_attempts_token1] = ACTIONS(2056), + [aux_sym_connect_timeout_token1] = ACTIONS(2056), + [aux_sym_control_master_token1] = ACTIONS(2056), + [aux_sym_control_path_token1] = ACTIONS(2056), + [aux_sym_control_persist_token1] = ACTIONS(2056), + [aux_sym_dynamic_forward_token1] = ACTIONS(2056), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2056), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2056), + [aux_sym_escape_char_token1] = ACTIONS(2056), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2056), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2056), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2056), + [aux_sym_forward_agent_token1] = ACTIONS(2056), + [aux_sym_forward_x11_token1] = ACTIONS(2058), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2056), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2056), + [aux_sym_gateway_ports_token1] = ACTIONS(2056), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2056), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2056), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2056), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2056), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2056), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2056), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2056), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2056), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2056), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2056), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2056), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2056), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2056), + [aux_sym_host_key_alias_token1] = ACTIONS(2056), + [aux_sym_hostname_token1] = ACTIONS(2056), + [aux_sym_identities_only_token1] = ACTIONS(2056), + [aux_sym_identity_agent_token1] = ACTIONS(2056), + [aux_sym_identity_file_token1] = ACTIONS(2056), + [aux_sym_ignore_unknown_token1] = ACTIONS(2056), + [aux_sym_include_token1] = ACTIONS(2056), + [aux_sym_ip_qos_token1] = ACTIONS(2056), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2056), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2056), + [aux_sym_kex_algorithms_token1] = ACTIONS(2056), + [aux_sym_known_hosts_command_token1] = ACTIONS(2056), + [aux_sym_local_command_token1] = ACTIONS(2056), + [aux_sym_local_forward_token1] = ACTIONS(2056), + [aux_sym_log_level_token1] = ACTIONS(2056), + [aux_sym_log_verbose_token1] = ACTIONS(2056), + [aux_sym_macs_token1] = ACTIONS(2056), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2056), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2056), + [aux_sym_password_authentication_token1] = ACTIONS(2056), + [aux_sym_permit_local_command_token1] = ACTIONS(2056), + [aux_sym_permit_remote_open_token1] = ACTIONS(2056), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2056), + [aux_sym_port_token1] = ACTIONS(2056), + [aux_sym_preferred_authentications_token1] = ACTIONS(2056), + [aux_sym_protocol_token1] = ACTIONS(2056), + [aux_sym_proxy_command_token1] = ACTIONS(2056), + [aux_sym_proxy_jump_token1] = ACTIONS(2056), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2056), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2056), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2056), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2056), + [aux_sym_rekey_limit_token1] = ACTIONS(2056), + [aux_sym_remote_command_token1] = ACTIONS(2056), + [aux_sym_remote_forward_token1] = ACTIONS(2056), + [aux_sym_request_tty_token1] = ACTIONS(2056), + [aux_sym_required_rsa_size_token1] = ACTIONS(2056), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2056), + [aux_sym_security_key_provider_token1] = ACTIONS(2056), + [aux_sym_send_env_token1] = ACTIONS(2056), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2056), + [aux_sym_server_alive_interval_token1] = ACTIONS(2056), + [aux_sym_session_type_token1] = ACTIONS(2056), + [aux_sym_set_env_token1] = ACTIONS(2056), + [aux_sym_stdin_null_token1] = ACTIONS(2056), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2056), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2056), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2056), + [aux_sym_syslog_facility_token1] = ACTIONS(2056), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2056), + [aux_sym_keep_alive_token1] = ACTIONS(2056), + [aux_sym_tunnel_token1] = ACTIONS(2058), + [aux_sym_tunnel_device_token1] = ACTIONS(2056), + [aux_sym_update_host_keys_token1] = ACTIONS(2056), + [aux_sym_use_keychain_token1] = ACTIONS(2056), + [aux_sym_use_roaming_token1] = ACTIONS(2056), + [aux_sym_user_token1] = ACTIONS(2058), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2056), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2056), + [aux_sym_visual_host_key_token1] = ACTIONS(2056), + [aux_sym_xauth_location_token1] = ACTIONS(2056), }, [259] = { - [ts_builtin_sym_end] = ACTIONS(2055), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2059), - [aux_sym_match_token1] = ACTIONS(2055), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2055), - [aux_sym_address_family_token1] = ACTIONS(2055), - [aux_sym_batch_mode_token1] = ACTIONS(2055), - [aux_sym_bind_address_token1] = ACTIONS(2055), - [aux_sym_bind_interface_token1] = ACTIONS(2055), - [aux_sym_canonical_domains_token1] = ACTIONS(2055), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2055), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2055), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2055), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2055), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2055), - [aux_sym_certificate_file_token1] = ACTIONS(2055), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2055), - [aux_sym_check_host_ip_token1] = ACTIONS(2055), - [aux_sym_ciphers_token1] = ACTIONS(2055), - [aux_sym_cipher_token1] = ACTIONS(2057), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2055), - [aux_sym_compression_token1] = ACTIONS(2055), - [aux_sym_connection_attempts_token1] = ACTIONS(2055), - [aux_sym_connect_timeout_token1] = ACTIONS(2055), - [aux_sym_control_master_token1] = ACTIONS(2055), - [aux_sym_control_path_token1] = ACTIONS(2055), - [aux_sym_control_persist_token1] = ACTIONS(2055), - [aux_sym_dynamic_forward_token1] = ACTIONS(2055), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2055), - [aux_sym_escape_char_token1] = ACTIONS(2055), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2055), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2055), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2055), - [aux_sym_forward_agent_token1] = ACTIONS(2055), - [aux_sym_forward_x11_token1] = ACTIONS(2057), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2055), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2055), - [aux_sym_gateway_ports_token1] = ACTIONS(2055), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2055), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2055), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2055), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2055), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2055), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2055), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2055), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2055), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2055), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2055), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2055), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2055), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2055), - [aux_sym_host_key_alias_token1] = ACTIONS(2055), - [aux_sym_hostname_token1] = ACTIONS(2055), - [aux_sym_identities_only_token1] = ACTIONS(2055), - [aux_sym_identity_agent_token1] = ACTIONS(2055), - [aux_sym_identity_file_token1] = ACTIONS(2055), - [aux_sym_ignore_unknown_token1] = ACTIONS(2055), - [aux_sym_include_token1] = ACTIONS(2055), - [aux_sym_ip_qos_token1] = ACTIONS(2055), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2055), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2055), - [aux_sym_kex_algorithms_token1] = ACTIONS(2055), - [aux_sym_known_hosts_command_token1] = ACTIONS(2055), - [aux_sym_local_command_token1] = ACTIONS(2055), - [aux_sym_local_forward_token1] = ACTIONS(2055), - [aux_sym_log_level_token1] = ACTIONS(2055), - [aux_sym_log_verbose_token1] = ACTIONS(2055), - [aux_sym_macs_token1] = ACTIONS(2055), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2055), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2055), - [aux_sym_password_authentication_token1] = ACTIONS(2055), - [aux_sym_permit_local_command_token1] = ACTIONS(2055), - [aux_sym_permit_remote_open_token1] = ACTIONS(2055), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2055), - [aux_sym_port_token1] = ACTIONS(2055), - [aux_sym_preferred_authentications_token1] = ACTIONS(2055), - [aux_sym_protocol_token1] = ACTIONS(2055), - [aux_sym_proxy_command_token1] = ACTIONS(2055), - [aux_sym_proxy_jump_token1] = ACTIONS(2055), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2055), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2055), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2055), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2055), - [aux_sym_rekey_limit_token1] = ACTIONS(2055), - [aux_sym_remote_command_token1] = ACTIONS(2055), - [aux_sym_remote_forward_token1] = ACTIONS(2055), - [aux_sym_request_tty_token1] = ACTIONS(2055), - [aux_sym_required_rsa_size_token1] = ACTIONS(2055), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2055), - [aux_sym_security_key_provider_token1] = ACTIONS(2055), - [aux_sym_send_env_token1] = ACTIONS(2055), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2055), - [aux_sym_server_alive_interval_token1] = ACTIONS(2055), - [aux_sym_session_type_token1] = ACTIONS(2055), - [aux_sym_set_env_token1] = ACTIONS(2055), - [aux_sym_stdin_null_token1] = ACTIONS(2055), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2055), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2055), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2055), - [aux_sym_syslog_facility_token1] = ACTIONS(2055), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2055), - [aux_sym_keep_alive_token1] = ACTIONS(2055), - [aux_sym_tunnel_token1] = ACTIONS(2057), - [aux_sym_tunnel_device_token1] = ACTIONS(2055), - [aux_sym_update_host_keys_token1] = ACTIONS(2055), - [aux_sym_use_keychain_token1] = ACTIONS(2055), - [aux_sym_use_roaming_token1] = ACTIONS(2055), - [aux_sym_user_token1] = ACTIONS(2057), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2055), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2055), - [aux_sym_visual_host_key_token1] = ACTIONS(2055), - [aux_sym_xauth_location_token1] = ACTIONS(2055), + [ts_builtin_sym_end] = ACTIONS(2062), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2064), + [anon_sym_DQUOTE] = ACTIONS(2062), + [aux_sym_match_token1] = ACTIONS(2062), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2062), + [aux_sym_address_family_token1] = ACTIONS(2062), + [aux_sym_batch_mode_token1] = ACTIONS(2062), + [aux_sym_bind_address_token1] = ACTIONS(2062), + [aux_sym_bind_interface_token1] = ACTIONS(2062), + [aux_sym_canonical_domains_token1] = ACTIONS(2062), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2062), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2062), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2062), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2062), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2062), + [aux_sym_certificate_file_token1] = ACTIONS(2062), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2062), + [aux_sym_check_host_ip_token1] = ACTIONS(2062), + [aux_sym_ciphers_token1] = ACTIONS(2062), + [aux_sym_cipher_token1] = ACTIONS(2064), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2062), + [aux_sym_compression_token1] = ACTIONS(2062), + [aux_sym_connection_attempts_token1] = ACTIONS(2062), + [aux_sym_connect_timeout_token1] = ACTIONS(2062), + [aux_sym_control_master_token1] = ACTIONS(2062), + [aux_sym_control_path_token1] = ACTIONS(2062), + [aux_sym_control_persist_token1] = ACTIONS(2062), + [aux_sym_dynamic_forward_token1] = ACTIONS(2062), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2062), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2062), + [aux_sym_escape_char_token1] = ACTIONS(2062), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2062), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2062), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2062), + [aux_sym_forward_agent_token1] = ACTIONS(2062), + [aux_sym_forward_x11_token1] = ACTIONS(2064), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2062), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2062), + [aux_sym_gateway_ports_token1] = ACTIONS(2062), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2062), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2062), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2062), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2062), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2062), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2062), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2062), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2062), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2062), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2062), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2062), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2062), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2062), + [aux_sym_host_key_alias_token1] = ACTIONS(2062), + [aux_sym_hostname_token1] = ACTIONS(2062), + [aux_sym_identities_only_token1] = ACTIONS(2062), + [aux_sym_identity_agent_token1] = ACTIONS(2062), + [aux_sym_identity_file_token1] = ACTIONS(2062), + [aux_sym_ignore_unknown_token1] = ACTIONS(2062), + [aux_sym_include_token1] = ACTIONS(2062), + [aux_sym_ip_qos_token1] = ACTIONS(2062), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2062), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2062), + [aux_sym_kex_algorithms_token1] = ACTIONS(2062), + [aux_sym_known_hosts_command_token1] = ACTIONS(2062), + [aux_sym_local_command_token1] = ACTIONS(2062), + [aux_sym_local_forward_token1] = ACTIONS(2062), + [aux_sym_log_level_token1] = ACTIONS(2062), + [aux_sym_log_verbose_token1] = ACTIONS(2062), + [aux_sym_macs_token1] = ACTIONS(2062), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2062), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2062), + [aux_sym_password_authentication_token1] = ACTIONS(2062), + [aux_sym_permit_local_command_token1] = ACTIONS(2062), + [aux_sym_permit_remote_open_token1] = ACTIONS(2062), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2062), + [aux_sym_port_token1] = ACTIONS(2062), + [aux_sym_preferred_authentications_token1] = ACTIONS(2062), + [aux_sym_protocol_token1] = ACTIONS(2062), + [aux_sym_proxy_command_token1] = ACTIONS(2062), + [aux_sym_proxy_jump_token1] = ACTIONS(2062), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2062), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2062), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2062), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2062), + [aux_sym_rekey_limit_token1] = ACTIONS(2062), + [aux_sym_remote_command_token1] = ACTIONS(2062), + [aux_sym_remote_forward_token1] = ACTIONS(2062), + [aux_sym_request_tty_token1] = ACTIONS(2062), + [aux_sym_required_rsa_size_token1] = ACTIONS(2062), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2062), + [aux_sym_security_key_provider_token1] = ACTIONS(2062), + [aux_sym_send_env_token1] = ACTIONS(2062), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2062), + [aux_sym_server_alive_interval_token1] = ACTIONS(2062), + [aux_sym_session_type_token1] = ACTIONS(2062), + [aux_sym_set_env_token1] = ACTIONS(2062), + [aux_sym_stdin_null_token1] = ACTIONS(2062), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2062), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2062), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2062), + [aux_sym_syslog_facility_token1] = ACTIONS(2062), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2062), + [aux_sym_keep_alive_token1] = ACTIONS(2062), + [aux_sym_tunnel_token1] = ACTIONS(2064), + [aux_sym_tunnel_device_token1] = ACTIONS(2062), + [aux_sym_update_host_keys_token1] = ACTIONS(2062), + [aux_sym_use_keychain_token1] = ACTIONS(2062), + [aux_sym_use_roaming_token1] = ACTIONS(2062), + [aux_sym_user_token1] = ACTIONS(2064), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2062), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2062), + [aux_sym_visual_host_key_token1] = ACTIONS(2062), + [aux_sym_xauth_location_token1] = ACTIONS(2062), }, [260] = { - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(2061), - [aux_sym_match_token1] = ACTIONS(2061), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2061), - [aux_sym_address_family_token1] = ACTIONS(2061), - [aux_sym_batch_mode_token1] = ACTIONS(2061), - [aux_sym_bind_address_token1] = ACTIONS(2061), - [aux_sym_bind_interface_token1] = ACTIONS(2061), - [aux_sym_canonical_domains_token1] = ACTIONS(2061), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2061), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2061), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2061), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2061), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2061), - [aux_sym_certificate_file_token1] = ACTIONS(2061), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2061), - [aux_sym_check_host_ip_token1] = ACTIONS(2061), - [aux_sym_ciphers_token1] = ACTIONS(2061), - [aux_sym_cipher_token1] = ACTIONS(2063), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2061), - [aux_sym_compression_token1] = ACTIONS(2061), - [aux_sym_connection_attempts_token1] = ACTIONS(2061), - [aux_sym_connect_timeout_token1] = ACTIONS(2061), - [aux_sym_control_master_token1] = ACTIONS(2061), - [aux_sym_control_path_token1] = ACTIONS(2061), - [aux_sym_control_persist_token1] = ACTIONS(2061), - [aux_sym_dynamic_forward_token1] = ACTIONS(2061), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2061), - [aux_sym_escape_char_token1] = ACTIONS(2061), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2061), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2061), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2061), - [aux_sym_forward_agent_token1] = ACTIONS(2061), - [aux_sym_forward_x11_token1] = ACTIONS(2063), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2061), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2061), - [aux_sym_gateway_ports_token1] = ACTIONS(2061), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2061), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2061), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2061), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2061), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2061), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2061), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2061), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2061), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2061), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2061), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2061), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2061), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2061), - [aux_sym_host_key_alias_token1] = ACTIONS(2061), - [aux_sym_hostname_token1] = ACTIONS(2061), - [aux_sym_identities_only_token1] = ACTIONS(2061), - [aux_sym_identity_agent_token1] = ACTIONS(2061), - [aux_sym_identity_file_token1] = ACTIONS(2061), - [aux_sym_ignore_unknown_token1] = ACTIONS(2061), - [aux_sym_include_token1] = ACTIONS(2061), - [aux_sym_ip_qos_token1] = ACTIONS(2061), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2061), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2061), - [aux_sym_kex_algorithms_token1] = ACTIONS(2061), - [aux_sym_known_hosts_command_token1] = ACTIONS(2061), - [aux_sym_local_command_token1] = ACTIONS(2061), - [aux_sym_local_forward_token1] = ACTIONS(2061), - [aux_sym_log_level_token1] = ACTIONS(2061), - [aux_sym_log_verbose_token1] = ACTIONS(2061), - [aux_sym_macs_token1] = ACTIONS(2061), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2061), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2061), - [aux_sym_password_authentication_token1] = ACTIONS(2061), - [aux_sym_permit_local_command_token1] = ACTIONS(2061), - [aux_sym_permit_remote_open_token1] = ACTIONS(2061), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2061), - [aux_sym_port_token1] = ACTIONS(2061), - [aux_sym_preferred_authentications_token1] = ACTIONS(2061), - [aux_sym_protocol_token1] = ACTIONS(2061), - [aux_sym_proxy_command_token1] = ACTIONS(2061), - [aux_sym_proxy_jump_token1] = ACTIONS(2061), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2061), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2061), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2061), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2061), - [aux_sym_rekey_limit_token1] = ACTIONS(2061), - [aux_sym_remote_command_token1] = ACTIONS(2061), - [aux_sym_remote_forward_token1] = ACTIONS(2061), - [aux_sym_request_tty_token1] = ACTIONS(2061), - [aux_sym_required_rsa_size_token1] = ACTIONS(2061), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2061), - [aux_sym_security_key_provider_token1] = ACTIONS(2061), - [aux_sym_send_env_token1] = ACTIONS(2061), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2061), - [aux_sym_server_alive_interval_token1] = ACTIONS(2061), - [aux_sym_session_type_token1] = ACTIONS(2061), - [aux_sym_set_env_token1] = ACTIONS(2061), - [aux_sym_stdin_null_token1] = ACTIONS(2061), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2061), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2061), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2061), - [aux_sym_syslog_facility_token1] = ACTIONS(2061), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2061), - [aux_sym_keep_alive_token1] = ACTIONS(2061), - [aux_sym_tunnel_token1] = ACTIONS(2063), - [aux_sym_tunnel_device_token1] = ACTIONS(2061), - [aux_sym_update_host_keys_token1] = ACTIONS(2061), - [aux_sym_use_keychain_token1] = ACTIONS(2061), - [aux_sym_use_roaming_token1] = ACTIONS(2061), - [aux_sym_user_token1] = ACTIONS(2063), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2061), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2061), - [aux_sym_visual_host_key_token1] = ACTIONS(2061), - [aux_sym_xauth_location_token1] = ACTIONS(2061), + [ts_builtin_sym_end] = ACTIONS(2066), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(2070), + [aux_sym_match_token1] = ACTIONS(2066), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2066), + [aux_sym_address_family_token1] = ACTIONS(2066), + [aux_sym_batch_mode_token1] = ACTIONS(2066), + [aux_sym_bind_address_token1] = ACTIONS(2066), + [aux_sym_bind_interface_token1] = ACTIONS(2066), + [aux_sym_canonical_domains_token1] = ACTIONS(2066), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2066), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2066), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2066), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2066), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2066), + [aux_sym_certificate_file_token1] = ACTIONS(2066), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2066), + [aux_sym_check_host_ip_token1] = ACTIONS(2066), + [aux_sym_ciphers_token1] = ACTIONS(2066), + [aux_sym_cipher_token1] = ACTIONS(2068), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2066), + [aux_sym_compression_token1] = ACTIONS(2066), + [aux_sym_connection_attempts_token1] = ACTIONS(2066), + [aux_sym_connect_timeout_token1] = ACTIONS(2066), + [aux_sym_control_master_token1] = ACTIONS(2066), + [aux_sym_control_path_token1] = ACTIONS(2066), + [aux_sym_control_persist_token1] = ACTIONS(2066), + [aux_sym_dynamic_forward_token1] = ACTIONS(2066), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2066), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2066), + [aux_sym_escape_char_token1] = ACTIONS(2066), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2066), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2066), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2066), + [aux_sym_forward_agent_token1] = ACTIONS(2066), + [aux_sym_forward_x11_token1] = ACTIONS(2068), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2066), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2066), + [aux_sym_gateway_ports_token1] = ACTIONS(2066), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2066), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2066), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2066), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2066), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2066), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2066), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2066), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2066), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2066), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2066), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2066), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2066), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2066), + [aux_sym_host_key_alias_token1] = ACTIONS(2066), + [aux_sym_hostname_token1] = ACTIONS(2066), + [aux_sym_identities_only_token1] = ACTIONS(2066), + [aux_sym_identity_agent_token1] = ACTIONS(2066), + [aux_sym_identity_file_token1] = ACTIONS(2066), + [aux_sym_ignore_unknown_token1] = ACTIONS(2066), + [aux_sym_include_token1] = ACTIONS(2066), + [aux_sym_ip_qos_token1] = ACTIONS(2066), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2066), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2066), + [aux_sym_kex_algorithms_token1] = ACTIONS(2066), + [aux_sym_known_hosts_command_token1] = ACTIONS(2066), + [aux_sym_local_command_token1] = ACTIONS(2066), + [aux_sym_local_forward_token1] = ACTIONS(2066), + [aux_sym_log_level_token1] = ACTIONS(2066), + [aux_sym_log_verbose_token1] = ACTIONS(2066), + [aux_sym_macs_token1] = ACTIONS(2066), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2066), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2066), + [aux_sym_password_authentication_token1] = ACTIONS(2066), + [aux_sym_permit_local_command_token1] = ACTIONS(2066), + [aux_sym_permit_remote_open_token1] = ACTIONS(2066), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2066), + [aux_sym_port_token1] = ACTIONS(2066), + [aux_sym_preferred_authentications_token1] = ACTIONS(2066), + [aux_sym_protocol_token1] = ACTIONS(2066), + [aux_sym_proxy_command_token1] = ACTIONS(2066), + [aux_sym_proxy_jump_token1] = ACTIONS(2066), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2066), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2066), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2066), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2066), + [aux_sym_rekey_limit_token1] = ACTIONS(2066), + [aux_sym_remote_command_token1] = ACTIONS(2066), + [aux_sym_remote_forward_token1] = ACTIONS(2066), + [aux_sym_request_tty_token1] = ACTIONS(2066), + [aux_sym_required_rsa_size_token1] = ACTIONS(2066), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2066), + [aux_sym_security_key_provider_token1] = ACTIONS(2066), + [aux_sym_send_env_token1] = ACTIONS(2066), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2066), + [aux_sym_server_alive_interval_token1] = ACTIONS(2066), + [aux_sym_session_type_token1] = ACTIONS(2066), + [aux_sym_set_env_token1] = ACTIONS(2066), + [aux_sym_stdin_null_token1] = ACTIONS(2066), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2066), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2066), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2066), + [aux_sym_syslog_facility_token1] = ACTIONS(2066), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2066), + [aux_sym_keep_alive_token1] = ACTIONS(2066), + [aux_sym_tunnel_token1] = ACTIONS(2068), + [aux_sym_tunnel_device_token1] = ACTIONS(2066), + [aux_sym_update_host_keys_token1] = ACTIONS(2066), + [aux_sym_use_keychain_token1] = ACTIONS(2066), + [aux_sym_use_roaming_token1] = ACTIONS(2066), + [aux_sym_user_token1] = ACTIONS(2068), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2066), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2066), + [aux_sym_visual_host_key_token1] = ACTIONS(2066), + [aux_sym_xauth_location_token1] = ACTIONS(2066), }, [261] = { - [ts_builtin_sym_end] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2065), - [aux_sym_match_token1] = ACTIONS(2065), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2065), - [aux_sym_address_family_token1] = ACTIONS(2065), - [aux_sym_batch_mode_token1] = ACTIONS(2065), - [aux_sym_bind_address_token1] = ACTIONS(2065), - [aux_sym_bind_interface_token1] = ACTIONS(2065), - [aux_sym_canonical_domains_token1] = ACTIONS(2065), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2065), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2065), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2065), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2065), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2065), - [aux_sym_certificate_file_token1] = ACTIONS(2065), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2065), - [aux_sym_check_host_ip_token1] = ACTIONS(2065), - [aux_sym_ciphers_token1] = ACTIONS(2065), - [aux_sym_cipher_token1] = ACTIONS(2067), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2065), - [aux_sym_compression_token1] = ACTIONS(2065), - [aux_sym_connection_attempts_token1] = ACTIONS(2065), - [aux_sym_connect_timeout_token1] = ACTIONS(2065), - [aux_sym_control_master_token1] = ACTIONS(2065), - [aux_sym_control_path_token1] = ACTIONS(2065), - [aux_sym_control_persist_token1] = ACTIONS(2065), - [aux_sym_dynamic_forward_token1] = ACTIONS(2065), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2065), - [aux_sym_escape_char_token1] = ACTIONS(2065), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2065), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2065), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2065), - [aux_sym_forward_agent_token1] = ACTIONS(2065), - [aux_sym_forward_x11_token1] = ACTIONS(2067), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2065), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2065), - [aux_sym_gateway_ports_token1] = ACTIONS(2065), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2065), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2065), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2065), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2065), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2065), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2065), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2065), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2065), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2065), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2065), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2065), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2065), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2065), - [aux_sym_host_key_alias_token1] = ACTIONS(2065), - [aux_sym_hostname_token1] = ACTIONS(2065), - [aux_sym_identities_only_token1] = ACTIONS(2065), - [aux_sym_identity_agent_token1] = ACTIONS(2065), - [aux_sym_identity_file_token1] = ACTIONS(2065), - [aux_sym_ignore_unknown_token1] = ACTIONS(2065), - [aux_sym_include_token1] = ACTIONS(2065), - [aux_sym_ip_qos_token1] = ACTIONS(2065), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2065), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2065), - [aux_sym_kex_algorithms_token1] = ACTIONS(2065), - [aux_sym_known_hosts_command_token1] = ACTIONS(2065), - [aux_sym_local_command_token1] = ACTIONS(2065), - [aux_sym_local_forward_token1] = ACTIONS(2065), - [aux_sym_log_level_token1] = ACTIONS(2065), - [aux_sym_log_verbose_token1] = ACTIONS(2065), - [aux_sym_macs_token1] = ACTIONS(2065), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2065), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2065), - [aux_sym_password_authentication_token1] = ACTIONS(2065), - [aux_sym_permit_local_command_token1] = ACTIONS(2065), - [aux_sym_permit_remote_open_token1] = ACTIONS(2065), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2065), - [aux_sym_port_token1] = ACTIONS(2065), - [aux_sym_preferred_authentications_token1] = ACTIONS(2065), - [aux_sym_protocol_token1] = ACTIONS(2065), - [aux_sym_proxy_command_token1] = ACTIONS(2065), - [aux_sym_proxy_jump_token1] = ACTIONS(2065), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2065), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2065), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2065), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2065), - [aux_sym_rekey_limit_token1] = ACTIONS(2065), - [aux_sym_remote_command_token1] = ACTIONS(2065), - [aux_sym_remote_forward_token1] = ACTIONS(2065), - [aux_sym_request_tty_token1] = ACTIONS(2065), - [aux_sym_required_rsa_size_token1] = ACTIONS(2065), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2065), - [aux_sym_security_key_provider_token1] = ACTIONS(2065), - [aux_sym_send_env_token1] = ACTIONS(2065), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2065), - [aux_sym_server_alive_interval_token1] = ACTIONS(2065), - [aux_sym_session_type_token1] = ACTIONS(2065), - [aux_sym_set_env_token1] = ACTIONS(2065), - [aux_sym_stdin_null_token1] = ACTIONS(2065), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2065), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2065), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2065), - [aux_sym_syslog_facility_token1] = ACTIONS(2065), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2065), - [aux_sym_keep_alive_token1] = ACTIONS(2065), - [aux_sym_tunnel_token1] = ACTIONS(2067), - [aux_sym_tunnel_device_token1] = ACTIONS(2065), - [aux_sym_update_host_keys_token1] = ACTIONS(2065), - [aux_sym_use_keychain_token1] = ACTIONS(2065), - [aux_sym_use_roaming_token1] = ACTIONS(2065), - [aux_sym_user_token1] = ACTIONS(2067), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2065), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2065), - [aux_sym_visual_host_key_token1] = ACTIONS(2065), - [aux_sym_xauth_location_token1] = ACTIONS(2065), + [ts_builtin_sym_end] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2076), + [aux_sym_match_token1] = ACTIONS(2072), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2072), + [aux_sym_address_family_token1] = ACTIONS(2072), + [aux_sym_batch_mode_token1] = ACTIONS(2072), + [aux_sym_bind_address_token1] = ACTIONS(2072), + [aux_sym_bind_interface_token1] = ACTIONS(2072), + [aux_sym_canonical_domains_token1] = ACTIONS(2072), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2072), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2072), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2072), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2072), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2072), + [aux_sym_certificate_file_token1] = ACTIONS(2072), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2072), + [aux_sym_check_host_ip_token1] = ACTIONS(2072), + [aux_sym_ciphers_token1] = ACTIONS(2072), + [aux_sym_cipher_token1] = ACTIONS(2074), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2072), + [aux_sym_compression_token1] = ACTIONS(2072), + [aux_sym_connection_attempts_token1] = ACTIONS(2072), + [aux_sym_connect_timeout_token1] = ACTIONS(2072), + [aux_sym_control_master_token1] = ACTIONS(2072), + [aux_sym_control_path_token1] = ACTIONS(2072), + [aux_sym_control_persist_token1] = ACTIONS(2072), + [aux_sym_dynamic_forward_token1] = ACTIONS(2072), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2072), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2072), + [aux_sym_escape_char_token1] = ACTIONS(2072), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2072), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2072), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2072), + [aux_sym_forward_agent_token1] = ACTIONS(2072), + [aux_sym_forward_x11_token1] = ACTIONS(2074), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2072), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2072), + [aux_sym_gateway_ports_token1] = ACTIONS(2072), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2072), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2072), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2072), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2072), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2072), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2072), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2072), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2072), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2072), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2072), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2072), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2072), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2072), + [aux_sym_host_key_alias_token1] = ACTIONS(2072), + [aux_sym_hostname_token1] = ACTIONS(2072), + [aux_sym_identities_only_token1] = ACTIONS(2072), + [aux_sym_identity_agent_token1] = ACTIONS(2072), + [aux_sym_identity_file_token1] = ACTIONS(2072), + [aux_sym_ignore_unknown_token1] = ACTIONS(2072), + [aux_sym_include_token1] = ACTIONS(2072), + [aux_sym_ip_qos_token1] = ACTIONS(2072), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2072), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2072), + [aux_sym_kex_algorithms_token1] = ACTIONS(2072), + [aux_sym_known_hosts_command_token1] = ACTIONS(2072), + [aux_sym_local_command_token1] = ACTIONS(2072), + [aux_sym_local_forward_token1] = ACTIONS(2072), + [aux_sym_log_level_token1] = ACTIONS(2072), + [aux_sym_log_verbose_token1] = ACTIONS(2072), + [aux_sym_macs_token1] = ACTIONS(2072), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2072), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2072), + [aux_sym_password_authentication_token1] = ACTIONS(2072), + [aux_sym_permit_local_command_token1] = ACTIONS(2072), + [aux_sym_permit_remote_open_token1] = ACTIONS(2072), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2072), + [aux_sym_port_token1] = ACTIONS(2072), + [aux_sym_preferred_authentications_token1] = ACTIONS(2072), + [aux_sym_protocol_token1] = ACTIONS(2072), + [aux_sym_proxy_command_token1] = ACTIONS(2072), + [aux_sym_proxy_jump_token1] = ACTIONS(2072), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2072), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2072), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2072), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2072), + [aux_sym_rekey_limit_token1] = ACTIONS(2072), + [aux_sym_remote_command_token1] = ACTIONS(2072), + [aux_sym_remote_forward_token1] = ACTIONS(2072), + [aux_sym_request_tty_token1] = ACTIONS(2072), + [aux_sym_required_rsa_size_token1] = ACTIONS(2072), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2072), + [aux_sym_security_key_provider_token1] = ACTIONS(2072), + [aux_sym_send_env_token1] = ACTIONS(2072), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2072), + [aux_sym_server_alive_interval_token1] = ACTIONS(2072), + [aux_sym_session_type_token1] = ACTIONS(2072), + [aux_sym_set_env_token1] = ACTIONS(2072), + [aux_sym_stdin_null_token1] = ACTIONS(2072), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2072), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2072), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2072), + [aux_sym_syslog_facility_token1] = ACTIONS(2072), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2072), + [aux_sym_keep_alive_token1] = ACTIONS(2072), + [aux_sym_tunnel_token1] = ACTIONS(2074), + [aux_sym_tunnel_device_token1] = ACTIONS(2072), + [aux_sym_update_host_keys_token1] = ACTIONS(2072), + [aux_sym_use_keychain_token1] = ACTIONS(2072), + [aux_sym_use_roaming_token1] = ACTIONS(2072), + [aux_sym_user_token1] = ACTIONS(2074), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2072), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2072), + [aux_sym_visual_host_key_token1] = ACTIONS(2072), + [aux_sym_xauth_location_token1] = ACTIONS(2072), }, [262] = { - [ts_builtin_sym_end] = ACTIONS(2069), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2071), - [anon_sym_DQUOTE] = ACTIONS(2073), - [aux_sym_match_token1] = ACTIONS(2069), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2069), - [aux_sym_address_family_token1] = ACTIONS(2069), - [aux_sym_batch_mode_token1] = ACTIONS(2069), - [aux_sym_bind_address_token1] = ACTIONS(2069), - [aux_sym_bind_interface_token1] = ACTIONS(2069), - [aux_sym_canonical_domains_token1] = ACTIONS(2069), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2069), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2069), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2069), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2069), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2069), - [aux_sym_certificate_file_token1] = ACTIONS(2069), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2069), - [aux_sym_check_host_ip_token1] = ACTIONS(2069), - [aux_sym_ciphers_token1] = ACTIONS(2069), - [aux_sym_cipher_token1] = ACTIONS(2071), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2069), - [aux_sym_compression_token1] = ACTIONS(2069), - [aux_sym_connection_attempts_token1] = ACTIONS(2069), - [aux_sym_connect_timeout_token1] = ACTIONS(2069), - [aux_sym_control_master_token1] = ACTIONS(2069), - [aux_sym_control_path_token1] = ACTIONS(2069), - [aux_sym_control_persist_token1] = ACTIONS(2069), - [aux_sym_dynamic_forward_token1] = ACTIONS(2069), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2069), - [aux_sym_escape_char_token1] = ACTIONS(2069), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2069), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2069), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2069), - [aux_sym_forward_agent_token1] = ACTIONS(2069), - [aux_sym_forward_x11_token1] = ACTIONS(2071), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2069), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2069), - [aux_sym_gateway_ports_token1] = ACTIONS(2069), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2069), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2069), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2069), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2069), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2069), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2069), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2069), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2069), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2069), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2069), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2069), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2069), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2069), - [aux_sym_host_key_alias_token1] = ACTIONS(2069), - [aux_sym_hostname_token1] = ACTIONS(2069), - [aux_sym_identities_only_token1] = ACTIONS(2069), - [aux_sym_identity_agent_token1] = ACTIONS(2069), - [aux_sym_identity_file_token1] = ACTIONS(2069), - [aux_sym_ignore_unknown_token1] = ACTIONS(2069), - [aux_sym_include_token1] = ACTIONS(2069), - [aux_sym_ip_qos_token1] = ACTIONS(2069), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2069), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2069), - [aux_sym_kex_algorithms_token1] = ACTIONS(2069), - [aux_sym_known_hosts_command_token1] = ACTIONS(2069), - [aux_sym_local_command_token1] = ACTIONS(2069), - [aux_sym_local_forward_token1] = ACTIONS(2069), - [aux_sym_log_level_token1] = ACTIONS(2069), - [aux_sym_log_verbose_token1] = ACTIONS(2069), - [aux_sym_macs_token1] = ACTIONS(2069), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2069), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2069), - [aux_sym_password_authentication_token1] = ACTIONS(2069), - [aux_sym_permit_local_command_token1] = ACTIONS(2069), - [aux_sym_permit_remote_open_token1] = ACTIONS(2069), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2069), - [aux_sym_port_token1] = ACTIONS(2069), - [aux_sym_preferred_authentications_token1] = ACTIONS(2069), - [aux_sym_protocol_token1] = ACTIONS(2069), - [aux_sym_proxy_command_token1] = ACTIONS(2069), - [aux_sym_proxy_jump_token1] = ACTIONS(2069), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2069), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2069), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2069), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2069), - [aux_sym_rekey_limit_token1] = ACTIONS(2069), - [aux_sym_remote_command_token1] = ACTIONS(2069), - [aux_sym_remote_forward_token1] = ACTIONS(2069), - [aux_sym_request_tty_token1] = ACTIONS(2069), - [aux_sym_required_rsa_size_token1] = ACTIONS(2069), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2069), - [aux_sym_security_key_provider_token1] = ACTIONS(2069), - [aux_sym_send_env_token1] = ACTIONS(2069), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2069), - [aux_sym_server_alive_interval_token1] = ACTIONS(2069), - [aux_sym_session_type_token1] = ACTIONS(2069), - [aux_sym_set_env_token1] = ACTIONS(2069), - [aux_sym_stdin_null_token1] = ACTIONS(2069), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2069), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2069), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2069), - [aux_sym_syslog_facility_token1] = ACTIONS(2069), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2069), - [aux_sym_keep_alive_token1] = ACTIONS(2069), - [aux_sym_tunnel_token1] = ACTIONS(2071), - [aux_sym_tunnel_device_token1] = ACTIONS(2069), - [aux_sym_update_host_keys_token1] = ACTIONS(2069), - [aux_sym_use_keychain_token1] = ACTIONS(2069), - [aux_sym_use_roaming_token1] = ACTIONS(2069), - [aux_sym_user_token1] = ACTIONS(2071), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2069), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2069), - [aux_sym_visual_host_key_token1] = ACTIONS(2069), - [aux_sym_xauth_location_token1] = ACTIONS(2069), + [ts_builtin_sym_end] = ACTIONS(2078), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2080), + [anon_sym_DQUOTE] = ACTIONS(2078), + [aux_sym_match_token1] = ACTIONS(2078), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2078), + [aux_sym_address_family_token1] = ACTIONS(2078), + [aux_sym_batch_mode_token1] = ACTIONS(2078), + [aux_sym_bind_address_token1] = ACTIONS(2078), + [aux_sym_bind_interface_token1] = ACTIONS(2078), + [aux_sym_canonical_domains_token1] = ACTIONS(2078), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2078), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2078), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2078), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2078), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2078), + [aux_sym_certificate_file_token1] = ACTIONS(2078), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2078), + [aux_sym_check_host_ip_token1] = ACTIONS(2078), + [aux_sym_ciphers_token1] = ACTIONS(2078), + [aux_sym_cipher_token1] = ACTIONS(2080), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2078), + [aux_sym_compression_token1] = ACTIONS(2078), + [aux_sym_connection_attempts_token1] = ACTIONS(2078), + [aux_sym_connect_timeout_token1] = ACTIONS(2078), + [aux_sym_control_master_token1] = ACTIONS(2078), + [aux_sym_control_path_token1] = ACTIONS(2078), + [aux_sym_control_persist_token1] = ACTIONS(2078), + [aux_sym_dynamic_forward_token1] = ACTIONS(2078), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2078), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2078), + [aux_sym_escape_char_token1] = ACTIONS(2078), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2078), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2078), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2078), + [aux_sym_forward_agent_token1] = ACTIONS(2078), + [aux_sym_forward_x11_token1] = ACTIONS(2080), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2078), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2078), + [aux_sym_gateway_ports_token1] = ACTIONS(2078), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2078), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2078), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2078), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2078), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2078), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2078), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2078), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2078), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2078), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2078), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2078), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2078), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2078), + [aux_sym_host_key_alias_token1] = ACTIONS(2078), + [aux_sym_hostname_token1] = ACTIONS(2078), + [aux_sym_identities_only_token1] = ACTIONS(2078), + [aux_sym_identity_agent_token1] = ACTIONS(2078), + [aux_sym_identity_file_token1] = ACTIONS(2078), + [aux_sym_ignore_unknown_token1] = ACTIONS(2078), + [aux_sym_include_token1] = ACTIONS(2078), + [aux_sym_ip_qos_token1] = ACTIONS(2078), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2078), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2078), + [aux_sym_kex_algorithms_token1] = ACTIONS(2078), + [aux_sym_known_hosts_command_token1] = ACTIONS(2078), + [aux_sym_local_command_token1] = ACTIONS(2078), + [aux_sym_local_forward_token1] = ACTIONS(2078), + [aux_sym_log_level_token1] = ACTIONS(2078), + [aux_sym_log_verbose_token1] = ACTIONS(2078), + [aux_sym_macs_token1] = ACTIONS(2078), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2078), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2078), + [aux_sym_password_authentication_token1] = ACTIONS(2078), + [aux_sym_permit_local_command_token1] = ACTIONS(2078), + [aux_sym_permit_remote_open_token1] = ACTIONS(2078), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2078), + [aux_sym_port_token1] = ACTIONS(2078), + [aux_sym_preferred_authentications_token1] = ACTIONS(2078), + [aux_sym_protocol_token1] = ACTIONS(2078), + [aux_sym_proxy_command_token1] = ACTIONS(2078), + [aux_sym_proxy_jump_token1] = ACTIONS(2078), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2078), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2078), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2078), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2078), + [aux_sym_rekey_limit_token1] = ACTIONS(2078), + [aux_sym_remote_command_token1] = ACTIONS(2078), + [aux_sym_remote_forward_token1] = ACTIONS(2078), + [aux_sym_request_tty_token1] = ACTIONS(2078), + [aux_sym_required_rsa_size_token1] = ACTIONS(2078), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2078), + [aux_sym_security_key_provider_token1] = ACTIONS(2078), + [aux_sym_send_env_token1] = ACTIONS(2078), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2078), + [aux_sym_server_alive_interval_token1] = ACTIONS(2078), + [aux_sym_session_type_token1] = ACTIONS(2078), + [aux_sym_set_env_token1] = ACTIONS(2078), + [aux_sym_stdin_null_token1] = ACTIONS(2078), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2078), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2078), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2078), + [aux_sym_syslog_facility_token1] = ACTIONS(2078), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2078), + [aux_sym_keep_alive_token1] = ACTIONS(2078), + [aux_sym_tunnel_token1] = ACTIONS(2080), + [aux_sym_tunnel_device_token1] = ACTIONS(2078), + [aux_sym_update_host_keys_token1] = ACTIONS(2078), + [aux_sym_use_keychain_token1] = ACTIONS(2078), + [aux_sym_use_roaming_token1] = ACTIONS(2078), + [aux_sym_user_token1] = ACTIONS(2080), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2078), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2078), + [aux_sym_visual_host_key_token1] = ACTIONS(2078), + [aux_sym_xauth_location_token1] = ACTIONS(2078), }, [263] = { - [ts_builtin_sym_end] = ACTIONS(2075), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2077), - [anon_sym_DQUOTE] = ACTIONS(2075), - [aux_sym_match_token1] = ACTIONS(2075), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2075), - [aux_sym_address_family_token1] = ACTIONS(2075), - [aux_sym_batch_mode_token1] = ACTIONS(2075), - [aux_sym_bind_address_token1] = ACTIONS(2075), - [aux_sym_bind_interface_token1] = ACTIONS(2075), - [aux_sym_canonical_domains_token1] = ACTIONS(2075), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2075), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2075), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2075), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2075), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2075), - [aux_sym_certificate_file_token1] = ACTIONS(2075), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2075), - [aux_sym_check_host_ip_token1] = ACTIONS(2075), - [aux_sym_ciphers_token1] = ACTIONS(2075), - [aux_sym_cipher_token1] = ACTIONS(2077), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2075), - [aux_sym_compression_token1] = ACTIONS(2075), - [aux_sym_connection_attempts_token1] = ACTIONS(2075), - [aux_sym_connect_timeout_token1] = ACTIONS(2075), - [aux_sym_control_master_token1] = ACTIONS(2075), - [aux_sym_control_path_token1] = ACTIONS(2075), - [aux_sym_control_persist_token1] = ACTIONS(2075), - [aux_sym_dynamic_forward_token1] = ACTIONS(2075), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2075), - [aux_sym_escape_char_token1] = ACTIONS(2075), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2075), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2075), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2075), - [aux_sym_forward_agent_token1] = ACTIONS(2075), - [aux_sym_forward_x11_token1] = ACTIONS(2077), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2075), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2075), - [aux_sym_gateway_ports_token1] = ACTIONS(2075), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2075), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2075), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2075), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2075), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2075), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2075), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2075), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2075), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2075), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2075), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2075), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2075), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2075), - [aux_sym_host_key_alias_token1] = ACTIONS(2075), - [aux_sym_hostname_token1] = ACTIONS(2075), - [aux_sym_identities_only_token1] = ACTIONS(2075), - [aux_sym_identity_agent_token1] = ACTIONS(2075), - [aux_sym_identity_file_token1] = ACTIONS(2075), - [aux_sym_ignore_unknown_token1] = ACTIONS(2075), - [aux_sym_include_token1] = ACTIONS(2075), - [aux_sym_ip_qos_token1] = ACTIONS(2075), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2075), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2075), - [aux_sym_kex_algorithms_token1] = ACTIONS(2075), - [aux_sym_known_hosts_command_token1] = ACTIONS(2075), - [aux_sym_local_command_token1] = ACTIONS(2075), - [aux_sym_local_forward_token1] = ACTIONS(2075), - [aux_sym_log_level_token1] = ACTIONS(2075), - [aux_sym_log_verbose_token1] = ACTIONS(2075), - [aux_sym_macs_token1] = ACTIONS(2075), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2075), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2075), - [aux_sym_password_authentication_token1] = ACTIONS(2075), - [aux_sym_permit_local_command_token1] = ACTIONS(2075), - [aux_sym_permit_remote_open_token1] = ACTIONS(2075), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2075), - [aux_sym_port_token1] = ACTIONS(2075), - [aux_sym_preferred_authentications_token1] = ACTIONS(2075), - [aux_sym_protocol_token1] = ACTIONS(2075), - [aux_sym_proxy_command_token1] = ACTIONS(2075), - [aux_sym_proxy_jump_token1] = ACTIONS(2075), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2075), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2075), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2075), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2075), - [aux_sym_rekey_limit_token1] = ACTIONS(2075), - [aux_sym_remote_command_token1] = ACTIONS(2075), - [aux_sym_remote_forward_token1] = ACTIONS(2075), - [aux_sym_request_tty_token1] = ACTIONS(2075), - [aux_sym_required_rsa_size_token1] = ACTIONS(2075), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2075), - [aux_sym_security_key_provider_token1] = ACTIONS(2075), - [aux_sym_send_env_token1] = ACTIONS(2075), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2075), - [aux_sym_server_alive_interval_token1] = ACTIONS(2075), - [aux_sym_session_type_token1] = ACTIONS(2075), - [aux_sym_set_env_token1] = ACTIONS(2075), - [aux_sym_stdin_null_token1] = ACTIONS(2075), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2075), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2075), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2075), - [aux_sym_syslog_facility_token1] = ACTIONS(2075), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2075), - [aux_sym_keep_alive_token1] = ACTIONS(2075), - [aux_sym_tunnel_token1] = ACTIONS(2077), - [aux_sym_tunnel_device_token1] = ACTIONS(2075), - [aux_sym_update_host_keys_token1] = ACTIONS(2075), - [aux_sym_use_keychain_token1] = ACTIONS(2075), - [aux_sym_use_roaming_token1] = ACTIONS(2075), - [aux_sym_user_token1] = ACTIONS(2077), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2075), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2075), - [aux_sym_visual_host_key_token1] = ACTIONS(2075), - [aux_sym_xauth_location_token1] = ACTIONS(2075), + [ts_builtin_sym_end] = ACTIONS(2082), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2084), + [anon_sym_DQUOTE] = ACTIONS(2082), + [aux_sym_match_token1] = ACTIONS(2082), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2082), + [aux_sym_address_family_token1] = ACTIONS(2082), + [aux_sym_batch_mode_token1] = ACTIONS(2082), + [aux_sym_bind_address_token1] = ACTIONS(2082), + [aux_sym_bind_interface_token1] = ACTIONS(2082), + [aux_sym_canonical_domains_token1] = ACTIONS(2082), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2082), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2082), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2082), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2082), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2082), + [aux_sym_certificate_file_token1] = ACTIONS(2082), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2082), + [aux_sym_check_host_ip_token1] = ACTIONS(2082), + [aux_sym_ciphers_token1] = ACTIONS(2082), + [aux_sym_cipher_token1] = ACTIONS(2084), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2082), + [aux_sym_compression_token1] = ACTIONS(2082), + [aux_sym_connection_attempts_token1] = ACTIONS(2082), + [aux_sym_connect_timeout_token1] = ACTIONS(2082), + [aux_sym_control_master_token1] = ACTIONS(2082), + [aux_sym_control_path_token1] = ACTIONS(2082), + [aux_sym_control_persist_token1] = ACTIONS(2082), + [aux_sym_dynamic_forward_token1] = ACTIONS(2082), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2082), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2082), + [aux_sym_escape_char_token1] = ACTIONS(2082), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2082), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2082), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2082), + [aux_sym_forward_agent_token1] = ACTIONS(2082), + [aux_sym_forward_x11_token1] = ACTIONS(2084), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2082), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2082), + [aux_sym_gateway_ports_token1] = ACTIONS(2082), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2082), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2082), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2082), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2082), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2082), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2082), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2082), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2082), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2082), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2082), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2082), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2082), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2082), + [aux_sym_host_key_alias_token1] = ACTIONS(2082), + [aux_sym_hostname_token1] = ACTIONS(2082), + [aux_sym_identities_only_token1] = ACTIONS(2082), + [aux_sym_identity_agent_token1] = ACTIONS(2082), + [aux_sym_identity_file_token1] = ACTIONS(2082), + [aux_sym_ignore_unknown_token1] = ACTIONS(2082), + [aux_sym_include_token1] = ACTIONS(2082), + [aux_sym_ip_qos_token1] = ACTIONS(2082), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2082), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2082), + [aux_sym_kex_algorithms_token1] = ACTIONS(2082), + [aux_sym_known_hosts_command_token1] = ACTIONS(2082), + [aux_sym_local_command_token1] = ACTIONS(2082), + [aux_sym_local_forward_token1] = ACTIONS(2082), + [aux_sym_log_level_token1] = ACTIONS(2082), + [aux_sym_log_verbose_token1] = ACTIONS(2082), + [aux_sym_macs_token1] = ACTIONS(2082), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2082), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2082), + [aux_sym_password_authentication_token1] = ACTIONS(2082), + [aux_sym_permit_local_command_token1] = ACTIONS(2082), + [aux_sym_permit_remote_open_token1] = ACTIONS(2082), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2082), + [aux_sym_port_token1] = ACTIONS(2082), + [aux_sym_preferred_authentications_token1] = ACTIONS(2082), + [aux_sym_protocol_token1] = ACTIONS(2082), + [aux_sym_proxy_command_token1] = ACTIONS(2082), + [aux_sym_proxy_jump_token1] = ACTIONS(2082), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2082), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2082), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2082), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2082), + [aux_sym_rekey_limit_token1] = ACTIONS(2082), + [aux_sym_remote_command_token1] = ACTIONS(2082), + [aux_sym_remote_forward_token1] = ACTIONS(2082), + [aux_sym_request_tty_token1] = ACTIONS(2082), + [aux_sym_required_rsa_size_token1] = ACTIONS(2082), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2082), + [aux_sym_security_key_provider_token1] = ACTIONS(2082), + [aux_sym_send_env_token1] = ACTIONS(2082), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2082), + [aux_sym_server_alive_interval_token1] = ACTIONS(2082), + [aux_sym_session_type_token1] = ACTIONS(2082), + [aux_sym_set_env_token1] = ACTIONS(2082), + [aux_sym_stdin_null_token1] = ACTIONS(2082), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2082), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2082), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2082), + [aux_sym_syslog_facility_token1] = ACTIONS(2082), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2082), + [aux_sym_keep_alive_token1] = ACTIONS(2082), + [aux_sym_tunnel_token1] = ACTIONS(2084), + [aux_sym_tunnel_device_token1] = ACTIONS(2082), + [aux_sym_update_host_keys_token1] = ACTIONS(2082), + [aux_sym_use_keychain_token1] = ACTIONS(2082), + [aux_sym_use_roaming_token1] = ACTIONS(2082), + [aux_sym_user_token1] = ACTIONS(2084), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2082), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2082), + [aux_sym_visual_host_key_token1] = ACTIONS(2082), + [aux_sym_xauth_location_token1] = ACTIONS(2082), }, [264] = { - [ts_builtin_sym_end] = ACTIONS(2079), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(2083), - [aux_sym_match_token1] = ACTIONS(2079), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2079), - [aux_sym_address_family_token1] = ACTIONS(2079), - [aux_sym_batch_mode_token1] = ACTIONS(2079), - [aux_sym_bind_address_token1] = ACTIONS(2079), - [aux_sym_bind_interface_token1] = ACTIONS(2079), - [aux_sym_canonical_domains_token1] = ACTIONS(2079), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2079), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2079), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2079), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2079), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2079), - [aux_sym_certificate_file_token1] = ACTIONS(2079), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2079), - [aux_sym_check_host_ip_token1] = ACTIONS(2079), - [aux_sym_ciphers_token1] = ACTIONS(2079), - [aux_sym_cipher_token1] = ACTIONS(2081), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2079), - [aux_sym_compression_token1] = ACTIONS(2079), - [aux_sym_connection_attempts_token1] = ACTIONS(2079), - [aux_sym_connect_timeout_token1] = ACTIONS(2079), - [aux_sym_control_master_token1] = ACTIONS(2079), - [aux_sym_control_path_token1] = ACTIONS(2079), - [aux_sym_control_persist_token1] = ACTIONS(2079), - [aux_sym_dynamic_forward_token1] = ACTIONS(2079), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2079), - [aux_sym_escape_char_token1] = ACTIONS(2079), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2079), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2079), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2079), - [aux_sym_forward_agent_token1] = ACTIONS(2079), - [aux_sym_forward_x11_token1] = ACTIONS(2081), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2079), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2079), - [aux_sym_gateway_ports_token1] = ACTIONS(2079), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2079), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2079), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2079), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2079), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2079), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2079), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2079), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2079), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2079), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2079), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2079), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2079), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2079), - [aux_sym_host_key_alias_token1] = ACTIONS(2079), - [aux_sym_hostname_token1] = ACTIONS(2079), - [aux_sym_identities_only_token1] = ACTIONS(2079), - [aux_sym_identity_agent_token1] = ACTIONS(2079), - [aux_sym_identity_file_token1] = ACTIONS(2079), - [aux_sym_ignore_unknown_token1] = ACTIONS(2079), - [aux_sym_include_token1] = ACTIONS(2079), - [aux_sym_ip_qos_token1] = ACTIONS(2079), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2079), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2079), - [aux_sym_kex_algorithms_token1] = ACTIONS(2079), - [aux_sym_known_hosts_command_token1] = ACTIONS(2079), - [aux_sym_local_command_token1] = ACTIONS(2079), - [aux_sym_local_forward_token1] = ACTIONS(2079), - [aux_sym_log_level_token1] = ACTIONS(2079), - [aux_sym_log_verbose_token1] = ACTIONS(2079), - [aux_sym_macs_token1] = ACTIONS(2079), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2079), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2079), - [aux_sym_password_authentication_token1] = ACTIONS(2079), - [aux_sym_permit_local_command_token1] = ACTIONS(2079), - [aux_sym_permit_remote_open_token1] = ACTIONS(2079), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2079), - [aux_sym_port_token1] = ACTIONS(2079), - [aux_sym_preferred_authentications_token1] = ACTIONS(2079), - [aux_sym_protocol_token1] = ACTIONS(2079), - [aux_sym_proxy_command_token1] = ACTIONS(2079), - [aux_sym_proxy_jump_token1] = ACTIONS(2079), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2079), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2079), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2079), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2079), - [aux_sym_rekey_limit_token1] = ACTIONS(2079), - [aux_sym_remote_command_token1] = ACTIONS(2079), - [aux_sym_remote_forward_token1] = ACTIONS(2079), - [aux_sym_request_tty_token1] = ACTIONS(2079), - [aux_sym_required_rsa_size_token1] = ACTIONS(2079), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2079), - [aux_sym_security_key_provider_token1] = ACTIONS(2079), - [aux_sym_send_env_token1] = ACTIONS(2079), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2079), - [aux_sym_server_alive_interval_token1] = ACTIONS(2079), - [aux_sym_session_type_token1] = ACTIONS(2079), - [aux_sym_set_env_token1] = ACTIONS(2079), - [aux_sym_stdin_null_token1] = ACTIONS(2079), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2079), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2079), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2079), - [aux_sym_syslog_facility_token1] = ACTIONS(2079), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2079), - [aux_sym_keep_alive_token1] = ACTIONS(2079), - [aux_sym_tunnel_token1] = ACTIONS(2081), - [aux_sym_tunnel_device_token1] = ACTIONS(2079), - [aux_sym_update_host_keys_token1] = ACTIONS(2079), - [aux_sym_use_keychain_token1] = ACTIONS(2079), - [aux_sym_use_roaming_token1] = ACTIONS(2079), - [aux_sym_user_token1] = ACTIONS(2081), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2079), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2079), - [aux_sym_visual_host_key_token1] = ACTIONS(2079), - [aux_sym_xauth_location_token1] = ACTIONS(2079), + [ts_builtin_sym_end] = ACTIONS(2086), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2090), + [aux_sym_match_token1] = ACTIONS(2086), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2086), + [aux_sym_address_family_token1] = ACTIONS(2086), + [aux_sym_batch_mode_token1] = ACTIONS(2086), + [aux_sym_bind_address_token1] = ACTIONS(2086), + [aux_sym_bind_interface_token1] = ACTIONS(2086), + [aux_sym_canonical_domains_token1] = ACTIONS(2086), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2086), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2086), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2086), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2086), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2086), + [aux_sym_certificate_file_token1] = ACTIONS(2086), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2086), + [aux_sym_check_host_ip_token1] = ACTIONS(2086), + [aux_sym_ciphers_token1] = ACTIONS(2086), + [aux_sym_cipher_token1] = ACTIONS(2088), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2086), + [aux_sym_compression_token1] = ACTIONS(2086), + [aux_sym_connection_attempts_token1] = ACTIONS(2086), + [aux_sym_connect_timeout_token1] = ACTIONS(2086), + [aux_sym_control_master_token1] = ACTIONS(2086), + [aux_sym_control_path_token1] = ACTIONS(2086), + [aux_sym_control_persist_token1] = ACTIONS(2086), + [aux_sym_dynamic_forward_token1] = ACTIONS(2086), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2086), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2086), + [aux_sym_escape_char_token1] = ACTIONS(2086), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2086), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2086), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2086), + [aux_sym_forward_agent_token1] = ACTIONS(2086), + [aux_sym_forward_x11_token1] = ACTIONS(2088), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2086), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2086), + [aux_sym_gateway_ports_token1] = ACTIONS(2086), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2086), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2086), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2086), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2086), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2086), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2086), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2086), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2086), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2086), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2086), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2086), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2086), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2086), + [aux_sym_host_key_alias_token1] = ACTIONS(2086), + [aux_sym_hostname_token1] = ACTIONS(2086), + [aux_sym_identities_only_token1] = ACTIONS(2086), + [aux_sym_identity_agent_token1] = ACTIONS(2086), + [aux_sym_identity_file_token1] = ACTIONS(2086), + [aux_sym_ignore_unknown_token1] = ACTIONS(2086), + [aux_sym_include_token1] = ACTIONS(2086), + [aux_sym_ip_qos_token1] = ACTIONS(2086), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2086), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2086), + [aux_sym_kex_algorithms_token1] = ACTIONS(2086), + [aux_sym_known_hosts_command_token1] = ACTIONS(2086), + [aux_sym_local_command_token1] = ACTIONS(2086), + [aux_sym_local_forward_token1] = ACTIONS(2086), + [aux_sym_log_level_token1] = ACTIONS(2086), + [aux_sym_log_verbose_token1] = ACTIONS(2086), + [aux_sym_macs_token1] = ACTIONS(2086), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2086), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2086), + [aux_sym_password_authentication_token1] = ACTIONS(2086), + [aux_sym_permit_local_command_token1] = ACTIONS(2086), + [aux_sym_permit_remote_open_token1] = ACTIONS(2086), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2086), + [aux_sym_port_token1] = ACTIONS(2086), + [aux_sym_preferred_authentications_token1] = ACTIONS(2086), + [aux_sym_protocol_token1] = ACTIONS(2086), + [aux_sym_proxy_command_token1] = ACTIONS(2086), + [aux_sym_proxy_jump_token1] = ACTIONS(2086), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2086), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2086), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2086), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2086), + [aux_sym_rekey_limit_token1] = ACTIONS(2086), + [aux_sym_remote_command_token1] = ACTIONS(2086), + [aux_sym_remote_forward_token1] = ACTIONS(2086), + [aux_sym_request_tty_token1] = ACTIONS(2086), + [aux_sym_required_rsa_size_token1] = ACTIONS(2086), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2086), + [aux_sym_security_key_provider_token1] = ACTIONS(2086), + [aux_sym_send_env_token1] = ACTIONS(2086), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2086), + [aux_sym_server_alive_interval_token1] = ACTIONS(2086), + [aux_sym_session_type_token1] = ACTIONS(2086), + [aux_sym_set_env_token1] = ACTIONS(2086), + [aux_sym_stdin_null_token1] = ACTIONS(2086), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2086), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2086), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2086), + [aux_sym_syslog_facility_token1] = ACTIONS(2086), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2086), + [aux_sym_keep_alive_token1] = ACTIONS(2086), + [aux_sym_tunnel_token1] = ACTIONS(2088), + [aux_sym_tunnel_device_token1] = ACTIONS(2086), + [aux_sym_update_host_keys_token1] = ACTIONS(2086), + [aux_sym_use_keychain_token1] = ACTIONS(2086), + [aux_sym_use_roaming_token1] = ACTIONS(2086), + [aux_sym_user_token1] = ACTIONS(2088), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2086), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2086), + [aux_sym_visual_host_key_token1] = ACTIONS(2086), + [aux_sym_xauth_location_token1] = ACTIONS(2086), }, [265] = { - [ts_builtin_sym_end] = ACTIONS(2085), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2087), - [anon_sym_DQUOTE] = ACTIONS(2085), - [aux_sym_match_token1] = ACTIONS(2085), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2085), - [aux_sym_address_family_token1] = ACTIONS(2085), - [aux_sym_batch_mode_token1] = ACTIONS(2085), - [aux_sym_bind_address_token1] = ACTIONS(2085), - [aux_sym_bind_interface_token1] = ACTIONS(2085), - [aux_sym_canonical_domains_token1] = ACTIONS(2085), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2085), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2085), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2085), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2085), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2085), - [aux_sym_certificate_file_token1] = ACTIONS(2085), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2085), - [aux_sym_check_host_ip_token1] = ACTIONS(2085), - [aux_sym_ciphers_token1] = ACTIONS(2085), - [aux_sym_cipher_token1] = ACTIONS(2087), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2085), - [aux_sym_compression_token1] = ACTIONS(2085), - [aux_sym_connection_attempts_token1] = ACTIONS(2085), - [aux_sym_connect_timeout_token1] = ACTIONS(2085), - [aux_sym_control_master_token1] = ACTIONS(2085), - [aux_sym_control_path_token1] = ACTIONS(2085), - [aux_sym_control_persist_token1] = ACTIONS(2085), - [aux_sym_dynamic_forward_token1] = ACTIONS(2085), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2085), - [aux_sym_escape_char_token1] = ACTIONS(2085), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2085), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2085), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2085), - [aux_sym_forward_agent_token1] = ACTIONS(2085), - [aux_sym_forward_x11_token1] = ACTIONS(2087), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2085), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2085), - [aux_sym_gateway_ports_token1] = ACTIONS(2085), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2085), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2085), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2085), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2085), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2085), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2085), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2085), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2085), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2085), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2085), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2085), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2085), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2085), - [aux_sym_host_key_alias_token1] = ACTIONS(2085), - [aux_sym_hostname_token1] = ACTIONS(2085), - [aux_sym_identities_only_token1] = ACTIONS(2085), - [aux_sym_identity_agent_token1] = ACTIONS(2085), - [aux_sym_identity_file_token1] = ACTIONS(2085), - [aux_sym_ignore_unknown_token1] = ACTIONS(2085), - [aux_sym_include_token1] = ACTIONS(2085), - [aux_sym_ip_qos_token1] = ACTIONS(2085), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2085), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2085), - [aux_sym_kex_algorithms_token1] = ACTIONS(2085), - [aux_sym_known_hosts_command_token1] = ACTIONS(2085), - [aux_sym_local_command_token1] = ACTIONS(2085), - [aux_sym_local_forward_token1] = ACTIONS(2085), - [aux_sym_log_level_token1] = ACTIONS(2085), - [aux_sym_log_verbose_token1] = ACTIONS(2085), - [aux_sym_macs_token1] = ACTIONS(2085), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2085), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2085), - [aux_sym_password_authentication_token1] = ACTIONS(2085), - [aux_sym_permit_local_command_token1] = ACTIONS(2085), - [aux_sym_permit_remote_open_token1] = ACTIONS(2085), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2085), - [aux_sym_port_token1] = ACTIONS(2085), - [aux_sym_preferred_authentications_token1] = ACTIONS(2085), - [aux_sym_protocol_token1] = ACTIONS(2085), - [aux_sym_proxy_command_token1] = ACTIONS(2085), - [aux_sym_proxy_jump_token1] = ACTIONS(2085), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2085), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2085), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2085), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2085), - [aux_sym_rekey_limit_token1] = ACTIONS(2085), - [aux_sym_remote_command_token1] = ACTIONS(2085), - [aux_sym_remote_forward_token1] = ACTIONS(2085), - [aux_sym_request_tty_token1] = ACTIONS(2085), - [aux_sym_required_rsa_size_token1] = ACTIONS(2085), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2085), - [aux_sym_security_key_provider_token1] = ACTIONS(2085), - [aux_sym_send_env_token1] = ACTIONS(2085), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2085), - [aux_sym_server_alive_interval_token1] = ACTIONS(2085), - [aux_sym_session_type_token1] = ACTIONS(2085), - [aux_sym_set_env_token1] = ACTIONS(2085), - [aux_sym_stdin_null_token1] = ACTIONS(2085), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2085), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2085), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2085), - [aux_sym_syslog_facility_token1] = ACTIONS(2085), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2085), - [aux_sym_keep_alive_token1] = ACTIONS(2085), - [aux_sym_tunnel_token1] = ACTIONS(2087), - [aux_sym_tunnel_device_token1] = ACTIONS(2085), - [aux_sym_update_host_keys_token1] = ACTIONS(2085), - [aux_sym_use_keychain_token1] = ACTIONS(2085), - [aux_sym_use_roaming_token1] = ACTIONS(2085), - [aux_sym_user_token1] = ACTIONS(2087), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2085), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2085), - [aux_sym_visual_host_key_token1] = ACTIONS(2085), - [aux_sym_xauth_location_token1] = ACTIONS(2085), + [ts_builtin_sym_end] = ACTIONS(2092), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2094), + [anon_sym_DQUOTE] = ACTIONS(2092), + [aux_sym_match_token1] = ACTIONS(2092), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2092), + [aux_sym_address_family_token1] = ACTIONS(2092), + [aux_sym_batch_mode_token1] = ACTIONS(2092), + [aux_sym_bind_address_token1] = ACTIONS(2092), + [aux_sym_bind_interface_token1] = ACTIONS(2092), + [aux_sym_canonical_domains_token1] = ACTIONS(2092), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2092), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2092), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2092), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2092), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2092), + [aux_sym_certificate_file_token1] = ACTIONS(2092), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2092), + [aux_sym_check_host_ip_token1] = ACTIONS(2092), + [aux_sym_ciphers_token1] = ACTIONS(2092), + [aux_sym_cipher_token1] = ACTIONS(2094), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2092), + [aux_sym_compression_token1] = ACTIONS(2092), + [aux_sym_connection_attempts_token1] = ACTIONS(2092), + [aux_sym_connect_timeout_token1] = ACTIONS(2092), + [aux_sym_control_master_token1] = ACTIONS(2092), + [aux_sym_control_path_token1] = ACTIONS(2092), + [aux_sym_control_persist_token1] = ACTIONS(2092), + [aux_sym_dynamic_forward_token1] = ACTIONS(2092), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2092), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2092), + [aux_sym_escape_char_token1] = ACTIONS(2092), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2092), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2092), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2092), + [aux_sym_forward_agent_token1] = ACTIONS(2092), + [aux_sym_forward_x11_token1] = ACTIONS(2094), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2092), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2092), + [aux_sym_gateway_ports_token1] = ACTIONS(2092), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2092), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2092), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2092), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2092), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2092), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2092), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2092), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2092), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2092), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2092), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2092), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2092), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2092), + [aux_sym_host_key_alias_token1] = ACTIONS(2092), + [aux_sym_hostname_token1] = ACTIONS(2092), + [aux_sym_identities_only_token1] = ACTIONS(2092), + [aux_sym_identity_agent_token1] = ACTIONS(2092), + [aux_sym_identity_file_token1] = ACTIONS(2092), + [aux_sym_ignore_unknown_token1] = ACTIONS(2092), + [aux_sym_include_token1] = ACTIONS(2092), + [aux_sym_ip_qos_token1] = ACTIONS(2092), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2092), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2092), + [aux_sym_kex_algorithms_token1] = ACTIONS(2092), + [aux_sym_known_hosts_command_token1] = ACTIONS(2092), + [aux_sym_local_command_token1] = ACTIONS(2092), + [aux_sym_local_forward_token1] = ACTIONS(2092), + [aux_sym_log_level_token1] = ACTIONS(2092), + [aux_sym_log_verbose_token1] = ACTIONS(2092), + [aux_sym_macs_token1] = ACTIONS(2092), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2092), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2092), + [aux_sym_password_authentication_token1] = ACTIONS(2092), + [aux_sym_permit_local_command_token1] = ACTIONS(2092), + [aux_sym_permit_remote_open_token1] = ACTIONS(2092), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2092), + [aux_sym_port_token1] = ACTIONS(2092), + [aux_sym_preferred_authentications_token1] = ACTIONS(2092), + [aux_sym_protocol_token1] = ACTIONS(2092), + [aux_sym_proxy_command_token1] = ACTIONS(2092), + [aux_sym_proxy_jump_token1] = ACTIONS(2092), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2092), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2092), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2092), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2092), + [aux_sym_rekey_limit_token1] = ACTIONS(2092), + [aux_sym_remote_command_token1] = ACTIONS(2092), + [aux_sym_remote_forward_token1] = ACTIONS(2092), + [aux_sym_request_tty_token1] = ACTIONS(2092), + [aux_sym_required_rsa_size_token1] = ACTIONS(2092), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2092), + [aux_sym_security_key_provider_token1] = ACTIONS(2092), + [aux_sym_send_env_token1] = ACTIONS(2092), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2092), + [aux_sym_server_alive_interval_token1] = ACTIONS(2092), + [aux_sym_session_type_token1] = ACTIONS(2092), + [aux_sym_set_env_token1] = ACTIONS(2092), + [aux_sym_stdin_null_token1] = ACTIONS(2092), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2092), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2092), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2092), + [aux_sym_syslog_facility_token1] = ACTIONS(2092), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2092), + [aux_sym_keep_alive_token1] = ACTIONS(2092), + [aux_sym_tunnel_token1] = ACTIONS(2094), + [aux_sym_tunnel_device_token1] = ACTIONS(2092), + [aux_sym_update_host_keys_token1] = ACTIONS(2092), + [aux_sym_use_keychain_token1] = ACTIONS(2092), + [aux_sym_use_roaming_token1] = ACTIONS(2092), + [aux_sym_user_token1] = ACTIONS(2094), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2092), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2092), + [aux_sym_visual_host_key_token1] = ACTIONS(2092), + [aux_sym_xauth_location_token1] = ACTIONS(2092), }, [266] = { - [ts_builtin_sym_end] = ACTIONS(2089), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2091), - [anon_sym_DQUOTE] = ACTIONS(2093), - [aux_sym_match_token1] = ACTIONS(2089), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2089), - [aux_sym_address_family_token1] = ACTIONS(2089), - [aux_sym_batch_mode_token1] = ACTIONS(2089), - [aux_sym_bind_address_token1] = ACTIONS(2089), - [aux_sym_bind_interface_token1] = ACTIONS(2089), - [aux_sym_canonical_domains_token1] = ACTIONS(2089), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2089), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2089), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2089), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2089), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2089), - [aux_sym_certificate_file_token1] = ACTIONS(2089), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2089), - [aux_sym_check_host_ip_token1] = ACTIONS(2089), - [aux_sym_ciphers_token1] = ACTIONS(2089), - [aux_sym_cipher_token1] = ACTIONS(2091), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2089), - [aux_sym_compression_token1] = ACTIONS(2089), - [aux_sym_connection_attempts_token1] = ACTIONS(2089), - [aux_sym_connect_timeout_token1] = ACTIONS(2089), - [aux_sym_control_master_token1] = ACTIONS(2089), - [aux_sym_control_path_token1] = ACTIONS(2089), - [aux_sym_control_persist_token1] = ACTIONS(2089), - [aux_sym_dynamic_forward_token1] = ACTIONS(2089), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2089), - [aux_sym_escape_char_token1] = ACTIONS(2089), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2089), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2089), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2089), - [aux_sym_forward_agent_token1] = ACTIONS(2089), - [aux_sym_forward_x11_token1] = ACTIONS(2091), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2089), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2089), - [aux_sym_gateway_ports_token1] = ACTIONS(2089), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2089), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2089), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2089), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2089), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2089), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2089), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2089), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2089), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2089), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2089), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2089), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2089), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2089), - [aux_sym_host_key_alias_token1] = ACTIONS(2089), - [aux_sym_hostname_token1] = ACTIONS(2089), - [aux_sym_identities_only_token1] = ACTIONS(2089), - [aux_sym_identity_agent_token1] = ACTIONS(2089), - [aux_sym_identity_file_token1] = ACTIONS(2089), - [aux_sym_ignore_unknown_token1] = ACTIONS(2089), - [aux_sym_include_token1] = ACTIONS(2089), - [aux_sym_ip_qos_token1] = ACTIONS(2089), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2089), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2089), - [aux_sym_kex_algorithms_token1] = ACTIONS(2089), - [aux_sym_known_hosts_command_token1] = ACTIONS(2089), - [aux_sym_local_command_token1] = ACTIONS(2089), - [aux_sym_local_forward_token1] = ACTIONS(2089), - [aux_sym_log_level_token1] = ACTIONS(2089), - [aux_sym_log_verbose_token1] = ACTIONS(2089), - [aux_sym_macs_token1] = ACTIONS(2089), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2089), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2089), - [aux_sym_password_authentication_token1] = ACTIONS(2089), - [aux_sym_permit_local_command_token1] = ACTIONS(2089), - [aux_sym_permit_remote_open_token1] = ACTIONS(2089), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2089), - [aux_sym_port_token1] = ACTIONS(2089), - [aux_sym_preferred_authentications_token1] = ACTIONS(2089), - [aux_sym_protocol_token1] = ACTIONS(2089), - [aux_sym_proxy_command_token1] = ACTIONS(2089), - [aux_sym_proxy_jump_token1] = ACTIONS(2089), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2089), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2089), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2089), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2089), - [aux_sym_rekey_limit_token1] = ACTIONS(2089), - [aux_sym_remote_command_token1] = ACTIONS(2089), - [aux_sym_remote_forward_token1] = ACTIONS(2089), - [aux_sym_request_tty_token1] = ACTIONS(2089), - [aux_sym_required_rsa_size_token1] = ACTIONS(2089), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2089), - [aux_sym_security_key_provider_token1] = ACTIONS(2089), - [aux_sym_send_env_token1] = ACTIONS(2089), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2089), - [aux_sym_server_alive_interval_token1] = ACTIONS(2089), - [aux_sym_session_type_token1] = ACTIONS(2089), - [aux_sym_set_env_token1] = ACTIONS(2089), - [aux_sym_stdin_null_token1] = ACTIONS(2089), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2089), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2089), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2089), - [aux_sym_syslog_facility_token1] = ACTIONS(2089), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2089), - [aux_sym_keep_alive_token1] = ACTIONS(2089), - [aux_sym_tunnel_token1] = ACTIONS(2091), - [aux_sym_tunnel_device_token1] = ACTIONS(2089), - [aux_sym_update_host_keys_token1] = ACTIONS(2089), - [aux_sym_use_keychain_token1] = ACTIONS(2089), - [aux_sym_use_roaming_token1] = ACTIONS(2089), - [aux_sym_user_token1] = ACTIONS(2091), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2089), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2089), - [aux_sym_visual_host_key_token1] = ACTIONS(2089), - [aux_sym_xauth_location_token1] = ACTIONS(2089), + [ts_builtin_sym_end] = ACTIONS(2096), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2100), + [aux_sym_match_token1] = ACTIONS(2096), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2096), + [aux_sym_address_family_token1] = ACTIONS(2096), + [aux_sym_batch_mode_token1] = ACTIONS(2096), + [aux_sym_bind_address_token1] = ACTIONS(2096), + [aux_sym_bind_interface_token1] = ACTIONS(2096), + [aux_sym_canonical_domains_token1] = ACTIONS(2096), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2096), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2096), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2096), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2096), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2096), + [aux_sym_certificate_file_token1] = ACTIONS(2096), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2096), + [aux_sym_check_host_ip_token1] = ACTIONS(2096), + [aux_sym_ciphers_token1] = ACTIONS(2096), + [aux_sym_cipher_token1] = ACTIONS(2098), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2096), + [aux_sym_compression_token1] = ACTIONS(2096), + [aux_sym_connection_attempts_token1] = ACTIONS(2096), + [aux_sym_connect_timeout_token1] = ACTIONS(2096), + [aux_sym_control_master_token1] = ACTIONS(2096), + [aux_sym_control_path_token1] = ACTIONS(2096), + [aux_sym_control_persist_token1] = ACTIONS(2096), + [aux_sym_dynamic_forward_token1] = ACTIONS(2096), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2096), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2096), + [aux_sym_escape_char_token1] = ACTIONS(2096), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2096), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2096), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2096), + [aux_sym_forward_agent_token1] = ACTIONS(2096), + [aux_sym_forward_x11_token1] = ACTIONS(2098), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2096), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2096), + [aux_sym_gateway_ports_token1] = ACTIONS(2096), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2096), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2096), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2096), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2096), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2096), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2096), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2096), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2096), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2096), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2096), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2096), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2096), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2096), + [aux_sym_host_key_alias_token1] = ACTIONS(2096), + [aux_sym_hostname_token1] = ACTIONS(2096), + [aux_sym_identities_only_token1] = ACTIONS(2096), + [aux_sym_identity_agent_token1] = ACTIONS(2096), + [aux_sym_identity_file_token1] = ACTIONS(2096), + [aux_sym_ignore_unknown_token1] = ACTIONS(2096), + [aux_sym_include_token1] = ACTIONS(2096), + [aux_sym_ip_qos_token1] = ACTIONS(2096), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2096), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2096), + [aux_sym_kex_algorithms_token1] = ACTIONS(2096), + [aux_sym_known_hosts_command_token1] = ACTIONS(2096), + [aux_sym_local_command_token1] = ACTIONS(2096), + [aux_sym_local_forward_token1] = ACTIONS(2096), + [aux_sym_log_level_token1] = ACTIONS(2096), + [aux_sym_log_verbose_token1] = ACTIONS(2096), + [aux_sym_macs_token1] = ACTIONS(2096), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2096), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2096), + [aux_sym_password_authentication_token1] = ACTIONS(2096), + [aux_sym_permit_local_command_token1] = ACTIONS(2096), + [aux_sym_permit_remote_open_token1] = ACTIONS(2096), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2096), + [aux_sym_port_token1] = ACTIONS(2096), + [aux_sym_preferred_authentications_token1] = ACTIONS(2096), + [aux_sym_protocol_token1] = ACTIONS(2096), + [aux_sym_proxy_command_token1] = ACTIONS(2096), + [aux_sym_proxy_jump_token1] = ACTIONS(2096), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2096), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2096), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2096), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2096), + [aux_sym_rekey_limit_token1] = ACTIONS(2096), + [aux_sym_remote_command_token1] = ACTIONS(2096), + [aux_sym_remote_forward_token1] = ACTIONS(2096), + [aux_sym_request_tty_token1] = ACTIONS(2096), + [aux_sym_required_rsa_size_token1] = ACTIONS(2096), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2096), + [aux_sym_security_key_provider_token1] = ACTIONS(2096), + [aux_sym_send_env_token1] = ACTIONS(2096), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2096), + [aux_sym_server_alive_interval_token1] = ACTIONS(2096), + [aux_sym_session_type_token1] = ACTIONS(2096), + [aux_sym_set_env_token1] = ACTIONS(2096), + [aux_sym_stdin_null_token1] = ACTIONS(2096), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2096), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2096), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2096), + [aux_sym_syslog_facility_token1] = ACTIONS(2096), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2096), + [aux_sym_keep_alive_token1] = ACTIONS(2096), + [aux_sym_tunnel_token1] = ACTIONS(2098), + [aux_sym_tunnel_device_token1] = ACTIONS(2096), + [aux_sym_update_host_keys_token1] = ACTIONS(2096), + [aux_sym_use_keychain_token1] = ACTIONS(2096), + [aux_sym_use_roaming_token1] = ACTIONS(2096), + [aux_sym_user_token1] = ACTIONS(2098), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2096), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2096), + [aux_sym_visual_host_key_token1] = ACTIONS(2096), + [aux_sym_xauth_location_token1] = ACTIONS(2096), }, [267] = { - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2095), - [aux_sym_match_token1] = ACTIONS(2095), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2095), - [aux_sym_address_family_token1] = ACTIONS(2095), - [aux_sym_batch_mode_token1] = ACTIONS(2095), - [aux_sym_bind_address_token1] = ACTIONS(2095), - [aux_sym_bind_interface_token1] = ACTIONS(2095), - [aux_sym_canonical_domains_token1] = ACTIONS(2095), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2095), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2095), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2095), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2095), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2095), - [aux_sym_certificate_file_token1] = ACTIONS(2095), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2095), - [aux_sym_check_host_ip_token1] = ACTIONS(2095), - [aux_sym_ciphers_token1] = ACTIONS(2095), - [aux_sym_cipher_token1] = ACTIONS(2097), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2095), - [aux_sym_compression_token1] = ACTIONS(2095), - [aux_sym_connection_attempts_token1] = ACTIONS(2095), - [aux_sym_connect_timeout_token1] = ACTIONS(2095), - [aux_sym_control_master_token1] = ACTIONS(2095), - [aux_sym_control_path_token1] = ACTIONS(2095), - [aux_sym_control_persist_token1] = ACTIONS(2095), - [aux_sym_dynamic_forward_token1] = ACTIONS(2095), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2095), - [aux_sym_escape_char_token1] = ACTIONS(2095), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2095), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2095), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2095), - [aux_sym_forward_agent_token1] = ACTIONS(2095), - [aux_sym_forward_x11_token1] = ACTIONS(2097), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2095), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2095), - [aux_sym_gateway_ports_token1] = ACTIONS(2095), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2095), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2095), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2095), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2095), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2095), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2095), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2095), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2095), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2095), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2095), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2095), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2095), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2095), - [aux_sym_host_key_alias_token1] = ACTIONS(2095), - [aux_sym_hostname_token1] = ACTIONS(2095), - [aux_sym_identities_only_token1] = ACTIONS(2095), - [aux_sym_identity_agent_token1] = ACTIONS(2095), - [aux_sym_identity_file_token1] = ACTIONS(2095), - [aux_sym_ignore_unknown_token1] = ACTIONS(2095), - [aux_sym_include_token1] = ACTIONS(2095), - [aux_sym_ip_qos_token1] = ACTIONS(2095), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2095), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2095), - [aux_sym_kex_algorithms_token1] = ACTIONS(2095), - [aux_sym_known_hosts_command_token1] = ACTIONS(2095), - [aux_sym_local_command_token1] = ACTIONS(2095), - [aux_sym_local_forward_token1] = ACTIONS(2095), - [aux_sym_log_level_token1] = ACTIONS(2095), - [aux_sym_log_verbose_token1] = ACTIONS(2095), - [aux_sym_macs_token1] = ACTIONS(2095), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2095), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2095), - [aux_sym_password_authentication_token1] = ACTIONS(2095), - [aux_sym_permit_local_command_token1] = ACTIONS(2095), - [aux_sym_permit_remote_open_token1] = ACTIONS(2095), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2095), - [aux_sym_port_token1] = ACTIONS(2095), - [aux_sym_preferred_authentications_token1] = ACTIONS(2095), - [aux_sym_protocol_token1] = ACTIONS(2095), - [aux_sym_proxy_command_token1] = ACTIONS(2095), - [aux_sym_proxy_jump_token1] = ACTIONS(2095), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2095), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2095), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2095), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2095), - [aux_sym_rekey_limit_token1] = ACTIONS(2095), - [aux_sym_remote_command_token1] = ACTIONS(2095), - [aux_sym_remote_forward_token1] = ACTIONS(2095), - [aux_sym_request_tty_token1] = ACTIONS(2095), - [aux_sym_required_rsa_size_token1] = ACTIONS(2095), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2095), - [aux_sym_security_key_provider_token1] = ACTIONS(2095), - [aux_sym_send_env_token1] = ACTIONS(2095), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2095), - [aux_sym_server_alive_interval_token1] = ACTIONS(2095), - [aux_sym_session_type_token1] = ACTIONS(2095), - [aux_sym_set_env_token1] = ACTIONS(2095), - [aux_sym_stdin_null_token1] = ACTIONS(2095), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2095), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2095), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2095), - [aux_sym_syslog_facility_token1] = ACTIONS(2095), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2095), - [aux_sym_keep_alive_token1] = ACTIONS(2095), - [aux_sym_tunnel_token1] = ACTIONS(2097), - [aux_sym_tunnel_device_token1] = ACTIONS(2095), - [aux_sym_update_host_keys_token1] = ACTIONS(2095), - [aux_sym_use_keychain_token1] = ACTIONS(2095), - [aux_sym_use_roaming_token1] = ACTIONS(2095), - [aux_sym_user_token1] = ACTIONS(2097), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2095), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2095), - [aux_sym_visual_host_key_token1] = ACTIONS(2095), - [aux_sym_xauth_location_token1] = ACTIONS(2095), + [ts_builtin_sym_end] = ACTIONS(2102), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2104), + [anon_sym_DQUOTE] = ACTIONS(2102), + [aux_sym_match_token1] = ACTIONS(2102), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2102), + [aux_sym_address_family_token1] = ACTIONS(2102), + [aux_sym_batch_mode_token1] = ACTIONS(2102), + [aux_sym_bind_address_token1] = ACTIONS(2102), + [aux_sym_bind_interface_token1] = ACTIONS(2102), + [aux_sym_canonical_domains_token1] = ACTIONS(2102), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2102), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2102), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2102), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2102), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2102), + [aux_sym_certificate_file_token1] = ACTIONS(2102), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2102), + [aux_sym_check_host_ip_token1] = ACTIONS(2102), + [aux_sym_ciphers_token1] = ACTIONS(2102), + [aux_sym_cipher_token1] = ACTIONS(2104), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2102), + [aux_sym_compression_token1] = ACTIONS(2102), + [aux_sym_connection_attempts_token1] = ACTIONS(2102), + [aux_sym_connect_timeout_token1] = ACTIONS(2102), + [aux_sym_control_master_token1] = ACTIONS(2102), + [aux_sym_control_path_token1] = ACTIONS(2102), + [aux_sym_control_persist_token1] = ACTIONS(2102), + [aux_sym_dynamic_forward_token1] = ACTIONS(2102), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2102), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2102), + [aux_sym_escape_char_token1] = ACTIONS(2102), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2102), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2102), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2102), + [aux_sym_forward_agent_token1] = ACTIONS(2102), + [aux_sym_forward_x11_token1] = ACTIONS(2104), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2102), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2102), + [aux_sym_gateway_ports_token1] = ACTIONS(2102), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2102), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2102), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2102), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2102), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2102), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2102), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2102), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2102), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2102), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2102), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2102), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2102), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2102), + [aux_sym_host_key_alias_token1] = ACTIONS(2102), + [aux_sym_hostname_token1] = ACTIONS(2102), + [aux_sym_identities_only_token1] = ACTIONS(2102), + [aux_sym_identity_agent_token1] = ACTIONS(2102), + [aux_sym_identity_file_token1] = ACTIONS(2102), + [aux_sym_ignore_unknown_token1] = ACTIONS(2102), + [aux_sym_include_token1] = ACTIONS(2102), + [aux_sym_ip_qos_token1] = ACTIONS(2102), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2102), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2102), + [aux_sym_kex_algorithms_token1] = ACTIONS(2102), + [aux_sym_known_hosts_command_token1] = ACTIONS(2102), + [aux_sym_local_command_token1] = ACTIONS(2102), + [aux_sym_local_forward_token1] = ACTIONS(2102), + [aux_sym_log_level_token1] = ACTIONS(2102), + [aux_sym_log_verbose_token1] = ACTIONS(2102), + [aux_sym_macs_token1] = ACTIONS(2102), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2102), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2102), + [aux_sym_password_authentication_token1] = ACTIONS(2102), + [aux_sym_permit_local_command_token1] = ACTIONS(2102), + [aux_sym_permit_remote_open_token1] = ACTIONS(2102), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2102), + [aux_sym_port_token1] = ACTIONS(2102), + [aux_sym_preferred_authentications_token1] = ACTIONS(2102), + [aux_sym_protocol_token1] = ACTIONS(2102), + [aux_sym_proxy_command_token1] = ACTIONS(2102), + [aux_sym_proxy_jump_token1] = ACTIONS(2102), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2102), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2102), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2102), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2102), + [aux_sym_rekey_limit_token1] = ACTIONS(2102), + [aux_sym_remote_command_token1] = ACTIONS(2102), + [aux_sym_remote_forward_token1] = ACTIONS(2102), + [aux_sym_request_tty_token1] = ACTIONS(2102), + [aux_sym_required_rsa_size_token1] = ACTIONS(2102), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2102), + [aux_sym_security_key_provider_token1] = ACTIONS(2102), + [aux_sym_send_env_token1] = ACTIONS(2102), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2102), + [aux_sym_server_alive_interval_token1] = ACTIONS(2102), + [aux_sym_session_type_token1] = ACTIONS(2102), + [aux_sym_set_env_token1] = ACTIONS(2102), + [aux_sym_stdin_null_token1] = ACTIONS(2102), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2102), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2102), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2102), + [aux_sym_syslog_facility_token1] = ACTIONS(2102), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2102), + [aux_sym_keep_alive_token1] = ACTIONS(2102), + [aux_sym_tunnel_token1] = ACTIONS(2104), + [aux_sym_tunnel_device_token1] = ACTIONS(2102), + [aux_sym_update_host_keys_token1] = ACTIONS(2102), + [aux_sym_use_keychain_token1] = ACTIONS(2102), + [aux_sym_use_roaming_token1] = ACTIONS(2102), + [aux_sym_user_token1] = ACTIONS(2104), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2102), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2102), + [aux_sym_visual_host_key_token1] = ACTIONS(2102), + [aux_sym_xauth_location_token1] = ACTIONS(2102), }, [268] = { - [ts_builtin_sym_end] = ACTIONS(2099), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2101), - [anon_sym_DQUOTE] = ACTIONS(2103), - [aux_sym_match_token1] = ACTIONS(2099), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2099), - [aux_sym_address_family_token1] = ACTIONS(2099), - [aux_sym_batch_mode_token1] = ACTIONS(2099), - [aux_sym_bind_address_token1] = ACTIONS(2099), - [aux_sym_bind_interface_token1] = ACTIONS(2099), - [aux_sym_canonical_domains_token1] = ACTIONS(2099), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2099), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2099), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2099), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2099), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2099), - [aux_sym_certificate_file_token1] = ACTIONS(2099), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2099), - [aux_sym_check_host_ip_token1] = ACTIONS(2099), - [aux_sym_ciphers_token1] = ACTIONS(2099), - [aux_sym_cipher_token1] = ACTIONS(2101), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2099), - [aux_sym_compression_token1] = ACTIONS(2099), - [aux_sym_connection_attempts_token1] = ACTIONS(2099), - [aux_sym_connect_timeout_token1] = ACTIONS(2099), - [aux_sym_control_master_token1] = ACTIONS(2099), - [aux_sym_control_path_token1] = ACTIONS(2099), - [aux_sym_control_persist_token1] = ACTIONS(2099), - [aux_sym_dynamic_forward_token1] = ACTIONS(2099), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2099), - [aux_sym_escape_char_token1] = ACTIONS(2099), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2099), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2099), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2099), - [aux_sym_forward_agent_token1] = ACTIONS(2099), - [aux_sym_forward_x11_token1] = ACTIONS(2101), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2099), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2099), - [aux_sym_gateway_ports_token1] = ACTIONS(2099), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2099), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2099), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2099), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2099), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2099), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2099), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2099), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2099), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2099), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2099), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2099), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2099), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2099), - [aux_sym_host_key_alias_token1] = ACTIONS(2099), - [aux_sym_hostname_token1] = ACTIONS(2099), - [aux_sym_identities_only_token1] = ACTIONS(2099), - [aux_sym_identity_agent_token1] = ACTIONS(2099), - [aux_sym_identity_file_token1] = ACTIONS(2099), - [aux_sym_ignore_unknown_token1] = ACTIONS(2099), - [aux_sym_include_token1] = ACTIONS(2099), - [aux_sym_ip_qos_token1] = ACTIONS(2099), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2099), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2099), - [aux_sym_kex_algorithms_token1] = ACTIONS(2099), - [aux_sym_known_hosts_command_token1] = ACTIONS(2099), - [aux_sym_local_command_token1] = ACTIONS(2099), - [aux_sym_local_forward_token1] = ACTIONS(2099), - [aux_sym_log_level_token1] = ACTIONS(2099), - [aux_sym_log_verbose_token1] = ACTIONS(2099), - [aux_sym_macs_token1] = ACTIONS(2099), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2099), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2099), - [aux_sym_password_authentication_token1] = ACTIONS(2099), - [aux_sym_permit_local_command_token1] = ACTIONS(2099), - [aux_sym_permit_remote_open_token1] = ACTIONS(2099), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2099), - [aux_sym_port_token1] = ACTIONS(2099), - [aux_sym_preferred_authentications_token1] = ACTIONS(2099), - [aux_sym_protocol_token1] = ACTIONS(2099), - [aux_sym_proxy_command_token1] = ACTIONS(2099), - [aux_sym_proxy_jump_token1] = ACTIONS(2099), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2099), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2099), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2099), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2099), - [aux_sym_rekey_limit_token1] = ACTIONS(2099), - [aux_sym_remote_command_token1] = ACTIONS(2099), - [aux_sym_remote_forward_token1] = ACTIONS(2099), - [aux_sym_request_tty_token1] = ACTIONS(2099), - [aux_sym_required_rsa_size_token1] = ACTIONS(2099), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2099), - [aux_sym_security_key_provider_token1] = ACTIONS(2099), - [aux_sym_send_env_token1] = ACTIONS(2099), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2099), - [aux_sym_server_alive_interval_token1] = ACTIONS(2099), - [aux_sym_session_type_token1] = ACTIONS(2099), - [aux_sym_set_env_token1] = ACTIONS(2099), - [aux_sym_stdin_null_token1] = ACTIONS(2099), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2099), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2099), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2099), - [aux_sym_syslog_facility_token1] = ACTIONS(2099), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2099), - [aux_sym_keep_alive_token1] = ACTIONS(2099), - [aux_sym_tunnel_token1] = ACTIONS(2101), - [aux_sym_tunnel_device_token1] = ACTIONS(2099), - [aux_sym_update_host_keys_token1] = ACTIONS(2099), - [aux_sym_use_keychain_token1] = ACTIONS(2099), - [aux_sym_use_roaming_token1] = ACTIONS(2099), - [aux_sym_user_token1] = ACTIONS(2101), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2099), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2099), - [aux_sym_visual_host_key_token1] = ACTIONS(2099), - [aux_sym_xauth_location_token1] = ACTIONS(2099), + [ts_builtin_sym_end] = ACTIONS(2106), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2108), + [anon_sym_DQUOTE] = ACTIONS(2110), + [aux_sym_match_token1] = ACTIONS(2106), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2106), + [aux_sym_address_family_token1] = ACTIONS(2106), + [aux_sym_batch_mode_token1] = ACTIONS(2106), + [aux_sym_bind_address_token1] = ACTIONS(2106), + [aux_sym_bind_interface_token1] = ACTIONS(2106), + [aux_sym_canonical_domains_token1] = ACTIONS(2106), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2106), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2106), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2106), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2106), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2106), + [aux_sym_certificate_file_token1] = ACTIONS(2106), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2106), + [aux_sym_check_host_ip_token1] = ACTIONS(2106), + [aux_sym_ciphers_token1] = ACTIONS(2106), + [aux_sym_cipher_token1] = ACTIONS(2108), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2106), + [aux_sym_compression_token1] = ACTIONS(2106), + [aux_sym_connection_attempts_token1] = ACTIONS(2106), + [aux_sym_connect_timeout_token1] = ACTIONS(2106), + [aux_sym_control_master_token1] = ACTIONS(2106), + [aux_sym_control_path_token1] = ACTIONS(2106), + [aux_sym_control_persist_token1] = ACTIONS(2106), + [aux_sym_dynamic_forward_token1] = ACTIONS(2106), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2106), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2106), + [aux_sym_escape_char_token1] = ACTIONS(2106), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2106), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2106), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2106), + [aux_sym_forward_agent_token1] = ACTIONS(2106), + [aux_sym_forward_x11_token1] = ACTIONS(2108), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2106), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2106), + [aux_sym_gateway_ports_token1] = ACTIONS(2106), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2106), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2106), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2106), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2106), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2106), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2106), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2106), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2106), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2106), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2106), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2106), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2106), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2106), + [aux_sym_host_key_alias_token1] = ACTIONS(2106), + [aux_sym_hostname_token1] = ACTIONS(2106), + [aux_sym_identities_only_token1] = ACTIONS(2106), + [aux_sym_identity_agent_token1] = ACTIONS(2106), + [aux_sym_identity_file_token1] = ACTIONS(2106), + [aux_sym_ignore_unknown_token1] = ACTIONS(2106), + [aux_sym_include_token1] = ACTIONS(2106), + [aux_sym_ip_qos_token1] = ACTIONS(2106), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2106), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2106), + [aux_sym_kex_algorithms_token1] = ACTIONS(2106), + [aux_sym_known_hosts_command_token1] = ACTIONS(2106), + [aux_sym_local_command_token1] = ACTIONS(2106), + [aux_sym_local_forward_token1] = ACTIONS(2106), + [aux_sym_log_level_token1] = ACTIONS(2106), + [aux_sym_log_verbose_token1] = ACTIONS(2106), + [aux_sym_macs_token1] = ACTIONS(2106), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2106), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2106), + [aux_sym_password_authentication_token1] = ACTIONS(2106), + [aux_sym_permit_local_command_token1] = ACTIONS(2106), + [aux_sym_permit_remote_open_token1] = ACTIONS(2106), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2106), + [aux_sym_port_token1] = ACTIONS(2106), + [aux_sym_preferred_authentications_token1] = ACTIONS(2106), + [aux_sym_protocol_token1] = ACTIONS(2106), + [aux_sym_proxy_command_token1] = ACTIONS(2106), + [aux_sym_proxy_jump_token1] = ACTIONS(2106), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2106), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2106), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2106), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2106), + [aux_sym_rekey_limit_token1] = ACTIONS(2106), + [aux_sym_remote_command_token1] = ACTIONS(2106), + [aux_sym_remote_forward_token1] = ACTIONS(2106), + [aux_sym_request_tty_token1] = ACTIONS(2106), + [aux_sym_required_rsa_size_token1] = ACTIONS(2106), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2106), + [aux_sym_security_key_provider_token1] = ACTIONS(2106), + [aux_sym_send_env_token1] = ACTIONS(2106), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2106), + [aux_sym_server_alive_interval_token1] = ACTIONS(2106), + [aux_sym_session_type_token1] = ACTIONS(2106), + [aux_sym_set_env_token1] = ACTIONS(2106), + [aux_sym_stdin_null_token1] = ACTIONS(2106), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2106), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2106), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2106), + [aux_sym_syslog_facility_token1] = ACTIONS(2106), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2106), + [aux_sym_keep_alive_token1] = ACTIONS(2106), + [aux_sym_tunnel_token1] = ACTIONS(2108), + [aux_sym_tunnel_device_token1] = ACTIONS(2106), + [aux_sym_update_host_keys_token1] = ACTIONS(2106), + [aux_sym_use_keychain_token1] = ACTIONS(2106), + [aux_sym_use_roaming_token1] = ACTIONS(2106), + [aux_sym_user_token1] = ACTIONS(2108), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2106), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2106), + [aux_sym_visual_host_key_token1] = ACTIONS(2106), + [aux_sym_xauth_location_token1] = ACTIONS(2106), }, [269] = { - [ts_builtin_sym_end] = ACTIONS(2105), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2107), - [anon_sym_DQUOTE] = ACTIONS(2105), - [aux_sym_match_token1] = ACTIONS(2105), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2105), - [aux_sym_address_family_token1] = ACTIONS(2105), - [aux_sym_batch_mode_token1] = ACTIONS(2105), - [aux_sym_bind_address_token1] = ACTIONS(2105), - [aux_sym_bind_interface_token1] = ACTIONS(2105), - [aux_sym_canonical_domains_token1] = ACTIONS(2105), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2105), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2105), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2105), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2105), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2105), - [aux_sym_certificate_file_token1] = ACTIONS(2105), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2105), - [aux_sym_check_host_ip_token1] = ACTIONS(2105), - [aux_sym_ciphers_token1] = ACTIONS(2105), - [aux_sym_cipher_token1] = ACTIONS(2107), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2105), - [aux_sym_compression_token1] = ACTIONS(2105), - [aux_sym_connection_attempts_token1] = ACTIONS(2105), - [aux_sym_connect_timeout_token1] = ACTIONS(2105), - [aux_sym_control_master_token1] = ACTIONS(2105), - [aux_sym_control_path_token1] = ACTIONS(2105), - [aux_sym_control_persist_token1] = ACTIONS(2105), - [aux_sym_dynamic_forward_token1] = ACTIONS(2105), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2105), - [aux_sym_escape_char_token1] = ACTIONS(2105), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2105), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2105), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2105), - [aux_sym_forward_agent_token1] = ACTIONS(2105), - [aux_sym_forward_x11_token1] = ACTIONS(2107), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2105), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2105), - [aux_sym_gateway_ports_token1] = ACTIONS(2105), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2105), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2105), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2105), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2105), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2105), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2105), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2105), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2105), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2105), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2105), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2105), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2105), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2105), - [aux_sym_host_key_alias_token1] = ACTIONS(2105), - [aux_sym_hostname_token1] = ACTIONS(2105), - [aux_sym_identities_only_token1] = ACTIONS(2105), - [aux_sym_identity_agent_token1] = ACTIONS(2105), - [aux_sym_identity_file_token1] = ACTIONS(2105), - [aux_sym_ignore_unknown_token1] = ACTIONS(2105), - [aux_sym_include_token1] = ACTIONS(2105), - [aux_sym_ip_qos_token1] = ACTIONS(2105), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2105), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2105), - [aux_sym_kex_algorithms_token1] = ACTIONS(2105), - [aux_sym_known_hosts_command_token1] = ACTIONS(2105), - [aux_sym_local_command_token1] = ACTIONS(2105), - [aux_sym_local_forward_token1] = ACTIONS(2105), - [aux_sym_log_level_token1] = ACTIONS(2105), - [aux_sym_log_verbose_token1] = ACTIONS(2105), - [aux_sym_macs_token1] = ACTIONS(2105), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2105), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2105), - [aux_sym_password_authentication_token1] = ACTIONS(2105), - [aux_sym_permit_local_command_token1] = ACTIONS(2105), - [aux_sym_permit_remote_open_token1] = ACTIONS(2105), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2105), - [aux_sym_port_token1] = ACTIONS(2105), - [aux_sym_preferred_authentications_token1] = ACTIONS(2105), - [aux_sym_protocol_token1] = ACTIONS(2105), - [aux_sym_proxy_command_token1] = ACTIONS(2105), - [aux_sym_proxy_jump_token1] = ACTIONS(2105), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2105), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2105), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2105), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2105), - [aux_sym_rekey_limit_token1] = ACTIONS(2105), - [aux_sym_remote_command_token1] = ACTIONS(2105), - [aux_sym_remote_forward_token1] = ACTIONS(2105), - [aux_sym_request_tty_token1] = ACTIONS(2105), - [aux_sym_required_rsa_size_token1] = ACTIONS(2105), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2105), - [aux_sym_security_key_provider_token1] = ACTIONS(2105), - [aux_sym_send_env_token1] = ACTIONS(2105), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2105), - [aux_sym_server_alive_interval_token1] = ACTIONS(2105), - [aux_sym_session_type_token1] = ACTIONS(2105), - [aux_sym_set_env_token1] = ACTIONS(2105), - [aux_sym_stdin_null_token1] = ACTIONS(2105), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2105), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2105), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2105), - [aux_sym_syslog_facility_token1] = ACTIONS(2105), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2105), - [aux_sym_keep_alive_token1] = ACTIONS(2105), - [aux_sym_tunnel_token1] = ACTIONS(2107), - [aux_sym_tunnel_device_token1] = ACTIONS(2105), - [aux_sym_update_host_keys_token1] = ACTIONS(2105), - [aux_sym_use_keychain_token1] = ACTIONS(2105), - [aux_sym_use_roaming_token1] = ACTIONS(2105), - [aux_sym_user_token1] = ACTIONS(2107), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2105), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2105), - [aux_sym_visual_host_key_token1] = ACTIONS(2105), - [aux_sym_xauth_location_token1] = ACTIONS(2105), + [ts_builtin_sym_end] = ACTIONS(2112), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2112), + [aux_sym_match_token1] = ACTIONS(2112), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2112), + [aux_sym_address_family_token1] = ACTIONS(2112), + [aux_sym_batch_mode_token1] = ACTIONS(2112), + [aux_sym_bind_address_token1] = ACTIONS(2112), + [aux_sym_bind_interface_token1] = ACTIONS(2112), + [aux_sym_canonical_domains_token1] = ACTIONS(2112), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2112), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2112), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2112), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2112), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2112), + [aux_sym_certificate_file_token1] = ACTIONS(2112), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2112), + [aux_sym_check_host_ip_token1] = ACTIONS(2112), + [aux_sym_ciphers_token1] = ACTIONS(2112), + [aux_sym_cipher_token1] = ACTIONS(2114), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2112), + [aux_sym_compression_token1] = ACTIONS(2112), + [aux_sym_connection_attempts_token1] = ACTIONS(2112), + [aux_sym_connect_timeout_token1] = ACTIONS(2112), + [aux_sym_control_master_token1] = ACTIONS(2112), + [aux_sym_control_path_token1] = ACTIONS(2112), + [aux_sym_control_persist_token1] = ACTIONS(2112), + [aux_sym_dynamic_forward_token1] = ACTIONS(2112), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2112), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2112), + [aux_sym_escape_char_token1] = ACTIONS(2112), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2112), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2112), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2112), + [aux_sym_forward_agent_token1] = ACTIONS(2112), + [aux_sym_forward_x11_token1] = ACTIONS(2114), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2112), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2112), + [aux_sym_gateway_ports_token1] = ACTIONS(2112), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2112), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2112), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2112), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2112), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2112), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2112), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2112), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2112), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2112), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2112), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2112), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2112), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2112), + [aux_sym_host_key_alias_token1] = ACTIONS(2112), + [aux_sym_hostname_token1] = ACTIONS(2112), + [aux_sym_identities_only_token1] = ACTIONS(2112), + [aux_sym_identity_agent_token1] = ACTIONS(2112), + [aux_sym_identity_file_token1] = ACTIONS(2112), + [aux_sym_ignore_unknown_token1] = ACTIONS(2112), + [aux_sym_include_token1] = ACTIONS(2112), + [aux_sym_ip_qos_token1] = ACTIONS(2112), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2112), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2112), + [aux_sym_kex_algorithms_token1] = ACTIONS(2112), + [aux_sym_known_hosts_command_token1] = ACTIONS(2112), + [aux_sym_local_command_token1] = ACTIONS(2112), + [aux_sym_local_forward_token1] = ACTIONS(2112), + [aux_sym_log_level_token1] = ACTIONS(2112), + [aux_sym_log_verbose_token1] = ACTIONS(2112), + [aux_sym_macs_token1] = ACTIONS(2112), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2112), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2112), + [aux_sym_password_authentication_token1] = ACTIONS(2112), + [aux_sym_permit_local_command_token1] = ACTIONS(2112), + [aux_sym_permit_remote_open_token1] = ACTIONS(2112), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2112), + [aux_sym_port_token1] = ACTIONS(2112), + [aux_sym_preferred_authentications_token1] = ACTIONS(2112), + [aux_sym_protocol_token1] = ACTIONS(2112), + [aux_sym_proxy_command_token1] = ACTIONS(2112), + [aux_sym_proxy_jump_token1] = ACTIONS(2112), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2112), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2112), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2112), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2112), + [aux_sym_rekey_limit_token1] = ACTIONS(2112), + [aux_sym_remote_command_token1] = ACTIONS(2112), + [aux_sym_remote_forward_token1] = ACTIONS(2112), + [aux_sym_request_tty_token1] = ACTIONS(2112), + [aux_sym_required_rsa_size_token1] = ACTIONS(2112), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2112), + [aux_sym_security_key_provider_token1] = ACTIONS(2112), + [aux_sym_send_env_token1] = ACTIONS(2112), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2112), + [aux_sym_server_alive_interval_token1] = ACTIONS(2112), + [aux_sym_session_type_token1] = ACTIONS(2112), + [aux_sym_set_env_token1] = ACTIONS(2112), + [aux_sym_stdin_null_token1] = ACTIONS(2112), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2112), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2112), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2112), + [aux_sym_syslog_facility_token1] = ACTIONS(2112), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2112), + [aux_sym_keep_alive_token1] = ACTIONS(2112), + [aux_sym_tunnel_token1] = ACTIONS(2114), + [aux_sym_tunnel_device_token1] = ACTIONS(2112), + [aux_sym_update_host_keys_token1] = ACTIONS(2112), + [aux_sym_use_keychain_token1] = ACTIONS(2112), + [aux_sym_use_roaming_token1] = ACTIONS(2112), + [aux_sym_user_token1] = ACTIONS(2114), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2112), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2112), + [aux_sym_visual_host_key_token1] = ACTIONS(2112), + [aux_sym_xauth_location_token1] = ACTIONS(2112), }, [270] = { - [ts_builtin_sym_end] = ACTIONS(2109), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2113), - [aux_sym_match_token1] = ACTIONS(2109), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2109), - [aux_sym_address_family_token1] = ACTIONS(2109), - [aux_sym_batch_mode_token1] = ACTIONS(2109), - [aux_sym_bind_address_token1] = ACTIONS(2109), - [aux_sym_bind_interface_token1] = ACTIONS(2109), - [aux_sym_canonical_domains_token1] = ACTIONS(2109), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2109), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2109), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2109), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2109), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2109), - [aux_sym_certificate_file_token1] = ACTIONS(2109), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2109), - [aux_sym_check_host_ip_token1] = ACTIONS(2109), - [aux_sym_ciphers_token1] = ACTIONS(2109), - [aux_sym_cipher_token1] = ACTIONS(2111), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2109), - [aux_sym_compression_token1] = ACTIONS(2109), - [aux_sym_connection_attempts_token1] = ACTIONS(2109), - [aux_sym_connect_timeout_token1] = ACTIONS(2109), - [aux_sym_control_master_token1] = ACTIONS(2109), - [aux_sym_control_path_token1] = ACTIONS(2109), - [aux_sym_control_persist_token1] = ACTIONS(2109), - [aux_sym_dynamic_forward_token1] = ACTIONS(2109), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2109), - [aux_sym_escape_char_token1] = ACTIONS(2109), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2109), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2109), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2109), - [aux_sym_forward_agent_token1] = ACTIONS(2109), - [aux_sym_forward_x11_token1] = ACTIONS(2111), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2109), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2109), - [aux_sym_gateway_ports_token1] = ACTIONS(2109), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2109), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2109), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2109), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2109), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2109), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2109), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2109), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2109), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2109), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2109), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2109), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2109), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2109), - [aux_sym_host_key_alias_token1] = ACTIONS(2109), - [aux_sym_hostname_token1] = ACTIONS(2109), - [aux_sym_identities_only_token1] = ACTIONS(2109), - [aux_sym_identity_agent_token1] = ACTIONS(2109), - [aux_sym_identity_file_token1] = ACTIONS(2109), - [aux_sym_ignore_unknown_token1] = ACTIONS(2109), - [aux_sym_include_token1] = ACTIONS(2109), - [aux_sym_ip_qos_token1] = ACTIONS(2109), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2109), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2109), - [aux_sym_kex_algorithms_token1] = ACTIONS(2109), - [aux_sym_known_hosts_command_token1] = ACTIONS(2109), - [aux_sym_local_command_token1] = ACTIONS(2109), - [aux_sym_local_forward_token1] = ACTIONS(2109), - [aux_sym_log_level_token1] = ACTIONS(2109), - [aux_sym_log_verbose_token1] = ACTIONS(2109), - [aux_sym_macs_token1] = ACTIONS(2109), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2109), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2109), - [aux_sym_password_authentication_token1] = ACTIONS(2109), - [aux_sym_permit_local_command_token1] = ACTIONS(2109), - [aux_sym_permit_remote_open_token1] = ACTIONS(2109), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2109), - [aux_sym_port_token1] = ACTIONS(2109), - [aux_sym_preferred_authentications_token1] = ACTIONS(2109), - [aux_sym_protocol_token1] = ACTIONS(2109), - [aux_sym_proxy_command_token1] = ACTIONS(2109), - [aux_sym_proxy_jump_token1] = ACTIONS(2109), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2109), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2109), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2109), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2109), - [aux_sym_rekey_limit_token1] = ACTIONS(2109), - [aux_sym_remote_command_token1] = ACTIONS(2109), - [aux_sym_remote_forward_token1] = ACTIONS(2109), - [aux_sym_request_tty_token1] = ACTIONS(2109), - [aux_sym_required_rsa_size_token1] = ACTIONS(2109), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2109), - [aux_sym_security_key_provider_token1] = ACTIONS(2109), - [aux_sym_send_env_token1] = ACTIONS(2109), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2109), - [aux_sym_server_alive_interval_token1] = ACTIONS(2109), - [aux_sym_session_type_token1] = ACTIONS(2109), - [aux_sym_set_env_token1] = ACTIONS(2109), - [aux_sym_stdin_null_token1] = ACTIONS(2109), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2109), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2109), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2109), - [aux_sym_syslog_facility_token1] = ACTIONS(2109), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2109), - [aux_sym_keep_alive_token1] = ACTIONS(2109), - [aux_sym_tunnel_token1] = ACTIONS(2111), - [aux_sym_tunnel_device_token1] = ACTIONS(2109), - [aux_sym_update_host_keys_token1] = ACTIONS(2109), - [aux_sym_use_keychain_token1] = ACTIONS(2109), - [aux_sym_use_roaming_token1] = ACTIONS(2109), - [aux_sym_user_token1] = ACTIONS(2111), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2109), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2109), - [aux_sym_visual_host_key_token1] = ACTIONS(2109), - [aux_sym_xauth_location_token1] = ACTIONS(2109), + [ts_builtin_sym_end] = ACTIONS(2116), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2120), + [aux_sym_match_token1] = ACTIONS(2116), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2116), + [aux_sym_address_family_token1] = ACTIONS(2116), + [aux_sym_batch_mode_token1] = ACTIONS(2116), + [aux_sym_bind_address_token1] = ACTIONS(2116), + [aux_sym_bind_interface_token1] = ACTIONS(2116), + [aux_sym_canonical_domains_token1] = ACTIONS(2116), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2116), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2116), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2116), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2116), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2116), + [aux_sym_certificate_file_token1] = ACTIONS(2116), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2116), + [aux_sym_check_host_ip_token1] = ACTIONS(2116), + [aux_sym_ciphers_token1] = ACTIONS(2116), + [aux_sym_cipher_token1] = ACTIONS(2118), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2116), + [aux_sym_compression_token1] = ACTIONS(2116), + [aux_sym_connection_attempts_token1] = ACTIONS(2116), + [aux_sym_connect_timeout_token1] = ACTIONS(2116), + [aux_sym_control_master_token1] = ACTIONS(2116), + [aux_sym_control_path_token1] = ACTIONS(2116), + [aux_sym_control_persist_token1] = ACTIONS(2116), + [aux_sym_dynamic_forward_token1] = ACTIONS(2116), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2116), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2116), + [aux_sym_escape_char_token1] = ACTIONS(2116), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2116), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2116), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2116), + [aux_sym_forward_agent_token1] = ACTIONS(2116), + [aux_sym_forward_x11_token1] = ACTIONS(2118), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2116), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2116), + [aux_sym_gateway_ports_token1] = ACTIONS(2116), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2116), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2116), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2116), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2116), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2116), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2116), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2116), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2116), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2116), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2116), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2116), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2116), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2116), + [aux_sym_host_key_alias_token1] = ACTIONS(2116), + [aux_sym_hostname_token1] = ACTIONS(2116), + [aux_sym_identities_only_token1] = ACTIONS(2116), + [aux_sym_identity_agent_token1] = ACTIONS(2116), + [aux_sym_identity_file_token1] = ACTIONS(2116), + [aux_sym_ignore_unknown_token1] = ACTIONS(2116), + [aux_sym_include_token1] = ACTIONS(2116), + [aux_sym_ip_qos_token1] = ACTIONS(2116), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2116), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2116), + [aux_sym_kex_algorithms_token1] = ACTIONS(2116), + [aux_sym_known_hosts_command_token1] = ACTIONS(2116), + [aux_sym_local_command_token1] = ACTIONS(2116), + [aux_sym_local_forward_token1] = ACTIONS(2116), + [aux_sym_log_level_token1] = ACTIONS(2116), + [aux_sym_log_verbose_token1] = ACTIONS(2116), + [aux_sym_macs_token1] = ACTIONS(2116), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2116), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2116), + [aux_sym_password_authentication_token1] = ACTIONS(2116), + [aux_sym_permit_local_command_token1] = ACTIONS(2116), + [aux_sym_permit_remote_open_token1] = ACTIONS(2116), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2116), + [aux_sym_port_token1] = ACTIONS(2116), + [aux_sym_preferred_authentications_token1] = ACTIONS(2116), + [aux_sym_protocol_token1] = ACTIONS(2116), + [aux_sym_proxy_command_token1] = ACTIONS(2116), + [aux_sym_proxy_jump_token1] = ACTIONS(2116), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2116), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2116), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2116), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2116), + [aux_sym_rekey_limit_token1] = ACTIONS(2116), + [aux_sym_remote_command_token1] = ACTIONS(2116), + [aux_sym_remote_forward_token1] = ACTIONS(2116), + [aux_sym_request_tty_token1] = ACTIONS(2116), + [aux_sym_required_rsa_size_token1] = ACTIONS(2116), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2116), + [aux_sym_security_key_provider_token1] = ACTIONS(2116), + [aux_sym_send_env_token1] = ACTIONS(2116), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2116), + [aux_sym_server_alive_interval_token1] = ACTIONS(2116), + [aux_sym_session_type_token1] = ACTIONS(2116), + [aux_sym_set_env_token1] = ACTIONS(2116), + [aux_sym_stdin_null_token1] = ACTIONS(2116), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2116), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2116), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2116), + [aux_sym_syslog_facility_token1] = ACTIONS(2116), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2116), + [aux_sym_keep_alive_token1] = ACTIONS(2116), + [aux_sym_tunnel_token1] = ACTIONS(2118), + [aux_sym_tunnel_device_token1] = ACTIONS(2116), + [aux_sym_update_host_keys_token1] = ACTIONS(2116), + [aux_sym_use_keychain_token1] = ACTIONS(2116), + [aux_sym_use_roaming_token1] = ACTIONS(2116), + [aux_sym_user_token1] = ACTIONS(2118), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2116), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2116), + [aux_sym_visual_host_key_token1] = ACTIONS(2116), + [aux_sym_xauth_location_token1] = ACTIONS(2116), }, [271] = { - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2117), - [anon_sym_DQUOTE] = ACTIONS(2115), - [aux_sym_match_token1] = ACTIONS(2115), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2115), - [aux_sym_address_family_token1] = ACTIONS(2115), - [aux_sym_batch_mode_token1] = ACTIONS(2115), - [aux_sym_bind_address_token1] = ACTIONS(2115), - [aux_sym_bind_interface_token1] = ACTIONS(2115), - [aux_sym_canonical_domains_token1] = ACTIONS(2115), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2115), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2115), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2115), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2115), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2115), - [aux_sym_certificate_file_token1] = ACTIONS(2115), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2115), - [aux_sym_check_host_ip_token1] = ACTIONS(2115), - [aux_sym_ciphers_token1] = ACTIONS(2115), - [aux_sym_cipher_token1] = ACTIONS(2117), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2115), - [aux_sym_compression_token1] = ACTIONS(2115), - [aux_sym_connection_attempts_token1] = ACTIONS(2115), - [aux_sym_connect_timeout_token1] = ACTIONS(2115), - [aux_sym_control_master_token1] = ACTIONS(2115), - [aux_sym_control_path_token1] = ACTIONS(2115), - [aux_sym_control_persist_token1] = ACTIONS(2115), - [aux_sym_dynamic_forward_token1] = ACTIONS(2115), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2115), - [aux_sym_escape_char_token1] = ACTIONS(2115), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2115), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2115), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2115), - [aux_sym_forward_agent_token1] = ACTIONS(2115), - [aux_sym_forward_x11_token1] = ACTIONS(2117), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2115), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2115), - [aux_sym_gateway_ports_token1] = ACTIONS(2115), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2115), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2115), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2115), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2115), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2115), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2115), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2115), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2115), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2115), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2115), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2115), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2115), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2115), - [aux_sym_host_key_alias_token1] = ACTIONS(2115), - [aux_sym_hostname_token1] = ACTIONS(2115), - [aux_sym_identities_only_token1] = ACTIONS(2115), - [aux_sym_identity_agent_token1] = ACTIONS(2115), - [aux_sym_identity_file_token1] = ACTIONS(2115), - [aux_sym_ignore_unknown_token1] = ACTIONS(2115), - [aux_sym_include_token1] = ACTIONS(2115), - [aux_sym_ip_qos_token1] = ACTIONS(2115), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2115), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2115), - [aux_sym_kex_algorithms_token1] = ACTIONS(2115), - [aux_sym_known_hosts_command_token1] = ACTIONS(2115), - [aux_sym_local_command_token1] = ACTIONS(2115), - [aux_sym_local_forward_token1] = ACTIONS(2115), - [aux_sym_log_level_token1] = ACTIONS(2115), - [aux_sym_log_verbose_token1] = ACTIONS(2115), - [aux_sym_macs_token1] = ACTIONS(2115), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2115), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2115), - [aux_sym_password_authentication_token1] = ACTIONS(2115), - [aux_sym_permit_local_command_token1] = ACTIONS(2115), - [aux_sym_permit_remote_open_token1] = ACTIONS(2115), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2115), - [aux_sym_port_token1] = ACTIONS(2115), - [aux_sym_preferred_authentications_token1] = ACTIONS(2115), - [aux_sym_protocol_token1] = ACTIONS(2115), - [aux_sym_proxy_command_token1] = ACTIONS(2115), - [aux_sym_proxy_jump_token1] = ACTIONS(2115), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2115), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2115), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2115), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2115), - [aux_sym_rekey_limit_token1] = ACTIONS(2115), - [aux_sym_remote_command_token1] = ACTIONS(2115), - [aux_sym_remote_forward_token1] = ACTIONS(2115), - [aux_sym_request_tty_token1] = ACTIONS(2115), - [aux_sym_required_rsa_size_token1] = ACTIONS(2115), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2115), - [aux_sym_security_key_provider_token1] = ACTIONS(2115), - [aux_sym_send_env_token1] = ACTIONS(2115), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2115), - [aux_sym_server_alive_interval_token1] = ACTIONS(2115), - [aux_sym_session_type_token1] = ACTIONS(2115), - [aux_sym_set_env_token1] = ACTIONS(2115), - [aux_sym_stdin_null_token1] = ACTIONS(2115), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2115), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2115), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2115), - [aux_sym_syslog_facility_token1] = ACTIONS(2115), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2115), - [aux_sym_keep_alive_token1] = ACTIONS(2115), - [aux_sym_tunnel_token1] = ACTIONS(2117), - [aux_sym_tunnel_device_token1] = ACTIONS(2115), - [aux_sym_update_host_keys_token1] = ACTIONS(2115), - [aux_sym_use_keychain_token1] = ACTIONS(2115), - [aux_sym_use_roaming_token1] = ACTIONS(2115), - [aux_sym_user_token1] = ACTIONS(2117), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2115), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2115), - [aux_sym_visual_host_key_token1] = ACTIONS(2115), - [aux_sym_xauth_location_token1] = ACTIONS(2115), + [ts_builtin_sym_end] = ACTIONS(2122), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2122), + [aux_sym_match_token1] = ACTIONS(2122), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2122), + [aux_sym_address_family_token1] = ACTIONS(2122), + [aux_sym_batch_mode_token1] = ACTIONS(2122), + [aux_sym_bind_address_token1] = ACTIONS(2122), + [aux_sym_bind_interface_token1] = ACTIONS(2122), + [aux_sym_canonical_domains_token1] = ACTIONS(2122), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2122), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2122), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2122), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2122), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2122), + [aux_sym_certificate_file_token1] = ACTIONS(2122), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2122), + [aux_sym_check_host_ip_token1] = ACTIONS(2122), + [aux_sym_ciphers_token1] = ACTIONS(2122), + [aux_sym_cipher_token1] = ACTIONS(2124), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2122), + [aux_sym_compression_token1] = ACTIONS(2122), + [aux_sym_connection_attempts_token1] = ACTIONS(2122), + [aux_sym_connect_timeout_token1] = ACTIONS(2122), + [aux_sym_control_master_token1] = ACTIONS(2122), + [aux_sym_control_path_token1] = ACTIONS(2122), + [aux_sym_control_persist_token1] = ACTIONS(2122), + [aux_sym_dynamic_forward_token1] = ACTIONS(2122), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2122), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2122), + [aux_sym_escape_char_token1] = ACTIONS(2122), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2122), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2122), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2122), + [aux_sym_forward_agent_token1] = ACTIONS(2122), + [aux_sym_forward_x11_token1] = ACTIONS(2124), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2122), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2122), + [aux_sym_gateway_ports_token1] = ACTIONS(2122), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2122), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2122), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2122), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2122), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2122), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2122), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2122), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2122), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2122), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2122), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2122), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2122), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2122), + [aux_sym_host_key_alias_token1] = ACTIONS(2122), + [aux_sym_hostname_token1] = ACTIONS(2122), + [aux_sym_identities_only_token1] = ACTIONS(2122), + [aux_sym_identity_agent_token1] = ACTIONS(2122), + [aux_sym_identity_file_token1] = ACTIONS(2122), + [aux_sym_ignore_unknown_token1] = ACTIONS(2122), + [aux_sym_include_token1] = ACTIONS(2122), + [aux_sym_ip_qos_token1] = ACTIONS(2122), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2122), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2122), + [aux_sym_kex_algorithms_token1] = ACTIONS(2122), + [aux_sym_known_hosts_command_token1] = ACTIONS(2122), + [aux_sym_local_command_token1] = ACTIONS(2122), + [aux_sym_local_forward_token1] = ACTIONS(2122), + [aux_sym_log_level_token1] = ACTIONS(2122), + [aux_sym_log_verbose_token1] = ACTIONS(2122), + [aux_sym_macs_token1] = ACTIONS(2122), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2122), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2122), + [aux_sym_password_authentication_token1] = ACTIONS(2122), + [aux_sym_permit_local_command_token1] = ACTIONS(2122), + [aux_sym_permit_remote_open_token1] = ACTIONS(2122), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2122), + [aux_sym_port_token1] = ACTIONS(2122), + [aux_sym_preferred_authentications_token1] = ACTIONS(2122), + [aux_sym_protocol_token1] = ACTIONS(2122), + [aux_sym_proxy_command_token1] = ACTIONS(2122), + [aux_sym_proxy_jump_token1] = ACTIONS(2122), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2122), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2122), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2122), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2122), + [aux_sym_rekey_limit_token1] = ACTIONS(2122), + [aux_sym_remote_command_token1] = ACTIONS(2122), + [aux_sym_remote_forward_token1] = ACTIONS(2122), + [aux_sym_request_tty_token1] = ACTIONS(2122), + [aux_sym_required_rsa_size_token1] = ACTIONS(2122), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2122), + [aux_sym_security_key_provider_token1] = ACTIONS(2122), + [aux_sym_send_env_token1] = ACTIONS(2122), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2122), + [aux_sym_server_alive_interval_token1] = ACTIONS(2122), + [aux_sym_session_type_token1] = ACTIONS(2122), + [aux_sym_set_env_token1] = ACTIONS(2122), + [aux_sym_stdin_null_token1] = ACTIONS(2122), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2122), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2122), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2122), + [aux_sym_syslog_facility_token1] = ACTIONS(2122), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2122), + [aux_sym_keep_alive_token1] = ACTIONS(2122), + [aux_sym_tunnel_token1] = ACTIONS(2124), + [aux_sym_tunnel_device_token1] = ACTIONS(2122), + [aux_sym_update_host_keys_token1] = ACTIONS(2122), + [aux_sym_use_keychain_token1] = ACTIONS(2122), + [aux_sym_use_roaming_token1] = ACTIONS(2122), + [aux_sym_user_token1] = ACTIONS(2124), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2122), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2122), + [aux_sym_visual_host_key_token1] = ACTIONS(2122), + [aux_sym_xauth_location_token1] = ACTIONS(2122), }, [272] = { - [ts_builtin_sym_end] = ACTIONS(2119), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2123), - [aux_sym_match_token1] = ACTIONS(2119), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2119), - [aux_sym_address_family_token1] = ACTIONS(2119), - [aux_sym_batch_mode_token1] = ACTIONS(2119), - [aux_sym_bind_address_token1] = ACTIONS(2119), - [aux_sym_bind_interface_token1] = ACTIONS(2119), - [aux_sym_canonical_domains_token1] = ACTIONS(2119), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2119), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2119), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2119), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2119), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2119), - [aux_sym_certificate_file_token1] = ACTIONS(2119), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2119), - [aux_sym_check_host_ip_token1] = ACTIONS(2119), - [aux_sym_ciphers_token1] = ACTIONS(2119), - [aux_sym_cipher_token1] = ACTIONS(2121), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2119), - [aux_sym_compression_token1] = ACTIONS(2119), - [aux_sym_connection_attempts_token1] = ACTIONS(2119), - [aux_sym_connect_timeout_token1] = ACTIONS(2119), - [aux_sym_control_master_token1] = ACTIONS(2119), - [aux_sym_control_path_token1] = ACTIONS(2119), - [aux_sym_control_persist_token1] = ACTIONS(2119), - [aux_sym_dynamic_forward_token1] = ACTIONS(2119), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2119), - [aux_sym_escape_char_token1] = ACTIONS(2119), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2119), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2119), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2119), - [aux_sym_forward_agent_token1] = ACTIONS(2119), - [aux_sym_forward_x11_token1] = ACTIONS(2121), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2119), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2119), - [aux_sym_gateway_ports_token1] = ACTIONS(2119), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2119), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2119), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2119), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2119), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2119), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2119), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2119), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2119), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2119), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2119), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2119), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2119), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2119), - [aux_sym_host_key_alias_token1] = ACTIONS(2119), - [aux_sym_hostname_token1] = ACTIONS(2119), - [aux_sym_identities_only_token1] = ACTIONS(2119), - [aux_sym_identity_agent_token1] = ACTIONS(2119), - [aux_sym_identity_file_token1] = ACTIONS(2119), - [aux_sym_ignore_unknown_token1] = ACTIONS(2119), - [aux_sym_include_token1] = ACTIONS(2119), - [aux_sym_ip_qos_token1] = ACTIONS(2119), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2119), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2119), - [aux_sym_kex_algorithms_token1] = ACTIONS(2119), - [aux_sym_known_hosts_command_token1] = ACTIONS(2119), - [aux_sym_local_command_token1] = ACTIONS(2119), - [aux_sym_local_forward_token1] = ACTIONS(2119), - [aux_sym_log_level_token1] = ACTIONS(2119), - [aux_sym_log_verbose_token1] = ACTIONS(2119), - [aux_sym_macs_token1] = ACTIONS(2119), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2119), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2119), - [aux_sym_password_authentication_token1] = ACTIONS(2119), - [aux_sym_permit_local_command_token1] = ACTIONS(2119), - [aux_sym_permit_remote_open_token1] = ACTIONS(2119), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2119), - [aux_sym_port_token1] = ACTIONS(2119), - [aux_sym_preferred_authentications_token1] = ACTIONS(2119), - [aux_sym_protocol_token1] = ACTIONS(2119), - [aux_sym_proxy_command_token1] = ACTIONS(2119), - [aux_sym_proxy_jump_token1] = ACTIONS(2119), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2119), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2119), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2119), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2119), - [aux_sym_rekey_limit_token1] = ACTIONS(2119), - [aux_sym_remote_command_token1] = ACTIONS(2119), - [aux_sym_remote_forward_token1] = ACTIONS(2119), - [aux_sym_request_tty_token1] = ACTIONS(2119), - [aux_sym_required_rsa_size_token1] = ACTIONS(2119), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2119), - [aux_sym_security_key_provider_token1] = ACTIONS(2119), - [aux_sym_send_env_token1] = ACTIONS(2119), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2119), - [aux_sym_server_alive_interval_token1] = ACTIONS(2119), - [aux_sym_session_type_token1] = ACTIONS(2119), - [aux_sym_set_env_token1] = ACTIONS(2119), - [aux_sym_stdin_null_token1] = ACTIONS(2119), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2119), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2119), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2119), - [aux_sym_syslog_facility_token1] = ACTIONS(2119), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2119), - [aux_sym_keep_alive_token1] = ACTIONS(2119), - [aux_sym_tunnel_token1] = ACTIONS(2121), - [aux_sym_tunnel_device_token1] = ACTIONS(2119), - [aux_sym_update_host_keys_token1] = ACTIONS(2119), - [aux_sym_use_keychain_token1] = ACTIONS(2119), - [aux_sym_use_roaming_token1] = ACTIONS(2119), - [aux_sym_user_token1] = ACTIONS(2121), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2119), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2119), - [aux_sym_visual_host_key_token1] = ACTIONS(2119), - [aux_sym_xauth_location_token1] = ACTIONS(2119), + [ts_builtin_sym_end] = ACTIONS(2126), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2128), + [anon_sym_DQUOTE] = ACTIONS(2130), + [aux_sym_match_token1] = ACTIONS(2126), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2126), + [aux_sym_address_family_token1] = ACTIONS(2126), + [aux_sym_batch_mode_token1] = ACTIONS(2126), + [aux_sym_bind_address_token1] = ACTIONS(2126), + [aux_sym_bind_interface_token1] = ACTIONS(2126), + [aux_sym_canonical_domains_token1] = ACTIONS(2126), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2126), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2126), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2126), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2126), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2126), + [aux_sym_certificate_file_token1] = ACTIONS(2126), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2126), + [aux_sym_check_host_ip_token1] = ACTIONS(2126), + [aux_sym_ciphers_token1] = ACTIONS(2126), + [aux_sym_cipher_token1] = ACTIONS(2128), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2126), + [aux_sym_compression_token1] = ACTIONS(2126), + [aux_sym_connection_attempts_token1] = ACTIONS(2126), + [aux_sym_connect_timeout_token1] = ACTIONS(2126), + [aux_sym_control_master_token1] = ACTIONS(2126), + [aux_sym_control_path_token1] = ACTIONS(2126), + [aux_sym_control_persist_token1] = ACTIONS(2126), + [aux_sym_dynamic_forward_token1] = ACTIONS(2126), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2126), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2126), + [aux_sym_escape_char_token1] = ACTIONS(2126), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2126), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2126), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2126), + [aux_sym_forward_agent_token1] = ACTIONS(2126), + [aux_sym_forward_x11_token1] = ACTIONS(2128), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2126), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2126), + [aux_sym_gateway_ports_token1] = ACTIONS(2126), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2126), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2126), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2126), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2126), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2126), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2126), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2126), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2126), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2126), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2126), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2126), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2126), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2126), + [aux_sym_host_key_alias_token1] = ACTIONS(2126), + [aux_sym_hostname_token1] = ACTIONS(2126), + [aux_sym_identities_only_token1] = ACTIONS(2126), + [aux_sym_identity_agent_token1] = ACTIONS(2126), + [aux_sym_identity_file_token1] = ACTIONS(2126), + [aux_sym_ignore_unknown_token1] = ACTIONS(2126), + [aux_sym_include_token1] = ACTIONS(2126), + [aux_sym_ip_qos_token1] = ACTIONS(2126), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2126), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2126), + [aux_sym_kex_algorithms_token1] = ACTIONS(2126), + [aux_sym_known_hosts_command_token1] = ACTIONS(2126), + [aux_sym_local_command_token1] = ACTIONS(2126), + [aux_sym_local_forward_token1] = ACTIONS(2126), + [aux_sym_log_level_token1] = ACTIONS(2126), + [aux_sym_log_verbose_token1] = ACTIONS(2126), + [aux_sym_macs_token1] = ACTIONS(2126), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2126), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2126), + [aux_sym_password_authentication_token1] = ACTIONS(2126), + [aux_sym_permit_local_command_token1] = ACTIONS(2126), + [aux_sym_permit_remote_open_token1] = ACTIONS(2126), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2126), + [aux_sym_port_token1] = ACTIONS(2126), + [aux_sym_preferred_authentications_token1] = ACTIONS(2126), + [aux_sym_protocol_token1] = ACTIONS(2126), + [aux_sym_proxy_command_token1] = ACTIONS(2126), + [aux_sym_proxy_jump_token1] = ACTIONS(2126), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2126), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2126), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2126), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2126), + [aux_sym_rekey_limit_token1] = ACTIONS(2126), + [aux_sym_remote_command_token1] = ACTIONS(2126), + [aux_sym_remote_forward_token1] = ACTIONS(2126), + [aux_sym_request_tty_token1] = ACTIONS(2126), + [aux_sym_required_rsa_size_token1] = ACTIONS(2126), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2126), + [aux_sym_security_key_provider_token1] = ACTIONS(2126), + [aux_sym_send_env_token1] = ACTIONS(2126), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2126), + [aux_sym_server_alive_interval_token1] = ACTIONS(2126), + [aux_sym_session_type_token1] = ACTIONS(2126), + [aux_sym_set_env_token1] = ACTIONS(2126), + [aux_sym_stdin_null_token1] = ACTIONS(2126), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2126), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2126), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2126), + [aux_sym_syslog_facility_token1] = ACTIONS(2126), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2126), + [aux_sym_keep_alive_token1] = ACTIONS(2126), + [aux_sym_tunnel_token1] = ACTIONS(2128), + [aux_sym_tunnel_device_token1] = ACTIONS(2126), + [aux_sym_update_host_keys_token1] = ACTIONS(2126), + [aux_sym_use_keychain_token1] = ACTIONS(2126), + [aux_sym_use_roaming_token1] = ACTIONS(2126), + [aux_sym_user_token1] = ACTIONS(2128), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2126), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2126), + [aux_sym_visual_host_key_token1] = ACTIONS(2126), + [aux_sym_xauth_location_token1] = ACTIONS(2126), }, [273] = { - [ts_builtin_sym_end] = ACTIONS(2125), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2127), - [anon_sym_DQUOTE] = ACTIONS(2125), - [aux_sym_match_token1] = ACTIONS(2125), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2125), - [aux_sym_address_family_token1] = ACTIONS(2125), - [aux_sym_batch_mode_token1] = ACTIONS(2125), - [aux_sym_bind_address_token1] = ACTIONS(2125), - [aux_sym_bind_interface_token1] = ACTIONS(2125), - [aux_sym_canonical_domains_token1] = ACTIONS(2125), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2125), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2125), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2125), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2125), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2125), - [aux_sym_certificate_file_token1] = ACTIONS(2125), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2125), - [aux_sym_check_host_ip_token1] = ACTIONS(2125), - [aux_sym_ciphers_token1] = ACTIONS(2125), - [aux_sym_cipher_token1] = ACTIONS(2127), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2125), - [aux_sym_compression_token1] = ACTIONS(2125), - [aux_sym_connection_attempts_token1] = ACTIONS(2125), - [aux_sym_connect_timeout_token1] = ACTIONS(2125), - [aux_sym_control_master_token1] = ACTIONS(2125), - [aux_sym_control_path_token1] = ACTIONS(2125), - [aux_sym_control_persist_token1] = ACTIONS(2125), - [aux_sym_dynamic_forward_token1] = ACTIONS(2125), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2125), - [aux_sym_escape_char_token1] = ACTIONS(2125), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2125), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2125), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2125), - [aux_sym_forward_agent_token1] = ACTIONS(2125), - [aux_sym_forward_x11_token1] = ACTIONS(2127), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2125), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2125), - [aux_sym_gateway_ports_token1] = ACTIONS(2125), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2125), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2125), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2125), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2125), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2125), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2125), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2125), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2125), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2125), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2125), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2125), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2125), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2125), - [aux_sym_host_key_alias_token1] = ACTIONS(2125), - [aux_sym_hostname_token1] = ACTIONS(2125), - [aux_sym_identities_only_token1] = ACTIONS(2125), - [aux_sym_identity_agent_token1] = ACTIONS(2125), - [aux_sym_identity_file_token1] = ACTIONS(2125), - [aux_sym_ignore_unknown_token1] = ACTIONS(2125), - [aux_sym_include_token1] = ACTIONS(2125), - [aux_sym_ip_qos_token1] = ACTIONS(2125), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2125), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2125), - [aux_sym_kex_algorithms_token1] = ACTIONS(2125), - [aux_sym_known_hosts_command_token1] = ACTIONS(2125), - [aux_sym_local_command_token1] = ACTIONS(2125), - [aux_sym_local_forward_token1] = ACTIONS(2125), - [aux_sym_log_level_token1] = ACTIONS(2125), - [aux_sym_log_verbose_token1] = ACTIONS(2125), - [aux_sym_macs_token1] = ACTIONS(2125), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2125), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2125), - [aux_sym_password_authentication_token1] = ACTIONS(2125), - [aux_sym_permit_local_command_token1] = ACTIONS(2125), - [aux_sym_permit_remote_open_token1] = ACTIONS(2125), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2125), - [aux_sym_port_token1] = ACTIONS(2125), - [aux_sym_preferred_authentications_token1] = ACTIONS(2125), - [aux_sym_protocol_token1] = ACTIONS(2125), - [aux_sym_proxy_command_token1] = ACTIONS(2125), - [aux_sym_proxy_jump_token1] = ACTIONS(2125), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2125), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2125), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2125), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2125), - [aux_sym_rekey_limit_token1] = ACTIONS(2125), - [aux_sym_remote_command_token1] = ACTIONS(2125), - [aux_sym_remote_forward_token1] = ACTIONS(2125), - [aux_sym_request_tty_token1] = ACTIONS(2125), - [aux_sym_required_rsa_size_token1] = ACTIONS(2125), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2125), - [aux_sym_security_key_provider_token1] = ACTIONS(2125), - [aux_sym_send_env_token1] = ACTIONS(2125), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2125), - [aux_sym_server_alive_interval_token1] = ACTIONS(2125), - [aux_sym_session_type_token1] = ACTIONS(2125), - [aux_sym_set_env_token1] = ACTIONS(2125), - [aux_sym_stdin_null_token1] = ACTIONS(2125), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2125), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2125), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2125), - [aux_sym_syslog_facility_token1] = ACTIONS(2125), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2125), - [aux_sym_keep_alive_token1] = ACTIONS(2125), - [aux_sym_tunnel_token1] = ACTIONS(2127), - [aux_sym_tunnel_device_token1] = ACTIONS(2125), - [aux_sym_update_host_keys_token1] = ACTIONS(2125), - [aux_sym_use_keychain_token1] = ACTIONS(2125), - [aux_sym_use_roaming_token1] = ACTIONS(2125), - [aux_sym_user_token1] = ACTIONS(2127), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2125), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2125), - [aux_sym_visual_host_key_token1] = ACTIONS(2125), - [aux_sym_xauth_location_token1] = ACTIONS(2125), + [ts_builtin_sym_end] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2132), + [aux_sym_match_token1] = ACTIONS(2132), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2132), + [aux_sym_address_family_token1] = ACTIONS(2132), + [aux_sym_batch_mode_token1] = ACTIONS(2132), + [aux_sym_bind_address_token1] = ACTIONS(2132), + [aux_sym_bind_interface_token1] = ACTIONS(2132), + [aux_sym_canonical_domains_token1] = ACTIONS(2132), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2132), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2132), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2132), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2132), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2132), + [aux_sym_certificate_file_token1] = ACTIONS(2132), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2132), + [aux_sym_check_host_ip_token1] = ACTIONS(2132), + [aux_sym_ciphers_token1] = ACTIONS(2132), + [aux_sym_cipher_token1] = ACTIONS(2134), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2132), + [aux_sym_compression_token1] = ACTIONS(2132), + [aux_sym_connection_attempts_token1] = ACTIONS(2132), + [aux_sym_connect_timeout_token1] = ACTIONS(2132), + [aux_sym_control_master_token1] = ACTIONS(2132), + [aux_sym_control_path_token1] = ACTIONS(2132), + [aux_sym_control_persist_token1] = ACTIONS(2132), + [aux_sym_dynamic_forward_token1] = ACTIONS(2132), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2132), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2132), + [aux_sym_escape_char_token1] = ACTIONS(2132), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2132), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2132), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2132), + [aux_sym_forward_agent_token1] = ACTIONS(2132), + [aux_sym_forward_x11_token1] = ACTIONS(2134), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2132), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2132), + [aux_sym_gateway_ports_token1] = ACTIONS(2132), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2132), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2132), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2132), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2132), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2132), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2132), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2132), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2132), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2132), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2132), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2132), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2132), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2132), + [aux_sym_host_key_alias_token1] = ACTIONS(2132), + [aux_sym_hostname_token1] = ACTIONS(2132), + [aux_sym_identities_only_token1] = ACTIONS(2132), + [aux_sym_identity_agent_token1] = ACTIONS(2132), + [aux_sym_identity_file_token1] = ACTIONS(2132), + [aux_sym_ignore_unknown_token1] = ACTIONS(2132), + [aux_sym_include_token1] = ACTIONS(2132), + [aux_sym_ip_qos_token1] = ACTIONS(2132), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2132), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2132), + [aux_sym_kex_algorithms_token1] = ACTIONS(2132), + [aux_sym_known_hosts_command_token1] = ACTIONS(2132), + [aux_sym_local_command_token1] = ACTIONS(2132), + [aux_sym_local_forward_token1] = ACTIONS(2132), + [aux_sym_log_level_token1] = ACTIONS(2132), + [aux_sym_log_verbose_token1] = ACTIONS(2132), + [aux_sym_macs_token1] = ACTIONS(2132), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2132), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2132), + [aux_sym_password_authentication_token1] = ACTIONS(2132), + [aux_sym_permit_local_command_token1] = ACTIONS(2132), + [aux_sym_permit_remote_open_token1] = ACTIONS(2132), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2132), + [aux_sym_port_token1] = ACTIONS(2132), + [aux_sym_preferred_authentications_token1] = ACTIONS(2132), + [aux_sym_protocol_token1] = ACTIONS(2132), + [aux_sym_proxy_command_token1] = ACTIONS(2132), + [aux_sym_proxy_jump_token1] = ACTIONS(2132), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2132), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2132), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2132), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2132), + [aux_sym_rekey_limit_token1] = ACTIONS(2132), + [aux_sym_remote_command_token1] = ACTIONS(2132), + [aux_sym_remote_forward_token1] = ACTIONS(2132), + [aux_sym_request_tty_token1] = ACTIONS(2132), + [aux_sym_required_rsa_size_token1] = ACTIONS(2132), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2132), + [aux_sym_security_key_provider_token1] = ACTIONS(2132), + [aux_sym_send_env_token1] = ACTIONS(2132), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2132), + [aux_sym_server_alive_interval_token1] = ACTIONS(2132), + [aux_sym_session_type_token1] = ACTIONS(2132), + [aux_sym_set_env_token1] = ACTIONS(2132), + [aux_sym_stdin_null_token1] = ACTIONS(2132), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2132), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2132), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2132), + [aux_sym_syslog_facility_token1] = ACTIONS(2132), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2132), + [aux_sym_keep_alive_token1] = ACTIONS(2132), + [aux_sym_tunnel_token1] = ACTIONS(2134), + [aux_sym_tunnel_device_token1] = ACTIONS(2132), + [aux_sym_update_host_keys_token1] = ACTIONS(2132), + [aux_sym_use_keychain_token1] = ACTIONS(2132), + [aux_sym_use_roaming_token1] = ACTIONS(2132), + [aux_sym_user_token1] = ACTIONS(2134), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2132), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2132), + [aux_sym_visual_host_key_token1] = ACTIONS(2132), + [aux_sym_xauth_location_token1] = ACTIONS(2132), }, [274] = { - [ts_builtin_sym_end] = ACTIONS(2129), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2131), - [anon_sym_DQUOTE] = ACTIONS(2133), - [aux_sym_match_token1] = ACTIONS(2129), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2129), - [aux_sym_address_family_token1] = ACTIONS(2129), - [aux_sym_batch_mode_token1] = ACTIONS(2129), - [aux_sym_bind_address_token1] = ACTIONS(2129), - [aux_sym_bind_interface_token1] = ACTIONS(2129), - [aux_sym_canonical_domains_token1] = ACTIONS(2129), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2129), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2129), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2129), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2129), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2129), - [aux_sym_certificate_file_token1] = ACTIONS(2129), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2129), - [aux_sym_check_host_ip_token1] = ACTIONS(2129), - [aux_sym_ciphers_token1] = ACTIONS(2129), - [aux_sym_cipher_token1] = ACTIONS(2131), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2129), - [aux_sym_compression_token1] = ACTIONS(2129), - [aux_sym_connection_attempts_token1] = ACTIONS(2129), - [aux_sym_connect_timeout_token1] = ACTIONS(2129), - [aux_sym_control_master_token1] = ACTIONS(2129), - [aux_sym_control_path_token1] = ACTIONS(2129), - [aux_sym_control_persist_token1] = ACTIONS(2129), - [aux_sym_dynamic_forward_token1] = ACTIONS(2129), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2129), - [aux_sym_escape_char_token1] = ACTIONS(2129), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2129), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2129), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2129), - [aux_sym_forward_agent_token1] = ACTIONS(2129), - [aux_sym_forward_x11_token1] = ACTIONS(2131), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2129), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2129), - [aux_sym_gateway_ports_token1] = ACTIONS(2129), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2129), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2129), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2129), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2129), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2129), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2129), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2129), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2129), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2129), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2129), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2129), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2129), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2129), - [aux_sym_host_key_alias_token1] = ACTIONS(2129), - [aux_sym_hostname_token1] = ACTIONS(2129), - [aux_sym_identities_only_token1] = ACTIONS(2129), - [aux_sym_identity_agent_token1] = ACTIONS(2129), - [aux_sym_identity_file_token1] = ACTIONS(2129), - [aux_sym_ignore_unknown_token1] = ACTIONS(2129), - [aux_sym_include_token1] = ACTIONS(2129), - [aux_sym_ip_qos_token1] = ACTIONS(2129), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2129), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2129), - [aux_sym_kex_algorithms_token1] = ACTIONS(2129), - [aux_sym_known_hosts_command_token1] = ACTIONS(2129), - [aux_sym_local_command_token1] = ACTIONS(2129), - [aux_sym_local_forward_token1] = ACTIONS(2129), - [aux_sym_log_level_token1] = ACTIONS(2129), - [aux_sym_log_verbose_token1] = ACTIONS(2129), - [aux_sym_macs_token1] = ACTIONS(2129), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2129), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2129), - [aux_sym_password_authentication_token1] = ACTIONS(2129), - [aux_sym_permit_local_command_token1] = ACTIONS(2129), - [aux_sym_permit_remote_open_token1] = ACTIONS(2129), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2129), - [aux_sym_port_token1] = ACTIONS(2129), - [aux_sym_preferred_authentications_token1] = ACTIONS(2129), - [aux_sym_protocol_token1] = ACTIONS(2129), - [aux_sym_proxy_command_token1] = ACTIONS(2129), - [aux_sym_proxy_jump_token1] = ACTIONS(2129), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2129), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2129), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2129), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2129), - [aux_sym_rekey_limit_token1] = ACTIONS(2129), - [aux_sym_remote_command_token1] = ACTIONS(2129), - [aux_sym_remote_forward_token1] = ACTIONS(2129), - [aux_sym_request_tty_token1] = ACTIONS(2129), - [aux_sym_required_rsa_size_token1] = ACTIONS(2129), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2129), - [aux_sym_security_key_provider_token1] = ACTIONS(2129), - [aux_sym_send_env_token1] = ACTIONS(2129), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2129), - [aux_sym_server_alive_interval_token1] = ACTIONS(2129), - [aux_sym_session_type_token1] = ACTIONS(2129), - [aux_sym_set_env_token1] = ACTIONS(2129), - [aux_sym_stdin_null_token1] = ACTIONS(2129), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2129), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2129), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2129), - [aux_sym_syslog_facility_token1] = ACTIONS(2129), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2129), - [aux_sym_keep_alive_token1] = ACTIONS(2129), - [aux_sym_tunnel_token1] = ACTIONS(2131), - [aux_sym_tunnel_device_token1] = ACTIONS(2129), - [aux_sym_update_host_keys_token1] = ACTIONS(2129), - [aux_sym_use_keychain_token1] = ACTIONS(2129), - [aux_sym_use_roaming_token1] = ACTIONS(2129), - [aux_sym_user_token1] = ACTIONS(2131), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2129), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2129), - [aux_sym_visual_host_key_token1] = ACTIONS(2129), - [aux_sym_xauth_location_token1] = ACTIONS(2129), + [ts_builtin_sym_end] = ACTIONS(2136), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(2140), + [aux_sym_match_token1] = ACTIONS(2136), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2136), + [aux_sym_address_family_token1] = ACTIONS(2136), + [aux_sym_batch_mode_token1] = ACTIONS(2136), + [aux_sym_bind_address_token1] = ACTIONS(2136), + [aux_sym_bind_interface_token1] = ACTIONS(2136), + [aux_sym_canonical_domains_token1] = ACTIONS(2136), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2136), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2136), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2136), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2136), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2136), + [aux_sym_certificate_file_token1] = ACTIONS(2136), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2136), + [aux_sym_check_host_ip_token1] = ACTIONS(2136), + [aux_sym_ciphers_token1] = ACTIONS(2136), + [aux_sym_cipher_token1] = ACTIONS(2138), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2136), + [aux_sym_compression_token1] = ACTIONS(2136), + [aux_sym_connection_attempts_token1] = ACTIONS(2136), + [aux_sym_connect_timeout_token1] = ACTIONS(2136), + [aux_sym_control_master_token1] = ACTIONS(2136), + [aux_sym_control_path_token1] = ACTIONS(2136), + [aux_sym_control_persist_token1] = ACTIONS(2136), + [aux_sym_dynamic_forward_token1] = ACTIONS(2136), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2136), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2136), + [aux_sym_escape_char_token1] = ACTIONS(2136), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2136), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2136), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2136), + [aux_sym_forward_agent_token1] = ACTIONS(2136), + [aux_sym_forward_x11_token1] = ACTIONS(2138), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2136), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2136), + [aux_sym_gateway_ports_token1] = ACTIONS(2136), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2136), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2136), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2136), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2136), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2136), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2136), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2136), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2136), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2136), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2136), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2136), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2136), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2136), + [aux_sym_host_key_alias_token1] = ACTIONS(2136), + [aux_sym_hostname_token1] = ACTIONS(2136), + [aux_sym_identities_only_token1] = ACTIONS(2136), + [aux_sym_identity_agent_token1] = ACTIONS(2136), + [aux_sym_identity_file_token1] = ACTIONS(2136), + [aux_sym_ignore_unknown_token1] = ACTIONS(2136), + [aux_sym_include_token1] = ACTIONS(2136), + [aux_sym_ip_qos_token1] = ACTIONS(2136), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2136), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2136), + [aux_sym_kex_algorithms_token1] = ACTIONS(2136), + [aux_sym_known_hosts_command_token1] = ACTIONS(2136), + [aux_sym_local_command_token1] = ACTIONS(2136), + [aux_sym_local_forward_token1] = ACTIONS(2136), + [aux_sym_log_level_token1] = ACTIONS(2136), + [aux_sym_log_verbose_token1] = ACTIONS(2136), + [aux_sym_macs_token1] = ACTIONS(2136), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2136), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2136), + [aux_sym_password_authentication_token1] = ACTIONS(2136), + [aux_sym_permit_local_command_token1] = ACTIONS(2136), + [aux_sym_permit_remote_open_token1] = ACTIONS(2136), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2136), + [aux_sym_port_token1] = ACTIONS(2136), + [aux_sym_preferred_authentications_token1] = ACTIONS(2136), + [aux_sym_protocol_token1] = ACTIONS(2136), + [aux_sym_proxy_command_token1] = ACTIONS(2136), + [aux_sym_proxy_jump_token1] = ACTIONS(2136), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2136), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2136), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2136), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2136), + [aux_sym_rekey_limit_token1] = ACTIONS(2136), + [aux_sym_remote_command_token1] = ACTIONS(2136), + [aux_sym_remote_forward_token1] = ACTIONS(2136), + [aux_sym_request_tty_token1] = ACTIONS(2136), + [aux_sym_required_rsa_size_token1] = ACTIONS(2136), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2136), + [aux_sym_security_key_provider_token1] = ACTIONS(2136), + [aux_sym_send_env_token1] = ACTIONS(2136), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2136), + [aux_sym_server_alive_interval_token1] = ACTIONS(2136), + [aux_sym_session_type_token1] = ACTIONS(2136), + [aux_sym_set_env_token1] = ACTIONS(2136), + [aux_sym_stdin_null_token1] = ACTIONS(2136), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2136), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2136), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2136), + [aux_sym_syslog_facility_token1] = ACTIONS(2136), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2136), + [aux_sym_keep_alive_token1] = ACTIONS(2136), + [aux_sym_tunnel_token1] = ACTIONS(2138), + [aux_sym_tunnel_device_token1] = ACTIONS(2136), + [aux_sym_update_host_keys_token1] = ACTIONS(2136), + [aux_sym_use_keychain_token1] = ACTIONS(2136), + [aux_sym_use_roaming_token1] = ACTIONS(2136), + [aux_sym_user_token1] = ACTIONS(2138), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2136), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2136), + [aux_sym_visual_host_key_token1] = ACTIONS(2136), + [aux_sym_xauth_location_token1] = ACTIONS(2136), }, [275] = { - [ts_builtin_sym_end] = ACTIONS(2135), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2137), - [anon_sym_DQUOTE] = ACTIONS(2135), - [aux_sym_match_token1] = ACTIONS(2135), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2135), - [aux_sym_address_family_token1] = ACTIONS(2135), - [aux_sym_batch_mode_token1] = ACTIONS(2135), - [aux_sym_bind_address_token1] = ACTIONS(2135), - [aux_sym_bind_interface_token1] = ACTIONS(2135), - [aux_sym_canonical_domains_token1] = ACTIONS(2135), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2135), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2135), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2135), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2135), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2135), - [aux_sym_certificate_file_token1] = ACTIONS(2135), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2135), - [aux_sym_check_host_ip_token1] = ACTIONS(2135), - [aux_sym_ciphers_token1] = ACTIONS(2135), - [aux_sym_cipher_token1] = ACTIONS(2137), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2135), - [aux_sym_compression_token1] = ACTIONS(2135), - [aux_sym_connection_attempts_token1] = ACTIONS(2135), - [aux_sym_connect_timeout_token1] = ACTIONS(2135), - [aux_sym_control_master_token1] = ACTIONS(2135), - [aux_sym_control_path_token1] = ACTIONS(2135), - [aux_sym_control_persist_token1] = ACTIONS(2135), - [aux_sym_dynamic_forward_token1] = ACTIONS(2135), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2135), - [aux_sym_escape_char_token1] = ACTIONS(2135), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2135), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2135), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2135), - [aux_sym_forward_agent_token1] = ACTIONS(2135), - [aux_sym_forward_x11_token1] = ACTIONS(2137), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2135), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2135), - [aux_sym_gateway_ports_token1] = ACTIONS(2135), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2135), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2135), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2135), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2135), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2135), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2135), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2135), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2135), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2135), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2135), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2135), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2135), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2135), - [aux_sym_host_key_alias_token1] = ACTIONS(2135), - [aux_sym_hostname_token1] = ACTIONS(2135), - [aux_sym_identities_only_token1] = ACTIONS(2135), - [aux_sym_identity_agent_token1] = ACTIONS(2135), - [aux_sym_identity_file_token1] = ACTIONS(2135), - [aux_sym_ignore_unknown_token1] = ACTIONS(2135), - [aux_sym_include_token1] = ACTIONS(2135), - [aux_sym_ip_qos_token1] = ACTIONS(2135), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2135), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2135), - [aux_sym_kex_algorithms_token1] = ACTIONS(2135), - [aux_sym_known_hosts_command_token1] = ACTIONS(2135), - [aux_sym_local_command_token1] = ACTIONS(2135), - [aux_sym_local_forward_token1] = ACTIONS(2135), - [aux_sym_log_level_token1] = ACTIONS(2135), - [aux_sym_log_verbose_token1] = ACTIONS(2135), - [aux_sym_macs_token1] = ACTIONS(2135), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2135), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2135), - [aux_sym_password_authentication_token1] = ACTIONS(2135), - [aux_sym_permit_local_command_token1] = ACTIONS(2135), - [aux_sym_permit_remote_open_token1] = ACTIONS(2135), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2135), - [aux_sym_port_token1] = ACTIONS(2135), - [aux_sym_preferred_authentications_token1] = ACTIONS(2135), - [aux_sym_protocol_token1] = ACTIONS(2135), - [aux_sym_proxy_command_token1] = ACTIONS(2135), - [aux_sym_proxy_jump_token1] = ACTIONS(2135), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2135), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2135), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2135), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2135), - [aux_sym_rekey_limit_token1] = ACTIONS(2135), - [aux_sym_remote_command_token1] = ACTIONS(2135), - [aux_sym_remote_forward_token1] = ACTIONS(2135), - [aux_sym_request_tty_token1] = ACTIONS(2135), - [aux_sym_required_rsa_size_token1] = ACTIONS(2135), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2135), - [aux_sym_security_key_provider_token1] = ACTIONS(2135), - [aux_sym_send_env_token1] = ACTIONS(2135), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2135), - [aux_sym_server_alive_interval_token1] = ACTIONS(2135), - [aux_sym_session_type_token1] = ACTIONS(2135), - [aux_sym_set_env_token1] = ACTIONS(2135), - [aux_sym_stdin_null_token1] = ACTIONS(2135), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2135), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2135), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2135), - [aux_sym_syslog_facility_token1] = ACTIONS(2135), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2135), - [aux_sym_keep_alive_token1] = ACTIONS(2135), - [aux_sym_tunnel_token1] = ACTIONS(2137), - [aux_sym_tunnel_device_token1] = ACTIONS(2135), - [aux_sym_update_host_keys_token1] = ACTIONS(2135), - [aux_sym_use_keychain_token1] = ACTIONS(2135), - [aux_sym_use_roaming_token1] = ACTIONS(2135), - [aux_sym_user_token1] = ACTIONS(2137), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2135), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2135), - [aux_sym_visual_host_key_token1] = ACTIONS(2135), - [aux_sym_xauth_location_token1] = ACTIONS(2135), + [ts_builtin_sym_end] = ACTIONS(2142), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2144), + [anon_sym_DQUOTE] = ACTIONS(2142), + [aux_sym_match_token1] = ACTIONS(2142), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2142), + [aux_sym_address_family_token1] = ACTIONS(2142), + [aux_sym_batch_mode_token1] = ACTIONS(2142), + [aux_sym_bind_address_token1] = ACTIONS(2142), + [aux_sym_bind_interface_token1] = ACTIONS(2142), + [aux_sym_canonical_domains_token1] = ACTIONS(2142), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2142), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2142), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2142), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2142), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2142), + [aux_sym_certificate_file_token1] = ACTIONS(2142), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2142), + [aux_sym_check_host_ip_token1] = ACTIONS(2142), + [aux_sym_ciphers_token1] = ACTIONS(2142), + [aux_sym_cipher_token1] = ACTIONS(2144), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2142), + [aux_sym_compression_token1] = ACTIONS(2142), + [aux_sym_connection_attempts_token1] = ACTIONS(2142), + [aux_sym_connect_timeout_token1] = ACTIONS(2142), + [aux_sym_control_master_token1] = ACTIONS(2142), + [aux_sym_control_path_token1] = ACTIONS(2142), + [aux_sym_control_persist_token1] = ACTIONS(2142), + [aux_sym_dynamic_forward_token1] = ACTIONS(2142), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2142), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2142), + [aux_sym_escape_char_token1] = ACTIONS(2142), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2142), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2142), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2142), + [aux_sym_forward_agent_token1] = ACTIONS(2142), + [aux_sym_forward_x11_token1] = ACTIONS(2144), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2142), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2142), + [aux_sym_gateway_ports_token1] = ACTIONS(2142), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2142), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2142), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2142), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2142), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2142), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2142), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2142), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2142), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2142), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2142), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2142), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2142), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2142), + [aux_sym_host_key_alias_token1] = ACTIONS(2142), + [aux_sym_hostname_token1] = ACTIONS(2142), + [aux_sym_identities_only_token1] = ACTIONS(2142), + [aux_sym_identity_agent_token1] = ACTIONS(2142), + [aux_sym_identity_file_token1] = ACTIONS(2142), + [aux_sym_ignore_unknown_token1] = ACTIONS(2142), + [aux_sym_include_token1] = ACTIONS(2142), + [aux_sym_ip_qos_token1] = ACTIONS(2142), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2142), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2142), + [aux_sym_kex_algorithms_token1] = ACTIONS(2142), + [aux_sym_known_hosts_command_token1] = ACTIONS(2142), + [aux_sym_local_command_token1] = ACTIONS(2142), + [aux_sym_local_forward_token1] = ACTIONS(2142), + [aux_sym_log_level_token1] = ACTIONS(2142), + [aux_sym_log_verbose_token1] = ACTIONS(2142), + [aux_sym_macs_token1] = ACTIONS(2142), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2142), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2142), + [aux_sym_password_authentication_token1] = ACTIONS(2142), + [aux_sym_permit_local_command_token1] = ACTIONS(2142), + [aux_sym_permit_remote_open_token1] = ACTIONS(2142), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2142), + [aux_sym_port_token1] = ACTIONS(2142), + [aux_sym_preferred_authentications_token1] = ACTIONS(2142), + [aux_sym_protocol_token1] = ACTIONS(2142), + [aux_sym_proxy_command_token1] = ACTIONS(2142), + [aux_sym_proxy_jump_token1] = ACTIONS(2142), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2142), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2142), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2142), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2142), + [aux_sym_rekey_limit_token1] = ACTIONS(2142), + [aux_sym_remote_command_token1] = ACTIONS(2142), + [aux_sym_remote_forward_token1] = ACTIONS(2142), + [aux_sym_request_tty_token1] = ACTIONS(2142), + [aux_sym_required_rsa_size_token1] = ACTIONS(2142), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2142), + [aux_sym_security_key_provider_token1] = ACTIONS(2142), + [aux_sym_send_env_token1] = ACTIONS(2142), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2142), + [aux_sym_server_alive_interval_token1] = ACTIONS(2142), + [aux_sym_session_type_token1] = ACTIONS(2142), + [aux_sym_set_env_token1] = ACTIONS(2142), + [aux_sym_stdin_null_token1] = ACTIONS(2142), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2142), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2142), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2142), + [aux_sym_syslog_facility_token1] = ACTIONS(2142), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2142), + [aux_sym_keep_alive_token1] = ACTIONS(2142), + [aux_sym_tunnel_token1] = ACTIONS(2144), + [aux_sym_tunnel_device_token1] = ACTIONS(2142), + [aux_sym_update_host_keys_token1] = ACTIONS(2142), + [aux_sym_use_keychain_token1] = ACTIONS(2142), + [aux_sym_use_roaming_token1] = ACTIONS(2142), + [aux_sym_user_token1] = ACTIONS(2144), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2142), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2142), + [aux_sym_visual_host_key_token1] = ACTIONS(2142), + [aux_sym_xauth_location_token1] = ACTIONS(2142), }, [276] = { - [ts_builtin_sym_end] = ACTIONS(2139), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2141), - [anon_sym_DQUOTE] = ACTIONS(2143), - [aux_sym_match_token1] = ACTIONS(2139), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2139), - [aux_sym_address_family_token1] = ACTIONS(2139), - [aux_sym_batch_mode_token1] = ACTIONS(2139), - [aux_sym_bind_address_token1] = ACTIONS(2139), - [aux_sym_bind_interface_token1] = ACTIONS(2139), - [aux_sym_canonical_domains_token1] = ACTIONS(2139), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2139), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2139), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2139), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2139), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2139), - [aux_sym_certificate_file_token1] = ACTIONS(2139), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2139), - [aux_sym_check_host_ip_token1] = ACTIONS(2139), - [aux_sym_ciphers_token1] = ACTIONS(2139), - [aux_sym_cipher_token1] = ACTIONS(2141), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2139), - [aux_sym_compression_token1] = ACTIONS(2139), - [aux_sym_connection_attempts_token1] = ACTIONS(2139), - [aux_sym_connect_timeout_token1] = ACTIONS(2139), - [aux_sym_control_master_token1] = ACTIONS(2139), - [aux_sym_control_path_token1] = ACTIONS(2139), - [aux_sym_control_persist_token1] = ACTIONS(2139), - [aux_sym_dynamic_forward_token1] = ACTIONS(2139), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2139), - [aux_sym_escape_char_token1] = ACTIONS(2139), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2139), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2139), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2139), - [aux_sym_forward_agent_token1] = ACTIONS(2139), - [aux_sym_forward_x11_token1] = ACTIONS(2141), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2139), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2139), - [aux_sym_gateway_ports_token1] = ACTIONS(2139), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2139), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2139), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2139), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2139), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2139), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2139), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2139), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2139), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2139), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2139), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2139), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2139), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2139), - [aux_sym_host_key_alias_token1] = ACTIONS(2139), - [aux_sym_hostname_token1] = ACTIONS(2139), - [aux_sym_identities_only_token1] = ACTIONS(2139), - [aux_sym_identity_agent_token1] = ACTIONS(2139), - [aux_sym_identity_file_token1] = ACTIONS(2139), - [aux_sym_ignore_unknown_token1] = ACTIONS(2139), - [aux_sym_include_token1] = ACTIONS(2139), - [aux_sym_ip_qos_token1] = ACTIONS(2139), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2139), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2139), - [aux_sym_kex_algorithms_token1] = ACTIONS(2139), - [aux_sym_known_hosts_command_token1] = ACTIONS(2139), - [aux_sym_local_command_token1] = ACTIONS(2139), - [aux_sym_local_forward_token1] = ACTIONS(2139), - [aux_sym_log_level_token1] = ACTIONS(2139), - [aux_sym_log_verbose_token1] = ACTIONS(2139), - [aux_sym_macs_token1] = ACTIONS(2139), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2139), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2139), - [aux_sym_password_authentication_token1] = ACTIONS(2139), - [aux_sym_permit_local_command_token1] = ACTIONS(2139), - [aux_sym_permit_remote_open_token1] = ACTIONS(2139), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2139), - [aux_sym_port_token1] = ACTIONS(2139), - [aux_sym_preferred_authentications_token1] = ACTIONS(2139), - [aux_sym_protocol_token1] = ACTIONS(2139), - [aux_sym_proxy_command_token1] = ACTIONS(2139), - [aux_sym_proxy_jump_token1] = ACTIONS(2139), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2139), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2139), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2139), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2139), - [aux_sym_rekey_limit_token1] = ACTIONS(2139), - [aux_sym_remote_command_token1] = ACTIONS(2139), - [aux_sym_remote_forward_token1] = ACTIONS(2139), - [aux_sym_request_tty_token1] = ACTIONS(2139), - [aux_sym_required_rsa_size_token1] = ACTIONS(2139), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2139), - [aux_sym_security_key_provider_token1] = ACTIONS(2139), - [aux_sym_send_env_token1] = ACTIONS(2139), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2139), - [aux_sym_server_alive_interval_token1] = ACTIONS(2139), - [aux_sym_session_type_token1] = ACTIONS(2139), - [aux_sym_set_env_token1] = ACTIONS(2139), - [aux_sym_stdin_null_token1] = ACTIONS(2139), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2139), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2139), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2139), - [aux_sym_syslog_facility_token1] = ACTIONS(2139), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2139), - [aux_sym_keep_alive_token1] = ACTIONS(2139), - [aux_sym_tunnel_token1] = ACTIONS(2141), - [aux_sym_tunnel_device_token1] = ACTIONS(2139), - [aux_sym_update_host_keys_token1] = ACTIONS(2139), - [aux_sym_use_keychain_token1] = ACTIONS(2139), - [aux_sym_use_roaming_token1] = ACTIONS(2139), - [aux_sym_user_token1] = ACTIONS(2141), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2139), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2139), - [aux_sym_visual_host_key_token1] = ACTIONS(2139), - [aux_sym_xauth_location_token1] = ACTIONS(2139), + [ts_builtin_sym_end] = ACTIONS(2146), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2148), + [anon_sym_DQUOTE] = ACTIONS(2150), + [aux_sym_match_token1] = ACTIONS(2146), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2146), + [aux_sym_address_family_token1] = ACTIONS(2146), + [aux_sym_batch_mode_token1] = ACTIONS(2146), + [aux_sym_bind_address_token1] = ACTIONS(2146), + [aux_sym_bind_interface_token1] = ACTIONS(2146), + [aux_sym_canonical_domains_token1] = ACTIONS(2146), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2146), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2146), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2146), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2146), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2146), + [aux_sym_certificate_file_token1] = ACTIONS(2146), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2146), + [aux_sym_check_host_ip_token1] = ACTIONS(2146), + [aux_sym_ciphers_token1] = ACTIONS(2146), + [aux_sym_cipher_token1] = ACTIONS(2148), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2146), + [aux_sym_compression_token1] = ACTIONS(2146), + [aux_sym_connection_attempts_token1] = ACTIONS(2146), + [aux_sym_connect_timeout_token1] = ACTIONS(2146), + [aux_sym_control_master_token1] = ACTIONS(2146), + [aux_sym_control_path_token1] = ACTIONS(2146), + [aux_sym_control_persist_token1] = ACTIONS(2146), + [aux_sym_dynamic_forward_token1] = ACTIONS(2146), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2146), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2146), + [aux_sym_escape_char_token1] = ACTIONS(2146), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2146), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2146), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2146), + [aux_sym_forward_agent_token1] = ACTIONS(2146), + [aux_sym_forward_x11_token1] = ACTIONS(2148), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2146), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2146), + [aux_sym_gateway_ports_token1] = ACTIONS(2146), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2146), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2146), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2146), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2146), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2146), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2146), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2146), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2146), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2146), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2146), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2146), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2146), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2146), + [aux_sym_host_key_alias_token1] = ACTIONS(2146), + [aux_sym_hostname_token1] = ACTIONS(2146), + [aux_sym_identities_only_token1] = ACTIONS(2146), + [aux_sym_identity_agent_token1] = ACTIONS(2146), + [aux_sym_identity_file_token1] = ACTIONS(2146), + [aux_sym_ignore_unknown_token1] = ACTIONS(2146), + [aux_sym_include_token1] = ACTIONS(2146), + [aux_sym_ip_qos_token1] = ACTIONS(2146), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2146), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2146), + [aux_sym_kex_algorithms_token1] = ACTIONS(2146), + [aux_sym_known_hosts_command_token1] = ACTIONS(2146), + [aux_sym_local_command_token1] = ACTIONS(2146), + [aux_sym_local_forward_token1] = ACTIONS(2146), + [aux_sym_log_level_token1] = ACTIONS(2146), + [aux_sym_log_verbose_token1] = ACTIONS(2146), + [aux_sym_macs_token1] = ACTIONS(2146), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2146), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2146), + [aux_sym_password_authentication_token1] = ACTIONS(2146), + [aux_sym_permit_local_command_token1] = ACTIONS(2146), + [aux_sym_permit_remote_open_token1] = ACTIONS(2146), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2146), + [aux_sym_port_token1] = ACTIONS(2146), + [aux_sym_preferred_authentications_token1] = ACTIONS(2146), + [aux_sym_protocol_token1] = ACTIONS(2146), + [aux_sym_proxy_command_token1] = ACTIONS(2146), + [aux_sym_proxy_jump_token1] = ACTIONS(2146), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2146), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2146), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2146), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2146), + [aux_sym_rekey_limit_token1] = ACTIONS(2146), + [aux_sym_remote_command_token1] = ACTIONS(2146), + [aux_sym_remote_forward_token1] = ACTIONS(2146), + [aux_sym_request_tty_token1] = ACTIONS(2146), + [aux_sym_required_rsa_size_token1] = ACTIONS(2146), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2146), + [aux_sym_security_key_provider_token1] = ACTIONS(2146), + [aux_sym_send_env_token1] = ACTIONS(2146), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2146), + [aux_sym_server_alive_interval_token1] = ACTIONS(2146), + [aux_sym_session_type_token1] = ACTIONS(2146), + [aux_sym_set_env_token1] = ACTIONS(2146), + [aux_sym_stdin_null_token1] = ACTIONS(2146), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2146), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2146), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2146), + [aux_sym_syslog_facility_token1] = ACTIONS(2146), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2146), + [aux_sym_keep_alive_token1] = ACTIONS(2146), + [aux_sym_tunnel_token1] = ACTIONS(2148), + [aux_sym_tunnel_device_token1] = ACTIONS(2146), + [aux_sym_update_host_keys_token1] = ACTIONS(2146), + [aux_sym_use_keychain_token1] = ACTIONS(2146), + [aux_sym_use_roaming_token1] = ACTIONS(2146), + [aux_sym_user_token1] = ACTIONS(2148), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2146), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2146), + [aux_sym_visual_host_key_token1] = ACTIONS(2146), + [aux_sym_xauth_location_token1] = ACTIONS(2146), }, [277] = { - [ts_builtin_sym_end] = ACTIONS(2145), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2147), - [anon_sym_DQUOTE] = ACTIONS(2145), - [aux_sym_match_token1] = ACTIONS(2145), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2145), - [aux_sym_address_family_token1] = ACTIONS(2145), - [aux_sym_batch_mode_token1] = ACTIONS(2145), - [aux_sym_bind_address_token1] = ACTIONS(2145), - [aux_sym_bind_interface_token1] = ACTIONS(2145), - [aux_sym_canonical_domains_token1] = ACTIONS(2145), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2145), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2145), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2145), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2145), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2145), - [aux_sym_certificate_file_token1] = ACTIONS(2145), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2145), - [aux_sym_check_host_ip_token1] = ACTIONS(2145), - [aux_sym_ciphers_token1] = ACTIONS(2145), - [aux_sym_cipher_token1] = ACTIONS(2147), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2145), - [aux_sym_compression_token1] = ACTIONS(2145), - [aux_sym_connection_attempts_token1] = ACTIONS(2145), - [aux_sym_connect_timeout_token1] = ACTIONS(2145), - [aux_sym_control_master_token1] = ACTIONS(2145), - [aux_sym_control_path_token1] = ACTIONS(2145), - [aux_sym_control_persist_token1] = ACTIONS(2145), - [aux_sym_dynamic_forward_token1] = ACTIONS(2145), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2145), - [aux_sym_escape_char_token1] = ACTIONS(2145), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2145), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2145), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2145), - [aux_sym_forward_agent_token1] = ACTIONS(2145), - [aux_sym_forward_x11_token1] = ACTIONS(2147), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2145), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2145), - [aux_sym_gateway_ports_token1] = ACTIONS(2145), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2145), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2145), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2145), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2145), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2145), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2145), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2145), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2145), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2145), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2145), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2145), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2145), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2145), - [aux_sym_host_key_alias_token1] = ACTIONS(2145), - [aux_sym_hostname_token1] = ACTIONS(2145), - [aux_sym_identities_only_token1] = ACTIONS(2145), - [aux_sym_identity_agent_token1] = ACTIONS(2145), - [aux_sym_identity_file_token1] = ACTIONS(2145), - [aux_sym_ignore_unknown_token1] = ACTIONS(2145), - [aux_sym_include_token1] = ACTIONS(2145), - [aux_sym_ip_qos_token1] = ACTIONS(2145), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2145), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2145), - [aux_sym_kex_algorithms_token1] = ACTIONS(2145), - [aux_sym_known_hosts_command_token1] = ACTIONS(2145), - [aux_sym_local_command_token1] = ACTIONS(2145), - [aux_sym_local_forward_token1] = ACTIONS(2145), - [aux_sym_log_level_token1] = ACTIONS(2145), - [aux_sym_log_verbose_token1] = ACTIONS(2145), - [aux_sym_macs_token1] = ACTIONS(2145), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2145), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2145), - [aux_sym_password_authentication_token1] = ACTIONS(2145), - [aux_sym_permit_local_command_token1] = ACTIONS(2145), - [aux_sym_permit_remote_open_token1] = ACTIONS(2145), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2145), - [aux_sym_port_token1] = ACTIONS(2145), - [aux_sym_preferred_authentications_token1] = ACTIONS(2145), - [aux_sym_protocol_token1] = ACTIONS(2145), - [aux_sym_proxy_command_token1] = ACTIONS(2145), - [aux_sym_proxy_jump_token1] = ACTIONS(2145), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2145), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2145), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2145), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2145), - [aux_sym_rekey_limit_token1] = ACTIONS(2145), - [aux_sym_remote_command_token1] = ACTIONS(2145), - [aux_sym_remote_forward_token1] = ACTIONS(2145), - [aux_sym_request_tty_token1] = ACTIONS(2145), - [aux_sym_required_rsa_size_token1] = ACTIONS(2145), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2145), - [aux_sym_security_key_provider_token1] = ACTIONS(2145), - [aux_sym_send_env_token1] = ACTIONS(2145), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2145), - [aux_sym_server_alive_interval_token1] = ACTIONS(2145), - [aux_sym_session_type_token1] = ACTIONS(2145), - [aux_sym_set_env_token1] = ACTIONS(2145), - [aux_sym_stdin_null_token1] = ACTIONS(2145), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2145), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2145), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2145), - [aux_sym_syslog_facility_token1] = ACTIONS(2145), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2145), - [aux_sym_keep_alive_token1] = ACTIONS(2145), - [aux_sym_tunnel_token1] = ACTIONS(2147), - [aux_sym_tunnel_device_token1] = ACTIONS(2145), - [aux_sym_update_host_keys_token1] = ACTIONS(2145), - [aux_sym_use_keychain_token1] = ACTIONS(2145), - [aux_sym_use_roaming_token1] = ACTIONS(2145), - [aux_sym_user_token1] = ACTIONS(2147), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2145), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2145), - [aux_sym_visual_host_key_token1] = ACTIONS(2145), - [aux_sym_xauth_location_token1] = ACTIONS(2145), + [ts_builtin_sym_end] = ACTIONS(2152), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2154), + [anon_sym_DQUOTE] = ACTIONS(2152), + [aux_sym_match_token1] = ACTIONS(2152), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2152), + [aux_sym_address_family_token1] = ACTIONS(2152), + [aux_sym_batch_mode_token1] = ACTIONS(2152), + [aux_sym_bind_address_token1] = ACTIONS(2152), + [aux_sym_bind_interface_token1] = ACTIONS(2152), + [aux_sym_canonical_domains_token1] = ACTIONS(2152), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2152), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2152), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2152), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2152), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2152), + [aux_sym_certificate_file_token1] = ACTIONS(2152), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2152), + [aux_sym_check_host_ip_token1] = ACTIONS(2152), + [aux_sym_ciphers_token1] = ACTIONS(2152), + [aux_sym_cipher_token1] = ACTIONS(2154), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2152), + [aux_sym_compression_token1] = ACTIONS(2152), + [aux_sym_connection_attempts_token1] = ACTIONS(2152), + [aux_sym_connect_timeout_token1] = ACTIONS(2152), + [aux_sym_control_master_token1] = ACTIONS(2152), + [aux_sym_control_path_token1] = ACTIONS(2152), + [aux_sym_control_persist_token1] = ACTIONS(2152), + [aux_sym_dynamic_forward_token1] = ACTIONS(2152), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2152), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2152), + [aux_sym_escape_char_token1] = ACTIONS(2152), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2152), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2152), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2152), + [aux_sym_forward_agent_token1] = ACTIONS(2152), + [aux_sym_forward_x11_token1] = ACTIONS(2154), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2152), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2152), + [aux_sym_gateway_ports_token1] = ACTIONS(2152), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2152), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2152), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2152), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2152), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2152), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2152), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2152), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2152), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2152), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2152), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2152), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2152), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2152), + [aux_sym_host_key_alias_token1] = ACTIONS(2152), + [aux_sym_hostname_token1] = ACTIONS(2152), + [aux_sym_identities_only_token1] = ACTIONS(2152), + [aux_sym_identity_agent_token1] = ACTIONS(2152), + [aux_sym_identity_file_token1] = ACTIONS(2152), + [aux_sym_ignore_unknown_token1] = ACTIONS(2152), + [aux_sym_include_token1] = ACTIONS(2152), + [aux_sym_ip_qos_token1] = ACTIONS(2152), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2152), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2152), + [aux_sym_kex_algorithms_token1] = ACTIONS(2152), + [aux_sym_known_hosts_command_token1] = ACTIONS(2152), + [aux_sym_local_command_token1] = ACTIONS(2152), + [aux_sym_local_forward_token1] = ACTIONS(2152), + [aux_sym_log_level_token1] = ACTIONS(2152), + [aux_sym_log_verbose_token1] = ACTIONS(2152), + [aux_sym_macs_token1] = ACTIONS(2152), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2152), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2152), + [aux_sym_password_authentication_token1] = ACTIONS(2152), + [aux_sym_permit_local_command_token1] = ACTIONS(2152), + [aux_sym_permit_remote_open_token1] = ACTIONS(2152), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2152), + [aux_sym_port_token1] = ACTIONS(2152), + [aux_sym_preferred_authentications_token1] = ACTIONS(2152), + [aux_sym_protocol_token1] = ACTIONS(2152), + [aux_sym_proxy_command_token1] = ACTIONS(2152), + [aux_sym_proxy_jump_token1] = ACTIONS(2152), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2152), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2152), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2152), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2152), + [aux_sym_rekey_limit_token1] = ACTIONS(2152), + [aux_sym_remote_command_token1] = ACTIONS(2152), + [aux_sym_remote_forward_token1] = ACTIONS(2152), + [aux_sym_request_tty_token1] = ACTIONS(2152), + [aux_sym_required_rsa_size_token1] = ACTIONS(2152), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2152), + [aux_sym_security_key_provider_token1] = ACTIONS(2152), + [aux_sym_send_env_token1] = ACTIONS(2152), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2152), + [aux_sym_server_alive_interval_token1] = ACTIONS(2152), + [aux_sym_session_type_token1] = ACTIONS(2152), + [aux_sym_set_env_token1] = ACTIONS(2152), + [aux_sym_stdin_null_token1] = ACTIONS(2152), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2152), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2152), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2152), + [aux_sym_syslog_facility_token1] = ACTIONS(2152), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2152), + [aux_sym_keep_alive_token1] = ACTIONS(2152), + [aux_sym_tunnel_token1] = ACTIONS(2154), + [aux_sym_tunnel_device_token1] = ACTIONS(2152), + [aux_sym_update_host_keys_token1] = ACTIONS(2152), + [aux_sym_use_keychain_token1] = ACTIONS(2152), + [aux_sym_use_roaming_token1] = ACTIONS(2152), + [aux_sym_user_token1] = ACTIONS(2154), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2152), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2152), + [aux_sym_visual_host_key_token1] = ACTIONS(2152), + [aux_sym_xauth_location_token1] = ACTIONS(2152), }, [278] = { - [ts_builtin_sym_end] = ACTIONS(2149), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(2153), - [aux_sym_match_token1] = ACTIONS(2149), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2149), - [aux_sym_address_family_token1] = ACTIONS(2149), - [aux_sym_batch_mode_token1] = ACTIONS(2149), - [aux_sym_bind_address_token1] = ACTIONS(2149), - [aux_sym_bind_interface_token1] = ACTIONS(2149), - [aux_sym_canonical_domains_token1] = ACTIONS(2149), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2149), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2149), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2149), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2149), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2149), - [aux_sym_certificate_file_token1] = ACTIONS(2149), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2149), - [aux_sym_check_host_ip_token1] = ACTIONS(2149), - [aux_sym_ciphers_token1] = ACTIONS(2149), - [aux_sym_cipher_token1] = ACTIONS(2151), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2149), - [aux_sym_compression_token1] = ACTIONS(2149), - [aux_sym_connection_attempts_token1] = ACTIONS(2149), - [aux_sym_connect_timeout_token1] = ACTIONS(2149), - [aux_sym_control_master_token1] = ACTIONS(2149), - [aux_sym_control_path_token1] = ACTIONS(2149), - [aux_sym_control_persist_token1] = ACTIONS(2149), - [aux_sym_dynamic_forward_token1] = ACTIONS(2149), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2149), - [aux_sym_escape_char_token1] = ACTIONS(2149), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2149), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2149), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2149), - [aux_sym_forward_agent_token1] = ACTIONS(2149), - [aux_sym_forward_x11_token1] = ACTIONS(2151), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2149), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2149), - [aux_sym_gateway_ports_token1] = ACTIONS(2149), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2149), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2149), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2149), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2149), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2149), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2149), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2149), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2149), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2149), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2149), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2149), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2149), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2149), - [aux_sym_host_key_alias_token1] = ACTIONS(2149), - [aux_sym_hostname_token1] = ACTIONS(2149), - [aux_sym_identities_only_token1] = ACTIONS(2149), - [aux_sym_identity_agent_token1] = ACTIONS(2149), - [aux_sym_identity_file_token1] = ACTIONS(2149), - [aux_sym_ignore_unknown_token1] = ACTIONS(2149), - [aux_sym_include_token1] = ACTIONS(2149), - [aux_sym_ip_qos_token1] = ACTIONS(2149), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2149), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2149), - [aux_sym_kex_algorithms_token1] = ACTIONS(2149), - [aux_sym_known_hosts_command_token1] = ACTIONS(2149), - [aux_sym_local_command_token1] = ACTIONS(2149), - [aux_sym_local_forward_token1] = ACTIONS(2149), - [aux_sym_log_level_token1] = ACTIONS(2149), - [aux_sym_log_verbose_token1] = ACTIONS(2149), - [aux_sym_macs_token1] = ACTIONS(2149), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2149), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2149), - [aux_sym_password_authentication_token1] = ACTIONS(2149), - [aux_sym_permit_local_command_token1] = ACTIONS(2149), - [aux_sym_permit_remote_open_token1] = ACTIONS(2149), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2149), - [aux_sym_port_token1] = ACTIONS(2149), - [aux_sym_preferred_authentications_token1] = ACTIONS(2149), - [aux_sym_protocol_token1] = ACTIONS(2149), - [aux_sym_proxy_command_token1] = ACTIONS(2149), - [aux_sym_proxy_jump_token1] = ACTIONS(2149), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2149), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2149), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2149), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2149), - [aux_sym_rekey_limit_token1] = ACTIONS(2149), - [aux_sym_remote_command_token1] = ACTIONS(2149), - [aux_sym_remote_forward_token1] = ACTIONS(2149), - [aux_sym_request_tty_token1] = ACTIONS(2149), - [aux_sym_required_rsa_size_token1] = ACTIONS(2149), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2149), - [aux_sym_security_key_provider_token1] = ACTIONS(2149), - [aux_sym_send_env_token1] = ACTIONS(2149), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2149), - [aux_sym_server_alive_interval_token1] = ACTIONS(2149), - [aux_sym_session_type_token1] = ACTIONS(2149), - [aux_sym_set_env_token1] = ACTIONS(2149), - [aux_sym_stdin_null_token1] = ACTIONS(2149), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2149), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2149), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2149), - [aux_sym_syslog_facility_token1] = ACTIONS(2149), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2149), - [aux_sym_keep_alive_token1] = ACTIONS(2149), - [aux_sym_tunnel_token1] = ACTIONS(2151), - [aux_sym_tunnel_device_token1] = ACTIONS(2149), - [aux_sym_update_host_keys_token1] = ACTIONS(2149), - [aux_sym_use_keychain_token1] = ACTIONS(2149), - [aux_sym_use_roaming_token1] = ACTIONS(2149), - [aux_sym_user_token1] = ACTIONS(2151), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2149), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2149), - [aux_sym_visual_host_key_token1] = ACTIONS(2149), - [aux_sym_xauth_location_token1] = ACTIONS(2149), + [ts_builtin_sym_end] = ACTIONS(2156), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2160), + [aux_sym_match_token1] = ACTIONS(2156), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2156), + [aux_sym_address_family_token1] = ACTIONS(2156), + [aux_sym_batch_mode_token1] = ACTIONS(2156), + [aux_sym_bind_address_token1] = ACTIONS(2156), + [aux_sym_bind_interface_token1] = ACTIONS(2156), + [aux_sym_canonical_domains_token1] = ACTIONS(2156), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2156), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2156), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2156), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2156), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2156), + [aux_sym_certificate_file_token1] = ACTIONS(2156), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2156), + [aux_sym_check_host_ip_token1] = ACTIONS(2156), + [aux_sym_ciphers_token1] = ACTIONS(2156), + [aux_sym_cipher_token1] = ACTIONS(2158), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2156), + [aux_sym_compression_token1] = ACTIONS(2156), + [aux_sym_connection_attempts_token1] = ACTIONS(2156), + [aux_sym_connect_timeout_token1] = ACTIONS(2156), + [aux_sym_control_master_token1] = ACTIONS(2156), + [aux_sym_control_path_token1] = ACTIONS(2156), + [aux_sym_control_persist_token1] = ACTIONS(2156), + [aux_sym_dynamic_forward_token1] = ACTIONS(2156), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2156), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2156), + [aux_sym_escape_char_token1] = ACTIONS(2156), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2156), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2156), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2156), + [aux_sym_forward_agent_token1] = ACTIONS(2156), + [aux_sym_forward_x11_token1] = ACTIONS(2158), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2156), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2156), + [aux_sym_gateway_ports_token1] = ACTIONS(2156), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2156), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2156), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2156), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2156), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2156), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2156), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2156), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2156), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2156), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2156), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2156), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2156), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2156), + [aux_sym_host_key_alias_token1] = ACTIONS(2156), + [aux_sym_hostname_token1] = ACTIONS(2156), + [aux_sym_identities_only_token1] = ACTIONS(2156), + [aux_sym_identity_agent_token1] = ACTIONS(2156), + [aux_sym_identity_file_token1] = ACTIONS(2156), + [aux_sym_ignore_unknown_token1] = ACTIONS(2156), + [aux_sym_include_token1] = ACTIONS(2156), + [aux_sym_ip_qos_token1] = ACTIONS(2156), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2156), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2156), + [aux_sym_kex_algorithms_token1] = ACTIONS(2156), + [aux_sym_known_hosts_command_token1] = ACTIONS(2156), + [aux_sym_local_command_token1] = ACTIONS(2156), + [aux_sym_local_forward_token1] = ACTIONS(2156), + [aux_sym_log_level_token1] = ACTIONS(2156), + [aux_sym_log_verbose_token1] = ACTIONS(2156), + [aux_sym_macs_token1] = ACTIONS(2156), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2156), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2156), + [aux_sym_password_authentication_token1] = ACTIONS(2156), + [aux_sym_permit_local_command_token1] = ACTIONS(2156), + [aux_sym_permit_remote_open_token1] = ACTIONS(2156), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2156), + [aux_sym_port_token1] = ACTIONS(2156), + [aux_sym_preferred_authentications_token1] = ACTIONS(2156), + [aux_sym_protocol_token1] = ACTIONS(2156), + [aux_sym_proxy_command_token1] = ACTIONS(2156), + [aux_sym_proxy_jump_token1] = ACTIONS(2156), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2156), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2156), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2156), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2156), + [aux_sym_rekey_limit_token1] = ACTIONS(2156), + [aux_sym_remote_command_token1] = ACTIONS(2156), + [aux_sym_remote_forward_token1] = ACTIONS(2156), + [aux_sym_request_tty_token1] = ACTIONS(2156), + [aux_sym_required_rsa_size_token1] = ACTIONS(2156), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2156), + [aux_sym_security_key_provider_token1] = ACTIONS(2156), + [aux_sym_send_env_token1] = ACTIONS(2156), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2156), + [aux_sym_server_alive_interval_token1] = ACTIONS(2156), + [aux_sym_session_type_token1] = ACTIONS(2156), + [aux_sym_set_env_token1] = ACTIONS(2156), + [aux_sym_stdin_null_token1] = ACTIONS(2156), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2156), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2156), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2156), + [aux_sym_syslog_facility_token1] = ACTIONS(2156), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2156), + [aux_sym_keep_alive_token1] = ACTIONS(2156), + [aux_sym_tunnel_token1] = ACTIONS(2158), + [aux_sym_tunnel_device_token1] = ACTIONS(2156), + [aux_sym_update_host_keys_token1] = ACTIONS(2156), + [aux_sym_use_keychain_token1] = ACTIONS(2156), + [aux_sym_use_roaming_token1] = ACTIONS(2156), + [aux_sym_user_token1] = ACTIONS(2158), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2156), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2156), + [aux_sym_visual_host_key_token1] = ACTIONS(2156), + [aux_sym_xauth_location_token1] = ACTIONS(2156), }, [279] = { - [ts_builtin_sym_end] = ACTIONS(2155), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2157), - [anon_sym_DQUOTE] = ACTIONS(2155), - [aux_sym_match_token1] = ACTIONS(2155), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2155), - [aux_sym_address_family_token1] = ACTIONS(2155), - [aux_sym_batch_mode_token1] = ACTIONS(2155), - [aux_sym_bind_address_token1] = ACTIONS(2155), - [aux_sym_bind_interface_token1] = ACTIONS(2155), - [aux_sym_canonical_domains_token1] = ACTIONS(2155), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2155), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2155), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2155), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2155), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2155), - [aux_sym_certificate_file_token1] = ACTIONS(2155), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2155), - [aux_sym_check_host_ip_token1] = ACTIONS(2155), - [aux_sym_ciphers_token1] = ACTIONS(2155), - [aux_sym_cipher_token1] = ACTIONS(2157), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2155), - [aux_sym_compression_token1] = ACTIONS(2155), - [aux_sym_connection_attempts_token1] = ACTIONS(2155), - [aux_sym_connect_timeout_token1] = ACTIONS(2155), - [aux_sym_control_master_token1] = ACTIONS(2155), - [aux_sym_control_path_token1] = ACTIONS(2155), - [aux_sym_control_persist_token1] = ACTIONS(2155), - [aux_sym_dynamic_forward_token1] = ACTIONS(2155), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2155), - [aux_sym_escape_char_token1] = ACTIONS(2155), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2155), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2155), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2155), - [aux_sym_forward_agent_token1] = ACTIONS(2155), - [aux_sym_forward_x11_token1] = ACTIONS(2157), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2155), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2155), - [aux_sym_gateway_ports_token1] = ACTIONS(2155), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2155), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2155), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2155), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2155), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2155), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2155), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2155), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2155), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2155), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2155), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2155), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2155), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2155), - [aux_sym_host_key_alias_token1] = ACTIONS(2155), - [aux_sym_hostname_token1] = ACTIONS(2155), - [aux_sym_identities_only_token1] = ACTIONS(2155), - [aux_sym_identity_agent_token1] = ACTIONS(2155), - [aux_sym_identity_file_token1] = ACTIONS(2155), - [aux_sym_ignore_unknown_token1] = ACTIONS(2155), - [aux_sym_include_token1] = ACTIONS(2155), - [aux_sym_ip_qos_token1] = ACTIONS(2155), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2155), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2155), - [aux_sym_kex_algorithms_token1] = ACTIONS(2155), - [aux_sym_known_hosts_command_token1] = ACTIONS(2155), - [aux_sym_local_command_token1] = ACTIONS(2155), - [aux_sym_local_forward_token1] = ACTIONS(2155), - [aux_sym_log_level_token1] = ACTIONS(2155), - [aux_sym_log_verbose_token1] = ACTIONS(2155), - [aux_sym_macs_token1] = ACTIONS(2155), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2155), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2155), - [aux_sym_password_authentication_token1] = ACTIONS(2155), - [aux_sym_permit_local_command_token1] = ACTIONS(2155), - [aux_sym_permit_remote_open_token1] = ACTIONS(2155), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2155), - [aux_sym_port_token1] = ACTIONS(2155), - [aux_sym_preferred_authentications_token1] = ACTIONS(2155), - [aux_sym_protocol_token1] = ACTIONS(2155), - [aux_sym_proxy_command_token1] = ACTIONS(2155), - [aux_sym_proxy_jump_token1] = ACTIONS(2155), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2155), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2155), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2155), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2155), - [aux_sym_rekey_limit_token1] = ACTIONS(2155), - [aux_sym_remote_command_token1] = ACTIONS(2155), - [aux_sym_remote_forward_token1] = ACTIONS(2155), - [aux_sym_request_tty_token1] = ACTIONS(2155), - [aux_sym_required_rsa_size_token1] = ACTIONS(2155), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2155), - [aux_sym_security_key_provider_token1] = ACTIONS(2155), - [aux_sym_send_env_token1] = ACTIONS(2155), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2155), - [aux_sym_server_alive_interval_token1] = ACTIONS(2155), - [aux_sym_session_type_token1] = ACTIONS(2155), - [aux_sym_set_env_token1] = ACTIONS(2155), - [aux_sym_stdin_null_token1] = ACTIONS(2155), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2155), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2155), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2155), - [aux_sym_syslog_facility_token1] = ACTIONS(2155), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2155), - [aux_sym_keep_alive_token1] = ACTIONS(2155), - [aux_sym_tunnel_token1] = ACTIONS(2157), - [aux_sym_tunnel_device_token1] = ACTIONS(2155), - [aux_sym_update_host_keys_token1] = ACTIONS(2155), - [aux_sym_use_keychain_token1] = ACTIONS(2155), - [aux_sym_use_roaming_token1] = ACTIONS(2155), - [aux_sym_user_token1] = ACTIONS(2157), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2155), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2155), - [aux_sym_visual_host_key_token1] = ACTIONS(2155), - [aux_sym_xauth_location_token1] = ACTIONS(2155), + [ts_builtin_sym_end] = ACTIONS(2162), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2162), + [aux_sym_match_token1] = ACTIONS(2162), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2162), + [aux_sym_address_family_token1] = ACTIONS(2162), + [aux_sym_batch_mode_token1] = ACTIONS(2162), + [aux_sym_bind_address_token1] = ACTIONS(2162), + [aux_sym_bind_interface_token1] = ACTIONS(2162), + [aux_sym_canonical_domains_token1] = ACTIONS(2162), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2162), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2162), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2162), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2162), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2162), + [aux_sym_certificate_file_token1] = ACTIONS(2162), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2162), + [aux_sym_check_host_ip_token1] = ACTIONS(2162), + [aux_sym_ciphers_token1] = ACTIONS(2162), + [aux_sym_cipher_token1] = ACTIONS(2164), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2162), + [aux_sym_compression_token1] = ACTIONS(2162), + [aux_sym_connection_attempts_token1] = ACTIONS(2162), + [aux_sym_connect_timeout_token1] = ACTIONS(2162), + [aux_sym_control_master_token1] = ACTIONS(2162), + [aux_sym_control_path_token1] = ACTIONS(2162), + [aux_sym_control_persist_token1] = ACTIONS(2162), + [aux_sym_dynamic_forward_token1] = ACTIONS(2162), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2162), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2162), + [aux_sym_escape_char_token1] = ACTIONS(2162), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2162), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2162), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2162), + [aux_sym_forward_agent_token1] = ACTIONS(2162), + [aux_sym_forward_x11_token1] = ACTIONS(2164), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2162), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2162), + [aux_sym_gateway_ports_token1] = ACTIONS(2162), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2162), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2162), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2162), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2162), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2162), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2162), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2162), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2162), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2162), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2162), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2162), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2162), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2162), + [aux_sym_host_key_alias_token1] = ACTIONS(2162), + [aux_sym_hostname_token1] = ACTIONS(2162), + [aux_sym_identities_only_token1] = ACTIONS(2162), + [aux_sym_identity_agent_token1] = ACTIONS(2162), + [aux_sym_identity_file_token1] = ACTIONS(2162), + [aux_sym_ignore_unknown_token1] = ACTIONS(2162), + [aux_sym_include_token1] = ACTIONS(2162), + [aux_sym_ip_qos_token1] = ACTIONS(2162), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2162), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2162), + [aux_sym_kex_algorithms_token1] = ACTIONS(2162), + [aux_sym_known_hosts_command_token1] = ACTIONS(2162), + [aux_sym_local_command_token1] = ACTIONS(2162), + [aux_sym_local_forward_token1] = ACTIONS(2162), + [aux_sym_log_level_token1] = ACTIONS(2162), + [aux_sym_log_verbose_token1] = ACTIONS(2162), + [aux_sym_macs_token1] = ACTIONS(2162), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2162), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2162), + [aux_sym_password_authentication_token1] = ACTIONS(2162), + [aux_sym_permit_local_command_token1] = ACTIONS(2162), + [aux_sym_permit_remote_open_token1] = ACTIONS(2162), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2162), + [aux_sym_port_token1] = ACTIONS(2162), + [aux_sym_preferred_authentications_token1] = ACTIONS(2162), + [aux_sym_protocol_token1] = ACTIONS(2162), + [aux_sym_proxy_command_token1] = ACTIONS(2162), + [aux_sym_proxy_jump_token1] = ACTIONS(2162), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2162), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2162), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2162), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2162), + [aux_sym_rekey_limit_token1] = ACTIONS(2162), + [aux_sym_remote_command_token1] = ACTIONS(2162), + [aux_sym_remote_forward_token1] = ACTIONS(2162), + [aux_sym_request_tty_token1] = ACTIONS(2162), + [aux_sym_required_rsa_size_token1] = ACTIONS(2162), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2162), + [aux_sym_security_key_provider_token1] = ACTIONS(2162), + [aux_sym_send_env_token1] = ACTIONS(2162), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2162), + [aux_sym_server_alive_interval_token1] = ACTIONS(2162), + [aux_sym_session_type_token1] = ACTIONS(2162), + [aux_sym_set_env_token1] = ACTIONS(2162), + [aux_sym_stdin_null_token1] = ACTIONS(2162), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2162), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2162), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2162), + [aux_sym_syslog_facility_token1] = ACTIONS(2162), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2162), + [aux_sym_keep_alive_token1] = ACTIONS(2162), + [aux_sym_tunnel_token1] = ACTIONS(2164), + [aux_sym_tunnel_device_token1] = ACTIONS(2162), + [aux_sym_update_host_keys_token1] = ACTIONS(2162), + [aux_sym_use_keychain_token1] = ACTIONS(2162), + [aux_sym_use_roaming_token1] = ACTIONS(2162), + [aux_sym_user_token1] = ACTIONS(2164), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2162), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2162), + [aux_sym_visual_host_key_token1] = ACTIONS(2162), + [aux_sym_xauth_location_token1] = ACTIONS(2162), }, [280] = { - [ts_builtin_sym_end] = ACTIONS(2159), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2161), - [anon_sym_DQUOTE] = ACTIONS(2163), - [aux_sym_match_token1] = ACTIONS(2159), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2159), - [aux_sym_address_family_token1] = ACTIONS(2159), - [aux_sym_batch_mode_token1] = ACTIONS(2159), - [aux_sym_bind_address_token1] = ACTIONS(2159), - [aux_sym_bind_interface_token1] = ACTIONS(2159), - [aux_sym_canonical_domains_token1] = ACTIONS(2159), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2159), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2159), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2159), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2159), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2159), - [aux_sym_certificate_file_token1] = ACTIONS(2159), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2159), - [aux_sym_check_host_ip_token1] = ACTIONS(2159), - [aux_sym_ciphers_token1] = ACTIONS(2159), - [aux_sym_cipher_token1] = ACTIONS(2161), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2159), - [aux_sym_compression_token1] = ACTIONS(2159), - [aux_sym_connection_attempts_token1] = ACTIONS(2159), - [aux_sym_connect_timeout_token1] = ACTIONS(2159), - [aux_sym_control_master_token1] = ACTIONS(2159), - [aux_sym_control_path_token1] = ACTIONS(2159), - [aux_sym_control_persist_token1] = ACTIONS(2159), - [aux_sym_dynamic_forward_token1] = ACTIONS(2159), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2159), - [aux_sym_escape_char_token1] = ACTIONS(2159), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2159), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2159), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2159), - [aux_sym_forward_agent_token1] = ACTIONS(2159), - [aux_sym_forward_x11_token1] = ACTIONS(2161), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2159), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2159), - [aux_sym_gateway_ports_token1] = ACTIONS(2159), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2159), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2159), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2159), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2159), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2159), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2159), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2159), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2159), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2159), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2159), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2159), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2159), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2159), - [aux_sym_host_key_alias_token1] = ACTIONS(2159), - [aux_sym_hostname_token1] = ACTIONS(2159), - [aux_sym_identities_only_token1] = ACTIONS(2159), - [aux_sym_identity_agent_token1] = ACTIONS(2159), - [aux_sym_identity_file_token1] = ACTIONS(2159), - [aux_sym_ignore_unknown_token1] = ACTIONS(2159), - [aux_sym_include_token1] = ACTIONS(2159), - [aux_sym_ip_qos_token1] = ACTIONS(2159), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2159), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2159), - [aux_sym_kex_algorithms_token1] = ACTIONS(2159), - [aux_sym_known_hosts_command_token1] = ACTIONS(2159), - [aux_sym_local_command_token1] = ACTIONS(2159), - [aux_sym_local_forward_token1] = ACTIONS(2159), - [aux_sym_log_level_token1] = ACTIONS(2159), - [aux_sym_log_verbose_token1] = ACTIONS(2159), - [aux_sym_macs_token1] = ACTIONS(2159), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2159), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2159), - [aux_sym_password_authentication_token1] = ACTIONS(2159), - [aux_sym_permit_local_command_token1] = ACTIONS(2159), - [aux_sym_permit_remote_open_token1] = ACTIONS(2159), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2159), - [aux_sym_port_token1] = ACTIONS(2159), - [aux_sym_preferred_authentications_token1] = ACTIONS(2159), - [aux_sym_protocol_token1] = ACTIONS(2159), - [aux_sym_proxy_command_token1] = ACTIONS(2159), - [aux_sym_proxy_jump_token1] = ACTIONS(2159), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2159), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2159), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2159), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2159), - [aux_sym_rekey_limit_token1] = ACTIONS(2159), - [aux_sym_remote_command_token1] = ACTIONS(2159), - [aux_sym_remote_forward_token1] = ACTIONS(2159), - [aux_sym_request_tty_token1] = ACTIONS(2159), - [aux_sym_required_rsa_size_token1] = ACTIONS(2159), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2159), - [aux_sym_security_key_provider_token1] = ACTIONS(2159), - [aux_sym_send_env_token1] = ACTIONS(2159), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2159), - [aux_sym_server_alive_interval_token1] = ACTIONS(2159), - [aux_sym_session_type_token1] = ACTIONS(2159), - [aux_sym_set_env_token1] = ACTIONS(2159), - [aux_sym_stdin_null_token1] = ACTIONS(2159), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2159), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2159), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2159), - [aux_sym_syslog_facility_token1] = ACTIONS(2159), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2159), - [aux_sym_keep_alive_token1] = ACTIONS(2159), - [aux_sym_tunnel_token1] = ACTIONS(2161), - [aux_sym_tunnel_device_token1] = ACTIONS(2159), - [aux_sym_update_host_keys_token1] = ACTIONS(2159), - [aux_sym_use_keychain_token1] = ACTIONS(2159), - [aux_sym_use_roaming_token1] = ACTIONS(2159), - [aux_sym_user_token1] = ACTIONS(2161), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2159), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2159), - [aux_sym_visual_host_key_token1] = ACTIONS(2159), - [aux_sym_xauth_location_token1] = ACTIONS(2159), + [ts_builtin_sym_end] = ACTIONS(2166), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2168), + [anon_sym_DQUOTE] = ACTIONS(2170), + [aux_sym_match_token1] = ACTIONS(2166), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2166), + [aux_sym_address_family_token1] = ACTIONS(2166), + [aux_sym_batch_mode_token1] = ACTIONS(2166), + [aux_sym_bind_address_token1] = ACTIONS(2166), + [aux_sym_bind_interface_token1] = ACTIONS(2166), + [aux_sym_canonical_domains_token1] = ACTIONS(2166), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2166), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2166), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2166), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2166), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2166), + [aux_sym_certificate_file_token1] = ACTIONS(2166), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2166), + [aux_sym_check_host_ip_token1] = ACTIONS(2166), + [aux_sym_ciphers_token1] = ACTIONS(2166), + [aux_sym_cipher_token1] = ACTIONS(2168), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2166), + [aux_sym_compression_token1] = ACTIONS(2166), + [aux_sym_connection_attempts_token1] = ACTIONS(2166), + [aux_sym_connect_timeout_token1] = ACTIONS(2166), + [aux_sym_control_master_token1] = ACTIONS(2166), + [aux_sym_control_path_token1] = ACTIONS(2166), + [aux_sym_control_persist_token1] = ACTIONS(2166), + [aux_sym_dynamic_forward_token1] = ACTIONS(2166), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2166), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2166), + [aux_sym_escape_char_token1] = ACTIONS(2166), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2166), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2166), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2166), + [aux_sym_forward_agent_token1] = ACTIONS(2166), + [aux_sym_forward_x11_token1] = ACTIONS(2168), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2166), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2166), + [aux_sym_gateway_ports_token1] = ACTIONS(2166), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2166), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2166), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2166), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2166), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2166), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2166), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2166), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2166), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2166), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2166), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2166), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2166), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2166), + [aux_sym_host_key_alias_token1] = ACTIONS(2166), + [aux_sym_hostname_token1] = ACTIONS(2166), + [aux_sym_identities_only_token1] = ACTIONS(2166), + [aux_sym_identity_agent_token1] = ACTIONS(2166), + [aux_sym_identity_file_token1] = ACTIONS(2166), + [aux_sym_ignore_unknown_token1] = ACTIONS(2166), + [aux_sym_include_token1] = ACTIONS(2166), + [aux_sym_ip_qos_token1] = ACTIONS(2166), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2166), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2166), + [aux_sym_kex_algorithms_token1] = ACTIONS(2166), + [aux_sym_known_hosts_command_token1] = ACTIONS(2166), + [aux_sym_local_command_token1] = ACTIONS(2166), + [aux_sym_local_forward_token1] = ACTIONS(2166), + [aux_sym_log_level_token1] = ACTIONS(2166), + [aux_sym_log_verbose_token1] = ACTIONS(2166), + [aux_sym_macs_token1] = ACTIONS(2166), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2166), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2166), + [aux_sym_password_authentication_token1] = ACTIONS(2166), + [aux_sym_permit_local_command_token1] = ACTIONS(2166), + [aux_sym_permit_remote_open_token1] = ACTIONS(2166), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2166), + [aux_sym_port_token1] = ACTIONS(2166), + [aux_sym_preferred_authentications_token1] = ACTIONS(2166), + [aux_sym_protocol_token1] = ACTIONS(2166), + [aux_sym_proxy_command_token1] = ACTIONS(2166), + [aux_sym_proxy_jump_token1] = ACTIONS(2166), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2166), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2166), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2166), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2166), + [aux_sym_rekey_limit_token1] = ACTIONS(2166), + [aux_sym_remote_command_token1] = ACTIONS(2166), + [aux_sym_remote_forward_token1] = ACTIONS(2166), + [aux_sym_request_tty_token1] = ACTIONS(2166), + [aux_sym_required_rsa_size_token1] = ACTIONS(2166), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2166), + [aux_sym_security_key_provider_token1] = ACTIONS(2166), + [aux_sym_send_env_token1] = ACTIONS(2166), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2166), + [aux_sym_server_alive_interval_token1] = ACTIONS(2166), + [aux_sym_session_type_token1] = ACTIONS(2166), + [aux_sym_set_env_token1] = ACTIONS(2166), + [aux_sym_stdin_null_token1] = ACTIONS(2166), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2166), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2166), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2166), + [aux_sym_syslog_facility_token1] = ACTIONS(2166), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2166), + [aux_sym_keep_alive_token1] = ACTIONS(2166), + [aux_sym_tunnel_token1] = ACTIONS(2168), + [aux_sym_tunnel_device_token1] = ACTIONS(2166), + [aux_sym_update_host_keys_token1] = ACTIONS(2166), + [aux_sym_use_keychain_token1] = ACTIONS(2166), + [aux_sym_use_roaming_token1] = ACTIONS(2166), + [aux_sym_user_token1] = ACTIONS(2168), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2166), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2166), + [aux_sym_visual_host_key_token1] = ACTIONS(2166), + [aux_sym_xauth_location_token1] = ACTIONS(2166), }, [281] = { - [ts_builtin_sym_end] = ACTIONS(2165), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2165), - [aux_sym_match_token1] = ACTIONS(2165), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2165), - [aux_sym_address_family_token1] = ACTIONS(2165), - [aux_sym_batch_mode_token1] = ACTIONS(2165), - [aux_sym_bind_address_token1] = ACTIONS(2165), - [aux_sym_bind_interface_token1] = ACTIONS(2165), - [aux_sym_canonical_domains_token1] = ACTIONS(2165), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2165), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2165), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2165), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2165), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2165), - [aux_sym_certificate_file_token1] = ACTIONS(2165), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2165), - [aux_sym_check_host_ip_token1] = ACTIONS(2165), - [aux_sym_ciphers_token1] = ACTIONS(2165), - [aux_sym_cipher_token1] = ACTIONS(2167), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2165), - [aux_sym_compression_token1] = ACTIONS(2165), - [aux_sym_connection_attempts_token1] = ACTIONS(2165), - [aux_sym_connect_timeout_token1] = ACTIONS(2165), - [aux_sym_control_master_token1] = ACTIONS(2165), - [aux_sym_control_path_token1] = ACTIONS(2165), - [aux_sym_control_persist_token1] = ACTIONS(2165), - [aux_sym_dynamic_forward_token1] = ACTIONS(2165), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2165), - [aux_sym_escape_char_token1] = ACTIONS(2165), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2165), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2165), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2165), - [aux_sym_forward_agent_token1] = ACTIONS(2165), - [aux_sym_forward_x11_token1] = ACTIONS(2167), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2165), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2165), - [aux_sym_gateway_ports_token1] = ACTIONS(2165), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2165), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2165), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2165), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2165), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2165), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2165), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2165), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2165), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2165), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2165), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2165), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2165), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2165), - [aux_sym_host_key_alias_token1] = ACTIONS(2165), - [aux_sym_hostname_token1] = ACTIONS(2165), - [aux_sym_identities_only_token1] = ACTIONS(2165), - [aux_sym_identity_agent_token1] = ACTIONS(2165), - [aux_sym_identity_file_token1] = ACTIONS(2165), - [aux_sym_ignore_unknown_token1] = ACTIONS(2165), - [aux_sym_include_token1] = ACTIONS(2165), - [aux_sym_ip_qos_token1] = ACTIONS(2165), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2165), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2165), - [aux_sym_kex_algorithms_token1] = ACTIONS(2165), - [aux_sym_known_hosts_command_token1] = ACTIONS(2165), - [aux_sym_local_command_token1] = ACTIONS(2165), - [aux_sym_local_forward_token1] = ACTIONS(2165), - [aux_sym_log_level_token1] = ACTIONS(2165), - [aux_sym_log_verbose_token1] = ACTIONS(2165), - [aux_sym_macs_token1] = ACTIONS(2165), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2165), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2165), - [aux_sym_password_authentication_token1] = ACTIONS(2165), - [aux_sym_permit_local_command_token1] = ACTIONS(2165), - [aux_sym_permit_remote_open_token1] = ACTIONS(2165), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2165), - [aux_sym_port_token1] = ACTIONS(2165), - [aux_sym_preferred_authentications_token1] = ACTIONS(2165), - [aux_sym_protocol_token1] = ACTIONS(2165), - [aux_sym_proxy_command_token1] = ACTIONS(2165), - [aux_sym_proxy_jump_token1] = ACTIONS(2165), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2165), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2165), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2165), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2165), - [aux_sym_rekey_limit_token1] = ACTIONS(2165), - [aux_sym_remote_command_token1] = ACTIONS(2165), - [aux_sym_remote_forward_token1] = ACTIONS(2165), - [aux_sym_request_tty_token1] = ACTIONS(2165), - [aux_sym_required_rsa_size_token1] = ACTIONS(2165), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2165), - [aux_sym_security_key_provider_token1] = ACTIONS(2165), - [aux_sym_send_env_token1] = ACTIONS(2165), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2165), - [aux_sym_server_alive_interval_token1] = ACTIONS(2165), - [aux_sym_session_type_token1] = ACTIONS(2165), - [aux_sym_set_env_token1] = ACTIONS(2165), - [aux_sym_stdin_null_token1] = ACTIONS(2165), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2165), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2165), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2165), - [aux_sym_syslog_facility_token1] = ACTIONS(2165), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2165), - [aux_sym_keep_alive_token1] = ACTIONS(2165), - [aux_sym_tunnel_token1] = ACTIONS(2167), - [aux_sym_tunnel_device_token1] = ACTIONS(2165), - [aux_sym_update_host_keys_token1] = ACTIONS(2165), - [aux_sym_use_keychain_token1] = ACTIONS(2165), - [aux_sym_use_roaming_token1] = ACTIONS(2165), - [aux_sym_user_token1] = ACTIONS(2167), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2165), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2165), - [aux_sym_visual_host_key_token1] = ACTIONS(2165), - [aux_sym_xauth_location_token1] = ACTIONS(2165), + [ts_builtin_sym_end] = ACTIONS(2172), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2174), + [anon_sym_DQUOTE] = ACTIONS(2172), + [aux_sym_match_token1] = ACTIONS(2172), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2172), + [aux_sym_address_family_token1] = ACTIONS(2172), + [aux_sym_batch_mode_token1] = ACTIONS(2172), + [aux_sym_bind_address_token1] = ACTIONS(2172), + [aux_sym_bind_interface_token1] = ACTIONS(2172), + [aux_sym_canonical_domains_token1] = ACTIONS(2172), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2172), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2172), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2172), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2172), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2172), + [aux_sym_certificate_file_token1] = ACTIONS(2172), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2172), + [aux_sym_check_host_ip_token1] = ACTIONS(2172), + [aux_sym_ciphers_token1] = ACTIONS(2172), + [aux_sym_cipher_token1] = ACTIONS(2174), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2172), + [aux_sym_compression_token1] = ACTIONS(2172), + [aux_sym_connection_attempts_token1] = ACTIONS(2172), + [aux_sym_connect_timeout_token1] = ACTIONS(2172), + [aux_sym_control_master_token1] = ACTIONS(2172), + [aux_sym_control_path_token1] = ACTIONS(2172), + [aux_sym_control_persist_token1] = ACTIONS(2172), + [aux_sym_dynamic_forward_token1] = ACTIONS(2172), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2172), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2172), + [aux_sym_escape_char_token1] = ACTIONS(2172), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2172), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2172), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2172), + [aux_sym_forward_agent_token1] = ACTIONS(2172), + [aux_sym_forward_x11_token1] = ACTIONS(2174), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2172), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2172), + [aux_sym_gateway_ports_token1] = ACTIONS(2172), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2172), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2172), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2172), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2172), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2172), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2172), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2172), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2172), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2172), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2172), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2172), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2172), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2172), + [aux_sym_host_key_alias_token1] = ACTIONS(2172), + [aux_sym_hostname_token1] = ACTIONS(2172), + [aux_sym_identities_only_token1] = ACTIONS(2172), + [aux_sym_identity_agent_token1] = ACTIONS(2172), + [aux_sym_identity_file_token1] = ACTIONS(2172), + [aux_sym_ignore_unknown_token1] = ACTIONS(2172), + [aux_sym_include_token1] = ACTIONS(2172), + [aux_sym_ip_qos_token1] = ACTIONS(2172), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2172), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2172), + [aux_sym_kex_algorithms_token1] = ACTIONS(2172), + [aux_sym_known_hosts_command_token1] = ACTIONS(2172), + [aux_sym_local_command_token1] = ACTIONS(2172), + [aux_sym_local_forward_token1] = ACTIONS(2172), + [aux_sym_log_level_token1] = ACTIONS(2172), + [aux_sym_log_verbose_token1] = ACTIONS(2172), + [aux_sym_macs_token1] = ACTIONS(2172), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2172), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2172), + [aux_sym_password_authentication_token1] = ACTIONS(2172), + [aux_sym_permit_local_command_token1] = ACTIONS(2172), + [aux_sym_permit_remote_open_token1] = ACTIONS(2172), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2172), + [aux_sym_port_token1] = ACTIONS(2172), + [aux_sym_preferred_authentications_token1] = ACTIONS(2172), + [aux_sym_protocol_token1] = ACTIONS(2172), + [aux_sym_proxy_command_token1] = ACTIONS(2172), + [aux_sym_proxy_jump_token1] = ACTIONS(2172), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2172), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2172), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2172), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2172), + [aux_sym_rekey_limit_token1] = ACTIONS(2172), + [aux_sym_remote_command_token1] = ACTIONS(2172), + [aux_sym_remote_forward_token1] = ACTIONS(2172), + [aux_sym_request_tty_token1] = ACTIONS(2172), + [aux_sym_required_rsa_size_token1] = ACTIONS(2172), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2172), + [aux_sym_security_key_provider_token1] = ACTIONS(2172), + [aux_sym_send_env_token1] = ACTIONS(2172), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2172), + [aux_sym_server_alive_interval_token1] = ACTIONS(2172), + [aux_sym_session_type_token1] = ACTIONS(2172), + [aux_sym_set_env_token1] = ACTIONS(2172), + [aux_sym_stdin_null_token1] = ACTIONS(2172), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2172), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2172), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2172), + [aux_sym_syslog_facility_token1] = ACTIONS(2172), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2172), + [aux_sym_keep_alive_token1] = ACTIONS(2172), + [aux_sym_tunnel_token1] = ACTIONS(2174), + [aux_sym_tunnel_device_token1] = ACTIONS(2172), + [aux_sym_update_host_keys_token1] = ACTIONS(2172), + [aux_sym_use_keychain_token1] = ACTIONS(2172), + [aux_sym_use_roaming_token1] = ACTIONS(2172), + [aux_sym_user_token1] = ACTIONS(2174), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2172), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2172), + [aux_sym_visual_host_key_token1] = ACTIONS(2172), + [aux_sym_xauth_location_token1] = ACTIONS(2172), }, [282] = { - [ts_builtin_sym_end] = ACTIONS(2169), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2171), - [anon_sym_DQUOTE] = ACTIONS(2173), - [aux_sym_match_token1] = ACTIONS(2169), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2169), - [aux_sym_address_family_token1] = ACTIONS(2169), - [aux_sym_batch_mode_token1] = ACTIONS(2169), - [aux_sym_bind_address_token1] = ACTIONS(2169), - [aux_sym_bind_interface_token1] = ACTIONS(2169), - [aux_sym_canonical_domains_token1] = ACTIONS(2169), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2169), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2169), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2169), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2169), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2169), - [aux_sym_certificate_file_token1] = ACTIONS(2169), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2169), - [aux_sym_check_host_ip_token1] = ACTIONS(2169), - [aux_sym_ciphers_token1] = ACTIONS(2169), - [aux_sym_cipher_token1] = ACTIONS(2171), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2169), - [aux_sym_compression_token1] = ACTIONS(2169), - [aux_sym_connection_attempts_token1] = ACTIONS(2169), - [aux_sym_connect_timeout_token1] = ACTIONS(2169), - [aux_sym_control_master_token1] = ACTIONS(2169), - [aux_sym_control_path_token1] = ACTIONS(2169), - [aux_sym_control_persist_token1] = ACTIONS(2169), - [aux_sym_dynamic_forward_token1] = ACTIONS(2169), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2169), - [aux_sym_escape_char_token1] = ACTIONS(2169), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2169), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2169), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2169), - [aux_sym_forward_agent_token1] = ACTIONS(2169), - [aux_sym_forward_x11_token1] = ACTIONS(2171), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2169), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2169), - [aux_sym_gateway_ports_token1] = ACTIONS(2169), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2169), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2169), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2169), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2169), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2169), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2169), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2169), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2169), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2169), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2169), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2169), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2169), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2169), - [aux_sym_host_key_alias_token1] = ACTIONS(2169), - [aux_sym_hostname_token1] = ACTIONS(2169), - [aux_sym_identities_only_token1] = ACTIONS(2169), - [aux_sym_identity_agent_token1] = ACTIONS(2169), - [aux_sym_identity_file_token1] = ACTIONS(2169), - [aux_sym_ignore_unknown_token1] = ACTIONS(2169), - [aux_sym_include_token1] = ACTIONS(2169), - [aux_sym_ip_qos_token1] = ACTIONS(2169), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2169), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2169), - [aux_sym_kex_algorithms_token1] = ACTIONS(2169), - [aux_sym_known_hosts_command_token1] = ACTIONS(2169), - [aux_sym_local_command_token1] = ACTIONS(2169), - [aux_sym_local_forward_token1] = ACTIONS(2169), - [aux_sym_log_level_token1] = ACTIONS(2169), - [aux_sym_log_verbose_token1] = ACTIONS(2169), - [aux_sym_macs_token1] = ACTIONS(2169), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2169), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2169), - [aux_sym_password_authentication_token1] = ACTIONS(2169), - [aux_sym_permit_local_command_token1] = ACTIONS(2169), - [aux_sym_permit_remote_open_token1] = ACTIONS(2169), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2169), - [aux_sym_port_token1] = ACTIONS(2169), - [aux_sym_preferred_authentications_token1] = ACTIONS(2169), - [aux_sym_protocol_token1] = ACTIONS(2169), - [aux_sym_proxy_command_token1] = ACTIONS(2169), - [aux_sym_proxy_jump_token1] = ACTIONS(2169), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2169), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2169), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2169), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2169), - [aux_sym_rekey_limit_token1] = ACTIONS(2169), - [aux_sym_remote_command_token1] = ACTIONS(2169), - [aux_sym_remote_forward_token1] = ACTIONS(2169), - [aux_sym_request_tty_token1] = ACTIONS(2169), - [aux_sym_required_rsa_size_token1] = ACTIONS(2169), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2169), - [aux_sym_security_key_provider_token1] = ACTIONS(2169), - [aux_sym_send_env_token1] = ACTIONS(2169), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2169), - [aux_sym_server_alive_interval_token1] = ACTIONS(2169), - [aux_sym_session_type_token1] = ACTIONS(2169), - [aux_sym_set_env_token1] = ACTIONS(2169), - [aux_sym_stdin_null_token1] = ACTIONS(2169), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2169), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2169), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2169), - [aux_sym_syslog_facility_token1] = ACTIONS(2169), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2169), - [aux_sym_keep_alive_token1] = ACTIONS(2169), - [aux_sym_tunnel_token1] = ACTIONS(2171), - [aux_sym_tunnel_device_token1] = ACTIONS(2169), - [aux_sym_update_host_keys_token1] = ACTIONS(2169), - [aux_sym_use_keychain_token1] = ACTIONS(2169), - [aux_sym_use_roaming_token1] = ACTIONS(2169), - [aux_sym_user_token1] = ACTIONS(2171), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2169), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2169), - [aux_sym_visual_host_key_token1] = ACTIONS(2169), - [aux_sym_xauth_location_token1] = ACTIONS(2169), + [ts_builtin_sym_end] = ACTIONS(2176), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2180), + [aux_sym_match_token1] = ACTIONS(2176), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2176), + [aux_sym_address_family_token1] = ACTIONS(2176), + [aux_sym_batch_mode_token1] = ACTIONS(2176), + [aux_sym_bind_address_token1] = ACTIONS(2176), + [aux_sym_bind_interface_token1] = ACTIONS(2176), + [aux_sym_canonical_domains_token1] = ACTIONS(2176), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2176), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2176), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2176), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2176), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2176), + [aux_sym_certificate_file_token1] = ACTIONS(2176), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2176), + [aux_sym_check_host_ip_token1] = ACTIONS(2176), + [aux_sym_ciphers_token1] = ACTIONS(2176), + [aux_sym_cipher_token1] = ACTIONS(2178), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2176), + [aux_sym_compression_token1] = ACTIONS(2176), + [aux_sym_connection_attempts_token1] = ACTIONS(2176), + [aux_sym_connect_timeout_token1] = ACTIONS(2176), + [aux_sym_control_master_token1] = ACTIONS(2176), + [aux_sym_control_path_token1] = ACTIONS(2176), + [aux_sym_control_persist_token1] = ACTIONS(2176), + [aux_sym_dynamic_forward_token1] = ACTIONS(2176), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2176), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2176), + [aux_sym_escape_char_token1] = ACTIONS(2176), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2176), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2176), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2176), + [aux_sym_forward_agent_token1] = ACTIONS(2176), + [aux_sym_forward_x11_token1] = ACTIONS(2178), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2176), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2176), + [aux_sym_gateway_ports_token1] = ACTIONS(2176), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2176), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2176), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2176), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2176), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2176), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2176), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2176), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2176), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2176), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2176), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2176), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2176), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2176), + [aux_sym_host_key_alias_token1] = ACTIONS(2176), + [aux_sym_hostname_token1] = ACTIONS(2176), + [aux_sym_identities_only_token1] = ACTIONS(2176), + [aux_sym_identity_agent_token1] = ACTIONS(2176), + [aux_sym_identity_file_token1] = ACTIONS(2176), + [aux_sym_ignore_unknown_token1] = ACTIONS(2176), + [aux_sym_include_token1] = ACTIONS(2176), + [aux_sym_ip_qos_token1] = ACTIONS(2176), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2176), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2176), + [aux_sym_kex_algorithms_token1] = ACTIONS(2176), + [aux_sym_known_hosts_command_token1] = ACTIONS(2176), + [aux_sym_local_command_token1] = ACTIONS(2176), + [aux_sym_local_forward_token1] = ACTIONS(2176), + [aux_sym_log_level_token1] = ACTIONS(2176), + [aux_sym_log_verbose_token1] = ACTIONS(2176), + [aux_sym_macs_token1] = ACTIONS(2176), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2176), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2176), + [aux_sym_password_authentication_token1] = ACTIONS(2176), + [aux_sym_permit_local_command_token1] = ACTIONS(2176), + [aux_sym_permit_remote_open_token1] = ACTIONS(2176), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2176), + [aux_sym_port_token1] = ACTIONS(2176), + [aux_sym_preferred_authentications_token1] = ACTIONS(2176), + [aux_sym_protocol_token1] = ACTIONS(2176), + [aux_sym_proxy_command_token1] = ACTIONS(2176), + [aux_sym_proxy_jump_token1] = ACTIONS(2176), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2176), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2176), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2176), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2176), + [aux_sym_rekey_limit_token1] = ACTIONS(2176), + [aux_sym_remote_command_token1] = ACTIONS(2176), + [aux_sym_remote_forward_token1] = ACTIONS(2176), + [aux_sym_request_tty_token1] = ACTIONS(2176), + [aux_sym_required_rsa_size_token1] = ACTIONS(2176), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2176), + [aux_sym_security_key_provider_token1] = ACTIONS(2176), + [aux_sym_send_env_token1] = ACTIONS(2176), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2176), + [aux_sym_server_alive_interval_token1] = ACTIONS(2176), + [aux_sym_session_type_token1] = ACTIONS(2176), + [aux_sym_set_env_token1] = ACTIONS(2176), + [aux_sym_stdin_null_token1] = ACTIONS(2176), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2176), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2176), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2176), + [aux_sym_syslog_facility_token1] = ACTIONS(2176), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2176), + [aux_sym_keep_alive_token1] = ACTIONS(2176), + [aux_sym_tunnel_token1] = ACTIONS(2178), + [aux_sym_tunnel_device_token1] = ACTIONS(2176), + [aux_sym_update_host_keys_token1] = ACTIONS(2176), + [aux_sym_use_keychain_token1] = ACTIONS(2176), + [aux_sym_use_roaming_token1] = ACTIONS(2176), + [aux_sym_user_token1] = ACTIONS(2178), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2176), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2176), + [aux_sym_visual_host_key_token1] = ACTIONS(2176), + [aux_sym_xauth_location_token1] = ACTIONS(2176), }, [283] = { - [ts_builtin_sym_end] = ACTIONS(2175), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2177), - [anon_sym_DQUOTE] = ACTIONS(2179), - [aux_sym_match_token1] = ACTIONS(2175), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2175), - [aux_sym_address_family_token1] = ACTIONS(2175), - [aux_sym_batch_mode_token1] = ACTIONS(2175), - [aux_sym_bind_address_token1] = ACTIONS(2175), - [aux_sym_bind_interface_token1] = ACTIONS(2175), - [aux_sym_canonical_domains_token1] = ACTIONS(2175), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2175), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2175), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2175), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2175), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2175), - [aux_sym_certificate_file_token1] = ACTIONS(2175), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2175), - [aux_sym_check_host_ip_token1] = ACTIONS(2175), - [aux_sym_ciphers_token1] = ACTIONS(2175), - [aux_sym_cipher_token1] = ACTIONS(2177), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2175), - [aux_sym_compression_token1] = ACTIONS(2175), - [aux_sym_connection_attempts_token1] = ACTIONS(2175), - [aux_sym_connect_timeout_token1] = ACTIONS(2175), - [aux_sym_control_master_token1] = ACTIONS(2175), - [aux_sym_control_path_token1] = ACTIONS(2175), - [aux_sym_control_persist_token1] = ACTIONS(2175), - [aux_sym_dynamic_forward_token1] = ACTIONS(2175), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2175), - [aux_sym_escape_char_token1] = ACTIONS(2175), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2175), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2175), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2175), - [aux_sym_forward_agent_token1] = ACTIONS(2175), - [aux_sym_forward_x11_token1] = ACTIONS(2177), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2175), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2175), - [aux_sym_gateway_ports_token1] = ACTIONS(2175), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2175), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2175), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2175), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2175), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2175), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2175), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2175), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2175), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2175), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2175), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2175), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2175), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2175), - [aux_sym_host_key_alias_token1] = ACTIONS(2175), - [aux_sym_hostname_token1] = ACTIONS(2175), - [aux_sym_identities_only_token1] = ACTIONS(2175), - [aux_sym_identity_agent_token1] = ACTIONS(2175), - [aux_sym_identity_file_token1] = ACTIONS(2175), - [aux_sym_ignore_unknown_token1] = ACTIONS(2175), - [aux_sym_include_token1] = ACTIONS(2175), - [aux_sym_ip_qos_token1] = ACTIONS(2175), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2175), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2175), - [aux_sym_kex_algorithms_token1] = ACTIONS(2175), - [aux_sym_known_hosts_command_token1] = ACTIONS(2175), - [aux_sym_local_command_token1] = ACTIONS(2175), - [aux_sym_local_forward_token1] = ACTIONS(2175), - [aux_sym_log_level_token1] = ACTIONS(2175), - [aux_sym_log_verbose_token1] = ACTIONS(2175), - [aux_sym_macs_token1] = ACTIONS(2175), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2175), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2175), - [aux_sym_password_authentication_token1] = ACTIONS(2175), - [aux_sym_permit_local_command_token1] = ACTIONS(2175), - [aux_sym_permit_remote_open_token1] = ACTIONS(2175), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2175), - [aux_sym_port_token1] = ACTIONS(2175), - [aux_sym_preferred_authentications_token1] = ACTIONS(2175), - [aux_sym_protocol_token1] = ACTIONS(2175), - [aux_sym_proxy_command_token1] = ACTIONS(2175), - [aux_sym_proxy_jump_token1] = ACTIONS(2175), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2175), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2175), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2175), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2175), - [aux_sym_rekey_limit_token1] = ACTIONS(2175), - [aux_sym_remote_command_token1] = ACTIONS(2175), - [aux_sym_remote_forward_token1] = ACTIONS(2175), - [aux_sym_request_tty_token1] = ACTIONS(2175), - [aux_sym_required_rsa_size_token1] = ACTIONS(2175), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2175), - [aux_sym_security_key_provider_token1] = ACTIONS(2175), - [aux_sym_send_env_token1] = ACTIONS(2175), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2175), - [aux_sym_server_alive_interval_token1] = ACTIONS(2175), - [aux_sym_session_type_token1] = ACTIONS(2175), - [aux_sym_set_env_token1] = ACTIONS(2175), - [aux_sym_stdin_null_token1] = ACTIONS(2175), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2175), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2175), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2175), - [aux_sym_syslog_facility_token1] = ACTIONS(2175), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2175), - [aux_sym_keep_alive_token1] = ACTIONS(2175), - [aux_sym_tunnel_token1] = ACTIONS(2177), - [aux_sym_tunnel_device_token1] = ACTIONS(2175), - [aux_sym_update_host_keys_token1] = ACTIONS(2175), - [aux_sym_use_keychain_token1] = ACTIONS(2175), - [aux_sym_use_roaming_token1] = ACTIONS(2175), - [aux_sym_user_token1] = ACTIONS(2177), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2175), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2175), - [aux_sym_visual_host_key_token1] = ACTIONS(2175), - [aux_sym_xauth_location_token1] = ACTIONS(2175), + [ts_builtin_sym_end] = ACTIONS(2182), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2182), + [aux_sym_match_token1] = ACTIONS(2182), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2182), + [aux_sym_address_family_token1] = ACTIONS(2182), + [aux_sym_batch_mode_token1] = ACTIONS(2182), + [aux_sym_bind_address_token1] = ACTIONS(2182), + [aux_sym_bind_interface_token1] = ACTIONS(2182), + [aux_sym_canonical_domains_token1] = ACTIONS(2182), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2182), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2182), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2182), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2182), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2182), + [aux_sym_certificate_file_token1] = ACTIONS(2182), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2182), + [aux_sym_check_host_ip_token1] = ACTIONS(2182), + [aux_sym_ciphers_token1] = ACTIONS(2182), + [aux_sym_cipher_token1] = ACTIONS(2184), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2182), + [aux_sym_compression_token1] = ACTIONS(2182), + [aux_sym_connection_attempts_token1] = ACTIONS(2182), + [aux_sym_connect_timeout_token1] = ACTIONS(2182), + [aux_sym_control_master_token1] = ACTIONS(2182), + [aux_sym_control_path_token1] = ACTIONS(2182), + [aux_sym_control_persist_token1] = ACTIONS(2182), + [aux_sym_dynamic_forward_token1] = ACTIONS(2182), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2182), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2182), + [aux_sym_escape_char_token1] = ACTIONS(2182), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2182), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2182), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2182), + [aux_sym_forward_agent_token1] = ACTIONS(2182), + [aux_sym_forward_x11_token1] = ACTIONS(2184), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2182), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2182), + [aux_sym_gateway_ports_token1] = ACTIONS(2182), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2182), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2182), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2182), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2182), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2182), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2182), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2182), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2182), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2182), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2182), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2182), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2182), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2182), + [aux_sym_host_key_alias_token1] = ACTIONS(2182), + [aux_sym_hostname_token1] = ACTIONS(2182), + [aux_sym_identities_only_token1] = ACTIONS(2182), + [aux_sym_identity_agent_token1] = ACTIONS(2182), + [aux_sym_identity_file_token1] = ACTIONS(2182), + [aux_sym_ignore_unknown_token1] = ACTIONS(2182), + [aux_sym_include_token1] = ACTIONS(2182), + [aux_sym_ip_qos_token1] = ACTIONS(2182), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2182), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2182), + [aux_sym_kex_algorithms_token1] = ACTIONS(2182), + [aux_sym_known_hosts_command_token1] = ACTIONS(2182), + [aux_sym_local_command_token1] = ACTIONS(2182), + [aux_sym_local_forward_token1] = ACTIONS(2182), + [aux_sym_log_level_token1] = ACTIONS(2182), + [aux_sym_log_verbose_token1] = ACTIONS(2182), + [aux_sym_macs_token1] = ACTIONS(2182), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2182), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2182), + [aux_sym_password_authentication_token1] = ACTIONS(2182), + [aux_sym_permit_local_command_token1] = ACTIONS(2182), + [aux_sym_permit_remote_open_token1] = ACTIONS(2182), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2182), + [aux_sym_port_token1] = ACTIONS(2182), + [aux_sym_preferred_authentications_token1] = ACTIONS(2182), + [aux_sym_protocol_token1] = ACTIONS(2182), + [aux_sym_proxy_command_token1] = ACTIONS(2182), + [aux_sym_proxy_jump_token1] = ACTIONS(2182), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2182), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2182), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2182), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2182), + [aux_sym_rekey_limit_token1] = ACTIONS(2182), + [aux_sym_remote_command_token1] = ACTIONS(2182), + [aux_sym_remote_forward_token1] = ACTIONS(2182), + [aux_sym_request_tty_token1] = ACTIONS(2182), + [aux_sym_required_rsa_size_token1] = ACTIONS(2182), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2182), + [aux_sym_security_key_provider_token1] = ACTIONS(2182), + [aux_sym_send_env_token1] = ACTIONS(2182), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2182), + [aux_sym_server_alive_interval_token1] = ACTIONS(2182), + [aux_sym_session_type_token1] = ACTIONS(2182), + [aux_sym_set_env_token1] = ACTIONS(2182), + [aux_sym_stdin_null_token1] = ACTIONS(2182), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2182), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2182), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2182), + [aux_sym_syslog_facility_token1] = ACTIONS(2182), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2182), + [aux_sym_keep_alive_token1] = ACTIONS(2182), + [aux_sym_tunnel_token1] = ACTIONS(2184), + [aux_sym_tunnel_device_token1] = ACTIONS(2182), + [aux_sym_update_host_keys_token1] = ACTIONS(2182), + [aux_sym_use_keychain_token1] = ACTIONS(2182), + [aux_sym_use_roaming_token1] = ACTIONS(2182), + [aux_sym_user_token1] = ACTIONS(2184), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2182), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2182), + [aux_sym_visual_host_key_token1] = ACTIONS(2182), + [aux_sym_xauth_location_token1] = ACTIONS(2182), }, [284] = { - [ts_builtin_sym_end] = ACTIONS(2181), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2181), - [aux_sym_match_token1] = ACTIONS(2181), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2181), - [aux_sym_address_family_token1] = ACTIONS(2181), - [aux_sym_batch_mode_token1] = ACTIONS(2181), - [aux_sym_bind_address_token1] = ACTIONS(2181), - [aux_sym_bind_interface_token1] = ACTIONS(2181), - [aux_sym_canonical_domains_token1] = ACTIONS(2181), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2181), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2181), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2181), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2181), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2181), - [aux_sym_certificate_file_token1] = ACTIONS(2181), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2181), - [aux_sym_check_host_ip_token1] = ACTIONS(2181), - [aux_sym_ciphers_token1] = ACTIONS(2181), - [aux_sym_cipher_token1] = ACTIONS(2183), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2181), - [aux_sym_compression_token1] = ACTIONS(2181), - [aux_sym_connection_attempts_token1] = ACTIONS(2181), - [aux_sym_connect_timeout_token1] = ACTIONS(2181), - [aux_sym_control_master_token1] = ACTIONS(2181), - [aux_sym_control_path_token1] = ACTIONS(2181), - [aux_sym_control_persist_token1] = ACTIONS(2181), - [aux_sym_dynamic_forward_token1] = ACTIONS(2181), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2181), - [aux_sym_escape_char_token1] = ACTIONS(2181), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2181), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2181), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2181), - [aux_sym_forward_agent_token1] = ACTIONS(2181), - [aux_sym_forward_x11_token1] = ACTIONS(2183), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2181), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2181), - [aux_sym_gateway_ports_token1] = ACTIONS(2181), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2181), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2181), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2181), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2181), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2181), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2181), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2181), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2181), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2181), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2181), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2181), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2181), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2181), - [aux_sym_host_key_alias_token1] = ACTIONS(2181), - [aux_sym_hostname_token1] = ACTIONS(2181), - [aux_sym_identities_only_token1] = ACTIONS(2181), - [aux_sym_identity_agent_token1] = ACTIONS(2181), - [aux_sym_identity_file_token1] = ACTIONS(2181), - [aux_sym_ignore_unknown_token1] = ACTIONS(2181), - [aux_sym_include_token1] = ACTIONS(2181), - [aux_sym_ip_qos_token1] = ACTIONS(2181), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2181), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2181), - [aux_sym_kex_algorithms_token1] = ACTIONS(2181), - [aux_sym_known_hosts_command_token1] = ACTIONS(2181), - [aux_sym_local_command_token1] = ACTIONS(2181), - [aux_sym_local_forward_token1] = ACTIONS(2181), - [aux_sym_log_level_token1] = ACTIONS(2181), - [aux_sym_log_verbose_token1] = ACTIONS(2181), - [aux_sym_macs_token1] = ACTIONS(2181), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2181), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2181), - [aux_sym_password_authentication_token1] = ACTIONS(2181), - [aux_sym_permit_local_command_token1] = ACTIONS(2181), - [aux_sym_permit_remote_open_token1] = ACTIONS(2181), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2181), - [aux_sym_port_token1] = ACTIONS(2181), - [aux_sym_preferred_authentications_token1] = ACTIONS(2181), - [aux_sym_protocol_token1] = ACTIONS(2181), - [aux_sym_proxy_command_token1] = ACTIONS(2181), - [aux_sym_proxy_jump_token1] = ACTIONS(2181), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2181), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2181), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2181), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2181), - [aux_sym_rekey_limit_token1] = ACTIONS(2181), - [aux_sym_remote_command_token1] = ACTIONS(2181), - [aux_sym_remote_forward_token1] = ACTIONS(2181), - [aux_sym_request_tty_token1] = ACTIONS(2181), - [aux_sym_required_rsa_size_token1] = ACTIONS(2181), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2181), - [aux_sym_security_key_provider_token1] = ACTIONS(2181), - [aux_sym_send_env_token1] = ACTIONS(2181), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2181), - [aux_sym_server_alive_interval_token1] = ACTIONS(2181), - [aux_sym_session_type_token1] = ACTIONS(2181), - [aux_sym_set_env_token1] = ACTIONS(2181), - [aux_sym_stdin_null_token1] = ACTIONS(2181), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2181), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2181), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2181), - [aux_sym_syslog_facility_token1] = ACTIONS(2181), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2181), - [aux_sym_keep_alive_token1] = ACTIONS(2181), - [aux_sym_tunnel_token1] = ACTIONS(2183), - [aux_sym_tunnel_device_token1] = ACTIONS(2181), - [aux_sym_update_host_keys_token1] = ACTIONS(2181), - [aux_sym_use_keychain_token1] = ACTIONS(2181), - [aux_sym_use_roaming_token1] = ACTIONS(2181), - [aux_sym_user_token1] = ACTIONS(2183), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2181), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2181), - [aux_sym_visual_host_key_token1] = ACTIONS(2181), - [aux_sym_xauth_location_token1] = ACTIONS(2181), + [ts_builtin_sym_end] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2188), + [anon_sym_DQUOTE] = ACTIONS(2190), + [aux_sym_match_token1] = ACTIONS(2186), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2186), + [aux_sym_address_family_token1] = ACTIONS(2186), + [aux_sym_batch_mode_token1] = ACTIONS(2186), + [aux_sym_bind_address_token1] = ACTIONS(2186), + [aux_sym_bind_interface_token1] = ACTIONS(2186), + [aux_sym_canonical_domains_token1] = ACTIONS(2186), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2186), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2186), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2186), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2186), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2186), + [aux_sym_certificate_file_token1] = ACTIONS(2186), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2186), + [aux_sym_check_host_ip_token1] = ACTIONS(2186), + [aux_sym_ciphers_token1] = ACTIONS(2186), + [aux_sym_cipher_token1] = ACTIONS(2188), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2186), + [aux_sym_compression_token1] = ACTIONS(2186), + [aux_sym_connection_attempts_token1] = ACTIONS(2186), + [aux_sym_connect_timeout_token1] = ACTIONS(2186), + [aux_sym_control_master_token1] = ACTIONS(2186), + [aux_sym_control_path_token1] = ACTIONS(2186), + [aux_sym_control_persist_token1] = ACTIONS(2186), + [aux_sym_dynamic_forward_token1] = ACTIONS(2186), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2186), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2186), + [aux_sym_escape_char_token1] = ACTIONS(2186), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2186), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2186), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2186), + [aux_sym_forward_agent_token1] = ACTIONS(2186), + [aux_sym_forward_x11_token1] = ACTIONS(2188), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2186), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2186), + [aux_sym_gateway_ports_token1] = ACTIONS(2186), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2186), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2186), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2186), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2186), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2186), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2186), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2186), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2186), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2186), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2186), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2186), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2186), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2186), + [aux_sym_host_key_alias_token1] = ACTIONS(2186), + [aux_sym_hostname_token1] = ACTIONS(2186), + [aux_sym_identities_only_token1] = ACTIONS(2186), + [aux_sym_identity_agent_token1] = ACTIONS(2186), + [aux_sym_identity_file_token1] = ACTIONS(2186), + [aux_sym_ignore_unknown_token1] = ACTIONS(2186), + [aux_sym_include_token1] = ACTIONS(2186), + [aux_sym_ip_qos_token1] = ACTIONS(2186), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2186), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2186), + [aux_sym_kex_algorithms_token1] = ACTIONS(2186), + [aux_sym_known_hosts_command_token1] = ACTIONS(2186), + [aux_sym_local_command_token1] = ACTIONS(2186), + [aux_sym_local_forward_token1] = ACTIONS(2186), + [aux_sym_log_level_token1] = ACTIONS(2186), + [aux_sym_log_verbose_token1] = ACTIONS(2186), + [aux_sym_macs_token1] = ACTIONS(2186), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2186), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2186), + [aux_sym_password_authentication_token1] = ACTIONS(2186), + [aux_sym_permit_local_command_token1] = ACTIONS(2186), + [aux_sym_permit_remote_open_token1] = ACTIONS(2186), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2186), + [aux_sym_port_token1] = ACTIONS(2186), + [aux_sym_preferred_authentications_token1] = ACTIONS(2186), + [aux_sym_protocol_token1] = ACTIONS(2186), + [aux_sym_proxy_command_token1] = ACTIONS(2186), + [aux_sym_proxy_jump_token1] = ACTIONS(2186), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2186), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2186), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2186), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2186), + [aux_sym_rekey_limit_token1] = ACTIONS(2186), + [aux_sym_remote_command_token1] = ACTIONS(2186), + [aux_sym_remote_forward_token1] = ACTIONS(2186), + [aux_sym_request_tty_token1] = ACTIONS(2186), + [aux_sym_required_rsa_size_token1] = ACTIONS(2186), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2186), + [aux_sym_security_key_provider_token1] = ACTIONS(2186), + [aux_sym_send_env_token1] = ACTIONS(2186), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2186), + [aux_sym_server_alive_interval_token1] = ACTIONS(2186), + [aux_sym_session_type_token1] = ACTIONS(2186), + [aux_sym_set_env_token1] = ACTIONS(2186), + [aux_sym_stdin_null_token1] = ACTIONS(2186), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2186), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2186), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2186), + [aux_sym_syslog_facility_token1] = ACTIONS(2186), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2186), + [aux_sym_keep_alive_token1] = ACTIONS(2186), + [aux_sym_tunnel_token1] = ACTIONS(2188), + [aux_sym_tunnel_device_token1] = ACTIONS(2186), + [aux_sym_update_host_keys_token1] = ACTIONS(2186), + [aux_sym_use_keychain_token1] = ACTIONS(2186), + [aux_sym_use_roaming_token1] = ACTIONS(2186), + [aux_sym_user_token1] = ACTIONS(2188), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2186), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2186), + [aux_sym_visual_host_key_token1] = ACTIONS(2186), + [aux_sym_xauth_location_token1] = ACTIONS(2186), }, [285] = { - [ts_builtin_sym_end] = ACTIONS(2185), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2187), - [anon_sym_DQUOTE] = ACTIONS(2185), - [aux_sym_match_token1] = ACTIONS(2185), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2185), - [aux_sym_address_family_token1] = ACTIONS(2185), - [aux_sym_batch_mode_token1] = ACTIONS(2185), - [aux_sym_bind_address_token1] = ACTIONS(2185), - [aux_sym_bind_interface_token1] = ACTIONS(2185), - [aux_sym_canonical_domains_token1] = ACTIONS(2185), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2185), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2185), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2185), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2185), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2185), - [aux_sym_certificate_file_token1] = ACTIONS(2185), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2185), - [aux_sym_check_host_ip_token1] = ACTIONS(2185), - [aux_sym_ciphers_token1] = ACTIONS(2185), - [aux_sym_cipher_token1] = ACTIONS(2187), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2185), - [aux_sym_compression_token1] = ACTIONS(2185), - [aux_sym_connection_attempts_token1] = ACTIONS(2185), - [aux_sym_connect_timeout_token1] = ACTIONS(2185), - [aux_sym_control_master_token1] = ACTIONS(2185), - [aux_sym_control_path_token1] = ACTIONS(2185), - [aux_sym_control_persist_token1] = ACTIONS(2185), - [aux_sym_dynamic_forward_token1] = ACTIONS(2185), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2185), - [aux_sym_escape_char_token1] = ACTIONS(2185), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2185), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2185), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2185), - [aux_sym_forward_agent_token1] = ACTIONS(2185), - [aux_sym_forward_x11_token1] = ACTIONS(2187), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2185), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2185), - [aux_sym_gateway_ports_token1] = ACTIONS(2185), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2185), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2185), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2185), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2185), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2185), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2185), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2185), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2185), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2185), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2185), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2185), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2185), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2185), - [aux_sym_host_key_alias_token1] = ACTIONS(2185), - [aux_sym_hostname_token1] = ACTIONS(2185), - [aux_sym_identities_only_token1] = ACTIONS(2185), - [aux_sym_identity_agent_token1] = ACTIONS(2185), - [aux_sym_identity_file_token1] = ACTIONS(2185), - [aux_sym_ignore_unknown_token1] = ACTIONS(2185), - [aux_sym_include_token1] = ACTIONS(2185), - [aux_sym_ip_qos_token1] = ACTIONS(2185), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2185), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2185), - [aux_sym_kex_algorithms_token1] = ACTIONS(2185), - [aux_sym_known_hosts_command_token1] = ACTIONS(2185), - [aux_sym_local_command_token1] = ACTIONS(2185), - [aux_sym_local_forward_token1] = ACTIONS(2185), - [aux_sym_log_level_token1] = ACTIONS(2185), - [aux_sym_log_verbose_token1] = ACTIONS(2185), - [aux_sym_macs_token1] = ACTIONS(2185), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2185), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2185), - [aux_sym_password_authentication_token1] = ACTIONS(2185), - [aux_sym_permit_local_command_token1] = ACTIONS(2185), - [aux_sym_permit_remote_open_token1] = ACTIONS(2185), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2185), - [aux_sym_port_token1] = ACTIONS(2185), - [aux_sym_preferred_authentications_token1] = ACTIONS(2185), - [aux_sym_protocol_token1] = ACTIONS(2185), - [aux_sym_proxy_command_token1] = ACTIONS(2185), - [aux_sym_proxy_jump_token1] = ACTIONS(2185), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2185), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2185), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2185), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2185), - [aux_sym_rekey_limit_token1] = ACTIONS(2185), - [aux_sym_remote_command_token1] = ACTIONS(2185), - [aux_sym_remote_forward_token1] = ACTIONS(2185), - [aux_sym_request_tty_token1] = ACTIONS(2185), - [aux_sym_required_rsa_size_token1] = ACTIONS(2185), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2185), - [aux_sym_security_key_provider_token1] = ACTIONS(2185), - [aux_sym_send_env_token1] = ACTIONS(2185), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2185), - [aux_sym_server_alive_interval_token1] = ACTIONS(2185), - [aux_sym_session_type_token1] = ACTIONS(2185), - [aux_sym_set_env_token1] = ACTIONS(2185), - [aux_sym_stdin_null_token1] = ACTIONS(2185), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2185), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2185), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2185), - [aux_sym_syslog_facility_token1] = ACTIONS(2185), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2185), - [aux_sym_keep_alive_token1] = ACTIONS(2185), - [aux_sym_tunnel_token1] = ACTIONS(2187), - [aux_sym_tunnel_device_token1] = ACTIONS(2185), - [aux_sym_update_host_keys_token1] = ACTIONS(2185), - [aux_sym_use_keychain_token1] = ACTIONS(2185), - [aux_sym_use_roaming_token1] = ACTIONS(2185), - [aux_sym_user_token1] = ACTIONS(2187), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2185), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2185), - [aux_sym_visual_host_key_token1] = ACTIONS(2185), - [aux_sym_xauth_location_token1] = ACTIONS(2185), + [ts_builtin_sym_end] = ACTIONS(2192), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2194), + [anon_sym_DQUOTE] = ACTIONS(2196), + [aux_sym_match_token1] = ACTIONS(2192), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2192), + [aux_sym_address_family_token1] = ACTIONS(2192), + [aux_sym_batch_mode_token1] = ACTIONS(2192), + [aux_sym_bind_address_token1] = ACTIONS(2192), + [aux_sym_bind_interface_token1] = ACTIONS(2192), + [aux_sym_canonical_domains_token1] = ACTIONS(2192), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2192), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2192), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2192), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2192), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2192), + [aux_sym_certificate_file_token1] = ACTIONS(2192), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2192), + [aux_sym_check_host_ip_token1] = ACTIONS(2192), + [aux_sym_ciphers_token1] = ACTIONS(2192), + [aux_sym_cipher_token1] = ACTIONS(2194), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2192), + [aux_sym_compression_token1] = ACTIONS(2192), + [aux_sym_connection_attempts_token1] = ACTIONS(2192), + [aux_sym_connect_timeout_token1] = ACTIONS(2192), + [aux_sym_control_master_token1] = ACTIONS(2192), + [aux_sym_control_path_token1] = ACTIONS(2192), + [aux_sym_control_persist_token1] = ACTIONS(2192), + [aux_sym_dynamic_forward_token1] = ACTIONS(2192), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2192), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2192), + [aux_sym_escape_char_token1] = ACTIONS(2192), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2192), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2192), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2192), + [aux_sym_forward_agent_token1] = ACTIONS(2192), + [aux_sym_forward_x11_token1] = ACTIONS(2194), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2192), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2192), + [aux_sym_gateway_ports_token1] = ACTIONS(2192), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2192), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2192), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2192), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2192), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2192), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2192), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2192), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2192), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2192), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2192), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2192), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2192), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2192), + [aux_sym_host_key_alias_token1] = ACTIONS(2192), + [aux_sym_hostname_token1] = ACTIONS(2192), + [aux_sym_identities_only_token1] = ACTIONS(2192), + [aux_sym_identity_agent_token1] = ACTIONS(2192), + [aux_sym_identity_file_token1] = ACTIONS(2192), + [aux_sym_ignore_unknown_token1] = ACTIONS(2192), + [aux_sym_include_token1] = ACTIONS(2192), + [aux_sym_ip_qos_token1] = ACTIONS(2192), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2192), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2192), + [aux_sym_kex_algorithms_token1] = ACTIONS(2192), + [aux_sym_known_hosts_command_token1] = ACTIONS(2192), + [aux_sym_local_command_token1] = ACTIONS(2192), + [aux_sym_local_forward_token1] = ACTIONS(2192), + [aux_sym_log_level_token1] = ACTIONS(2192), + [aux_sym_log_verbose_token1] = ACTIONS(2192), + [aux_sym_macs_token1] = ACTIONS(2192), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2192), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2192), + [aux_sym_password_authentication_token1] = ACTIONS(2192), + [aux_sym_permit_local_command_token1] = ACTIONS(2192), + [aux_sym_permit_remote_open_token1] = ACTIONS(2192), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2192), + [aux_sym_port_token1] = ACTIONS(2192), + [aux_sym_preferred_authentications_token1] = ACTIONS(2192), + [aux_sym_protocol_token1] = ACTIONS(2192), + [aux_sym_proxy_command_token1] = ACTIONS(2192), + [aux_sym_proxy_jump_token1] = ACTIONS(2192), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2192), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2192), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2192), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2192), + [aux_sym_rekey_limit_token1] = ACTIONS(2192), + [aux_sym_remote_command_token1] = ACTIONS(2192), + [aux_sym_remote_forward_token1] = ACTIONS(2192), + [aux_sym_request_tty_token1] = ACTIONS(2192), + [aux_sym_required_rsa_size_token1] = ACTIONS(2192), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2192), + [aux_sym_security_key_provider_token1] = ACTIONS(2192), + [aux_sym_send_env_token1] = ACTIONS(2192), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2192), + [aux_sym_server_alive_interval_token1] = ACTIONS(2192), + [aux_sym_session_type_token1] = ACTIONS(2192), + [aux_sym_set_env_token1] = ACTIONS(2192), + [aux_sym_stdin_null_token1] = ACTIONS(2192), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2192), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2192), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2192), + [aux_sym_syslog_facility_token1] = ACTIONS(2192), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2192), + [aux_sym_keep_alive_token1] = ACTIONS(2192), + [aux_sym_tunnel_token1] = ACTIONS(2194), + [aux_sym_tunnel_device_token1] = ACTIONS(2192), + [aux_sym_update_host_keys_token1] = ACTIONS(2192), + [aux_sym_use_keychain_token1] = ACTIONS(2192), + [aux_sym_use_roaming_token1] = ACTIONS(2192), + [aux_sym_user_token1] = ACTIONS(2194), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2192), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2192), + [aux_sym_visual_host_key_token1] = ACTIONS(2192), + [aux_sym_xauth_location_token1] = ACTIONS(2192), }, [286] = { - [ts_builtin_sym_end] = ACTIONS(2189), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2191), - [anon_sym_DQUOTE] = ACTIONS(2193), - [aux_sym_match_token1] = ACTIONS(2189), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2189), - [aux_sym_address_family_token1] = ACTIONS(2189), - [aux_sym_batch_mode_token1] = ACTIONS(2189), - [aux_sym_bind_address_token1] = ACTIONS(2189), - [aux_sym_bind_interface_token1] = ACTIONS(2189), - [aux_sym_canonical_domains_token1] = ACTIONS(2189), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2189), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2189), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2189), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2189), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2189), - [aux_sym_certificate_file_token1] = ACTIONS(2189), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2189), - [aux_sym_check_host_ip_token1] = ACTIONS(2189), - [aux_sym_ciphers_token1] = ACTIONS(2189), - [aux_sym_cipher_token1] = ACTIONS(2191), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2189), - [aux_sym_compression_token1] = ACTIONS(2189), - [aux_sym_connection_attempts_token1] = ACTIONS(2189), - [aux_sym_connect_timeout_token1] = ACTIONS(2189), - [aux_sym_control_master_token1] = ACTIONS(2189), - [aux_sym_control_path_token1] = ACTIONS(2189), - [aux_sym_control_persist_token1] = ACTIONS(2189), - [aux_sym_dynamic_forward_token1] = ACTIONS(2189), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2189), - [aux_sym_escape_char_token1] = ACTIONS(2189), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2189), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2189), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2189), - [aux_sym_forward_agent_token1] = ACTIONS(2189), - [aux_sym_forward_x11_token1] = ACTIONS(2191), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2189), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2189), - [aux_sym_gateway_ports_token1] = ACTIONS(2189), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2189), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2189), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2189), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2189), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2189), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2189), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2189), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2189), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2189), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2189), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2189), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2189), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2189), - [aux_sym_host_key_alias_token1] = ACTIONS(2189), - [aux_sym_hostname_token1] = ACTIONS(2189), - [aux_sym_identities_only_token1] = ACTIONS(2189), - [aux_sym_identity_agent_token1] = ACTIONS(2189), - [aux_sym_identity_file_token1] = ACTIONS(2189), - [aux_sym_ignore_unknown_token1] = ACTIONS(2189), - [aux_sym_include_token1] = ACTIONS(2189), - [aux_sym_ip_qos_token1] = ACTIONS(2189), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2189), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2189), - [aux_sym_kex_algorithms_token1] = ACTIONS(2189), - [aux_sym_known_hosts_command_token1] = ACTIONS(2189), - [aux_sym_local_command_token1] = ACTIONS(2189), - [aux_sym_local_forward_token1] = ACTIONS(2189), - [aux_sym_log_level_token1] = ACTIONS(2189), - [aux_sym_log_verbose_token1] = ACTIONS(2189), - [aux_sym_macs_token1] = ACTIONS(2189), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2189), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2189), - [aux_sym_password_authentication_token1] = ACTIONS(2189), - [aux_sym_permit_local_command_token1] = ACTIONS(2189), - [aux_sym_permit_remote_open_token1] = ACTIONS(2189), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2189), - [aux_sym_port_token1] = ACTIONS(2189), - [aux_sym_preferred_authentications_token1] = ACTIONS(2189), - [aux_sym_protocol_token1] = ACTIONS(2189), - [aux_sym_proxy_command_token1] = ACTIONS(2189), - [aux_sym_proxy_jump_token1] = ACTIONS(2189), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2189), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2189), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2189), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2189), - [aux_sym_rekey_limit_token1] = ACTIONS(2189), - [aux_sym_remote_command_token1] = ACTIONS(2189), - [aux_sym_remote_forward_token1] = ACTIONS(2189), - [aux_sym_request_tty_token1] = ACTIONS(2189), - [aux_sym_required_rsa_size_token1] = ACTIONS(2189), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2189), - [aux_sym_security_key_provider_token1] = ACTIONS(2189), - [aux_sym_send_env_token1] = ACTIONS(2189), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2189), - [aux_sym_server_alive_interval_token1] = ACTIONS(2189), - [aux_sym_session_type_token1] = ACTIONS(2189), - [aux_sym_set_env_token1] = ACTIONS(2189), - [aux_sym_stdin_null_token1] = ACTIONS(2189), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2189), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2189), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2189), - [aux_sym_syslog_facility_token1] = ACTIONS(2189), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2189), - [aux_sym_keep_alive_token1] = ACTIONS(2189), - [aux_sym_tunnel_token1] = ACTIONS(2191), - [aux_sym_tunnel_device_token1] = ACTIONS(2189), - [aux_sym_update_host_keys_token1] = ACTIONS(2189), - [aux_sym_use_keychain_token1] = ACTIONS(2189), - [aux_sym_use_roaming_token1] = ACTIONS(2189), - [aux_sym_user_token1] = ACTIONS(2191), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2189), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2189), - [aux_sym_visual_host_key_token1] = ACTIONS(2189), - [aux_sym_xauth_location_token1] = ACTIONS(2189), + [ts_builtin_sym_end] = ACTIONS(2198), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2198), + [aux_sym_match_token1] = ACTIONS(2198), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2198), + [aux_sym_address_family_token1] = ACTIONS(2198), + [aux_sym_batch_mode_token1] = ACTIONS(2198), + [aux_sym_bind_address_token1] = ACTIONS(2198), + [aux_sym_bind_interface_token1] = ACTIONS(2198), + [aux_sym_canonical_domains_token1] = ACTIONS(2198), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2198), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2198), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2198), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2198), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2198), + [aux_sym_certificate_file_token1] = ACTIONS(2198), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2198), + [aux_sym_check_host_ip_token1] = ACTIONS(2198), + [aux_sym_ciphers_token1] = ACTIONS(2198), + [aux_sym_cipher_token1] = ACTIONS(2200), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2198), + [aux_sym_compression_token1] = ACTIONS(2198), + [aux_sym_connection_attempts_token1] = ACTIONS(2198), + [aux_sym_connect_timeout_token1] = ACTIONS(2198), + [aux_sym_control_master_token1] = ACTIONS(2198), + [aux_sym_control_path_token1] = ACTIONS(2198), + [aux_sym_control_persist_token1] = ACTIONS(2198), + [aux_sym_dynamic_forward_token1] = ACTIONS(2198), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2198), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2198), + [aux_sym_escape_char_token1] = ACTIONS(2198), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2198), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2198), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2198), + [aux_sym_forward_agent_token1] = ACTIONS(2198), + [aux_sym_forward_x11_token1] = ACTIONS(2200), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2198), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2198), + [aux_sym_gateway_ports_token1] = ACTIONS(2198), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2198), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2198), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2198), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2198), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2198), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2198), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2198), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2198), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2198), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2198), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2198), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2198), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2198), + [aux_sym_host_key_alias_token1] = ACTIONS(2198), + [aux_sym_hostname_token1] = ACTIONS(2198), + [aux_sym_identities_only_token1] = ACTIONS(2198), + [aux_sym_identity_agent_token1] = ACTIONS(2198), + [aux_sym_identity_file_token1] = ACTIONS(2198), + [aux_sym_ignore_unknown_token1] = ACTIONS(2198), + [aux_sym_include_token1] = ACTIONS(2198), + [aux_sym_ip_qos_token1] = ACTIONS(2198), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2198), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2198), + [aux_sym_kex_algorithms_token1] = ACTIONS(2198), + [aux_sym_known_hosts_command_token1] = ACTIONS(2198), + [aux_sym_local_command_token1] = ACTIONS(2198), + [aux_sym_local_forward_token1] = ACTIONS(2198), + [aux_sym_log_level_token1] = ACTIONS(2198), + [aux_sym_log_verbose_token1] = ACTIONS(2198), + [aux_sym_macs_token1] = ACTIONS(2198), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2198), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2198), + [aux_sym_password_authentication_token1] = ACTIONS(2198), + [aux_sym_permit_local_command_token1] = ACTIONS(2198), + [aux_sym_permit_remote_open_token1] = ACTIONS(2198), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2198), + [aux_sym_port_token1] = ACTIONS(2198), + [aux_sym_preferred_authentications_token1] = ACTIONS(2198), + [aux_sym_protocol_token1] = ACTIONS(2198), + [aux_sym_proxy_command_token1] = ACTIONS(2198), + [aux_sym_proxy_jump_token1] = ACTIONS(2198), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2198), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2198), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2198), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2198), + [aux_sym_rekey_limit_token1] = ACTIONS(2198), + [aux_sym_remote_command_token1] = ACTIONS(2198), + [aux_sym_remote_forward_token1] = ACTIONS(2198), + [aux_sym_request_tty_token1] = ACTIONS(2198), + [aux_sym_required_rsa_size_token1] = ACTIONS(2198), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2198), + [aux_sym_security_key_provider_token1] = ACTIONS(2198), + [aux_sym_send_env_token1] = ACTIONS(2198), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2198), + [aux_sym_server_alive_interval_token1] = ACTIONS(2198), + [aux_sym_session_type_token1] = ACTIONS(2198), + [aux_sym_set_env_token1] = ACTIONS(2198), + [aux_sym_stdin_null_token1] = ACTIONS(2198), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2198), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2198), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2198), + [aux_sym_syslog_facility_token1] = ACTIONS(2198), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2198), + [aux_sym_keep_alive_token1] = ACTIONS(2198), + [aux_sym_tunnel_token1] = ACTIONS(2200), + [aux_sym_tunnel_device_token1] = ACTIONS(2198), + [aux_sym_update_host_keys_token1] = ACTIONS(2198), + [aux_sym_use_keychain_token1] = ACTIONS(2198), + [aux_sym_use_roaming_token1] = ACTIONS(2198), + [aux_sym_user_token1] = ACTIONS(2200), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2198), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2198), + [aux_sym_visual_host_key_token1] = ACTIONS(2198), + [aux_sym_xauth_location_token1] = ACTIONS(2198), }, [287] = { - [ts_builtin_sym_end] = ACTIONS(2195), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2197), - [anon_sym_DQUOTE] = ACTIONS(2199), - [aux_sym_match_token1] = ACTIONS(2195), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2195), - [aux_sym_address_family_token1] = ACTIONS(2195), - [aux_sym_batch_mode_token1] = ACTIONS(2195), - [aux_sym_bind_address_token1] = ACTIONS(2195), - [aux_sym_bind_interface_token1] = ACTIONS(2195), - [aux_sym_canonical_domains_token1] = ACTIONS(2195), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2195), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2195), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2195), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2195), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2195), - [aux_sym_certificate_file_token1] = ACTIONS(2195), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2195), - [aux_sym_check_host_ip_token1] = ACTIONS(2195), - [aux_sym_ciphers_token1] = ACTIONS(2195), - [aux_sym_cipher_token1] = ACTIONS(2197), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2195), - [aux_sym_compression_token1] = ACTIONS(2195), - [aux_sym_connection_attempts_token1] = ACTIONS(2195), - [aux_sym_connect_timeout_token1] = ACTIONS(2195), - [aux_sym_control_master_token1] = ACTIONS(2195), - [aux_sym_control_path_token1] = ACTIONS(2195), - [aux_sym_control_persist_token1] = ACTIONS(2195), - [aux_sym_dynamic_forward_token1] = ACTIONS(2195), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2195), - [aux_sym_escape_char_token1] = ACTIONS(2195), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2195), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2195), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2195), - [aux_sym_forward_agent_token1] = ACTIONS(2195), - [aux_sym_forward_x11_token1] = ACTIONS(2197), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2195), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2195), - [aux_sym_gateway_ports_token1] = ACTIONS(2195), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2195), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2195), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2195), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2195), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2195), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2195), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2195), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2195), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2195), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2195), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2195), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2195), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2195), - [aux_sym_host_key_alias_token1] = ACTIONS(2195), - [aux_sym_hostname_token1] = ACTIONS(2195), - [aux_sym_identities_only_token1] = ACTIONS(2195), - [aux_sym_identity_agent_token1] = ACTIONS(2195), - [aux_sym_identity_file_token1] = ACTIONS(2195), - [aux_sym_ignore_unknown_token1] = ACTIONS(2195), - [aux_sym_include_token1] = ACTIONS(2195), - [aux_sym_ip_qos_token1] = ACTIONS(2195), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2195), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2195), - [aux_sym_kex_algorithms_token1] = ACTIONS(2195), - [aux_sym_known_hosts_command_token1] = ACTIONS(2195), - [aux_sym_local_command_token1] = ACTIONS(2195), - [aux_sym_local_forward_token1] = ACTIONS(2195), - [aux_sym_log_level_token1] = ACTIONS(2195), - [aux_sym_log_verbose_token1] = ACTIONS(2195), - [aux_sym_macs_token1] = ACTIONS(2195), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2195), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2195), - [aux_sym_password_authentication_token1] = ACTIONS(2195), - [aux_sym_permit_local_command_token1] = ACTIONS(2195), - [aux_sym_permit_remote_open_token1] = ACTIONS(2195), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2195), - [aux_sym_port_token1] = ACTIONS(2195), - [aux_sym_preferred_authentications_token1] = ACTIONS(2195), - [aux_sym_protocol_token1] = ACTIONS(2195), - [aux_sym_proxy_command_token1] = ACTIONS(2195), - [aux_sym_proxy_jump_token1] = ACTIONS(2195), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2195), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2195), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2195), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2195), - [aux_sym_rekey_limit_token1] = ACTIONS(2195), - [aux_sym_remote_command_token1] = ACTIONS(2195), - [aux_sym_remote_forward_token1] = ACTIONS(2195), - [aux_sym_request_tty_token1] = ACTIONS(2195), - [aux_sym_required_rsa_size_token1] = ACTIONS(2195), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2195), - [aux_sym_security_key_provider_token1] = ACTIONS(2195), - [aux_sym_send_env_token1] = ACTIONS(2195), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2195), - [aux_sym_server_alive_interval_token1] = ACTIONS(2195), - [aux_sym_session_type_token1] = ACTIONS(2195), - [aux_sym_set_env_token1] = ACTIONS(2195), - [aux_sym_stdin_null_token1] = ACTIONS(2195), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2195), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2195), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2195), - [aux_sym_syslog_facility_token1] = ACTIONS(2195), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2195), - [aux_sym_keep_alive_token1] = ACTIONS(2195), - [aux_sym_tunnel_token1] = ACTIONS(2197), - [aux_sym_tunnel_device_token1] = ACTIONS(2195), - [aux_sym_update_host_keys_token1] = ACTIONS(2195), - [aux_sym_use_keychain_token1] = ACTIONS(2195), - [aux_sym_use_roaming_token1] = ACTIONS(2195), - [aux_sym_user_token1] = ACTIONS(2197), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2195), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2195), - [aux_sym_visual_host_key_token1] = ACTIONS(2195), - [aux_sym_xauth_location_token1] = ACTIONS(2195), + [ts_builtin_sym_end] = ACTIONS(2202), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2204), + [anon_sym_DQUOTE] = ACTIONS(2202), + [aux_sym_match_token1] = ACTIONS(2202), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2202), + [aux_sym_address_family_token1] = ACTIONS(2202), + [aux_sym_batch_mode_token1] = ACTIONS(2202), + [aux_sym_bind_address_token1] = ACTIONS(2202), + [aux_sym_bind_interface_token1] = ACTIONS(2202), + [aux_sym_canonical_domains_token1] = ACTIONS(2202), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2202), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2202), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2202), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2202), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2202), + [aux_sym_certificate_file_token1] = ACTIONS(2202), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2202), + [aux_sym_check_host_ip_token1] = ACTIONS(2202), + [aux_sym_ciphers_token1] = ACTIONS(2202), + [aux_sym_cipher_token1] = ACTIONS(2204), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2202), + [aux_sym_compression_token1] = ACTIONS(2202), + [aux_sym_connection_attempts_token1] = ACTIONS(2202), + [aux_sym_connect_timeout_token1] = ACTIONS(2202), + [aux_sym_control_master_token1] = ACTIONS(2202), + [aux_sym_control_path_token1] = ACTIONS(2202), + [aux_sym_control_persist_token1] = ACTIONS(2202), + [aux_sym_dynamic_forward_token1] = ACTIONS(2202), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2202), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2202), + [aux_sym_escape_char_token1] = ACTIONS(2202), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2202), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2202), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2202), + [aux_sym_forward_agent_token1] = ACTIONS(2202), + [aux_sym_forward_x11_token1] = ACTIONS(2204), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2202), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2202), + [aux_sym_gateway_ports_token1] = ACTIONS(2202), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2202), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2202), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2202), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2202), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2202), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2202), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2202), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2202), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2202), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2202), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2202), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2202), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2202), + [aux_sym_host_key_alias_token1] = ACTIONS(2202), + [aux_sym_hostname_token1] = ACTIONS(2202), + [aux_sym_identities_only_token1] = ACTIONS(2202), + [aux_sym_identity_agent_token1] = ACTIONS(2202), + [aux_sym_identity_file_token1] = ACTIONS(2202), + [aux_sym_ignore_unknown_token1] = ACTIONS(2202), + [aux_sym_include_token1] = ACTIONS(2202), + [aux_sym_ip_qos_token1] = ACTIONS(2202), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2202), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2202), + [aux_sym_kex_algorithms_token1] = ACTIONS(2202), + [aux_sym_known_hosts_command_token1] = ACTIONS(2202), + [aux_sym_local_command_token1] = ACTIONS(2202), + [aux_sym_local_forward_token1] = ACTIONS(2202), + [aux_sym_log_level_token1] = ACTIONS(2202), + [aux_sym_log_verbose_token1] = ACTIONS(2202), + [aux_sym_macs_token1] = ACTIONS(2202), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2202), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2202), + [aux_sym_password_authentication_token1] = ACTIONS(2202), + [aux_sym_permit_local_command_token1] = ACTIONS(2202), + [aux_sym_permit_remote_open_token1] = ACTIONS(2202), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2202), + [aux_sym_port_token1] = ACTIONS(2202), + [aux_sym_preferred_authentications_token1] = ACTIONS(2202), + [aux_sym_protocol_token1] = ACTIONS(2202), + [aux_sym_proxy_command_token1] = ACTIONS(2202), + [aux_sym_proxy_jump_token1] = ACTIONS(2202), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2202), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2202), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2202), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2202), + [aux_sym_rekey_limit_token1] = ACTIONS(2202), + [aux_sym_remote_command_token1] = ACTIONS(2202), + [aux_sym_remote_forward_token1] = ACTIONS(2202), + [aux_sym_request_tty_token1] = ACTIONS(2202), + [aux_sym_required_rsa_size_token1] = ACTIONS(2202), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2202), + [aux_sym_security_key_provider_token1] = ACTIONS(2202), + [aux_sym_send_env_token1] = ACTIONS(2202), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2202), + [aux_sym_server_alive_interval_token1] = ACTIONS(2202), + [aux_sym_session_type_token1] = ACTIONS(2202), + [aux_sym_set_env_token1] = ACTIONS(2202), + [aux_sym_stdin_null_token1] = ACTIONS(2202), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2202), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2202), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2202), + [aux_sym_syslog_facility_token1] = ACTIONS(2202), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2202), + [aux_sym_keep_alive_token1] = ACTIONS(2202), + [aux_sym_tunnel_token1] = ACTIONS(2204), + [aux_sym_tunnel_device_token1] = ACTIONS(2202), + [aux_sym_update_host_keys_token1] = ACTIONS(2202), + [aux_sym_use_keychain_token1] = ACTIONS(2202), + [aux_sym_use_roaming_token1] = ACTIONS(2202), + [aux_sym_user_token1] = ACTIONS(2204), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2202), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2202), + [aux_sym_visual_host_key_token1] = ACTIONS(2202), + [aux_sym_xauth_location_token1] = ACTIONS(2202), }, [288] = { - [ts_builtin_sym_end] = ACTIONS(2201), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2203), - [anon_sym_DQUOTE] = ACTIONS(2201), - [aux_sym_match_token1] = ACTIONS(2201), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2201), - [aux_sym_address_family_token1] = ACTIONS(2201), - [aux_sym_batch_mode_token1] = ACTIONS(2201), - [aux_sym_bind_address_token1] = ACTIONS(2201), - [aux_sym_bind_interface_token1] = ACTIONS(2201), - [aux_sym_canonical_domains_token1] = ACTIONS(2201), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2201), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2201), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2201), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2201), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2201), - [aux_sym_certificate_file_token1] = ACTIONS(2201), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2201), - [aux_sym_check_host_ip_token1] = ACTIONS(2201), - [aux_sym_ciphers_token1] = ACTIONS(2201), - [aux_sym_cipher_token1] = ACTIONS(2203), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2201), - [aux_sym_compression_token1] = ACTIONS(2201), - [aux_sym_connection_attempts_token1] = ACTIONS(2201), - [aux_sym_connect_timeout_token1] = ACTIONS(2201), - [aux_sym_control_master_token1] = ACTIONS(2201), - [aux_sym_control_path_token1] = ACTIONS(2201), - [aux_sym_control_persist_token1] = ACTIONS(2201), - [aux_sym_dynamic_forward_token1] = ACTIONS(2201), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2201), - [aux_sym_escape_char_token1] = ACTIONS(2201), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2201), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2201), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2201), - [aux_sym_forward_agent_token1] = ACTIONS(2201), - [aux_sym_forward_x11_token1] = ACTIONS(2203), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2201), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2201), - [aux_sym_gateway_ports_token1] = ACTIONS(2201), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2201), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2201), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2201), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2201), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2201), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2201), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2201), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2201), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2201), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2201), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2201), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2201), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2201), - [aux_sym_host_key_alias_token1] = ACTIONS(2201), - [aux_sym_hostname_token1] = ACTIONS(2201), - [aux_sym_identities_only_token1] = ACTIONS(2201), - [aux_sym_identity_agent_token1] = ACTIONS(2201), - [aux_sym_identity_file_token1] = ACTIONS(2201), - [aux_sym_ignore_unknown_token1] = ACTIONS(2201), - [aux_sym_include_token1] = ACTIONS(2201), - [aux_sym_ip_qos_token1] = ACTIONS(2201), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2201), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2201), - [aux_sym_kex_algorithms_token1] = ACTIONS(2201), - [aux_sym_known_hosts_command_token1] = ACTIONS(2201), - [aux_sym_local_command_token1] = ACTIONS(2201), - [aux_sym_local_forward_token1] = ACTIONS(2201), - [aux_sym_log_level_token1] = ACTIONS(2201), - [aux_sym_log_verbose_token1] = ACTIONS(2201), - [aux_sym_macs_token1] = ACTIONS(2201), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2201), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2201), - [aux_sym_password_authentication_token1] = ACTIONS(2201), - [aux_sym_permit_local_command_token1] = ACTIONS(2201), - [aux_sym_permit_remote_open_token1] = ACTIONS(2201), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2201), - [aux_sym_port_token1] = ACTIONS(2201), - [aux_sym_preferred_authentications_token1] = ACTIONS(2201), - [aux_sym_protocol_token1] = ACTIONS(2201), - [aux_sym_proxy_command_token1] = ACTIONS(2201), - [aux_sym_proxy_jump_token1] = ACTIONS(2201), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2201), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2201), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2201), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2201), - [aux_sym_rekey_limit_token1] = ACTIONS(2201), - [aux_sym_remote_command_token1] = ACTIONS(2201), - [aux_sym_remote_forward_token1] = ACTIONS(2201), - [aux_sym_request_tty_token1] = ACTIONS(2201), - [aux_sym_required_rsa_size_token1] = ACTIONS(2201), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2201), - [aux_sym_security_key_provider_token1] = ACTIONS(2201), - [aux_sym_send_env_token1] = ACTIONS(2201), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2201), - [aux_sym_server_alive_interval_token1] = ACTIONS(2201), - [aux_sym_session_type_token1] = ACTIONS(2201), - [aux_sym_set_env_token1] = ACTIONS(2201), - [aux_sym_stdin_null_token1] = ACTIONS(2201), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2201), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2201), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2201), - [aux_sym_syslog_facility_token1] = ACTIONS(2201), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2201), - [aux_sym_keep_alive_token1] = ACTIONS(2201), - [aux_sym_tunnel_token1] = ACTIONS(2203), - [aux_sym_tunnel_device_token1] = ACTIONS(2201), - [aux_sym_update_host_keys_token1] = ACTIONS(2201), - [aux_sym_use_keychain_token1] = ACTIONS(2201), - [aux_sym_use_roaming_token1] = ACTIONS(2201), - [aux_sym_user_token1] = ACTIONS(2203), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2201), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2201), - [aux_sym_visual_host_key_token1] = ACTIONS(2201), - [aux_sym_xauth_location_token1] = ACTIONS(2201), + [ts_builtin_sym_end] = ACTIONS(2206), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2208), + [anon_sym_DQUOTE] = ACTIONS(2210), + [aux_sym_match_token1] = ACTIONS(2206), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2206), + [aux_sym_address_family_token1] = ACTIONS(2206), + [aux_sym_batch_mode_token1] = ACTIONS(2206), + [aux_sym_bind_address_token1] = ACTIONS(2206), + [aux_sym_bind_interface_token1] = ACTIONS(2206), + [aux_sym_canonical_domains_token1] = ACTIONS(2206), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2206), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2206), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2206), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2206), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2206), + [aux_sym_certificate_file_token1] = ACTIONS(2206), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2206), + [aux_sym_check_host_ip_token1] = ACTIONS(2206), + [aux_sym_ciphers_token1] = ACTIONS(2206), + [aux_sym_cipher_token1] = ACTIONS(2208), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2206), + [aux_sym_compression_token1] = ACTIONS(2206), + [aux_sym_connection_attempts_token1] = ACTIONS(2206), + [aux_sym_connect_timeout_token1] = ACTIONS(2206), + [aux_sym_control_master_token1] = ACTIONS(2206), + [aux_sym_control_path_token1] = ACTIONS(2206), + [aux_sym_control_persist_token1] = ACTIONS(2206), + [aux_sym_dynamic_forward_token1] = ACTIONS(2206), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2206), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2206), + [aux_sym_escape_char_token1] = ACTIONS(2206), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2206), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2206), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2206), + [aux_sym_forward_agent_token1] = ACTIONS(2206), + [aux_sym_forward_x11_token1] = ACTIONS(2208), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2206), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2206), + [aux_sym_gateway_ports_token1] = ACTIONS(2206), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2206), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2206), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2206), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2206), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2206), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2206), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2206), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2206), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2206), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2206), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2206), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2206), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2206), + [aux_sym_host_key_alias_token1] = ACTIONS(2206), + [aux_sym_hostname_token1] = ACTIONS(2206), + [aux_sym_identities_only_token1] = ACTIONS(2206), + [aux_sym_identity_agent_token1] = ACTIONS(2206), + [aux_sym_identity_file_token1] = ACTIONS(2206), + [aux_sym_ignore_unknown_token1] = ACTIONS(2206), + [aux_sym_include_token1] = ACTIONS(2206), + [aux_sym_ip_qos_token1] = ACTIONS(2206), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2206), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2206), + [aux_sym_kex_algorithms_token1] = ACTIONS(2206), + [aux_sym_known_hosts_command_token1] = ACTIONS(2206), + [aux_sym_local_command_token1] = ACTIONS(2206), + [aux_sym_local_forward_token1] = ACTIONS(2206), + [aux_sym_log_level_token1] = ACTIONS(2206), + [aux_sym_log_verbose_token1] = ACTIONS(2206), + [aux_sym_macs_token1] = ACTIONS(2206), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2206), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2206), + [aux_sym_password_authentication_token1] = ACTIONS(2206), + [aux_sym_permit_local_command_token1] = ACTIONS(2206), + [aux_sym_permit_remote_open_token1] = ACTIONS(2206), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2206), + [aux_sym_port_token1] = ACTIONS(2206), + [aux_sym_preferred_authentications_token1] = ACTIONS(2206), + [aux_sym_protocol_token1] = ACTIONS(2206), + [aux_sym_proxy_command_token1] = ACTIONS(2206), + [aux_sym_proxy_jump_token1] = ACTIONS(2206), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2206), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2206), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2206), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2206), + [aux_sym_rekey_limit_token1] = ACTIONS(2206), + [aux_sym_remote_command_token1] = ACTIONS(2206), + [aux_sym_remote_forward_token1] = ACTIONS(2206), + [aux_sym_request_tty_token1] = ACTIONS(2206), + [aux_sym_required_rsa_size_token1] = ACTIONS(2206), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2206), + [aux_sym_security_key_provider_token1] = ACTIONS(2206), + [aux_sym_send_env_token1] = ACTIONS(2206), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2206), + [aux_sym_server_alive_interval_token1] = ACTIONS(2206), + [aux_sym_session_type_token1] = ACTIONS(2206), + [aux_sym_set_env_token1] = ACTIONS(2206), + [aux_sym_stdin_null_token1] = ACTIONS(2206), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2206), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2206), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2206), + [aux_sym_syslog_facility_token1] = ACTIONS(2206), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2206), + [aux_sym_keep_alive_token1] = ACTIONS(2206), + [aux_sym_tunnel_token1] = ACTIONS(2208), + [aux_sym_tunnel_device_token1] = ACTIONS(2206), + [aux_sym_update_host_keys_token1] = ACTIONS(2206), + [aux_sym_use_keychain_token1] = ACTIONS(2206), + [aux_sym_use_roaming_token1] = ACTIONS(2206), + [aux_sym_user_token1] = ACTIONS(2208), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2206), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2206), + [aux_sym_visual_host_key_token1] = ACTIONS(2206), + [aux_sym_xauth_location_token1] = ACTIONS(2206), }, [289] = { - [ts_builtin_sym_end] = ACTIONS(2205), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2207), - [anon_sym_DQUOTE] = ACTIONS(2205), - [aux_sym_match_token1] = ACTIONS(2205), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2205), - [aux_sym_address_family_token1] = ACTIONS(2205), - [aux_sym_batch_mode_token1] = ACTIONS(2205), - [aux_sym_bind_address_token1] = ACTIONS(2205), - [aux_sym_bind_interface_token1] = ACTIONS(2205), - [aux_sym_canonical_domains_token1] = ACTIONS(2205), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2205), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2205), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2205), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2205), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2205), - [aux_sym_certificate_file_token1] = ACTIONS(2205), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2205), - [aux_sym_check_host_ip_token1] = ACTIONS(2205), - [aux_sym_ciphers_token1] = ACTIONS(2205), - [aux_sym_cipher_token1] = ACTIONS(2207), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2205), - [aux_sym_compression_token1] = ACTIONS(2205), - [aux_sym_connection_attempts_token1] = ACTIONS(2205), - [aux_sym_connect_timeout_token1] = ACTIONS(2205), - [aux_sym_control_master_token1] = ACTIONS(2205), - [aux_sym_control_path_token1] = ACTIONS(2205), - [aux_sym_control_persist_token1] = ACTIONS(2205), - [aux_sym_dynamic_forward_token1] = ACTIONS(2205), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2205), - [aux_sym_escape_char_token1] = ACTIONS(2205), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2205), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2205), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2205), - [aux_sym_forward_agent_token1] = ACTIONS(2205), - [aux_sym_forward_x11_token1] = ACTIONS(2207), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2205), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2205), - [aux_sym_gateway_ports_token1] = ACTIONS(2205), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2205), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2205), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2205), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2205), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2205), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2205), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2205), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2205), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2205), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2205), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2205), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2205), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2205), - [aux_sym_host_key_alias_token1] = ACTIONS(2205), - [aux_sym_hostname_token1] = ACTIONS(2205), - [aux_sym_identities_only_token1] = ACTIONS(2205), - [aux_sym_identity_agent_token1] = ACTIONS(2205), - [aux_sym_identity_file_token1] = ACTIONS(2205), - [aux_sym_ignore_unknown_token1] = ACTIONS(2205), - [aux_sym_include_token1] = ACTIONS(2205), - [aux_sym_ip_qos_token1] = ACTIONS(2205), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2205), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2205), - [aux_sym_kex_algorithms_token1] = ACTIONS(2205), - [aux_sym_known_hosts_command_token1] = ACTIONS(2205), - [aux_sym_local_command_token1] = ACTIONS(2205), - [aux_sym_local_forward_token1] = ACTIONS(2205), - [aux_sym_log_level_token1] = ACTIONS(2205), - [aux_sym_log_verbose_token1] = ACTIONS(2205), - [aux_sym_macs_token1] = ACTIONS(2205), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2205), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2205), - [aux_sym_password_authentication_token1] = ACTIONS(2205), - [aux_sym_permit_local_command_token1] = ACTIONS(2205), - [aux_sym_permit_remote_open_token1] = ACTIONS(2205), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2205), - [aux_sym_port_token1] = ACTIONS(2205), - [aux_sym_preferred_authentications_token1] = ACTIONS(2205), - [aux_sym_protocol_token1] = ACTIONS(2205), - [aux_sym_proxy_command_token1] = ACTIONS(2205), - [aux_sym_proxy_jump_token1] = ACTIONS(2205), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2205), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2205), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2205), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2205), - [aux_sym_rekey_limit_token1] = ACTIONS(2205), - [aux_sym_remote_command_token1] = ACTIONS(2205), - [aux_sym_remote_forward_token1] = ACTIONS(2205), - [aux_sym_request_tty_token1] = ACTIONS(2205), - [aux_sym_required_rsa_size_token1] = ACTIONS(2205), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2205), - [aux_sym_security_key_provider_token1] = ACTIONS(2205), - [aux_sym_send_env_token1] = ACTIONS(2205), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2205), - [aux_sym_server_alive_interval_token1] = ACTIONS(2205), - [aux_sym_session_type_token1] = ACTIONS(2205), - [aux_sym_set_env_token1] = ACTIONS(2205), - [aux_sym_stdin_null_token1] = ACTIONS(2205), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2205), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2205), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2205), - [aux_sym_syslog_facility_token1] = ACTIONS(2205), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2205), - [aux_sym_keep_alive_token1] = ACTIONS(2205), - [aux_sym_tunnel_token1] = ACTIONS(2207), - [aux_sym_tunnel_device_token1] = ACTIONS(2205), - [aux_sym_update_host_keys_token1] = ACTIONS(2205), - [aux_sym_use_keychain_token1] = ACTIONS(2205), - [aux_sym_use_roaming_token1] = ACTIONS(2205), - [aux_sym_user_token1] = ACTIONS(2207), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2205), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2205), - [aux_sym_visual_host_key_token1] = ACTIONS(2205), - [aux_sym_xauth_location_token1] = ACTIONS(2205), + [ts_builtin_sym_end] = ACTIONS(2212), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2216), + [aux_sym_match_token1] = ACTIONS(2212), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2212), + [aux_sym_address_family_token1] = ACTIONS(2212), + [aux_sym_batch_mode_token1] = ACTIONS(2212), + [aux_sym_bind_address_token1] = ACTIONS(2212), + [aux_sym_bind_interface_token1] = ACTIONS(2212), + [aux_sym_canonical_domains_token1] = ACTIONS(2212), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2212), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2212), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2212), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2212), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2212), + [aux_sym_certificate_file_token1] = ACTIONS(2212), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2212), + [aux_sym_check_host_ip_token1] = ACTIONS(2212), + [aux_sym_ciphers_token1] = ACTIONS(2212), + [aux_sym_cipher_token1] = ACTIONS(2214), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2212), + [aux_sym_compression_token1] = ACTIONS(2212), + [aux_sym_connection_attempts_token1] = ACTIONS(2212), + [aux_sym_connect_timeout_token1] = ACTIONS(2212), + [aux_sym_control_master_token1] = ACTIONS(2212), + [aux_sym_control_path_token1] = ACTIONS(2212), + [aux_sym_control_persist_token1] = ACTIONS(2212), + [aux_sym_dynamic_forward_token1] = ACTIONS(2212), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2212), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2212), + [aux_sym_escape_char_token1] = ACTIONS(2212), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2212), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2212), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2212), + [aux_sym_forward_agent_token1] = ACTIONS(2212), + [aux_sym_forward_x11_token1] = ACTIONS(2214), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2212), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2212), + [aux_sym_gateway_ports_token1] = ACTIONS(2212), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2212), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2212), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2212), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2212), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2212), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2212), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2212), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2212), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2212), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2212), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2212), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2212), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2212), + [aux_sym_host_key_alias_token1] = ACTIONS(2212), + [aux_sym_hostname_token1] = ACTIONS(2212), + [aux_sym_identities_only_token1] = ACTIONS(2212), + [aux_sym_identity_agent_token1] = ACTIONS(2212), + [aux_sym_identity_file_token1] = ACTIONS(2212), + [aux_sym_ignore_unknown_token1] = ACTIONS(2212), + [aux_sym_include_token1] = ACTIONS(2212), + [aux_sym_ip_qos_token1] = ACTIONS(2212), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2212), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2212), + [aux_sym_kex_algorithms_token1] = ACTIONS(2212), + [aux_sym_known_hosts_command_token1] = ACTIONS(2212), + [aux_sym_local_command_token1] = ACTIONS(2212), + [aux_sym_local_forward_token1] = ACTIONS(2212), + [aux_sym_log_level_token1] = ACTIONS(2212), + [aux_sym_log_verbose_token1] = ACTIONS(2212), + [aux_sym_macs_token1] = ACTIONS(2212), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2212), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2212), + [aux_sym_password_authentication_token1] = ACTIONS(2212), + [aux_sym_permit_local_command_token1] = ACTIONS(2212), + [aux_sym_permit_remote_open_token1] = ACTIONS(2212), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2212), + [aux_sym_port_token1] = ACTIONS(2212), + [aux_sym_preferred_authentications_token1] = ACTIONS(2212), + [aux_sym_protocol_token1] = ACTIONS(2212), + [aux_sym_proxy_command_token1] = ACTIONS(2212), + [aux_sym_proxy_jump_token1] = ACTIONS(2212), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2212), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2212), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2212), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2212), + [aux_sym_rekey_limit_token1] = ACTIONS(2212), + [aux_sym_remote_command_token1] = ACTIONS(2212), + [aux_sym_remote_forward_token1] = ACTIONS(2212), + [aux_sym_request_tty_token1] = ACTIONS(2212), + [aux_sym_required_rsa_size_token1] = ACTIONS(2212), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2212), + [aux_sym_security_key_provider_token1] = ACTIONS(2212), + [aux_sym_send_env_token1] = ACTIONS(2212), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2212), + [aux_sym_server_alive_interval_token1] = ACTIONS(2212), + [aux_sym_session_type_token1] = ACTIONS(2212), + [aux_sym_set_env_token1] = ACTIONS(2212), + [aux_sym_stdin_null_token1] = ACTIONS(2212), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2212), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2212), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2212), + [aux_sym_syslog_facility_token1] = ACTIONS(2212), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2212), + [aux_sym_keep_alive_token1] = ACTIONS(2212), + [aux_sym_tunnel_token1] = ACTIONS(2214), + [aux_sym_tunnel_device_token1] = ACTIONS(2212), + [aux_sym_update_host_keys_token1] = ACTIONS(2212), + [aux_sym_use_keychain_token1] = ACTIONS(2212), + [aux_sym_use_roaming_token1] = ACTIONS(2212), + [aux_sym_user_token1] = ACTIONS(2214), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2212), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2212), + [aux_sym_visual_host_key_token1] = ACTIONS(2212), + [aux_sym_xauth_location_token1] = ACTIONS(2212), }, [290] = { - [ts_builtin_sym_end] = ACTIONS(2209), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2211), - [anon_sym_DQUOTE] = ACTIONS(2213), - [aux_sym_match_token1] = ACTIONS(2209), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2209), - [aux_sym_address_family_token1] = ACTIONS(2209), - [aux_sym_batch_mode_token1] = ACTIONS(2209), - [aux_sym_bind_address_token1] = ACTIONS(2209), - [aux_sym_bind_interface_token1] = ACTIONS(2209), - [aux_sym_canonical_domains_token1] = ACTIONS(2209), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2209), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2209), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2209), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2209), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2209), - [aux_sym_certificate_file_token1] = ACTIONS(2209), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2209), - [aux_sym_check_host_ip_token1] = ACTIONS(2209), - [aux_sym_ciphers_token1] = ACTIONS(2209), - [aux_sym_cipher_token1] = ACTIONS(2211), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2209), - [aux_sym_compression_token1] = ACTIONS(2209), - [aux_sym_connection_attempts_token1] = ACTIONS(2209), - [aux_sym_connect_timeout_token1] = ACTIONS(2209), - [aux_sym_control_master_token1] = ACTIONS(2209), - [aux_sym_control_path_token1] = ACTIONS(2209), - [aux_sym_control_persist_token1] = ACTIONS(2209), - [aux_sym_dynamic_forward_token1] = ACTIONS(2209), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2209), - [aux_sym_escape_char_token1] = ACTIONS(2209), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2209), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2209), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2209), - [aux_sym_forward_agent_token1] = ACTIONS(2209), - [aux_sym_forward_x11_token1] = ACTIONS(2211), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2209), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2209), - [aux_sym_gateway_ports_token1] = ACTIONS(2209), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2209), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2209), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2209), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2209), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2209), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2209), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2209), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2209), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2209), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2209), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2209), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2209), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2209), - [aux_sym_host_key_alias_token1] = ACTIONS(2209), - [aux_sym_hostname_token1] = ACTIONS(2209), - [aux_sym_identities_only_token1] = ACTIONS(2209), - [aux_sym_identity_agent_token1] = ACTIONS(2209), - [aux_sym_identity_file_token1] = ACTIONS(2209), - [aux_sym_ignore_unknown_token1] = ACTIONS(2209), - [aux_sym_include_token1] = ACTIONS(2209), - [aux_sym_ip_qos_token1] = ACTIONS(2209), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2209), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2209), - [aux_sym_kex_algorithms_token1] = ACTIONS(2209), - [aux_sym_known_hosts_command_token1] = ACTIONS(2209), - [aux_sym_local_command_token1] = ACTIONS(2209), - [aux_sym_local_forward_token1] = ACTIONS(2209), - [aux_sym_log_level_token1] = ACTIONS(2209), - [aux_sym_log_verbose_token1] = ACTIONS(2209), - [aux_sym_macs_token1] = ACTIONS(2209), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2209), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2209), - [aux_sym_password_authentication_token1] = ACTIONS(2209), - [aux_sym_permit_local_command_token1] = ACTIONS(2209), - [aux_sym_permit_remote_open_token1] = ACTIONS(2209), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2209), - [aux_sym_port_token1] = ACTIONS(2209), - [aux_sym_preferred_authentications_token1] = ACTIONS(2209), - [aux_sym_protocol_token1] = ACTIONS(2209), - [aux_sym_proxy_command_token1] = ACTIONS(2209), - [aux_sym_proxy_jump_token1] = ACTIONS(2209), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2209), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2209), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2209), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2209), - [aux_sym_rekey_limit_token1] = ACTIONS(2209), - [aux_sym_remote_command_token1] = ACTIONS(2209), - [aux_sym_remote_forward_token1] = ACTIONS(2209), - [aux_sym_request_tty_token1] = ACTIONS(2209), - [aux_sym_required_rsa_size_token1] = ACTIONS(2209), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2209), - [aux_sym_security_key_provider_token1] = ACTIONS(2209), - [aux_sym_send_env_token1] = ACTIONS(2209), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2209), - [aux_sym_server_alive_interval_token1] = ACTIONS(2209), - [aux_sym_session_type_token1] = ACTIONS(2209), - [aux_sym_set_env_token1] = ACTIONS(2209), - [aux_sym_stdin_null_token1] = ACTIONS(2209), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2209), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2209), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2209), - [aux_sym_syslog_facility_token1] = ACTIONS(2209), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2209), - [aux_sym_keep_alive_token1] = ACTIONS(2209), - [aux_sym_tunnel_token1] = ACTIONS(2211), - [aux_sym_tunnel_device_token1] = ACTIONS(2209), - [aux_sym_update_host_keys_token1] = ACTIONS(2209), - [aux_sym_use_keychain_token1] = ACTIONS(2209), - [aux_sym_use_roaming_token1] = ACTIONS(2209), - [aux_sym_user_token1] = ACTIONS(2211), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2209), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2209), - [aux_sym_visual_host_key_token1] = ACTIONS(2209), - [aux_sym_xauth_location_token1] = ACTIONS(2209), + [ts_builtin_sym_end] = ACTIONS(2218), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2220), + [anon_sym_DQUOTE] = ACTIONS(2218), + [aux_sym_match_token1] = ACTIONS(2218), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2218), + [aux_sym_address_family_token1] = ACTIONS(2218), + [aux_sym_batch_mode_token1] = ACTIONS(2218), + [aux_sym_bind_address_token1] = ACTIONS(2218), + [aux_sym_bind_interface_token1] = ACTIONS(2218), + [aux_sym_canonical_domains_token1] = ACTIONS(2218), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2218), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2218), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2218), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2218), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2218), + [aux_sym_certificate_file_token1] = ACTIONS(2218), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2218), + [aux_sym_check_host_ip_token1] = ACTIONS(2218), + [aux_sym_ciphers_token1] = ACTIONS(2218), + [aux_sym_cipher_token1] = ACTIONS(2220), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2218), + [aux_sym_compression_token1] = ACTIONS(2218), + [aux_sym_connection_attempts_token1] = ACTIONS(2218), + [aux_sym_connect_timeout_token1] = ACTIONS(2218), + [aux_sym_control_master_token1] = ACTIONS(2218), + [aux_sym_control_path_token1] = ACTIONS(2218), + [aux_sym_control_persist_token1] = ACTIONS(2218), + [aux_sym_dynamic_forward_token1] = ACTIONS(2218), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2218), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2218), + [aux_sym_escape_char_token1] = ACTIONS(2218), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2218), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2218), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2218), + [aux_sym_forward_agent_token1] = ACTIONS(2218), + [aux_sym_forward_x11_token1] = ACTIONS(2220), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2218), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2218), + [aux_sym_gateway_ports_token1] = ACTIONS(2218), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2218), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2218), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2218), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2218), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2218), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2218), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2218), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2218), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2218), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2218), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2218), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2218), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2218), + [aux_sym_host_key_alias_token1] = ACTIONS(2218), + [aux_sym_hostname_token1] = ACTIONS(2218), + [aux_sym_identities_only_token1] = ACTIONS(2218), + [aux_sym_identity_agent_token1] = ACTIONS(2218), + [aux_sym_identity_file_token1] = ACTIONS(2218), + [aux_sym_ignore_unknown_token1] = ACTIONS(2218), + [aux_sym_include_token1] = ACTIONS(2218), + [aux_sym_ip_qos_token1] = ACTIONS(2218), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2218), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2218), + [aux_sym_kex_algorithms_token1] = ACTIONS(2218), + [aux_sym_known_hosts_command_token1] = ACTIONS(2218), + [aux_sym_local_command_token1] = ACTIONS(2218), + [aux_sym_local_forward_token1] = ACTIONS(2218), + [aux_sym_log_level_token1] = ACTIONS(2218), + [aux_sym_log_verbose_token1] = ACTIONS(2218), + [aux_sym_macs_token1] = ACTIONS(2218), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2218), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2218), + [aux_sym_password_authentication_token1] = ACTIONS(2218), + [aux_sym_permit_local_command_token1] = ACTIONS(2218), + [aux_sym_permit_remote_open_token1] = ACTIONS(2218), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2218), + [aux_sym_port_token1] = ACTIONS(2218), + [aux_sym_preferred_authentications_token1] = ACTIONS(2218), + [aux_sym_protocol_token1] = ACTIONS(2218), + [aux_sym_proxy_command_token1] = ACTIONS(2218), + [aux_sym_proxy_jump_token1] = ACTIONS(2218), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2218), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2218), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2218), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2218), + [aux_sym_rekey_limit_token1] = ACTIONS(2218), + [aux_sym_remote_command_token1] = ACTIONS(2218), + [aux_sym_remote_forward_token1] = ACTIONS(2218), + [aux_sym_request_tty_token1] = ACTIONS(2218), + [aux_sym_required_rsa_size_token1] = ACTIONS(2218), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2218), + [aux_sym_security_key_provider_token1] = ACTIONS(2218), + [aux_sym_send_env_token1] = ACTIONS(2218), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2218), + [aux_sym_server_alive_interval_token1] = ACTIONS(2218), + [aux_sym_session_type_token1] = ACTIONS(2218), + [aux_sym_set_env_token1] = ACTIONS(2218), + [aux_sym_stdin_null_token1] = ACTIONS(2218), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2218), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2218), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2218), + [aux_sym_syslog_facility_token1] = ACTIONS(2218), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2218), + [aux_sym_keep_alive_token1] = ACTIONS(2218), + [aux_sym_tunnel_token1] = ACTIONS(2220), + [aux_sym_tunnel_device_token1] = ACTIONS(2218), + [aux_sym_update_host_keys_token1] = ACTIONS(2218), + [aux_sym_use_keychain_token1] = ACTIONS(2218), + [aux_sym_use_roaming_token1] = ACTIONS(2218), + [aux_sym_user_token1] = ACTIONS(2220), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2218), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2218), + [aux_sym_visual_host_key_token1] = ACTIONS(2218), + [aux_sym_xauth_location_token1] = ACTIONS(2218), }, [291] = { - [ts_builtin_sym_end] = ACTIONS(2215), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2217), - [anon_sym_DQUOTE] = ACTIONS(2215), - [aux_sym_match_token1] = ACTIONS(2215), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2215), - [aux_sym_address_family_token1] = ACTIONS(2215), - [aux_sym_batch_mode_token1] = ACTIONS(2215), - [aux_sym_bind_address_token1] = ACTIONS(2215), - [aux_sym_bind_interface_token1] = ACTIONS(2215), - [aux_sym_canonical_domains_token1] = ACTIONS(2215), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2215), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2215), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2215), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2215), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2215), - [aux_sym_certificate_file_token1] = ACTIONS(2215), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2215), - [aux_sym_check_host_ip_token1] = ACTIONS(2215), - [aux_sym_ciphers_token1] = ACTIONS(2215), - [aux_sym_cipher_token1] = ACTIONS(2217), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2215), - [aux_sym_compression_token1] = ACTIONS(2215), - [aux_sym_connection_attempts_token1] = ACTIONS(2215), - [aux_sym_connect_timeout_token1] = ACTIONS(2215), - [aux_sym_control_master_token1] = ACTIONS(2215), - [aux_sym_control_path_token1] = ACTIONS(2215), - [aux_sym_control_persist_token1] = ACTIONS(2215), - [aux_sym_dynamic_forward_token1] = ACTIONS(2215), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2215), - [aux_sym_escape_char_token1] = ACTIONS(2215), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2215), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2215), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2215), - [aux_sym_forward_agent_token1] = ACTIONS(2215), - [aux_sym_forward_x11_token1] = ACTIONS(2217), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2215), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2215), - [aux_sym_gateway_ports_token1] = ACTIONS(2215), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2215), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2215), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2215), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2215), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2215), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2215), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2215), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2215), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2215), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2215), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2215), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2215), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2215), - [aux_sym_host_key_alias_token1] = ACTIONS(2215), - [aux_sym_hostname_token1] = ACTIONS(2215), - [aux_sym_identities_only_token1] = ACTIONS(2215), - [aux_sym_identity_agent_token1] = ACTIONS(2215), - [aux_sym_identity_file_token1] = ACTIONS(2215), - [aux_sym_ignore_unknown_token1] = ACTIONS(2215), - [aux_sym_include_token1] = ACTIONS(2215), - [aux_sym_ip_qos_token1] = ACTIONS(2215), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2215), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2215), - [aux_sym_kex_algorithms_token1] = ACTIONS(2215), - [aux_sym_known_hosts_command_token1] = ACTIONS(2215), - [aux_sym_local_command_token1] = ACTIONS(2215), - [aux_sym_local_forward_token1] = ACTIONS(2215), - [aux_sym_log_level_token1] = ACTIONS(2215), - [aux_sym_log_verbose_token1] = ACTIONS(2215), - [aux_sym_macs_token1] = ACTIONS(2215), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2215), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2215), - [aux_sym_password_authentication_token1] = ACTIONS(2215), - [aux_sym_permit_local_command_token1] = ACTIONS(2215), - [aux_sym_permit_remote_open_token1] = ACTIONS(2215), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2215), - [aux_sym_port_token1] = ACTIONS(2215), - [aux_sym_preferred_authentications_token1] = ACTIONS(2215), - [aux_sym_protocol_token1] = ACTIONS(2215), - [aux_sym_proxy_command_token1] = ACTIONS(2215), - [aux_sym_proxy_jump_token1] = ACTIONS(2215), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2215), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2215), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2215), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2215), - [aux_sym_rekey_limit_token1] = ACTIONS(2215), - [aux_sym_remote_command_token1] = ACTIONS(2215), - [aux_sym_remote_forward_token1] = ACTIONS(2215), - [aux_sym_request_tty_token1] = ACTIONS(2215), - [aux_sym_required_rsa_size_token1] = ACTIONS(2215), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2215), - [aux_sym_security_key_provider_token1] = ACTIONS(2215), - [aux_sym_send_env_token1] = ACTIONS(2215), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2215), - [aux_sym_server_alive_interval_token1] = ACTIONS(2215), - [aux_sym_session_type_token1] = ACTIONS(2215), - [aux_sym_set_env_token1] = ACTIONS(2215), - [aux_sym_stdin_null_token1] = ACTIONS(2215), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2215), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2215), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2215), - [aux_sym_syslog_facility_token1] = ACTIONS(2215), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2215), - [aux_sym_keep_alive_token1] = ACTIONS(2215), - [aux_sym_tunnel_token1] = ACTIONS(2217), - [aux_sym_tunnel_device_token1] = ACTIONS(2215), - [aux_sym_update_host_keys_token1] = ACTIONS(2215), - [aux_sym_use_keychain_token1] = ACTIONS(2215), - [aux_sym_use_roaming_token1] = ACTIONS(2215), - [aux_sym_user_token1] = ACTIONS(2217), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2215), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2215), - [aux_sym_visual_host_key_token1] = ACTIONS(2215), - [aux_sym_xauth_location_token1] = ACTIONS(2215), + [ts_builtin_sym_end] = ACTIONS(2222), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2224), + [anon_sym_DQUOTE] = ACTIONS(2222), + [aux_sym_match_token1] = ACTIONS(2222), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2222), + [aux_sym_address_family_token1] = ACTIONS(2222), + [aux_sym_batch_mode_token1] = ACTIONS(2222), + [aux_sym_bind_address_token1] = ACTIONS(2222), + [aux_sym_bind_interface_token1] = ACTIONS(2222), + [aux_sym_canonical_domains_token1] = ACTIONS(2222), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2222), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2222), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2222), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2222), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2222), + [aux_sym_certificate_file_token1] = ACTIONS(2222), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2222), + [aux_sym_check_host_ip_token1] = ACTIONS(2222), + [aux_sym_ciphers_token1] = ACTIONS(2222), + [aux_sym_cipher_token1] = ACTIONS(2224), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2222), + [aux_sym_compression_token1] = ACTIONS(2222), + [aux_sym_connection_attempts_token1] = ACTIONS(2222), + [aux_sym_connect_timeout_token1] = ACTIONS(2222), + [aux_sym_control_master_token1] = ACTIONS(2222), + [aux_sym_control_path_token1] = ACTIONS(2222), + [aux_sym_control_persist_token1] = ACTIONS(2222), + [aux_sym_dynamic_forward_token1] = ACTIONS(2222), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2222), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2222), + [aux_sym_escape_char_token1] = ACTIONS(2222), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2222), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2222), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2222), + [aux_sym_forward_agent_token1] = ACTIONS(2222), + [aux_sym_forward_x11_token1] = ACTIONS(2224), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2222), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2222), + [aux_sym_gateway_ports_token1] = ACTIONS(2222), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2222), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2222), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2222), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2222), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2222), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2222), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2222), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2222), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2222), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2222), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2222), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2222), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2222), + [aux_sym_host_key_alias_token1] = ACTIONS(2222), + [aux_sym_hostname_token1] = ACTIONS(2222), + [aux_sym_identities_only_token1] = ACTIONS(2222), + [aux_sym_identity_agent_token1] = ACTIONS(2222), + [aux_sym_identity_file_token1] = ACTIONS(2222), + [aux_sym_ignore_unknown_token1] = ACTIONS(2222), + [aux_sym_include_token1] = ACTIONS(2222), + [aux_sym_ip_qos_token1] = ACTIONS(2222), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2222), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2222), + [aux_sym_kex_algorithms_token1] = ACTIONS(2222), + [aux_sym_known_hosts_command_token1] = ACTIONS(2222), + [aux_sym_local_command_token1] = ACTIONS(2222), + [aux_sym_local_forward_token1] = ACTIONS(2222), + [aux_sym_log_level_token1] = ACTIONS(2222), + [aux_sym_log_verbose_token1] = ACTIONS(2222), + [aux_sym_macs_token1] = ACTIONS(2222), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2222), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2222), + [aux_sym_password_authentication_token1] = ACTIONS(2222), + [aux_sym_permit_local_command_token1] = ACTIONS(2222), + [aux_sym_permit_remote_open_token1] = ACTIONS(2222), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2222), + [aux_sym_port_token1] = ACTIONS(2222), + [aux_sym_preferred_authentications_token1] = ACTIONS(2222), + [aux_sym_protocol_token1] = ACTIONS(2222), + [aux_sym_proxy_command_token1] = ACTIONS(2222), + [aux_sym_proxy_jump_token1] = ACTIONS(2222), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2222), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2222), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2222), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2222), + [aux_sym_rekey_limit_token1] = ACTIONS(2222), + [aux_sym_remote_command_token1] = ACTIONS(2222), + [aux_sym_remote_forward_token1] = ACTIONS(2222), + [aux_sym_request_tty_token1] = ACTIONS(2222), + [aux_sym_required_rsa_size_token1] = ACTIONS(2222), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2222), + [aux_sym_security_key_provider_token1] = ACTIONS(2222), + [aux_sym_send_env_token1] = ACTIONS(2222), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2222), + [aux_sym_server_alive_interval_token1] = ACTIONS(2222), + [aux_sym_session_type_token1] = ACTIONS(2222), + [aux_sym_set_env_token1] = ACTIONS(2222), + [aux_sym_stdin_null_token1] = ACTIONS(2222), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2222), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2222), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2222), + [aux_sym_syslog_facility_token1] = ACTIONS(2222), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2222), + [aux_sym_keep_alive_token1] = ACTIONS(2222), + [aux_sym_tunnel_token1] = ACTIONS(2224), + [aux_sym_tunnel_device_token1] = ACTIONS(2222), + [aux_sym_update_host_keys_token1] = ACTIONS(2222), + [aux_sym_use_keychain_token1] = ACTIONS(2222), + [aux_sym_use_roaming_token1] = ACTIONS(2222), + [aux_sym_user_token1] = ACTIONS(2224), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2222), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2222), + [aux_sym_visual_host_key_token1] = ACTIONS(2222), + [aux_sym_xauth_location_token1] = ACTIONS(2222), }, [292] = { - [ts_builtin_sym_end] = ACTIONS(2219), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2223), - [aux_sym_match_token1] = ACTIONS(2219), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2219), - [aux_sym_address_family_token1] = ACTIONS(2219), - [aux_sym_batch_mode_token1] = ACTIONS(2219), - [aux_sym_bind_address_token1] = ACTIONS(2219), - [aux_sym_bind_interface_token1] = ACTIONS(2219), - [aux_sym_canonical_domains_token1] = ACTIONS(2219), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2219), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2219), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2219), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2219), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2219), - [aux_sym_certificate_file_token1] = ACTIONS(2219), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2219), - [aux_sym_check_host_ip_token1] = ACTIONS(2219), - [aux_sym_ciphers_token1] = ACTIONS(2219), - [aux_sym_cipher_token1] = ACTIONS(2221), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2219), - [aux_sym_compression_token1] = ACTIONS(2219), - [aux_sym_connection_attempts_token1] = ACTIONS(2219), - [aux_sym_connect_timeout_token1] = ACTIONS(2219), - [aux_sym_control_master_token1] = ACTIONS(2219), - [aux_sym_control_path_token1] = ACTIONS(2219), - [aux_sym_control_persist_token1] = ACTIONS(2219), - [aux_sym_dynamic_forward_token1] = ACTIONS(2219), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2219), - [aux_sym_escape_char_token1] = ACTIONS(2219), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2219), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2219), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2219), - [aux_sym_forward_agent_token1] = ACTIONS(2219), - [aux_sym_forward_x11_token1] = ACTIONS(2221), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2219), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2219), - [aux_sym_gateway_ports_token1] = ACTIONS(2219), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2219), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2219), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2219), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2219), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2219), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2219), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2219), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2219), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2219), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2219), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2219), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2219), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2219), - [aux_sym_host_key_alias_token1] = ACTIONS(2219), - [aux_sym_hostname_token1] = ACTIONS(2219), - [aux_sym_identities_only_token1] = ACTIONS(2219), - [aux_sym_identity_agent_token1] = ACTIONS(2219), - [aux_sym_identity_file_token1] = ACTIONS(2219), - [aux_sym_ignore_unknown_token1] = ACTIONS(2219), - [aux_sym_include_token1] = ACTIONS(2219), - [aux_sym_ip_qos_token1] = ACTIONS(2219), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2219), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2219), - [aux_sym_kex_algorithms_token1] = ACTIONS(2219), - [aux_sym_known_hosts_command_token1] = ACTIONS(2219), - [aux_sym_local_command_token1] = ACTIONS(2219), - [aux_sym_local_forward_token1] = ACTIONS(2219), - [aux_sym_log_level_token1] = ACTIONS(2219), - [aux_sym_log_verbose_token1] = ACTIONS(2219), - [aux_sym_macs_token1] = ACTIONS(2219), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2219), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2219), - [aux_sym_password_authentication_token1] = ACTIONS(2219), - [aux_sym_permit_local_command_token1] = ACTIONS(2219), - [aux_sym_permit_remote_open_token1] = ACTIONS(2219), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2219), - [aux_sym_port_token1] = ACTIONS(2219), - [aux_sym_preferred_authentications_token1] = ACTIONS(2219), - [aux_sym_protocol_token1] = ACTIONS(2219), - [aux_sym_proxy_command_token1] = ACTIONS(2219), - [aux_sym_proxy_jump_token1] = ACTIONS(2219), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2219), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2219), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2219), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2219), - [aux_sym_rekey_limit_token1] = ACTIONS(2219), - [aux_sym_remote_command_token1] = ACTIONS(2219), - [aux_sym_remote_forward_token1] = ACTIONS(2219), - [aux_sym_request_tty_token1] = ACTIONS(2219), - [aux_sym_required_rsa_size_token1] = ACTIONS(2219), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2219), - [aux_sym_security_key_provider_token1] = ACTIONS(2219), - [aux_sym_send_env_token1] = ACTIONS(2219), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2219), - [aux_sym_server_alive_interval_token1] = ACTIONS(2219), - [aux_sym_session_type_token1] = ACTIONS(2219), - [aux_sym_set_env_token1] = ACTIONS(2219), - [aux_sym_stdin_null_token1] = ACTIONS(2219), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2219), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2219), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2219), - [aux_sym_syslog_facility_token1] = ACTIONS(2219), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2219), - [aux_sym_keep_alive_token1] = ACTIONS(2219), - [aux_sym_tunnel_token1] = ACTIONS(2221), - [aux_sym_tunnel_device_token1] = ACTIONS(2219), - [aux_sym_update_host_keys_token1] = ACTIONS(2219), - [aux_sym_use_keychain_token1] = ACTIONS(2219), - [aux_sym_use_roaming_token1] = ACTIONS(2219), - [aux_sym_user_token1] = ACTIONS(2221), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2219), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2219), - [aux_sym_visual_host_key_token1] = ACTIONS(2219), - [aux_sym_xauth_location_token1] = ACTIONS(2219), + [ts_builtin_sym_end] = ACTIONS(2226), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2228), + [anon_sym_DQUOTE] = ACTIONS(2230), + [aux_sym_match_token1] = ACTIONS(2226), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2226), + [aux_sym_address_family_token1] = ACTIONS(2226), + [aux_sym_batch_mode_token1] = ACTIONS(2226), + [aux_sym_bind_address_token1] = ACTIONS(2226), + [aux_sym_bind_interface_token1] = ACTIONS(2226), + [aux_sym_canonical_domains_token1] = ACTIONS(2226), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2226), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2226), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2226), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2226), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2226), + [aux_sym_certificate_file_token1] = ACTIONS(2226), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2226), + [aux_sym_check_host_ip_token1] = ACTIONS(2226), + [aux_sym_ciphers_token1] = ACTIONS(2226), + [aux_sym_cipher_token1] = ACTIONS(2228), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2226), + [aux_sym_compression_token1] = ACTIONS(2226), + [aux_sym_connection_attempts_token1] = ACTIONS(2226), + [aux_sym_connect_timeout_token1] = ACTIONS(2226), + [aux_sym_control_master_token1] = ACTIONS(2226), + [aux_sym_control_path_token1] = ACTIONS(2226), + [aux_sym_control_persist_token1] = ACTIONS(2226), + [aux_sym_dynamic_forward_token1] = ACTIONS(2226), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2226), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2226), + [aux_sym_escape_char_token1] = ACTIONS(2226), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2226), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2226), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2226), + [aux_sym_forward_agent_token1] = ACTIONS(2226), + [aux_sym_forward_x11_token1] = ACTIONS(2228), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2226), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2226), + [aux_sym_gateway_ports_token1] = ACTIONS(2226), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2226), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2226), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2226), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2226), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2226), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2226), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2226), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2226), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2226), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2226), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2226), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2226), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2226), + [aux_sym_host_key_alias_token1] = ACTIONS(2226), + [aux_sym_hostname_token1] = ACTIONS(2226), + [aux_sym_identities_only_token1] = ACTIONS(2226), + [aux_sym_identity_agent_token1] = ACTIONS(2226), + [aux_sym_identity_file_token1] = ACTIONS(2226), + [aux_sym_ignore_unknown_token1] = ACTIONS(2226), + [aux_sym_include_token1] = ACTIONS(2226), + [aux_sym_ip_qos_token1] = ACTIONS(2226), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2226), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2226), + [aux_sym_kex_algorithms_token1] = ACTIONS(2226), + [aux_sym_known_hosts_command_token1] = ACTIONS(2226), + [aux_sym_local_command_token1] = ACTIONS(2226), + [aux_sym_local_forward_token1] = ACTIONS(2226), + [aux_sym_log_level_token1] = ACTIONS(2226), + [aux_sym_log_verbose_token1] = ACTIONS(2226), + [aux_sym_macs_token1] = ACTIONS(2226), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2226), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2226), + [aux_sym_password_authentication_token1] = ACTIONS(2226), + [aux_sym_permit_local_command_token1] = ACTIONS(2226), + [aux_sym_permit_remote_open_token1] = ACTIONS(2226), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2226), + [aux_sym_port_token1] = ACTIONS(2226), + [aux_sym_preferred_authentications_token1] = ACTIONS(2226), + [aux_sym_protocol_token1] = ACTIONS(2226), + [aux_sym_proxy_command_token1] = ACTIONS(2226), + [aux_sym_proxy_jump_token1] = ACTIONS(2226), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2226), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2226), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2226), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2226), + [aux_sym_rekey_limit_token1] = ACTIONS(2226), + [aux_sym_remote_command_token1] = ACTIONS(2226), + [aux_sym_remote_forward_token1] = ACTIONS(2226), + [aux_sym_request_tty_token1] = ACTIONS(2226), + [aux_sym_required_rsa_size_token1] = ACTIONS(2226), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2226), + [aux_sym_security_key_provider_token1] = ACTIONS(2226), + [aux_sym_send_env_token1] = ACTIONS(2226), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2226), + [aux_sym_server_alive_interval_token1] = ACTIONS(2226), + [aux_sym_session_type_token1] = ACTIONS(2226), + [aux_sym_set_env_token1] = ACTIONS(2226), + [aux_sym_stdin_null_token1] = ACTIONS(2226), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2226), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2226), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2226), + [aux_sym_syslog_facility_token1] = ACTIONS(2226), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2226), + [aux_sym_keep_alive_token1] = ACTIONS(2226), + [aux_sym_tunnel_token1] = ACTIONS(2228), + [aux_sym_tunnel_device_token1] = ACTIONS(2226), + [aux_sym_update_host_keys_token1] = ACTIONS(2226), + [aux_sym_use_keychain_token1] = ACTIONS(2226), + [aux_sym_use_roaming_token1] = ACTIONS(2226), + [aux_sym_user_token1] = ACTIONS(2228), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2226), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2226), + [aux_sym_visual_host_key_token1] = ACTIONS(2226), + [aux_sym_xauth_location_token1] = ACTIONS(2226), }, [293] = { - [ts_builtin_sym_end] = ACTIONS(2225), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2227), - [anon_sym_DQUOTE] = ACTIONS(2225), - [aux_sym_match_token1] = ACTIONS(2225), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2225), - [aux_sym_address_family_token1] = ACTIONS(2225), - [aux_sym_batch_mode_token1] = ACTIONS(2225), - [aux_sym_bind_address_token1] = ACTIONS(2225), - [aux_sym_bind_interface_token1] = ACTIONS(2225), - [aux_sym_canonical_domains_token1] = ACTIONS(2225), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2225), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2225), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2225), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2225), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2225), - [aux_sym_certificate_file_token1] = ACTIONS(2225), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2225), - [aux_sym_check_host_ip_token1] = ACTIONS(2225), - [aux_sym_ciphers_token1] = ACTIONS(2225), - [aux_sym_cipher_token1] = ACTIONS(2227), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2225), - [aux_sym_compression_token1] = ACTIONS(2225), - [aux_sym_connection_attempts_token1] = ACTIONS(2225), - [aux_sym_connect_timeout_token1] = ACTIONS(2225), - [aux_sym_control_master_token1] = ACTIONS(2225), - [aux_sym_control_path_token1] = ACTIONS(2225), - [aux_sym_control_persist_token1] = ACTIONS(2225), - [aux_sym_dynamic_forward_token1] = ACTIONS(2225), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2225), - [aux_sym_escape_char_token1] = ACTIONS(2225), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2225), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2225), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2225), - [aux_sym_forward_agent_token1] = ACTIONS(2225), - [aux_sym_forward_x11_token1] = ACTIONS(2227), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2225), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2225), - [aux_sym_gateway_ports_token1] = ACTIONS(2225), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2225), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2225), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2225), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2225), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2225), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2225), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2225), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2225), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2225), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2225), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2225), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2225), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2225), - [aux_sym_host_key_alias_token1] = ACTIONS(2225), - [aux_sym_hostname_token1] = ACTIONS(2225), - [aux_sym_identities_only_token1] = ACTIONS(2225), - [aux_sym_identity_agent_token1] = ACTIONS(2225), - [aux_sym_identity_file_token1] = ACTIONS(2225), - [aux_sym_ignore_unknown_token1] = ACTIONS(2225), - [aux_sym_include_token1] = ACTIONS(2225), - [aux_sym_ip_qos_token1] = ACTIONS(2225), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2225), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2225), - [aux_sym_kex_algorithms_token1] = ACTIONS(2225), - [aux_sym_known_hosts_command_token1] = ACTIONS(2225), - [aux_sym_local_command_token1] = ACTIONS(2225), - [aux_sym_local_forward_token1] = ACTIONS(2225), - [aux_sym_log_level_token1] = ACTIONS(2225), - [aux_sym_log_verbose_token1] = ACTIONS(2225), - [aux_sym_macs_token1] = ACTIONS(2225), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2225), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2225), - [aux_sym_password_authentication_token1] = ACTIONS(2225), - [aux_sym_permit_local_command_token1] = ACTIONS(2225), - [aux_sym_permit_remote_open_token1] = ACTIONS(2225), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2225), - [aux_sym_port_token1] = ACTIONS(2225), - [aux_sym_preferred_authentications_token1] = ACTIONS(2225), - [aux_sym_protocol_token1] = ACTIONS(2225), - [aux_sym_proxy_command_token1] = ACTIONS(2225), - [aux_sym_proxy_jump_token1] = ACTIONS(2225), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2225), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2225), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2225), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2225), - [aux_sym_rekey_limit_token1] = ACTIONS(2225), - [aux_sym_remote_command_token1] = ACTIONS(2225), - [aux_sym_remote_forward_token1] = ACTIONS(2225), - [aux_sym_request_tty_token1] = ACTIONS(2225), - [aux_sym_required_rsa_size_token1] = ACTIONS(2225), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2225), - [aux_sym_security_key_provider_token1] = ACTIONS(2225), - [aux_sym_send_env_token1] = ACTIONS(2225), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2225), - [aux_sym_server_alive_interval_token1] = ACTIONS(2225), - [aux_sym_session_type_token1] = ACTIONS(2225), - [aux_sym_set_env_token1] = ACTIONS(2225), - [aux_sym_stdin_null_token1] = ACTIONS(2225), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2225), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2225), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2225), - [aux_sym_syslog_facility_token1] = ACTIONS(2225), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2225), - [aux_sym_keep_alive_token1] = ACTIONS(2225), - [aux_sym_tunnel_token1] = ACTIONS(2227), - [aux_sym_tunnel_device_token1] = ACTIONS(2225), - [aux_sym_update_host_keys_token1] = ACTIONS(2225), - [aux_sym_use_keychain_token1] = ACTIONS(2225), - [aux_sym_use_roaming_token1] = ACTIONS(2225), - [aux_sym_user_token1] = ACTIONS(2227), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2225), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2225), - [aux_sym_visual_host_key_token1] = ACTIONS(2225), - [aux_sym_xauth_location_token1] = ACTIONS(2225), + [ts_builtin_sym_end] = ACTIONS(2232), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2234), + [anon_sym_DQUOTE] = ACTIONS(2232), + [aux_sym_match_token1] = ACTIONS(2232), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2232), + [aux_sym_address_family_token1] = ACTIONS(2232), + [aux_sym_batch_mode_token1] = ACTIONS(2232), + [aux_sym_bind_address_token1] = ACTIONS(2232), + [aux_sym_bind_interface_token1] = ACTIONS(2232), + [aux_sym_canonical_domains_token1] = ACTIONS(2232), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2232), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2232), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2232), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2232), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2232), + [aux_sym_certificate_file_token1] = ACTIONS(2232), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2232), + [aux_sym_check_host_ip_token1] = ACTIONS(2232), + [aux_sym_ciphers_token1] = ACTIONS(2232), + [aux_sym_cipher_token1] = ACTIONS(2234), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2232), + [aux_sym_compression_token1] = ACTIONS(2232), + [aux_sym_connection_attempts_token1] = ACTIONS(2232), + [aux_sym_connect_timeout_token1] = ACTIONS(2232), + [aux_sym_control_master_token1] = ACTIONS(2232), + [aux_sym_control_path_token1] = ACTIONS(2232), + [aux_sym_control_persist_token1] = ACTIONS(2232), + [aux_sym_dynamic_forward_token1] = ACTIONS(2232), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2232), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2232), + [aux_sym_escape_char_token1] = ACTIONS(2232), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2232), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2232), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2232), + [aux_sym_forward_agent_token1] = ACTIONS(2232), + [aux_sym_forward_x11_token1] = ACTIONS(2234), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2232), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2232), + [aux_sym_gateway_ports_token1] = ACTIONS(2232), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2232), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2232), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2232), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2232), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2232), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2232), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2232), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2232), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2232), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2232), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2232), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2232), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2232), + [aux_sym_host_key_alias_token1] = ACTIONS(2232), + [aux_sym_hostname_token1] = ACTIONS(2232), + [aux_sym_identities_only_token1] = ACTIONS(2232), + [aux_sym_identity_agent_token1] = ACTIONS(2232), + [aux_sym_identity_file_token1] = ACTIONS(2232), + [aux_sym_ignore_unknown_token1] = ACTIONS(2232), + [aux_sym_include_token1] = ACTIONS(2232), + [aux_sym_ip_qos_token1] = ACTIONS(2232), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2232), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2232), + [aux_sym_kex_algorithms_token1] = ACTIONS(2232), + [aux_sym_known_hosts_command_token1] = ACTIONS(2232), + [aux_sym_local_command_token1] = ACTIONS(2232), + [aux_sym_local_forward_token1] = ACTIONS(2232), + [aux_sym_log_level_token1] = ACTIONS(2232), + [aux_sym_log_verbose_token1] = ACTIONS(2232), + [aux_sym_macs_token1] = ACTIONS(2232), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2232), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2232), + [aux_sym_password_authentication_token1] = ACTIONS(2232), + [aux_sym_permit_local_command_token1] = ACTIONS(2232), + [aux_sym_permit_remote_open_token1] = ACTIONS(2232), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2232), + [aux_sym_port_token1] = ACTIONS(2232), + [aux_sym_preferred_authentications_token1] = ACTIONS(2232), + [aux_sym_protocol_token1] = ACTIONS(2232), + [aux_sym_proxy_command_token1] = ACTIONS(2232), + [aux_sym_proxy_jump_token1] = ACTIONS(2232), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2232), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2232), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2232), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2232), + [aux_sym_rekey_limit_token1] = ACTIONS(2232), + [aux_sym_remote_command_token1] = ACTIONS(2232), + [aux_sym_remote_forward_token1] = ACTIONS(2232), + [aux_sym_request_tty_token1] = ACTIONS(2232), + [aux_sym_required_rsa_size_token1] = ACTIONS(2232), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2232), + [aux_sym_security_key_provider_token1] = ACTIONS(2232), + [aux_sym_send_env_token1] = ACTIONS(2232), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2232), + [aux_sym_server_alive_interval_token1] = ACTIONS(2232), + [aux_sym_session_type_token1] = ACTIONS(2232), + [aux_sym_set_env_token1] = ACTIONS(2232), + [aux_sym_stdin_null_token1] = ACTIONS(2232), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2232), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2232), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2232), + [aux_sym_syslog_facility_token1] = ACTIONS(2232), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2232), + [aux_sym_keep_alive_token1] = ACTIONS(2232), + [aux_sym_tunnel_token1] = ACTIONS(2234), + [aux_sym_tunnel_device_token1] = ACTIONS(2232), + [aux_sym_update_host_keys_token1] = ACTIONS(2232), + [aux_sym_use_keychain_token1] = ACTIONS(2232), + [aux_sym_use_roaming_token1] = ACTIONS(2232), + [aux_sym_user_token1] = ACTIONS(2234), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2232), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2232), + [aux_sym_visual_host_key_token1] = ACTIONS(2232), + [aux_sym_xauth_location_token1] = ACTIONS(2232), }, [294] = { - [ts_builtin_sym_end] = ACTIONS(2229), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2231), - [anon_sym_DQUOTE] = ACTIONS(2233), - [aux_sym_match_token1] = ACTIONS(2229), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2229), - [aux_sym_address_family_token1] = ACTIONS(2229), - [aux_sym_batch_mode_token1] = ACTIONS(2229), - [aux_sym_bind_address_token1] = ACTIONS(2229), - [aux_sym_bind_interface_token1] = ACTIONS(2229), - [aux_sym_canonical_domains_token1] = ACTIONS(2229), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2229), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2229), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2229), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2229), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2229), - [aux_sym_certificate_file_token1] = ACTIONS(2229), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2229), - [aux_sym_check_host_ip_token1] = ACTIONS(2229), - [aux_sym_ciphers_token1] = ACTIONS(2229), - [aux_sym_cipher_token1] = ACTIONS(2231), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2229), - [aux_sym_compression_token1] = ACTIONS(2229), - [aux_sym_connection_attempts_token1] = ACTIONS(2229), - [aux_sym_connect_timeout_token1] = ACTIONS(2229), - [aux_sym_control_master_token1] = ACTIONS(2229), - [aux_sym_control_path_token1] = ACTIONS(2229), - [aux_sym_control_persist_token1] = ACTIONS(2229), - [aux_sym_dynamic_forward_token1] = ACTIONS(2229), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2229), - [aux_sym_escape_char_token1] = ACTIONS(2229), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2229), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2229), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2229), - [aux_sym_forward_agent_token1] = ACTIONS(2229), - [aux_sym_forward_x11_token1] = ACTIONS(2231), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2229), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2229), - [aux_sym_gateway_ports_token1] = ACTIONS(2229), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2229), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2229), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2229), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2229), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2229), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2229), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2229), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2229), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2229), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2229), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2229), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2229), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2229), - [aux_sym_host_key_alias_token1] = ACTIONS(2229), - [aux_sym_hostname_token1] = ACTIONS(2229), - [aux_sym_identities_only_token1] = ACTIONS(2229), - [aux_sym_identity_agent_token1] = ACTIONS(2229), - [aux_sym_identity_file_token1] = ACTIONS(2229), - [aux_sym_ignore_unknown_token1] = ACTIONS(2229), - [aux_sym_include_token1] = ACTIONS(2229), - [aux_sym_ip_qos_token1] = ACTIONS(2229), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2229), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2229), - [aux_sym_kex_algorithms_token1] = ACTIONS(2229), - [aux_sym_known_hosts_command_token1] = ACTIONS(2229), - [aux_sym_local_command_token1] = ACTIONS(2229), - [aux_sym_local_forward_token1] = ACTIONS(2229), - [aux_sym_log_level_token1] = ACTIONS(2229), - [aux_sym_log_verbose_token1] = ACTIONS(2229), - [aux_sym_macs_token1] = ACTIONS(2229), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2229), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2229), - [aux_sym_password_authentication_token1] = ACTIONS(2229), - [aux_sym_permit_local_command_token1] = ACTIONS(2229), - [aux_sym_permit_remote_open_token1] = ACTIONS(2229), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2229), - [aux_sym_port_token1] = ACTIONS(2229), - [aux_sym_preferred_authentications_token1] = ACTIONS(2229), - [aux_sym_protocol_token1] = ACTIONS(2229), - [aux_sym_proxy_command_token1] = ACTIONS(2229), - [aux_sym_proxy_jump_token1] = ACTIONS(2229), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2229), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2229), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2229), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2229), - [aux_sym_rekey_limit_token1] = ACTIONS(2229), - [aux_sym_remote_command_token1] = ACTIONS(2229), - [aux_sym_remote_forward_token1] = ACTIONS(2229), - [aux_sym_request_tty_token1] = ACTIONS(2229), - [aux_sym_required_rsa_size_token1] = ACTIONS(2229), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2229), - [aux_sym_security_key_provider_token1] = ACTIONS(2229), - [aux_sym_send_env_token1] = ACTIONS(2229), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2229), - [aux_sym_server_alive_interval_token1] = ACTIONS(2229), - [aux_sym_session_type_token1] = ACTIONS(2229), - [aux_sym_set_env_token1] = ACTIONS(2229), - [aux_sym_stdin_null_token1] = ACTIONS(2229), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2229), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2229), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2229), - [aux_sym_syslog_facility_token1] = ACTIONS(2229), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2229), - [aux_sym_keep_alive_token1] = ACTIONS(2229), - [aux_sym_tunnel_token1] = ACTIONS(2231), - [aux_sym_tunnel_device_token1] = ACTIONS(2229), - [aux_sym_update_host_keys_token1] = ACTIONS(2229), - [aux_sym_use_keychain_token1] = ACTIONS(2229), - [aux_sym_use_roaming_token1] = ACTIONS(2229), - [aux_sym_user_token1] = ACTIONS(2231), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2229), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2229), - [aux_sym_visual_host_key_token1] = ACTIONS(2229), - [aux_sym_xauth_location_token1] = ACTIONS(2229), + [ts_builtin_sym_end] = ACTIONS(2236), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2238), + [anon_sym_DQUOTE] = ACTIONS(2240), + [aux_sym_match_token1] = ACTIONS(2236), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2236), + [aux_sym_address_family_token1] = ACTIONS(2236), + [aux_sym_batch_mode_token1] = ACTIONS(2236), + [aux_sym_bind_address_token1] = ACTIONS(2236), + [aux_sym_bind_interface_token1] = ACTIONS(2236), + [aux_sym_canonical_domains_token1] = ACTIONS(2236), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2236), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2236), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2236), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2236), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2236), + [aux_sym_certificate_file_token1] = ACTIONS(2236), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2236), + [aux_sym_check_host_ip_token1] = ACTIONS(2236), + [aux_sym_ciphers_token1] = ACTIONS(2236), + [aux_sym_cipher_token1] = ACTIONS(2238), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2236), + [aux_sym_compression_token1] = ACTIONS(2236), + [aux_sym_connection_attempts_token1] = ACTIONS(2236), + [aux_sym_connect_timeout_token1] = ACTIONS(2236), + [aux_sym_control_master_token1] = ACTIONS(2236), + [aux_sym_control_path_token1] = ACTIONS(2236), + [aux_sym_control_persist_token1] = ACTIONS(2236), + [aux_sym_dynamic_forward_token1] = ACTIONS(2236), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2236), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2236), + [aux_sym_escape_char_token1] = ACTIONS(2236), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2236), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2236), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2236), + [aux_sym_forward_agent_token1] = ACTIONS(2236), + [aux_sym_forward_x11_token1] = ACTIONS(2238), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2236), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2236), + [aux_sym_gateway_ports_token1] = ACTIONS(2236), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2236), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2236), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2236), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2236), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2236), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2236), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2236), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2236), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2236), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2236), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2236), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2236), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2236), + [aux_sym_host_key_alias_token1] = ACTIONS(2236), + [aux_sym_hostname_token1] = ACTIONS(2236), + [aux_sym_identities_only_token1] = ACTIONS(2236), + [aux_sym_identity_agent_token1] = ACTIONS(2236), + [aux_sym_identity_file_token1] = ACTIONS(2236), + [aux_sym_ignore_unknown_token1] = ACTIONS(2236), + [aux_sym_include_token1] = ACTIONS(2236), + [aux_sym_ip_qos_token1] = ACTIONS(2236), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2236), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2236), + [aux_sym_kex_algorithms_token1] = ACTIONS(2236), + [aux_sym_known_hosts_command_token1] = ACTIONS(2236), + [aux_sym_local_command_token1] = ACTIONS(2236), + [aux_sym_local_forward_token1] = ACTIONS(2236), + [aux_sym_log_level_token1] = ACTIONS(2236), + [aux_sym_log_verbose_token1] = ACTIONS(2236), + [aux_sym_macs_token1] = ACTIONS(2236), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2236), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2236), + [aux_sym_password_authentication_token1] = ACTIONS(2236), + [aux_sym_permit_local_command_token1] = ACTIONS(2236), + [aux_sym_permit_remote_open_token1] = ACTIONS(2236), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2236), + [aux_sym_port_token1] = ACTIONS(2236), + [aux_sym_preferred_authentications_token1] = ACTIONS(2236), + [aux_sym_protocol_token1] = ACTIONS(2236), + [aux_sym_proxy_command_token1] = ACTIONS(2236), + [aux_sym_proxy_jump_token1] = ACTIONS(2236), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2236), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2236), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2236), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2236), + [aux_sym_rekey_limit_token1] = ACTIONS(2236), + [aux_sym_remote_command_token1] = ACTIONS(2236), + [aux_sym_remote_forward_token1] = ACTIONS(2236), + [aux_sym_request_tty_token1] = ACTIONS(2236), + [aux_sym_required_rsa_size_token1] = ACTIONS(2236), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2236), + [aux_sym_security_key_provider_token1] = ACTIONS(2236), + [aux_sym_send_env_token1] = ACTIONS(2236), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2236), + [aux_sym_server_alive_interval_token1] = ACTIONS(2236), + [aux_sym_session_type_token1] = ACTIONS(2236), + [aux_sym_set_env_token1] = ACTIONS(2236), + [aux_sym_stdin_null_token1] = ACTIONS(2236), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2236), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2236), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2236), + [aux_sym_syslog_facility_token1] = ACTIONS(2236), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2236), + [aux_sym_keep_alive_token1] = ACTIONS(2236), + [aux_sym_tunnel_token1] = ACTIONS(2238), + [aux_sym_tunnel_device_token1] = ACTIONS(2236), + [aux_sym_update_host_keys_token1] = ACTIONS(2236), + [aux_sym_use_keychain_token1] = ACTIONS(2236), + [aux_sym_use_roaming_token1] = ACTIONS(2236), + [aux_sym_user_token1] = ACTIONS(2238), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2236), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2236), + [aux_sym_visual_host_key_token1] = ACTIONS(2236), + [aux_sym_xauth_location_token1] = ACTIONS(2236), }, [295] = { - [ts_builtin_sym_end] = ACTIONS(2235), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2235), - [aux_sym_match_token1] = ACTIONS(2235), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2235), - [aux_sym_address_family_token1] = ACTIONS(2235), - [aux_sym_batch_mode_token1] = ACTIONS(2235), - [aux_sym_bind_address_token1] = ACTIONS(2235), - [aux_sym_bind_interface_token1] = ACTIONS(2235), - [aux_sym_canonical_domains_token1] = ACTIONS(2235), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2235), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2235), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2235), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2235), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2235), - [aux_sym_certificate_file_token1] = ACTIONS(2235), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2235), - [aux_sym_check_host_ip_token1] = ACTIONS(2235), - [aux_sym_ciphers_token1] = ACTIONS(2235), - [aux_sym_cipher_token1] = ACTIONS(2237), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2235), - [aux_sym_compression_token1] = ACTIONS(2235), - [aux_sym_connection_attempts_token1] = ACTIONS(2235), - [aux_sym_connect_timeout_token1] = ACTIONS(2235), - [aux_sym_control_master_token1] = ACTIONS(2235), - [aux_sym_control_path_token1] = ACTIONS(2235), - [aux_sym_control_persist_token1] = ACTIONS(2235), - [aux_sym_dynamic_forward_token1] = ACTIONS(2235), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2235), - [aux_sym_escape_char_token1] = ACTIONS(2235), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2235), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2235), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2235), - [aux_sym_forward_agent_token1] = ACTIONS(2235), - [aux_sym_forward_x11_token1] = ACTIONS(2237), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2235), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2235), - [aux_sym_gateway_ports_token1] = ACTIONS(2235), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2235), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2235), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2235), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2235), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2235), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2235), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2235), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2235), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2235), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2235), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2235), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2235), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2235), - [aux_sym_host_key_alias_token1] = ACTIONS(2235), - [aux_sym_hostname_token1] = ACTIONS(2235), - [aux_sym_identities_only_token1] = ACTIONS(2235), - [aux_sym_identity_agent_token1] = ACTIONS(2235), - [aux_sym_identity_file_token1] = ACTIONS(2235), - [aux_sym_ignore_unknown_token1] = ACTIONS(2235), - [aux_sym_include_token1] = ACTIONS(2235), - [aux_sym_ip_qos_token1] = ACTIONS(2235), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2235), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2235), - [aux_sym_kex_algorithms_token1] = ACTIONS(2235), - [aux_sym_known_hosts_command_token1] = ACTIONS(2235), - [aux_sym_local_command_token1] = ACTIONS(2235), - [aux_sym_local_forward_token1] = ACTIONS(2235), - [aux_sym_log_level_token1] = ACTIONS(2235), - [aux_sym_log_verbose_token1] = ACTIONS(2235), - [aux_sym_macs_token1] = ACTIONS(2235), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2235), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2235), - [aux_sym_password_authentication_token1] = ACTIONS(2235), - [aux_sym_permit_local_command_token1] = ACTIONS(2235), - [aux_sym_permit_remote_open_token1] = ACTIONS(2235), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2235), - [aux_sym_port_token1] = ACTIONS(2235), - [aux_sym_preferred_authentications_token1] = ACTIONS(2235), - [aux_sym_protocol_token1] = ACTIONS(2235), - [aux_sym_proxy_command_token1] = ACTIONS(2235), - [aux_sym_proxy_jump_token1] = ACTIONS(2235), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2235), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2235), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2235), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2235), - [aux_sym_rekey_limit_token1] = ACTIONS(2235), - [aux_sym_remote_command_token1] = ACTIONS(2235), - [aux_sym_remote_forward_token1] = ACTIONS(2235), - [aux_sym_request_tty_token1] = ACTIONS(2235), - [aux_sym_required_rsa_size_token1] = ACTIONS(2235), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2235), - [aux_sym_security_key_provider_token1] = ACTIONS(2235), - [aux_sym_send_env_token1] = ACTIONS(2235), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2235), - [aux_sym_server_alive_interval_token1] = ACTIONS(2235), - [aux_sym_session_type_token1] = ACTIONS(2235), - [aux_sym_set_env_token1] = ACTIONS(2235), - [aux_sym_stdin_null_token1] = ACTIONS(2235), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2235), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2235), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2235), - [aux_sym_syslog_facility_token1] = ACTIONS(2235), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2235), - [aux_sym_keep_alive_token1] = ACTIONS(2235), - [aux_sym_tunnel_token1] = ACTIONS(2237), - [aux_sym_tunnel_device_token1] = ACTIONS(2235), - [aux_sym_update_host_keys_token1] = ACTIONS(2235), - [aux_sym_use_keychain_token1] = ACTIONS(2235), - [aux_sym_use_roaming_token1] = ACTIONS(2235), - [aux_sym_user_token1] = ACTIONS(2237), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2235), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2235), - [aux_sym_visual_host_key_token1] = ACTIONS(2235), - [aux_sym_xauth_location_token1] = ACTIONS(2235), + [ts_builtin_sym_end] = ACTIONS(2242), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2242), + [aux_sym_match_token1] = ACTIONS(2242), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2242), + [aux_sym_address_family_token1] = ACTIONS(2242), + [aux_sym_batch_mode_token1] = ACTIONS(2242), + [aux_sym_bind_address_token1] = ACTIONS(2242), + [aux_sym_bind_interface_token1] = ACTIONS(2242), + [aux_sym_canonical_domains_token1] = ACTIONS(2242), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2242), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2242), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2242), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2242), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2242), + [aux_sym_certificate_file_token1] = ACTIONS(2242), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2242), + [aux_sym_check_host_ip_token1] = ACTIONS(2242), + [aux_sym_ciphers_token1] = ACTIONS(2242), + [aux_sym_cipher_token1] = ACTIONS(2244), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2242), + [aux_sym_compression_token1] = ACTIONS(2242), + [aux_sym_connection_attempts_token1] = ACTIONS(2242), + [aux_sym_connect_timeout_token1] = ACTIONS(2242), + [aux_sym_control_master_token1] = ACTIONS(2242), + [aux_sym_control_path_token1] = ACTIONS(2242), + [aux_sym_control_persist_token1] = ACTIONS(2242), + [aux_sym_dynamic_forward_token1] = ACTIONS(2242), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2242), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2242), + [aux_sym_escape_char_token1] = ACTIONS(2242), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2242), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2242), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2242), + [aux_sym_forward_agent_token1] = ACTIONS(2242), + [aux_sym_forward_x11_token1] = ACTIONS(2244), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2242), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2242), + [aux_sym_gateway_ports_token1] = ACTIONS(2242), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2242), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2242), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2242), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2242), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2242), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2242), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2242), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2242), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2242), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2242), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2242), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2242), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2242), + [aux_sym_host_key_alias_token1] = ACTIONS(2242), + [aux_sym_hostname_token1] = ACTIONS(2242), + [aux_sym_identities_only_token1] = ACTIONS(2242), + [aux_sym_identity_agent_token1] = ACTIONS(2242), + [aux_sym_identity_file_token1] = ACTIONS(2242), + [aux_sym_ignore_unknown_token1] = ACTIONS(2242), + [aux_sym_include_token1] = ACTIONS(2242), + [aux_sym_ip_qos_token1] = ACTIONS(2242), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2242), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2242), + [aux_sym_kex_algorithms_token1] = ACTIONS(2242), + [aux_sym_known_hosts_command_token1] = ACTIONS(2242), + [aux_sym_local_command_token1] = ACTIONS(2242), + [aux_sym_local_forward_token1] = ACTIONS(2242), + [aux_sym_log_level_token1] = ACTIONS(2242), + [aux_sym_log_verbose_token1] = ACTIONS(2242), + [aux_sym_macs_token1] = ACTIONS(2242), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2242), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2242), + [aux_sym_password_authentication_token1] = ACTIONS(2242), + [aux_sym_permit_local_command_token1] = ACTIONS(2242), + [aux_sym_permit_remote_open_token1] = ACTIONS(2242), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2242), + [aux_sym_port_token1] = ACTIONS(2242), + [aux_sym_preferred_authentications_token1] = ACTIONS(2242), + [aux_sym_protocol_token1] = ACTIONS(2242), + [aux_sym_proxy_command_token1] = ACTIONS(2242), + [aux_sym_proxy_jump_token1] = ACTIONS(2242), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2242), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2242), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2242), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2242), + [aux_sym_rekey_limit_token1] = ACTIONS(2242), + [aux_sym_remote_command_token1] = ACTIONS(2242), + [aux_sym_remote_forward_token1] = ACTIONS(2242), + [aux_sym_request_tty_token1] = ACTIONS(2242), + [aux_sym_required_rsa_size_token1] = ACTIONS(2242), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2242), + [aux_sym_security_key_provider_token1] = ACTIONS(2242), + [aux_sym_send_env_token1] = ACTIONS(2242), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2242), + [aux_sym_server_alive_interval_token1] = ACTIONS(2242), + [aux_sym_session_type_token1] = ACTIONS(2242), + [aux_sym_set_env_token1] = ACTIONS(2242), + [aux_sym_stdin_null_token1] = ACTIONS(2242), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2242), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2242), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2242), + [aux_sym_syslog_facility_token1] = ACTIONS(2242), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2242), + [aux_sym_keep_alive_token1] = ACTIONS(2242), + [aux_sym_tunnel_token1] = ACTIONS(2244), + [aux_sym_tunnel_device_token1] = ACTIONS(2242), + [aux_sym_update_host_keys_token1] = ACTIONS(2242), + [aux_sym_use_keychain_token1] = ACTIONS(2242), + [aux_sym_use_roaming_token1] = ACTIONS(2242), + [aux_sym_user_token1] = ACTIONS(2244), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2242), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2242), + [aux_sym_visual_host_key_token1] = ACTIONS(2242), + [aux_sym_xauth_location_token1] = ACTIONS(2242), }, [296] = { - [ts_builtin_sym_end] = ACTIONS(2239), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2241), - [anon_sym_DQUOTE] = ACTIONS(2243), - [aux_sym_match_token1] = ACTIONS(2239), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2239), - [aux_sym_address_family_token1] = ACTIONS(2239), - [aux_sym_batch_mode_token1] = ACTIONS(2239), - [aux_sym_bind_address_token1] = ACTIONS(2239), - [aux_sym_bind_interface_token1] = ACTIONS(2239), - [aux_sym_canonical_domains_token1] = ACTIONS(2239), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2239), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2239), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2239), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2239), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2239), - [aux_sym_certificate_file_token1] = ACTIONS(2239), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2239), - [aux_sym_check_host_ip_token1] = ACTIONS(2239), - [aux_sym_ciphers_token1] = ACTIONS(2239), - [aux_sym_cipher_token1] = ACTIONS(2241), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2239), - [aux_sym_compression_token1] = ACTIONS(2239), - [aux_sym_connection_attempts_token1] = ACTIONS(2239), - [aux_sym_connect_timeout_token1] = ACTIONS(2239), - [aux_sym_control_master_token1] = ACTIONS(2239), - [aux_sym_control_path_token1] = ACTIONS(2239), - [aux_sym_control_persist_token1] = ACTIONS(2239), - [aux_sym_dynamic_forward_token1] = ACTIONS(2239), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2239), - [aux_sym_escape_char_token1] = ACTIONS(2239), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2239), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2239), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2239), - [aux_sym_forward_agent_token1] = ACTIONS(2239), - [aux_sym_forward_x11_token1] = ACTIONS(2241), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2239), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2239), - [aux_sym_gateway_ports_token1] = ACTIONS(2239), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2239), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2239), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2239), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2239), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2239), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2239), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2239), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2239), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2239), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2239), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2239), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2239), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2239), - [aux_sym_host_key_alias_token1] = ACTIONS(2239), - [aux_sym_hostname_token1] = ACTIONS(2239), - [aux_sym_identities_only_token1] = ACTIONS(2239), - [aux_sym_identity_agent_token1] = ACTIONS(2239), - [aux_sym_identity_file_token1] = ACTIONS(2239), - [aux_sym_ignore_unknown_token1] = ACTIONS(2239), - [aux_sym_include_token1] = ACTIONS(2239), - [aux_sym_ip_qos_token1] = ACTIONS(2239), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2239), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2239), - [aux_sym_kex_algorithms_token1] = ACTIONS(2239), - [aux_sym_known_hosts_command_token1] = ACTIONS(2239), - [aux_sym_local_command_token1] = ACTIONS(2239), - [aux_sym_local_forward_token1] = ACTIONS(2239), - [aux_sym_log_level_token1] = ACTIONS(2239), - [aux_sym_log_verbose_token1] = ACTIONS(2239), - [aux_sym_macs_token1] = ACTIONS(2239), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2239), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2239), - [aux_sym_password_authentication_token1] = ACTIONS(2239), - [aux_sym_permit_local_command_token1] = ACTIONS(2239), - [aux_sym_permit_remote_open_token1] = ACTIONS(2239), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2239), - [aux_sym_port_token1] = ACTIONS(2239), - [aux_sym_preferred_authentications_token1] = ACTIONS(2239), - [aux_sym_protocol_token1] = ACTIONS(2239), - [aux_sym_proxy_command_token1] = ACTIONS(2239), - [aux_sym_proxy_jump_token1] = ACTIONS(2239), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2239), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2239), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2239), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2239), - [aux_sym_rekey_limit_token1] = ACTIONS(2239), - [aux_sym_remote_command_token1] = ACTIONS(2239), - [aux_sym_remote_forward_token1] = ACTIONS(2239), - [aux_sym_request_tty_token1] = ACTIONS(2239), - [aux_sym_required_rsa_size_token1] = ACTIONS(2239), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2239), - [aux_sym_security_key_provider_token1] = ACTIONS(2239), - [aux_sym_send_env_token1] = ACTIONS(2239), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2239), - [aux_sym_server_alive_interval_token1] = ACTIONS(2239), - [aux_sym_session_type_token1] = ACTIONS(2239), - [aux_sym_set_env_token1] = ACTIONS(2239), - [aux_sym_stdin_null_token1] = ACTIONS(2239), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2239), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2239), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2239), - [aux_sym_syslog_facility_token1] = ACTIONS(2239), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2239), - [aux_sym_keep_alive_token1] = ACTIONS(2239), - [aux_sym_tunnel_token1] = ACTIONS(2241), - [aux_sym_tunnel_device_token1] = ACTIONS(2239), - [aux_sym_update_host_keys_token1] = ACTIONS(2239), - [aux_sym_use_keychain_token1] = ACTIONS(2239), - [aux_sym_use_roaming_token1] = ACTIONS(2239), - [aux_sym_user_token1] = ACTIONS(2241), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2239), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2239), - [aux_sym_visual_host_key_token1] = ACTIONS(2239), - [aux_sym_xauth_location_token1] = ACTIONS(2239), + [ts_builtin_sym_end] = ACTIONS(2246), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2248), + [anon_sym_DQUOTE] = ACTIONS(2250), + [aux_sym_match_token1] = ACTIONS(2246), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2246), + [aux_sym_address_family_token1] = ACTIONS(2246), + [aux_sym_batch_mode_token1] = ACTIONS(2246), + [aux_sym_bind_address_token1] = ACTIONS(2246), + [aux_sym_bind_interface_token1] = ACTIONS(2246), + [aux_sym_canonical_domains_token1] = ACTIONS(2246), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2246), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2246), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2246), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2246), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2246), + [aux_sym_certificate_file_token1] = ACTIONS(2246), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2246), + [aux_sym_check_host_ip_token1] = ACTIONS(2246), + [aux_sym_ciphers_token1] = ACTIONS(2246), + [aux_sym_cipher_token1] = ACTIONS(2248), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2246), + [aux_sym_compression_token1] = ACTIONS(2246), + [aux_sym_connection_attempts_token1] = ACTIONS(2246), + [aux_sym_connect_timeout_token1] = ACTIONS(2246), + [aux_sym_control_master_token1] = ACTIONS(2246), + [aux_sym_control_path_token1] = ACTIONS(2246), + [aux_sym_control_persist_token1] = ACTIONS(2246), + [aux_sym_dynamic_forward_token1] = ACTIONS(2246), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2246), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2246), + [aux_sym_escape_char_token1] = ACTIONS(2246), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2246), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2246), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2246), + [aux_sym_forward_agent_token1] = ACTIONS(2246), + [aux_sym_forward_x11_token1] = ACTIONS(2248), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2246), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2246), + [aux_sym_gateway_ports_token1] = ACTIONS(2246), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2246), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2246), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2246), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2246), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2246), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2246), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2246), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2246), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2246), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2246), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2246), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2246), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2246), + [aux_sym_host_key_alias_token1] = ACTIONS(2246), + [aux_sym_hostname_token1] = ACTIONS(2246), + [aux_sym_identities_only_token1] = ACTIONS(2246), + [aux_sym_identity_agent_token1] = ACTIONS(2246), + [aux_sym_identity_file_token1] = ACTIONS(2246), + [aux_sym_ignore_unknown_token1] = ACTIONS(2246), + [aux_sym_include_token1] = ACTIONS(2246), + [aux_sym_ip_qos_token1] = ACTIONS(2246), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2246), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2246), + [aux_sym_kex_algorithms_token1] = ACTIONS(2246), + [aux_sym_known_hosts_command_token1] = ACTIONS(2246), + [aux_sym_local_command_token1] = ACTIONS(2246), + [aux_sym_local_forward_token1] = ACTIONS(2246), + [aux_sym_log_level_token1] = ACTIONS(2246), + [aux_sym_log_verbose_token1] = ACTIONS(2246), + [aux_sym_macs_token1] = ACTIONS(2246), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2246), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2246), + [aux_sym_password_authentication_token1] = ACTIONS(2246), + [aux_sym_permit_local_command_token1] = ACTIONS(2246), + [aux_sym_permit_remote_open_token1] = ACTIONS(2246), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2246), + [aux_sym_port_token1] = ACTIONS(2246), + [aux_sym_preferred_authentications_token1] = ACTIONS(2246), + [aux_sym_protocol_token1] = ACTIONS(2246), + [aux_sym_proxy_command_token1] = ACTIONS(2246), + [aux_sym_proxy_jump_token1] = ACTIONS(2246), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2246), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2246), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2246), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2246), + [aux_sym_rekey_limit_token1] = ACTIONS(2246), + [aux_sym_remote_command_token1] = ACTIONS(2246), + [aux_sym_remote_forward_token1] = ACTIONS(2246), + [aux_sym_request_tty_token1] = ACTIONS(2246), + [aux_sym_required_rsa_size_token1] = ACTIONS(2246), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2246), + [aux_sym_security_key_provider_token1] = ACTIONS(2246), + [aux_sym_send_env_token1] = ACTIONS(2246), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2246), + [aux_sym_server_alive_interval_token1] = ACTIONS(2246), + [aux_sym_session_type_token1] = ACTIONS(2246), + [aux_sym_set_env_token1] = ACTIONS(2246), + [aux_sym_stdin_null_token1] = ACTIONS(2246), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2246), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2246), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2246), + [aux_sym_syslog_facility_token1] = ACTIONS(2246), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2246), + [aux_sym_keep_alive_token1] = ACTIONS(2246), + [aux_sym_tunnel_token1] = ACTIONS(2248), + [aux_sym_tunnel_device_token1] = ACTIONS(2246), + [aux_sym_update_host_keys_token1] = ACTIONS(2246), + [aux_sym_use_keychain_token1] = ACTIONS(2246), + [aux_sym_use_roaming_token1] = ACTIONS(2246), + [aux_sym_user_token1] = ACTIONS(2248), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2246), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2246), + [aux_sym_visual_host_key_token1] = ACTIONS(2246), + [aux_sym_xauth_location_token1] = ACTIONS(2246), }, [297] = { - [ts_builtin_sym_end] = ACTIONS(2245), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2245), - [aux_sym_match_token1] = ACTIONS(2245), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2245), - [aux_sym_address_family_token1] = ACTIONS(2245), - [aux_sym_batch_mode_token1] = ACTIONS(2245), - [aux_sym_bind_address_token1] = ACTIONS(2245), - [aux_sym_bind_interface_token1] = ACTIONS(2245), - [aux_sym_canonical_domains_token1] = ACTIONS(2245), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2245), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2245), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2245), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2245), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2245), - [aux_sym_certificate_file_token1] = ACTIONS(2245), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2245), - [aux_sym_check_host_ip_token1] = ACTIONS(2245), - [aux_sym_ciphers_token1] = ACTIONS(2245), - [aux_sym_cipher_token1] = ACTIONS(2247), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2245), - [aux_sym_compression_token1] = ACTIONS(2245), - [aux_sym_connection_attempts_token1] = ACTIONS(2245), - [aux_sym_connect_timeout_token1] = ACTIONS(2245), - [aux_sym_control_master_token1] = ACTIONS(2245), - [aux_sym_control_path_token1] = ACTIONS(2245), - [aux_sym_control_persist_token1] = ACTIONS(2245), - [aux_sym_dynamic_forward_token1] = ACTIONS(2245), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2245), - [aux_sym_escape_char_token1] = ACTIONS(2245), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2245), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2245), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2245), - [aux_sym_forward_agent_token1] = ACTIONS(2245), - [aux_sym_forward_x11_token1] = ACTIONS(2247), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2245), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2245), - [aux_sym_gateway_ports_token1] = ACTIONS(2245), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2245), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2245), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2245), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2245), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2245), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2245), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2245), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2245), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2245), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2245), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2245), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2245), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2245), - [aux_sym_host_key_alias_token1] = ACTIONS(2245), - [aux_sym_hostname_token1] = ACTIONS(2245), - [aux_sym_identities_only_token1] = ACTIONS(2245), - [aux_sym_identity_agent_token1] = ACTIONS(2245), - [aux_sym_identity_file_token1] = ACTIONS(2245), - [aux_sym_ignore_unknown_token1] = ACTIONS(2245), - [aux_sym_include_token1] = ACTIONS(2245), - [aux_sym_ip_qos_token1] = ACTIONS(2245), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2245), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2245), - [aux_sym_kex_algorithms_token1] = ACTIONS(2245), - [aux_sym_known_hosts_command_token1] = ACTIONS(2245), - [aux_sym_local_command_token1] = ACTIONS(2245), - [aux_sym_local_forward_token1] = ACTIONS(2245), - [aux_sym_log_level_token1] = ACTIONS(2245), - [aux_sym_log_verbose_token1] = ACTIONS(2245), - [aux_sym_macs_token1] = ACTIONS(2245), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2245), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2245), - [aux_sym_password_authentication_token1] = ACTIONS(2245), - [aux_sym_permit_local_command_token1] = ACTIONS(2245), - [aux_sym_permit_remote_open_token1] = ACTIONS(2245), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2245), - [aux_sym_port_token1] = ACTIONS(2245), - [aux_sym_preferred_authentications_token1] = ACTIONS(2245), - [aux_sym_protocol_token1] = ACTIONS(2245), - [aux_sym_proxy_command_token1] = ACTIONS(2245), - [aux_sym_proxy_jump_token1] = ACTIONS(2245), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2245), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2245), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2245), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2245), - [aux_sym_rekey_limit_token1] = ACTIONS(2245), - [aux_sym_remote_command_token1] = ACTIONS(2245), - [aux_sym_remote_forward_token1] = ACTIONS(2245), - [aux_sym_request_tty_token1] = ACTIONS(2245), - [aux_sym_required_rsa_size_token1] = ACTIONS(2245), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2245), - [aux_sym_security_key_provider_token1] = ACTIONS(2245), - [aux_sym_send_env_token1] = ACTIONS(2245), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2245), - [aux_sym_server_alive_interval_token1] = ACTIONS(2245), - [aux_sym_session_type_token1] = ACTIONS(2245), - [aux_sym_set_env_token1] = ACTIONS(2245), - [aux_sym_stdin_null_token1] = ACTIONS(2245), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2245), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2245), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2245), - [aux_sym_syslog_facility_token1] = ACTIONS(2245), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2245), - [aux_sym_keep_alive_token1] = ACTIONS(2245), - [aux_sym_tunnel_token1] = ACTIONS(2247), - [aux_sym_tunnel_device_token1] = ACTIONS(2245), - [aux_sym_update_host_keys_token1] = ACTIONS(2245), - [aux_sym_use_keychain_token1] = ACTIONS(2245), - [aux_sym_use_roaming_token1] = ACTIONS(2245), - [aux_sym_user_token1] = ACTIONS(2247), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2245), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2245), - [aux_sym_visual_host_key_token1] = ACTIONS(2245), - [aux_sym_xauth_location_token1] = ACTIONS(2245), + [ts_builtin_sym_end] = ACTIONS(2252), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2254), + [anon_sym_DQUOTE] = ACTIONS(2252), + [aux_sym_match_token1] = ACTIONS(2252), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2252), + [aux_sym_address_family_token1] = ACTIONS(2252), + [aux_sym_batch_mode_token1] = ACTIONS(2252), + [aux_sym_bind_address_token1] = ACTIONS(2252), + [aux_sym_bind_interface_token1] = ACTIONS(2252), + [aux_sym_canonical_domains_token1] = ACTIONS(2252), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2252), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2252), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2252), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2252), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2252), + [aux_sym_certificate_file_token1] = ACTIONS(2252), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2252), + [aux_sym_check_host_ip_token1] = ACTIONS(2252), + [aux_sym_ciphers_token1] = ACTIONS(2252), + [aux_sym_cipher_token1] = ACTIONS(2254), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2252), + [aux_sym_compression_token1] = ACTIONS(2252), + [aux_sym_connection_attempts_token1] = ACTIONS(2252), + [aux_sym_connect_timeout_token1] = ACTIONS(2252), + [aux_sym_control_master_token1] = ACTIONS(2252), + [aux_sym_control_path_token1] = ACTIONS(2252), + [aux_sym_control_persist_token1] = ACTIONS(2252), + [aux_sym_dynamic_forward_token1] = ACTIONS(2252), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2252), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2252), + [aux_sym_escape_char_token1] = ACTIONS(2252), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2252), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2252), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2252), + [aux_sym_forward_agent_token1] = ACTIONS(2252), + [aux_sym_forward_x11_token1] = ACTIONS(2254), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2252), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2252), + [aux_sym_gateway_ports_token1] = ACTIONS(2252), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2252), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2252), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2252), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2252), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2252), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2252), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2252), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2252), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2252), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2252), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2252), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2252), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2252), + [aux_sym_host_key_alias_token1] = ACTIONS(2252), + [aux_sym_hostname_token1] = ACTIONS(2252), + [aux_sym_identities_only_token1] = ACTIONS(2252), + [aux_sym_identity_agent_token1] = ACTIONS(2252), + [aux_sym_identity_file_token1] = ACTIONS(2252), + [aux_sym_ignore_unknown_token1] = ACTIONS(2252), + [aux_sym_include_token1] = ACTIONS(2252), + [aux_sym_ip_qos_token1] = ACTIONS(2252), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2252), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2252), + [aux_sym_kex_algorithms_token1] = ACTIONS(2252), + [aux_sym_known_hosts_command_token1] = ACTIONS(2252), + [aux_sym_local_command_token1] = ACTIONS(2252), + [aux_sym_local_forward_token1] = ACTIONS(2252), + [aux_sym_log_level_token1] = ACTIONS(2252), + [aux_sym_log_verbose_token1] = ACTIONS(2252), + [aux_sym_macs_token1] = ACTIONS(2252), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2252), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2252), + [aux_sym_password_authentication_token1] = ACTIONS(2252), + [aux_sym_permit_local_command_token1] = ACTIONS(2252), + [aux_sym_permit_remote_open_token1] = ACTIONS(2252), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2252), + [aux_sym_port_token1] = ACTIONS(2252), + [aux_sym_preferred_authentications_token1] = ACTIONS(2252), + [aux_sym_protocol_token1] = ACTIONS(2252), + [aux_sym_proxy_command_token1] = ACTIONS(2252), + [aux_sym_proxy_jump_token1] = ACTIONS(2252), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2252), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2252), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2252), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2252), + [aux_sym_rekey_limit_token1] = ACTIONS(2252), + [aux_sym_remote_command_token1] = ACTIONS(2252), + [aux_sym_remote_forward_token1] = ACTIONS(2252), + [aux_sym_request_tty_token1] = ACTIONS(2252), + [aux_sym_required_rsa_size_token1] = ACTIONS(2252), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2252), + [aux_sym_security_key_provider_token1] = ACTIONS(2252), + [aux_sym_send_env_token1] = ACTIONS(2252), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2252), + [aux_sym_server_alive_interval_token1] = ACTIONS(2252), + [aux_sym_session_type_token1] = ACTIONS(2252), + [aux_sym_set_env_token1] = ACTIONS(2252), + [aux_sym_stdin_null_token1] = ACTIONS(2252), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2252), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2252), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2252), + [aux_sym_syslog_facility_token1] = ACTIONS(2252), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2252), + [aux_sym_keep_alive_token1] = ACTIONS(2252), + [aux_sym_tunnel_token1] = ACTIONS(2254), + [aux_sym_tunnel_device_token1] = ACTIONS(2252), + [aux_sym_update_host_keys_token1] = ACTIONS(2252), + [aux_sym_use_keychain_token1] = ACTIONS(2252), + [aux_sym_use_roaming_token1] = ACTIONS(2252), + [aux_sym_user_token1] = ACTIONS(2254), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2252), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2252), + [aux_sym_visual_host_key_token1] = ACTIONS(2252), + [aux_sym_xauth_location_token1] = ACTIONS(2252), }, [298] = { - [ts_builtin_sym_end] = ACTIONS(2249), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2251), - [anon_sym_DQUOTE] = ACTIONS(2253), - [aux_sym_match_token1] = ACTIONS(2249), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2249), - [aux_sym_address_family_token1] = ACTIONS(2249), - [aux_sym_batch_mode_token1] = ACTIONS(2249), - [aux_sym_bind_address_token1] = ACTIONS(2249), - [aux_sym_bind_interface_token1] = ACTIONS(2249), - [aux_sym_canonical_domains_token1] = ACTIONS(2249), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2249), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2249), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2249), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2249), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2249), - [aux_sym_certificate_file_token1] = ACTIONS(2249), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2249), - [aux_sym_check_host_ip_token1] = ACTIONS(2249), - [aux_sym_ciphers_token1] = ACTIONS(2249), - [aux_sym_cipher_token1] = ACTIONS(2251), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2249), - [aux_sym_compression_token1] = ACTIONS(2249), - [aux_sym_connection_attempts_token1] = ACTIONS(2249), - [aux_sym_connect_timeout_token1] = ACTIONS(2249), - [aux_sym_control_master_token1] = ACTIONS(2249), - [aux_sym_control_path_token1] = ACTIONS(2249), - [aux_sym_control_persist_token1] = ACTIONS(2249), - [aux_sym_dynamic_forward_token1] = ACTIONS(2249), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2249), - [aux_sym_escape_char_token1] = ACTIONS(2249), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2249), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2249), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2249), - [aux_sym_forward_agent_token1] = ACTIONS(2249), - [aux_sym_forward_x11_token1] = ACTIONS(2251), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2249), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2249), - [aux_sym_gateway_ports_token1] = ACTIONS(2249), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2249), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2249), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2249), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2249), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2249), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2249), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2249), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2249), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2249), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2249), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2249), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2249), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2249), - [aux_sym_host_key_alias_token1] = ACTIONS(2249), - [aux_sym_hostname_token1] = ACTIONS(2249), - [aux_sym_identities_only_token1] = ACTIONS(2249), - [aux_sym_identity_agent_token1] = ACTIONS(2249), - [aux_sym_identity_file_token1] = ACTIONS(2249), - [aux_sym_ignore_unknown_token1] = ACTIONS(2249), - [aux_sym_include_token1] = ACTIONS(2249), - [aux_sym_ip_qos_token1] = ACTIONS(2249), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2249), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2249), - [aux_sym_kex_algorithms_token1] = ACTIONS(2249), - [aux_sym_known_hosts_command_token1] = ACTIONS(2249), - [aux_sym_local_command_token1] = ACTIONS(2249), - [aux_sym_local_forward_token1] = ACTIONS(2249), - [aux_sym_log_level_token1] = ACTIONS(2249), - [aux_sym_log_verbose_token1] = ACTIONS(2249), - [aux_sym_macs_token1] = ACTIONS(2249), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2249), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2249), - [aux_sym_password_authentication_token1] = ACTIONS(2249), - [aux_sym_permit_local_command_token1] = ACTIONS(2249), - [aux_sym_permit_remote_open_token1] = ACTIONS(2249), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2249), - [aux_sym_port_token1] = ACTIONS(2249), - [aux_sym_preferred_authentications_token1] = ACTIONS(2249), - [aux_sym_protocol_token1] = ACTIONS(2249), - [aux_sym_proxy_command_token1] = ACTIONS(2249), - [aux_sym_proxy_jump_token1] = ACTIONS(2249), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2249), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2249), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2249), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2249), - [aux_sym_rekey_limit_token1] = ACTIONS(2249), - [aux_sym_remote_command_token1] = ACTIONS(2249), - [aux_sym_remote_forward_token1] = ACTIONS(2249), - [aux_sym_request_tty_token1] = ACTIONS(2249), - [aux_sym_required_rsa_size_token1] = ACTIONS(2249), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2249), - [aux_sym_security_key_provider_token1] = ACTIONS(2249), - [aux_sym_send_env_token1] = ACTIONS(2249), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2249), - [aux_sym_server_alive_interval_token1] = ACTIONS(2249), - [aux_sym_session_type_token1] = ACTIONS(2249), - [aux_sym_set_env_token1] = ACTIONS(2249), - [aux_sym_stdin_null_token1] = ACTIONS(2249), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2249), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2249), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2249), - [aux_sym_syslog_facility_token1] = ACTIONS(2249), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2249), - [aux_sym_keep_alive_token1] = ACTIONS(2249), - [aux_sym_tunnel_token1] = ACTIONS(2251), - [aux_sym_tunnel_device_token1] = ACTIONS(2249), - [aux_sym_update_host_keys_token1] = ACTIONS(2249), - [aux_sym_use_keychain_token1] = ACTIONS(2249), - [aux_sym_use_roaming_token1] = ACTIONS(2249), - [aux_sym_user_token1] = ACTIONS(2251), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2249), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2249), - [aux_sym_visual_host_key_token1] = ACTIONS(2249), - [aux_sym_xauth_location_token1] = ACTIONS(2249), + [ts_builtin_sym_end] = ACTIONS(2256), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2258), + [anon_sym_DQUOTE] = ACTIONS(2260), + [aux_sym_match_token1] = ACTIONS(2256), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2256), + [aux_sym_address_family_token1] = ACTIONS(2256), + [aux_sym_batch_mode_token1] = ACTIONS(2256), + [aux_sym_bind_address_token1] = ACTIONS(2256), + [aux_sym_bind_interface_token1] = ACTIONS(2256), + [aux_sym_canonical_domains_token1] = ACTIONS(2256), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2256), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2256), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2256), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2256), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2256), + [aux_sym_certificate_file_token1] = ACTIONS(2256), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2256), + [aux_sym_check_host_ip_token1] = ACTIONS(2256), + [aux_sym_ciphers_token1] = ACTIONS(2256), + [aux_sym_cipher_token1] = ACTIONS(2258), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2256), + [aux_sym_compression_token1] = ACTIONS(2256), + [aux_sym_connection_attempts_token1] = ACTIONS(2256), + [aux_sym_connect_timeout_token1] = ACTIONS(2256), + [aux_sym_control_master_token1] = ACTIONS(2256), + [aux_sym_control_path_token1] = ACTIONS(2256), + [aux_sym_control_persist_token1] = ACTIONS(2256), + [aux_sym_dynamic_forward_token1] = ACTIONS(2256), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2256), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2256), + [aux_sym_escape_char_token1] = ACTIONS(2256), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2256), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2256), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2256), + [aux_sym_forward_agent_token1] = ACTIONS(2256), + [aux_sym_forward_x11_token1] = ACTIONS(2258), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2256), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2256), + [aux_sym_gateway_ports_token1] = ACTIONS(2256), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2256), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2256), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2256), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2256), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2256), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2256), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2256), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2256), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2256), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2256), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2256), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2256), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2256), + [aux_sym_host_key_alias_token1] = ACTIONS(2256), + [aux_sym_hostname_token1] = ACTIONS(2256), + [aux_sym_identities_only_token1] = ACTIONS(2256), + [aux_sym_identity_agent_token1] = ACTIONS(2256), + [aux_sym_identity_file_token1] = ACTIONS(2256), + [aux_sym_ignore_unknown_token1] = ACTIONS(2256), + [aux_sym_include_token1] = ACTIONS(2256), + [aux_sym_ip_qos_token1] = ACTIONS(2256), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2256), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2256), + [aux_sym_kex_algorithms_token1] = ACTIONS(2256), + [aux_sym_known_hosts_command_token1] = ACTIONS(2256), + [aux_sym_local_command_token1] = ACTIONS(2256), + [aux_sym_local_forward_token1] = ACTIONS(2256), + [aux_sym_log_level_token1] = ACTIONS(2256), + [aux_sym_log_verbose_token1] = ACTIONS(2256), + [aux_sym_macs_token1] = ACTIONS(2256), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2256), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2256), + [aux_sym_password_authentication_token1] = ACTIONS(2256), + [aux_sym_permit_local_command_token1] = ACTIONS(2256), + [aux_sym_permit_remote_open_token1] = ACTIONS(2256), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2256), + [aux_sym_port_token1] = ACTIONS(2256), + [aux_sym_preferred_authentications_token1] = ACTIONS(2256), + [aux_sym_protocol_token1] = ACTIONS(2256), + [aux_sym_proxy_command_token1] = ACTIONS(2256), + [aux_sym_proxy_jump_token1] = ACTIONS(2256), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2256), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2256), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2256), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2256), + [aux_sym_rekey_limit_token1] = ACTIONS(2256), + [aux_sym_remote_command_token1] = ACTIONS(2256), + [aux_sym_remote_forward_token1] = ACTIONS(2256), + [aux_sym_request_tty_token1] = ACTIONS(2256), + [aux_sym_required_rsa_size_token1] = ACTIONS(2256), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2256), + [aux_sym_security_key_provider_token1] = ACTIONS(2256), + [aux_sym_send_env_token1] = ACTIONS(2256), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2256), + [aux_sym_server_alive_interval_token1] = ACTIONS(2256), + [aux_sym_session_type_token1] = ACTIONS(2256), + [aux_sym_set_env_token1] = ACTIONS(2256), + [aux_sym_stdin_null_token1] = ACTIONS(2256), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2256), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2256), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2256), + [aux_sym_syslog_facility_token1] = ACTIONS(2256), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2256), + [aux_sym_keep_alive_token1] = ACTIONS(2256), + [aux_sym_tunnel_token1] = ACTIONS(2258), + [aux_sym_tunnel_device_token1] = ACTIONS(2256), + [aux_sym_update_host_keys_token1] = ACTIONS(2256), + [aux_sym_use_keychain_token1] = ACTIONS(2256), + [aux_sym_use_roaming_token1] = ACTIONS(2256), + [aux_sym_user_token1] = ACTIONS(2258), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2256), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2256), + [aux_sym_visual_host_key_token1] = ACTIONS(2256), + [aux_sym_xauth_location_token1] = ACTIONS(2256), }, [299] = { - [ts_builtin_sym_end] = ACTIONS(2255), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2257), - [anon_sym_DQUOTE] = ACTIONS(2259), - [aux_sym_match_token1] = ACTIONS(2255), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2255), - [aux_sym_address_family_token1] = ACTIONS(2255), - [aux_sym_batch_mode_token1] = ACTIONS(2255), - [aux_sym_bind_address_token1] = ACTIONS(2255), - [aux_sym_bind_interface_token1] = ACTIONS(2255), - [aux_sym_canonical_domains_token1] = ACTIONS(2255), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2255), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2255), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2255), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2255), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2255), - [aux_sym_certificate_file_token1] = ACTIONS(2255), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2255), - [aux_sym_check_host_ip_token1] = ACTIONS(2255), - [aux_sym_ciphers_token1] = ACTIONS(2255), - [aux_sym_cipher_token1] = ACTIONS(2257), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2255), - [aux_sym_compression_token1] = ACTIONS(2255), - [aux_sym_connection_attempts_token1] = ACTIONS(2255), - [aux_sym_connect_timeout_token1] = ACTIONS(2255), - [aux_sym_control_master_token1] = ACTIONS(2255), - [aux_sym_control_path_token1] = ACTIONS(2255), - [aux_sym_control_persist_token1] = ACTIONS(2255), - [aux_sym_dynamic_forward_token1] = ACTIONS(2255), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2255), - [aux_sym_escape_char_token1] = ACTIONS(2255), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2255), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2255), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2255), - [aux_sym_forward_agent_token1] = ACTIONS(2255), - [aux_sym_forward_x11_token1] = ACTIONS(2257), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2255), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2255), - [aux_sym_gateway_ports_token1] = ACTIONS(2255), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2255), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2255), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2255), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2255), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2255), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2255), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2255), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2255), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2255), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2255), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2255), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2255), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2255), - [aux_sym_host_key_alias_token1] = ACTIONS(2255), - [aux_sym_hostname_token1] = ACTIONS(2255), - [aux_sym_identities_only_token1] = ACTIONS(2255), - [aux_sym_identity_agent_token1] = ACTIONS(2255), - [aux_sym_identity_file_token1] = ACTIONS(2255), - [aux_sym_ignore_unknown_token1] = ACTIONS(2255), - [aux_sym_include_token1] = ACTIONS(2255), - [aux_sym_ip_qos_token1] = ACTIONS(2255), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2255), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2255), - [aux_sym_kex_algorithms_token1] = ACTIONS(2255), - [aux_sym_known_hosts_command_token1] = ACTIONS(2255), - [aux_sym_local_command_token1] = ACTIONS(2255), - [aux_sym_local_forward_token1] = ACTIONS(2255), - [aux_sym_log_level_token1] = ACTIONS(2255), - [aux_sym_log_verbose_token1] = ACTIONS(2255), - [aux_sym_macs_token1] = ACTIONS(2255), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2255), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2255), - [aux_sym_password_authentication_token1] = ACTIONS(2255), - [aux_sym_permit_local_command_token1] = ACTIONS(2255), - [aux_sym_permit_remote_open_token1] = ACTIONS(2255), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2255), - [aux_sym_port_token1] = ACTIONS(2255), - [aux_sym_preferred_authentications_token1] = ACTIONS(2255), - [aux_sym_protocol_token1] = ACTIONS(2255), - [aux_sym_proxy_command_token1] = ACTIONS(2255), - [aux_sym_proxy_jump_token1] = ACTIONS(2255), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2255), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2255), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2255), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2255), - [aux_sym_rekey_limit_token1] = ACTIONS(2255), - [aux_sym_remote_command_token1] = ACTIONS(2255), - [aux_sym_remote_forward_token1] = ACTIONS(2255), - [aux_sym_request_tty_token1] = ACTIONS(2255), - [aux_sym_required_rsa_size_token1] = ACTIONS(2255), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2255), - [aux_sym_security_key_provider_token1] = ACTIONS(2255), - [aux_sym_send_env_token1] = ACTIONS(2255), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2255), - [aux_sym_server_alive_interval_token1] = ACTIONS(2255), - [aux_sym_session_type_token1] = ACTIONS(2255), - [aux_sym_set_env_token1] = ACTIONS(2255), - [aux_sym_stdin_null_token1] = ACTIONS(2255), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2255), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2255), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2255), - [aux_sym_syslog_facility_token1] = ACTIONS(2255), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2255), - [aux_sym_keep_alive_token1] = ACTIONS(2255), - [aux_sym_tunnel_token1] = ACTIONS(2257), - [aux_sym_tunnel_device_token1] = ACTIONS(2255), - [aux_sym_update_host_keys_token1] = ACTIONS(2255), - [aux_sym_use_keychain_token1] = ACTIONS(2255), - [aux_sym_use_roaming_token1] = ACTIONS(2255), - [aux_sym_user_token1] = ACTIONS(2257), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2255), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2255), - [aux_sym_visual_host_key_token1] = ACTIONS(2255), - [aux_sym_xauth_location_token1] = ACTIONS(2255), + [ts_builtin_sym_end] = ACTIONS(2262), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2264), + [anon_sym_DQUOTE] = ACTIONS(2262), + [aux_sym_match_token1] = ACTIONS(2262), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2262), + [aux_sym_address_family_token1] = ACTIONS(2262), + [aux_sym_batch_mode_token1] = ACTIONS(2262), + [aux_sym_bind_address_token1] = ACTIONS(2262), + [aux_sym_bind_interface_token1] = ACTIONS(2262), + [aux_sym_canonical_domains_token1] = ACTIONS(2262), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2262), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2262), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2262), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2262), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2262), + [aux_sym_certificate_file_token1] = ACTIONS(2262), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2262), + [aux_sym_check_host_ip_token1] = ACTIONS(2262), + [aux_sym_ciphers_token1] = ACTIONS(2262), + [aux_sym_cipher_token1] = ACTIONS(2264), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2262), + [aux_sym_compression_token1] = ACTIONS(2262), + [aux_sym_connection_attempts_token1] = ACTIONS(2262), + [aux_sym_connect_timeout_token1] = ACTIONS(2262), + [aux_sym_control_master_token1] = ACTIONS(2262), + [aux_sym_control_path_token1] = ACTIONS(2262), + [aux_sym_control_persist_token1] = ACTIONS(2262), + [aux_sym_dynamic_forward_token1] = ACTIONS(2262), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2262), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2262), + [aux_sym_escape_char_token1] = ACTIONS(2262), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2262), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2262), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2262), + [aux_sym_forward_agent_token1] = ACTIONS(2262), + [aux_sym_forward_x11_token1] = ACTIONS(2264), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2262), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2262), + [aux_sym_gateway_ports_token1] = ACTIONS(2262), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2262), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2262), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2262), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2262), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2262), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2262), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2262), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2262), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2262), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2262), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2262), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2262), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2262), + [aux_sym_host_key_alias_token1] = ACTIONS(2262), + [aux_sym_hostname_token1] = ACTIONS(2262), + [aux_sym_identities_only_token1] = ACTIONS(2262), + [aux_sym_identity_agent_token1] = ACTIONS(2262), + [aux_sym_identity_file_token1] = ACTIONS(2262), + [aux_sym_ignore_unknown_token1] = ACTIONS(2262), + [aux_sym_include_token1] = ACTIONS(2262), + [aux_sym_ip_qos_token1] = ACTIONS(2262), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2262), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2262), + [aux_sym_kex_algorithms_token1] = ACTIONS(2262), + [aux_sym_known_hosts_command_token1] = ACTIONS(2262), + [aux_sym_local_command_token1] = ACTIONS(2262), + [aux_sym_local_forward_token1] = ACTIONS(2262), + [aux_sym_log_level_token1] = ACTIONS(2262), + [aux_sym_log_verbose_token1] = ACTIONS(2262), + [aux_sym_macs_token1] = ACTIONS(2262), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2262), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2262), + [aux_sym_password_authentication_token1] = ACTIONS(2262), + [aux_sym_permit_local_command_token1] = ACTIONS(2262), + [aux_sym_permit_remote_open_token1] = ACTIONS(2262), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2262), + [aux_sym_port_token1] = ACTIONS(2262), + [aux_sym_preferred_authentications_token1] = ACTIONS(2262), + [aux_sym_protocol_token1] = ACTIONS(2262), + [aux_sym_proxy_command_token1] = ACTIONS(2262), + [aux_sym_proxy_jump_token1] = ACTIONS(2262), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2262), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2262), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2262), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2262), + [aux_sym_rekey_limit_token1] = ACTIONS(2262), + [aux_sym_remote_command_token1] = ACTIONS(2262), + [aux_sym_remote_forward_token1] = ACTIONS(2262), + [aux_sym_request_tty_token1] = ACTIONS(2262), + [aux_sym_required_rsa_size_token1] = ACTIONS(2262), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2262), + [aux_sym_security_key_provider_token1] = ACTIONS(2262), + [aux_sym_send_env_token1] = ACTIONS(2262), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2262), + [aux_sym_server_alive_interval_token1] = ACTIONS(2262), + [aux_sym_session_type_token1] = ACTIONS(2262), + [aux_sym_set_env_token1] = ACTIONS(2262), + [aux_sym_stdin_null_token1] = ACTIONS(2262), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2262), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2262), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2262), + [aux_sym_syslog_facility_token1] = ACTIONS(2262), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2262), + [aux_sym_keep_alive_token1] = ACTIONS(2262), + [aux_sym_tunnel_token1] = ACTIONS(2264), + [aux_sym_tunnel_device_token1] = ACTIONS(2262), + [aux_sym_update_host_keys_token1] = ACTIONS(2262), + [aux_sym_use_keychain_token1] = ACTIONS(2262), + [aux_sym_use_roaming_token1] = ACTIONS(2262), + [aux_sym_user_token1] = ACTIONS(2264), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2262), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2262), + [aux_sym_visual_host_key_token1] = ACTIONS(2262), + [aux_sym_xauth_location_token1] = ACTIONS(2262), }, [300] = { - [ts_builtin_sym_end] = ACTIONS(2261), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2263), - [anon_sym_DQUOTE] = ACTIONS(2261), - [aux_sym_match_token1] = ACTIONS(2261), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2261), - [aux_sym_address_family_token1] = ACTIONS(2261), - [aux_sym_batch_mode_token1] = ACTIONS(2261), - [aux_sym_bind_address_token1] = ACTIONS(2261), - [aux_sym_bind_interface_token1] = ACTIONS(2261), - [aux_sym_canonical_domains_token1] = ACTIONS(2261), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2261), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2261), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2261), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2261), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2261), - [aux_sym_certificate_file_token1] = ACTIONS(2261), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2261), - [aux_sym_check_host_ip_token1] = ACTIONS(2261), - [aux_sym_ciphers_token1] = ACTIONS(2261), - [aux_sym_cipher_token1] = ACTIONS(2263), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2261), - [aux_sym_compression_token1] = ACTIONS(2261), - [aux_sym_connection_attempts_token1] = ACTIONS(2261), - [aux_sym_connect_timeout_token1] = ACTIONS(2261), - [aux_sym_control_master_token1] = ACTIONS(2261), - [aux_sym_control_path_token1] = ACTIONS(2261), - [aux_sym_control_persist_token1] = ACTIONS(2261), - [aux_sym_dynamic_forward_token1] = ACTIONS(2261), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2261), - [aux_sym_escape_char_token1] = ACTIONS(2261), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2261), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2261), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2261), - [aux_sym_forward_agent_token1] = ACTIONS(2261), - [aux_sym_forward_x11_token1] = ACTIONS(2263), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2261), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2261), - [aux_sym_gateway_ports_token1] = ACTIONS(2261), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2261), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2261), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2261), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2261), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2261), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2261), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2261), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2261), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2261), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2261), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2261), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2261), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2261), - [aux_sym_host_key_alias_token1] = ACTIONS(2261), - [aux_sym_hostname_token1] = ACTIONS(2261), - [aux_sym_identities_only_token1] = ACTIONS(2261), - [aux_sym_identity_agent_token1] = ACTIONS(2261), - [aux_sym_identity_file_token1] = ACTIONS(2261), - [aux_sym_ignore_unknown_token1] = ACTIONS(2261), - [aux_sym_include_token1] = ACTIONS(2261), - [aux_sym_ip_qos_token1] = ACTIONS(2261), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2261), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2261), - [aux_sym_kex_algorithms_token1] = ACTIONS(2261), - [aux_sym_known_hosts_command_token1] = ACTIONS(2261), - [aux_sym_local_command_token1] = ACTIONS(2261), - [aux_sym_local_forward_token1] = ACTIONS(2261), - [aux_sym_log_level_token1] = ACTIONS(2261), - [aux_sym_log_verbose_token1] = ACTIONS(2261), - [aux_sym_macs_token1] = ACTIONS(2261), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2261), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2261), - [aux_sym_password_authentication_token1] = ACTIONS(2261), - [aux_sym_permit_local_command_token1] = ACTIONS(2261), - [aux_sym_permit_remote_open_token1] = ACTIONS(2261), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2261), - [aux_sym_port_token1] = ACTIONS(2261), - [aux_sym_preferred_authentications_token1] = ACTIONS(2261), - [aux_sym_protocol_token1] = ACTIONS(2261), - [aux_sym_proxy_command_token1] = ACTIONS(2261), - [aux_sym_proxy_jump_token1] = ACTIONS(2261), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2261), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2261), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2261), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2261), - [aux_sym_rekey_limit_token1] = ACTIONS(2261), - [aux_sym_remote_command_token1] = ACTIONS(2261), - [aux_sym_remote_forward_token1] = ACTIONS(2261), - [aux_sym_request_tty_token1] = ACTIONS(2261), - [aux_sym_required_rsa_size_token1] = ACTIONS(2261), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2261), - [aux_sym_security_key_provider_token1] = ACTIONS(2261), - [aux_sym_send_env_token1] = ACTIONS(2261), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2261), - [aux_sym_server_alive_interval_token1] = ACTIONS(2261), - [aux_sym_session_type_token1] = ACTIONS(2261), - [aux_sym_set_env_token1] = ACTIONS(2261), - [aux_sym_stdin_null_token1] = ACTIONS(2261), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2261), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2261), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2261), - [aux_sym_syslog_facility_token1] = ACTIONS(2261), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2261), - [aux_sym_keep_alive_token1] = ACTIONS(2261), - [aux_sym_tunnel_token1] = ACTIONS(2263), - [aux_sym_tunnel_device_token1] = ACTIONS(2261), - [aux_sym_update_host_keys_token1] = ACTIONS(2261), - [aux_sym_use_keychain_token1] = ACTIONS(2261), - [aux_sym_use_roaming_token1] = ACTIONS(2261), - [aux_sym_user_token1] = ACTIONS(2263), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2261), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2261), - [aux_sym_visual_host_key_token1] = ACTIONS(2261), - [aux_sym_xauth_location_token1] = ACTIONS(2261), + [ts_builtin_sym_end] = ACTIONS(2266), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2268), + [anon_sym_DQUOTE] = ACTIONS(2270), + [aux_sym_match_token1] = ACTIONS(2266), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2266), + [aux_sym_address_family_token1] = ACTIONS(2266), + [aux_sym_batch_mode_token1] = ACTIONS(2266), + [aux_sym_bind_address_token1] = ACTIONS(2266), + [aux_sym_bind_interface_token1] = ACTIONS(2266), + [aux_sym_canonical_domains_token1] = ACTIONS(2266), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2266), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2266), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2266), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2266), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2266), + [aux_sym_certificate_file_token1] = ACTIONS(2266), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2266), + [aux_sym_check_host_ip_token1] = ACTIONS(2266), + [aux_sym_ciphers_token1] = ACTIONS(2266), + [aux_sym_cipher_token1] = ACTIONS(2268), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2266), + [aux_sym_compression_token1] = ACTIONS(2266), + [aux_sym_connection_attempts_token1] = ACTIONS(2266), + [aux_sym_connect_timeout_token1] = ACTIONS(2266), + [aux_sym_control_master_token1] = ACTIONS(2266), + [aux_sym_control_path_token1] = ACTIONS(2266), + [aux_sym_control_persist_token1] = ACTIONS(2266), + [aux_sym_dynamic_forward_token1] = ACTIONS(2266), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2266), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2266), + [aux_sym_escape_char_token1] = ACTIONS(2266), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2266), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2266), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2266), + [aux_sym_forward_agent_token1] = ACTIONS(2266), + [aux_sym_forward_x11_token1] = ACTIONS(2268), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2266), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2266), + [aux_sym_gateway_ports_token1] = ACTIONS(2266), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2266), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2266), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2266), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2266), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2266), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2266), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2266), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2266), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2266), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2266), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2266), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2266), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2266), + [aux_sym_host_key_alias_token1] = ACTIONS(2266), + [aux_sym_hostname_token1] = ACTIONS(2266), + [aux_sym_identities_only_token1] = ACTIONS(2266), + [aux_sym_identity_agent_token1] = ACTIONS(2266), + [aux_sym_identity_file_token1] = ACTIONS(2266), + [aux_sym_ignore_unknown_token1] = ACTIONS(2266), + [aux_sym_include_token1] = ACTIONS(2266), + [aux_sym_ip_qos_token1] = ACTIONS(2266), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2266), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2266), + [aux_sym_kex_algorithms_token1] = ACTIONS(2266), + [aux_sym_known_hosts_command_token1] = ACTIONS(2266), + [aux_sym_local_command_token1] = ACTIONS(2266), + [aux_sym_local_forward_token1] = ACTIONS(2266), + [aux_sym_log_level_token1] = ACTIONS(2266), + [aux_sym_log_verbose_token1] = ACTIONS(2266), + [aux_sym_macs_token1] = ACTIONS(2266), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2266), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2266), + [aux_sym_password_authentication_token1] = ACTIONS(2266), + [aux_sym_permit_local_command_token1] = ACTIONS(2266), + [aux_sym_permit_remote_open_token1] = ACTIONS(2266), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2266), + [aux_sym_port_token1] = ACTIONS(2266), + [aux_sym_preferred_authentications_token1] = ACTIONS(2266), + [aux_sym_protocol_token1] = ACTIONS(2266), + [aux_sym_proxy_command_token1] = ACTIONS(2266), + [aux_sym_proxy_jump_token1] = ACTIONS(2266), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2266), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2266), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2266), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2266), + [aux_sym_rekey_limit_token1] = ACTIONS(2266), + [aux_sym_remote_command_token1] = ACTIONS(2266), + [aux_sym_remote_forward_token1] = ACTIONS(2266), + [aux_sym_request_tty_token1] = ACTIONS(2266), + [aux_sym_required_rsa_size_token1] = ACTIONS(2266), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2266), + [aux_sym_security_key_provider_token1] = ACTIONS(2266), + [aux_sym_send_env_token1] = ACTIONS(2266), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2266), + [aux_sym_server_alive_interval_token1] = ACTIONS(2266), + [aux_sym_session_type_token1] = ACTIONS(2266), + [aux_sym_set_env_token1] = ACTIONS(2266), + [aux_sym_stdin_null_token1] = ACTIONS(2266), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2266), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2266), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2266), + [aux_sym_syslog_facility_token1] = ACTIONS(2266), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2266), + [aux_sym_keep_alive_token1] = ACTIONS(2266), + [aux_sym_tunnel_token1] = ACTIONS(2268), + [aux_sym_tunnel_device_token1] = ACTIONS(2266), + [aux_sym_update_host_keys_token1] = ACTIONS(2266), + [aux_sym_use_keychain_token1] = ACTIONS(2266), + [aux_sym_use_roaming_token1] = ACTIONS(2266), + [aux_sym_user_token1] = ACTIONS(2268), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2266), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2266), + [aux_sym_visual_host_key_token1] = ACTIONS(2266), + [aux_sym_xauth_location_token1] = ACTIONS(2266), }, [301] = { - [ts_builtin_sym_end] = ACTIONS(2265), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2267), - [anon_sym_DQUOTE] = ACTIONS(2265), - [aux_sym_match_token1] = ACTIONS(2265), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2265), - [aux_sym_address_family_token1] = ACTIONS(2265), - [aux_sym_batch_mode_token1] = ACTIONS(2265), - [aux_sym_bind_address_token1] = ACTIONS(2265), - [aux_sym_bind_interface_token1] = ACTIONS(2265), - [aux_sym_canonical_domains_token1] = ACTIONS(2265), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2265), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2265), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2265), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2265), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2265), - [aux_sym_certificate_file_token1] = ACTIONS(2265), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2265), - [aux_sym_check_host_ip_token1] = ACTIONS(2265), - [aux_sym_ciphers_token1] = ACTIONS(2265), - [aux_sym_cipher_token1] = ACTIONS(2267), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2265), - [aux_sym_compression_token1] = ACTIONS(2265), - [aux_sym_connection_attempts_token1] = ACTIONS(2265), - [aux_sym_connect_timeout_token1] = ACTIONS(2265), - [aux_sym_control_master_token1] = ACTIONS(2265), - [aux_sym_control_path_token1] = ACTIONS(2265), - [aux_sym_control_persist_token1] = ACTIONS(2265), - [aux_sym_dynamic_forward_token1] = ACTIONS(2265), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2265), - [aux_sym_escape_char_token1] = ACTIONS(2265), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2265), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2265), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2265), - [aux_sym_forward_agent_token1] = ACTIONS(2265), - [aux_sym_forward_x11_token1] = ACTIONS(2267), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2265), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2265), - [aux_sym_gateway_ports_token1] = ACTIONS(2265), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2265), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2265), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2265), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2265), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2265), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2265), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2265), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2265), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2265), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2265), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2265), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2265), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2265), - [aux_sym_host_key_alias_token1] = ACTIONS(2265), - [aux_sym_hostname_token1] = ACTIONS(2265), - [aux_sym_identities_only_token1] = ACTIONS(2265), - [aux_sym_identity_agent_token1] = ACTIONS(2265), - [aux_sym_identity_file_token1] = ACTIONS(2265), - [aux_sym_ignore_unknown_token1] = ACTIONS(2265), - [aux_sym_include_token1] = ACTIONS(2265), - [aux_sym_ip_qos_token1] = ACTIONS(2265), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2265), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2265), - [aux_sym_kex_algorithms_token1] = ACTIONS(2265), - [aux_sym_known_hosts_command_token1] = ACTIONS(2265), - [aux_sym_local_command_token1] = ACTIONS(2265), - [aux_sym_local_forward_token1] = ACTIONS(2265), - [aux_sym_log_level_token1] = ACTIONS(2265), - [aux_sym_log_verbose_token1] = ACTIONS(2265), - [aux_sym_macs_token1] = ACTIONS(2265), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2265), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2265), - [aux_sym_password_authentication_token1] = ACTIONS(2265), - [aux_sym_permit_local_command_token1] = ACTIONS(2265), - [aux_sym_permit_remote_open_token1] = ACTIONS(2265), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2265), - [aux_sym_port_token1] = ACTIONS(2265), - [aux_sym_preferred_authentications_token1] = ACTIONS(2265), - [aux_sym_protocol_token1] = ACTIONS(2265), - [aux_sym_proxy_command_token1] = ACTIONS(2265), - [aux_sym_proxy_jump_token1] = ACTIONS(2265), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2265), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2265), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2265), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2265), - [aux_sym_rekey_limit_token1] = ACTIONS(2265), - [aux_sym_remote_command_token1] = ACTIONS(2265), - [aux_sym_remote_forward_token1] = ACTIONS(2265), - [aux_sym_request_tty_token1] = ACTIONS(2265), - [aux_sym_required_rsa_size_token1] = ACTIONS(2265), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2265), - [aux_sym_security_key_provider_token1] = ACTIONS(2265), - [aux_sym_send_env_token1] = ACTIONS(2265), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2265), - [aux_sym_server_alive_interval_token1] = ACTIONS(2265), - [aux_sym_session_type_token1] = ACTIONS(2265), - [aux_sym_set_env_token1] = ACTIONS(2265), - [aux_sym_stdin_null_token1] = ACTIONS(2265), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2265), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2265), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2265), - [aux_sym_syslog_facility_token1] = ACTIONS(2265), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2265), - [aux_sym_keep_alive_token1] = ACTIONS(2265), - [aux_sym_tunnel_token1] = ACTIONS(2267), - [aux_sym_tunnel_device_token1] = ACTIONS(2265), - [aux_sym_update_host_keys_token1] = ACTIONS(2265), - [aux_sym_use_keychain_token1] = ACTIONS(2265), - [aux_sym_use_roaming_token1] = ACTIONS(2265), - [aux_sym_user_token1] = ACTIONS(2267), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2265), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2265), - [aux_sym_visual_host_key_token1] = ACTIONS(2265), - [aux_sym_xauth_location_token1] = ACTIONS(2265), + [ts_builtin_sym_end] = ACTIONS(2272), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2276), + [aux_sym_match_token1] = ACTIONS(2272), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2272), + [aux_sym_address_family_token1] = ACTIONS(2272), + [aux_sym_batch_mode_token1] = ACTIONS(2272), + [aux_sym_bind_address_token1] = ACTIONS(2272), + [aux_sym_bind_interface_token1] = ACTIONS(2272), + [aux_sym_canonical_domains_token1] = ACTIONS(2272), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2272), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2272), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2272), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2272), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2272), + [aux_sym_certificate_file_token1] = ACTIONS(2272), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2272), + [aux_sym_check_host_ip_token1] = ACTIONS(2272), + [aux_sym_ciphers_token1] = ACTIONS(2272), + [aux_sym_cipher_token1] = ACTIONS(2274), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2272), + [aux_sym_compression_token1] = ACTIONS(2272), + [aux_sym_connection_attempts_token1] = ACTIONS(2272), + [aux_sym_connect_timeout_token1] = ACTIONS(2272), + [aux_sym_control_master_token1] = ACTIONS(2272), + [aux_sym_control_path_token1] = ACTIONS(2272), + [aux_sym_control_persist_token1] = ACTIONS(2272), + [aux_sym_dynamic_forward_token1] = ACTIONS(2272), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2272), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2272), + [aux_sym_escape_char_token1] = ACTIONS(2272), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2272), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2272), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2272), + [aux_sym_forward_agent_token1] = ACTIONS(2272), + [aux_sym_forward_x11_token1] = ACTIONS(2274), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2272), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2272), + [aux_sym_gateway_ports_token1] = ACTIONS(2272), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2272), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2272), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2272), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2272), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2272), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2272), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2272), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2272), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2272), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2272), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2272), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2272), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2272), + [aux_sym_host_key_alias_token1] = ACTIONS(2272), + [aux_sym_hostname_token1] = ACTIONS(2272), + [aux_sym_identities_only_token1] = ACTIONS(2272), + [aux_sym_identity_agent_token1] = ACTIONS(2272), + [aux_sym_identity_file_token1] = ACTIONS(2272), + [aux_sym_ignore_unknown_token1] = ACTIONS(2272), + [aux_sym_include_token1] = ACTIONS(2272), + [aux_sym_ip_qos_token1] = ACTIONS(2272), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2272), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2272), + [aux_sym_kex_algorithms_token1] = ACTIONS(2272), + [aux_sym_known_hosts_command_token1] = ACTIONS(2272), + [aux_sym_local_command_token1] = ACTIONS(2272), + [aux_sym_local_forward_token1] = ACTIONS(2272), + [aux_sym_log_level_token1] = ACTIONS(2272), + [aux_sym_log_verbose_token1] = ACTIONS(2272), + [aux_sym_macs_token1] = ACTIONS(2272), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2272), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2272), + [aux_sym_password_authentication_token1] = ACTIONS(2272), + [aux_sym_permit_local_command_token1] = ACTIONS(2272), + [aux_sym_permit_remote_open_token1] = ACTIONS(2272), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2272), + [aux_sym_port_token1] = ACTIONS(2272), + [aux_sym_preferred_authentications_token1] = ACTIONS(2272), + [aux_sym_protocol_token1] = ACTIONS(2272), + [aux_sym_proxy_command_token1] = ACTIONS(2272), + [aux_sym_proxy_jump_token1] = ACTIONS(2272), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2272), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2272), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2272), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2272), + [aux_sym_rekey_limit_token1] = ACTIONS(2272), + [aux_sym_remote_command_token1] = ACTIONS(2272), + [aux_sym_remote_forward_token1] = ACTIONS(2272), + [aux_sym_request_tty_token1] = ACTIONS(2272), + [aux_sym_required_rsa_size_token1] = ACTIONS(2272), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2272), + [aux_sym_security_key_provider_token1] = ACTIONS(2272), + [aux_sym_send_env_token1] = ACTIONS(2272), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2272), + [aux_sym_server_alive_interval_token1] = ACTIONS(2272), + [aux_sym_session_type_token1] = ACTIONS(2272), + [aux_sym_set_env_token1] = ACTIONS(2272), + [aux_sym_stdin_null_token1] = ACTIONS(2272), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2272), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2272), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2272), + [aux_sym_syslog_facility_token1] = ACTIONS(2272), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2272), + [aux_sym_keep_alive_token1] = ACTIONS(2272), + [aux_sym_tunnel_token1] = ACTIONS(2274), + [aux_sym_tunnel_device_token1] = ACTIONS(2272), + [aux_sym_update_host_keys_token1] = ACTIONS(2272), + [aux_sym_use_keychain_token1] = ACTIONS(2272), + [aux_sym_use_roaming_token1] = ACTIONS(2272), + [aux_sym_user_token1] = ACTIONS(2274), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2272), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2272), + [aux_sym_visual_host_key_token1] = ACTIONS(2272), + [aux_sym_xauth_location_token1] = ACTIONS(2272), }, [302] = { - [ts_builtin_sym_end] = ACTIONS(2269), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2271), - [anon_sym_DQUOTE] = ACTIONS(2273), - [aux_sym_match_token1] = ACTIONS(2269), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2269), - [aux_sym_address_family_token1] = ACTIONS(2269), - [aux_sym_batch_mode_token1] = ACTIONS(2269), - [aux_sym_bind_address_token1] = ACTIONS(2269), - [aux_sym_bind_interface_token1] = ACTIONS(2269), - [aux_sym_canonical_domains_token1] = ACTIONS(2269), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2269), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2269), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2269), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2269), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2269), - [aux_sym_certificate_file_token1] = ACTIONS(2269), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2269), - [aux_sym_check_host_ip_token1] = ACTIONS(2269), - [aux_sym_ciphers_token1] = ACTIONS(2269), - [aux_sym_cipher_token1] = ACTIONS(2271), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2269), - [aux_sym_compression_token1] = ACTIONS(2269), - [aux_sym_connection_attempts_token1] = ACTIONS(2269), - [aux_sym_connect_timeout_token1] = ACTIONS(2269), - [aux_sym_control_master_token1] = ACTIONS(2269), - [aux_sym_control_path_token1] = ACTIONS(2269), - [aux_sym_control_persist_token1] = ACTIONS(2269), - [aux_sym_dynamic_forward_token1] = ACTIONS(2269), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2269), - [aux_sym_escape_char_token1] = ACTIONS(2269), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2269), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2269), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2269), - [aux_sym_forward_agent_token1] = ACTIONS(2269), - [aux_sym_forward_x11_token1] = ACTIONS(2271), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2269), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2269), - [aux_sym_gateway_ports_token1] = ACTIONS(2269), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2269), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2269), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2269), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2269), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2269), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2269), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2269), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2269), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2269), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2269), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2269), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2269), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2269), - [aux_sym_host_key_alias_token1] = ACTIONS(2269), - [aux_sym_hostname_token1] = ACTIONS(2269), - [aux_sym_identities_only_token1] = ACTIONS(2269), - [aux_sym_identity_agent_token1] = ACTIONS(2269), - [aux_sym_identity_file_token1] = ACTIONS(2269), - [aux_sym_ignore_unknown_token1] = ACTIONS(2269), - [aux_sym_include_token1] = ACTIONS(2269), - [aux_sym_ip_qos_token1] = ACTIONS(2269), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2269), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2269), - [aux_sym_kex_algorithms_token1] = ACTIONS(2269), - [aux_sym_known_hosts_command_token1] = ACTIONS(2269), - [aux_sym_local_command_token1] = ACTIONS(2269), - [aux_sym_local_forward_token1] = ACTIONS(2269), - [aux_sym_log_level_token1] = ACTIONS(2269), - [aux_sym_log_verbose_token1] = ACTIONS(2269), - [aux_sym_macs_token1] = ACTIONS(2269), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2269), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2269), - [aux_sym_password_authentication_token1] = ACTIONS(2269), - [aux_sym_permit_local_command_token1] = ACTIONS(2269), - [aux_sym_permit_remote_open_token1] = ACTIONS(2269), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2269), - [aux_sym_port_token1] = ACTIONS(2269), - [aux_sym_preferred_authentications_token1] = ACTIONS(2269), - [aux_sym_protocol_token1] = ACTIONS(2269), - [aux_sym_proxy_command_token1] = ACTIONS(2269), - [aux_sym_proxy_jump_token1] = ACTIONS(2269), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2269), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2269), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2269), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2269), - [aux_sym_rekey_limit_token1] = ACTIONS(2269), - [aux_sym_remote_command_token1] = ACTIONS(2269), - [aux_sym_remote_forward_token1] = ACTIONS(2269), - [aux_sym_request_tty_token1] = ACTIONS(2269), - [aux_sym_required_rsa_size_token1] = ACTIONS(2269), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2269), - [aux_sym_security_key_provider_token1] = ACTIONS(2269), - [aux_sym_send_env_token1] = ACTIONS(2269), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2269), - [aux_sym_server_alive_interval_token1] = ACTIONS(2269), - [aux_sym_session_type_token1] = ACTIONS(2269), - [aux_sym_set_env_token1] = ACTIONS(2269), - [aux_sym_stdin_null_token1] = ACTIONS(2269), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2269), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2269), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2269), - [aux_sym_syslog_facility_token1] = ACTIONS(2269), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2269), - [aux_sym_keep_alive_token1] = ACTIONS(2269), - [aux_sym_tunnel_token1] = ACTIONS(2271), - [aux_sym_tunnel_device_token1] = ACTIONS(2269), - [aux_sym_update_host_keys_token1] = ACTIONS(2269), - [aux_sym_use_keychain_token1] = ACTIONS(2269), - [aux_sym_use_roaming_token1] = ACTIONS(2269), - [aux_sym_user_token1] = ACTIONS(2271), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2269), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2269), - [aux_sym_visual_host_key_token1] = ACTIONS(2269), - [aux_sym_xauth_location_token1] = ACTIONS(2269), + [ts_builtin_sym_end] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2280), + [anon_sym_DQUOTE] = ACTIONS(2278), + [aux_sym_match_token1] = ACTIONS(2278), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2278), + [aux_sym_address_family_token1] = ACTIONS(2278), + [aux_sym_batch_mode_token1] = ACTIONS(2278), + [aux_sym_bind_address_token1] = ACTIONS(2278), + [aux_sym_bind_interface_token1] = ACTIONS(2278), + [aux_sym_canonical_domains_token1] = ACTIONS(2278), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2278), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2278), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2278), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2278), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2278), + [aux_sym_certificate_file_token1] = ACTIONS(2278), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2278), + [aux_sym_check_host_ip_token1] = ACTIONS(2278), + [aux_sym_ciphers_token1] = ACTIONS(2278), + [aux_sym_cipher_token1] = ACTIONS(2280), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2278), + [aux_sym_compression_token1] = ACTIONS(2278), + [aux_sym_connection_attempts_token1] = ACTIONS(2278), + [aux_sym_connect_timeout_token1] = ACTIONS(2278), + [aux_sym_control_master_token1] = ACTIONS(2278), + [aux_sym_control_path_token1] = ACTIONS(2278), + [aux_sym_control_persist_token1] = ACTIONS(2278), + [aux_sym_dynamic_forward_token1] = ACTIONS(2278), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2278), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2278), + [aux_sym_escape_char_token1] = ACTIONS(2278), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2278), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2278), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2278), + [aux_sym_forward_agent_token1] = ACTIONS(2278), + [aux_sym_forward_x11_token1] = ACTIONS(2280), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2278), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2278), + [aux_sym_gateway_ports_token1] = ACTIONS(2278), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2278), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2278), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2278), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2278), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2278), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2278), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2278), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2278), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2278), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2278), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2278), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2278), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2278), + [aux_sym_host_key_alias_token1] = ACTIONS(2278), + [aux_sym_hostname_token1] = ACTIONS(2278), + [aux_sym_identities_only_token1] = ACTIONS(2278), + [aux_sym_identity_agent_token1] = ACTIONS(2278), + [aux_sym_identity_file_token1] = ACTIONS(2278), + [aux_sym_ignore_unknown_token1] = ACTIONS(2278), + [aux_sym_include_token1] = ACTIONS(2278), + [aux_sym_ip_qos_token1] = ACTIONS(2278), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2278), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2278), + [aux_sym_kex_algorithms_token1] = ACTIONS(2278), + [aux_sym_known_hosts_command_token1] = ACTIONS(2278), + [aux_sym_local_command_token1] = ACTIONS(2278), + [aux_sym_local_forward_token1] = ACTIONS(2278), + [aux_sym_log_level_token1] = ACTIONS(2278), + [aux_sym_log_verbose_token1] = ACTIONS(2278), + [aux_sym_macs_token1] = ACTIONS(2278), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2278), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2278), + [aux_sym_password_authentication_token1] = ACTIONS(2278), + [aux_sym_permit_local_command_token1] = ACTIONS(2278), + [aux_sym_permit_remote_open_token1] = ACTIONS(2278), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2278), + [aux_sym_port_token1] = ACTIONS(2278), + [aux_sym_preferred_authentications_token1] = ACTIONS(2278), + [aux_sym_protocol_token1] = ACTIONS(2278), + [aux_sym_proxy_command_token1] = ACTIONS(2278), + [aux_sym_proxy_jump_token1] = ACTIONS(2278), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2278), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2278), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2278), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2278), + [aux_sym_rekey_limit_token1] = ACTIONS(2278), + [aux_sym_remote_command_token1] = ACTIONS(2278), + [aux_sym_remote_forward_token1] = ACTIONS(2278), + [aux_sym_request_tty_token1] = ACTIONS(2278), + [aux_sym_required_rsa_size_token1] = ACTIONS(2278), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2278), + [aux_sym_security_key_provider_token1] = ACTIONS(2278), + [aux_sym_send_env_token1] = ACTIONS(2278), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2278), + [aux_sym_server_alive_interval_token1] = ACTIONS(2278), + [aux_sym_session_type_token1] = ACTIONS(2278), + [aux_sym_set_env_token1] = ACTIONS(2278), + [aux_sym_stdin_null_token1] = ACTIONS(2278), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2278), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2278), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2278), + [aux_sym_syslog_facility_token1] = ACTIONS(2278), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2278), + [aux_sym_keep_alive_token1] = ACTIONS(2278), + [aux_sym_tunnel_token1] = ACTIONS(2280), + [aux_sym_tunnel_device_token1] = ACTIONS(2278), + [aux_sym_update_host_keys_token1] = ACTIONS(2278), + [aux_sym_use_keychain_token1] = ACTIONS(2278), + [aux_sym_use_roaming_token1] = ACTIONS(2278), + [aux_sym_user_token1] = ACTIONS(2280), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2278), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2278), + [aux_sym_visual_host_key_token1] = ACTIONS(2278), + [aux_sym_xauth_location_token1] = ACTIONS(2278), }, [303] = { - [ts_builtin_sym_end] = ACTIONS(2275), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2277), - [anon_sym_DQUOTE] = ACTIONS(2279), - [aux_sym_match_token1] = ACTIONS(2275), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2275), - [aux_sym_address_family_token1] = ACTIONS(2275), - [aux_sym_batch_mode_token1] = ACTIONS(2275), - [aux_sym_bind_address_token1] = ACTIONS(2275), - [aux_sym_bind_interface_token1] = ACTIONS(2275), - [aux_sym_canonical_domains_token1] = ACTIONS(2275), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2275), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2275), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2275), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2275), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2275), - [aux_sym_certificate_file_token1] = ACTIONS(2275), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2275), - [aux_sym_check_host_ip_token1] = ACTIONS(2275), - [aux_sym_ciphers_token1] = ACTIONS(2275), - [aux_sym_cipher_token1] = ACTIONS(2277), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2275), - [aux_sym_compression_token1] = ACTIONS(2275), - [aux_sym_connection_attempts_token1] = ACTIONS(2275), - [aux_sym_connect_timeout_token1] = ACTIONS(2275), - [aux_sym_control_master_token1] = ACTIONS(2275), - [aux_sym_control_path_token1] = ACTIONS(2275), - [aux_sym_control_persist_token1] = ACTIONS(2275), - [aux_sym_dynamic_forward_token1] = ACTIONS(2275), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2275), - [aux_sym_escape_char_token1] = ACTIONS(2275), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2275), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2275), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2275), - [aux_sym_forward_agent_token1] = ACTIONS(2275), - [aux_sym_forward_x11_token1] = ACTIONS(2277), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2275), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2275), - [aux_sym_gateway_ports_token1] = ACTIONS(2275), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2275), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2275), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2275), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2275), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2275), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2275), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2275), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2275), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2275), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2275), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2275), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2275), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2275), - [aux_sym_host_key_alias_token1] = ACTIONS(2275), - [aux_sym_hostname_token1] = ACTIONS(2275), - [aux_sym_identities_only_token1] = ACTIONS(2275), - [aux_sym_identity_agent_token1] = ACTIONS(2275), - [aux_sym_identity_file_token1] = ACTIONS(2275), - [aux_sym_ignore_unknown_token1] = ACTIONS(2275), - [aux_sym_include_token1] = ACTIONS(2275), - [aux_sym_ip_qos_token1] = ACTIONS(2275), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2275), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2275), - [aux_sym_kex_algorithms_token1] = ACTIONS(2275), - [aux_sym_known_hosts_command_token1] = ACTIONS(2275), - [aux_sym_local_command_token1] = ACTIONS(2275), - [aux_sym_local_forward_token1] = ACTIONS(2275), - [aux_sym_log_level_token1] = ACTIONS(2275), - [aux_sym_log_verbose_token1] = ACTIONS(2275), - [aux_sym_macs_token1] = ACTIONS(2275), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2275), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2275), - [aux_sym_password_authentication_token1] = ACTIONS(2275), - [aux_sym_permit_local_command_token1] = ACTIONS(2275), - [aux_sym_permit_remote_open_token1] = ACTIONS(2275), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2275), - [aux_sym_port_token1] = ACTIONS(2275), - [aux_sym_preferred_authentications_token1] = ACTIONS(2275), - [aux_sym_protocol_token1] = ACTIONS(2275), - [aux_sym_proxy_command_token1] = ACTIONS(2275), - [aux_sym_proxy_jump_token1] = ACTIONS(2275), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2275), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2275), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2275), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2275), - [aux_sym_rekey_limit_token1] = ACTIONS(2275), - [aux_sym_remote_command_token1] = ACTIONS(2275), - [aux_sym_remote_forward_token1] = ACTIONS(2275), - [aux_sym_request_tty_token1] = ACTIONS(2275), - [aux_sym_required_rsa_size_token1] = ACTIONS(2275), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2275), - [aux_sym_security_key_provider_token1] = ACTIONS(2275), - [aux_sym_send_env_token1] = ACTIONS(2275), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2275), - [aux_sym_server_alive_interval_token1] = ACTIONS(2275), - [aux_sym_session_type_token1] = ACTIONS(2275), - [aux_sym_set_env_token1] = ACTIONS(2275), - [aux_sym_stdin_null_token1] = ACTIONS(2275), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2275), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2275), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2275), - [aux_sym_syslog_facility_token1] = ACTIONS(2275), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2275), - [aux_sym_keep_alive_token1] = ACTIONS(2275), - [aux_sym_tunnel_token1] = ACTIONS(2277), - [aux_sym_tunnel_device_token1] = ACTIONS(2275), - [aux_sym_update_host_keys_token1] = ACTIONS(2275), - [aux_sym_use_keychain_token1] = ACTIONS(2275), - [aux_sym_use_roaming_token1] = ACTIONS(2275), - [aux_sym_user_token1] = ACTIONS(2277), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2275), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2275), - [aux_sym_visual_host_key_token1] = ACTIONS(2275), - [aux_sym_xauth_location_token1] = ACTIONS(2275), + [ts_builtin_sym_end] = ACTIONS(2282), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2284), + [anon_sym_DQUOTE] = ACTIONS(2282), + [aux_sym_match_token1] = ACTIONS(2282), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2282), + [aux_sym_address_family_token1] = ACTIONS(2282), + [aux_sym_batch_mode_token1] = ACTIONS(2282), + [aux_sym_bind_address_token1] = ACTIONS(2282), + [aux_sym_bind_interface_token1] = ACTIONS(2282), + [aux_sym_canonical_domains_token1] = ACTIONS(2282), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2282), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2282), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2282), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2282), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2282), + [aux_sym_certificate_file_token1] = ACTIONS(2282), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2282), + [aux_sym_check_host_ip_token1] = ACTIONS(2282), + [aux_sym_ciphers_token1] = ACTIONS(2282), + [aux_sym_cipher_token1] = ACTIONS(2284), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2282), + [aux_sym_compression_token1] = ACTIONS(2282), + [aux_sym_connection_attempts_token1] = ACTIONS(2282), + [aux_sym_connect_timeout_token1] = ACTIONS(2282), + [aux_sym_control_master_token1] = ACTIONS(2282), + [aux_sym_control_path_token1] = ACTIONS(2282), + [aux_sym_control_persist_token1] = ACTIONS(2282), + [aux_sym_dynamic_forward_token1] = ACTIONS(2282), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2282), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2282), + [aux_sym_escape_char_token1] = ACTIONS(2282), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2282), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2282), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2282), + [aux_sym_forward_agent_token1] = ACTIONS(2282), + [aux_sym_forward_x11_token1] = ACTIONS(2284), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2282), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2282), + [aux_sym_gateway_ports_token1] = ACTIONS(2282), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2282), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2282), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2282), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2282), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2282), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2282), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2282), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2282), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2282), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2282), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2282), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2282), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2282), + [aux_sym_host_key_alias_token1] = ACTIONS(2282), + [aux_sym_hostname_token1] = ACTIONS(2282), + [aux_sym_identities_only_token1] = ACTIONS(2282), + [aux_sym_identity_agent_token1] = ACTIONS(2282), + [aux_sym_identity_file_token1] = ACTIONS(2282), + [aux_sym_ignore_unknown_token1] = ACTIONS(2282), + [aux_sym_include_token1] = ACTIONS(2282), + [aux_sym_ip_qos_token1] = ACTIONS(2282), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2282), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2282), + [aux_sym_kex_algorithms_token1] = ACTIONS(2282), + [aux_sym_known_hosts_command_token1] = ACTIONS(2282), + [aux_sym_local_command_token1] = ACTIONS(2282), + [aux_sym_local_forward_token1] = ACTIONS(2282), + [aux_sym_log_level_token1] = ACTIONS(2282), + [aux_sym_log_verbose_token1] = ACTIONS(2282), + [aux_sym_macs_token1] = ACTIONS(2282), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2282), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2282), + [aux_sym_password_authentication_token1] = ACTIONS(2282), + [aux_sym_permit_local_command_token1] = ACTIONS(2282), + [aux_sym_permit_remote_open_token1] = ACTIONS(2282), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2282), + [aux_sym_port_token1] = ACTIONS(2282), + [aux_sym_preferred_authentications_token1] = ACTIONS(2282), + [aux_sym_protocol_token1] = ACTIONS(2282), + [aux_sym_proxy_command_token1] = ACTIONS(2282), + [aux_sym_proxy_jump_token1] = ACTIONS(2282), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2282), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2282), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2282), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2282), + [aux_sym_rekey_limit_token1] = ACTIONS(2282), + [aux_sym_remote_command_token1] = ACTIONS(2282), + [aux_sym_remote_forward_token1] = ACTIONS(2282), + [aux_sym_request_tty_token1] = ACTIONS(2282), + [aux_sym_required_rsa_size_token1] = ACTIONS(2282), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2282), + [aux_sym_security_key_provider_token1] = ACTIONS(2282), + [aux_sym_send_env_token1] = ACTIONS(2282), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2282), + [aux_sym_server_alive_interval_token1] = ACTIONS(2282), + [aux_sym_session_type_token1] = ACTIONS(2282), + [aux_sym_set_env_token1] = ACTIONS(2282), + [aux_sym_stdin_null_token1] = ACTIONS(2282), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2282), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2282), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2282), + [aux_sym_syslog_facility_token1] = ACTIONS(2282), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2282), + [aux_sym_keep_alive_token1] = ACTIONS(2282), + [aux_sym_tunnel_token1] = ACTIONS(2284), + [aux_sym_tunnel_device_token1] = ACTIONS(2282), + [aux_sym_update_host_keys_token1] = ACTIONS(2282), + [aux_sym_use_keychain_token1] = ACTIONS(2282), + [aux_sym_use_roaming_token1] = ACTIONS(2282), + [aux_sym_user_token1] = ACTIONS(2284), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2282), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2282), + [aux_sym_visual_host_key_token1] = ACTIONS(2282), + [aux_sym_xauth_location_token1] = ACTIONS(2282), }, [304] = { - [ts_builtin_sym_end] = ACTIONS(2281), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2283), - [anon_sym_DQUOTE] = ACTIONS(2281), - [aux_sym_match_token1] = ACTIONS(2281), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2281), - [aux_sym_address_family_token1] = ACTIONS(2281), - [aux_sym_batch_mode_token1] = ACTIONS(2281), - [aux_sym_bind_address_token1] = ACTIONS(2281), - [aux_sym_bind_interface_token1] = ACTIONS(2281), - [aux_sym_canonical_domains_token1] = ACTIONS(2281), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2281), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2281), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2281), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2281), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2281), - [aux_sym_certificate_file_token1] = ACTIONS(2281), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2281), - [aux_sym_check_host_ip_token1] = ACTIONS(2281), - [aux_sym_ciphers_token1] = ACTIONS(2281), - [aux_sym_cipher_token1] = ACTIONS(2283), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2281), - [aux_sym_compression_token1] = ACTIONS(2281), - [aux_sym_connection_attempts_token1] = ACTIONS(2281), - [aux_sym_connect_timeout_token1] = ACTIONS(2281), - [aux_sym_control_master_token1] = ACTIONS(2281), - [aux_sym_control_path_token1] = ACTIONS(2281), - [aux_sym_control_persist_token1] = ACTIONS(2281), - [aux_sym_dynamic_forward_token1] = ACTIONS(2281), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2281), - [aux_sym_escape_char_token1] = ACTIONS(2281), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2281), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2281), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2281), - [aux_sym_forward_agent_token1] = ACTIONS(2281), - [aux_sym_forward_x11_token1] = ACTIONS(2283), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2281), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2281), - [aux_sym_gateway_ports_token1] = ACTIONS(2281), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2281), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2281), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2281), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2281), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2281), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2281), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2281), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2281), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2281), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2281), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2281), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2281), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2281), - [aux_sym_host_key_alias_token1] = ACTIONS(2281), - [aux_sym_hostname_token1] = ACTIONS(2281), - [aux_sym_identities_only_token1] = ACTIONS(2281), - [aux_sym_identity_agent_token1] = ACTIONS(2281), - [aux_sym_identity_file_token1] = ACTIONS(2281), - [aux_sym_ignore_unknown_token1] = ACTIONS(2281), - [aux_sym_include_token1] = ACTIONS(2281), - [aux_sym_ip_qos_token1] = ACTIONS(2281), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2281), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2281), - [aux_sym_kex_algorithms_token1] = ACTIONS(2281), - [aux_sym_known_hosts_command_token1] = ACTIONS(2281), - [aux_sym_local_command_token1] = ACTIONS(2281), - [aux_sym_local_forward_token1] = ACTIONS(2281), - [aux_sym_log_level_token1] = ACTIONS(2281), - [aux_sym_log_verbose_token1] = ACTIONS(2281), - [aux_sym_macs_token1] = ACTIONS(2281), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2281), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2281), - [aux_sym_password_authentication_token1] = ACTIONS(2281), - [aux_sym_permit_local_command_token1] = ACTIONS(2281), - [aux_sym_permit_remote_open_token1] = ACTIONS(2281), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2281), - [aux_sym_port_token1] = ACTIONS(2281), - [aux_sym_preferred_authentications_token1] = ACTIONS(2281), - [aux_sym_protocol_token1] = ACTIONS(2281), - [aux_sym_proxy_command_token1] = ACTIONS(2281), - [aux_sym_proxy_jump_token1] = ACTIONS(2281), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2281), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2281), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2281), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2281), - [aux_sym_rekey_limit_token1] = ACTIONS(2281), - [aux_sym_remote_command_token1] = ACTIONS(2281), - [aux_sym_remote_forward_token1] = ACTIONS(2281), - [aux_sym_request_tty_token1] = ACTIONS(2281), - [aux_sym_required_rsa_size_token1] = ACTIONS(2281), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2281), - [aux_sym_security_key_provider_token1] = ACTIONS(2281), - [aux_sym_send_env_token1] = ACTIONS(2281), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2281), - [aux_sym_server_alive_interval_token1] = ACTIONS(2281), - [aux_sym_session_type_token1] = ACTIONS(2281), - [aux_sym_set_env_token1] = ACTIONS(2281), - [aux_sym_stdin_null_token1] = ACTIONS(2281), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2281), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2281), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2281), - [aux_sym_syslog_facility_token1] = ACTIONS(2281), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2281), - [aux_sym_keep_alive_token1] = ACTIONS(2281), - [aux_sym_tunnel_token1] = ACTIONS(2283), - [aux_sym_tunnel_device_token1] = ACTIONS(2281), - [aux_sym_update_host_keys_token1] = ACTIONS(2281), - [aux_sym_use_keychain_token1] = ACTIONS(2281), - [aux_sym_use_roaming_token1] = ACTIONS(2281), - [aux_sym_user_token1] = ACTIONS(2283), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2281), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2281), - [aux_sym_visual_host_key_token1] = ACTIONS(2281), - [aux_sym_xauth_location_token1] = ACTIONS(2281), + [ts_builtin_sym_end] = ACTIONS(2286), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2290), + [aux_sym_match_token1] = ACTIONS(2286), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2286), + [aux_sym_address_family_token1] = ACTIONS(2286), + [aux_sym_batch_mode_token1] = ACTIONS(2286), + [aux_sym_bind_address_token1] = ACTIONS(2286), + [aux_sym_bind_interface_token1] = ACTIONS(2286), + [aux_sym_canonical_domains_token1] = ACTIONS(2286), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2286), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2286), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2286), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2286), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2286), + [aux_sym_certificate_file_token1] = ACTIONS(2286), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2286), + [aux_sym_check_host_ip_token1] = ACTIONS(2286), + [aux_sym_ciphers_token1] = ACTIONS(2286), + [aux_sym_cipher_token1] = ACTIONS(2288), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2286), + [aux_sym_compression_token1] = ACTIONS(2286), + [aux_sym_connection_attempts_token1] = ACTIONS(2286), + [aux_sym_connect_timeout_token1] = ACTIONS(2286), + [aux_sym_control_master_token1] = ACTIONS(2286), + [aux_sym_control_path_token1] = ACTIONS(2286), + [aux_sym_control_persist_token1] = ACTIONS(2286), + [aux_sym_dynamic_forward_token1] = ACTIONS(2286), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2286), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2286), + [aux_sym_escape_char_token1] = ACTIONS(2286), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2286), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2286), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2286), + [aux_sym_forward_agent_token1] = ACTIONS(2286), + [aux_sym_forward_x11_token1] = ACTIONS(2288), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2286), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2286), + [aux_sym_gateway_ports_token1] = ACTIONS(2286), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2286), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2286), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2286), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2286), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2286), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2286), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2286), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2286), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2286), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2286), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2286), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2286), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2286), + [aux_sym_host_key_alias_token1] = ACTIONS(2286), + [aux_sym_hostname_token1] = ACTIONS(2286), + [aux_sym_identities_only_token1] = ACTIONS(2286), + [aux_sym_identity_agent_token1] = ACTIONS(2286), + [aux_sym_identity_file_token1] = ACTIONS(2286), + [aux_sym_ignore_unknown_token1] = ACTIONS(2286), + [aux_sym_include_token1] = ACTIONS(2286), + [aux_sym_ip_qos_token1] = ACTIONS(2286), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2286), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2286), + [aux_sym_kex_algorithms_token1] = ACTIONS(2286), + [aux_sym_known_hosts_command_token1] = ACTIONS(2286), + [aux_sym_local_command_token1] = ACTIONS(2286), + [aux_sym_local_forward_token1] = ACTIONS(2286), + [aux_sym_log_level_token1] = ACTIONS(2286), + [aux_sym_log_verbose_token1] = ACTIONS(2286), + [aux_sym_macs_token1] = ACTIONS(2286), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2286), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2286), + [aux_sym_password_authentication_token1] = ACTIONS(2286), + [aux_sym_permit_local_command_token1] = ACTIONS(2286), + [aux_sym_permit_remote_open_token1] = ACTIONS(2286), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2286), + [aux_sym_port_token1] = ACTIONS(2286), + [aux_sym_preferred_authentications_token1] = ACTIONS(2286), + [aux_sym_protocol_token1] = ACTIONS(2286), + [aux_sym_proxy_command_token1] = ACTIONS(2286), + [aux_sym_proxy_jump_token1] = ACTIONS(2286), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2286), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2286), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2286), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2286), + [aux_sym_rekey_limit_token1] = ACTIONS(2286), + [aux_sym_remote_command_token1] = ACTIONS(2286), + [aux_sym_remote_forward_token1] = ACTIONS(2286), + [aux_sym_request_tty_token1] = ACTIONS(2286), + [aux_sym_required_rsa_size_token1] = ACTIONS(2286), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2286), + [aux_sym_security_key_provider_token1] = ACTIONS(2286), + [aux_sym_send_env_token1] = ACTIONS(2286), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2286), + [aux_sym_server_alive_interval_token1] = ACTIONS(2286), + [aux_sym_session_type_token1] = ACTIONS(2286), + [aux_sym_set_env_token1] = ACTIONS(2286), + [aux_sym_stdin_null_token1] = ACTIONS(2286), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2286), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2286), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2286), + [aux_sym_syslog_facility_token1] = ACTIONS(2286), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2286), + [aux_sym_keep_alive_token1] = ACTIONS(2286), + [aux_sym_tunnel_token1] = ACTIONS(2288), + [aux_sym_tunnel_device_token1] = ACTIONS(2286), + [aux_sym_update_host_keys_token1] = ACTIONS(2286), + [aux_sym_use_keychain_token1] = ACTIONS(2286), + [aux_sym_use_roaming_token1] = ACTIONS(2286), + [aux_sym_user_token1] = ACTIONS(2288), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2286), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2286), + [aux_sym_visual_host_key_token1] = ACTIONS(2286), + [aux_sym_xauth_location_token1] = ACTIONS(2286), }, [305] = { - [ts_builtin_sym_end] = ACTIONS(2285), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(2285), - [aux_sym_match_token1] = ACTIONS(2285), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2285), - [aux_sym_address_family_token1] = ACTIONS(2285), - [aux_sym_batch_mode_token1] = ACTIONS(2285), - [aux_sym_bind_address_token1] = ACTIONS(2285), - [aux_sym_bind_interface_token1] = ACTIONS(2285), - [aux_sym_canonical_domains_token1] = ACTIONS(2285), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2285), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2285), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2285), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2285), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2285), - [aux_sym_certificate_file_token1] = ACTIONS(2285), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2285), - [aux_sym_check_host_ip_token1] = ACTIONS(2285), - [aux_sym_ciphers_token1] = ACTIONS(2285), - [aux_sym_cipher_token1] = ACTIONS(2287), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2285), - [aux_sym_compression_token1] = ACTIONS(2285), - [aux_sym_connection_attempts_token1] = ACTIONS(2285), - [aux_sym_connect_timeout_token1] = ACTIONS(2285), - [aux_sym_control_master_token1] = ACTIONS(2285), - [aux_sym_control_path_token1] = ACTIONS(2285), - [aux_sym_control_persist_token1] = ACTIONS(2285), - [aux_sym_dynamic_forward_token1] = ACTIONS(2285), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2285), - [aux_sym_escape_char_token1] = ACTIONS(2285), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2285), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2285), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2285), - [aux_sym_forward_agent_token1] = ACTIONS(2285), - [aux_sym_forward_x11_token1] = ACTIONS(2287), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2285), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2285), - [aux_sym_gateway_ports_token1] = ACTIONS(2285), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2285), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2285), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2285), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2285), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2285), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2285), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2285), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2285), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2285), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2285), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2285), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2285), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2285), - [aux_sym_host_key_alias_token1] = ACTIONS(2285), - [aux_sym_hostname_token1] = ACTIONS(2285), - [aux_sym_identities_only_token1] = ACTIONS(2285), - [aux_sym_identity_agent_token1] = ACTIONS(2285), - [aux_sym_identity_file_token1] = ACTIONS(2285), - [aux_sym_ignore_unknown_token1] = ACTIONS(2285), - [aux_sym_include_token1] = ACTIONS(2285), - [aux_sym_ip_qos_token1] = ACTIONS(2285), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2285), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2285), - [aux_sym_kex_algorithms_token1] = ACTIONS(2285), - [aux_sym_known_hosts_command_token1] = ACTIONS(2285), - [aux_sym_local_command_token1] = ACTIONS(2285), - [aux_sym_local_forward_token1] = ACTIONS(2285), - [aux_sym_log_level_token1] = ACTIONS(2285), - [aux_sym_log_verbose_token1] = ACTIONS(2285), - [aux_sym_macs_token1] = ACTIONS(2285), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2285), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2285), - [aux_sym_password_authentication_token1] = ACTIONS(2285), - [aux_sym_permit_local_command_token1] = ACTIONS(2285), - [aux_sym_permit_remote_open_token1] = ACTIONS(2285), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2285), - [aux_sym_port_token1] = ACTIONS(2285), - [aux_sym_preferred_authentications_token1] = ACTIONS(2285), - [aux_sym_protocol_token1] = ACTIONS(2285), - [aux_sym_proxy_command_token1] = ACTIONS(2285), - [aux_sym_proxy_jump_token1] = ACTIONS(2285), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2285), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2285), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2285), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2285), - [aux_sym_rekey_limit_token1] = ACTIONS(2285), - [aux_sym_remote_command_token1] = ACTIONS(2285), - [aux_sym_remote_forward_token1] = ACTIONS(2285), - [aux_sym_request_tty_token1] = ACTIONS(2285), - [aux_sym_required_rsa_size_token1] = ACTIONS(2285), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2285), - [aux_sym_security_key_provider_token1] = ACTIONS(2285), - [aux_sym_send_env_token1] = ACTIONS(2285), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2285), - [aux_sym_server_alive_interval_token1] = ACTIONS(2285), - [aux_sym_session_type_token1] = ACTIONS(2285), - [aux_sym_set_env_token1] = ACTIONS(2285), - [aux_sym_stdin_null_token1] = ACTIONS(2285), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2285), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2285), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2285), - [aux_sym_syslog_facility_token1] = ACTIONS(2285), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2285), - [aux_sym_keep_alive_token1] = ACTIONS(2285), - [aux_sym_tunnel_token1] = ACTIONS(2287), - [aux_sym_tunnel_device_token1] = ACTIONS(2285), - [aux_sym_update_host_keys_token1] = ACTIONS(2285), - [aux_sym_use_keychain_token1] = ACTIONS(2285), - [aux_sym_use_roaming_token1] = ACTIONS(2285), - [aux_sym_user_token1] = ACTIONS(2287), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2285), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2285), - [aux_sym_visual_host_key_token1] = ACTIONS(2285), - [aux_sym_xauth_location_token1] = ACTIONS(2285), + [ts_builtin_sym_end] = ACTIONS(2292), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2296), + [aux_sym_match_token1] = ACTIONS(2292), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2292), + [aux_sym_address_family_token1] = ACTIONS(2292), + [aux_sym_batch_mode_token1] = ACTIONS(2292), + [aux_sym_bind_address_token1] = ACTIONS(2292), + [aux_sym_bind_interface_token1] = ACTIONS(2292), + [aux_sym_canonical_domains_token1] = ACTIONS(2292), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2292), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2292), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2292), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2292), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2292), + [aux_sym_certificate_file_token1] = ACTIONS(2292), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2292), + [aux_sym_check_host_ip_token1] = ACTIONS(2292), + [aux_sym_ciphers_token1] = ACTIONS(2292), + [aux_sym_cipher_token1] = ACTIONS(2294), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2292), + [aux_sym_compression_token1] = ACTIONS(2292), + [aux_sym_connection_attempts_token1] = ACTIONS(2292), + [aux_sym_connect_timeout_token1] = ACTIONS(2292), + [aux_sym_control_master_token1] = ACTIONS(2292), + [aux_sym_control_path_token1] = ACTIONS(2292), + [aux_sym_control_persist_token1] = ACTIONS(2292), + [aux_sym_dynamic_forward_token1] = ACTIONS(2292), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2292), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2292), + [aux_sym_escape_char_token1] = ACTIONS(2292), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2292), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2292), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2292), + [aux_sym_forward_agent_token1] = ACTIONS(2292), + [aux_sym_forward_x11_token1] = ACTIONS(2294), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2292), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2292), + [aux_sym_gateway_ports_token1] = ACTIONS(2292), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2292), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2292), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2292), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2292), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2292), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2292), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2292), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2292), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2292), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2292), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2292), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2292), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2292), + [aux_sym_host_key_alias_token1] = ACTIONS(2292), + [aux_sym_hostname_token1] = ACTIONS(2292), + [aux_sym_identities_only_token1] = ACTIONS(2292), + [aux_sym_identity_agent_token1] = ACTIONS(2292), + [aux_sym_identity_file_token1] = ACTIONS(2292), + [aux_sym_ignore_unknown_token1] = ACTIONS(2292), + [aux_sym_include_token1] = ACTIONS(2292), + [aux_sym_ip_qos_token1] = ACTIONS(2292), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2292), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2292), + [aux_sym_kex_algorithms_token1] = ACTIONS(2292), + [aux_sym_known_hosts_command_token1] = ACTIONS(2292), + [aux_sym_local_command_token1] = ACTIONS(2292), + [aux_sym_local_forward_token1] = ACTIONS(2292), + [aux_sym_log_level_token1] = ACTIONS(2292), + [aux_sym_log_verbose_token1] = ACTIONS(2292), + [aux_sym_macs_token1] = ACTIONS(2292), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2292), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2292), + [aux_sym_password_authentication_token1] = ACTIONS(2292), + [aux_sym_permit_local_command_token1] = ACTIONS(2292), + [aux_sym_permit_remote_open_token1] = ACTIONS(2292), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2292), + [aux_sym_port_token1] = ACTIONS(2292), + [aux_sym_preferred_authentications_token1] = ACTIONS(2292), + [aux_sym_protocol_token1] = ACTIONS(2292), + [aux_sym_proxy_command_token1] = ACTIONS(2292), + [aux_sym_proxy_jump_token1] = ACTIONS(2292), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2292), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2292), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2292), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2292), + [aux_sym_rekey_limit_token1] = ACTIONS(2292), + [aux_sym_remote_command_token1] = ACTIONS(2292), + [aux_sym_remote_forward_token1] = ACTIONS(2292), + [aux_sym_request_tty_token1] = ACTIONS(2292), + [aux_sym_required_rsa_size_token1] = ACTIONS(2292), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2292), + [aux_sym_security_key_provider_token1] = ACTIONS(2292), + [aux_sym_send_env_token1] = ACTIONS(2292), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2292), + [aux_sym_server_alive_interval_token1] = ACTIONS(2292), + [aux_sym_session_type_token1] = ACTIONS(2292), + [aux_sym_set_env_token1] = ACTIONS(2292), + [aux_sym_stdin_null_token1] = ACTIONS(2292), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2292), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2292), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2292), + [aux_sym_syslog_facility_token1] = ACTIONS(2292), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2292), + [aux_sym_keep_alive_token1] = ACTIONS(2292), + [aux_sym_tunnel_token1] = ACTIONS(2294), + [aux_sym_tunnel_device_token1] = ACTIONS(2292), + [aux_sym_update_host_keys_token1] = ACTIONS(2292), + [aux_sym_use_keychain_token1] = ACTIONS(2292), + [aux_sym_use_roaming_token1] = ACTIONS(2292), + [aux_sym_user_token1] = ACTIONS(2294), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2292), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2292), + [aux_sym_visual_host_key_token1] = ACTIONS(2292), + [aux_sym_xauth_location_token1] = ACTIONS(2292), }, [306] = { - [ts_builtin_sym_end] = ACTIONS(2289), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2291), - [anon_sym_DQUOTE] = ACTIONS(2293), - [aux_sym_match_token1] = ACTIONS(2289), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2289), - [aux_sym_address_family_token1] = ACTIONS(2289), - [aux_sym_batch_mode_token1] = ACTIONS(2289), - [aux_sym_bind_address_token1] = ACTIONS(2289), - [aux_sym_bind_interface_token1] = ACTIONS(2289), - [aux_sym_canonical_domains_token1] = ACTIONS(2289), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2289), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2289), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2289), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2289), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2289), - [aux_sym_certificate_file_token1] = ACTIONS(2289), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2289), - [aux_sym_check_host_ip_token1] = ACTIONS(2289), - [aux_sym_ciphers_token1] = ACTIONS(2289), - [aux_sym_cipher_token1] = ACTIONS(2291), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2289), - [aux_sym_compression_token1] = ACTIONS(2289), - [aux_sym_connection_attempts_token1] = ACTIONS(2289), - [aux_sym_connect_timeout_token1] = ACTIONS(2289), - [aux_sym_control_master_token1] = ACTIONS(2289), - [aux_sym_control_path_token1] = ACTIONS(2289), - [aux_sym_control_persist_token1] = ACTIONS(2289), - [aux_sym_dynamic_forward_token1] = ACTIONS(2289), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2289), - [aux_sym_escape_char_token1] = ACTIONS(2289), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2289), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2289), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2289), - [aux_sym_forward_agent_token1] = ACTIONS(2289), - [aux_sym_forward_x11_token1] = ACTIONS(2291), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2289), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2289), - [aux_sym_gateway_ports_token1] = ACTIONS(2289), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2289), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2289), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2289), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2289), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2289), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2289), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2289), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2289), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2289), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2289), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2289), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2289), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2289), - [aux_sym_host_key_alias_token1] = ACTIONS(2289), - [aux_sym_hostname_token1] = ACTIONS(2289), - [aux_sym_identities_only_token1] = ACTIONS(2289), - [aux_sym_identity_agent_token1] = ACTIONS(2289), - [aux_sym_identity_file_token1] = ACTIONS(2289), - [aux_sym_ignore_unknown_token1] = ACTIONS(2289), - [aux_sym_include_token1] = ACTIONS(2289), - [aux_sym_ip_qos_token1] = ACTIONS(2289), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2289), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2289), - [aux_sym_kex_algorithms_token1] = ACTIONS(2289), - [aux_sym_known_hosts_command_token1] = ACTIONS(2289), - [aux_sym_local_command_token1] = ACTIONS(2289), - [aux_sym_local_forward_token1] = ACTIONS(2289), - [aux_sym_log_level_token1] = ACTIONS(2289), - [aux_sym_log_verbose_token1] = ACTIONS(2289), - [aux_sym_macs_token1] = ACTIONS(2289), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2289), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2289), - [aux_sym_password_authentication_token1] = ACTIONS(2289), - [aux_sym_permit_local_command_token1] = ACTIONS(2289), - [aux_sym_permit_remote_open_token1] = ACTIONS(2289), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2289), - [aux_sym_port_token1] = ACTIONS(2289), - [aux_sym_preferred_authentications_token1] = ACTIONS(2289), - [aux_sym_protocol_token1] = ACTIONS(2289), - [aux_sym_proxy_command_token1] = ACTIONS(2289), - [aux_sym_proxy_jump_token1] = ACTIONS(2289), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2289), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2289), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2289), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2289), - [aux_sym_rekey_limit_token1] = ACTIONS(2289), - [aux_sym_remote_command_token1] = ACTIONS(2289), - [aux_sym_remote_forward_token1] = ACTIONS(2289), - [aux_sym_request_tty_token1] = ACTIONS(2289), - [aux_sym_required_rsa_size_token1] = ACTIONS(2289), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2289), - [aux_sym_security_key_provider_token1] = ACTIONS(2289), - [aux_sym_send_env_token1] = ACTIONS(2289), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2289), - [aux_sym_server_alive_interval_token1] = ACTIONS(2289), - [aux_sym_session_type_token1] = ACTIONS(2289), - [aux_sym_set_env_token1] = ACTIONS(2289), - [aux_sym_stdin_null_token1] = ACTIONS(2289), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2289), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2289), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2289), - [aux_sym_syslog_facility_token1] = ACTIONS(2289), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2289), - [aux_sym_keep_alive_token1] = ACTIONS(2289), - [aux_sym_tunnel_token1] = ACTIONS(2291), - [aux_sym_tunnel_device_token1] = ACTIONS(2289), - [aux_sym_update_host_keys_token1] = ACTIONS(2289), - [aux_sym_use_keychain_token1] = ACTIONS(2289), - [aux_sym_use_roaming_token1] = ACTIONS(2289), - [aux_sym_user_token1] = ACTIONS(2291), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2289), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2289), - [aux_sym_visual_host_key_token1] = ACTIONS(2289), - [aux_sym_xauth_location_token1] = ACTIONS(2289), + [ts_builtin_sym_end] = ACTIONS(2298), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2300), + [anon_sym_DQUOTE] = ACTIONS(2298), + [aux_sym_match_token1] = ACTIONS(2298), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2298), + [aux_sym_address_family_token1] = ACTIONS(2298), + [aux_sym_batch_mode_token1] = ACTIONS(2298), + [aux_sym_bind_address_token1] = ACTIONS(2298), + [aux_sym_bind_interface_token1] = ACTIONS(2298), + [aux_sym_canonical_domains_token1] = ACTIONS(2298), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2298), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2298), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2298), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2298), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2298), + [aux_sym_certificate_file_token1] = ACTIONS(2298), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2298), + [aux_sym_check_host_ip_token1] = ACTIONS(2298), + [aux_sym_ciphers_token1] = ACTIONS(2298), + [aux_sym_cipher_token1] = ACTIONS(2300), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2298), + [aux_sym_compression_token1] = ACTIONS(2298), + [aux_sym_connection_attempts_token1] = ACTIONS(2298), + [aux_sym_connect_timeout_token1] = ACTIONS(2298), + [aux_sym_control_master_token1] = ACTIONS(2298), + [aux_sym_control_path_token1] = ACTIONS(2298), + [aux_sym_control_persist_token1] = ACTIONS(2298), + [aux_sym_dynamic_forward_token1] = ACTIONS(2298), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2298), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2298), + [aux_sym_escape_char_token1] = ACTIONS(2298), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2298), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2298), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2298), + [aux_sym_forward_agent_token1] = ACTIONS(2298), + [aux_sym_forward_x11_token1] = ACTIONS(2300), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2298), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2298), + [aux_sym_gateway_ports_token1] = ACTIONS(2298), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2298), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2298), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2298), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2298), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2298), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2298), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2298), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2298), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2298), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2298), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2298), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2298), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2298), + [aux_sym_host_key_alias_token1] = ACTIONS(2298), + [aux_sym_hostname_token1] = ACTIONS(2298), + [aux_sym_identities_only_token1] = ACTIONS(2298), + [aux_sym_identity_agent_token1] = ACTIONS(2298), + [aux_sym_identity_file_token1] = ACTIONS(2298), + [aux_sym_ignore_unknown_token1] = ACTIONS(2298), + [aux_sym_include_token1] = ACTIONS(2298), + [aux_sym_ip_qos_token1] = ACTIONS(2298), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2298), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2298), + [aux_sym_kex_algorithms_token1] = ACTIONS(2298), + [aux_sym_known_hosts_command_token1] = ACTIONS(2298), + [aux_sym_local_command_token1] = ACTIONS(2298), + [aux_sym_local_forward_token1] = ACTIONS(2298), + [aux_sym_log_level_token1] = ACTIONS(2298), + [aux_sym_log_verbose_token1] = ACTIONS(2298), + [aux_sym_macs_token1] = ACTIONS(2298), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2298), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2298), + [aux_sym_password_authentication_token1] = ACTIONS(2298), + [aux_sym_permit_local_command_token1] = ACTIONS(2298), + [aux_sym_permit_remote_open_token1] = ACTIONS(2298), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2298), + [aux_sym_port_token1] = ACTIONS(2298), + [aux_sym_preferred_authentications_token1] = ACTIONS(2298), + [aux_sym_protocol_token1] = ACTIONS(2298), + [aux_sym_proxy_command_token1] = ACTIONS(2298), + [aux_sym_proxy_jump_token1] = ACTIONS(2298), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2298), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2298), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2298), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2298), + [aux_sym_rekey_limit_token1] = ACTIONS(2298), + [aux_sym_remote_command_token1] = ACTIONS(2298), + [aux_sym_remote_forward_token1] = ACTIONS(2298), + [aux_sym_request_tty_token1] = ACTIONS(2298), + [aux_sym_required_rsa_size_token1] = ACTIONS(2298), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2298), + [aux_sym_security_key_provider_token1] = ACTIONS(2298), + [aux_sym_send_env_token1] = ACTIONS(2298), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2298), + [aux_sym_server_alive_interval_token1] = ACTIONS(2298), + [aux_sym_session_type_token1] = ACTIONS(2298), + [aux_sym_set_env_token1] = ACTIONS(2298), + [aux_sym_stdin_null_token1] = ACTIONS(2298), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2298), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2298), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2298), + [aux_sym_syslog_facility_token1] = ACTIONS(2298), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2298), + [aux_sym_keep_alive_token1] = ACTIONS(2298), + [aux_sym_tunnel_token1] = ACTIONS(2300), + [aux_sym_tunnel_device_token1] = ACTIONS(2298), + [aux_sym_update_host_keys_token1] = ACTIONS(2298), + [aux_sym_use_keychain_token1] = ACTIONS(2298), + [aux_sym_use_roaming_token1] = ACTIONS(2298), + [aux_sym_user_token1] = ACTIONS(2300), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2298), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2298), + [aux_sym_visual_host_key_token1] = ACTIONS(2298), + [aux_sym_xauth_location_token1] = ACTIONS(2298), }, [307] = { - [ts_builtin_sym_end] = ACTIONS(2295), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2297), - [anon_sym_DQUOTE] = ACTIONS(2295), - [aux_sym_match_token1] = ACTIONS(2295), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2295), - [aux_sym_address_family_token1] = ACTIONS(2295), - [aux_sym_batch_mode_token1] = ACTIONS(2295), - [aux_sym_bind_address_token1] = ACTIONS(2295), - [aux_sym_bind_interface_token1] = ACTIONS(2295), - [aux_sym_canonical_domains_token1] = ACTIONS(2295), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2295), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2295), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2295), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2295), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2295), - [aux_sym_certificate_file_token1] = ACTIONS(2295), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2295), - [aux_sym_check_host_ip_token1] = ACTIONS(2295), - [aux_sym_ciphers_token1] = ACTIONS(2295), - [aux_sym_cipher_token1] = ACTIONS(2297), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2295), - [aux_sym_compression_token1] = ACTIONS(2295), - [aux_sym_connection_attempts_token1] = ACTIONS(2295), - [aux_sym_connect_timeout_token1] = ACTIONS(2295), - [aux_sym_control_master_token1] = ACTIONS(2295), - [aux_sym_control_path_token1] = ACTIONS(2295), - [aux_sym_control_persist_token1] = ACTIONS(2295), - [aux_sym_dynamic_forward_token1] = ACTIONS(2295), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2295), - [aux_sym_escape_char_token1] = ACTIONS(2295), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2295), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2295), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2295), - [aux_sym_forward_agent_token1] = ACTIONS(2295), - [aux_sym_forward_x11_token1] = ACTIONS(2297), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2295), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2295), - [aux_sym_gateway_ports_token1] = ACTIONS(2295), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2295), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2295), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2295), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2295), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2295), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2295), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2295), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2295), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2295), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2295), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2295), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2295), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2295), - [aux_sym_host_key_alias_token1] = ACTIONS(2295), - [aux_sym_hostname_token1] = ACTIONS(2295), - [aux_sym_identities_only_token1] = ACTIONS(2295), - [aux_sym_identity_agent_token1] = ACTIONS(2295), - [aux_sym_identity_file_token1] = ACTIONS(2295), - [aux_sym_ignore_unknown_token1] = ACTIONS(2295), - [aux_sym_include_token1] = ACTIONS(2295), - [aux_sym_ip_qos_token1] = ACTIONS(2295), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2295), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2295), - [aux_sym_kex_algorithms_token1] = ACTIONS(2295), - [aux_sym_known_hosts_command_token1] = ACTIONS(2295), - [aux_sym_local_command_token1] = ACTIONS(2295), - [aux_sym_local_forward_token1] = ACTIONS(2295), - [aux_sym_log_level_token1] = ACTIONS(2295), - [aux_sym_log_verbose_token1] = ACTIONS(2295), - [aux_sym_macs_token1] = ACTIONS(2295), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2295), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2295), - [aux_sym_password_authentication_token1] = ACTIONS(2295), - [aux_sym_permit_local_command_token1] = ACTIONS(2295), - [aux_sym_permit_remote_open_token1] = ACTIONS(2295), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2295), - [aux_sym_port_token1] = ACTIONS(2295), - [aux_sym_preferred_authentications_token1] = ACTIONS(2295), - [aux_sym_protocol_token1] = ACTIONS(2295), - [aux_sym_proxy_command_token1] = ACTIONS(2295), - [aux_sym_proxy_jump_token1] = ACTIONS(2295), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2295), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2295), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2295), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2295), - [aux_sym_rekey_limit_token1] = ACTIONS(2295), - [aux_sym_remote_command_token1] = ACTIONS(2295), - [aux_sym_remote_forward_token1] = ACTIONS(2295), - [aux_sym_request_tty_token1] = ACTIONS(2295), - [aux_sym_required_rsa_size_token1] = ACTIONS(2295), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2295), - [aux_sym_security_key_provider_token1] = ACTIONS(2295), - [aux_sym_send_env_token1] = ACTIONS(2295), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2295), - [aux_sym_server_alive_interval_token1] = ACTIONS(2295), - [aux_sym_session_type_token1] = ACTIONS(2295), - [aux_sym_set_env_token1] = ACTIONS(2295), - [aux_sym_stdin_null_token1] = ACTIONS(2295), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2295), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2295), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2295), - [aux_sym_syslog_facility_token1] = ACTIONS(2295), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2295), - [aux_sym_keep_alive_token1] = ACTIONS(2295), - [aux_sym_tunnel_token1] = ACTIONS(2297), - [aux_sym_tunnel_device_token1] = ACTIONS(2295), - [aux_sym_update_host_keys_token1] = ACTIONS(2295), - [aux_sym_use_keychain_token1] = ACTIONS(2295), - [aux_sym_use_roaming_token1] = ACTIONS(2295), - [aux_sym_user_token1] = ACTIONS(2297), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2295), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2295), - [aux_sym_visual_host_key_token1] = ACTIONS(2295), - [aux_sym_xauth_location_token1] = ACTIONS(2295), + [ts_builtin_sym_end] = ACTIONS(2302), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2302), + [aux_sym_match_token1] = ACTIONS(2302), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2302), + [aux_sym_address_family_token1] = ACTIONS(2302), + [aux_sym_batch_mode_token1] = ACTIONS(2302), + [aux_sym_bind_address_token1] = ACTIONS(2302), + [aux_sym_bind_interface_token1] = ACTIONS(2302), + [aux_sym_canonical_domains_token1] = ACTIONS(2302), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2302), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2302), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2302), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2302), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2302), + [aux_sym_certificate_file_token1] = ACTIONS(2302), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2302), + [aux_sym_check_host_ip_token1] = ACTIONS(2302), + [aux_sym_ciphers_token1] = ACTIONS(2302), + [aux_sym_cipher_token1] = ACTIONS(2304), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2302), + [aux_sym_compression_token1] = ACTIONS(2302), + [aux_sym_connection_attempts_token1] = ACTIONS(2302), + [aux_sym_connect_timeout_token1] = ACTIONS(2302), + [aux_sym_control_master_token1] = ACTIONS(2302), + [aux_sym_control_path_token1] = ACTIONS(2302), + [aux_sym_control_persist_token1] = ACTIONS(2302), + [aux_sym_dynamic_forward_token1] = ACTIONS(2302), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2302), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2302), + [aux_sym_escape_char_token1] = ACTIONS(2302), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2302), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2302), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2302), + [aux_sym_forward_agent_token1] = ACTIONS(2302), + [aux_sym_forward_x11_token1] = ACTIONS(2304), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2302), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2302), + [aux_sym_gateway_ports_token1] = ACTIONS(2302), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2302), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2302), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2302), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2302), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2302), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2302), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2302), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2302), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2302), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2302), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2302), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2302), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2302), + [aux_sym_host_key_alias_token1] = ACTIONS(2302), + [aux_sym_hostname_token1] = ACTIONS(2302), + [aux_sym_identities_only_token1] = ACTIONS(2302), + [aux_sym_identity_agent_token1] = ACTIONS(2302), + [aux_sym_identity_file_token1] = ACTIONS(2302), + [aux_sym_ignore_unknown_token1] = ACTIONS(2302), + [aux_sym_include_token1] = ACTIONS(2302), + [aux_sym_ip_qos_token1] = ACTIONS(2302), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2302), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2302), + [aux_sym_kex_algorithms_token1] = ACTIONS(2302), + [aux_sym_known_hosts_command_token1] = ACTIONS(2302), + [aux_sym_local_command_token1] = ACTIONS(2302), + [aux_sym_local_forward_token1] = ACTIONS(2302), + [aux_sym_log_level_token1] = ACTIONS(2302), + [aux_sym_log_verbose_token1] = ACTIONS(2302), + [aux_sym_macs_token1] = ACTIONS(2302), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2302), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2302), + [aux_sym_password_authentication_token1] = ACTIONS(2302), + [aux_sym_permit_local_command_token1] = ACTIONS(2302), + [aux_sym_permit_remote_open_token1] = ACTIONS(2302), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2302), + [aux_sym_port_token1] = ACTIONS(2302), + [aux_sym_preferred_authentications_token1] = ACTIONS(2302), + [aux_sym_protocol_token1] = ACTIONS(2302), + [aux_sym_proxy_command_token1] = ACTIONS(2302), + [aux_sym_proxy_jump_token1] = ACTIONS(2302), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2302), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2302), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2302), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2302), + [aux_sym_rekey_limit_token1] = ACTIONS(2302), + [aux_sym_remote_command_token1] = ACTIONS(2302), + [aux_sym_remote_forward_token1] = ACTIONS(2302), + [aux_sym_request_tty_token1] = ACTIONS(2302), + [aux_sym_required_rsa_size_token1] = ACTIONS(2302), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2302), + [aux_sym_security_key_provider_token1] = ACTIONS(2302), + [aux_sym_send_env_token1] = ACTIONS(2302), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2302), + [aux_sym_server_alive_interval_token1] = ACTIONS(2302), + [aux_sym_session_type_token1] = ACTIONS(2302), + [aux_sym_set_env_token1] = ACTIONS(2302), + [aux_sym_stdin_null_token1] = ACTIONS(2302), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2302), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2302), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2302), + [aux_sym_syslog_facility_token1] = ACTIONS(2302), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2302), + [aux_sym_keep_alive_token1] = ACTIONS(2302), + [aux_sym_tunnel_token1] = ACTIONS(2304), + [aux_sym_tunnel_device_token1] = ACTIONS(2302), + [aux_sym_update_host_keys_token1] = ACTIONS(2302), + [aux_sym_use_keychain_token1] = ACTIONS(2302), + [aux_sym_use_roaming_token1] = ACTIONS(2302), + [aux_sym_user_token1] = ACTIONS(2304), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2302), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2302), + [aux_sym_visual_host_key_token1] = ACTIONS(2302), + [aux_sym_xauth_location_token1] = ACTIONS(2302), }, [308] = { - [ts_builtin_sym_end] = ACTIONS(2299), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2301), - [anon_sym_DQUOTE] = ACTIONS(2303), - [aux_sym_match_token1] = ACTIONS(2299), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2299), - [aux_sym_address_family_token1] = ACTIONS(2299), - [aux_sym_batch_mode_token1] = ACTIONS(2299), - [aux_sym_bind_address_token1] = ACTIONS(2299), - [aux_sym_bind_interface_token1] = ACTIONS(2299), - [aux_sym_canonical_domains_token1] = ACTIONS(2299), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2299), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2299), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2299), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2299), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2299), - [aux_sym_certificate_file_token1] = ACTIONS(2299), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2299), - [aux_sym_check_host_ip_token1] = ACTIONS(2299), - [aux_sym_ciphers_token1] = ACTIONS(2299), - [aux_sym_cipher_token1] = ACTIONS(2301), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2299), - [aux_sym_compression_token1] = ACTIONS(2299), - [aux_sym_connection_attempts_token1] = ACTIONS(2299), - [aux_sym_connect_timeout_token1] = ACTIONS(2299), - [aux_sym_control_master_token1] = ACTIONS(2299), - [aux_sym_control_path_token1] = ACTIONS(2299), - [aux_sym_control_persist_token1] = ACTIONS(2299), - [aux_sym_dynamic_forward_token1] = ACTIONS(2299), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2299), - [aux_sym_escape_char_token1] = ACTIONS(2299), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2299), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2299), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2299), - [aux_sym_forward_agent_token1] = ACTIONS(2299), - [aux_sym_forward_x11_token1] = ACTIONS(2301), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2299), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2299), - [aux_sym_gateway_ports_token1] = ACTIONS(2299), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2299), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2299), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2299), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2299), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2299), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2299), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2299), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2299), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2299), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2299), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2299), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2299), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2299), - [aux_sym_host_key_alias_token1] = ACTIONS(2299), - [aux_sym_hostname_token1] = ACTIONS(2299), - [aux_sym_identities_only_token1] = ACTIONS(2299), - [aux_sym_identity_agent_token1] = ACTIONS(2299), - [aux_sym_identity_file_token1] = ACTIONS(2299), - [aux_sym_ignore_unknown_token1] = ACTIONS(2299), - [aux_sym_include_token1] = ACTIONS(2299), - [aux_sym_ip_qos_token1] = ACTIONS(2299), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2299), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2299), - [aux_sym_kex_algorithms_token1] = ACTIONS(2299), - [aux_sym_known_hosts_command_token1] = ACTIONS(2299), - [aux_sym_local_command_token1] = ACTIONS(2299), - [aux_sym_local_forward_token1] = ACTIONS(2299), - [aux_sym_log_level_token1] = ACTIONS(2299), - [aux_sym_log_verbose_token1] = ACTIONS(2299), - [aux_sym_macs_token1] = ACTIONS(2299), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2299), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2299), - [aux_sym_password_authentication_token1] = ACTIONS(2299), - [aux_sym_permit_local_command_token1] = ACTIONS(2299), - [aux_sym_permit_remote_open_token1] = ACTIONS(2299), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2299), - [aux_sym_port_token1] = ACTIONS(2299), - [aux_sym_preferred_authentications_token1] = ACTIONS(2299), - [aux_sym_protocol_token1] = ACTIONS(2299), - [aux_sym_proxy_command_token1] = ACTIONS(2299), - [aux_sym_proxy_jump_token1] = ACTIONS(2299), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2299), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2299), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2299), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2299), - [aux_sym_rekey_limit_token1] = ACTIONS(2299), - [aux_sym_remote_command_token1] = ACTIONS(2299), - [aux_sym_remote_forward_token1] = ACTIONS(2299), - [aux_sym_request_tty_token1] = ACTIONS(2299), - [aux_sym_required_rsa_size_token1] = ACTIONS(2299), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2299), - [aux_sym_security_key_provider_token1] = ACTIONS(2299), - [aux_sym_send_env_token1] = ACTIONS(2299), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2299), - [aux_sym_server_alive_interval_token1] = ACTIONS(2299), - [aux_sym_session_type_token1] = ACTIONS(2299), - [aux_sym_set_env_token1] = ACTIONS(2299), - [aux_sym_stdin_null_token1] = ACTIONS(2299), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2299), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2299), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2299), - [aux_sym_syslog_facility_token1] = ACTIONS(2299), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2299), - [aux_sym_keep_alive_token1] = ACTIONS(2299), - [aux_sym_tunnel_token1] = ACTIONS(2301), - [aux_sym_tunnel_device_token1] = ACTIONS(2299), - [aux_sym_update_host_keys_token1] = ACTIONS(2299), - [aux_sym_use_keychain_token1] = ACTIONS(2299), - [aux_sym_use_roaming_token1] = ACTIONS(2299), - [aux_sym_user_token1] = ACTIONS(2301), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2299), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2299), - [aux_sym_visual_host_key_token1] = ACTIONS(2299), - [aux_sym_xauth_location_token1] = ACTIONS(2299), + [ts_builtin_sym_end] = ACTIONS(2306), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2308), + [anon_sym_DQUOTE] = ACTIONS(2310), + [aux_sym_match_token1] = ACTIONS(2306), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2306), + [aux_sym_address_family_token1] = ACTIONS(2306), + [aux_sym_batch_mode_token1] = ACTIONS(2306), + [aux_sym_bind_address_token1] = ACTIONS(2306), + [aux_sym_bind_interface_token1] = ACTIONS(2306), + [aux_sym_canonical_domains_token1] = ACTIONS(2306), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2306), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2306), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2306), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2306), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2306), + [aux_sym_certificate_file_token1] = ACTIONS(2306), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2306), + [aux_sym_check_host_ip_token1] = ACTIONS(2306), + [aux_sym_ciphers_token1] = ACTIONS(2306), + [aux_sym_cipher_token1] = ACTIONS(2308), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2306), + [aux_sym_compression_token1] = ACTIONS(2306), + [aux_sym_connection_attempts_token1] = ACTIONS(2306), + [aux_sym_connect_timeout_token1] = ACTIONS(2306), + [aux_sym_control_master_token1] = ACTIONS(2306), + [aux_sym_control_path_token1] = ACTIONS(2306), + [aux_sym_control_persist_token1] = ACTIONS(2306), + [aux_sym_dynamic_forward_token1] = ACTIONS(2306), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2306), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2306), + [aux_sym_escape_char_token1] = ACTIONS(2306), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2306), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2306), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2306), + [aux_sym_forward_agent_token1] = ACTIONS(2306), + [aux_sym_forward_x11_token1] = ACTIONS(2308), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2306), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2306), + [aux_sym_gateway_ports_token1] = ACTIONS(2306), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2306), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2306), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2306), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2306), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2306), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2306), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2306), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2306), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2306), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2306), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2306), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2306), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2306), + [aux_sym_host_key_alias_token1] = ACTIONS(2306), + [aux_sym_hostname_token1] = ACTIONS(2306), + [aux_sym_identities_only_token1] = ACTIONS(2306), + [aux_sym_identity_agent_token1] = ACTIONS(2306), + [aux_sym_identity_file_token1] = ACTIONS(2306), + [aux_sym_ignore_unknown_token1] = ACTIONS(2306), + [aux_sym_include_token1] = ACTIONS(2306), + [aux_sym_ip_qos_token1] = ACTIONS(2306), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2306), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2306), + [aux_sym_kex_algorithms_token1] = ACTIONS(2306), + [aux_sym_known_hosts_command_token1] = ACTIONS(2306), + [aux_sym_local_command_token1] = ACTIONS(2306), + [aux_sym_local_forward_token1] = ACTIONS(2306), + [aux_sym_log_level_token1] = ACTIONS(2306), + [aux_sym_log_verbose_token1] = ACTIONS(2306), + [aux_sym_macs_token1] = ACTIONS(2306), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2306), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2306), + [aux_sym_password_authentication_token1] = ACTIONS(2306), + [aux_sym_permit_local_command_token1] = ACTIONS(2306), + [aux_sym_permit_remote_open_token1] = ACTIONS(2306), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2306), + [aux_sym_port_token1] = ACTIONS(2306), + [aux_sym_preferred_authentications_token1] = ACTIONS(2306), + [aux_sym_protocol_token1] = ACTIONS(2306), + [aux_sym_proxy_command_token1] = ACTIONS(2306), + [aux_sym_proxy_jump_token1] = ACTIONS(2306), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2306), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2306), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2306), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2306), + [aux_sym_rekey_limit_token1] = ACTIONS(2306), + [aux_sym_remote_command_token1] = ACTIONS(2306), + [aux_sym_remote_forward_token1] = ACTIONS(2306), + [aux_sym_request_tty_token1] = ACTIONS(2306), + [aux_sym_required_rsa_size_token1] = ACTIONS(2306), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2306), + [aux_sym_security_key_provider_token1] = ACTIONS(2306), + [aux_sym_send_env_token1] = ACTIONS(2306), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2306), + [aux_sym_server_alive_interval_token1] = ACTIONS(2306), + [aux_sym_session_type_token1] = ACTIONS(2306), + [aux_sym_set_env_token1] = ACTIONS(2306), + [aux_sym_stdin_null_token1] = ACTIONS(2306), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2306), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2306), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2306), + [aux_sym_syslog_facility_token1] = ACTIONS(2306), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2306), + [aux_sym_keep_alive_token1] = ACTIONS(2306), + [aux_sym_tunnel_token1] = ACTIONS(2308), + [aux_sym_tunnel_device_token1] = ACTIONS(2306), + [aux_sym_update_host_keys_token1] = ACTIONS(2306), + [aux_sym_use_keychain_token1] = ACTIONS(2306), + [aux_sym_use_roaming_token1] = ACTIONS(2306), + [aux_sym_user_token1] = ACTIONS(2308), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2306), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2306), + [aux_sym_visual_host_key_token1] = ACTIONS(2306), + [aux_sym_xauth_location_token1] = ACTIONS(2306), }, [309] = { - [ts_builtin_sym_end] = ACTIONS(2305), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2305), - [aux_sym_match_token1] = ACTIONS(2305), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2305), - [aux_sym_address_family_token1] = ACTIONS(2305), - [aux_sym_batch_mode_token1] = ACTIONS(2305), - [aux_sym_bind_address_token1] = ACTIONS(2305), - [aux_sym_bind_interface_token1] = ACTIONS(2305), - [aux_sym_canonical_domains_token1] = ACTIONS(2305), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2305), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2305), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2305), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2305), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2305), - [aux_sym_certificate_file_token1] = ACTIONS(2305), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2305), - [aux_sym_check_host_ip_token1] = ACTIONS(2305), - [aux_sym_ciphers_token1] = ACTIONS(2305), - [aux_sym_cipher_token1] = ACTIONS(2307), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2305), - [aux_sym_compression_token1] = ACTIONS(2305), - [aux_sym_connection_attempts_token1] = ACTIONS(2305), - [aux_sym_connect_timeout_token1] = ACTIONS(2305), - [aux_sym_control_master_token1] = ACTIONS(2305), - [aux_sym_control_path_token1] = ACTIONS(2305), - [aux_sym_control_persist_token1] = ACTIONS(2305), - [aux_sym_dynamic_forward_token1] = ACTIONS(2305), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2305), - [aux_sym_escape_char_token1] = ACTIONS(2305), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2305), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2305), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2305), - [aux_sym_forward_agent_token1] = ACTIONS(2305), - [aux_sym_forward_x11_token1] = ACTIONS(2307), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2305), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2305), - [aux_sym_gateway_ports_token1] = ACTIONS(2305), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2305), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2305), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2305), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2305), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2305), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2305), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2305), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2305), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2305), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2305), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2305), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2305), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2305), - [aux_sym_host_key_alias_token1] = ACTIONS(2305), - [aux_sym_hostname_token1] = ACTIONS(2305), - [aux_sym_identities_only_token1] = ACTIONS(2305), - [aux_sym_identity_agent_token1] = ACTIONS(2305), - [aux_sym_identity_file_token1] = ACTIONS(2305), - [aux_sym_ignore_unknown_token1] = ACTIONS(2305), - [aux_sym_include_token1] = ACTIONS(2305), - [aux_sym_ip_qos_token1] = ACTIONS(2305), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2305), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2305), - [aux_sym_kex_algorithms_token1] = ACTIONS(2305), - [aux_sym_known_hosts_command_token1] = ACTIONS(2305), - [aux_sym_local_command_token1] = ACTIONS(2305), - [aux_sym_local_forward_token1] = ACTIONS(2305), - [aux_sym_log_level_token1] = ACTIONS(2305), - [aux_sym_log_verbose_token1] = ACTIONS(2305), - [aux_sym_macs_token1] = ACTIONS(2305), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2305), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2305), - [aux_sym_password_authentication_token1] = ACTIONS(2305), - [aux_sym_permit_local_command_token1] = ACTIONS(2305), - [aux_sym_permit_remote_open_token1] = ACTIONS(2305), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2305), - [aux_sym_port_token1] = ACTIONS(2305), - [aux_sym_preferred_authentications_token1] = ACTIONS(2305), - [aux_sym_protocol_token1] = ACTIONS(2305), - [aux_sym_proxy_command_token1] = ACTIONS(2305), - [aux_sym_proxy_jump_token1] = ACTIONS(2305), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2305), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2305), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2305), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2305), - [aux_sym_rekey_limit_token1] = ACTIONS(2305), - [aux_sym_remote_command_token1] = ACTIONS(2305), - [aux_sym_remote_forward_token1] = ACTIONS(2305), - [aux_sym_request_tty_token1] = ACTIONS(2305), - [aux_sym_required_rsa_size_token1] = ACTIONS(2305), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2305), - [aux_sym_security_key_provider_token1] = ACTIONS(2305), - [aux_sym_send_env_token1] = ACTIONS(2305), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2305), - [aux_sym_server_alive_interval_token1] = ACTIONS(2305), - [aux_sym_session_type_token1] = ACTIONS(2305), - [aux_sym_set_env_token1] = ACTIONS(2305), - [aux_sym_stdin_null_token1] = ACTIONS(2305), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2305), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2305), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2305), - [aux_sym_syslog_facility_token1] = ACTIONS(2305), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2305), - [aux_sym_keep_alive_token1] = ACTIONS(2305), - [aux_sym_tunnel_token1] = ACTIONS(2307), - [aux_sym_tunnel_device_token1] = ACTIONS(2305), - [aux_sym_update_host_keys_token1] = ACTIONS(2305), - [aux_sym_use_keychain_token1] = ACTIONS(2305), - [aux_sym_use_roaming_token1] = ACTIONS(2305), - [aux_sym_user_token1] = ACTIONS(2307), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2305), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2305), - [aux_sym_visual_host_key_token1] = ACTIONS(2305), - [aux_sym_xauth_location_token1] = ACTIONS(2305), + [ts_builtin_sym_end] = ACTIONS(2312), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2312), + [aux_sym_match_token1] = ACTIONS(2312), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2312), + [aux_sym_address_family_token1] = ACTIONS(2312), + [aux_sym_batch_mode_token1] = ACTIONS(2312), + [aux_sym_bind_address_token1] = ACTIONS(2312), + [aux_sym_bind_interface_token1] = ACTIONS(2312), + [aux_sym_canonical_domains_token1] = ACTIONS(2312), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2312), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2312), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2312), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2312), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2312), + [aux_sym_certificate_file_token1] = ACTIONS(2312), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2312), + [aux_sym_check_host_ip_token1] = ACTIONS(2312), + [aux_sym_ciphers_token1] = ACTIONS(2312), + [aux_sym_cipher_token1] = ACTIONS(2314), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2312), + [aux_sym_compression_token1] = ACTIONS(2312), + [aux_sym_connection_attempts_token1] = ACTIONS(2312), + [aux_sym_connect_timeout_token1] = ACTIONS(2312), + [aux_sym_control_master_token1] = ACTIONS(2312), + [aux_sym_control_path_token1] = ACTIONS(2312), + [aux_sym_control_persist_token1] = ACTIONS(2312), + [aux_sym_dynamic_forward_token1] = ACTIONS(2312), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2312), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2312), + [aux_sym_escape_char_token1] = ACTIONS(2312), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2312), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2312), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2312), + [aux_sym_forward_agent_token1] = ACTIONS(2312), + [aux_sym_forward_x11_token1] = ACTIONS(2314), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2312), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2312), + [aux_sym_gateway_ports_token1] = ACTIONS(2312), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2312), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2312), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2312), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2312), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2312), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2312), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2312), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2312), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2312), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2312), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2312), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2312), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2312), + [aux_sym_host_key_alias_token1] = ACTIONS(2312), + [aux_sym_hostname_token1] = ACTIONS(2312), + [aux_sym_identities_only_token1] = ACTIONS(2312), + [aux_sym_identity_agent_token1] = ACTIONS(2312), + [aux_sym_identity_file_token1] = ACTIONS(2312), + [aux_sym_ignore_unknown_token1] = ACTIONS(2312), + [aux_sym_include_token1] = ACTIONS(2312), + [aux_sym_ip_qos_token1] = ACTIONS(2312), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2312), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2312), + [aux_sym_kex_algorithms_token1] = ACTIONS(2312), + [aux_sym_known_hosts_command_token1] = ACTIONS(2312), + [aux_sym_local_command_token1] = ACTIONS(2312), + [aux_sym_local_forward_token1] = ACTIONS(2312), + [aux_sym_log_level_token1] = ACTIONS(2312), + [aux_sym_log_verbose_token1] = ACTIONS(2312), + [aux_sym_macs_token1] = ACTIONS(2312), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2312), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2312), + [aux_sym_password_authentication_token1] = ACTIONS(2312), + [aux_sym_permit_local_command_token1] = ACTIONS(2312), + [aux_sym_permit_remote_open_token1] = ACTIONS(2312), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2312), + [aux_sym_port_token1] = ACTIONS(2312), + [aux_sym_preferred_authentications_token1] = ACTIONS(2312), + [aux_sym_protocol_token1] = ACTIONS(2312), + [aux_sym_proxy_command_token1] = ACTIONS(2312), + [aux_sym_proxy_jump_token1] = ACTIONS(2312), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2312), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2312), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2312), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2312), + [aux_sym_rekey_limit_token1] = ACTIONS(2312), + [aux_sym_remote_command_token1] = ACTIONS(2312), + [aux_sym_remote_forward_token1] = ACTIONS(2312), + [aux_sym_request_tty_token1] = ACTIONS(2312), + [aux_sym_required_rsa_size_token1] = ACTIONS(2312), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2312), + [aux_sym_security_key_provider_token1] = ACTIONS(2312), + [aux_sym_send_env_token1] = ACTIONS(2312), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2312), + [aux_sym_server_alive_interval_token1] = ACTIONS(2312), + [aux_sym_session_type_token1] = ACTIONS(2312), + [aux_sym_set_env_token1] = ACTIONS(2312), + [aux_sym_stdin_null_token1] = ACTIONS(2312), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2312), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2312), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2312), + [aux_sym_syslog_facility_token1] = ACTIONS(2312), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2312), + [aux_sym_keep_alive_token1] = ACTIONS(2312), + [aux_sym_tunnel_token1] = ACTIONS(2314), + [aux_sym_tunnel_device_token1] = ACTIONS(2312), + [aux_sym_update_host_keys_token1] = ACTIONS(2312), + [aux_sym_use_keychain_token1] = ACTIONS(2312), + [aux_sym_use_roaming_token1] = ACTIONS(2312), + [aux_sym_user_token1] = ACTIONS(2314), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2312), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2312), + [aux_sym_visual_host_key_token1] = ACTIONS(2312), + [aux_sym_xauth_location_token1] = ACTIONS(2312), }, [310] = { - [ts_builtin_sym_end] = ACTIONS(2309), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2311), - [anon_sym_DQUOTE] = ACTIONS(2313), - [aux_sym_match_token1] = ACTIONS(2309), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2309), - [aux_sym_address_family_token1] = ACTIONS(2309), - [aux_sym_batch_mode_token1] = ACTIONS(2309), - [aux_sym_bind_address_token1] = ACTIONS(2309), - [aux_sym_bind_interface_token1] = ACTIONS(2309), - [aux_sym_canonical_domains_token1] = ACTIONS(2309), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2309), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2309), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2309), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2309), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2309), - [aux_sym_certificate_file_token1] = ACTIONS(2309), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2309), - [aux_sym_check_host_ip_token1] = ACTIONS(2309), - [aux_sym_ciphers_token1] = ACTIONS(2309), - [aux_sym_cipher_token1] = ACTIONS(2311), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2309), - [aux_sym_compression_token1] = ACTIONS(2309), - [aux_sym_connection_attempts_token1] = ACTIONS(2309), - [aux_sym_connect_timeout_token1] = ACTIONS(2309), - [aux_sym_control_master_token1] = ACTIONS(2309), - [aux_sym_control_path_token1] = ACTIONS(2309), - [aux_sym_control_persist_token1] = ACTIONS(2309), - [aux_sym_dynamic_forward_token1] = ACTIONS(2309), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2309), - [aux_sym_escape_char_token1] = ACTIONS(2309), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2309), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2309), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2309), - [aux_sym_forward_agent_token1] = ACTIONS(2309), - [aux_sym_forward_x11_token1] = ACTIONS(2311), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2309), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2309), - [aux_sym_gateway_ports_token1] = ACTIONS(2309), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2309), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2309), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2309), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2309), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2309), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2309), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2309), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2309), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2309), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2309), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2309), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2309), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2309), - [aux_sym_host_key_alias_token1] = ACTIONS(2309), - [aux_sym_hostname_token1] = ACTIONS(2309), - [aux_sym_identities_only_token1] = ACTIONS(2309), - [aux_sym_identity_agent_token1] = ACTIONS(2309), - [aux_sym_identity_file_token1] = ACTIONS(2309), - [aux_sym_ignore_unknown_token1] = ACTIONS(2309), - [aux_sym_include_token1] = ACTIONS(2309), - [aux_sym_ip_qos_token1] = ACTIONS(2309), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2309), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2309), - [aux_sym_kex_algorithms_token1] = ACTIONS(2309), - [aux_sym_known_hosts_command_token1] = ACTIONS(2309), - [aux_sym_local_command_token1] = ACTIONS(2309), - [aux_sym_local_forward_token1] = ACTIONS(2309), - [aux_sym_log_level_token1] = ACTIONS(2309), - [aux_sym_log_verbose_token1] = ACTIONS(2309), - [aux_sym_macs_token1] = ACTIONS(2309), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2309), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2309), - [aux_sym_password_authentication_token1] = ACTIONS(2309), - [aux_sym_permit_local_command_token1] = ACTIONS(2309), - [aux_sym_permit_remote_open_token1] = ACTIONS(2309), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2309), - [aux_sym_port_token1] = ACTIONS(2309), - [aux_sym_preferred_authentications_token1] = ACTIONS(2309), - [aux_sym_protocol_token1] = ACTIONS(2309), - [aux_sym_proxy_command_token1] = ACTIONS(2309), - [aux_sym_proxy_jump_token1] = ACTIONS(2309), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2309), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2309), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2309), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2309), - [aux_sym_rekey_limit_token1] = ACTIONS(2309), - [aux_sym_remote_command_token1] = ACTIONS(2309), - [aux_sym_remote_forward_token1] = ACTIONS(2309), - [aux_sym_request_tty_token1] = ACTIONS(2309), - [aux_sym_required_rsa_size_token1] = ACTIONS(2309), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2309), - [aux_sym_security_key_provider_token1] = ACTIONS(2309), - [aux_sym_send_env_token1] = ACTIONS(2309), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2309), - [aux_sym_server_alive_interval_token1] = ACTIONS(2309), - [aux_sym_session_type_token1] = ACTIONS(2309), - [aux_sym_set_env_token1] = ACTIONS(2309), - [aux_sym_stdin_null_token1] = ACTIONS(2309), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2309), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2309), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2309), - [aux_sym_syslog_facility_token1] = ACTIONS(2309), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2309), - [aux_sym_keep_alive_token1] = ACTIONS(2309), - [aux_sym_tunnel_token1] = ACTIONS(2311), - [aux_sym_tunnel_device_token1] = ACTIONS(2309), - [aux_sym_update_host_keys_token1] = ACTIONS(2309), - [aux_sym_use_keychain_token1] = ACTIONS(2309), - [aux_sym_use_roaming_token1] = ACTIONS(2309), - [aux_sym_user_token1] = ACTIONS(2311), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2309), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2309), - [aux_sym_visual_host_key_token1] = ACTIONS(2309), - [aux_sym_xauth_location_token1] = ACTIONS(2309), + [ts_builtin_sym_end] = ACTIONS(2316), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2318), + [anon_sym_DQUOTE] = ACTIONS(2320), + [aux_sym_match_token1] = ACTIONS(2316), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2316), + [aux_sym_address_family_token1] = ACTIONS(2316), + [aux_sym_batch_mode_token1] = ACTIONS(2316), + [aux_sym_bind_address_token1] = ACTIONS(2316), + [aux_sym_bind_interface_token1] = ACTIONS(2316), + [aux_sym_canonical_domains_token1] = ACTIONS(2316), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2316), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2316), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2316), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2316), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2316), + [aux_sym_certificate_file_token1] = ACTIONS(2316), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2316), + [aux_sym_check_host_ip_token1] = ACTIONS(2316), + [aux_sym_ciphers_token1] = ACTIONS(2316), + [aux_sym_cipher_token1] = ACTIONS(2318), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2316), + [aux_sym_compression_token1] = ACTIONS(2316), + [aux_sym_connection_attempts_token1] = ACTIONS(2316), + [aux_sym_connect_timeout_token1] = ACTIONS(2316), + [aux_sym_control_master_token1] = ACTIONS(2316), + [aux_sym_control_path_token1] = ACTIONS(2316), + [aux_sym_control_persist_token1] = ACTIONS(2316), + [aux_sym_dynamic_forward_token1] = ACTIONS(2316), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2316), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2316), + [aux_sym_escape_char_token1] = ACTIONS(2316), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2316), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2316), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2316), + [aux_sym_forward_agent_token1] = ACTIONS(2316), + [aux_sym_forward_x11_token1] = ACTIONS(2318), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2316), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2316), + [aux_sym_gateway_ports_token1] = ACTIONS(2316), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2316), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2316), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2316), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2316), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2316), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2316), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2316), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2316), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2316), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2316), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2316), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2316), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2316), + [aux_sym_host_key_alias_token1] = ACTIONS(2316), + [aux_sym_hostname_token1] = ACTIONS(2316), + [aux_sym_identities_only_token1] = ACTIONS(2316), + [aux_sym_identity_agent_token1] = ACTIONS(2316), + [aux_sym_identity_file_token1] = ACTIONS(2316), + [aux_sym_ignore_unknown_token1] = ACTIONS(2316), + [aux_sym_include_token1] = ACTIONS(2316), + [aux_sym_ip_qos_token1] = ACTIONS(2316), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2316), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2316), + [aux_sym_kex_algorithms_token1] = ACTIONS(2316), + [aux_sym_known_hosts_command_token1] = ACTIONS(2316), + [aux_sym_local_command_token1] = ACTIONS(2316), + [aux_sym_local_forward_token1] = ACTIONS(2316), + [aux_sym_log_level_token1] = ACTIONS(2316), + [aux_sym_log_verbose_token1] = ACTIONS(2316), + [aux_sym_macs_token1] = ACTIONS(2316), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2316), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2316), + [aux_sym_password_authentication_token1] = ACTIONS(2316), + [aux_sym_permit_local_command_token1] = ACTIONS(2316), + [aux_sym_permit_remote_open_token1] = ACTIONS(2316), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2316), + [aux_sym_port_token1] = ACTIONS(2316), + [aux_sym_preferred_authentications_token1] = ACTIONS(2316), + [aux_sym_protocol_token1] = ACTIONS(2316), + [aux_sym_proxy_command_token1] = ACTIONS(2316), + [aux_sym_proxy_jump_token1] = ACTIONS(2316), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2316), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2316), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2316), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2316), + [aux_sym_rekey_limit_token1] = ACTIONS(2316), + [aux_sym_remote_command_token1] = ACTIONS(2316), + [aux_sym_remote_forward_token1] = ACTIONS(2316), + [aux_sym_request_tty_token1] = ACTIONS(2316), + [aux_sym_required_rsa_size_token1] = ACTIONS(2316), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2316), + [aux_sym_security_key_provider_token1] = ACTIONS(2316), + [aux_sym_send_env_token1] = ACTIONS(2316), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2316), + [aux_sym_server_alive_interval_token1] = ACTIONS(2316), + [aux_sym_session_type_token1] = ACTIONS(2316), + [aux_sym_set_env_token1] = ACTIONS(2316), + [aux_sym_stdin_null_token1] = ACTIONS(2316), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2316), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2316), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2316), + [aux_sym_syslog_facility_token1] = ACTIONS(2316), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2316), + [aux_sym_keep_alive_token1] = ACTIONS(2316), + [aux_sym_tunnel_token1] = ACTIONS(2318), + [aux_sym_tunnel_device_token1] = ACTIONS(2316), + [aux_sym_update_host_keys_token1] = ACTIONS(2316), + [aux_sym_use_keychain_token1] = ACTIONS(2316), + [aux_sym_use_roaming_token1] = ACTIONS(2316), + [aux_sym_user_token1] = ACTIONS(2318), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2316), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2316), + [aux_sym_visual_host_key_token1] = ACTIONS(2316), + [aux_sym_xauth_location_token1] = ACTIONS(2316), }, [311] = { - [ts_builtin_sym_end] = ACTIONS(2315), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2317), - [anon_sym_DQUOTE] = ACTIONS(2315), - [aux_sym_match_token1] = ACTIONS(2315), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2315), - [aux_sym_address_family_token1] = ACTIONS(2315), - [aux_sym_batch_mode_token1] = ACTIONS(2315), - [aux_sym_bind_address_token1] = ACTIONS(2315), - [aux_sym_bind_interface_token1] = ACTIONS(2315), - [aux_sym_canonical_domains_token1] = ACTIONS(2315), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2315), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2315), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2315), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2315), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2315), - [aux_sym_certificate_file_token1] = ACTIONS(2315), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2315), - [aux_sym_check_host_ip_token1] = ACTIONS(2315), - [aux_sym_ciphers_token1] = ACTIONS(2315), - [aux_sym_cipher_token1] = ACTIONS(2317), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2315), - [aux_sym_compression_token1] = ACTIONS(2315), - [aux_sym_connection_attempts_token1] = ACTIONS(2315), - [aux_sym_connect_timeout_token1] = ACTIONS(2315), - [aux_sym_control_master_token1] = ACTIONS(2315), - [aux_sym_control_path_token1] = ACTIONS(2315), - [aux_sym_control_persist_token1] = ACTIONS(2315), - [aux_sym_dynamic_forward_token1] = ACTIONS(2315), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2315), - [aux_sym_escape_char_token1] = ACTIONS(2315), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2315), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2315), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2315), - [aux_sym_forward_agent_token1] = ACTIONS(2315), - [aux_sym_forward_x11_token1] = ACTIONS(2317), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2315), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2315), - [aux_sym_gateway_ports_token1] = ACTIONS(2315), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2315), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2315), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2315), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2315), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2315), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2315), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2315), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2315), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2315), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2315), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2315), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2315), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2315), - [aux_sym_host_key_alias_token1] = ACTIONS(2315), - [aux_sym_hostname_token1] = ACTIONS(2315), - [aux_sym_identities_only_token1] = ACTIONS(2315), - [aux_sym_identity_agent_token1] = ACTIONS(2315), - [aux_sym_identity_file_token1] = ACTIONS(2315), - [aux_sym_ignore_unknown_token1] = ACTIONS(2315), - [aux_sym_include_token1] = ACTIONS(2315), - [aux_sym_ip_qos_token1] = ACTIONS(2315), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2315), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2315), - [aux_sym_kex_algorithms_token1] = ACTIONS(2315), - [aux_sym_known_hosts_command_token1] = ACTIONS(2315), - [aux_sym_local_command_token1] = ACTIONS(2315), - [aux_sym_local_forward_token1] = ACTIONS(2315), - [aux_sym_log_level_token1] = ACTIONS(2315), - [aux_sym_log_verbose_token1] = ACTIONS(2315), - [aux_sym_macs_token1] = ACTIONS(2315), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2315), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2315), - [aux_sym_password_authentication_token1] = ACTIONS(2315), - [aux_sym_permit_local_command_token1] = ACTIONS(2315), - [aux_sym_permit_remote_open_token1] = ACTIONS(2315), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2315), - [aux_sym_port_token1] = ACTIONS(2315), - [aux_sym_preferred_authentications_token1] = ACTIONS(2315), - [aux_sym_protocol_token1] = ACTIONS(2315), - [aux_sym_proxy_command_token1] = ACTIONS(2315), - [aux_sym_proxy_jump_token1] = ACTIONS(2315), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2315), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2315), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2315), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2315), - [aux_sym_rekey_limit_token1] = ACTIONS(2315), - [aux_sym_remote_command_token1] = ACTIONS(2315), - [aux_sym_remote_forward_token1] = ACTIONS(2315), - [aux_sym_request_tty_token1] = ACTIONS(2315), - [aux_sym_required_rsa_size_token1] = ACTIONS(2315), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2315), - [aux_sym_security_key_provider_token1] = ACTIONS(2315), - [aux_sym_send_env_token1] = ACTIONS(2315), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2315), - [aux_sym_server_alive_interval_token1] = ACTIONS(2315), - [aux_sym_session_type_token1] = ACTIONS(2315), - [aux_sym_set_env_token1] = ACTIONS(2315), - [aux_sym_stdin_null_token1] = ACTIONS(2315), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2315), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2315), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2315), - [aux_sym_syslog_facility_token1] = ACTIONS(2315), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2315), - [aux_sym_keep_alive_token1] = ACTIONS(2315), - [aux_sym_tunnel_token1] = ACTIONS(2317), - [aux_sym_tunnel_device_token1] = ACTIONS(2315), - [aux_sym_update_host_keys_token1] = ACTIONS(2315), - [aux_sym_use_keychain_token1] = ACTIONS(2315), - [aux_sym_use_roaming_token1] = ACTIONS(2315), - [aux_sym_user_token1] = ACTIONS(2317), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2315), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2315), - [aux_sym_visual_host_key_token1] = ACTIONS(2315), - [aux_sym_xauth_location_token1] = ACTIONS(2315), + [ts_builtin_sym_end] = ACTIONS(2322), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2324), + [anon_sym_DQUOTE] = ACTIONS(2322), + [aux_sym_match_token1] = ACTIONS(2322), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2322), + [aux_sym_address_family_token1] = ACTIONS(2322), + [aux_sym_batch_mode_token1] = ACTIONS(2322), + [aux_sym_bind_address_token1] = ACTIONS(2322), + [aux_sym_bind_interface_token1] = ACTIONS(2322), + [aux_sym_canonical_domains_token1] = ACTIONS(2322), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2322), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2322), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2322), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2322), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2322), + [aux_sym_certificate_file_token1] = ACTIONS(2322), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2322), + [aux_sym_check_host_ip_token1] = ACTIONS(2322), + [aux_sym_ciphers_token1] = ACTIONS(2322), + [aux_sym_cipher_token1] = ACTIONS(2324), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2322), + [aux_sym_compression_token1] = ACTIONS(2322), + [aux_sym_connection_attempts_token1] = ACTIONS(2322), + [aux_sym_connect_timeout_token1] = ACTIONS(2322), + [aux_sym_control_master_token1] = ACTIONS(2322), + [aux_sym_control_path_token1] = ACTIONS(2322), + [aux_sym_control_persist_token1] = ACTIONS(2322), + [aux_sym_dynamic_forward_token1] = ACTIONS(2322), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2322), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2322), + [aux_sym_escape_char_token1] = ACTIONS(2322), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2322), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2322), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2322), + [aux_sym_forward_agent_token1] = ACTIONS(2322), + [aux_sym_forward_x11_token1] = ACTIONS(2324), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2322), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2322), + [aux_sym_gateway_ports_token1] = ACTIONS(2322), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2322), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2322), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2322), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2322), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2322), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2322), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2322), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2322), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2322), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2322), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2322), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2322), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2322), + [aux_sym_host_key_alias_token1] = ACTIONS(2322), + [aux_sym_hostname_token1] = ACTIONS(2322), + [aux_sym_identities_only_token1] = ACTIONS(2322), + [aux_sym_identity_agent_token1] = ACTIONS(2322), + [aux_sym_identity_file_token1] = ACTIONS(2322), + [aux_sym_ignore_unknown_token1] = ACTIONS(2322), + [aux_sym_include_token1] = ACTIONS(2322), + [aux_sym_ip_qos_token1] = ACTIONS(2322), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2322), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2322), + [aux_sym_kex_algorithms_token1] = ACTIONS(2322), + [aux_sym_known_hosts_command_token1] = ACTIONS(2322), + [aux_sym_local_command_token1] = ACTIONS(2322), + [aux_sym_local_forward_token1] = ACTIONS(2322), + [aux_sym_log_level_token1] = ACTIONS(2322), + [aux_sym_log_verbose_token1] = ACTIONS(2322), + [aux_sym_macs_token1] = ACTIONS(2322), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2322), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2322), + [aux_sym_password_authentication_token1] = ACTIONS(2322), + [aux_sym_permit_local_command_token1] = ACTIONS(2322), + [aux_sym_permit_remote_open_token1] = ACTIONS(2322), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2322), + [aux_sym_port_token1] = ACTIONS(2322), + [aux_sym_preferred_authentications_token1] = ACTIONS(2322), + [aux_sym_protocol_token1] = ACTIONS(2322), + [aux_sym_proxy_command_token1] = ACTIONS(2322), + [aux_sym_proxy_jump_token1] = ACTIONS(2322), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2322), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2322), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2322), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2322), + [aux_sym_rekey_limit_token1] = ACTIONS(2322), + [aux_sym_remote_command_token1] = ACTIONS(2322), + [aux_sym_remote_forward_token1] = ACTIONS(2322), + [aux_sym_request_tty_token1] = ACTIONS(2322), + [aux_sym_required_rsa_size_token1] = ACTIONS(2322), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2322), + [aux_sym_security_key_provider_token1] = ACTIONS(2322), + [aux_sym_send_env_token1] = ACTIONS(2322), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2322), + [aux_sym_server_alive_interval_token1] = ACTIONS(2322), + [aux_sym_session_type_token1] = ACTIONS(2322), + [aux_sym_set_env_token1] = ACTIONS(2322), + [aux_sym_stdin_null_token1] = ACTIONS(2322), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2322), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2322), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2322), + [aux_sym_syslog_facility_token1] = ACTIONS(2322), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2322), + [aux_sym_keep_alive_token1] = ACTIONS(2322), + [aux_sym_tunnel_token1] = ACTIONS(2324), + [aux_sym_tunnel_device_token1] = ACTIONS(2322), + [aux_sym_update_host_keys_token1] = ACTIONS(2322), + [aux_sym_use_keychain_token1] = ACTIONS(2322), + [aux_sym_use_roaming_token1] = ACTIONS(2322), + [aux_sym_user_token1] = ACTIONS(2324), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2322), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2322), + [aux_sym_visual_host_key_token1] = ACTIONS(2322), + [aux_sym_xauth_location_token1] = ACTIONS(2322), }, [312] = { - [ts_builtin_sym_end] = ACTIONS(2319), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2323), - [aux_sym_match_token1] = ACTIONS(2319), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2319), - [aux_sym_address_family_token1] = ACTIONS(2319), - [aux_sym_batch_mode_token1] = ACTIONS(2319), - [aux_sym_bind_address_token1] = ACTIONS(2319), - [aux_sym_bind_interface_token1] = ACTIONS(2319), - [aux_sym_canonical_domains_token1] = ACTIONS(2319), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2319), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2319), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2319), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2319), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2319), - [aux_sym_certificate_file_token1] = ACTIONS(2319), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2319), - [aux_sym_check_host_ip_token1] = ACTIONS(2319), - [aux_sym_ciphers_token1] = ACTIONS(2319), - [aux_sym_cipher_token1] = ACTIONS(2321), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2319), - [aux_sym_compression_token1] = ACTIONS(2319), - [aux_sym_connection_attempts_token1] = ACTIONS(2319), - [aux_sym_connect_timeout_token1] = ACTIONS(2319), - [aux_sym_control_master_token1] = ACTIONS(2319), - [aux_sym_control_path_token1] = ACTIONS(2319), - [aux_sym_control_persist_token1] = ACTIONS(2319), - [aux_sym_dynamic_forward_token1] = ACTIONS(2319), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2319), - [aux_sym_escape_char_token1] = ACTIONS(2319), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2319), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2319), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2319), - [aux_sym_forward_agent_token1] = ACTIONS(2319), - [aux_sym_forward_x11_token1] = ACTIONS(2321), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2319), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2319), - [aux_sym_gateway_ports_token1] = ACTIONS(2319), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2319), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2319), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2319), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2319), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2319), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2319), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2319), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2319), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2319), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2319), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2319), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2319), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2319), - [aux_sym_host_key_alias_token1] = ACTIONS(2319), - [aux_sym_hostname_token1] = ACTIONS(2319), - [aux_sym_identities_only_token1] = ACTIONS(2319), - [aux_sym_identity_agent_token1] = ACTIONS(2319), - [aux_sym_identity_file_token1] = ACTIONS(2319), - [aux_sym_ignore_unknown_token1] = ACTIONS(2319), - [aux_sym_include_token1] = ACTIONS(2319), - [aux_sym_ip_qos_token1] = ACTIONS(2319), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2319), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2319), - [aux_sym_kex_algorithms_token1] = ACTIONS(2319), - [aux_sym_known_hosts_command_token1] = ACTIONS(2319), - [aux_sym_local_command_token1] = ACTIONS(2319), - [aux_sym_local_forward_token1] = ACTIONS(2319), - [aux_sym_log_level_token1] = ACTIONS(2319), - [aux_sym_log_verbose_token1] = ACTIONS(2319), - [aux_sym_macs_token1] = ACTIONS(2319), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2319), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2319), - [aux_sym_password_authentication_token1] = ACTIONS(2319), - [aux_sym_permit_local_command_token1] = ACTIONS(2319), - [aux_sym_permit_remote_open_token1] = ACTIONS(2319), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2319), - [aux_sym_port_token1] = ACTIONS(2319), - [aux_sym_preferred_authentications_token1] = ACTIONS(2319), - [aux_sym_protocol_token1] = ACTIONS(2319), - [aux_sym_proxy_command_token1] = ACTIONS(2319), - [aux_sym_proxy_jump_token1] = ACTIONS(2319), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2319), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2319), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2319), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2319), - [aux_sym_rekey_limit_token1] = ACTIONS(2319), - [aux_sym_remote_command_token1] = ACTIONS(2319), - [aux_sym_remote_forward_token1] = ACTIONS(2319), - [aux_sym_request_tty_token1] = ACTIONS(2319), - [aux_sym_required_rsa_size_token1] = ACTIONS(2319), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2319), - [aux_sym_security_key_provider_token1] = ACTIONS(2319), - [aux_sym_send_env_token1] = ACTIONS(2319), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2319), - [aux_sym_server_alive_interval_token1] = ACTIONS(2319), - [aux_sym_session_type_token1] = ACTIONS(2319), - [aux_sym_set_env_token1] = ACTIONS(2319), - [aux_sym_stdin_null_token1] = ACTIONS(2319), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2319), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2319), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2319), - [aux_sym_syslog_facility_token1] = ACTIONS(2319), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2319), - [aux_sym_keep_alive_token1] = ACTIONS(2319), - [aux_sym_tunnel_token1] = ACTIONS(2321), - [aux_sym_tunnel_device_token1] = ACTIONS(2319), - [aux_sym_update_host_keys_token1] = ACTIONS(2319), - [aux_sym_use_keychain_token1] = ACTIONS(2319), - [aux_sym_use_roaming_token1] = ACTIONS(2319), - [aux_sym_user_token1] = ACTIONS(2321), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2319), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2319), - [aux_sym_visual_host_key_token1] = ACTIONS(2319), - [aux_sym_xauth_location_token1] = ACTIONS(2319), + [ts_builtin_sym_end] = ACTIONS(2326), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2328), + [anon_sym_DQUOTE] = ACTIONS(2330), + [aux_sym_match_token1] = ACTIONS(2326), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2326), + [aux_sym_address_family_token1] = ACTIONS(2326), + [aux_sym_batch_mode_token1] = ACTIONS(2326), + [aux_sym_bind_address_token1] = ACTIONS(2326), + [aux_sym_bind_interface_token1] = ACTIONS(2326), + [aux_sym_canonical_domains_token1] = ACTIONS(2326), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2326), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2326), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2326), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2326), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2326), + [aux_sym_certificate_file_token1] = ACTIONS(2326), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2326), + [aux_sym_check_host_ip_token1] = ACTIONS(2326), + [aux_sym_ciphers_token1] = ACTIONS(2326), + [aux_sym_cipher_token1] = ACTIONS(2328), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2326), + [aux_sym_compression_token1] = ACTIONS(2326), + [aux_sym_connection_attempts_token1] = ACTIONS(2326), + [aux_sym_connect_timeout_token1] = ACTIONS(2326), + [aux_sym_control_master_token1] = ACTIONS(2326), + [aux_sym_control_path_token1] = ACTIONS(2326), + [aux_sym_control_persist_token1] = ACTIONS(2326), + [aux_sym_dynamic_forward_token1] = ACTIONS(2326), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2326), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2326), + [aux_sym_escape_char_token1] = ACTIONS(2326), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2326), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2326), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2326), + [aux_sym_forward_agent_token1] = ACTIONS(2326), + [aux_sym_forward_x11_token1] = ACTIONS(2328), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2326), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2326), + [aux_sym_gateway_ports_token1] = ACTIONS(2326), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2326), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2326), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2326), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2326), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2326), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2326), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2326), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2326), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2326), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2326), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2326), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2326), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2326), + [aux_sym_host_key_alias_token1] = ACTIONS(2326), + [aux_sym_hostname_token1] = ACTIONS(2326), + [aux_sym_identities_only_token1] = ACTIONS(2326), + [aux_sym_identity_agent_token1] = ACTIONS(2326), + [aux_sym_identity_file_token1] = ACTIONS(2326), + [aux_sym_ignore_unknown_token1] = ACTIONS(2326), + [aux_sym_include_token1] = ACTIONS(2326), + [aux_sym_ip_qos_token1] = ACTIONS(2326), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2326), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2326), + [aux_sym_kex_algorithms_token1] = ACTIONS(2326), + [aux_sym_known_hosts_command_token1] = ACTIONS(2326), + [aux_sym_local_command_token1] = ACTIONS(2326), + [aux_sym_local_forward_token1] = ACTIONS(2326), + [aux_sym_log_level_token1] = ACTIONS(2326), + [aux_sym_log_verbose_token1] = ACTIONS(2326), + [aux_sym_macs_token1] = ACTIONS(2326), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2326), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2326), + [aux_sym_password_authentication_token1] = ACTIONS(2326), + [aux_sym_permit_local_command_token1] = ACTIONS(2326), + [aux_sym_permit_remote_open_token1] = ACTIONS(2326), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2326), + [aux_sym_port_token1] = ACTIONS(2326), + [aux_sym_preferred_authentications_token1] = ACTIONS(2326), + [aux_sym_protocol_token1] = ACTIONS(2326), + [aux_sym_proxy_command_token1] = ACTIONS(2326), + [aux_sym_proxy_jump_token1] = ACTIONS(2326), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2326), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2326), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2326), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2326), + [aux_sym_rekey_limit_token1] = ACTIONS(2326), + [aux_sym_remote_command_token1] = ACTIONS(2326), + [aux_sym_remote_forward_token1] = ACTIONS(2326), + [aux_sym_request_tty_token1] = ACTIONS(2326), + [aux_sym_required_rsa_size_token1] = ACTIONS(2326), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2326), + [aux_sym_security_key_provider_token1] = ACTIONS(2326), + [aux_sym_send_env_token1] = ACTIONS(2326), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2326), + [aux_sym_server_alive_interval_token1] = ACTIONS(2326), + [aux_sym_session_type_token1] = ACTIONS(2326), + [aux_sym_set_env_token1] = ACTIONS(2326), + [aux_sym_stdin_null_token1] = ACTIONS(2326), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2326), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2326), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2326), + [aux_sym_syslog_facility_token1] = ACTIONS(2326), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2326), + [aux_sym_keep_alive_token1] = ACTIONS(2326), + [aux_sym_tunnel_token1] = ACTIONS(2328), + [aux_sym_tunnel_device_token1] = ACTIONS(2326), + [aux_sym_update_host_keys_token1] = ACTIONS(2326), + [aux_sym_use_keychain_token1] = ACTIONS(2326), + [aux_sym_use_roaming_token1] = ACTIONS(2326), + [aux_sym_user_token1] = ACTIONS(2328), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2326), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2326), + [aux_sym_visual_host_key_token1] = ACTIONS(2326), + [aux_sym_xauth_location_token1] = ACTIONS(2326), }, [313] = { - [ts_builtin_sym_end] = ACTIONS(2325), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2325), - [aux_sym_match_token1] = ACTIONS(2325), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2325), - [aux_sym_address_family_token1] = ACTIONS(2325), - [aux_sym_batch_mode_token1] = ACTIONS(2325), - [aux_sym_bind_address_token1] = ACTIONS(2325), - [aux_sym_bind_interface_token1] = ACTIONS(2325), - [aux_sym_canonical_domains_token1] = ACTIONS(2325), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2325), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2325), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2325), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2325), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2325), - [aux_sym_certificate_file_token1] = ACTIONS(2325), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2325), - [aux_sym_check_host_ip_token1] = ACTIONS(2325), - [aux_sym_ciphers_token1] = ACTIONS(2325), - [aux_sym_cipher_token1] = ACTIONS(2327), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2325), - [aux_sym_compression_token1] = ACTIONS(2325), - [aux_sym_connection_attempts_token1] = ACTIONS(2325), - [aux_sym_connect_timeout_token1] = ACTIONS(2325), - [aux_sym_control_master_token1] = ACTIONS(2325), - [aux_sym_control_path_token1] = ACTIONS(2325), - [aux_sym_control_persist_token1] = ACTIONS(2325), - [aux_sym_dynamic_forward_token1] = ACTIONS(2325), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2325), - [aux_sym_escape_char_token1] = ACTIONS(2325), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2325), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2325), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2325), - [aux_sym_forward_agent_token1] = ACTIONS(2325), - [aux_sym_forward_x11_token1] = ACTIONS(2327), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2325), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2325), - [aux_sym_gateway_ports_token1] = ACTIONS(2325), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2325), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2325), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2325), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2325), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2325), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2325), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2325), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2325), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2325), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2325), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2325), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2325), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2325), - [aux_sym_host_key_alias_token1] = ACTIONS(2325), - [aux_sym_hostname_token1] = ACTIONS(2325), - [aux_sym_identities_only_token1] = ACTIONS(2325), - [aux_sym_identity_agent_token1] = ACTIONS(2325), - [aux_sym_identity_file_token1] = ACTIONS(2325), - [aux_sym_ignore_unknown_token1] = ACTIONS(2325), - [aux_sym_include_token1] = ACTIONS(2325), - [aux_sym_ip_qos_token1] = ACTIONS(2325), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2325), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2325), - [aux_sym_kex_algorithms_token1] = ACTIONS(2325), - [aux_sym_known_hosts_command_token1] = ACTIONS(2325), - [aux_sym_local_command_token1] = ACTIONS(2325), - [aux_sym_local_forward_token1] = ACTIONS(2325), - [aux_sym_log_level_token1] = ACTIONS(2325), - [aux_sym_log_verbose_token1] = ACTIONS(2325), - [aux_sym_macs_token1] = ACTIONS(2325), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2325), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2325), - [aux_sym_password_authentication_token1] = ACTIONS(2325), - [aux_sym_permit_local_command_token1] = ACTIONS(2325), - [aux_sym_permit_remote_open_token1] = ACTIONS(2325), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2325), - [aux_sym_port_token1] = ACTIONS(2325), - [aux_sym_preferred_authentications_token1] = ACTIONS(2325), - [aux_sym_protocol_token1] = ACTIONS(2325), - [aux_sym_proxy_command_token1] = ACTIONS(2325), - [aux_sym_proxy_jump_token1] = ACTIONS(2325), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2325), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2325), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2325), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2325), - [aux_sym_rekey_limit_token1] = ACTIONS(2325), - [aux_sym_remote_command_token1] = ACTIONS(2325), - [aux_sym_remote_forward_token1] = ACTIONS(2325), - [aux_sym_request_tty_token1] = ACTIONS(2325), - [aux_sym_required_rsa_size_token1] = ACTIONS(2325), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2325), - [aux_sym_security_key_provider_token1] = ACTIONS(2325), - [aux_sym_send_env_token1] = ACTIONS(2325), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2325), - [aux_sym_server_alive_interval_token1] = ACTIONS(2325), - [aux_sym_session_type_token1] = ACTIONS(2325), - [aux_sym_set_env_token1] = ACTIONS(2325), - [aux_sym_stdin_null_token1] = ACTIONS(2325), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2325), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2325), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2325), - [aux_sym_syslog_facility_token1] = ACTIONS(2325), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2325), - [aux_sym_keep_alive_token1] = ACTIONS(2325), - [aux_sym_tunnel_token1] = ACTIONS(2327), - [aux_sym_tunnel_device_token1] = ACTIONS(2325), - [aux_sym_update_host_keys_token1] = ACTIONS(2325), - [aux_sym_use_keychain_token1] = ACTIONS(2325), - [aux_sym_use_roaming_token1] = ACTIONS(2325), - [aux_sym_user_token1] = ACTIONS(2327), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2325), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2325), - [aux_sym_visual_host_key_token1] = ACTIONS(2325), - [aux_sym_xauth_location_token1] = ACTIONS(2325), + [ts_builtin_sym_end] = ACTIONS(2332), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2334), + [anon_sym_DQUOTE] = ACTIONS(2332), + [aux_sym_match_token1] = ACTIONS(2332), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2332), + [aux_sym_address_family_token1] = ACTIONS(2332), + [aux_sym_batch_mode_token1] = ACTIONS(2332), + [aux_sym_bind_address_token1] = ACTIONS(2332), + [aux_sym_bind_interface_token1] = ACTIONS(2332), + [aux_sym_canonical_domains_token1] = ACTIONS(2332), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2332), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2332), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2332), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2332), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2332), + [aux_sym_certificate_file_token1] = ACTIONS(2332), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2332), + [aux_sym_check_host_ip_token1] = ACTIONS(2332), + [aux_sym_ciphers_token1] = ACTIONS(2332), + [aux_sym_cipher_token1] = ACTIONS(2334), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2332), + [aux_sym_compression_token1] = ACTIONS(2332), + [aux_sym_connection_attempts_token1] = ACTIONS(2332), + [aux_sym_connect_timeout_token1] = ACTIONS(2332), + [aux_sym_control_master_token1] = ACTIONS(2332), + [aux_sym_control_path_token1] = ACTIONS(2332), + [aux_sym_control_persist_token1] = ACTIONS(2332), + [aux_sym_dynamic_forward_token1] = ACTIONS(2332), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2332), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2332), + [aux_sym_escape_char_token1] = ACTIONS(2332), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2332), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2332), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2332), + [aux_sym_forward_agent_token1] = ACTIONS(2332), + [aux_sym_forward_x11_token1] = ACTIONS(2334), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2332), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2332), + [aux_sym_gateway_ports_token1] = ACTIONS(2332), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2332), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2332), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2332), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2332), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2332), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2332), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2332), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2332), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2332), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2332), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2332), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2332), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2332), + [aux_sym_host_key_alias_token1] = ACTIONS(2332), + [aux_sym_hostname_token1] = ACTIONS(2332), + [aux_sym_identities_only_token1] = ACTIONS(2332), + [aux_sym_identity_agent_token1] = ACTIONS(2332), + [aux_sym_identity_file_token1] = ACTIONS(2332), + [aux_sym_ignore_unknown_token1] = ACTIONS(2332), + [aux_sym_include_token1] = ACTIONS(2332), + [aux_sym_ip_qos_token1] = ACTIONS(2332), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2332), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2332), + [aux_sym_kex_algorithms_token1] = ACTIONS(2332), + [aux_sym_known_hosts_command_token1] = ACTIONS(2332), + [aux_sym_local_command_token1] = ACTIONS(2332), + [aux_sym_local_forward_token1] = ACTIONS(2332), + [aux_sym_log_level_token1] = ACTIONS(2332), + [aux_sym_log_verbose_token1] = ACTIONS(2332), + [aux_sym_macs_token1] = ACTIONS(2332), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2332), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2332), + [aux_sym_password_authentication_token1] = ACTIONS(2332), + [aux_sym_permit_local_command_token1] = ACTIONS(2332), + [aux_sym_permit_remote_open_token1] = ACTIONS(2332), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2332), + [aux_sym_port_token1] = ACTIONS(2332), + [aux_sym_preferred_authentications_token1] = ACTIONS(2332), + [aux_sym_protocol_token1] = ACTIONS(2332), + [aux_sym_proxy_command_token1] = ACTIONS(2332), + [aux_sym_proxy_jump_token1] = ACTIONS(2332), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2332), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2332), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2332), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2332), + [aux_sym_rekey_limit_token1] = ACTIONS(2332), + [aux_sym_remote_command_token1] = ACTIONS(2332), + [aux_sym_remote_forward_token1] = ACTIONS(2332), + [aux_sym_request_tty_token1] = ACTIONS(2332), + [aux_sym_required_rsa_size_token1] = ACTIONS(2332), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2332), + [aux_sym_security_key_provider_token1] = ACTIONS(2332), + [aux_sym_send_env_token1] = ACTIONS(2332), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2332), + [aux_sym_server_alive_interval_token1] = ACTIONS(2332), + [aux_sym_session_type_token1] = ACTIONS(2332), + [aux_sym_set_env_token1] = ACTIONS(2332), + [aux_sym_stdin_null_token1] = ACTIONS(2332), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2332), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2332), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2332), + [aux_sym_syslog_facility_token1] = ACTIONS(2332), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2332), + [aux_sym_keep_alive_token1] = ACTIONS(2332), + [aux_sym_tunnel_token1] = ACTIONS(2334), + [aux_sym_tunnel_device_token1] = ACTIONS(2332), + [aux_sym_update_host_keys_token1] = ACTIONS(2332), + [aux_sym_use_keychain_token1] = ACTIONS(2332), + [aux_sym_use_roaming_token1] = ACTIONS(2332), + [aux_sym_user_token1] = ACTIONS(2334), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2332), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2332), + [aux_sym_visual_host_key_token1] = ACTIONS(2332), + [aux_sym_xauth_location_token1] = ACTIONS(2332), }, [314] = { - [ts_builtin_sym_end] = ACTIONS(2329), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2331), - [anon_sym_DQUOTE] = ACTIONS(2333), - [aux_sym_match_token1] = ACTIONS(2329), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2329), - [aux_sym_address_family_token1] = ACTIONS(2329), - [aux_sym_batch_mode_token1] = ACTIONS(2329), - [aux_sym_bind_address_token1] = ACTIONS(2329), - [aux_sym_bind_interface_token1] = ACTIONS(2329), - [aux_sym_canonical_domains_token1] = ACTIONS(2329), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2329), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2329), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2329), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2329), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2329), - [aux_sym_certificate_file_token1] = ACTIONS(2329), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2329), - [aux_sym_check_host_ip_token1] = ACTIONS(2329), - [aux_sym_ciphers_token1] = ACTIONS(2329), - [aux_sym_cipher_token1] = ACTIONS(2331), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2329), - [aux_sym_compression_token1] = ACTIONS(2329), - [aux_sym_connection_attempts_token1] = ACTIONS(2329), - [aux_sym_connect_timeout_token1] = ACTIONS(2329), - [aux_sym_control_master_token1] = ACTIONS(2329), - [aux_sym_control_path_token1] = ACTIONS(2329), - [aux_sym_control_persist_token1] = ACTIONS(2329), - [aux_sym_dynamic_forward_token1] = ACTIONS(2329), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2329), - [aux_sym_escape_char_token1] = ACTIONS(2329), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2329), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2329), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2329), - [aux_sym_forward_agent_token1] = ACTIONS(2329), - [aux_sym_forward_x11_token1] = ACTIONS(2331), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2329), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2329), - [aux_sym_gateway_ports_token1] = ACTIONS(2329), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2329), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2329), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2329), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2329), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2329), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2329), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2329), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2329), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2329), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2329), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2329), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2329), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2329), - [aux_sym_host_key_alias_token1] = ACTIONS(2329), - [aux_sym_hostname_token1] = ACTIONS(2329), - [aux_sym_identities_only_token1] = ACTIONS(2329), - [aux_sym_identity_agent_token1] = ACTIONS(2329), - [aux_sym_identity_file_token1] = ACTIONS(2329), - [aux_sym_ignore_unknown_token1] = ACTIONS(2329), - [aux_sym_include_token1] = ACTIONS(2329), - [aux_sym_ip_qos_token1] = ACTIONS(2329), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2329), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2329), - [aux_sym_kex_algorithms_token1] = ACTIONS(2329), - [aux_sym_known_hosts_command_token1] = ACTIONS(2329), - [aux_sym_local_command_token1] = ACTIONS(2329), - [aux_sym_local_forward_token1] = ACTIONS(2329), - [aux_sym_log_level_token1] = ACTIONS(2329), - [aux_sym_log_verbose_token1] = ACTIONS(2329), - [aux_sym_macs_token1] = ACTIONS(2329), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2329), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2329), - [aux_sym_password_authentication_token1] = ACTIONS(2329), - [aux_sym_permit_local_command_token1] = ACTIONS(2329), - [aux_sym_permit_remote_open_token1] = ACTIONS(2329), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2329), - [aux_sym_port_token1] = ACTIONS(2329), - [aux_sym_preferred_authentications_token1] = ACTIONS(2329), - [aux_sym_protocol_token1] = ACTIONS(2329), - [aux_sym_proxy_command_token1] = ACTIONS(2329), - [aux_sym_proxy_jump_token1] = ACTIONS(2329), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2329), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2329), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2329), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2329), - [aux_sym_rekey_limit_token1] = ACTIONS(2329), - [aux_sym_remote_command_token1] = ACTIONS(2329), - [aux_sym_remote_forward_token1] = ACTIONS(2329), - [aux_sym_request_tty_token1] = ACTIONS(2329), - [aux_sym_required_rsa_size_token1] = ACTIONS(2329), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2329), - [aux_sym_security_key_provider_token1] = ACTIONS(2329), - [aux_sym_send_env_token1] = ACTIONS(2329), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2329), - [aux_sym_server_alive_interval_token1] = ACTIONS(2329), - [aux_sym_session_type_token1] = ACTIONS(2329), - [aux_sym_set_env_token1] = ACTIONS(2329), - [aux_sym_stdin_null_token1] = ACTIONS(2329), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2329), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2329), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2329), - [aux_sym_syslog_facility_token1] = ACTIONS(2329), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2329), - [aux_sym_keep_alive_token1] = ACTIONS(2329), - [aux_sym_tunnel_token1] = ACTIONS(2331), - [aux_sym_tunnel_device_token1] = ACTIONS(2329), - [aux_sym_update_host_keys_token1] = ACTIONS(2329), - [aux_sym_use_keychain_token1] = ACTIONS(2329), - [aux_sym_use_roaming_token1] = ACTIONS(2329), - [aux_sym_user_token1] = ACTIONS(2331), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2329), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2329), - [aux_sym_visual_host_key_token1] = ACTIONS(2329), - [aux_sym_xauth_location_token1] = ACTIONS(2329), + [ts_builtin_sym_end] = ACTIONS(2336), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2338), + [anon_sym_DQUOTE] = ACTIONS(2340), + [aux_sym_match_token1] = ACTIONS(2336), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2336), + [aux_sym_address_family_token1] = ACTIONS(2336), + [aux_sym_batch_mode_token1] = ACTIONS(2336), + [aux_sym_bind_address_token1] = ACTIONS(2336), + [aux_sym_bind_interface_token1] = ACTIONS(2336), + [aux_sym_canonical_domains_token1] = ACTIONS(2336), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2336), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2336), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2336), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2336), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2336), + [aux_sym_certificate_file_token1] = ACTIONS(2336), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2336), + [aux_sym_check_host_ip_token1] = ACTIONS(2336), + [aux_sym_ciphers_token1] = ACTIONS(2336), + [aux_sym_cipher_token1] = ACTIONS(2338), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2336), + [aux_sym_compression_token1] = ACTIONS(2336), + [aux_sym_connection_attempts_token1] = ACTIONS(2336), + [aux_sym_connect_timeout_token1] = ACTIONS(2336), + [aux_sym_control_master_token1] = ACTIONS(2336), + [aux_sym_control_path_token1] = ACTIONS(2336), + [aux_sym_control_persist_token1] = ACTIONS(2336), + [aux_sym_dynamic_forward_token1] = ACTIONS(2336), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2336), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2336), + [aux_sym_escape_char_token1] = ACTIONS(2336), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2336), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2336), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2336), + [aux_sym_forward_agent_token1] = ACTIONS(2336), + [aux_sym_forward_x11_token1] = ACTIONS(2338), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2336), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2336), + [aux_sym_gateway_ports_token1] = ACTIONS(2336), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2336), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2336), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2336), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2336), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2336), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2336), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2336), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2336), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2336), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2336), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2336), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2336), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2336), + [aux_sym_host_key_alias_token1] = ACTIONS(2336), + [aux_sym_hostname_token1] = ACTIONS(2336), + [aux_sym_identities_only_token1] = ACTIONS(2336), + [aux_sym_identity_agent_token1] = ACTIONS(2336), + [aux_sym_identity_file_token1] = ACTIONS(2336), + [aux_sym_ignore_unknown_token1] = ACTIONS(2336), + [aux_sym_include_token1] = ACTIONS(2336), + [aux_sym_ip_qos_token1] = ACTIONS(2336), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2336), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2336), + [aux_sym_kex_algorithms_token1] = ACTIONS(2336), + [aux_sym_known_hosts_command_token1] = ACTIONS(2336), + [aux_sym_local_command_token1] = ACTIONS(2336), + [aux_sym_local_forward_token1] = ACTIONS(2336), + [aux_sym_log_level_token1] = ACTIONS(2336), + [aux_sym_log_verbose_token1] = ACTIONS(2336), + [aux_sym_macs_token1] = ACTIONS(2336), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2336), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2336), + [aux_sym_password_authentication_token1] = ACTIONS(2336), + [aux_sym_permit_local_command_token1] = ACTIONS(2336), + [aux_sym_permit_remote_open_token1] = ACTIONS(2336), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2336), + [aux_sym_port_token1] = ACTIONS(2336), + [aux_sym_preferred_authentications_token1] = ACTIONS(2336), + [aux_sym_protocol_token1] = ACTIONS(2336), + [aux_sym_proxy_command_token1] = ACTIONS(2336), + [aux_sym_proxy_jump_token1] = ACTIONS(2336), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2336), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2336), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2336), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2336), + [aux_sym_rekey_limit_token1] = ACTIONS(2336), + [aux_sym_remote_command_token1] = ACTIONS(2336), + [aux_sym_remote_forward_token1] = ACTIONS(2336), + [aux_sym_request_tty_token1] = ACTIONS(2336), + [aux_sym_required_rsa_size_token1] = ACTIONS(2336), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2336), + [aux_sym_security_key_provider_token1] = ACTIONS(2336), + [aux_sym_send_env_token1] = ACTIONS(2336), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2336), + [aux_sym_server_alive_interval_token1] = ACTIONS(2336), + [aux_sym_session_type_token1] = ACTIONS(2336), + [aux_sym_set_env_token1] = ACTIONS(2336), + [aux_sym_stdin_null_token1] = ACTIONS(2336), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2336), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2336), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2336), + [aux_sym_syslog_facility_token1] = ACTIONS(2336), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2336), + [aux_sym_keep_alive_token1] = ACTIONS(2336), + [aux_sym_tunnel_token1] = ACTIONS(2338), + [aux_sym_tunnel_device_token1] = ACTIONS(2336), + [aux_sym_update_host_keys_token1] = ACTIONS(2336), + [aux_sym_use_keychain_token1] = ACTIONS(2336), + [aux_sym_use_roaming_token1] = ACTIONS(2336), + [aux_sym_user_token1] = ACTIONS(2338), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2336), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2336), + [aux_sym_visual_host_key_token1] = ACTIONS(2336), + [aux_sym_xauth_location_token1] = ACTIONS(2336), }, [315] = { - [ts_builtin_sym_end] = ACTIONS(2335), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2337), - [anon_sym_DQUOTE] = ACTIONS(2335), - [aux_sym_match_token1] = ACTIONS(2335), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2335), - [aux_sym_address_family_token1] = ACTIONS(2335), - [aux_sym_batch_mode_token1] = ACTIONS(2335), - [aux_sym_bind_address_token1] = ACTIONS(2335), - [aux_sym_bind_interface_token1] = ACTIONS(2335), - [aux_sym_canonical_domains_token1] = ACTIONS(2335), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2335), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2335), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2335), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2335), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2335), - [aux_sym_certificate_file_token1] = ACTIONS(2335), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2335), - [aux_sym_check_host_ip_token1] = ACTIONS(2335), - [aux_sym_ciphers_token1] = ACTIONS(2335), - [aux_sym_cipher_token1] = ACTIONS(2337), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2335), - [aux_sym_compression_token1] = ACTIONS(2335), - [aux_sym_connection_attempts_token1] = ACTIONS(2335), - [aux_sym_connect_timeout_token1] = ACTIONS(2335), - [aux_sym_control_master_token1] = ACTIONS(2335), - [aux_sym_control_path_token1] = ACTIONS(2335), - [aux_sym_control_persist_token1] = ACTIONS(2335), - [aux_sym_dynamic_forward_token1] = ACTIONS(2335), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2335), - [aux_sym_escape_char_token1] = ACTIONS(2335), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2335), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2335), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2335), - [aux_sym_forward_agent_token1] = ACTIONS(2335), - [aux_sym_forward_x11_token1] = ACTIONS(2337), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2335), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2335), - [aux_sym_gateway_ports_token1] = ACTIONS(2335), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2335), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2335), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2335), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2335), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2335), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2335), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2335), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2335), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2335), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2335), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2335), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2335), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2335), - [aux_sym_host_key_alias_token1] = ACTIONS(2335), - [aux_sym_hostname_token1] = ACTIONS(2335), - [aux_sym_identities_only_token1] = ACTIONS(2335), - [aux_sym_identity_agent_token1] = ACTIONS(2335), - [aux_sym_identity_file_token1] = ACTIONS(2335), - [aux_sym_ignore_unknown_token1] = ACTIONS(2335), - [aux_sym_include_token1] = ACTIONS(2335), - [aux_sym_ip_qos_token1] = ACTIONS(2335), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2335), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2335), - [aux_sym_kex_algorithms_token1] = ACTIONS(2335), - [aux_sym_known_hosts_command_token1] = ACTIONS(2335), - [aux_sym_local_command_token1] = ACTIONS(2335), - [aux_sym_local_forward_token1] = ACTIONS(2335), - [aux_sym_log_level_token1] = ACTIONS(2335), - [aux_sym_log_verbose_token1] = ACTIONS(2335), - [aux_sym_macs_token1] = ACTIONS(2335), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2335), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2335), - [aux_sym_password_authentication_token1] = ACTIONS(2335), - [aux_sym_permit_local_command_token1] = ACTIONS(2335), - [aux_sym_permit_remote_open_token1] = ACTIONS(2335), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2335), - [aux_sym_port_token1] = ACTIONS(2335), - [aux_sym_preferred_authentications_token1] = ACTIONS(2335), - [aux_sym_protocol_token1] = ACTIONS(2335), - [aux_sym_proxy_command_token1] = ACTIONS(2335), - [aux_sym_proxy_jump_token1] = ACTIONS(2335), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2335), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2335), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2335), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2335), - [aux_sym_rekey_limit_token1] = ACTIONS(2335), - [aux_sym_remote_command_token1] = ACTIONS(2335), - [aux_sym_remote_forward_token1] = ACTIONS(2335), - [aux_sym_request_tty_token1] = ACTIONS(2335), - [aux_sym_required_rsa_size_token1] = ACTIONS(2335), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2335), - [aux_sym_security_key_provider_token1] = ACTIONS(2335), - [aux_sym_send_env_token1] = ACTIONS(2335), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2335), - [aux_sym_server_alive_interval_token1] = ACTIONS(2335), - [aux_sym_session_type_token1] = ACTIONS(2335), - [aux_sym_set_env_token1] = ACTIONS(2335), - [aux_sym_stdin_null_token1] = ACTIONS(2335), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2335), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2335), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2335), - [aux_sym_syslog_facility_token1] = ACTIONS(2335), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2335), - [aux_sym_keep_alive_token1] = ACTIONS(2335), - [aux_sym_tunnel_token1] = ACTIONS(2337), - [aux_sym_tunnel_device_token1] = ACTIONS(2335), - [aux_sym_update_host_keys_token1] = ACTIONS(2335), - [aux_sym_use_keychain_token1] = ACTIONS(2335), - [aux_sym_use_roaming_token1] = ACTIONS(2335), - [aux_sym_user_token1] = ACTIONS(2337), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2335), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2335), - [aux_sym_visual_host_key_token1] = ACTIONS(2335), - [aux_sym_xauth_location_token1] = ACTIONS(2335), + [ts_builtin_sym_end] = ACTIONS(2342), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2342), + [aux_sym_match_token1] = ACTIONS(2342), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2342), + [aux_sym_address_family_token1] = ACTIONS(2342), + [aux_sym_batch_mode_token1] = ACTIONS(2342), + [aux_sym_bind_address_token1] = ACTIONS(2342), + [aux_sym_bind_interface_token1] = ACTIONS(2342), + [aux_sym_canonical_domains_token1] = ACTIONS(2342), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2342), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2342), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2342), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2342), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2342), + [aux_sym_certificate_file_token1] = ACTIONS(2342), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2342), + [aux_sym_check_host_ip_token1] = ACTIONS(2342), + [aux_sym_ciphers_token1] = ACTIONS(2342), + [aux_sym_cipher_token1] = ACTIONS(2344), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2342), + [aux_sym_compression_token1] = ACTIONS(2342), + [aux_sym_connection_attempts_token1] = ACTIONS(2342), + [aux_sym_connect_timeout_token1] = ACTIONS(2342), + [aux_sym_control_master_token1] = ACTIONS(2342), + [aux_sym_control_path_token1] = ACTIONS(2342), + [aux_sym_control_persist_token1] = ACTIONS(2342), + [aux_sym_dynamic_forward_token1] = ACTIONS(2342), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2342), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2342), + [aux_sym_escape_char_token1] = ACTIONS(2342), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2342), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2342), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2342), + [aux_sym_forward_agent_token1] = ACTIONS(2342), + [aux_sym_forward_x11_token1] = ACTIONS(2344), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2342), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2342), + [aux_sym_gateway_ports_token1] = ACTIONS(2342), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2342), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2342), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2342), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2342), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2342), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2342), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2342), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2342), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2342), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2342), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2342), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2342), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2342), + [aux_sym_host_key_alias_token1] = ACTIONS(2342), + [aux_sym_hostname_token1] = ACTIONS(2342), + [aux_sym_identities_only_token1] = ACTIONS(2342), + [aux_sym_identity_agent_token1] = ACTIONS(2342), + [aux_sym_identity_file_token1] = ACTIONS(2342), + [aux_sym_ignore_unknown_token1] = ACTIONS(2342), + [aux_sym_include_token1] = ACTIONS(2342), + [aux_sym_ip_qos_token1] = ACTIONS(2342), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2342), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2342), + [aux_sym_kex_algorithms_token1] = ACTIONS(2342), + [aux_sym_known_hosts_command_token1] = ACTIONS(2342), + [aux_sym_local_command_token1] = ACTIONS(2342), + [aux_sym_local_forward_token1] = ACTIONS(2342), + [aux_sym_log_level_token1] = ACTIONS(2342), + [aux_sym_log_verbose_token1] = ACTIONS(2342), + [aux_sym_macs_token1] = ACTIONS(2342), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2342), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2342), + [aux_sym_password_authentication_token1] = ACTIONS(2342), + [aux_sym_permit_local_command_token1] = ACTIONS(2342), + [aux_sym_permit_remote_open_token1] = ACTIONS(2342), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2342), + [aux_sym_port_token1] = ACTIONS(2342), + [aux_sym_preferred_authentications_token1] = ACTIONS(2342), + [aux_sym_protocol_token1] = ACTIONS(2342), + [aux_sym_proxy_command_token1] = ACTIONS(2342), + [aux_sym_proxy_jump_token1] = ACTIONS(2342), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2342), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2342), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2342), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2342), + [aux_sym_rekey_limit_token1] = ACTIONS(2342), + [aux_sym_remote_command_token1] = ACTIONS(2342), + [aux_sym_remote_forward_token1] = ACTIONS(2342), + [aux_sym_request_tty_token1] = ACTIONS(2342), + [aux_sym_required_rsa_size_token1] = ACTIONS(2342), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2342), + [aux_sym_security_key_provider_token1] = ACTIONS(2342), + [aux_sym_send_env_token1] = ACTIONS(2342), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2342), + [aux_sym_server_alive_interval_token1] = ACTIONS(2342), + [aux_sym_session_type_token1] = ACTIONS(2342), + [aux_sym_set_env_token1] = ACTIONS(2342), + [aux_sym_stdin_null_token1] = ACTIONS(2342), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2342), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2342), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2342), + [aux_sym_syslog_facility_token1] = ACTIONS(2342), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2342), + [aux_sym_keep_alive_token1] = ACTIONS(2342), + [aux_sym_tunnel_token1] = ACTIONS(2344), + [aux_sym_tunnel_device_token1] = ACTIONS(2342), + [aux_sym_update_host_keys_token1] = ACTIONS(2342), + [aux_sym_use_keychain_token1] = ACTIONS(2342), + [aux_sym_use_roaming_token1] = ACTIONS(2342), + [aux_sym_user_token1] = ACTIONS(2344), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2342), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2342), + [aux_sym_visual_host_key_token1] = ACTIONS(2342), + [aux_sym_xauth_location_token1] = ACTIONS(2342), }, [316] = { - [ts_builtin_sym_end] = ACTIONS(2339), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2341), - [anon_sym_DQUOTE] = ACTIONS(2343), - [aux_sym_match_token1] = ACTIONS(2339), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2339), - [aux_sym_address_family_token1] = ACTIONS(2339), - [aux_sym_batch_mode_token1] = ACTIONS(2339), - [aux_sym_bind_address_token1] = ACTIONS(2339), - [aux_sym_bind_interface_token1] = ACTIONS(2339), - [aux_sym_canonical_domains_token1] = ACTIONS(2339), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2339), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2339), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2339), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2339), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2339), - [aux_sym_certificate_file_token1] = ACTIONS(2339), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2339), - [aux_sym_check_host_ip_token1] = ACTIONS(2339), - [aux_sym_ciphers_token1] = ACTIONS(2339), - [aux_sym_cipher_token1] = ACTIONS(2341), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2339), - [aux_sym_compression_token1] = ACTIONS(2339), - [aux_sym_connection_attempts_token1] = ACTIONS(2339), - [aux_sym_connect_timeout_token1] = ACTIONS(2339), - [aux_sym_control_master_token1] = ACTIONS(2339), - [aux_sym_control_path_token1] = ACTIONS(2339), - [aux_sym_control_persist_token1] = ACTIONS(2339), - [aux_sym_dynamic_forward_token1] = ACTIONS(2339), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2339), - [aux_sym_escape_char_token1] = ACTIONS(2339), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2339), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2339), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2339), - [aux_sym_forward_agent_token1] = ACTIONS(2339), - [aux_sym_forward_x11_token1] = ACTIONS(2341), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2339), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2339), - [aux_sym_gateway_ports_token1] = ACTIONS(2339), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2339), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2339), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2339), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2339), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2339), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2339), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2339), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2339), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2339), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2339), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2339), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2339), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2339), - [aux_sym_host_key_alias_token1] = ACTIONS(2339), - [aux_sym_hostname_token1] = ACTIONS(2339), - [aux_sym_identities_only_token1] = ACTIONS(2339), - [aux_sym_identity_agent_token1] = ACTIONS(2339), - [aux_sym_identity_file_token1] = ACTIONS(2339), - [aux_sym_ignore_unknown_token1] = ACTIONS(2339), - [aux_sym_include_token1] = ACTIONS(2339), - [aux_sym_ip_qos_token1] = ACTIONS(2339), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2339), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2339), - [aux_sym_kex_algorithms_token1] = ACTIONS(2339), - [aux_sym_known_hosts_command_token1] = ACTIONS(2339), - [aux_sym_local_command_token1] = ACTIONS(2339), - [aux_sym_local_forward_token1] = ACTIONS(2339), - [aux_sym_log_level_token1] = ACTIONS(2339), - [aux_sym_log_verbose_token1] = ACTIONS(2339), - [aux_sym_macs_token1] = ACTIONS(2339), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2339), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2339), - [aux_sym_password_authentication_token1] = ACTIONS(2339), - [aux_sym_permit_local_command_token1] = ACTIONS(2339), - [aux_sym_permit_remote_open_token1] = ACTIONS(2339), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2339), - [aux_sym_port_token1] = ACTIONS(2339), - [aux_sym_preferred_authentications_token1] = ACTIONS(2339), - [aux_sym_protocol_token1] = ACTIONS(2339), - [aux_sym_proxy_command_token1] = ACTIONS(2339), - [aux_sym_proxy_jump_token1] = ACTIONS(2339), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2339), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2339), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2339), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2339), - [aux_sym_rekey_limit_token1] = ACTIONS(2339), - [aux_sym_remote_command_token1] = ACTIONS(2339), - [aux_sym_remote_forward_token1] = ACTIONS(2339), - [aux_sym_request_tty_token1] = ACTIONS(2339), - [aux_sym_required_rsa_size_token1] = ACTIONS(2339), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2339), - [aux_sym_security_key_provider_token1] = ACTIONS(2339), - [aux_sym_send_env_token1] = ACTIONS(2339), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2339), - [aux_sym_server_alive_interval_token1] = ACTIONS(2339), - [aux_sym_session_type_token1] = ACTIONS(2339), - [aux_sym_set_env_token1] = ACTIONS(2339), - [aux_sym_stdin_null_token1] = ACTIONS(2339), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2339), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2339), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2339), - [aux_sym_syslog_facility_token1] = ACTIONS(2339), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2339), - [aux_sym_keep_alive_token1] = ACTIONS(2339), - [aux_sym_tunnel_token1] = ACTIONS(2341), - [aux_sym_tunnel_device_token1] = ACTIONS(2339), - [aux_sym_update_host_keys_token1] = ACTIONS(2339), - [aux_sym_use_keychain_token1] = ACTIONS(2339), - [aux_sym_use_roaming_token1] = ACTIONS(2339), - [aux_sym_user_token1] = ACTIONS(2341), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2339), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2339), - [aux_sym_visual_host_key_token1] = ACTIONS(2339), - [aux_sym_xauth_location_token1] = ACTIONS(2339), + [ts_builtin_sym_end] = ACTIONS(2346), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2348), + [anon_sym_DQUOTE] = ACTIONS(2350), + [aux_sym_match_token1] = ACTIONS(2346), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2346), + [aux_sym_address_family_token1] = ACTIONS(2346), + [aux_sym_batch_mode_token1] = ACTIONS(2346), + [aux_sym_bind_address_token1] = ACTIONS(2346), + [aux_sym_bind_interface_token1] = ACTIONS(2346), + [aux_sym_canonical_domains_token1] = ACTIONS(2346), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2346), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2346), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2346), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2346), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2346), + [aux_sym_certificate_file_token1] = ACTIONS(2346), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2346), + [aux_sym_check_host_ip_token1] = ACTIONS(2346), + [aux_sym_ciphers_token1] = ACTIONS(2346), + [aux_sym_cipher_token1] = ACTIONS(2348), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2346), + [aux_sym_compression_token1] = ACTIONS(2346), + [aux_sym_connection_attempts_token1] = ACTIONS(2346), + [aux_sym_connect_timeout_token1] = ACTIONS(2346), + [aux_sym_control_master_token1] = ACTIONS(2346), + [aux_sym_control_path_token1] = ACTIONS(2346), + [aux_sym_control_persist_token1] = ACTIONS(2346), + [aux_sym_dynamic_forward_token1] = ACTIONS(2346), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2346), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2346), + [aux_sym_escape_char_token1] = ACTIONS(2346), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2346), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2346), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2346), + [aux_sym_forward_agent_token1] = ACTIONS(2346), + [aux_sym_forward_x11_token1] = ACTIONS(2348), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2346), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2346), + [aux_sym_gateway_ports_token1] = ACTIONS(2346), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2346), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2346), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2346), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2346), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2346), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2346), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2346), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2346), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2346), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2346), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2346), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2346), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2346), + [aux_sym_host_key_alias_token1] = ACTIONS(2346), + [aux_sym_hostname_token1] = ACTIONS(2346), + [aux_sym_identities_only_token1] = ACTIONS(2346), + [aux_sym_identity_agent_token1] = ACTIONS(2346), + [aux_sym_identity_file_token1] = ACTIONS(2346), + [aux_sym_ignore_unknown_token1] = ACTIONS(2346), + [aux_sym_include_token1] = ACTIONS(2346), + [aux_sym_ip_qos_token1] = ACTIONS(2346), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2346), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2346), + [aux_sym_kex_algorithms_token1] = ACTIONS(2346), + [aux_sym_known_hosts_command_token1] = ACTIONS(2346), + [aux_sym_local_command_token1] = ACTIONS(2346), + [aux_sym_local_forward_token1] = ACTIONS(2346), + [aux_sym_log_level_token1] = ACTIONS(2346), + [aux_sym_log_verbose_token1] = ACTIONS(2346), + [aux_sym_macs_token1] = ACTIONS(2346), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2346), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2346), + [aux_sym_password_authentication_token1] = ACTIONS(2346), + [aux_sym_permit_local_command_token1] = ACTIONS(2346), + [aux_sym_permit_remote_open_token1] = ACTIONS(2346), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2346), + [aux_sym_port_token1] = ACTIONS(2346), + [aux_sym_preferred_authentications_token1] = ACTIONS(2346), + [aux_sym_protocol_token1] = ACTIONS(2346), + [aux_sym_proxy_command_token1] = ACTIONS(2346), + [aux_sym_proxy_jump_token1] = ACTIONS(2346), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2346), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2346), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2346), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2346), + [aux_sym_rekey_limit_token1] = ACTIONS(2346), + [aux_sym_remote_command_token1] = ACTIONS(2346), + [aux_sym_remote_forward_token1] = ACTIONS(2346), + [aux_sym_request_tty_token1] = ACTIONS(2346), + [aux_sym_required_rsa_size_token1] = ACTIONS(2346), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2346), + [aux_sym_security_key_provider_token1] = ACTIONS(2346), + [aux_sym_send_env_token1] = ACTIONS(2346), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2346), + [aux_sym_server_alive_interval_token1] = ACTIONS(2346), + [aux_sym_session_type_token1] = ACTIONS(2346), + [aux_sym_set_env_token1] = ACTIONS(2346), + [aux_sym_stdin_null_token1] = ACTIONS(2346), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2346), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2346), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2346), + [aux_sym_syslog_facility_token1] = ACTIONS(2346), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2346), + [aux_sym_keep_alive_token1] = ACTIONS(2346), + [aux_sym_tunnel_token1] = ACTIONS(2348), + [aux_sym_tunnel_device_token1] = ACTIONS(2346), + [aux_sym_update_host_keys_token1] = ACTIONS(2346), + [aux_sym_use_keychain_token1] = ACTIONS(2346), + [aux_sym_use_roaming_token1] = ACTIONS(2346), + [aux_sym_user_token1] = ACTIONS(2348), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2346), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2346), + [aux_sym_visual_host_key_token1] = ACTIONS(2346), + [aux_sym_xauth_location_token1] = ACTIONS(2346), }, [317] = { - [ts_builtin_sym_end] = ACTIONS(2345), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2345), - [aux_sym_match_token1] = ACTIONS(2345), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2345), - [aux_sym_address_family_token1] = ACTIONS(2345), - [aux_sym_batch_mode_token1] = ACTIONS(2345), - [aux_sym_bind_address_token1] = ACTIONS(2345), - [aux_sym_bind_interface_token1] = ACTIONS(2345), - [aux_sym_canonical_domains_token1] = ACTIONS(2345), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2345), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2345), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2345), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2345), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2345), - [aux_sym_certificate_file_token1] = ACTIONS(2345), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2345), - [aux_sym_check_host_ip_token1] = ACTIONS(2345), - [aux_sym_ciphers_token1] = ACTIONS(2345), - [aux_sym_cipher_token1] = ACTIONS(2347), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2345), - [aux_sym_compression_token1] = ACTIONS(2345), - [aux_sym_connection_attempts_token1] = ACTIONS(2345), - [aux_sym_connect_timeout_token1] = ACTIONS(2345), - [aux_sym_control_master_token1] = ACTIONS(2345), - [aux_sym_control_path_token1] = ACTIONS(2345), - [aux_sym_control_persist_token1] = ACTIONS(2345), - [aux_sym_dynamic_forward_token1] = ACTIONS(2345), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2345), - [aux_sym_escape_char_token1] = ACTIONS(2345), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2345), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2345), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2345), - [aux_sym_forward_agent_token1] = ACTIONS(2345), - [aux_sym_forward_x11_token1] = ACTIONS(2347), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2345), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2345), - [aux_sym_gateway_ports_token1] = ACTIONS(2345), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2345), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2345), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2345), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2345), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2345), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2345), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2345), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2345), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2345), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2345), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2345), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2345), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2345), - [aux_sym_host_key_alias_token1] = ACTIONS(2345), - [aux_sym_hostname_token1] = ACTIONS(2345), - [aux_sym_identities_only_token1] = ACTIONS(2345), - [aux_sym_identity_agent_token1] = ACTIONS(2345), - [aux_sym_identity_file_token1] = ACTIONS(2345), - [aux_sym_ignore_unknown_token1] = ACTIONS(2345), - [aux_sym_include_token1] = ACTIONS(2345), - [aux_sym_ip_qos_token1] = ACTIONS(2345), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2345), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2345), - [aux_sym_kex_algorithms_token1] = ACTIONS(2345), - [aux_sym_known_hosts_command_token1] = ACTIONS(2345), - [aux_sym_local_command_token1] = ACTIONS(2345), - [aux_sym_local_forward_token1] = ACTIONS(2345), - [aux_sym_log_level_token1] = ACTIONS(2345), - [aux_sym_log_verbose_token1] = ACTIONS(2345), - [aux_sym_macs_token1] = ACTIONS(2345), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2345), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2345), - [aux_sym_password_authentication_token1] = ACTIONS(2345), - [aux_sym_permit_local_command_token1] = ACTIONS(2345), - [aux_sym_permit_remote_open_token1] = ACTIONS(2345), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2345), - [aux_sym_port_token1] = ACTIONS(2345), - [aux_sym_preferred_authentications_token1] = ACTIONS(2345), - [aux_sym_protocol_token1] = ACTIONS(2345), - [aux_sym_proxy_command_token1] = ACTIONS(2345), - [aux_sym_proxy_jump_token1] = ACTIONS(2345), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2345), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2345), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2345), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2345), - [aux_sym_rekey_limit_token1] = ACTIONS(2345), - [aux_sym_remote_command_token1] = ACTIONS(2345), - [aux_sym_remote_forward_token1] = ACTIONS(2345), - [aux_sym_request_tty_token1] = ACTIONS(2345), - [aux_sym_required_rsa_size_token1] = ACTIONS(2345), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2345), - [aux_sym_security_key_provider_token1] = ACTIONS(2345), - [aux_sym_send_env_token1] = ACTIONS(2345), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2345), - [aux_sym_server_alive_interval_token1] = ACTIONS(2345), - [aux_sym_session_type_token1] = ACTIONS(2345), - [aux_sym_set_env_token1] = ACTIONS(2345), - [aux_sym_stdin_null_token1] = ACTIONS(2345), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2345), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2345), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2345), - [aux_sym_syslog_facility_token1] = ACTIONS(2345), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2345), - [aux_sym_keep_alive_token1] = ACTIONS(2345), - [aux_sym_tunnel_token1] = ACTIONS(2347), - [aux_sym_tunnel_device_token1] = ACTIONS(2345), - [aux_sym_update_host_keys_token1] = ACTIONS(2345), - [aux_sym_use_keychain_token1] = ACTIONS(2345), - [aux_sym_use_roaming_token1] = ACTIONS(2345), - [aux_sym_user_token1] = ACTIONS(2347), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2345), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2345), - [aux_sym_visual_host_key_token1] = ACTIONS(2345), - [aux_sym_xauth_location_token1] = ACTIONS(2345), + [ts_builtin_sym_end] = ACTIONS(2352), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2354), + [anon_sym_DQUOTE] = ACTIONS(2352), + [aux_sym_match_token1] = ACTIONS(2352), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2352), + [aux_sym_address_family_token1] = ACTIONS(2352), + [aux_sym_batch_mode_token1] = ACTIONS(2352), + [aux_sym_bind_address_token1] = ACTIONS(2352), + [aux_sym_bind_interface_token1] = ACTIONS(2352), + [aux_sym_canonical_domains_token1] = ACTIONS(2352), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2352), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2352), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2352), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2352), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2352), + [aux_sym_certificate_file_token1] = ACTIONS(2352), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2352), + [aux_sym_check_host_ip_token1] = ACTIONS(2352), + [aux_sym_ciphers_token1] = ACTIONS(2352), + [aux_sym_cipher_token1] = ACTIONS(2354), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2352), + [aux_sym_compression_token1] = ACTIONS(2352), + [aux_sym_connection_attempts_token1] = ACTIONS(2352), + [aux_sym_connect_timeout_token1] = ACTIONS(2352), + [aux_sym_control_master_token1] = ACTIONS(2352), + [aux_sym_control_path_token1] = ACTIONS(2352), + [aux_sym_control_persist_token1] = ACTIONS(2352), + [aux_sym_dynamic_forward_token1] = ACTIONS(2352), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2352), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2352), + [aux_sym_escape_char_token1] = ACTIONS(2352), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2352), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2352), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2352), + [aux_sym_forward_agent_token1] = ACTIONS(2352), + [aux_sym_forward_x11_token1] = ACTIONS(2354), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2352), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2352), + [aux_sym_gateway_ports_token1] = ACTIONS(2352), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2352), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2352), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2352), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2352), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2352), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2352), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2352), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2352), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2352), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2352), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2352), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2352), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2352), + [aux_sym_host_key_alias_token1] = ACTIONS(2352), + [aux_sym_hostname_token1] = ACTIONS(2352), + [aux_sym_identities_only_token1] = ACTIONS(2352), + [aux_sym_identity_agent_token1] = ACTIONS(2352), + [aux_sym_identity_file_token1] = ACTIONS(2352), + [aux_sym_ignore_unknown_token1] = ACTIONS(2352), + [aux_sym_include_token1] = ACTIONS(2352), + [aux_sym_ip_qos_token1] = ACTIONS(2352), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2352), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2352), + [aux_sym_kex_algorithms_token1] = ACTIONS(2352), + [aux_sym_known_hosts_command_token1] = ACTIONS(2352), + [aux_sym_local_command_token1] = ACTIONS(2352), + [aux_sym_local_forward_token1] = ACTIONS(2352), + [aux_sym_log_level_token1] = ACTIONS(2352), + [aux_sym_log_verbose_token1] = ACTIONS(2352), + [aux_sym_macs_token1] = ACTIONS(2352), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2352), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2352), + [aux_sym_password_authentication_token1] = ACTIONS(2352), + [aux_sym_permit_local_command_token1] = ACTIONS(2352), + [aux_sym_permit_remote_open_token1] = ACTIONS(2352), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2352), + [aux_sym_port_token1] = ACTIONS(2352), + [aux_sym_preferred_authentications_token1] = ACTIONS(2352), + [aux_sym_protocol_token1] = ACTIONS(2352), + [aux_sym_proxy_command_token1] = ACTIONS(2352), + [aux_sym_proxy_jump_token1] = ACTIONS(2352), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2352), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2352), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2352), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2352), + [aux_sym_rekey_limit_token1] = ACTIONS(2352), + [aux_sym_remote_command_token1] = ACTIONS(2352), + [aux_sym_remote_forward_token1] = ACTIONS(2352), + [aux_sym_request_tty_token1] = ACTIONS(2352), + [aux_sym_required_rsa_size_token1] = ACTIONS(2352), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2352), + [aux_sym_security_key_provider_token1] = ACTIONS(2352), + [aux_sym_send_env_token1] = ACTIONS(2352), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2352), + [aux_sym_server_alive_interval_token1] = ACTIONS(2352), + [aux_sym_session_type_token1] = ACTIONS(2352), + [aux_sym_set_env_token1] = ACTIONS(2352), + [aux_sym_stdin_null_token1] = ACTIONS(2352), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2352), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2352), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2352), + [aux_sym_syslog_facility_token1] = ACTIONS(2352), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2352), + [aux_sym_keep_alive_token1] = ACTIONS(2352), + [aux_sym_tunnel_token1] = ACTIONS(2354), + [aux_sym_tunnel_device_token1] = ACTIONS(2352), + [aux_sym_update_host_keys_token1] = ACTIONS(2352), + [aux_sym_use_keychain_token1] = ACTIONS(2352), + [aux_sym_use_roaming_token1] = ACTIONS(2352), + [aux_sym_user_token1] = ACTIONS(2354), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2352), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2352), + [aux_sym_visual_host_key_token1] = ACTIONS(2352), + [aux_sym_xauth_location_token1] = ACTIONS(2352), }, [318] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2351), - [anon_sym_DQUOTE] = ACTIONS(2353), - [aux_sym_match_token1] = ACTIONS(2349), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2349), - [aux_sym_address_family_token1] = ACTIONS(2349), - [aux_sym_batch_mode_token1] = ACTIONS(2349), - [aux_sym_bind_address_token1] = ACTIONS(2349), - [aux_sym_bind_interface_token1] = ACTIONS(2349), - [aux_sym_canonical_domains_token1] = ACTIONS(2349), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2349), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2349), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2349), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2349), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2349), - [aux_sym_certificate_file_token1] = ACTIONS(2349), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2349), - [aux_sym_check_host_ip_token1] = ACTIONS(2349), - [aux_sym_ciphers_token1] = ACTIONS(2349), - [aux_sym_cipher_token1] = ACTIONS(2351), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2349), - [aux_sym_compression_token1] = ACTIONS(2349), - [aux_sym_connection_attempts_token1] = ACTIONS(2349), - [aux_sym_connect_timeout_token1] = ACTIONS(2349), - [aux_sym_control_master_token1] = ACTIONS(2349), - [aux_sym_control_path_token1] = ACTIONS(2349), - [aux_sym_control_persist_token1] = ACTIONS(2349), - [aux_sym_dynamic_forward_token1] = ACTIONS(2349), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2349), - [aux_sym_escape_char_token1] = ACTIONS(2349), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2349), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2349), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2349), - [aux_sym_forward_agent_token1] = ACTIONS(2349), - [aux_sym_forward_x11_token1] = ACTIONS(2351), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2349), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2349), - [aux_sym_gateway_ports_token1] = ACTIONS(2349), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2349), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2349), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2349), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2349), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2349), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2349), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2349), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2349), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2349), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2349), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2349), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2349), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2349), - [aux_sym_host_key_alias_token1] = ACTIONS(2349), - [aux_sym_hostname_token1] = ACTIONS(2349), - [aux_sym_identities_only_token1] = ACTIONS(2349), - [aux_sym_identity_agent_token1] = ACTIONS(2349), - [aux_sym_identity_file_token1] = ACTIONS(2349), - [aux_sym_ignore_unknown_token1] = ACTIONS(2349), - [aux_sym_include_token1] = ACTIONS(2349), - [aux_sym_ip_qos_token1] = ACTIONS(2349), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2349), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2349), - [aux_sym_kex_algorithms_token1] = ACTIONS(2349), - [aux_sym_known_hosts_command_token1] = ACTIONS(2349), - [aux_sym_local_command_token1] = ACTIONS(2349), - [aux_sym_local_forward_token1] = ACTIONS(2349), - [aux_sym_log_level_token1] = ACTIONS(2349), - [aux_sym_log_verbose_token1] = ACTIONS(2349), - [aux_sym_macs_token1] = ACTIONS(2349), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2349), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2349), - [aux_sym_password_authentication_token1] = ACTIONS(2349), - [aux_sym_permit_local_command_token1] = ACTIONS(2349), - [aux_sym_permit_remote_open_token1] = ACTIONS(2349), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2349), - [aux_sym_port_token1] = ACTIONS(2349), - [aux_sym_preferred_authentications_token1] = ACTIONS(2349), - [aux_sym_protocol_token1] = ACTIONS(2349), - [aux_sym_proxy_command_token1] = ACTIONS(2349), - [aux_sym_proxy_jump_token1] = ACTIONS(2349), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2349), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2349), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2349), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2349), - [aux_sym_rekey_limit_token1] = ACTIONS(2349), - [aux_sym_remote_command_token1] = ACTIONS(2349), - [aux_sym_remote_forward_token1] = ACTIONS(2349), - [aux_sym_request_tty_token1] = ACTIONS(2349), - [aux_sym_required_rsa_size_token1] = ACTIONS(2349), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2349), - [aux_sym_security_key_provider_token1] = ACTIONS(2349), - [aux_sym_send_env_token1] = ACTIONS(2349), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2349), - [aux_sym_server_alive_interval_token1] = ACTIONS(2349), - [aux_sym_session_type_token1] = ACTIONS(2349), - [aux_sym_set_env_token1] = ACTIONS(2349), - [aux_sym_stdin_null_token1] = ACTIONS(2349), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2349), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2349), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2349), - [aux_sym_syslog_facility_token1] = ACTIONS(2349), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2349), - [aux_sym_keep_alive_token1] = ACTIONS(2349), - [aux_sym_tunnel_token1] = ACTIONS(2351), - [aux_sym_tunnel_device_token1] = ACTIONS(2349), - [aux_sym_update_host_keys_token1] = ACTIONS(2349), - [aux_sym_use_keychain_token1] = ACTIONS(2349), - [aux_sym_use_roaming_token1] = ACTIONS(2349), - [aux_sym_user_token1] = ACTIONS(2351), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2349), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2349), - [aux_sym_visual_host_key_token1] = ACTIONS(2349), - [aux_sym_xauth_location_token1] = ACTIONS(2349), + [ts_builtin_sym_end] = ACTIONS(2356), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2358), + [anon_sym_DQUOTE] = ACTIONS(2360), + [aux_sym_match_token1] = ACTIONS(2356), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2356), + [aux_sym_address_family_token1] = ACTIONS(2356), + [aux_sym_batch_mode_token1] = ACTIONS(2356), + [aux_sym_bind_address_token1] = ACTIONS(2356), + [aux_sym_bind_interface_token1] = ACTIONS(2356), + [aux_sym_canonical_domains_token1] = ACTIONS(2356), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2356), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2356), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2356), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2356), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2356), + [aux_sym_certificate_file_token1] = ACTIONS(2356), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2356), + [aux_sym_check_host_ip_token1] = ACTIONS(2356), + [aux_sym_ciphers_token1] = ACTIONS(2356), + [aux_sym_cipher_token1] = ACTIONS(2358), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2356), + [aux_sym_compression_token1] = ACTIONS(2356), + [aux_sym_connection_attempts_token1] = ACTIONS(2356), + [aux_sym_connect_timeout_token1] = ACTIONS(2356), + [aux_sym_control_master_token1] = ACTIONS(2356), + [aux_sym_control_path_token1] = ACTIONS(2356), + [aux_sym_control_persist_token1] = ACTIONS(2356), + [aux_sym_dynamic_forward_token1] = ACTIONS(2356), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2356), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2356), + [aux_sym_escape_char_token1] = ACTIONS(2356), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2356), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2356), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2356), + [aux_sym_forward_agent_token1] = ACTIONS(2356), + [aux_sym_forward_x11_token1] = ACTIONS(2358), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2356), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2356), + [aux_sym_gateway_ports_token1] = ACTIONS(2356), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2356), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2356), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2356), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2356), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2356), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2356), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2356), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2356), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2356), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2356), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2356), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2356), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2356), + [aux_sym_host_key_alias_token1] = ACTIONS(2356), + [aux_sym_hostname_token1] = ACTIONS(2356), + [aux_sym_identities_only_token1] = ACTIONS(2356), + [aux_sym_identity_agent_token1] = ACTIONS(2356), + [aux_sym_identity_file_token1] = ACTIONS(2356), + [aux_sym_ignore_unknown_token1] = ACTIONS(2356), + [aux_sym_include_token1] = ACTIONS(2356), + [aux_sym_ip_qos_token1] = ACTIONS(2356), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2356), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2356), + [aux_sym_kex_algorithms_token1] = ACTIONS(2356), + [aux_sym_known_hosts_command_token1] = ACTIONS(2356), + [aux_sym_local_command_token1] = ACTIONS(2356), + [aux_sym_local_forward_token1] = ACTIONS(2356), + [aux_sym_log_level_token1] = ACTIONS(2356), + [aux_sym_log_verbose_token1] = ACTIONS(2356), + [aux_sym_macs_token1] = ACTIONS(2356), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2356), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2356), + [aux_sym_password_authentication_token1] = ACTIONS(2356), + [aux_sym_permit_local_command_token1] = ACTIONS(2356), + [aux_sym_permit_remote_open_token1] = ACTIONS(2356), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2356), + [aux_sym_port_token1] = ACTIONS(2356), + [aux_sym_preferred_authentications_token1] = ACTIONS(2356), + [aux_sym_protocol_token1] = ACTIONS(2356), + [aux_sym_proxy_command_token1] = ACTIONS(2356), + [aux_sym_proxy_jump_token1] = ACTIONS(2356), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2356), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2356), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2356), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2356), + [aux_sym_rekey_limit_token1] = ACTIONS(2356), + [aux_sym_remote_command_token1] = ACTIONS(2356), + [aux_sym_remote_forward_token1] = ACTIONS(2356), + [aux_sym_request_tty_token1] = ACTIONS(2356), + [aux_sym_required_rsa_size_token1] = ACTIONS(2356), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2356), + [aux_sym_security_key_provider_token1] = ACTIONS(2356), + [aux_sym_send_env_token1] = ACTIONS(2356), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2356), + [aux_sym_server_alive_interval_token1] = ACTIONS(2356), + [aux_sym_session_type_token1] = ACTIONS(2356), + [aux_sym_set_env_token1] = ACTIONS(2356), + [aux_sym_stdin_null_token1] = ACTIONS(2356), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2356), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2356), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2356), + [aux_sym_syslog_facility_token1] = ACTIONS(2356), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2356), + [aux_sym_keep_alive_token1] = ACTIONS(2356), + [aux_sym_tunnel_token1] = ACTIONS(2358), + [aux_sym_tunnel_device_token1] = ACTIONS(2356), + [aux_sym_update_host_keys_token1] = ACTIONS(2356), + [aux_sym_use_keychain_token1] = ACTIONS(2356), + [aux_sym_use_roaming_token1] = ACTIONS(2356), + [aux_sym_user_token1] = ACTIONS(2358), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2356), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2356), + [aux_sym_visual_host_key_token1] = ACTIONS(2356), + [aux_sym_xauth_location_token1] = ACTIONS(2356), }, [319] = { - [ts_builtin_sym_end] = ACTIONS(2355), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(2355), - [aux_sym_match_token1] = ACTIONS(2355), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2355), - [aux_sym_address_family_token1] = ACTIONS(2355), - [aux_sym_batch_mode_token1] = ACTIONS(2355), - [aux_sym_bind_address_token1] = ACTIONS(2355), - [aux_sym_bind_interface_token1] = ACTIONS(2355), - [aux_sym_canonical_domains_token1] = ACTIONS(2355), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2355), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2355), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2355), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2355), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2355), - [aux_sym_certificate_file_token1] = ACTIONS(2355), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2355), - [aux_sym_check_host_ip_token1] = ACTIONS(2355), - [aux_sym_ciphers_token1] = ACTIONS(2355), - [aux_sym_cipher_token1] = ACTIONS(2357), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2355), - [aux_sym_compression_token1] = ACTIONS(2355), - [aux_sym_connection_attempts_token1] = ACTIONS(2355), - [aux_sym_connect_timeout_token1] = ACTIONS(2355), - [aux_sym_control_master_token1] = ACTIONS(2355), - [aux_sym_control_path_token1] = ACTIONS(2355), - [aux_sym_control_persist_token1] = ACTIONS(2355), - [aux_sym_dynamic_forward_token1] = ACTIONS(2355), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2355), - [aux_sym_escape_char_token1] = ACTIONS(2355), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2355), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2355), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2355), - [aux_sym_forward_agent_token1] = ACTIONS(2355), - [aux_sym_forward_x11_token1] = ACTIONS(2357), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2355), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2355), - [aux_sym_gateway_ports_token1] = ACTIONS(2355), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2355), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2355), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2355), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2355), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2355), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2355), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2355), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2355), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2355), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2355), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2355), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2355), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2355), - [aux_sym_host_key_alias_token1] = ACTIONS(2355), - [aux_sym_hostname_token1] = ACTIONS(2355), - [aux_sym_identities_only_token1] = ACTIONS(2355), - [aux_sym_identity_agent_token1] = ACTIONS(2355), - [aux_sym_identity_file_token1] = ACTIONS(2355), - [aux_sym_ignore_unknown_token1] = ACTIONS(2355), - [aux_sym_include_token1] = ACTIONS(2355), - [aux_sym_ip_qos_token1] = ACTIONS(2355), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2355), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2355), - [aux_sym_kex_algorithms_token1] = ACTIONS(2355), - [aux_sym_known_hosts_command_token1] = ACTIONS(2355), - [aux_sym_local_command_token1] = ACTIONS(2355), - [aux_sym_local_forward_token1] = ACTIONS(2355), - [aux_sym_log_level_token1] = ACTIONS(2355), - [aux_sym_log_verbose_token1] = ACTIONS(2355), - [aux_sym_macs_token1] = ACTIONS(2355), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2355), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2355), - [aux_sym_password_authentication_token1] = ACTIONS(2355), - [aux_sym_permit_local_command_token1] = ACTIONS(2355), - [aux_sym_permit_remote_open_token1] = ACTIONS(2355), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2355), - [aux_sym_port_token1] = ACTIONS(2355), - [aux_sym_preferred_authentications_token1] = ACTIONS(2355), - [aux_sym_protocol_token1] = ACTIONS(2355), - [aux_sym_proxy_command_token1] = ACTIONS(2355), - [aux_sym_proxy_jump_token1] = ACTIONS(2355), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2355), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2355), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2355), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2355), - [aux_sym_rekey_limit_token1] = ACTIONS(2355), - [aux_sym_remote_command_token1] = ACTIONS(2355), - [aux_sym_remote_forward_token1] = ACTIONS(2355), - [aux_sym_request_tty_token1] = ACTIONS(2355), - [aux_sym_required_rsa_size_token1] = ACTIONS(2355), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2355), - [aux_sym_security_key_provider_token1] = ACTIONS(2355), - [aux_sym_send_env_token1] = ACTIONS(2355), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2355), - [aux_sym_server_alive_interval_token1] = ACTIONS(2355), - [aux_sym_session_type_token1] = ACTIONS(2355), - [aux_sym_set_env_token1] = ACTIONS(2355), - [aux_sym_stdin_null_token1] = ACTIONS(2355), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2355), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2355), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2355), - [aux_sym_syslog_facility_token1] = ACTIONS(2355), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2355), - [aux_sym_keep_alive_token1] = ACTIONS(2355), - [aux_sym_tunnel_token1] = ACTIONS(2357), - [aux_sym_tunnel_device_token1] = ACTIONS(2355), - [aux_sym_update_host_keys_token1] = ACTIONS(2355), - [aux_sym_use_keychain_token1] = ACTIONS(2355), - [aux_sym_use_roaming_token1] = ACTIONS(2355), - [aux_sym_user_token1] = ACTIONS(2357), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2355), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2355), - [aux_sym_visual_host_key_token1] = ACTIONS(2355), - [aux_sym_xauth_location_token1] = ACTIONS(2355), + [ts_builtin_sym_end] = ACTIONS(2362), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2364), + [anon_sym_DQUOTE] = ACTIONS(2362), + [aux_sym_match_token1] = ACTIONS(2362), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2362), + [aux_sym_address_family_token1] = ACTIONS(2362), + [aux_sym_batch_mode_token1] = ACTIONS(2362), + [aux_sym_bind_address_token1] = ACTIONS(2362), + [aux_sym_bind_interface_token1] = ACTIONS(2362), + [aux_sym_canonical_domains_token1] = ACTIONS(2362), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2362), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2362), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2362), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2362), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2362), + [aux_sym_certificate_file_token1] = ACTIONS(2362), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2362), + [aux_sym_check_host_ip_token1] = ACTIONS(2362), + [aux_sym_ciphers_token1] = ACTIONS(2362), + [aux_sym_cipher_token1] = ACTIONS(2364), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2362), + [aux_sym_compression_token1] = ACTIONS(2362), + [aux_sym_connection_attempts_token1] = ACTIONS(2362), + [aux_sym_connect_timeout_token1] = ACTIONS(2362), + [aux_sym_control_master_token1] = ACTIONS(2362), + [aux_sym_control_path_token1] = ACTIONS(2362), + [aux_sym_control_persist_token1] = ACTIONS(2362), + [aux_sym_dynamic_forward_token1] = ACTIONS(2362), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2362), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2362), + [aux_sym_escape_char_token1] = ACTIONS(2362), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2362), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2362), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2362), + [aux_sym_forward_agent_token1] = ACTIONS(2362), + [aux_sym_forward_x11_token1] = ACTIONS(2364), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2362), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2362), + [aux_sym_gateway_ports_token1] = ACTIONS(2362), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2362), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2362), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2362), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2362), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2362), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2362), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2362), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2362), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2362), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2362), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2362), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2362), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2362), + [aux_sym_host_key_alias_token1] = ACTIONS(2362), + [aux_sym_hostname_token1] = ACTIONS(2362), + [aux_sym_identities_only_token1] = ACTIONS(2362), + [aux_sym_identity_agent_token1] = ACTIONS(2362), + [aux_sym_identity_file_token1] = ACTIONS(2362), + [aux_sym_ignore_unknown_token1] = ACTIONS(2362), + [aux_sym_include_token1] = ACTIONS(2362), + [aux_sym_ip_qos_token1] = ACTIONS(2362), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2362), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2362), + [aux_sym_kex_algorithms_token1] = ACTIONS(2362), + [aux_sym_known_hosts_command_token1] = ACTIONS(2362), + [aux_sym_local_command_token1] = ACTIONS(2362), + [aux_sym_local_forward_token1] = ACTIONS(2362), + [aux_sym_log_level_token1] = ACTIONS(2362), + [aux_sym_log_verbose_token1] = ACTIONS(2362), + [aux_sym_macs_token1] = ACTIONS(2362), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2362), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2362), + [aux_sym_password_authentication_token1] = ACTIONS(2362), + [aux_sym_permit_local_command_token1] = ACTIONS(2362), + [aux_sym_permit_remote_open_token1] = ACTIONS(2362), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2362), + [aux_sym_port_token1] = ACTIONS(2362), + [aux_sym_preferred_authentications_token1] = ACTIONS(2362), + [aux_sym_protocol_token1] = ACTIONS(2362), + [aux_sym_proxy_command_token1] = ACTIONS(2362), + [aux_sym_proxy_jump_token1] = ACTIONS(2362), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2362), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2362), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2362), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2362), + [aux_sym_rekey_limit_token1] = ACTIONS(2362), + [aux_sym_remote_command_token1] = ACTIONS(2362), + [aux_sym_remote_forward_token1] = ACTIONS(2362), + [aux_sym_request_tty_token1] = ACTIONS(2362), + [aux_sym_required_rsa_size_token1] = ACTIONS(2362), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2362), + [aux_sym_security_key_provider_token1] = ACTIONS(2362), + [aux_sym_send_env_token1] = ACTIONS(2362), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2362), + [aux_sym_server_alive_interval_token1] = ACTIONS(2362), + [aux_sym_session_type_token1] = ACTIONS(2362), + [aux_sym_set_env_token1] = ACTIONS(2362), + [aux_sym_stdin_null_token1] = ACTIONS(2362), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2362), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2362), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2362), + [aux_sym_syslog_facility_token1] = ACTIONS(2362), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2362), + [aux_sym_keep_alive_token1] = ACTIONS(2362), + [aux_sym_tunnel_token1] = ACTIONS(2364), + [aux_sym_tunnel_device_token1] = ACTIONS(2362), + [aux_sym_update_host_keys_token1] = ACTIONS(2362), + [aux_sym_use_keychain_token1] = ACTIONS(2362), + [aux_sym_use_roaming_token1] = ACTIONS(2362), + [aux_sym_user_token1] = ACTIONS(2364), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2362), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2362), + [aux_sym_visual_host_key_token1] = ACTIONS(2362), + [aux_sym_xauth_location_token1] = ACTIONS(2362), }, [320] = { - [ts_builtin_sym_end] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2361), - [anon_sym_DQUOTE] = ACTIONS(2363), - [aux_sym_match_token1] = ACTIONS(2359), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2359), - [aux_sym_address_family_token1] = ACTIONS(2359), - [aux_sym_batch_mode_token1] = ACTIONS(2359), - [aux_sym_bind_address_token1] = ACTIONS(2359), - [aux_sym_bind_interface_token1] = ACTIONS(2359), - [aux_sym_canonical_domains_token1] = ACTIONS(2359), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2359), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2359), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2359), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2359), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2359), - [aux_sym_certificate_file_token1] = ACTIONS(2359), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2359), - [aux_sym_check_host_ip_token1] = ACTIONS(2359), - [aux_sym_ciphers_token1] = ACTIONS(2359), - [aux_sym_cipher_token1] = ACTIONS(2361), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2359), - [aux_sym_compression_token1] = ACTIONS(2359), - [aux_sym_connection_attempts_token1] = ACTIONS(2359), - [aux_sym_connect_timeout_token1] = ACTIONS(2359), - [aux_sym_control_master_token1] = ACTIONS(2359), - [aux_sym_control_path_token1] = ACTIONS(2359), - [aux_sym_control_persist_token1] = ACTIONS(2359), - [aux_sym_dynamic_forward_token1] = ACTIONS(2359), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2359), - [aux_sym_escape_char_token1] = ACTIONS(2359), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2359), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2359), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2359), - [aux_sym_forward_agent_token1] = ACTIONS(2359), - [aux_sym_forward_x11_token1] = ACTIONS(2361), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2359), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2359), - [aux_sym_gateway_ports_token1] = ACTIONS(2359), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2359), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2359), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2359), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2359), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2359), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2359), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2359), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2359), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2359), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2359), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2359), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2359), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2359), - [aux_sym_host_key_alias_token1] = ACTIONS(2359), - [aux_sym_hostname_token1] = ACTIONS(2359), - [aux_sym_identities_only_token1] = ACTIONS(2359), - [aux_sym_identity_agent_token1] = ACTIONS(2359), - [aux_sym_identity_file_token1] = ACTIONS(2359), - [aux_sym_ignore_unknown_token1] = ACTIONS(2359), - [aux_sym_include_token1] = ACTIONS(2359), - [aux_sym_ip_qos_token1] = ACTIONS(2359), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2359), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2359), - [aux_sym_kex_algorithms_token1] = ACTIONS(2359), - [aux_sym_known_hosts_command_token1] = ACTIONS(2359), - [aux_sym_local_command_token1] = ACTIONS(2359), - [aux_sym_local_forward_token1] = ACTIONS(2359), - [aux_sym_log_level_token1] = ACTIONS(2359), - [aux_sym_log_verbose_token1] = ACTIONS(2359), - [aux_sym_macs_token1] = ACTIONS(2359), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2359), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2359), - [aux_sym_password_authentication_token1] = ACTIONS(2359), - [aux_sym_permit_local_command_token1] = ACTIONS(2359), - [aux_sym_permit_remote_open_token1] = ACTIONS(2359), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2359), - [aux_sym_port_token1] = ACTIONS(2359), - [aux_sym_preferred_authentications_token1] = ACTIONS(2359), - [aux_sym_protocol_token1] = ACTIONS(2359), - [aux_sym_proxy_command_token1] = ACTIONS(2359), - [aux_sym_proxy_jump_token1] = ACTIONS(2359), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2359), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2359), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2359), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2359), - [aux_sym_rekey_limit_token1] = ACTIONS(2359), - [aux_sym_remote_command_token1] = ACTIONS(2359), - [aux_sym_remote_forward_token1] = ACTIONS(2359), - [aux_sym_request_tty_token1] = ACTIONS(2359), - [aux_sym_required_rsa_size_token1] = ACTIONS(2359), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2359), - [aux_sym_security_key_provider_token1] = ACTIONS(2359), - [aux_sym_send_env_token1] = ACTIONS(2359), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2359), - [aux_sym_server_alive_interval_token1] = ACTIONS(2359), - [aux_sym_session_type_token1] = ACTIONS(2359), - [aux_sym_set_env_token1] = ACTIONS(2359), - [aux_sym_stdin_null_token1] = ACTIONS(2359), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2359), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2359), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2359), - [aux_sym_syslog_facility_token1] = ACTIONS(2359), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2359), - [aux_sym_keep_alive_token1] = ACTIONS(2359), - [aux_sym_tunnel_token1] = ACTIONS(2361), - [aux_sym_tunnel_device_token1] = ACTIONS(2359), - [aux_sym_update_host_keys_token1] = ACTIONS(2359), - [aux_sym_use_keychain_token1] = ACTIONS(2359), - [aux_sym_use_roaming_token1] = ACTIONS(2359), - [aux_sym_user_token1] = ACTIONS(2361), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2359), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2359), - [aux_sym_visual_host_key_token1] = ACTIONS(2359), - [aux_sym_xauth_location_token1] = ACTIONS(2359), + [ts_builtin_sym_end] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2370), + [aux_sym_match_token1] = ACTIONS(2366), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2366), + [aux_sym_address_family_token1] = ACTIONS(2366), + [aux_sym_batch_mode_token1] = ACTIONS(2366), + [aux_sym_bind_address_token1] = ACTIONS(2366), + [aux_sym_bind_interface_token1] = ACTIONS(2366), + [aux_sym_canonical_domains_token1] = ACTIONS(2366), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2366), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2366), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2366), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2366), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2366), + [aux_sym_certificate_file_token1] = ACTIONS(2366), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2366), + [aux_sym_check_host_ip_token1] = ACTIONS(2366), + [aux_sym_ciphers_token1] = ACTIONS(2366), + [aux_sym_cipher_token1] = ACTIONS(2368), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2366), + [aux_sym_compression_token1] = ACTIONS(2366), + [aux_sym_connection_attempts_token1] = ACTIONS(2366), + [aux_sym_connect_timeout_token1] = ACTIONS(2366), + [aux_sym_control_master_token1] = ACTIONS(2366), + [aux_sym_control_path_token1] = ACTIONS(2366), + [aux_sym_control_persist_token1] = ACTIONS(2366), + [aux_sym_dynamic_forward_token1] = ACTIONS(2366), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2366), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2366), + [aux_sym_escape_char_token1] = ACTIONS(2366), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2366), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2366), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2366), + [aux_sym_forward_agent_token1] = ACTIONS(2366), + [aux_sym_forward_x11_token1] = ACTIONS(2368), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2366), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2366), + [aux_sym_gateway_ports_token1] = ACTIONS(2366), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2366), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2366), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2366), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2366), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2366), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2366), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2366), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2366), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2366), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2366), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2366), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2366), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2366), + [aux_sym_host_key_alias_token1] = ACTIONS(2366), + [aux_sym_hostname_token1] = ACTIONS(2366), + [aux_sym_identities_only_token1] = ACTIONS(2366), + [aux_sym_identity_agent_token1] = ACTIONS(2366), + [aux_sym_identity_file_token1] = ACTIONS(2366), + [aux_sym_ignore_unknown_token1] = ACTIONS(2366), + [aux_sym_include_token1] = ACTIONS(2366), + [aux_sym_ip_qos_token1] = ACTIONS(2366), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2366), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2366), + [aux_sym_kex_algorithms_token1] = ACTIONS(2366), + [aux_sym_known_hosts_command_token1] = ACTIONS(2366), + [aux_sym_local_command_token1] = ACTIONS(2366), + [aux_sym_local_forward_token1] = ACTIONS(2366), + [aux_sym_log_level_token1] = ACTIONS(2366), + [aux_sym_log_verbose_token1] = ACTIONS(2366), + [aux_sym_macs_token1] = ACTIONS(2366), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2366), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2366), + [aux_sym_password_authentication_token1] = ACTIONS(2366), + [aux_sym_permit_local_command_token1] = ACTIONS(2366), + [aux_sym_permit_remote_open_token1] = ACTIONS(2366), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2366), + [aux_sym_port_token1] = ACTIONS(2366), + [aux_sym_preferred_authentications_token1] = ACTIONS(2366), + [aux_sym_protocol_token1] = ACTIONS(2366), + [aux_sym_proxy_command_token1] = ACTIONS(2366), + [aux_sym_proxy_jump_token1] = ACTIONS(2366), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2366), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2366), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2366), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2366), + [aux_sym_rekey_limit_token1] = ACTIONS(2366), + [aux_sym_remote_command_token1] = ACTIONS(2366), + [aux_sym_remote_forward_token1] = ACTIONS(2366), + [aux_sym_request_tty_token1] = ACTIONS(2366), + [aux_sym_required_rsa_size_token1] = ACTIONS(2366), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2366), + [aux_sym_security_key_provider_token1] = ACTIONS(2366), + [aux_sym_send_env_token1] = ACTIONS(2366), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2366), + [aux_sym_server_alive_interval_token1] = ACTIONS(2366), + [aux_sym_session_type_token1] = ACTIONS(2366), + [aux_sym_set_env_token1] = ACTIONS(2366), + [aux_sym_stdin_null_token1] = ACTIONS(2366), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2366), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2366), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2366), + [aux_sym_syslog_facility_token1] = ACTIONS(2366), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2366), + [aux_sym_keep_alive_token1] = ACTIONS(2366), + [aux_sym_tunnel_token1] = ACTIONS(2368), + [aux_sym_tunnel_device_token1] = ACTIONS(2366), + [aux_sym_update_host_keys_token1] = ACTIONS(2366), + [aux_sym_use_keychain_token1] = ACTIONS(2366), + [aux_sym_use_roaming_token1] = ACTIONS(2366), + [aux_sym_user_token1] = ACTIONS(2368), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2366), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2366), + [aux_sym_visual_host_key_token1] = ACTIONS(2366), + [aux_sym_xauth_location_token1] = ACTIONS(2366), }, [321] = { - [ts_builtin_sym_end] = ACTIONS(2365), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2367), - [anon_sym_DQUOTE] = ACTIONS(2365), - [aux_sym_match_token1] = ACTIONS(2365), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2365), - [aux_sym_address_family_token1] = ACTIONS(2365), - [aux_sym_batch_mode_token1] = ACTIONS(2365), - [aux_sym_bind_address_token1] = ACTIONS(2365), - [aux_sym_bind_interface_token1] = ACTIONS(2365), - [aux_sym_canonical_domains_token1] = ACTIONS(2365), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2365), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2365), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2365), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2365), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2365), - [aux_sym_certificate_file_token1] = ACTIONS(2365), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2365), - [aux_sym_check_host_ip_token1] = ACTIONS(2365), - [aux_sym_ciphers_token1] = ACTIONS(2365), - [aux_sym_cipher_token1] = ACTIONS(2367), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2365), - [aux_sym_compression_token1] = ACTIONS(2365), - [aux_sym_connection_attempts_token1] = ACTIONS(2365), - [aux_sym_connect_timeout_token1] = ACTIONS(2365), - [aux_sym_control_master_token1] = ACTIONS(2365), - [aux_sym_control_path_token1] = ACTIONS(2365), - [aux_sym_control_persist_token1] = ACTIONS(2365), - [aux_sym_dynamic_forward_token1] = ACTIONS(2365), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2365), - [aux_sym_escape_char_token1] = ACTIONS(2365), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2365), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2365), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2365), - [aux_sym_forward_agent_token1] = ACTIONS(2365), - [aux_sym_forward_x11_token1] = ACTIONS(2367), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2365), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2365), - [aux_sym_gateway_ports_token1] = ACTIONS(2365), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2365), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2365), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2365), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2365), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2365), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2365), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2365), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2365), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2365), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2365), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2365), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2365), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2365), - [aux_sym_host_key_alias_token1] = ACTIONS(2365), - [aux_sym_hostname_token1] = ACTIONS(2365), - [aux_sym_identities_only_token1] = ACTIONS(2365), - [aux_sym_identity_agent_token1] = ACTIONS(2365), - [aux_sym_identity_file_token1] = ACTIONS(2365), - [aux_sym_ignore_unknown_token1] = ACTIONS(2365), - [aux_sym_include_token1] = ACTIONS(2365), - [aux_sym_ip_qos_token1] = ACTIONS(2365), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2365), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2365), - [aux_sym_kex_algorithms_token1] = ACTIONS(2365), - [aux_sym_known_hosts_command_token1] = ACTIONS(2365), - [aux_sym_local_command_token1] = ACTIONS(2365), - [aux_sym_local_forward_token1] = ACTIONS(2365), - [aux_sym_log_level_token1] = ACTIONS(2365), - [aux_sym_log_verbose_token1] = ACTIONS(2365), - [aux_sym_macs_token1] = ACTIONS(2365), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2365), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2365), - [aux_sym_password_authentication_token1] = ACTIONS(2365), - [aux_sym_permit_local_command_token1] = ACTIONS(2365), - [aux_sym_permit_remote_open_token1] = ACTIONS(2365), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2365), - [aux_sym_port_token1] = ACTIONS(2365), - [aux_sym_preferred_authentications_token1] = ACTIONS(2365), - [aux_sym_protocol_token1] = ACTIONS(2365), - [aux_sym_proxy_command_token1] = ACTIONS(2365), - [aux_sym_proxy_jump_token1] = ACTIONS(2365), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2365), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2365), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2365), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2365), - [aux_sym_rekey_limit_token1] = ACTIONS(2365), - [aux_sym_remote_command_token1] = ACTIONS(2365), - [aux_sym_remote_forward_token1] = ACTIONS(2365), - [aux_sym_request_tty_token1] = ACTIONS(2365), - [aux_sym_required_rsa_size_token1] = ACTIONS(2365), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2365), - [aux_sym_security_key_provider_token1] = ACTIONS(2365), - [aux_sym_send_env_token1] = ACTIONS(2365), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2365), - [aux_sym_server_alive_interval_token1] = ACTIONS(2365), - [aux_sym_session_type_token1] = ACTIONS(2365), - [aux_sym_set_env_token1] = ACTIONS(2365), - [aux_sym_stdin_null_token1] = ACTIONS(2365), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2365), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2365), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2365), - [aux_sym_syslog_facility_token1] = ACTIONS(2365), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2365), - [aux_sym_keep_alive_token1] = ACTIONS(2365), - [aux_sym_tunnel_token1] = ACTIONS(2367), - [aux_sym_tunnel_device_token1] = ACTIONS(2365), - [aux_sym_update_host_keys_token1] = ACTIONS(2365), - [aux_sym_use_keychain_token1] = ACTIONS(2365), - [aux_sym_use_roaming_token1] = ACTIONS(2365), - [aux_sym_user_token1] = ACTIONS(2367), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2365), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2365), - [aux_sym_visual_host_key_token1] = ACTIONS(2365), - [aux_sym_xauth_location_token1] = ACTIONS(2365), + [ts_builtin_sym_end] = ACTIONS(2372), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2374), + [anon_sym_DQUOTE] = ACTIONS(2372), + [aux_sym_match_token1] = ACTIONS(2372), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2372), + [aux_sym_address_family_token1] = ACTIONS(2372), + [aux_sym_batch_mode_token1] = ACTIONS(2372), + [aux_sym_bind_address_token1] = ACTIONS(2372), + [aux_sym_bind_interface_token1] = ACTIONS(2372), + [aux_sym_canonical_domains_token1] = ACTIONS(2372), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2372), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2372), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2372), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2372), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2372), + [aux_sym_certificate_file_token1] = ACTIONS(2372), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2372), + [aux_sym_check_host_ip_token1] = ACTIONS(2372), + [aux_sym_ciphers_token1] = ACTIONS(2372), + [aux_sym_cipher_token1] = ACTIONS(2374), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2372), + [aux_sym_compression_token1] = ACTIONS(2372), + [aux_sym_connection_attempts_token1] = ACTIONS(2372), + [aux_sym_connect_timeout_token1] = ACTIONS(2372), + [aux_sym_control_master_token1] = ACTIONS(2372), + [aux_sym_control_path_token1] = ACTIONS(2372), + [aux_sym_control_persist_token1] = ACTIONS(2372), + [aux_sym_dynamic_forward_token1] = ACTIONS(2372), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2372), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2372), + [aux_sym_escape_char_token1] = ACTIONS(2372), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2372), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2372), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2372), + [aux_sym_forward_agent_token1] = ACTIONS(2372), + [aux_sym_forward_x11_token1] = ACTIONS(2374), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2372), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2372), + [aux_sym_gateway_ports_token1] = ACTIONS(2372), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2372), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2372), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2372), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2372), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2372), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2372), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2372), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2372), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2372), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2372), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2372), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2372), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2372), + [aux_sym_host_key_alias_token1] = ACTIONS(2372), + [aux_sym_hostname_token1] = ACTIONS(2372), + [aux_sym_identities_only_token1] = ACTIONS(2372), + [aux_sym_identity_agent_token1] = ACTIONS(2372), + [aux_sym_identity_file_token1] = ACTIONS(2372), + [aux_sym_ignore_unknown_token1] = ACTIONS(2372), + [aux_sym_include_token1] = ACTIONS(2372), + [aux_sym_ip_qos_token1] = ACTIONS(2372), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2372), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2372), + [aux_sym_kex_algorithms_token1] = ACTIONS(2372), + [aux_sym_known_hosts_command_token1] = ACTIONS(2372), + [aux_sym_local_command_token1] = ACTIONS(2372), + [aux_sym_local_forward_token1] = ACTIONS(2372), + [aux_sym_log_level_token1] = ACTIONS(2372), + [aux_sym_log_verbose_token1] = ACTIONS(2372), + [aux_sym_macs_token1] = ACTIONS(2372), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2372), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2372), + [aux_sym_password_authentication_token1] = ACTIONS(2372), + [aux_sym_permit_local_command_token1] = ACTIONS(2372), + [aux_sym_permit_remote_open_token1] = ACTIONS(2372), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2372), + [aux_sym_port_token1] = ACTIONS(2372), + [aux_sym_preferred_authentications_token1] = ACTIONS(2372), + [aux_sym_protocol_token1] = ACTIONS(2372), + [aux_sym_proxy_command_token1] = ACTIONS(2372), + [aux_sym_proxy_jump_token1] = ACTIONS(2372), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2372), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2372), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2372), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2372), + [aux_sym_rekey_limit_token1] = ACTIONS(2372), + [aux_sym_remote_command_token1] = ACTIONS(2372), + [aux_sym_remote_forward_token1] = ACTIONS(2372), + [aux_sym_request_tty_token1] = ACTIONS(2372), + [aux_sym_required_rsa_size_token1] = ACTIONS(2372), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2372), + [aux_sym_security_key_provider_token1] = ACTIONS(2372), + [aux_sym_send_env_token1] = ACTIONS(2372), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2372), + [aux_sym_server_alive_interval_token1] = ACTIONS(2372), + [aux_sym_session_type_token1] = ACTIONS(2372), + [aux_sym_set_env_token1] = ACTIONS(2372), + [aux_sym_stdin_null_token1] = ACTIONS(2372), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2372), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2372), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2372), + [aux_sym_syslog_facility_token1] = ACTIONS(2372), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2372), + [aux_sym_keep_alive_token1] = ACTIONS(2372), + [aux_sym_tunnel_token1] = ACTIONS(2374), + [aux_sym_tunnel_device_token1] = ACTIONS(2372), + [aux_sym_update_host_keys_token1] = ACTIONS(2372), + [aux_sym_use_keychain_token1] = ACTIONS(2372), + [aux_sym_use_roaming_token1] = ACTIONS(2372), + [aux_sym_user_token1] = ACTIONS(2374), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2372), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2372), + [aux_sym_visual_host_key_token1] = ACTIONS(2372), + [aux_sym_xauth_location_token1] = ACTIONS(2372), }, [322] = { - [ts_builtin_sym_end] = ACTIONS(2369), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2371), - [anon_sym_DQUOTE] = ACTIONS(2373), - [aux_sym_match_token1] = ACTIONS(2369), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2369), - [aux_sym_address_family_token1] = ACTIONS(2369), - [aux_sym_batch_mode_token1] = ACTIONS(2369), - [aux_sym_bind_address_token1] = ACTIONS(2369), - [aux_sym_bind_interface_token1] = ACTIONS(2369), - [aux_sym_canonical_domains_token1] = ACTIONS(2369), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2369), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2369), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2369), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2369), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2369), - [aux_sym_certificate_file_token1] = ACTIONS(2369), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2369), - [aux_sym_check_host_ip_token1] = ACTIONS(2369), - [aux_sym_ciphers_token1] = ACTIONS(2369), - [aux_sym_cipher_token1] = ACTIONS(2371), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2369), - [aux_sym_compression_token1] = ACTIONS(2369), - [aux_sym_connection_attempts_token1] = ACTIONS(2369), - [aux_sym_connect_timeout_token1] = ACTIONS(2369), - [aux_sym_control_master_token1] = ACTIONS(2369), - [aux_sym_control_path_token1] = ACTIONS(2369), - [aux_sym_control_persist_token1] = ACTIONS(2369), - [aux_sym_dynamic_forward_token1] = ACTIONS(2369), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2369), - [aux_sym_escape_char_token1] = ACTIONS(2369), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2369), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2369), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2369), - [aux_sym_forward_agent_token1] = ACTIONS(2369), - [aux_sym_forward_x11_token1] = ACTIONS(2371), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2369), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2369), - [aux_sym_gateway_ports_token1] = ACTIONS(2369), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2369), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2369), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2369), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2369), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2369), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2369), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2369), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2369), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2369), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2369), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2369), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2369), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2369), - [aux_sym_host_key_alias_token1] = ACTIONS(2369), - [aux_sym_hostname_token1] = ACTIONS(2369), - [aux_sym_identities_only_token1] = ACTIONS(2369), - [aux_sym_identity_agent_token1] = ACTIONS(2369), - [aux_sym_identity_file_token1] = ACTIONS(2369), - [aux_sym_ignore_unknown_token1] = ACTIONS(2369), - [aux_sym_include_token1] = ACTIONS(2369), - [aux_sym_ip_qos_token1] = ACTIONS(2369), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2369), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2369), - [aux_sym_kex_algorithms_token1] = ACTIONS(2369), - [aux_sym_known_hosts_command_token1] = ACTIONS(2369), - [aux_sym_local_command_token1] = ACTIONS(2369), - [aux_sym_local_forward_token1] = ACTIONS(2369), - [aux_sym_log_level_token1] = ACTIONS(2369), - [aux_sym_log_verbose_token1] = ACTIONS(2369), - [aux_sym_macs_token1] = ACTIONS(2369), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2369), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2369), - [aux_sym_password_authentication_token1] = ACTIONS(2369), - [aux_sym_permit_local_command_token1] = ACTIONS(2369), - [aux_sym_permit_remote_open_token1] = ACTIONS(2369), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2369), - [aux_sym_port_token1] = ACTIONS(2369), - [aux_sym_preferred_authentications_token1] = ACTIONS(2369), - [aux_sym_protocol_token1] = ACTIONS(2369), - [aux_sym_proxy_command_token1] = ACTIONS(2369), - [aux_sym_proxy_jump_token1] = ACTIONS(2369), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2369), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2369), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2369), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2369), - [aux_sym_rekey_limit_token1] = ACTIONS(2369), - [aux_sym_remote_command_token1] = ACTIONS(2369), - [aux_sym_remote_forward_token1] = ACTIONS(2369), - [aux_sym_request_tty_token1] = ACTIONS(2369), - [aux_sym_required_rsa_size_token1] = ACTIONS(2369), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2369), - [aux_sym_security_key_provider_token1] = ACTIONS(2369), - [aux_sym_send_env_token1] = ACTIONS(2369), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2369), - [aux_sym_server_alive_interval_token1] = ACTIONS(2369), - [aux_sym_session_type_token1] = ACTIONS(2369), - [aux_sym_set_env_token1] = ACTIONS(2369), - [aux_sym_stdin_null_token1] = ACTIONS(2369), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2369), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2369), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2369), - [aux_sym_syslog_facility_token1] = ACTIONS(2369), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2369), - [aux_sym_keep_alive_token1] = ACTIONS(2369), - [aux_sym_tunnel_token1] = ACTIONS(2371), - [aux_sym_tunnel_device_token1] = ACTIONS(2369), - [aux_sym_update_host_keys_token1] = ACTIONS(2369), - [aux_sym_use_keychain_token1] = ACTIONS(2369), - [aux_sym_use_roaming_token1] = ACTIONS(2369), - [aux_sym_user_token1] = ACTIONS(2371), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2369), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2369), - [aux_sym_visual_host_key_token1] = ACTIONS(2369), - [aux_sym_xauth_location_token1] = ACTIONS(2369), + [ts_builtin_sym_end] = ACTIONS(2376), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2378), + [anon_sym_DQUOTE] = ACTIONS(2380), + [aux_sym_match_token1] = ACTIONS(2376), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2376), + [aux_sym_address_family_token1] = ACTIONS(2376), + [aux_sym_batch_mode_token1] = ACTIONS(2376), + [aux_sym_bind_address_token1] = ACTIONS(2376), + [aux_sym_bind_interface_token1] = ACTIONS(2376), + [aux_sym_canonical_domains_token1] = ACTIONS(2376), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2376), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2376), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2376), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2376), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2376), + [aux_sym_certificate_file_token1] = ACTIONS(2376), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2376), + [aux_sym_check_host_ip_token1] = ACTIONS(2376), + [aux_sym_ciphers_token1] = ACTIONS(2376), + [aux_sym_cipher_token1] = ACTIONS(2378), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2376), + [aux_sym_compression_token1] = ACTIONS(2376), + [aux_sym_connection_attempts_token1] = ACTIONS(2376), + [aux_sym_connect_timeout_token1] = ACTIONS(2376), + [aux_sym_control_master_token1] = ACTIONS(2376), + [aux_sym_control_path_token1] = ACTIONS(2376), + [aux_sym_control_persist_token1] = ACTIONS(2376), + [aux_sym_dynamic_forward_token1] = ACTIONS(2376), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2376), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2376), + [aux_sym_escape_char_token1] = ACTIONS(2376), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2376), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2376), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2376), + [aux_sym_forward_agent_token1] = ACTIONS(2376), + [aux_sym_forward_x11_token1] = ACTIONS(2378), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2376), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2376), + [aux_sym_gateway_ports_token1] = ACTIONS(2376), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2376), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2376), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2376), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2376), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2376), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2376), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2376), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2376), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2376), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2376), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2376), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2376), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2376), + [aux_sym_host_key_alias_token1] = ACTIONS(2376), + [aux_sym_hostname_token1] = ACTIONS(2376), + [aux_sym_identities_only_token1] = ACTIONS(2376), + [aux_sym_identity_agent_token1] = ACTIONS(2376), + [aux_sym_identity_file_token1] = ACTIONS(2376), + [aux_sym_ignore_unknown_token1] = ACTIONS(2376), + [aux_sym_include_token1] = ACTIONS(2376), + [aux_sym_ip_qos_token1] = ACTIONS(2376), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2376), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2376), + [aux_sym_kex_algorithms_token1] = ACTIONS(2376), + [aux_sym_known_hosts_command_token1] = ACTIONS(2376), + [aux_sym_local_command_token1] = ACTIONS(2376), + [aux_sym_local_forward_token1] = ACTIONS(2376), + [aux_sym_log_level_token1] = ACTIONS(2376), + [aux_sym_log_verbose_token1] = ACTIONS(2376), + [aux_sym_macs_token1] = ACTIONS(2376), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2376), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2376), + [aux_sym_password_authentication_token1] = ACTIONS(2376), + [aux_sym_permit_local_command_token1] = ACTIONS(2376), + [aux_sym_permit_remote_open_token1] = ACTIONS(2376), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2376), + [aux_sym_port_token1] = ACTIONS(2376), + [aux_sym_preferred_authentications_token1] = ACTIONS(2376), + [aux_sym_protocol_token1] = ACTIONS(2376), + [aux_sym_proxy_command_token1] = ACTIONS(2376), + [aux_sym_proxy_jump_token1] = ACTIONS(2376), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2376), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2376), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2376), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2376), + [aux_sym_rekey_limit_token1] = ACTIONS(2376), + [aux_sym_remote_command_token1] = ACTIONS(2376), + [aux_sym_remote_forward_token1] = ACTIONS(2376), + [aux_sym_request_tty_token1] = ACTIONS(2376), + [aux_sym_required_rsa_size_token1] = ACTIONS(2376), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2376), + [aux_sym_security_key_provider_token1] = ACTIONS(2376), + [aux_sym_send_env_token1] = ACTIONS(2376), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2376), + [aux_sym_server_alive_interval_token1] = ACTIONS(2376), + [aux_sym_session_type_token1] = ACTIONS(2376), + [aux_sym_set_env_token1] = ACTIONS(2376), + [aux_sym_stdin_null_token1] = ACTIONS(2376), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2376), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2376), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2376), + [aux_sym_syslog_facility_token1] = ACTIONS(2376), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2376), + [aux_sym_keep_alive_token1] = ACTIONS(2376), + [aux_sym_tunnel_token1] = ACTIONS(2378), + [aux_sym_tunnel_device_token1] = ACTIONS(2376), + [aux_sym_update_host_keys_token1] = ACTIONS(2376), + [aux_sym_use_keychain_token1] = ACTIONS(2376), + [aux_sym_use_roaming_token1] = ACTIONS(2376), + [aux_sym_user_token1] = ACTIONS(2378), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2376), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2376), + [aux_sym_visual_host_key_token1] = ACTIONS(2376), + [aux_sym_xauth_location_token1] = ACTIONS(2376), }, [323] = { - [ts_builtin_sym_end] = ACTIONS(2375), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2377), - [anon_sym_DQUOTE] = ACTIONS(2375), - [aux_sym_match_token1] = ACTIONS(2375), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2375), - [aux_sym_address_family_token1] = ACTIONS(2375), - [aux_sym_batch_mode_token1] = ACTIONS(2375), - [aux_sym_bind_address_token1] = ACTIONS(2375), - [aux_sym_bind_interface_token1] = ACTIONS(2375), - [aux_sym_canonical_domains_token1] = ACTIONS(2375), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2375), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2375), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2375), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2375), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2375), - [aux_sym_certificate_file_token1] = ACTIONS(2375), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2375), - [aux_sym_check_host_ip_token1] = ACTIONS(2375), - [aux_sym_ciphers_token1] = ACTIONS(2375), - [aux_sym_cipher_token1] = ACTIONS(2377), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2375), - [aux_sym_compression_token1] = ACTIONS(2375), - [aux_sym_connection_attempts_token1] = ACTIONS(2375), - [aux_sym_connect_timeout_token1] = ACTIONS(2375), - [aux_sym_control_master_token1] = ACTIONS(2375), - [aux_sym_control_path_token1] = ACTIONS(2375), - [aux_sym_control_persist_token1] = ACTIONS(2375), - [aux_sym_dynamic_forward_token1] = ACTIONS(2375), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2375), - [aux_sym_escape_char_token1] = ACTIONS(2375), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2375), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2375), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2375), - [aux_sym_forward_agent_token1] = ACTIONS(2375), - [aux_sym_forward_x11_token1] = ACTIONS(2377), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2375), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2375), - [aux_sym_gateway_ports_token1] = ACTIONS(2375), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2375), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2375), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2375), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2375), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2375), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2375), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2375), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2375), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2375), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2375), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2375), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2375), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2375), - [aux_sym_host_key_alias_token1] = ACTIONS(2375), - [aux_sym_hostname_token1] = ACTIONS(2375), - [aux_sym_identities_only_token1] = ACTIONS(2375), - [aux_sym_identity_agent_token1] = ACTIONS(2375), - [aux_sym_identity_file_token1] = ACTIONS(2375), - [aux_sym_ignore_unknown_token1] = ACTIONS(2375), - [aux_sym_include_token1] = ACTIONS(2375), - [aux_sym_ip_qos_token1] = ACTIONS(2375), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2375), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2375), - [aux_sym_kex_algorithms_token1] = ACTIONS(2375), - [aux_sym_known_hosts_command_token1] = ACTIONS(2375), - [aux_sym_local_command_token1] = ACTIONS(2375), - [aux_sym_local_forward_token1] = ACTIONS(2375), - [aux_sym_log_level_token1] = ACTIONS(2375), - [aux_sym_log_verbose_token1] = ACTIONS(2375), - [aux_sym_macs_token1] = ACTIONS(2375), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2375), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2375), - [aux_sym_password_authentication_token1] = ACTIONS(2375), - [aux_sym_permit_local_command_token1] = ACTIONS(2375), - [aux_sym_permit_remote_open_token1] = ACTIONS(2375), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2375), - [aux_sym_port_token1] = ACTIONS(2375), - [aux_sym_preferred_authentications_token1] = ACTIONS(2375), - [aux_sym_protocol_token1] = ACTIONS(2375), - [aux_sym_proxy_command_token1] = ACTIONS(2375), - [aux_sym_proxy_jump_token1] = ACTIONS(2375), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2375), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2375), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2375), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2375), - [aux_sym_rekey_limit_token1] = ACTIONS(2375), - [aux_sym_remote_command_token1] = ACTIONS(2375), - [aux_sym_remote_forward_token1] = ACTIONS(2375), - [aux_sym_request_tty_token1] = ACTIONS(2375), - [aux_sym_required_rsa_size_token1] = ACTIONS(2375), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2375), - [aux_sym_security_key_provider_token1] = ACTIONS(2375), - [aux_sym_send_env_token1] = ACTIONS(2375), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2375), - [aux_sym_server_alive_interval_token1] = ACTIONS(2375), - [aux_sym_session_type_token1] = ACTIONS(2375), - [aux_sym_set_env_token1] = ACTIONS(2375), - [aux_sym_stdin_null_token1] = ACTIONS(2375), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2375), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2375), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2375), - [aux_sym_syslog_facility_token1] = ACTIONS(2375), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2375), - [aux_sym_keep_alive_token1] = ACTIONS(2375), - [aux_sym_tunnel_token1] = ACTIONS(2377), - [aux_sym_tunnel_device_token1] = ACTIONS(2375), - [aux_sym_update_host_keys_token1] = ACTIONS(2375), - [aux_sym_use_keychain_token1] = ACTIONS(2375), - [aux_sym_use_roaming_token1] = ACTIONS(2375), - [aux_sym_user_token1] = ACTIONS(2377), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2375), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2375), - [aux_sym_visual_host_key_token1] = ACTIONS(2375), - [aux_sym_xauth_location_token1] = ACTIONS(2375), + [ts_builtin_sym_end] = ACTIONS(2382), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2384), + [anon_sym_DQUOTE] = ACTIONS(2382), + [aux_sym_match_token1] = ACTIONS(2382), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2382), + [aux_sym_address_family_token1] = ACTIONS(2382), + [aux_sym_batch_mode_token1] = ACTIONS(2382), + [aux_sym_bind_address_token1] = ACTIONS(2382), + [aux_sym_bind_interface_token1] = ACTIONS(2382), + [aux_sym_canonical_domains_token1] = ACTIONS(2382), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2382), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2382), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2382), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2382), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2382), + [aux_sym_certificate_file_token1] = ACTIONS(2382), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2382), + [aux_sym_check_host_ip_token1] = ACTIONS(2382), + [aux_sym_ciphers_token1] = ACTIONS(2382), + [aux_sym_cipher_token1] = ACTIONS(2384), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2382), + [aux_sym_compression_token1] = ACTIONS(2382), + [aux_sym_connection_attempts_token1] = ACTIONS(2382), + [aux_sym_connect_timeout_token1] = ACTIONS(2382), + [aux_sym_control_master_token1] = ACTIONS(2382), + [aux_sym_control_path_token1] = ACTIONS(2382), + [aux_sym_control_persist_token1] = ACTIONS(2382), + [aux_sym_dynamic_forward_token1] = ACTIONS(2382), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2382), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2382), + [aux_sym_escape_char_token1] = ACTIONS(2382), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2382), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2382), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2382), + [aux_sym_forward_agent_token1] = ACTIONS(2382), + [aux_sym_forward_x11_token1] = ACTIONS(2384), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2382), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2382), + [aux_sym_gateway_ports_token1] = ACTIONS(2382), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2382), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2382), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2382), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2382), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2382), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2382), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2382), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2382), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2382), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2382), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2382), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2382), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2382), + [aux_sym_host_key_alias_token1] = ACTIONS(2382), + [aux_sym_hostname_token1] = ACTIONS(2382), + [aux_sym_identities_only_token1] = ACTIONS(2382), + [aux_sym_identity_agent_token1] = ACTIONS(2382), + [aux_sym_identity_file_token1] = ACTIONS(2382), + [aux_sym_ignore_unknown_token1] = ACTIONS(2382), + [aux_sym_include_token1] = ACTIONS(2382), + [aux_sym_ip_qos_token1] = ACTIONS(2382), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2382), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2382), + [aux_sym_kex_algorithms_token1] = ACTIONS(2382), + [aux_sym_known_hosts_command_token1] = ACTIONS(2382), + [aux_sym_local_command_token1] = ACTIONS(2382), + [aux_sym_local_forward_token1] = ACTIONS(2382), + [aux_sym_log_level_token1] = ACTIONS(2382), + [aux_sym_log_verbose_token1] = ACTIONS(2382), + [aux_sym_macs_token1] = ACTIONS(2382), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2382), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2382), + [aux_sym_password_authentication_token1] = ACTIONS(2382), + [aux_sym_permit_local_command_token1] = ACTIONS(2382), + [aux_sym_permit_remote_open_token1] = ACTIONS(2382), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2382), + [aux_sym_port_token1] = ACTIONS(2382), + [aux_sym_preferred_authentications_token1] = ACTIONS(2382), + [aux_sym_protocol_token1] = ACTIONS(2382), + [aux_sym_proxy_command_token1] = ACTIONS(2382), + [aux_sym_proxy_jump_token1] = ACTIONS(2382), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2382), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2382), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2382), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2382), + [aux_sym_rekey_limit_token1] = ACTIONS(2382), + [aux_sym_remote_command_token1] = ACTIONS(2382), + [aux_sym_remote_forward_token1] = ACTIONS(2382), + [aux_sym_request_tty_token1] = ACTIONS(2382), + [aux_sym_required_rsa_size_token1] = ACTIONS(2382), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2382), + [aux_sym_security_key_provider_token1] = ACTIONS(2382), + [aux_sym_send_env_token1] = ACTIONS(2382), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2382), + [aux_sym_server_alive_interval_token1] = ACTIONS(2382), + [aux_sym_session_type_token1] = ACTIONS(2382), + [aux_sym_set_env_token1] = ACTIONS(2382), + [aux_sym_stdin_null_token1] = ACTIONS(2382), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2382), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2382), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2382), + [aux_sym_syslog_facility_token1] = ACTIONS(2382), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2382), + [aux_sym_keep_alive_token1] = ACTIONS(2382), + [aux_sym_tunnel_token1] = ACTIONS(2384), + [aux_sym_tunnel_device_token1] = ACTIONS(2382), + [aux_sym_update_host_keys_token1] = ACTIONS(2382), + [aux_sym_use_keychain_token1] = ACTIONS(2382), + [aux_sym_use_roaming_token1] = ACTIONS(2382), + [aux_sym_user_token1] = ACTIONS(2384), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2382), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2382), + [aux_sym_visual_host_key_token1] = ACTIONS(2382), + [aux_sym_xauth_location_token1] = ACTIONS(2382), }, [324] = { - [ts_builtin_sym_end] = ACTIONS(2379), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2381), - [anon_sym_DQUOTE] = ACTIONS(2383), - [aux_sym_match_token1] = ACTIONS(2379), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2379), - [aux_sym_address_family_token1] = ACTIONS(2379), - [aux_sym_batch_mode_token1] = ACTIONS(2379), - [aux_sym_bind_address_token1] = ACTIONS(2379), - [aux_sym_bind_interface_token1] = ACTIONS(2379), - [aux_sym_canonical_domains_token1] = ACTIONS(2379), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2379), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2379), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2379), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2379), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2379), - [aux_sym_certificate_file_token1] = ACTIONS(2379), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2379), - [aux_sym_check_host_ip_token1] = ACTIONS(2379), - [aux_sym_ciphers_token1] = ACTIONS(2379), - [aux_sym_cipher_token1] = ACTIONS(2381), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2379), - [aux_sym_compression_token1] = ACTIONS(2379), - [aux_sym_connection_attempts_token1] = ACTIONS(2379), - [aux_sym_connect_timeout_token1] = ACTIONS(2379), - [aux_sym_control_master_token1] = ACTIONS(2379), - [aux_sym_control_path_token1] = ACTIONS(2379), - [aux_sym_control_persist_token1] = ACTIONS(2379), - [aux_sym_dynamic_forward_token1] = ACTIONS(2379), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2379), - [aux_sym_escape_char_token1] = ACTIONS(2379), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2379), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2379), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2379), - [aux_sym_forward_agent_token1] = ACTIONS(2379), - [aux_sym_forward_x11_token1] = ACTIONS(2381), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2379), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2379), - [aux_sym_gateway_ports_token1] = ACTIONS(2379), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2379), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2379), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2379), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2379), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2379), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2379), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2379), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2379), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2379), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2379), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2379), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2379), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2379), - [aux_sym_host_key_alias_token1] = ACTIONS(2379), - [aux_sym_hostname_token1] = ACTIONS(2379), - [aux_sym_identities_only_token1] = ACTIONS(2379), - [aux_sym_identity_agent_token1] = ACTIONS(2379), - [aux_sym_identity_file_token1] = ACTIONS(2379), - [aux_sym_ignore_unknown_token1] = ACTIONS(2379), - [aux_sym_include_token1] = ACTIONS(2379), - [aux_sym_ip_qos_token1] = ACTIONS(2379), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2379), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2379), - [aux_sym_kex_algorithms_token1] = ACTIONS(2379), - [aux_sym_known_hosts_command_token1] = ACTIONS(2379), - [aux_sym_local_command_token1] = ACTIONS(2379), - [aux_sym_local_forward_token1] = ACTIONS(2379), - [aux_sym_log_level_token1] = ACTIONS(2379), - [aux_sym_log_verbose_token1] = ACTIONS(2379), - [aux_sym_macs_token1] = ACTIONS(2379), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2379), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2379), - [aux_sym_password_authentication_token1] = ACTIONS(2379), - [aux_sym_permit_local_command_token1] = ACTIONS(2379), - [aux_sym_permit_remote_open_token1] = ACTIONS(2379), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2379), - [aux_sym_port_token1] = ACTIONS(2379), - [aux_sym_preferred_authentications_token1] = ACTIONS(2379), - [aux_sym_protocol_token1] = ACTIONS(2379), - [aux_sym_proxy_command_token1] = ACTIONS(2379), - [aux_sym_proxy_jump_token1] = ACTIONS(2379), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2379), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2379), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2379), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2379), - [aux_sym_rekey_limit_token1] = ACTIONS(2379), - [aux_sym_remote_command_token1] = ACTIONS(2379), - [aux_sym_remote_forward_token1] = ACTIONS(2379), - [aux_sym_request_tty_token1] = ACTIONS(2379), - [aux_sym_required_rsa_size_token1] = ACTIONS(2379), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2379), - [aux_sym_security_key_provider_token1] = ACTIONS(2379), - [aux_sym_send_env_token1] = ACTIONS(2379), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2379), - [aux_sym_server_alive_interval_token1] = ACTIONS(2379), - [aux_sym_session_type_token1] = ACTIONS(2379), - [aux_sym_set_env_token1] = ACTIONS(2379), - [aux_sym_stdin_null_token1] = ACTIONS(2379), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2379), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2379), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2379), - [aux_sym_syslog_facility_token1] = ACTIONS(2379), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2379), - [aux_sym_keep_alive_token1] = ACTIONS(2379), - [aux_sym_tunnel_token1] = ACTIONS(2381), - [aux_sym_tunnel_device_token1] = ACTIONS(2379), - [aux_sym_update_host_keys_token1] = ACTIONS(2379), - [aux_sym_use_keychain_token1] = ACTIONS(2379), - [aux_sym_use_roaming_token1] = ACTIONS(2379), - [aux_sym_user_token1] = ACTIONS(2381), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2379), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2379), - [aux_sym_visual_host_key_token1] = ACTIONS(2379), - [aux_sym_xauth_location_token1] = ACTIONS(2379), + [ts_builtin_sym_end] = ACTIONS(2386), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2388), + [anon_sym_DQUOTE] = ACTIONS(2390), + [aux_sym_match_token1] = ACTIONS(2386), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2386), + [aux_sym_address_family_token1] = ACTIONS(2386), + [aux_sym_batch_mode_token1] = ACTIONS(2386), + [aux_sym_bind_address_token1] = ACTIONS(2386), + [aux_sym_bind_interface_token1] = ACTIONS(2386), + [aux_sym_canonical_domains_token1] = ACTIONS(2386), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2386), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2386), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2386), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2386), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2386), + [aux_sym_certificate_file_token1] = ACTIONS(2386), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2386), + [aux_sym_check_host_ip_token1] = ACTIONS(2386), + [aux_sym_ciphers_token1] = ACTIONS(2386), + [aux_sym_cipher_token1] = ACTIONS(2388), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2386), + [aux_sym_compression_token1] = ACTIONS(2386), + [aux_sym_connection_attempts_token1] = ACTIONS(2386), + [aux_sym_connect_timeout_token1] = ACTIONS(2386), + [aux_sym_control_master_token1] = ACTIONS(2386), + [aux_sym_control_path_token1] = ACTIONS(2386), + [aux_sym_control_persist_token1] = ACTIONS(2386), + [aux_sym_dynamic_forward_token1] = ACTIONS(2386), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2386), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2386), + [aux_sym_escape_char_token1] = ACTIONS(2386), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2386), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2386), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2386), + [aux_sym_forward_agent_token1] = ACTIONS(2386), + [aux_sym_forward_x11_token1] = ACTIONS(2388), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2386), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2386), + [aux_sym_gateway_ports_token1] = ACTIONS(2386), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2386), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2386), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2386), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2386), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2386), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2386), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2386), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2386), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2386), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2386), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2386), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2386), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2386), + [aux_sym_host_key_alias_token1] = ACTIONS(2386), + [aux_sym_hostname_token1] = ACTIONS(2386), + [aux_sym_identities_only_token1] = ACTIONS(2386), + [aux_sym_identity_agent_token1] = ACTIONS(2386), + [aux_sym_identity_file_token1] = ACTIONS(2386), + [aux_sym_ignore_unknown_token1] = ACTIONS(2386), + [aux_sym_include_token1] = ACTIONS(2386), + [aux_sym_ip_qos_token1] = ACTIONS(2386), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2386), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2386), + [aux_sym_kex_algorithms_token1] = ACTIONS(2386), + [aux_sym_known_hosts_command_token1] = ACTIONS(2386), + [aux_sym_local_command_token1] = ACTIONS(2386), + [aux_sym_local_forward_token1] = ACTIONS(2386), + [aux_sym_log_level_token1] = ACTIONS(2386), + [aux_sym_log_verbose_token1] = ACTIONS(2386), + [aux_sym_macs_token1] = ACTIONS(2386), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2386), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2386), + [aux_sym_password_authentication_token1] = ACTIONS(2386), + [aux_sym_permit_local_command_token1] = ACTIONS(2386), + [aux_sym_permit_remote_open_token1] = ACTIONS(2386), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2386), + [aux_sym_port_token1] = ACTIONS(2386), + [aux_sym_preferred_authentications_token1] = ACTIONS(2386), + [aux_sym_protocol_token1] = ACTIONS(2386), + [aux_sym_proxy_command_token1] = ACTIONS(2386), + [aux_sym_proxy_jump_token1] = ACTIONS(2386), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2386), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2386), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2386), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2386), + [aux_sym_rekey_limit_token1] = ACTIONS(2386), + [aux_sym_remote_command_token1] = ACTIONS(2386), + [aux_sym_remote_forward_token1] = ACTIONS(2386), + [aux_sym_request_tty_token1] = ACTIONS(2386), + [aux_sym_required_rsa_size_token1] = ACTIONS(2386), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2386), + [aux_sym_security_key_provider_token1] = ACTIONS(2386), + [aux_sym_send_env_token1] = ACTIONS(2386), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2386), + [aux_sym_server_alive_interval_token1] = ACTIONS(2386), + [aux_sym_session_type_token1] = ACTIONS(2386), + [aux_sym_set_env_token1] = ACTIONS(2386), + [aux_sym_stdin_null_token1] = ACTIONS(2386), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2386), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2386), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2386), + [aux_sym_syslog_facility_token1] = ACTIONS(2386), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2386), + [aux_sym_keep_alive_token1] = ACTIONS(2386), + [aux_sym_tunnel_token1] = ACTIONS(2388), + [aux_sym_tunnel_device_token1] = ACTIONS(2386), + [aux_sym_update_host_keys_token1] = ACTIONS(2386), + [aux_sym_use_keychain_token1] = ACTIONS(2386), + [aux_sym_use_roaming_token1] = ACTIONS(2386), + [aux_sym_user_token1] = ACTIONS(2388), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2386), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2386), + [aux_sym_visual_host_key_token1] = ACTIONS(2386), + [aux_sym_xauth_location_token1] = ACTIONS(2386), }, [325] = { - [ts_builtin_sym_end] = ACTIONS(2385), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2387), - [anon_sym_DQUOTE] = ACTIONS(2385), - [aux_sym_match_token1] = ACTIONS(2385), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2385), - [aux_sym_address_family_token1] = ACTIONS(2385), - [aux_sym_batch_mode_token1] = ACTIONS(2385), - [aux_sym_bind_address_token1] = ACTIONS(2385), - [aux_sym_bind_interface_token1] = ACTIONS(2385), - [aux_sym_canonical_domains_token1] = ACTIONS(2385), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2385), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2385), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2385), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2385), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2385), - [aux_sym_certificate_file_token1] = ACTIONS(2385), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2385), - [aux_sym_check_host_ip_token1] = ACTIONS(2385), - [aux_sym_ciphers_token1] = ACTIONS(2385), - [aux_sym_cipher_token1] = ACTIONS(2387), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2385), - [aux_sym_compression_token1] = ACTIONS(2385), - [aux_sym_connection_attempts_token1] = ACTIONS(2385), - [aux_sym_connect_timeout_token1] = ACTIONS(2385), - [aux_sym_control_master_token1] = ACTIONS(2385), - [aux_sym_control_path_token1] = ACTIONS(2385), - [aux_sym_control_persist_token1] = ACTIONS(2385), - [aux_sym_dynamic_forward_token1] = ACTIONS(2385), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2385), - [aux_sym_escape_char_token1] = ACTIONS(2385), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2385), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2385), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2385), - [aux_sym_forward_agent_token1] = ACTIONS(2385), - [aux_sym_forward_x11_token1] = ACTIONS(2387), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2385), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2385), - [aux_sym_gateway_ports_token1] = ACTIONS(2385), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2385), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2385), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2385), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2385), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2385), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2385), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2385), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2385), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2385), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2385), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2385), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2385), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2385), - [aux_sym_host_key_alias_token1] = ACTIONS(2385), - [aux_sym_hostname_token1] = ACTIONS(2385), - [aux_sym_identities_only_token1] = ACTIONS(2385), - [aux_sym_identity_agent_token1] = ACTIONS(2385), - [aux_sym_identity_file_token1] = ACTIONS(2385), - [aux_sym_ignore_unknown_token1] = ACTIONS(2385), - [aux_sym_include_token1] = ACTIONS(2385), - [aux_sym_ip_qos_token1] = ACTIONS(2385), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2385), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2385), - [aux_sym_kex_algorithms_token1] = ACTIONS(2385), - [aux_sym_known_hosts_command_token1] = ACTIONS(2385), - [aux_sym_local_command_token1] = ACTIONS(2385), - [aux_sym_local_forward_token1] = ACTIONS(2385), - [aux_sym_log_level_token1] = ACTIONS(2385), - [aux_sym_log_verbose_token1] = ACTIONS(2385), - [aux_sym_macs_token1] = ACTIONS(2385), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2385), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2385), - [aux_sym_password_authentication_token1] = ACTIONS(2385), - [aux_sym_permit_local_command_token1] = ACTIONS(2385), - [aux_sym_permit_remote_open_token1] = ACTIONS(2385), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2385), - [aux_sym_port_token1] = ACTIONS(2385), - [aux_sym_preferred_authentications_token1] = ACTIONS(2385), - [aux_sym_protocol_token1] = ACTIONS(2385), - [aux_sym_proxy_command_token1] = ACTIONS(2385), - [aux_sym_proxy_jump_token1] = ACTIONS(2385), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2385), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2385), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2385), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2385), - [aux_sym_rekey_limit_token1] = ACTIONS(2385), - [aux_sym_remote_command_token1] = ACTIONS(2385), - [aux_sym_remote_forward_token1] = ACTIONS(2385), - [aux_sym_request_tty_token1] = ACTIONS(2385), - [aux_sym_required_rsa_size_token1] = ACTIONS(2385), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2385), - [aux_sym_security_key_provider_token1] = ACTIONS(2385), - [aux_sym_send_env_token1] = ACTIONS(2385), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2385), - [aux_sym_server_alive_interval_token1] = ACTIONS(2385), - [aux_sym_session_type_token1] = ACTIONS(2385), - [aux_sym_set_env_token1] = ACTIONS(2385), - [aux_sym_stdin_null_token1] = ACTIONS(2385), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2385), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2385), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2385), - [aux_sym_syslog_facility_token1] = ACTIONS(2385), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2385), - [aux_sym_keep_alive_token1] = ACTIONS(2385), - [aux_sym_tunnel_token1] = ACTIONS(2387), - [aux_sym_tunnel_device_token1] = ACTIONS(2385), - [aux_sym_update_host_keys_token1] = ACTIONS(2385), - [aux_sym_use_keychain_token1] = ACTIONS(2385), - [aux_sym_use_roaming_token1] = ACTIONS(2385), - [aux_sym_user_token1] = ACTIONS(2387), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2385), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2385), - [aux_sym_visual_host_key_token1] = ACTIONS(2385), - [aux_sym_xauth_location_token1] = ACTIONS(2385), + [ts_builtin_sym_end] = ACTIONS(2392), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2394), + [anon_sym_DQUOTE] = ACTIONS(2392), + [aux_sym_match_token1] = ACTIONS(2392), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2392), + [aux_sym_address_family_token1] = ACTIONS(2392), + [aux_sym_batch_mode_token1] = ACTIONS(2392), + [aux_sym_bind_address_token1] = ACTIONS(2392), + [aux_sym_bind_interface_token1] = ACTIONS(2392), + [aux_sym_canonical_domains_token1] = ACTIONS(2392), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2392), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2392), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2392), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2392), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2392), + [aux_sym_certificate_file_token1] = ACTIONS(2392), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2392), + [aux_sym_check_host_ip_token1] = ACTIONS(2392), + [aux_sym_ciphers_token1] = ACTIONS(2392), + [aux_sym_cipher_token1] = ACTIONS(2394), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2392), + [aux_sym_compression_token1] = ACTIONS(2392), + [aux_sym_connection_attempts_token1] = ACTIONS(2392), + [aux_sym_connect_timeout_token1] = ACTIONS(2392), + [aux_sym_control_master_token1] = ACTIONS(2392), + [aux_sym_control_path_token1] = ACTIONS(2392), + [aux_sym_control_persist_token1] = ACTIONS(2392), + [aux_sym_dynamic_forward_token1] = ACTIONS(2392), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2392), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2392), + [aux_sym_escape_char_token1] = ACTIONS(2392), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2392), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2392), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2392), + [aux_sym_forward_agent_token1] = ACTIONS(2392), + [aux_sym_forward_x11_token1] = ACTIONS(2394), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2392), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2392), + [aux_sym_gateway_ports_token1] = ACTIONS(2392), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2392), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2392), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2392), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2392), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2392), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2392), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2392), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2392), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2392), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2392), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2392), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2392), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2392), + [aux_sym_host_key_alias_token1] = ACTIONS(2392), + [aux_sym_hostname_token1] = ACTIONS(2392), + [aux_sym_identities_only_token1] = ACTIONS(2392), + [aux_sym_identity_agent_token1] = ACTIONS(2392), + [aux_sym_identity_file_token1] = ACTIONS(2392), + [aux_sym_ignore_unknown_token1] = ACTIONS(2392), + [aux_sym_include_token1] = ACTIONS(2392), + [aux_sym_ip_qos_token1] = ACTIONS(2392), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2392), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2392), + [aux_sym_kex_algorithms_token1] = ACTIONS(2392), + [aux_sym_known_hosts_command_token1] = ACTIONS(2392), + [aux_sym_local_command_token1] = ACTIONS(2392), + [aux_sym_local_forward_token1] = ACTIONS(2392), + [aux_sym_log_level_token1] = ACTIONS(2392), + [aux_sym_log_verbose_token1] = ACTIONS(2392), + [aux_sym_macs_token1] = ACTIONS(2392), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2392), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2392), + [aux_sym_password_authentication_token1] = ACTIONS(2392), + [aux_sym_permit_local_command_token1] = ACTIONS(2392), + [aux_sym_permit_remote_open_token1] = ACTIONS(2392), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2392), + [aux_sym_port_token1] = ACTIONS(2392), + [aux_sym_preferred_authentications_token1] = ACTIONS(2392), + [aux_sym_protocol_token1] = ACTIONS(2392), + [aux_sym_proxy_command_token1] = ACTIONS(2392), + [aux_sym_proxy_jump_token1] = ACTIONS(2392), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2392), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2392), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2392), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2392), + [aux_sym_rekey_limit_token1] = ACTIONS(2392), + [aux_sym_remote_command_token1] = ACTIONS(2392), + [aux_sym_remote_forward_token1] = ACTIONS(2392), + [aux_sym_request_tty_token1] = ACTIONS(2392), + [aux_sym_required_rsa_size_token1] = ACTIONS(2392), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2392), + [aux_sym_security_key_provider_token1] = ACTIONS(2392), + [aux_sym_send_env_token1] = ACTIONS(2392), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2392), + [aux_sym_server_alive_interval_token1] = ACTIONS(2392), + [aux_sym_session_type_token1] = ACTIONS(2392), + [aux_sym_set_env_token1] = ACTIONS(2392), + [aux_sym_stdin_null_token1] = ACTIONS(2392), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2392), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2392), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2392), + [aux_sym_syslog_facility_token1] = ACTIONS(2392), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2392), + [aux_sym_keep_alive_token1] = ACTIONS(2392), + [aux_sym_tunnel_token1] = ACTIONS(2394), + [aux_sym_tunnel_device_token1] = ACTIONS(2392), + [aux_sym_update_host_keys_token1] = ACTIONS(2392), + [aux_sym_use_keychain_token1] = ACTIONS(2392), + [aux_sym_use_roaming_token1] = ACTIONS(2392), + [aux_sym_user_token1] = ACTIONS(2394), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2392), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2392), + [aux_sym_visual_host_key_token1] = ACTIONS(2392), + [aux_sym_xauth_location_token1] = ACTIONS(2392), }, [326] = { - [ts_builtin_sym_end] = ACTIONS(2389), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2391), - [anon_sym_DQUOTE] = ACTIONS(2393), - [aux_sym_match_token1] = ACTIONS(2389), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2389), - [aux_sym_address_family_token1] = ACTIONS(2389), - [aux_sym_batch_mode_token1] = ACTIONS(2389), - [aux_sym_bind_address_token1] = ACTIONS(2389), - [aux_sym_bind_interface_token1] = ACTIONS(2389), - [aux_sym_canonical_domains_token1] = ACTIONS(2389), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2389), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2389), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2389), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2389), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2389), - [aux_sym_certificate_file_token1] = ACTIONS(2389), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2389), - [aux_sym_check_host_ip_token1] = ACTIONS(2389), - [aux_sym_ciphers_token1] = ACTIONS(2389), - [aux_sym_cipher_token1] = ACTIONS(2391), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2389), - [aux_sym_compression_token1] = ACTIONS(2389), - [aux_sym_connection_attempts_token1] = ACTIONS(2389), - [aux_sym_connect_timeout_token1] = ACTIONS(2389), - [aux_sym_control_master_token1] = ACTIONS(2389), - [aux_sym_control_path_token1] = ACTIONS(2389), - [aux_sym_control_persist_token1] = ACTIONS(2389), - [aux_sym_dynamic_forward_token1] = ACTIONS(2389), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2389), - [aux_sym_escape_char_token1] = ACTIONS(2389), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2389), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2389), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2389), - [aux_sym_forward_agent_token1] = ACTIONS(2389), - [aux_sym_forward_x11_token1] = ACTIONS(2391), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2389), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2389), - [aux_sym_gateway_ports_token1] = ACTIONS(2389), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2389), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2389), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2389), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2389), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2389), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2389), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2389), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2389), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2389), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2389), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2389), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2389), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2389), - [aux_sym_host_key_alias_token1] = ACTIONS(2389), - [aux_sym_hostname_token1] = ACTIONS(2389), - [aux_sym_identities_only_token1] = ACTIONS(2389), - [aux_sym_identity_agent_token1] = ACTIONS(2389), - [aux_sym_identity_file_token1] = ACTIONS(2389), - [aux_sym_ignore_unknown_token1] = ACTIONS(2389), - [aux_sym_include_token1] = ACTIONS(2389), - [aux_sym_ip_qos_token1] = ACTIONS(2389), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2389), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2389), - [aux_sym_kex_algorithms_token1] = ACTIONS(2389), - [aux_sym_known_hosts_command_token1] = ACTIONS(2389), - [aux_sym_local_command_token1] = ACTIONS(2389), - [aux_sym_local_forward_token1] = ACTIONS(2389), - [aux_sym_log_level_token1] = ACTIONS(2389), - [aux_sym_log_verbose_token1] = ACTIONS(2389), - [aux_sym_macs_token1] = ACTIONS(2389), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2389), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2389), - [aux_sym_password_authentication_token1] = ACTIONS(2389), - [aux_sym_permit_local_command_token1] = ACTIONS(2389), - [aux_sym_permit_remote_open_token1] = ACTIONS(2389), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2389), - [aux_sym_port_token1] = ACTIONS(2389), - [aux_sym_preferred_authentications_token1] = ACTIONS(2389), - [aux_sym_protocol_token1] = ACTIONS(2389), - [aux_sym_proxy_command_token1] = ACTIONS(2389), - [aux_sym_proxy_jump_token1] = ACTIONS(2389), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2389), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2389), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2389), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2389), - [aux_sym_rekey_limit_token1] = ACTIONS(2389), - [aux_sym_remote_command_token1] = ACTIONS(2389), - [aux_sym_remote_forward_token1] = ACTIONS(2389), - [aux_sym_request_tty_token1] = ACTIONS(2389), - [aux_sym_required_rsa_size_token1] = ACTIONS(2389), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2389), - [aux_sym_security_key_provider_token1] = ACTIONS(2389), - [aux_sym_send_env_token1] = ACTIONS(2389), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2389), - [aux_sym_server_alive_interval_token1] = ACTIONS(2389), - [aux_sym_session_type_token1] = ACTIONS(2389), - [aux_sym_set_env_token1] = ACTIONS(2389), - [aux_sym_stdin_null_token1] = ACTIONS(2389), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2389), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2389), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2389), - [aux_sym_syslog_facility_token1] = ACTIONS(2389), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2389), - [aux_sym_keep_alive_token1] = ACTIONS(2389), - [aux_sym_tunnel_token1] = ACTIONS(2391), - [aux_sym_tunnel_device_token1] = ACTIONS(2389), - [aux_sym_update_host_keys_token1] = ACTIONS(2389), - [aux_sym_use_keychain_token1] = ACTIONS(2389), - [aux_sym_use_roaming_token1] = ACTIONS(2389), - [aux_sym_user_token1] = ACTIONS(2391), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2389), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2389), - [aux_sym_visual_host_key_token1] = ACTIONS(2389), - [aux_sym_xauth_location_token1] = ACTIONS(2389), + [ts_builtin_sym_end] = ACTIONS(2396), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2400), + [aux_sym_match_token1] = ACTIONS(2396), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2396), + [aux_sym_address_family_token1] = ACTIONS(2396), + [aux_sym_batch_mode_token1] = ACTIONS(2396), + [aux_sym_bind_address_token1] = ACTIONS(2396), + [aux_sym_bind_interface_token1] = ACTIONS(2396), + [aux_sym_canonical_domains_token1] = ACTIONS(2396), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2396), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2396), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2396), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2396), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2396), + [aux_sym_certificate_file_token1] = ACTIONS(2396), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2396), + [aux_sym_check_host_ip_token1] = ACTIONS(2396), + [aux_sym_ciphers_token1] = ACTIONS(2396), + [aux_sym_cipher_token1] = ACTIONS(2398), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2396), + [aux_sym_compression_token1] = ACTIONS(2396), + [aux_sym_connection_attempts_token1] = ACTIONS(2396), + [aux_sym_connect_timeout_token1] = ACTIONS(2396), + [aux_sym_control_master_token1] = ACTIONS(2396), + [aux_sym_control_path_token1] = ACTIONS(2396), + [aux_sym_control_persist_token1] = ACTIONS(2396), + [aux_sym_dynamic_forward_token1] = ACTIONS(2396), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2396), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2396), + [aux_sym_escape_char_token1] = ACTIONS(2396), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2396), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2396), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2396), + [aux_sym_forward_agent_token1] = ACTIONS(2396), + [aux_sym_forward_x11_token1] = ACTIONS(2398), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2396), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2396), + [aux_sym_gateway_ports_token1] = ACTIONS(2396), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2396), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2396), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2396), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2396), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2396), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2396), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2396), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2396), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2396), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2396), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2396), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2396), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2396), + [aux_sym_host_key_alias_token1] = ACTIONS(2396), + [aux_sym_hostname_token1] = ACTIONS(2396), + [aux_sym_identities_only_token1] = ACTIONS(2396), + [aux_sym_identity_agent_token1] = ACTIONS(2396), + [aux_sym_identity_file_token1] = ACTIONS(2396), + [aux_sym_ignore_unknown_token1] = ACTIONS(2396), + [aux_sym_include_token1] = ACTIONS(2396), + [aux_sym_ip_qos_token1] = ACTIONS(2396), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2396), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2396), + [aux_sym_kex_algorithms_token1] = ACTIONS(2396), + [aux_sym_known_hosts_command_token1] = ACTIONS(2396), + [aux_sym_local_command_token1] = ACTIONS(2396), + [aux_sym_local_forward_token1] = ACTIONS(2396), + [aux_sym_log_level_token1] = ACTIONS(2396), + [aux_sym_log_verbose_token1] = ACTIONS(2396), + [aux_sym_macs_token1] = ACTIONS(2396), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2396), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2396), + [aux_sym_password_authentication_token1] = ACTIONS(2396), + [aux_sym_permit_local_command_token1] = ACTIONS(2396), + [aux_sym_permit_remote_open_token1] = ACTIONS(2396), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2396), + [aux_sym_port_token1] = ACTIONS(2396), + [aux_sym_preferred_authentications_token1] = ACTIONS(2396), + [aux_sym_protocol_token1] = ACTIONS(2396), + [aux_sym_proxy_command_token1] = ACTIONS(2396), + [aux_sym_proxy_jump_token1] = ACTIONS(2396), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2396), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2396), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2396), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2396), + [aux_sym_rekey_limit_token1] = ACTIONS(2396), + [aux_sym_remote_command_token1] = ACTIONS(2396), + [aux_sym_remote_forward_token1] = ACTIONS(2396), + [aux_sym_request_tty_token1] = ACTIONS(2396), + [aux_sym_required_rsa_size_token1] = ACTIONS(2396), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2396), + [aux_sym_security_key_provider_token1] = ACTIONS(2396), + [aux_sym_send_env_token1] = ACTIONS(2396), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2396), + [aux_sym_server_alive_interval_token1] = ACTIONS(2396), + [aux_sym_session_type_token1] = ACTIONS(2396), + [aux_sym_set_env_token1] = ACTIONS(2396), + [aux_sym_stdin_null_token1] = ACTIONS(2396), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2396), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2396), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2396), + [aux_sym_syslog_facility_token1] = ACTIONS(2396), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2396), + [aux_sym_keep_alive_token1] = ACTIONS(2396), + [aux_sym_tunnel_token1] = ACTIONS(2398), + [aux_sym_tunnel_device_token1] = ACTIONS(2396), + [aux_sym_update_host_keys_token1] = ACTIONS(2396), + [aux_sym_use_keychain_token1] = ACTIONS(2396), + [aux_sym_use_roaming_token1] = ACTIONS(2396), + [aux_sym_user_token1] = ACTIONS(2398), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2396), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2396), + [aux_sym_visual_host_key_token1] = ACTIONS(2396), + [aux_sym_xauth_location_token1] = ACTIONS(2396), }, [327] = { - [ts_builtin_sym_end] = ACTIONS(2395), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2397), - [anon_sym_DQUOTE] = ACTIONS(2395), - [aux_sym_match_token1] = ACTIONS(2395), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2395), - [aux_sym_address_family_token1] = ACTIONS(2395), - [aux_sym_batch_mode_token1] = ACTIONS(2395), - [aux_sym_bind_address_token1] = ACTIONS(2395), - [aux_sym_bind_interface_token1] = ACTIONS(2395), - [aux_sym_canonical_domains_token1] = ACTIONS(2395), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2395), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2395), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2395), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2395), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2395), - [aux_sym_certificate_file_token1] = ACTIONS(2395), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2395), - [aux_sym_check_host_ip_token1] = ACTIONS(2395), - [aux_sym_ciphers_token1] = ACTIONS(2395), - [aux_sym_cipher_token1] = ACTIONS(2397), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2395), - [aux_sym_compression_token1] = ACTIONS(2395), - [aux_sym_connection_attempts_token1] = ACTIONS(2395), - [aux_sym_connect_timeout_token1] = ACTIONS(2395), - [aux_sym_control_master_token1] = ACTIONS(2395), - [aux_sym_control_path_token1] = ACTIONS(2395), - [aux_sym_control_persist_token1] = ACTIONS(2395), - [aux_sym_dynamic_forward_token1] = ACTIONS(2395), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2395), - [aux_sym_escape_char_token1] = ACTIONS(2395), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2395), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2395), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2395), - [aux_sym_forward_agent_token1] = ACTIONS(2395), - [aux_sym_forward_x11_token1] = ACTIONS(2397), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2395), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2395), - [aux_sym_gateway_ports_token1] = ACTIONS(2395), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2395), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2395), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2395), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2395), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2395), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2395), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2395), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2395), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2395), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2395), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2395), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2395), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2395), - [aux_sym_host_key_alias_token1] = ACTIONS(2395), - [aux_sym_hostname_token1] = ACTIONS(2395), - [aux_sym_identities_only_token1] = ACTIONS(2395), - [aux_sym_identity_agent_token1] = ACTIONS(2395), - [aux_sym_identity_file_token1] = ACTIONS(2395), - [aux_sym_ignore_unknown_token1] = ACTIONS(2395), - [aux_sym_include_token1] = ACTIONS(2395), - [aux_sym_ip_qos_token1] = ACTIONS(2395), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2395), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2395), - [aux_sym_kex_algorithms_token1] = ACTIONS(2395), - [aux_sym_known_hosts_command_token1] = ACTIONS(2395), - [aux_sym_local_command_token1] = ACTIONS(2395), - [aux_sym_local_forward_token1] = ACTIONS(2395), - [aux_sym_log_level_token1] = ACTIONS(2395), - [aux_sym_log_verbose_token1] = ACTIONS(2395), - [aux_sym_macs_token1] = ACTIONS(2395), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2395), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2395), - [aux_sym_password_authentication_token1] = ACTIONS(2395), - [aux_sym_permit_local_command_token1] = ACTIONS(2395), - [aux_sym_permit_remote_open_token1] = ACTIONS(2395), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2395), - [aux_sym_port_token1] = ACTIONS(2395), - [aux_sym_preferred_authentications_token1] = ACTIONS(2395), - [aux_sym_protocol_token1] = ACTIONS(2395), - [aux_sym_proxy_command_token1] = ACTIONS(2395), - [aux_sym_proxy_jump_token1] = ACTIONS(2395), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2395), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2395), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2395), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2395), - [aux_sym_rekey_limit_token1] = ACTIONS(2395), - [aux_sym_remote_command_token1] = ACTIONS(2395), - [aux_sym_remote_forward_token1] = ACTIONS(2395), - [aux_sym_request_tty_token1] = ACTIONS(2395), - [aux_sym_required_rsa_size_token1] = ACTIONS(2395), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2395), - [aux_sym_security_key_provider_token1] = ACTIONS(2395), - [aux_sym_send_env_token1] = ACTIONS(2395), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2395), - [aux_sym_server_alive_interval_token1] = ACTIONS(2395), - [aux_sym_session_type_token1] = ACTIONS(2395), - [aux_sym_set_env_token1] = ACTIONS(2395), - [aux_sym_stdin_null_token1] = ACTIONS(2395), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2395), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2395), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2395), - [aux_sym_syslog_facility_token1] = ACTIONS(2395), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2395), - [aux_sym_keep_alive_token1] = ACTIONS(2395), - [aux_sym_tunnel_token1] = ACTIONS(2397), - [aux_sym_tunnel_device_token1] = ACTIONS(2395), - [aux_sym_update_host_keys_token1] = ACTIONS(2395), - [aux_sym_use_keychain_token1] = ACTIONS(2395), - [aux_sym_use_roaming_token1] = ACTIONS(2395), - [aux_sym_user_token1] = ACTIONS(2397), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2395), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2395), - [aux_sym_visual_host_key_token1] = ACTIONS(2395), - [aux_sym_xauth_location_token1] = ACTIONS(2395), + [ts_builtin_sym_end] = ACTIONS(2402), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2402), + [aux_sym_match_token1] = ACTIONS(2402), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2402), + [aux_sym_address_family_token1] = ACTIONS(2402), + [aux_sym_batch_mode_token1] = ACTIONS(2402), + [aux_sym_bind_address_token1] = ACTIONS(2402), + [aux_sym_bind_interface_token1] = ACTIONS(2402), + [aux_sym_canonical_domains_token1] = ACTIONS(2402), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2402), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2402), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2402), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2402), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2402), + [aux_sym_certificate_file_token1] = ACTIONS(2402), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2402), + [aux_sym_check_host_ip_token1] = ACTIONS(2402), + [aux_sym_ciphers_token1] = ACTIONS(2402), + [aux_sym_cipher_token1] = ACTIONS(2404), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2402), + [aux_sym_compression_token1] = ACTIONS(2402), + [aux_sym_connection_attempts_token1] = ACTIONS(2402), + [aux_sym_connect_timeout_token1] = ACTIONS(2402), + [aux_sym_control_master_token1] = ACTIONS(2402), + [aux_sym_control_path_token1] = ACTIONS(2402), + [aux_sym_control_persist_token1] = ACTIONS(2402), + [aux_sym_dynamic_forward_token1] = ACTIONS(2402), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2402), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2402), + [aux_sym_escape_char_token1] = ACTIONS(2402), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2402), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2402), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2402), + [aux_sym_forward_agent_token1] = ACTIONS(2402), + [aux_sym_forward_x11_token1] = ACTIONS(2404), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2402), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2402), + [aux_sym_gateway_ports_token1] = ACTIONS(2402), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2402), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2402), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2402), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2402), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2402), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2402), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2402), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2402), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2402), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2402), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2402), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2402), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2402), + [aux_sym_host_key_alias_token1] = ACTIONS(2402), + [aux_sym_hostname_token1] = ACTIONS(2402), + [aux_sym_identities_only_token1] = ACTIONS(2402), + [aux_sym_identity_agent_token1] = ACTIONS(2402), + [aux_sym_identity_file_token1] = ACTIONS(2402), + [aux_sym_ignore_unknown_token1] = ACTIONS(2402), + [aux_sym_include_token1] = ACTIONS(2402), + [aux_sym_ip_qos_token1] = ACTIONS(2402), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2402), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2402), + [aux_sym_kex_algorithms_token1] = ACTIONS(2402), + [aux_sym_known_hosts_command_token1] = ACTIONS(2402), + [aux_sym_local_command_token1] = ACTIONS(2402), + [aux_sym_local_forward_token1] = ACTIONS(2402), + [aux_sym_log_level_token1] = ACTIONS(2402), + [aux_sym_log_verbose_token1] = ACTIONS(2402), + [aux_sym_macs_token1] = ACTIONS(2402), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2402), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2402), + [aux_sym_password_authentication_token1] = ACTIONS(2402), + [aux_sym_permit_local_command_token1] = ACTIONS(2402), + [aux_sym_permit_remote_open_token1] = ACTIONS(2402), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2402), + [aux_sym_port_token1] = ACTIONS(2402), + [aux_sym_preferred_authentications_token1] = ACTIONS(2402), + [aux_sym_protocol_token1] = ACTIONS(2402), + [aux_sym_proxy_command_token1] = ACTIONS(2402), + [aux_sym_proxy_jump_token1] = ACTIONS(2402), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2402), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2402), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2402), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2402), + [aux_sym_rekey_limit_token1] = ACTIONS(2402), + [aux_sym_remote_command_token1] = ACTIONS(2402), + [aux_sym_remote_forward_token1] = ACTIONS(2402), + [aux_sym_request_tty_token1] = ACTIONS(2402), + [aux_sym_required_rsa_size_token1] = ACTIONS(2402), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2402), + [aux_sym_security_key_provider_token1] = ACTIONS(2402), + [aux_sym_send_env_token1] = ACTIONS(2402), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2402), + [aux_sym_server_alive_interval_token1] = ACTIONS(2402), + [aux_sym_session_type_token1] = ACTIONS(2402), + [aux_sym_set_env_token1] = ACTIONS(2402), + [aux_sym_stdin_null_token1] = ACTIONS(2402), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2402), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2402), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2402), + [aux_sym_syslog_facility_token1] = ACTIONS(2402), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2402), + [aux_sym_keep_alive_token1] = ACTIONS(2402), + [aux_sym_tunnel_token1] = ACTIONS(2404), + [aux_sym_tunnel_device_token1] = ACTIONS(2402), + [aux_sym_update_host_keys_token1] = ACTIONS(2402), + [aux_sym_use_keychain_token1] = ACTIONS(2402), + [aux_sym_use_roaming_token1] = ACTIONS(2402), + [aux_sym_user_token1] = ACTIONS(2404), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2402), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2402), + [aux_sym_visual_host_key_token1] = ACTIONS(2402), + [aux_sym_xauth_location_token1] = ACTIONS(2402), }, [328] = { - [ts_builtin_sym_end] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2401), - [anon_sym_DQUOTE] = ACTIONS(2403), - [aux_sym_match_token1] = ACTIONS(2399), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2399), - [aux_sym_address_family_token1] = ACTIONS(2399), - [aux_sym_batch_mode_token1] = ACTIONS(2399), - [aux_sym_bind_address_token1] = ACTIONS(2399), - [aux_sym_bind_interface_token1] = ACTIONS(2399), - [aux_sym_canonical_domains_token1] = ACTIONS(2399), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2399), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2399), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2399), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2399), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2399), - [aux_sym_certificate_file_token1] = ACTIONS(2399), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2399), - [aux_sym_check_host_ip_token1] = ACTIONS(2399), - [aux_sym_ciphers_token1] = ACTIONS(2399), - [aux_sym_cipher_token1] = ACTIONS(2401), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2399), - [aux_sym_compression_token1] = ACTIONS(2399), - [aux_sym_connection_attempts_token1] = ACTIONS(2399), - [aux_sym_connect_timeout_token1] = ACTIONS(2399), - [aux_sym_control_master_token1] = ACTIONS(2399), - [aux_sym_control_path_token1] = ACTIONS(2399), - [aux_sym_control_persist_token1] = ACTIONS(2399), - [aux_sym_dynamic_forward_token1] = ACTIONS(2399), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2399), - [aux_sym_escape_char_token1] = ACTIONS(2399), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2399), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2399), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2399), - [aux_sym_forward_agent_token1] = ACTIONS(2399), - [aux_sym_forward_x11_token1] = ACTIONS(2401), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2399), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2399), - [aux_sym_gateway_ports_token1] = ACTIONS(2399), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2399), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2399), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2399), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2399), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2399), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2399), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2399), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2399), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2399), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2399), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2399), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2399), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2399), - [aux_sym_host_key_alias_token1] = ACTIONS(2399), - [aux_sym_hostname_token1] = ACTIONS(2399), - [aux_sym_identities_only_token1] = ACTIONS(2399), - [aux_sym_identity_agent_token1] = ACTIONS(2399), - [aux_sym_identity_file_token1] = ACTIONS(2399), - [aux_sym_ignore_unknown_token1] = ACTIONS(2399), - [aux_sym_include_token1] = ACTIONS(2399), - [aux_sym_ip_qos_token1] = ACTIONS(2399), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2399), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2399), - [aux_sym_kex_algorithms_token1] = ACTIONS(2399), - [aux_sym_known_hosts_command_token1] = ACTIONS(2399), - [aux_sym_local_command_token1] = ACTIONS(2399), - [aux_sym_local_forward_token1] = ACTIONS(2399), - [aux_sym_log_level_token1] = ACTIONS(2399), - [aux_sym_log_verbose_token1] = ACTIONS(2399), - [aux_sym_macs_token1] = ACTIONS(2399), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2399), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2399), - [aux_sym_password_authentication_token1] = ACTIONS(2399), - [aux_sym_permit_local_command_token1] = ACTIONS(2399), - [aux_sym_permit_remote_open_token1] = ACTIONS(2399), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2399), - [aux_sym_port_token1] = ACTIONS(2399), - [aux_sym_preferred_authentications_token1] = ACTIONS(2399), - [aux_sym_protocol_token1] = ACTIONS(2399), - [aux_sym_proxy_command_token1] = ACTIONS(2399), - [aux_sym_proxy_jump_token1] = ACTIONS(2399), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2399), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2399), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2399), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2399), - [aux_sym_rekey_limit_token1] = ACTIONS(2399), - [aux_sym_remote_command_token1] = ACTIONS(2399), - [aux_sym_remote_forward_token1] = ACTIONS(2399), - [aux_sym_request_tty_token1] = ACTIONS(2399), - [aux_sym_required_rsa_size_token1] = ACTIONS(2399), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2399), - [aux_sym_security_key_provider_token1] = ACTIONS(2399), - [aux_sym_send_env_token1] = ACTIONS(2399), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2399), - [aux_sym_server_alive_interval_token1] = ACTIONS(2399), - [aux_sym_session_type_token1] = ACTIONS(2399), - [aux_sym_set_env_token1] = ACTIONS(2399), - [aux_sym_stdin_null_token1] = ACTIONS(2399), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2399), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2399), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2399), - [aux_sym_syslog_facility_token1] = ACTIONS(2399), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2399), - [aux_sym_keep_alive_token1] = ACTIONS(2399), - [aux_sym_tunnel_token1] = ACTIONS(2401), - [aux_sym_tunnel_device_token1] = ACTIONS(2399), - [aux_sym_update_host_keys_token1] = ACTIONS(2399), - [aux_sym_use_keychain_token1] = ACTIONS(2399), - [aux_sym_use_roaming_token1] = ACTIONS(2399), - [aux_sym_user_token1] = ACTIONS(2401), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2399), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2399), - [aux_sym_visual_host_key_token1] = ACTIONS(2399), - [aux_sym_xauth_location_token1] = ACTIONS(2399), + [ts_builtin_sym_end] = ACTIONS(2406), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2408), + [anon_sym_DQUOTE] = ACTIONS(2410), + [aux_sym_match_token1] = ACTIONS(2406), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2406), + [aux_sym_address_family_token1] = ACTIONS(2406), + [aux_sym_batch_mode_token1] = ACTIONS(2406), + [aux_sym_bind_address_token1] = ACTIONS(2406), + [aux_sym_bind_interface_token1] = ACTIONS(2406), + [aux_sym_canonical_domains_token1] = ACTIONS(2406), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2406), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2406), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2406), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2406), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2406), + [aux_sym_certificate_file_token1] = ACTIONS(2406), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2406), + [aux_sym_check_host_ip_token1] = ACTIONS(2406), + [aux_sym_ciphers_token1] = ACTIONS(2406), + [aux_sym_cipher_token1] = ACTIONS(2408), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2406), + [aux_sym_compression_token1] = ACTIONS(2406), + [aux_sym_connection_attempts_token1] = ACTIONS(2406), + [aux_sym_connect_timeout_token1] = ACTIONS(2406), + [aux_sym_control_master_token1] = ACTIONS(2406), + [aux_sym_control_path_token1] = ACTIONS(2406), + [aux_sym_control_persist_token1] = ACTIONS(2406), + [aux_sym_dynamic_forward_token1] = ACTIONS(2406), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2406), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2406), + [aux_sym_escape_char_token1] = ACTIONS(2406), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2406), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2406), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2406), + [aux_sym_forward_agent_token1] = ACTIONS(2406), + [aux_sym_forward_x11_token1] = ACTIONS(2408), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2406), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2406), + [aux_sym_gateway_ports_token1] = ACTIONS(2406), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2406), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2406), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2406), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2406), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2406), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2406), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2406), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2406), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2406), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2406), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2406), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2406), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2406), + [aux_sym_host_key_alias_token1] = ACTIONS(2406), + [aux_sym_hostname_token1] = ACTIONS(2406), + [aux_sym_identities_only_token1] = ACTIONS(2406), + [aux_sym_identity_agent_token1] = ACTIONS(2406), + [aux_sym_identity_file_token1] = ACTIONS(2406), + [aux_sym_ignore_unknown_token1] = ACTIONS(2406), + [aux_sym_include_token1] = ACTIONS(2406), + [aux_sym_ip_qos_token1] = ACTIONS(2406), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2406), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2406), + [aux_sym_kex_algorithms_token1] = ACTIONS(2406), + [aux_sym_known_hosts_command_token1] = ACTIONS(2406), + [aux_sym_local_command_token1] = ACTIONS(2406), + [aux_sym_local_forward_token1] = ACTIONS(2406), + [aux_sym_log_level_token1] = ACTIONS(2406), + [aux_sym_log_verbose_token1] = ACTIONS(2406), + [aux_sym_macs_token1] = ACTIONS(2406), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2406), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2406), + [aux_sym_password_authentication_token1] = ACTIONS(2406), + [aux_sym_permit_local_command_token1] = ACTIONS(2406), + [aux_sym_permit_remote_open_token1] = ACTIONS(2406), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2406), + [aux_sym_port_token1] = ACTIONS(2406), + [aux_sym_preferred_authentications_token1] = ACTIONS(2406), + [aux_sym_protocol_token1] = ACTIONS(2406), + [aux_sym_proxy_command_token1] = ACTIONS(2406), + [aux_sym_proxy_jump_token1] = ACTIONS(2406), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2406), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2406), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2406), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2406), + [aux_sym_rekey_limit_token1] = ACTIONS(2406), + [aux_sym_remote_command_token1] = ACTIONS(2406), + [aux_sym_remote_forward_token1] = ACTIONS(2406), + [aux_sym_request_tty_token1] = ACTIONS(2406), + [aux_sym_required_rsa_size_token1] = ACTIONS(2406), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2406), + [aux_sym_security_key_provider_token1] = ACTIONS(2406), + [aux_sym_send_env_token1] = ACTIONS(2406), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2406), + [aux_sym_server_alive_interval_token1] = ACTIONS(2406), + [aux_sym_session_type_token1] = ACTIONS(2406), + [aux_sym_set_env_token1] = ACTIONS(2406), + [aux_sym_stdin_null_token1] = ACTIONS(2406), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2406), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2406), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2406), + [aux_sym_syslog_facility_token1] = ACTIONS(2406), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2406), + [aux_sym_keep_alive_token1] = ACTIONS(2406), + [aux_sym_tunnel_token1] = ACTIONS(2408), + [aux_sym_tunnel_device_token1] = ACTIONS(2406), + [aux_sym_update_host_keys_token1] = ACTIONS(2406), + [aux_sym_use_keychain_token1] = ACTIONS(2406), + [aux_sym_use_roaming_token1] = ACTIONS(2406), + [aux_sym_user_token1] = ACTIONS(2408), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2406), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2406), + [aux_sym_visual_host_key_token1] = ACTIONS(2406), + [aux_sym_xauth_location_token1] = ACTIONS(2406), }, [329] = { - [ts_builtin_sym_end] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2405), - [aux_sym_match_token1] = ACTIONS(2405), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2405), - [aux_sym_address_family_token1] = ACTIONS(2405), - [aux_sym_batch_mode_token1] = ACTIONS(2405), - [aux_sym_bind_address_token1] = ACTIONS(2405), - [aux_sym_bind_interface_token1] = ACTIONS(2405), - [aux_sym_canonical_domains_token1] = ACTIONS(2405), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2405), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2405), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2405), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2405), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2405), - [aux_sym_certificate_file_token1] = ACTIONS(2405), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2405), - [aux_sym_check_host_ip_token1] = ACTIONS(2405), - [aux_sym_ciphers_token1] = ACTIONS(2405), - [aux_sym_cipher_token1] = ACTIONS(2407), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2405), - [aux_sym_compression_token1] = ACTIONS(2405), - [aux_sym_connection_attempts_token1] = ACTIONS(2405), - [aux_sym_connect_timeout_token1] = ACTIONS(2405), - [aux_sym_control_master_token1] = ACTIONS(2405), - [aux_sym_control_path_token1] = ACTIONS(2405), - [aux_sym_control_persist_token1] = ACTIONS(2405), - [aux_sym_dynamic_forward_token1] = ACTIONS(2405), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2405), - [aux_sym_escape_char_token1] = ACTIONS(2405), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2405), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2405), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2405), - [aux_sym_forward_agent_token1] = ACTIONS(2405), - [aux_sym_forward_x11_token1] = ACTIONS(2407), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2405), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2405), - [aux_sym_gateway_ports_token1] = ACTIONS(2405), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2405), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2405), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2405), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2405), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2405), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2405), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2405), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2405), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2405), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2405), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2405), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2405), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2405), - [aux_sym_host_key_alias_token1] = ACTIONS(2405), - [aux_sym_hostname_token1] = ACTIONS(2405), - [aux_sym_identities_only_token1] = ACTIONS(2405), - [aux_sym_identity_agent_token1] = ACTIONS(2405), - [aux_sym_identity_file_token1] = ACTIONS(2405), - [aux_sym_ignore_unknown_token1] = ACTIONS(2405), - [aux_sym_include_token1] = ACTIONS(2405), - [aux_sym_ip_qos_token1] = ACTIONS(2405), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2405), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2405), - [aux_sym_kex_algorithms_token1] = ACTIONS(2405), - [aux_sym_known_hosts_command_token1] = ACTIONS(2405), - [aux_sym_local_command_token1] = ACTIONS(2405), - [aux_sym_local_forward_token1] = ACTIONS(2405), - [aux_sym_log_level_token1] = ACTIONS(2405), - [aux_sym_log_verbose_token1] = ACTIONS(2405), - [aux_sym_macs_token1] = ACTIONS(2405), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2405), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2405), - [aux_sym_password_authentication_token1] = ACTIONS(2405), - [aux_sym_permit_local_command_token1] = ACTIONS(2405), - [aux_sym_permit_remote_open_token1] = ACTIONS(2405), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2405), - [aux_sym_port_token1] = ACTIONS(2405), - [aux_sym_preferred_authentications_token1] = ACTIONS(2405), - [aux_sym_protocol_token1] = ACTIONS(2405), - [aux_sym_proxy_command_token1] = ACTIONS(2405), - [aux_sym_proxy_jump_token1] = ACTIONS(2405), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2405), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2405), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2405), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2405), - [aux_sym_rekey_limit_token1] = ACTIONS(2405), - [aux_sym_remote_command_token1] = ACTIONS(2405), - [aux_sym_remote_forward_token1] = ACTIONS(2405), - [aux_sym_request_tty_token1] = ACTIONS(2405), - [aux_sym_required_rsa_size_token1] = ACTIONS(2405), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2405), - [aux_sym_security_key_provider_token1] = ACTIONS(2405), - [aux_sym_send_env_token1] = ACTIONS(2405), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2405), - [aux_sym_server_alive_interval_token1] = ACTIONS(2405), - [aux_sym_session_type_token1] = ACTIONS(2405), - [aux_sym_set_env_token1] = ACTIONS(2405), - [aux_sym_stdin_null_token1] = ACTIONS(2405), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2405), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2405), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2405), - [aux_sym_syslog_facility_token1] = ACTIONS(2405), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2405), - [aux_sym_keep_alive_token1] = ACTIONS(2405), - [aux_sym_tunnel_token1] = ACTIONS(2407), - [aux_sym_tunnel_device_token1] = ACTIONS(2405), - [aux_sym_update_host_keys_token1] = ACTIONS(2405), - [aux_sym_use_keychain_token1] = ACTIONS(2405), - [aux_sym_use_roaming_token1] = ACTIONS(2405), - [aux_sym_user_token1] = ACTIONS(2407), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2405), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2405), - [aux_sym_visual_host_key_token1] = ACTIONS(2405), - [aux_sym_xauth_location_token1] = ACTIONS(2405), + [ts_builtin_sym_end] = ACTIONS(2412), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2412), + [aux_sym_match_token1] = ACTIONS(2412), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2412), + [aux_sym_address_family_token1] = ACTIONS(2412), + [aux_sym_batch_mode_token1] = ACTIONS(2412), + [aux_sym_bind_address_token1] = ACTIONS(2412), + [aux_sym_bind_interface_token1] = ACTIONS(2412), + [aux_sym_canonical_domains_token1] = ACTIONS(2412), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2412), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2412), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2412), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2412), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2412), + [aux_sym_certificate_file_token1] = ACTIONS(2412), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2412), + [aux_sym_check_host_ip_token1] = ACTIONS(2412), + [aux_sym_ciphers_token1] = ACTIONS(2412), + [aux_sym_cipher_token1] = ACTIONS(2414), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2412), + [aux_sym_compression_token1] = ACTIONS(2412), + [aux_sym_connection_attempts_token1] = ACTIONS(2412), + [aux_sym_connect_timeout_token1] = ACTIONS(2412), + [aux_sym_control_master_token1] = ACTIONS(2412), + [aux_sym_control_path_token1] = ACTIONS(2412), + [aux_sym_control_persist_token1] = ACTIONS(2412), + [aux_sym_dynamic_forward_token1] = ACTIONS(2412), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2412), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2412), + [aux_sym_escape_char_token1] = ACTIONS(2412), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2412), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2412), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2412), + [aux_sym_forward_agent_token1] = ACTIONS(2412), + [aux_sym_forward_x11_token1] = ACTIONS(2414), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2412), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2412), + [aux_sym_gateway_ports_token1] = ACTIONS(2412), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2412), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2412), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2412), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2412), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2412), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2412), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2412), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2412), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2412), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2412), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2412), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2412), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2412), + [aux_sym_host_key_alias_token1] = ACTIONS(2412), + [aux_sym_hostname_token1] = ACTIONS(2412), + [aux_sym_identities_only_token1] = ACTIONS(2412), + [aux_sym_identity_agent_token1] = ACTIONS(2412), + [aux_sym_identity_file_token1] = ACTIONS(2412), + [aux_sym_ignore_unknown_token1] = ACTIONS(2412), + [aux_sym_include_token1] = ACTIONS(2412), + [aux_sym_ip_qos_token1] = ACTIONS(2412), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2412), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2412), + [aux_sym_kex_algorithms_token1] = ACTIONS(2412), + [aux_sym_known_hosts_command_token1] = ACTIONS(2412), + [aux_sym_local_command_token1] = ACTIONS(2412), + [aux_sym_local_forward_token1] = ACTIONS(2412), + [aux_sym_log_level_token1] = ACTIONS(2412), + [aux_sym_log_verbose_token1] = ACTIONS(2412), + [aux_sym_macs_token1] = ACTIONS(2412), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2412), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2412), + [aux_sym_password_authentication_token1] = ACTIONS(2412), + [aux_sym_permit_local_command_token1] = ACTIONS(2412), + [aux_sym_permit_remote_open_token1] = ACTIONS(2412), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2412), + [aux_sym_port_token1] = ACTIONS(2412), + [aux_sym_preferred_authentications_token1] = ACTIONS(2412), + [aux_sym_protocol_token1] = ACTIONS(2412), + [aux_sym_proxy_command_token1] = ACTIONS(2412), + [aux_sym_proxy_jump_token1] = ACTIONS(2412), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2412), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2412), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2412), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2412), + [aux_sym_rekey_limit_token1] = ACTIONS(2412), + [aux_sym_remote_command_token1] = ACTIONS(2412), + [aux_sym_remote_forward_token1] = ACTIONS(2412), + [aux_sym_request_tty_token1] = ACTIONS(2412), + [aux_sym_required_rsa_size_token1] = ACTIONS(2412), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2412), + [aux_sym_security_key_provider_token1] = ACTIONS(2412), + [aux_sym_send_env_token1] = ACTIONS(2412), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2412), + [aux_sym_server_alive_interval_token1] = ACTIONS(2412), + [aux_sym_session_type_token1] = ACTIONS(2412), + [aux_sym_set_env_token1] = ACTIONS(2412), + [aux_sym_stdin_null_token1] = ACTIONS(2412), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2412), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2412), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2412), + [aux_sym_syslog_facility_token1] = ACTIONS(2412), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2412), + [aux_sym_keep_alive_token1] = ACTIONS(2412), + [aux_sym_tunnel_token1] = ACTIONS(2414), + [aux_sym_tunnel_device_token1] = ACTIONS(2412), + [aux_sym_update_host_keys_token1] = ACTIONS(2412), + [aux_sym_use_keychain_token1] = ACTIONS(2412), + [aux_sym_use_roaming_token1] = ACTIONS(2412), + [aux_sym_user_token1] = ACTIONS(2414), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2412), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2412), + [aux_sym_visual_host_key_token1] = ACTIONS(2412), + [aux_sym_xauth_location_token1] = ACTIONS(2412), }, [330] = { - [ts_builtin_sym_end] = ACTIONS(2409), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2411), - [anon_sym_DQUOTE] = ACTIONS(2413), - [aux_sym_match_token1] = ACTIONS(2409), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2409), - [aux_sym_address_family_token1] = ACTIONS(2409), - [aux_sym_batch_mode_token1] = ACTIONS(2409), - [aux_sym_bind_address_token1] = ACTIONS(2409), - [aux_sym_bind_interface_token1] = ACTIONS(2409), - [aux_sym_canonical_domains_token1] = ACTIONS(2409), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2409), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2409), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2409), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2409), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2409), - [aux_sym_certificate_file_token1] = ACTIONS(2409), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2409), - [aux_sym_check_host_ip_token1] = ACTIONS(2409), - [aux_sym_ciphers_token1] = ACTIONS(2409), - [aux_sym_cipher_token1] = ACTIONS(2411), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2409), - [aux_sym_compression_token1] = ACTIONS(2409), - [aux_sym_connection_attempts_token1] = ACTIONS(2409), - [aux_sym_connect_timeout_token1] = ACTIONS(2409), - [aux_sym_control_master_token1] = ACTIONS(2409), - [aux_sym_control_path_token1] = ACTIONS(2409), - [aux_sym_control_persist_token1] = ACTIONS(2409), - [aux_sym_dynamic_forward_token1] = ACTIONS(2409), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2409), - [aux_sym_escape_char_token1] = ACTIONS(2409), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2409), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2409), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2409), - [aux_sym_forward_agent_token1] = ACTIONS(2409), - [aux_sym_forward_x11_token1] = ACTIONS(2411), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2409), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2409), - [aux_sym_gateway_ports_token1] = ACTIONS(2409), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2409), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2409), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2409), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2409), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2409), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2409), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2409), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2409), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2409), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2409), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2409), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2409), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2409), - [aux_sym_host_key_alias_token1] = ACTIONS(2409), - [aux_sym_hostname_token1] = ACTIONS(2409), - [aux_sym_identities_only_token1] = ACTIONS(2409), - [aux_sym_identity_agent_token1] = ACTIONS(2409), - [aux_sym_identity_file_token1] = ACTIONS(2409), - [aux_sym_ignore_unknown_token1] = ACTIONS(2409), - [aux_sym_include_token1] = ACTIONS(2409), - [aux_sym_ip_qos_token1] = ACTIONS(2409), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2409), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2409), - [aux_sym_kex_algorithms_token1] = ACTIONS(2409), - [aux_sym_known_hosts_command_token1] = ACTIONS(2409), - [aux_sym_local_command_token1] = ACTIONS(2409), - [aux_sym_local_forward_token1] = ACTIONS(2409), - [aux_sym_log_level_token1] = ACTIONS(2409), - [aux_sym_log_verbose_token1] = ACTIONS(2409), - [aux_sym_macs_token1] = ACTIONS(2409), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2409), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2409), - [aux_sym_password_authentication_token1] = ACTIONS(2409), - [aux_sym_permit_local_command_token1] = ACTIONS(2409), - [aux_sym_permit_remote_open_token1] = ACTIONS(2409), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2409), - [aux_sym_port_token1] = ACTIONS(2409), - [aux_sym_preferred_authentications_token1] = ACTIONS(2409), - [aux_sym_protocol_token1] = ACTIONS(2409), - [aux_sym_proxy_command_token1] = ACTIONS(2409), - [aux_sym_proxy_jump_token1] = ACTIONS(2409), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2409), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2409), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2409), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2409), - [aux_sym_rekey_limit_token1] = ACTIONS(2409), - [aux_sym_remote_command_token1] = ACTIONS(2409), - [aux_sym_remote_forward_token1] = ACTIONS(2409), - [aux_sym_request_tty_token1] = ACTIONS(2409), - [aux_sym_required_rsa_size_token1] = ACTIONS(2409), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2409), - [aux_sym_security_key_provider_token1] = ACTIONS(2409), - [aux_sym_send_env_token1] = ACTIONS(2409), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2409), - [aux_sym_server_alive_interval_token1] = ACTIONS(2409), - [aux_sym_session_type_token1] = ACTIONS(2409), - [aux_sym_set_env_token1] = ACTIONS(2409), - [aux_sym_stdin_null_token1] = ACTIONS(2409), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2409), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2409), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2409), - [aux_sym_syslog_facility_token1] = ACTIONS(2409), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2409), - [aux_sym_keep_alive_token1] = ACTIONS(2409), - [aux_sym_tunnel_token1] = ACTIONS(2411), - [aux_sym_tunnel_device_token1] = ACTIONS(2409), - [aux_sym_update_host_keys_token1] = ACTIONS(2409), - [aux_sym_use_keychain_token1] = ACTIONS(2409), - [aux_sym_use_roaming_token1] = ACTIONS(2409), - [aux_sym_user_token1] = ACTIONS(2411), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2409), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2409), - [aux_sym_visual_host_key_token1] = ACTIONS(2409), - [aux_sym_xauth_location_token1] = ACTIONS(2409), + [ts_builtin_sym_end] = ACTIONS(2416), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2420), + [aux_sym_match_token1] = ACTIONS(2416), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2416), + [aux_sym_address_family_token1] = ACTIONS(2416), + [aux_sym_batch_mode_token1] = ACTIONS(2416), + [aux_sym_bind_address_token1] = ACTIONS(2416), + [aux_sym_bind_interface_token1] = ACTIONS(2416), + [aux_sym_canonical_domains_token1] = ACTIONS(2416), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2416), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2416), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2416), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2416), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2416), + [aux_sym_certificate_file_token1] = ACTIONS(2416), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2416), + [aux_sym_check_host_ip_token1] = ACTIONS(2416), + [aux_sym_ciphers_token1] = ACTIONS(2416), + [aux_sym_cipher_token1] = ACTIONS(2418), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2416), + [aux_sym_compression_token1] = ACTIONS(2416), + [aux_sym_connection_attempts_token1] = ACTIONS(2416), + [aux_sym_connect_timeout_token1] = ACTIONS(2416), + [aux_sym_control_master_token1] = ACTIONS(2416), + [aux_sym_control_path_token1] = ACTIONS(2416), + [aux_sym_control_persist_token1] = ACTIONS(2416), + [aux_sym_dynamic_forward_token1] = ACTIONS(2416), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2416), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2416), + [aux_sym_escape_char_token1] = ACTIONS(2416), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2416), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2416), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2416), + [aux_sym_forward_agent_token1] = ACTIONS(2416), + [aux_sym_forward_x11_token1] = ACTIONS(2418), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2416), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2416), + [aux_sym_gateway_ports_token1] = ACTIONS(2416), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2416), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2416), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2416), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2416), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2416), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2416), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2416), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2416), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2416), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2416), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2416), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2416), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2416), + [aux_sym_host_key_alias_token1] = ACTIONS(2416), + [aux_sym_hostname_token1] = ACTIONS(2416), + [aux_sym_identities_only_token1] = ACTIONS(2416), + [aux_sym_identity_agent_token1] = ACTIONS(2416), + [aux_sym_identity_file_token1] = ACTIONS(2416), + [aux_sym_ignore_unknown_token1] = ACTIONS(2416), + [aux_sym_include_token1] = ACTIONS(2416), + [aux_sym_ip_qos_token1] = ACTIONS(2416), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2416), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2416), + [aux_sym_kex_algorithms_token1] = ACTIONS(2416), + [aux_sym_known_hosts_command_token1] = ACTIONS(2416), + [aux_sym_local_command_token1] = ACTIONS(2416), + [aux_sym_local_forward_token1] = ACTIONS(2416), + [aux_sym_log_level_token1] = ACTIONS(2416), + [aux_sym_log_verbose_token1] = ACTIONS(2416), + [aux_sym_macs_token1] = ACTIONS(2416), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2416), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2416), + [aux_sym_password_authentication_token1] = ACTIONS(2416), + [aux_sym_permit_local_command_token1] = ACTIONS(2416), + [aux_sym_permit_remote_open_token1] = ACTIONS(2416), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2416), + [aux_sym_port_token1] = ACTIONS(2416), + [aux_sym_preferred_authentications_token1] = ACTIONS(2416), + [aux_sym_protocol_token1] = ACTIONS(2416), + [aux_sym_proxy_command_token1] = ACTIONS(2416), + [aux_sym_proxy_jump_token1] = ACTIONS(2416), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2416), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2416), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2416), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2416), + [aux_sym_rekey_limit_token1] = ACTIONS(2416), + [aux_sym_remote_command_token1] = ACTIONS(2416), + [aux_sym_remote_forward_token1] = ACTIONS(2416), + [aux_sym_request_tty_token1] = ACTIONS(2416), + [aux_sym_required_rsa_size_token1] = ACTIONS(2416), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2416), + [aux_sym_security_key_provider_token1] = ACTIONS(2416), + [aux_sym_send_env_token1] = ACTIONS(2416), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2416), + [aux_sym_server_alive_interval_token1] = ACTIONS(2416), + [aux_sym_session_type_token1] = ACTIONS(2416), + [aux_sym_set_env_token1] = ACTIONS(2416), + [aux_sym_stdin_null_token1] = ACTIONS(2416), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2416), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2416), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2416), + [aux_sym_syslog_facility_token1] = ACTIONS(2416), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2416), + [aux_sym_keep_alive_token1] = ACTIONS(2416), + [aux_sym_tunnel_token1] = ACTIONS(2418), + [aux_sym_tunnel_device_token1] = ACTIONS(2416), + [aux_sym_update_host_keys_token1] = ACTIONS(2416), + [aux_sym_use_keychain_token1] = ACTIONS(2416), + [aux_sym_use_roaming_token1] = ACTIONS(2416), + [aux_sym_user_token1] = ACTIONS(2418), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2416), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2416), + [aux_sym_visual_host_key_token1] = ACTIONS(2416), + [aux_sym_xauth_location_token1] = ACTIONS(2416), }, [331] = { - [ts_builtin_sym_end] = ACTIONS(2415), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2417), - [anon_sym_DQUOTE] = ACTIONS(2419), - [aux_sym_match_token1] = ACTIONS(2415), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2415), - [aux_sym_address_family_token1] = ACTIONS(2415), - [aux_sym_batch_mode_token1] = ACTIONS(2415), - [aux_sym_bind_address_token1] = ACTIONS(2415), - [aux_sym_bind_interface_token1] = ACTIONS(2415), - [aux_sym_canonical_domains_token1] = ACTIONS(2415), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2415), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2415), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2415), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2415), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2415), - [aux_sym_certificate_file_token1] = ACTIONS(2415), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2415), - [aux_sym_check_host_ip_token1] = ACTIONS(2415), - [aux_sym_ciphers_token1] = ACTIONS(2415), - [aux_sym_cipher_token1] = ACTIONS(2417), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2415), - [aux_sym_compression_token1] = ACTIONS(2415), - [aux_sym_connection_attempts_token1] = ACTIONS(2415), - [aux_sym_connect_timeout_token1] = ACTIONS(2415), - [aux_sym_control_master_token1] = ACTIONS(2415), - [aux_sym_control_path_token1] = ACTIONS(2415), - [aux_sym_control_persist_token1] = ACTIONS(2415), - [aux_sym_dynamic_forward_token1] = ACTIONS(2415), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2415), - [aux_sym_escape_char_token1] = ACTIONS(2415), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2415), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2415), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2415), - [aux_sym_forward_agent_token1] = ACTIONS(2415), - [aux_sym_forward_x11_token1] = ACTIONS(2417), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2415), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2415), - [aux_sym_gateway_ports_token1] = ACTIONS(2415), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2415), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2415), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2415), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2415), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2415), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2415), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2415), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2415), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2415), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2415), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2415), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2415), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2415), - [aux_sym_host_key_alias_token1] = ACTIONS(2415), - [aux_sym_hostname_token1] = ACTIONS(2415), - [aux_sym_identities_only_token1] = ACTIONS(2415), - [aux_sym_identity_agent_token1] = ACTIONS(2415), - [aux_sym_identity_file_token1] = ACTIONS(2415), - [aux_sym_ignore_unknown_token1] = ACTIONS(2415), - [aux_sym_include_token1] = ACTIONS(2415), - [aux_sym_ip_qos_token1] = ACTIONS(2415), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2415), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2415), - [aux_sym_kex_algorithms_token1] = ACTIONS(2415), - [aux_sym_known_hosts_command_token1] = ACTIONS(2415), - [aux_sym_local_command_token1] = ACTIONS(2415), - [aux_sym_local_forward_token1] = ACTIONS(2415), - [aux_sym_log_level_token1] = ACTIONS(2415), - [aux_sym_log_verbose_token1] = ACTIONS(2415), - [aux_sym_macs_token1] = ACTIONS(2415), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2415), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2415), - [aux_sym_password_authentication_token1] = ACTIONS(2415), - [aux_sym_permit_local_command_token1] = ACTIONS(2415), - [aux_sym_permit_remote_open_token1] = ACTIONS(2415), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2415), - [aux_sym_port_token1] = ACTIONS(2415), - [aux_sym_preferred_authentications_token1] = ACTIONS(2415), - [aux_sym_protocol_token1] = ACTIONS(2415), - [aux_sym_proxy_command_token1] = ACTIONS(2415), - [aux_sym_proxy_jump_token1] = ACTIONS(2415), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2415), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2415), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2415), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2415), - [aux_sym_rekey_limit_token1] = ACTIONS(2415), - [aux_sym_remote_command_token1] = ACTIONS(2415), - [aux_sym_remote_forward_token1] = ACTIONS(2415), - [aux_sym_request_tty_token1] = ACTIONS(2415), - [aux_sym_required_rsa_size_token1] = ACTIONS(2415), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2415), - [aux_sym_security_key_provider_token1] = ACTIONS(2415), - [aux_sym_send_env_token1] = ACTIONS(2415), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2415), - [aux_sym_server_alive_interval_token1] = ACTIONS(2415), - [aux_sym_session_type_token1] = ACTIONS(2415), - [aux_sym_set_env_token1] = ACTIONS(2415), - [aux_sym_stdin_null_token1] = ACTIONS(2415), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2415), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2415), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2415), - [aux_sym_syslog_facility_token1] = ACTIONS(2415), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2415), - [aux_sym_keep_alive_token1] = ACTIONS(2415), - [aux_sym_tunnel_token1] = ACTIONS(2417), - [aux_sym_tunnel_device_token1] = ACTIONS(2415), - [aux_sym_update_host_keys_token1] = ACTIONS(2415), - [aux_sym_use_keychain_token1] = ACTIONS(2415), - [aux_sym_use_roaming_token1] = ACTIONS(2415), - [aux_sym_user_token1] = ACTIONS(2417), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2415), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2415), - [aux_sym_visual_host_key_token1] = ACTIONS(2415), - [aux_sym_xauth_location_token1] = ACTIONS(2415), + [ts_builtin_sym_end] = ACTIONS(2422), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2424), + [anon_sym_DQUOTE] = ACTIONS(2422), + [aux_sym_match_token1] = ACTIONS(2422), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2422), + [aux_sym_address_family_token1] = ACTIONS(2422), + [aux_sym_batch_mode_token1] = ACTIONS(2422), + [aux_sym_bind_address_token1] = ACTIONS(2422), + [aux_sym_bind_interface_token1] = ACTIONS(2422), + [aux_sym_canonical_domains_token1] = ACTIONS(2422), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2422), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2422), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2422), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2422), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2422), + [aux_sym_certificate_file_token1] = ACTIONS(2422), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2422), + [aux_sym_check_host_ip_token1] = ACTIONS(2422), + [aux_sym_ciphers_token1] = ACTIONS(2422), + [aux_sym_cipher_token1] = ACTIONS(2424), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2422), + [aux_sym_compression_token1] = ACTIONS(2422), + [aux_sym_connection_attempts_token1] = ACTIONS(2422), + [aux_sym_connect_timeout_token1] = ACTIONS(2422), + [aux_sym_control_master_token1] = ACTIONS(2422), + [aux_sym_control_path_token1] = ACTIONS(2422), + [aux_sym_control_persist_token1] = ACTIONS(2422), + [aux_sym_dynamic_forward_token1] = ACTIONS(2422), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2422), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2422), + [aux_sym_escape_char_token1] = ACTIONS(2422), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2422), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2422), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2422), + [aux_sym_forward_agent_token1] = ACTIONS(2422), + [aux_sym_forward_x11_token1] = ACTIONS(2424), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2422), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2422), + [aux_sym_gateway_ports_token1] = ACTIONS(2422), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2422), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2422), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2422), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2422), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2422), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2422), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2422), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2422), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2422), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2422), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2422), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2422), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2422), + [aux_sym_host_key_alias_token1] = ACTIONS(2422), + [aux_sym_hostname_token1] = ACTIONS(2422), + [aux_sym_identities_only_token1] = ACTIONS(2422), + [aux_sym_identity_agent_token1] = ACTIONS(2422), + [aux_sym_identity_file_token1] = ACTIONS(2422), + [aux_sym_ignore_unknown_token1] = ACTIONS(2422), + [aux_sym_include_token1] = ACTIONS(2422), + [aux_sym_ip_qos_token1] = ACTIONS(2422), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2422), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2422), + [aux_sym_kex_algorithms_token1] = ACTIONS(2422), + [aux_sym_known_hosts_command_token1] = ACTIONS(2422), + [aux_sym_local_command_token1] = ACTIONS(2422), + [aux_sym_local_forward_token1] = ACTIONS(2422), + [aux_sym_log_level_token1] = ACTIONS(2422), + [aux_sym_log_verbose_token1] = ACTIONS(2422), + [aux_sym_macs_token1] = ACTIONS(2422), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2422), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2422), + [aux_sym_password_authentication_token1] = ACTIONS(2422), + [aux_sym_permit_local_command_token1] = ACTIONS(2422), + [aux_sym_permit_remote_open_token1] = ACTIONS(2422), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2422), + [aux_sym_port_token1] = ACTIONS(2422), + [aux_sym_preferred_authentications_token1] = ACTIONS(2422), + [aux_sym_protocol_token1] = ACTIONS(2422), + [aux_sym_proxy_command_token1] = ACTIONS(2422), + [aux_sym_proxy_jump_token1] = ACTIONS(2422), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2422), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2422), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2422), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2422), + [aux_sym_rekey_limit_token1] = ACTIONS(2422), + [aux_sym_remote_command_token1] = ACTIONS(2422), + [aux_sym_remote_forward_token1] = ACTIONS(2422), + [aux_sym_request_tty_token1] = ACTIONS(2422), + [aux_sym_required_rsa_size_token1] = ACTIONS(2422), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2422), + [aux_sym_security_key_provider_token1] = ACTIONS(2422), + [aux_sym_send_env_token1] = ACTIONS(2422), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2422), + [aux_sym_server_alive_interval_token1] = ACTIONS(2422), + [aux_sym_session_type_token1] = ACTIONS(2422), + [aux_sym_set_env_token1] = ACTIONS(2422), + [aux_sym_stdin_null_token1] = ACTIONS(2422), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2422), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2422), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2422), + [aux_sym_syslog_facility_token1] = ACTIONS(2422), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2422), + [aux_sym_keep_alive_token1] = ACTIONS(2422), + [aux_sym_tunnel_token1] = ACTIONS(2424), + [aux_sym_tunnel_device_token1] = ACTIONS(2422), + [aux_sym_update_host_keys_token1] = ACTIONS(2422), + [aux_sym_use_keychain_token1] = ACTIONS(2422), + [aux_sym_use_roaming_token1] = ACTIONS(2422), + [aux_sym_user_token1] = ACTIONS(2424), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2422), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2422), + [aux_sym_visual_host_key_token1] = ACTIONS(2422), + [aux_sym_xauth_location_token1] = ACTIONS(2422), }, [332] = { - [ts_builtin_sym_end] = ACTIONS(2421), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2423), - [anon_sym_DQUOTE] = ACTIONS(2421), - [aux_sym_match_token1] = ACTIONS(2421), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2421), - [aux_sym_address_family_token1] = ACTIONS(2421), - [aux_sym_batch_mode_token1] = ACTIONS(2421), - [aux_sym_bind_address_token1] = ACTIONS(2421), - [aux_sym_bind_interface_token1] = ACTIONS(2421), - [aux_sym_canonical_domains_token1] = ACTIONS(2421), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2421), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2421), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2421), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2421), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2421), - [aux_sym_certificate_file_token1] = ACTIONS(2421), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2421), - [aux_sym_check_host_ip_token1] = ACTIONS(2421), - [aux_sym_ciphers_token1] = ACTIONS(2421), - [aux_sym_cipher_token1] = ACTIONS(2423), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2421), - [aux_sym_compression_token1] = ACTIONS(2421), - [aux_sym_connection_attempts_token1] = ACTIONS(2421), - [aux_sym_connect_timeout_token1] = ACTIONS(2421), - [aux_sym_control_master_token1] = ACTIONS(2421), - [aux_sym_control_path_token1] = ACTIONS(2421), - [aux_sym_control_persist_token1] = ACTIONS(2421), - [aux_sym_dynamic_forward_token1] = ACTIONS(2421), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2421), - [aux_sym_escape_char_token1] = ACTIONS(2421), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2421), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2421), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2421), - [aux_sym_forward_agent_token1] = ACTIONS(2421), - [aux_sym_forward_x11_token1] = ACTIONS(2423), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2421), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2421), - [aux_sym_gateway_ports_token1] = ACTIONS(2421), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2421), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2421), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2421), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2421), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2421), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2421), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2421), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2421), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2421), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2421), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2421), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2421), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2421), - [aux_sym_host_key_alias_token1] = ACTIONS(2421), - [aux_sym_hostname_token1] = ACTIONS(2421), - [aux_sym_identities_only_token1] = ACTIONS(2421), - [aux_sym_identity_agent_token1] = ACTIONS(2421), - [aux_sym_identity_file_token1] = ACTIONS(2421), - [aux_sym_ignore_unknown_token1] = ACTIONS(2421), - [aux_sym_include_token1] = ACTIONS(2421), - [aux_sym_ip_qos_token1] = ACTIONS(2421), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2421), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2421), - [aux_sym_kex_algorithms_token1] = ACTIONS(2421), - [aux_sym_known_hosts_command_token1] = ACTIONS(2421), - [aux_sym_local_command_token1] = ACTIONS(2421), - [aux_sym_local_forward_token1] = ACTIONS(2421), - [aux_sym_log_level_token1] = ACTIONS(2421), - [aux_sym_log_verbose_token1] = ACTIONS(2421), - [aux_sym_macs_token1] = ACTIONS(2421), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2421), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2421), - [aux_sym_password_authentication_token1] = ACTIONS(2421), - [aux_sym_permit_local_command_token1] = ACTIONS(2421), - [aux_sym_permit_remote_open_token1] = ACTIONS(2421), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2421), - [aux_sym_port_token1] = ACTIONS(2421), - [aux_sym_preferred_authentications_token1] = ACTIONS(2421), - [aux_sym_protocol_token1] = ACTIONS(2421), - [aux_sym_proxy_command_token1] = ACTIONS(2421), - [aux_sym_proxy_jump_token1] = ACTIONS(2421), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2421), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2421), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2421), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2421), - [aux_sym_rekey_limit_token1] = ACTIONS(2421), - [aux_sym_remote_command_token1] = ACTIONS(2421), - [aux_sym_remote_forward_token1] = ACTIONS(2421), - [aux_sym_request_tty_token1] = ACTIONS(2421), - [aux_sym_required_rsa_size_token1] = ACTIONS(2421), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2421), - [aux_sym_security_key_provider_token1] = ACTIONS(2421), - [aux_sym_send_env_token1] = ACTIONS(2421), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2421), - [aux_sym_server_alive_interval_token1] = ACTIONS(2421), - [aux_sym_session_type_token1] = ACTIONS(2421), - [aux_sym_set_env_token1] = ACTIONS(2421), - [aux_sym_stdin_null_token1] = ACTIONS(2421), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2421), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2421), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2421), - [aux_sym_syslog_facility_token1] = ACTIONS(2421), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2421), - [aux_sym_keep_alive_token1] = ACTIONS(2421), - [aux_sym_tunnel_token1] = ACTIONS(2423), - [aux_sym_tunnel_device_token1] = ACTIONS(2421), - [aux_sym_update_host_keys_token1] = ACTIONS(2421), - [aux_sym_use_keychain_token1] = ACTIONS(2421), - [aux_sym_use_roaming_token1] = ACTIONS(2421), - [aux_sym_user_token1] = ACTIONS(2423), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2421), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2421), - [aux_sym_visual_host_key_token1] = ACTIONS(2421), - [aux_sym_xauth_location_token1] = ACTIONS(2421), + [ts_builtin_sym_end] = ACTIONS(2426), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2428), + [anon_sym_DQUOTE] = ACTIONS(2430), + [aux_sym_match_token1] = ACTIONS(2426), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2426), + [aux_sym_address_family_token1] = ACTIONS(2426), + [aux_sym_batch_mode_token1] = ACTIONS(2426), + [aux_sym_bind_address_token1] = ACTIONS(2426), + [aux_sym_bind_interface_token1] = ACTIONS(2426), + [aux_sym_canonical_domains_token1] = ACTIONS(2426), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2426), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2426), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2426), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2426), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2426), + [aux_sym_certificate_file_token1] = ACTIONS(2426), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2426), + [aux_sym_check_host_ip_token1] = ACTIONS(2426), + [aux_sym_ciphers_token1] = ACTIONS(2426), + [aux_sym_cipher_token1] = ACTIONS(2428), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2426), + [aux_sym_compression_token1] = ACTIONS(2426), + [aux_sym_connection_attempts_token1] = ACTIONS(2426), + [aux_sym_connect_timeout_token1] = ACTIONS(2426), + [aux_sym_control_master_token1] = ACTIONS(2426), + [aux_sym_control_path_token1] = ACTIONS(2426), + [aux_sym_control_persist_token1] = ACTIONS(2426), + [aux_sym_dynamic_forward_token1] = ACTIONS(2426), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2426), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2426), + [aux_sym_escape_char_token1] = ACTIONS(2426), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2426), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2426), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2426), + [aux_sym_forward_agent_token1] = ACTIONS(2426), + [aux_sym_forward_x11_token1] = ACTIONS(2428), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2426), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2426), + [aux_sym_gateway_ports_token1] = ACTIONS(2426), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2426), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2426), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2426), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2426), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2426), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2426), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2426), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2426), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2426), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2426), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2426), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2426), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2426), + [aux_sym_host_key_alias_token1] = ACTIONS(2426), + [aux_sym_hostname_token1] = ACTIONS(2426), + [aux_sym_identities_only_token1] = ACTIONS(2426), + [aux_sym_identity_agent_token1] = ACTIONS(2426), + [aux_sym_identity_file_token1] = ACTIONS(2426), + [aux_sym_ignore_unknown_token1] = ACTIONS(2426), + [aux_sym_include_token1] = ACTIONS(2426), + [aux_sym_ip_qos_token1] = ACTIONS(2426), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2426), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2426), + [aux_sym_kex_algorithms_token1] = ACTIONS(2426), + [aux_sym_known_hosts_command_token1] = ACTIONS(2426), + [aux_sym_local_command_token1] = ACTIONS(2426), + [aux_sym_local_forward_token1] = ACTIONS(2426), + [aux_sym_log_level_token1] = ACTIONS(2426), + [aux_sym_log_verbose_token1] = ACTIONS(2426), + [aux_sym_macs_token1] = ACTIONS(2426), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2426), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2426), + [aux_sym_password_authentication_token1] = ACTIONS(2426), + [aux_sym_permit_local_command_token1] = ACTIONS(2426), + [aux_sym_permit_remote_open_token1] = ACTIONS(2426), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2426), + [aux_sym_port_token1] = ACTIONS(2426), + [aux_sym_preferred_authentications_token1] = ACTIONS(2426), + [aux_sym_protocol_token1] = ACTIONS(2426), + [aux_sym_proxy_command_token1] = ACTIONS(2426), + [aux_sym_proxy_jump_token1] = ACTIONS(2426), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2426), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2426), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2426), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2426), + [aux_sym_rekey_limit_token1] = ACTIONS(2426), + [aux_sym_remote_command_token1] = ACTIONS(2426), + [aux_sym_remote_forward_token1] = ACTIONS(2426), + [aux_sym_request_tty_token1] = ACTIONS(2426), + [aux_sym_required_rsa_size_token1] = ACTIONS(2426), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2426), + [aux_sym_security_key_provider_token1] = ACTIONS(2426), + [aux_sym_send_env_token1] = ACTIONS(2426), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2426), + [aux_sym_server_alive_interval_token1] = ACTIONS(2426), + [aux_sym_session_type_token1] = ACTIONS(2426), + [aux_sym_set_env_token1] = ACTIONS(2426), + [aux_sym_stdin_null_token1] = ACTIONS(2426), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2426), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2426), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2426), + [aux_sym_syslog_facility_token1] = ACTIONS(2426), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2426), + [aux_sym_keep_alive_token1] = ACTIONS(2426), + [aux_sym_tunnel_token1] = ACTIONS(2428), + [aux_sym_tunnel_device_token1] = ACTIONS(2426), + [aux_sym_update_host_keys_token1] = ACTIONS(2426), + [aux_sym_use_keychain_token1] = ACTIONS(2426), + [aux_sym_use_roaming_token1] = ACTIONS(2426), + [aux_sym_user_token1] = ACTIONS(2428), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2426), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2426), + [aux_sym_visual_host_key_token1] = ACTIONS(2426), + [aux_sym_xauth_location_token1] = ACTIONS(2426), }, [333] = { - [ts_builtin_sym_end] = ACTIONS(2425), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2427), - [anon_sym_DQUOTE] = ACTIONS(2425), - [aux_sym_match_token1] = ACTIONS(2425), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2425), - [aux_sym_address_family_token1] = ACTIONS(2425), - [aux_sym_batch_mode_token1] = ACTIONS(2425), - [aux_sym_bind_address_token1] = ACTIONS(2425), - [aux_sym_bind_interface_token1] = ACTIONS(2425), - [aux_sym_canonical_domains_token1] = ACTIONS(2425), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2425), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2425), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2425), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2425), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2425), - [aux_sym_certificate_file_token1] = ACTIONS(2425), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2425), - [aux_sym_check_host_ip_token1] = ACTIONS(2425), - [aux_sym_ciphers_token1] = ACTIONS(2425), - [aux_sym_cipher_token1] = ACTIONS(2427), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2425), - [aux_sym_compression_token1] = ACTIONS(2425), - [aux_sym_connection_attempts_token1] = ACTIONS(2425), - [aux_sym_connect_timeout_token1] = ACTIONS(2425), - [aux_sym_control_master_token1] = ACTIONS(2425), - [aux_sym_control_path_token1] = ACTIONS(2425), - [aux_sym_control_persist_token1] = ACTIONS(2425), - [aux_sym_dynamic_forward_token1] = ACTIONS(2425), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2425), - [aux_sym_escape_char_token1] = ACTIONS(2425), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2425), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2425), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2425), - [aux_sym_forward_agent_token1] = ACTIONS(2425), - [aux_sym_forward_x11_token1] = ACTIONS(2427), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2425), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2425), - [aux_sym_gateway_ports_token1] = ACTIONS(2425), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2425), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2425), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2425), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2425), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2425), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2425), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2425), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2425), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2425), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2425), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2425), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2425), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2425), - [aux_sym_host_key_alias_token1] = ACTIONS(2425), - [aux_sym_hostname_token1] = ACTIONS(2425), - [aux_sym_identities_only_token1] = ACTIONS(2425), - [aux_sym_identity_agent_token1] = ACTIONS(2425), - [aux_sym_identity_file_token1] = ACTIONS(2425), - [aux_sym_ignore_unknown_token1] = ACTIONS(2425), - [aux_sym_include_token1] = ACTIONS(2425), - [aux_sym_ip_qos_token1] = ACTIONS(2425), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2425), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2425), - [aux_sym_kex_algorithms_token1] = ACTIONS(2425), - [aux_sym_known_hosts_command_token1] = ACTIONS(2425), - [aux_sym_local_command_token1] = ACTIONS(2425), - [aux_sym_local_forward_token1] = ACTIONS(2425), - [aux_sym_log_level_token1] = ACTIONS(2425), - [aux_sym_log_verbose_token1] = ACTIONS(2425), - [aux_sym_macs_token1] = ACTIONS(2425), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2425), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2425), - [aux_sym_password_authentication_token1] = ACTIONS(2425), - [aux_sym_permit_local_command_token1] = ACTIONS(2425), - [aux_sym_permit_remote_open_token1] = ACTIONS(2425), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2425), - [aux_sym_port_token1] = ACTIONS(2425), - [aux_sym_preferred_authentications_token1] = ACTIONS(2425), - [aux_sym_protocol_token1] = ACTIONS(2425), - [aux_sym_proxy_command_token1] = ACTIONS(2425), - [aux_sym_proxy_jump_token1] = ACTIONS(2425), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2425), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2425), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2425), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2425), - [aux_sym_rekey_limit_token1] = ACTIONS(2425), - [aux_sym_remote_command_token1] = ACTIONS(2425), - [aux_sym_remote_forward_token1] = ACTIONS(2425), - [aux_sym_request_tty_token1] = ACTIONS(2425), - [aux_sym_required_rsa_size_token1] = ACTIONS(2425), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2425), - [aux_sym_security_key_provider_token1] = ACTIONS(2425), - [aux_sym_send_env_token1] = ACTIONS(2425), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2425), - [aux_sym_server_alive_interval_token1] = ACTIONS(2425), - [aux_sym_session_type_token1] = ACTIONS(2425), - [aux_sym_set_env_token1] = ACTIONS(2425), - [aux_sym_stdin_null_token1] = ACTIONS(2425), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2425), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2425), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2425), - [aux_sym_syslog_facility_token1] = ACTIONS(2425), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2425), - [aux_sym_keep_alive_token1] = ACTIONS(2425), - [aux_sym_tunnel_token1] = ACTIONS(2427), - [aux_sym_tunnel_device_token1] = ACTIONS(2425), - [aux_sym_update_host_keys_token1] = ACTIONS(2425), - [aux_sym_use_keychain_token1] = ACTIONS(2425), - [aux_sym_use_roaming_token1] = ACTIONS(2425), - [aux_sym_user_token1] = ACTIONS(2427), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2425), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2425), - [aux_sym_visual_host_key_token1] = ACTIONS(2425), - [aux_sym_xauth_location_token1] = ACTIONS(2425), + [ts_builtin_sym_end] = ACTIONS(2432), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2434), + [anon_sym_DQUOTE] = ACTIONS(2436), + [aux_sym_match_token1] = ACTIONS(2432), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2432), + [aux_sym_address_family_token1] = ACTIONS(2432), + [aux_sym_batch_mode_token1] = ACTIONS(2432), + [aux_sym_bind_address_token1] = ACTIONS(2432), + [aux_sym_bind_interface_token1] = ACTIONS(2432), + [aux_sym_canonical_domains_token1] = ACTIONS(2432), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2432), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2432), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2432), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2432), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2432), + [aux_sym_certificate_file_token1] = ACTIONS(2432), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2432), + [aux_sym_check_host_ip_token1] = ACTIONS(2432), + [aux_sym_ciphers_token1] = ACTIONS(2432), + [aux_sym_cipher_token1] = ACTIONS(2434), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2432), + [aux_sym_compression_token1] = ACTIONS(2432), + [aux_sym_connection_attempts_token1] = ACTIONS(2432), + [aux_sym_connect_timeout_token1] = ACTIONS(2432), + [aux_sym_control_master_token1] = ACTIONS(2432), + [aux_sym_control_path_token1] = ACTIONS(2432), + [aux_sym_control_persist_token1] = ACTIONS(2432), + [aux_sym_dynamic_forward_token1] = ACTIONS(2432), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2432), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2432), + [aux_sym_escape_char_token1] = ACTIONS(2432), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2432), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2432), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2432), + [aux_sym_forward_agent_token1] = ACTIONS(2432), + [aux_sym_forward_x11_token1] = ACTIONS(2434), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2432), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2432), + [aux_sym_gateway_ports_token1] = ACTIONS(2432), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2432), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2432), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2432), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2432), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2432), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2432), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2432), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2432), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2432), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2432), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2432), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2432), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2432), + [aux_sym_host_key_alias_token1] = ACTIONS(2432), + [aux_sym_hostname_token1] = ACTIONS(2432), + [aux_sym_identities_only_token1] = ACTIONS(2432), + [aux_sym_identity_agent_token1] = ACTIONS(2432), + [aux_sym_identity_file_token1] = ACTIONS(2432), + [aux_sym_ignore_unknown_token1] = ACTIONS(2432), + [aux_sym_include_token1] = ACTIONS(2432), + [aux_sym_ip_qos_token1] = ACTIONS(2432), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2432), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2432), + [aux_sym_kex_algorithms_token1] = ACTIONS(2432), + [aux_sym_known_hosts_command_token1] = ACTIONS(2432), + [aux_sym_local_command_token1] = ACTIONS(2432), + [aux_sym_local_forward_token1] = ACTIONS(2432), + [aux_sym_log_level_token1] = ACTIONS(2432), + [aux_sym_log_verbose_token1] = ACTIONS(2432), + [aux_sym_macs_token1] = ACTIONS(2432), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2432), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2432), + [aux_sym_password_authentication_token1] = ACTIONS(2432), + [aux_sym_permit_local_command_token1] = ACTIONS(2432), + [aux_sym_permit_remote_open_token1] = ACTIONS(2432), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2432), + [aux_sym_port_token1] = ACTIONS(2432), + [aux_sym_preferred_authentications_token1] = ACTIONS(2432), + [aux_sym_protocol_token1] = ACTIONS(2432), + [aux_sym_proxy_command_token1] = ACTIONS(2432), + [aux_sym_proxy_jump_token1] = ACTIONS(2432), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2432), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2432), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2432), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2432), + [aux_sym_rekey_limit_token1] = ACTIONS(2432), + [aux_sym_remote_command_token1] = ACTIONS(2432), + [aux_sym_remote_forward_token1] = ACTIONS(2432), + [aux_sym_request_tty_token1] = ACTIONS(2432), + [aux_sym_required_rsa_size_token1] = ACTIONS(2432), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2432), + [aux_sym_security_key_provider_token1] = ACTIONS(2432), + [aux_sym_send_env_token1] = ACTIONS(2432), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2432), + [aux_sym_server_alive_interval_token1] = ACTIONS(2432), + [aux_sym_session_type_token1] = ACTIONS(2432), + [aux_sym_set_env_token1] = ACTIONS(2432), + [aux_sym_stdin_null_token1] = ACTIONS(2432), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2432), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2432), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2432), + [aux_sym_syslog_facility_token1] = ACTIONS(2432), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2432), + [aux_sym_keep_alive_token1] = ACTIONS(2432), + [aux_sym_tunnel_token1] = ACTIONS(2434), + [aux_sym_tunnel_device_token1] = ACTIONS(2432), + [aux_sym_update_host_keys_token1] = ACTIONS(2432), + [aux_sym_use_keychain_token1] = ACTIONS(2432), + [aux_sym_use_roaming_token1] = ACTIONS(2432), + [aux_sym_user_token1] = ACTIONS(2434), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2432), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2432), + [aux_sym_visual_host_key_token1] = ACTIONS(2432), + [aux_sym_xauth_location_token1] = ACTIONS(2432), }, [334] = { - [ts_builtin_sym_end] = ACTIONS(2429), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2431), - [anon_sym_DQUOTE] = ACTIONS(2433), - [aux_sym_match_token1] = ACTIONS(2429), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2429), - [aux_sym_address_family_token1] = ACTIONS(2429), - [aux_sym_batch_mode_token1] = ACTIONS(2429), - [aux_sym_bind_address_token1] = ACTIONS(2429), - [aux_sym_bind_interface_token1] = ACTIONS(2429), - [aux_sym_canonical_domains_token1] = ACTIONS(2429), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2429), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2429), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2429), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2429), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2429), - [aux_sym_certificate_file_token1] = ACTIONS(2429), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2429), - [aux_sym_check_host_ip_token1] = ACTIONS(2429), - [aux_sym_ciphers_token1] = ACTIONS(2429), - [aux_sym_cipher_token1] = ACTIONS(2431), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2429), - [aux_sym_compression_token1] = ACTIONS(2429), - [aux_sym_connection_attempts_token1] = ACTIONS(2429), - [aux_sym_connect_timeout_token1] = ACTIONS(2429), - [aux_sym_control_master_token1] = ACTIONS(2429), - [aux_sym_control_path_token1] = ACTIONS(2429), - [aux_sym_control_persist_token1] = ACTIONS(2429), - [aux_sym_dynamic_forward_token1] = ACTIONS(2429), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2429), - [aux_sym_escape_char_token1] = ACTIONS(2429), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2429), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2429), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2429), - [aux_sym_forward_agent_token1] = ACTIONS(2429), - [aux_sym_forward_x11_token1] = ACTIONS(2431), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2429), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2429), - [aux_sym_gateway_ports_token1] = ACTIONS(2429), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2429), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2429), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2429), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2429), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2429), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2429), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2429), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2429), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2429), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2429), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2429), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2429), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2429), - [aux_sym_host_key_alias_token1] = ACTIONS(2429), - [aux_sym_hostname_token1] = ACTIONS(2429), - [aux_sym_identities_only_token1] = ACTIONS(2429), - [aux_sym_identity_agent_token1] = ACTIONS(2429), - [aux_sym_identity_file_token1] = ACTIONS(2429), - [aux_sym_ignore_unknown_token1] = ACTIONS(2429), - [aux_sym_include_token1] = ACTIONS(2429), - [aux_sym_ip_qos_token1] = ACTIONS(2429), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2429), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2429), - [aux_sym_kex_algorithms_token1] = ACTIONS(2429), - [aux_sym_known_hosts_command_token1] = ACTIONS(2429), - [aux_sym_local_command_token1] = ACTIONS(2429), - [aux_sym_local_forward_token1] = ACTIONS(2429), - [aux_sym_log_level_token1] = ACTIONS(2429), - [aux_sym_log_verbose_token1] = ACTIONS(2429), - [aux_sym_macs_token1] = ACTIONS(2429), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2429), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2429), - [aux_sym_password_authentication_token1] = ACTIONS(2429), - [aux_sym_permit_local_command_token1] = ACTIONS(2429), - [aux_sym_permit_remote_open_token1] = ACTIONS(2429), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2429), - [aux_sym_port_token1] = ACTIONS(2429), - [aux_sym_preferred_authentications_token1] = ACTIONS(2429), - [aux_sym_protocol_token1] = ACTIONS(2429), - [aux_sym_proxy_command_token1] = ACTIONS(2429), - [aux_sym_proxy_jump_token1] = ACTIONS(2429), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2429), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2429), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2429), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2429), - [aux_sym_rekey_limit_token1] = ACTIONS(2429), - [aux_sym_remote_command_token1] = ACTIONS(2429), - [aux_sym_remote_forward_token1] = ACTIONS(2429), - [aux_sym_request_tty_token1] = ACTIONS(2429), - [aux_sym_required_rsa_size_token1] = ACTIONS(2429), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2429), - [aux_sym_security_key_provider_token1] = ACTIONS(2429), - [aux_sym_send_env_token1] = ACTIONS(2429), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2429), - [aux_sym_server_alive_interval_token1] = ACTIONS(2429), - [aux_sym_session_type_token1] = ACTIONS(2429), - [aux_sym_set_env_token1] = ACTIONS(2429), - [aux_sym_stdin_null_token1] = ACTIONS(2429), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2429), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2429), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2429), - [aux_sym_syslog_facility_token1] = ACTIONS(2429), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2429), - [aux_sym_keep_alive_token1] = ACTIONS(2429), - [aux_sym_tunnel_token1] = ACTIONS(2431), - [aux_sym_tunnel_device_token1] = ACTIONS(2429), - [aux_sym_update_host_keys_token1] = ACTIONS(2429), - [aux_sym_use_keychain_token1] = ACTIONS(2429), - [aux_sym_use_roaming_token1] = ACTIONS(2429), - [aux_sym_user_token1] = ACTIONS(2431), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2429), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2429), - [aux_sym_visual_host_key_token1] = ACTIONS(2429), - [aux_sym_xauth_location_token1] = ACTIONS(2429), + [ts_builtin_sym_end] = ACTIONS(2438), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2438), + [aux_sym_match_token1] = ACTIONS(2438), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2438), + [aux_sym_address_family_token1] = ACTIONS(2438), + [aux_sym_batch_mode_token1] = ACTIONS(2438), + [aux_sym_bind_address_token1] = ACTIONS(2438), + [aux_sym_bind_interface_token1] = ACTIONS(2438), + [aux_sym_canonical_domains_token1] = ACTIONS(2438), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2438), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2438), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2438), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2438), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2438), + [aux_sym_certificate_file_token1] = ACTIONS(2438), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2438), + [aux_sym_check_host_ip_token1] = ACTIONS(2438), + [aux_sym_ciphers_token1] = ACTIONS(2438), + [aux_sym_cipher_token1] = ACTIONS(2440), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2438), + [aux_sym_compression_token1] = ACTIONS(2438), + [aux_sym_connection_attempts_token1] = ACTIONS(2438), + [aux_sym_connect_timeout_token1] = ACTIONS(2438), + [aux_sym_control_master_token1] = ACTIONS(2438), + [aux_sym_control_path_token1] = ACTIONS(2438), + [aux_sym_control_persist_token1] = ACTIONS(2438), + [aux_sym_dynamic_forward_token1] = ACTIONS(2438), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2438), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2438), + [aux_sym_escape_char_token1] = ACTIONS(2438), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2438), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2438), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2438), + [aux_sym_forward_agent_token1] = ACTIONS(2438), + [aux_sym_forward_x11_token1] = ACTIONS(2440), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2438), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2438), + [aux_sym_gateway_ports_token1] = ACTIONS(2438), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2438), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2438), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2438), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2438), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2438), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2438), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2438), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2438), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2438), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2438), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2438), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2438), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2438), + [aux_sym_host_key_alias_token1] = ACTIONS(2438), + [aux_sym_hostname_token1] = ACTIONS(2438), + [aux_sym_identities_only_token1] = ACTIONS(2438), + [aux_sym_identity_agent_token1] = ACTIONS(2438), + [aux_sym_identity_file_token1] = ACTIONS(2438), + [aux_sym_ignore_unknown_token1] = ACTIONS(2438), + [aux_sym_include_token1] = ACTIONS(2438), + [aux_sym_ip_qos_token1] = ACTIONS(2438), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2438), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2438), + [aux_sym_kex_algorithms_token1] = ACTIONS(2438), + [aux_sym_known_hosts_command_token1] = ACTIONS(2438), + [aux_sym_local_command_token1] = ACTIONS(2438), + [aux_sym_local_forward_token1] = ACTIONS(2438), + [aux_sym_log_level_token1] = ACTIONS(2438), + [aux_sym_log_verbose_token1] = ACTIONS(2438), + [aux_sym_macs_token1] = ACTIONS(2438), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2438), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2438), + [aux_sym_password_authentication_token1] = ACTIONS(2438), + [aux_sym_permit_local_command_token1] = ACTIONS(2438), + [aux_sym_permit_remote_open_token1] = ACTIONS(2438), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2438), + [aux_sym_port_token1] = ACTIONS(2438), + [aux_sym_preferred_authentications_token1] = ACTIONS(2438), + [aux_sym_protocol_token1] = ACTIONS(2438), + [aux_sym_proxy_command_token1] = ACTIONS(2438), + [aux_sym_proxy_jump_token1] = ACTIONS(2438), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2438), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2438), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2438), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2438), + [aux_sym_rekey_limit_token1] = ACTIONS(2438), + [aux_sym_remote_command_token1] = ACTIONS(2438), + [aux_sym_remote_forward_token1] = ACTIONS(2438), + [aux_sym_request_tty_token1] = ACTIONS(2438), + [aux_sym_required_rsa_size_token1] = ACTIONS(2438), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2438), + [aux_sym_security_key_provider_token1] = ACTIONS(2438), + [aux_sym_send_env_token1] = ACTIONS(2438), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2438), + [aux_sym_server_alive_interval_token1] = ACTIONS(2438), + [aux_sym_session_type_token1] = ACTIONS(2438), + [aux_sym_set_env_token1] = ACTIONS(2438), + [aux_sym_stdin_null_token1] = ACTIONS(2438), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2438), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2438), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2438), + [aux_sym_syslog_facility_token1] = ACTIONS(2438), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2438), + [aux_sym_keep_alive_token1] = ACTIONS(2438), + [aux_sym_tunnel_token1] = ACTIONS(2440), + [aux_sym_tunnel_device_token1] = ACTIONS(2438), + [aux_sym_update_host_keys_token1] = ACTIONS(2438), + [aux_sym_use_keychain_token1] = ACTIONS(2438), + [aux_sym_use_roaming_token1] = ACTIONS(2438), + [aux_sym_user_token1] = ACTIONS(2440), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2438), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2438), + [aux_sym_visual_host_key_token1] = ACTIONS(2438), + [aux_sym_xauth_location_token1] = ACTIONS(2438), }, [335] = { - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2437), - [anon_sym_DQUOTE] = ACTIONS(2439), - [aux_sym_match_token1] = ACTIONS(2435), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2435), - [aux_sym_address_family_token1] = ACTIONS(2435), - [aux_sym_batch_mode_token1] = ACTIONS(2435), - [aux_sym_bind_address_token1] = ACTIONS(2435), - [aux_sym_bind_interface_token1] = ACTIONS(2435), - [aux_sym_canonical_domains_token1] = ACTIONS(2435), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2435), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2435), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2435), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2435), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2435), - [aux_sym_certificate_file_token1] = ACTIONS(2435), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2435), - [aux_sym_check_host_ip_token1] = ACTIONS(2435), - [aux_sym_ciphers_token1] = ACTIONS(2435), - [aux_sym_cipher_token1] = ACTIONS(2437), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2435), - [aux_sym_compression_token1] = ACTIONS(2435), - [aux_sym_connection_attempts_token1] = ACTIONS(2435), - [aux_sym_connect_timeout_token1] = ACTIONS(2435), - [aux_sym_control_master_token1] = ACTIONS(2435), - [aux_sym_control_path_token1] = ACTIONS(2435), - [aux_sym_control_persist_token1] = ACTIONS(2435), - [aux_sym_dynamic_forward_token1] = ACTIONS(2435), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2435), - [aux_sym_escape_char_token1] = ACTIONS(2435), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2435), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2435), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2435), - [aux_sym_forward_agent_token1] = ACTIONS(2435), - [aux_sym_forward_x11_token1] = ACTIONS(2437), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2435), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2435), - [aux_sym_gateway_ports_token1] = ACTIONS(2435), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2435), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2435), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2435), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2435), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2435), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2435), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2435), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2435), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2435), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2435), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2435), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2435), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2435), - [aux_sym_host_key_alias_token1] = ACTIONS(2435), - [aux_sym_hostname_token1] = ACTIONS(2435), - [aux_sym_identities_only_token1] = ACTIONS(2435), - [aux_sym_identity_agent_token1] = ACTIONS(2435), - [aux_sym_identity_file_token1] = ACTIONS(2435), - [aux_sym_ignore_unknown_token1] = ACTIONS(2435), - [aux_sym_include_token1] = ACTIONS(2435), - [aux_sym_ip_qos_token1] = ACTIONS(2435), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2435), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2435), - [aux_sym_kex_algorithms_token1] = ACTIONS(2435), - [aux_sym_known_hosts_command_token1] = ACTIONS(2435), - [aux_sym_local_command_token1] = ACTIONS(2435), - [aux_sym_local_forward_token1] = ACTIONS(2435), - [aux_sym_log_level_token1] = ACTIONS(2435), - [aux_sym_log_verbose_token1] = ACTIONS(2435), - [aux_sym_macs_token1] = ACTIONS(2435), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2435), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2435), - [aux_sym_password_authentication_token1] = ACTIONS(2435), - [aux_sym_permit_local_command_token1] = ACTIONS(2435), - [aux_sym_permit_remote_open_token1] = ACTIONS(2435), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2435), - [aux_sym_port_token1] = ACTIONS(2435), - [aux_sym_preferred_authentications_token1] = ACTIONS(2435), - [aux_sym_protocol_token1] = ACTIONS(2435), - [aux_sym_proxy_command_token1] = ACTIONS(2435), - [aux_sym_proxy_jump_token1] = ACTIONS(2435), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2435), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2435), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2435), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2435), - [aux_sym_rekey_limit_token1] = ACTIONS(2435), - [aux_sym_remote_command_token1] = ACTIONS(2435), - [aux_sym_remote_forward_token1] = ACTIONS(2435), - [aux_sym_request_tty_token1] = ACTIONS(2435), - [aux_sym_required_rsa_size_token1] = ACTIONS(2435), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2435), - [aux_sym_security_key_provider_token1] = ACTIONS(2435), - [aux_sym_send_env_token1] = ACTIONS(2435), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2435), - [aux_sym_server_alive_interval_token1] = ACTIONS(2435), - [aux_sym_session_type_token1] = ACTIONS(2435), - [aux_sym_set_env_token1] = ACTIONS(2435), - [aux_sym_stdin_null_token1] = ACTIONS(2435), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2435), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2435), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2435), - [aux_sym_syslog_facility_token1] = ACTIONS(2435), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2435), - [aux_sym_keep_alive_token1] = ACTIONS(2435), - [aux_sym_tunnel_token1] = ACTIONS(2437), - [aux_sym_tunnel_device_token1] = ACTIONS(2435), - [aux_sym_update_host_keys_token1] = ACTIONS(2435), - [aux_sym_use_keychain_token1] = ACTIONS(2435), - [aux_sym_use_roaming_token1] = ACTIONS(2435), - [aux_sym_user_token1] = ACTIONS(2437), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2435), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2435), - [aux_sym_visual_host_key_token1] = ACTIONS(2435), - [aux_sym_xauth_location_token1] = ACTIONS(2435), + [ts_builtin_sym_end] = ACTIONS(2442), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2444), + [anon_sym_DQUOTE] = ACTIONS(2442), + [aux_sym_match_token1] = ACTIONS(2442), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2442), + [aux_sym_address_family_token1] = ACTIONS(2442), + [aux_sym_batch_mode_token1] = ACTIONS(2442), + [aux_sym_bind_address_token1] = ACTIONS(2442), + [aux_sym_bind_interface_token1] = ACTIONS(2442), + [aux_sym_canonical_domains_token1] = ACTIONS(2442), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2442), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2442), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2442), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2442), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2442), + [aux_sym_certificate_file_token1] = ACTIONS(2442), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2442), + [aux_sym_check_host_ip_token1] = ACTIONS(2442), + [aux_sym_ciphers_token1] = ACTIONS(2442), + [aux_sym_cipher_token1] = ACTIONS(2444), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2442), + [aux_sym_compression_token1] = ACTIONS(2442), + [aux_sym_connection_attempts_token1] = ACTIONS(2442), + [aux_sym_connect_timeout_token1] = ACTIONS(2442), + [aux_sym_control_master_token1] = ACTIONS(2442), + [aux_sym_control_path_token1] = ACTIONS(2442), + [aux_sym_control_persist_token1] = ACTIONS(2442), + [aux_sym_dynamic_forward_token1] = ACTIONS(2442), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2442), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2442), + [aux_sym_escape_char_token1] = ACTIONS(2442), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2442), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2442), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2442), + [aux_sym_forward_agent_token1] = ACTIONS(2442), + [aux_sym_forward_x11_token1] = ACTIONS(2444), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2442), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2442), + [aux_sym_gateway_ports_token1] = ACTIONS(2442), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2442), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2442), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2442), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2442), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2442), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2442), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2442), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2442), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2442), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2442), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2442), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2442), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2442), + [aux_sym_host_key_alias_token1] = ACTIONS(2442), + [aux_sym_hostname_token1] = ACTIONS(2442), + [aux_sym_identities_only_token1] = ACTIONS(2442), + [aux_sym_identity_agent_token1] = ACTIONS(2442), + [aux_sym_identity_file_token1] = ACTIONS(2442), + [aux_sym_ignore_unknown_token1] = ACTIONS(2442), + [aux_sym_include_token1] = ACTIONS(2442), + [aux_sym_ip_qos_token1] = ACTIONS(2442), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2442), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2442), + [aux_sym_kex_algorithms_token1] = ACTIONS(2442), + [aux_sym_known_hosts_command_token1] = ACTIONS(2442), + [aux_sym_local_command_token1] = ACTIONS(2442), + [aux_sym_local_forward_token1] = ACTIONS(2442), + [aux_sym_log_level_token1] = ACTIONS(2442), + [aux_sym_log_verbose_token1] = ACTIONS(2442), + [aux_sym_macs_token1] = ACTIONS(2442), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2442), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2442), + [aux_sym_password_authentication_token1] = ACTIONS(2442), + [aux_sym_permit_local_command_token1] = ACTIONS(2442), + [aux_sym_permit_remote_open_token1] = ACTIONS(2442), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2442), + [aux_sym_port_token1] = ACTIONS(2442), + [aux_sym_preferred_authentications_token1] = ACTIONS(2442), + [aux_sym_protocol_token1] = ACTIONS(2442), + [aux_sym_proxy_command_token1] = ACTIONS(2442), + [aux_sym_proxy_jump_token1] = ACTIONS(2442), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2442), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2442), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2442), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2442), + [aux_sym_rekey_limit_token1] = ACTIONS(2442), + [aux_sym_remote_command_token1] = ACTIONS(2442), + [aux_sym_remote_forward_token1] = ACTIONS(2442), + [aux_sym_request_tty_token1] = ACTIONS(2442), + [aux_sym_required_rsa_size_token1] = ACTIONS(2442), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2442), + [aux_sym_security_key_provider_token1] = ACTIONS(2442), + [aux_sym_send_env_token1] = ACTIONS(2442), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2442), + [aux_sym_server_alive_interval_token1] = ACTIONS(2442), + [aux_sym_session_type_token1] = ACTIONS(2442), + [aux_sym_set_env_token1] = ACTIONS(2442), + [aux_sym_stdin_null_token1] = ACTIONS(2442), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2442), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2442), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2442), + [aux_sym_syslog_facility_token1] = ACTIONS(2442), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2442), + [aux_sym_keep_alive_token1] = ACTIONS(2442), + [aux_sym_tunnel_token1] = ACTIONS(2444), + [aux_sym_tunnel_device_token1] = ACTIONS(2442), + [aux_sym_update_host_keys_token1] = ACTIONS(2442), + [aux_sym_use_keychain_token1] = ACTIONS(2442), + [aux_sym_use_roaming_token1] = ACTIONS(2442), + [aux_sym_user_token1] = ACTIONS(2444), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2442), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2442), + [aux_sym_visual_host_key_token1] = ACTIONS(2442), + [aux_sym_xauth_location_token1] = ACTIONS(2442), }, [336] = { - [ts_builtin_sym_end] = ACTIONS(2441), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2443), - [anon_sym_DQUOTE] = ACTIONS(2441), - [aux_sym_match_token1] = ACTIONS(2441), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2441), - [aux_sym_address_family_token1] = ACTIONS(2441), - [aux_sym_batch_mode_token1] = ACTIONS(2441), - [aux_sym_bind_address_token1] = ACTIONS(2441), - [aux_sym_bind_interface_token1] = ACTIONS(2441), - [aux_sym_canonical_domains_token1] = ACTIONS(2441), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2441), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2441), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2441), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2441), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2441), - [aux_sym_certificate_file_token1] = ACTIONS(2441), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2441), - [aux_sym_check_host_ip_token1] = ACTIONS(2441), - [aux_sym_ciphers_token1] = ACTIONS(2441), - [aux_sym_cipher_token1] = ACTIONS(2443), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2441), - [aux_sym_compression_token1] = ACTIONS(2441), - [aux_sym_connection_attempts_token1] = ACTIONS(2441), - [aux_sym_connect_timeout_token1] = ACTIONS(2441), - [aux_sym_control_master_token1] = ACTIONS(2441), - [aux_sym_control_path_token1] = ACTIONS(2441), - [aux_sym_control_persist_token1] = ACTIONS(2441), - [aux_sym_dynamic_forward_token1] = ACTIONS(2441), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2441), - [aux_sym_escape_char_token1] = ACTIONS(2441), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2441), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2441), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2441), - [aux_sym_forward_agent_token1] = ACTIONS(2441), - [aux_sym_forward_x11_token1] = ACTIONS(2443), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2441), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2441), - [aux_sym_gateway_ports_token1] = ACTIONS(2441), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2441), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2441), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2441), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2441), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2441), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2441), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2441), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2441), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2441), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2441), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2441), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2441), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2441), - [aux_sym_host_key_alias_token1] = ACTIONS(2441), - [aux_sym_hostname_token1] = ACTIONS(2441), - [aux_sym_identities_only_token1] = ACTIONS(2441), - [aux_sym_identity_agent_token1] = ACTIONS(2441), - [aux_sym_identity_file_token1] = ACTIONS(2441), - [aux_sym_ignore_unknown_token1] = ACTIONS(2441), - [aux_sym_include_token1] = ACTIONS(2441), - [aux_sym_ip_qos_token1] = ACTIONS(2441), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2441), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2441), - [aux_sym_kex_algorithms_token1] = ACTIONS(2441), - [aux_sym_known_hosts_command_token1] = ACTIONS(2441), - [aux_sym_local_command_token1] = ACTIONS(2441), - [aux_sym_local_forward_token1] = ACTIONS(2441), - [aux_sym_log_level_token1] = ACTIONS(2441), - [aux_sym_log_verbose_token1] = ACTIONS(2441), - [aux_sym_macs_token1] = ACTIONS(2441), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2441), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2441), - [aux_sym_password_authentication_token1] = ACTIONS(2441), - [aux_sym_permit_local_command_token1] = ACTIONS(2441), - [aux_sym_permit_remote_open_token1] = ACTIONS(2441), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2441), - [aux_sym_port_token1] = ACTIONS(2441), - [aux_sym_preferred_authentications_token1] = ACTIONS(2441), - [aux_sym_protocol_token1] = ACTIONS(2441), - [aux_sym_proxy_command_token1] = ACTIONS(2441), - [aux_sym_proxy_jump_token1] = ACTIONS(2441), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2441), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2441), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2441), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2441), - [aux_sym_rekey_limit_token1] = ACTIONS(2441), - [aux_sym_remote_command_token1] = ACTIONS(2441), - [aux_sym_remote_forward_token1] = ACTIONS(2441), - [aux_sym_request_tty_token1] = ACTIONS(2441), - [aux_sym_required_rsa_size_token1] = ACTIONS(2441), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2441), - [aux_sym_security_key_provider_token1] = ACTIONS(2441), - [aux_sym_send_env_token1] = ACTIONS(2441), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2441), - [aux_sym_server_alive_interval_token1] = ACTIONS(2441), - [aux_sym_session_type_token1] = ACTIONS(2441), - [aux_sym_set_env_token1] = ACTIONS(2441), - [aux_sym_stdin_null_token1] = ACTIONS(2441), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2441), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2441), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2441), - [aux_sym_syslog_facility_token1] = ACTIONS(2441), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2441), - [aux_sym_keep_alive_token1] = ACTIONS(2441), - [aux_sym_tunnel_token1] = ACTIONS(2443), - [aux_sym_tunnel_device_token1] = ACTIONS(2441), - [aux_sym_update_host_keys_token1] = ACTIONS(2441), - [aux_sym_use_keychain_token1] = ACTIONS(2441), - [aux_sym_use_roaming_token1] = ACTIONS(2441), - [aux_sym_user_token1] = ACTIONS(2443), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2441), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2441), - [aux_sym_visual_host_key_token1] = ACTIONS(2441), - [aux_sym_xauth_location_token1] = ACTIONS(2441), + [ts_builtin_sym_end] = ACTIONS(2446), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2448), + [anon_sym_DQUOTE] = ACTIONS(2450), + [aux_sym_match_token1] = ACTIONS(2446), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2446), + [aux_sym_address_family_token1] = ACTIONS(2446), + [aux_sym_batch_mode_token1] = ACTIONS(2446), + [aux_sym_bind_address_token1] = ACTIONS(2446), + [aux_sym_bind_interface_token1] = ACTIONS(2446), + [aux_sym_canonical_domains_token1] = ACTIONS(2446), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2446), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2446), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2446), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2446), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2446), + [aux_sym_certificate_file_token1] = ACTIONS(2446), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2446), + [aux_sym_check_host_ip_token1] = ACTIONS(2446), + [aux_sym_ciphers_token1] = ACTIONS(2446), + [aux_sym_cipher_token1] = ACTIONS(2448), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2446), + [aux_sym_compression_token1] = ACTIONS(2446), + [aux_sym_connection_attempts_token1] = ACTIONS(2446), + [aux_sym_connect_timeout_token1] = ACTIONS(2446), + [aux_sym_control_master_token1] = ACTIONS(2446), + [aux_sym_control_path_token1] = ACTIONS(2446), + [aux_sym_control_persist_token1] = ACTIONS(2446), + [aux_sym_dynamic_forward_token1] = ACTIONS(2446), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2446), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2446), + [aux_sym_escape_char_token1] = ACTIONS(2446), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2446), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2446), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2446), + [aux_sym_forward_agent_token1] = ACTIONS(2446), + [aux_sym_forward_x11_token1] = ACTIONS(2448), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2446), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2446), + [aux_sym_gateway_ports_token1] = ACTIONS(2446), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2446), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2446), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2446), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2446), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2446), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2446), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2446), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2446), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2446), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2446), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2446), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2446), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2446), + [aux_sym_host_key_alias_token1] = ACTIONS(2446), + [aux_sym_hostname_token1] = ACTIONS(2446), + [aux_sym_identities_only_token1] = ACTIONS(2446), + [aux_sym_identity_agent_token1] = ACTIONS(2446), + [aux_sym_identity_file_token1] = ACTIONS(2446), + [aux_sym_ignore_unknown_token1] = ACTIONS(2446), + [aux_sym_include_token1] = ACTIONS(2446), + [aux_sym_ip_qos_token1] = ACTIONS(2446), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2446), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2446), + [aux_sym_kex_algorithms_token1] = ACTIONS(2446), + [aux_sym_known_hosts_command_token1] = ACTIONS(2446), + [aux_sym_local_command_token1] = ACTIONS(2446), + [aux_sym_local_forward_token1] = ACTIONS(2446), + [aux_sym_log_level_token1] = ACTIONS(2446), + [aux_sym_log_verbose_token1] = ACTIONS(2446), + [aux_sym_macs_token1] = ACTIONS(2446), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2446), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2446), + [aux_sym_password_authentication_token1] = ACTIONS(2446), + [aux_sym_permit_local_command_token1] = ACTIONS(2446), + [aux_sym_permit_remote_open_token1] = ACTIONS(2446), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2446), + [aux_sym_port_token1] = ACTIONS(2446), + [aux_sym_preferred_authentications_token1] = ACTIONS(2446), + [aux_sym_protocol_token1] = ACTIONS(2446), + [aux_sym_proxy_command_token1] = ACTIONS(2446), + [aux_sym_proxy_jump_token1] = ACTIONS(2446), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2446), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2446), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2446), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2446), + [aux_sym_rekey_limit_token1] = ACTIONS(2446), + [aux_sym_remote_command_token1] = ACTIONS(2446), + [aux_sym_remote_forward_token1] = ACTIONS(2446), + [aux_sym_request_tty_token1] = ACTIONS(2446), + [aux_sym_required_rsa_size_token1] = ACTIONS(2446), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2446), + [aux_sym_security_key_provider_token1] = ACTIONS(2446), + [aux_sym_send_env_token1] = ACTIONS(2446), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2446), + [aux_sym_server_alive_interval_token1] = ACTIONS(2446), + [aux_sym_session_type_token1] = ACTIONS(2446), + [aux_sym_set_env_token1] = ACTIONS(2446), + [aux_sym_stdin_null_token1] = ACTIONS(2446), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2446), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2446), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2446), + [aux_sym_syslog_facility_token1] = ACTIONS(2446), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2446), + [aux_sym_keep_alive_token1] = ACTIONS(2446), + [aux_sym_tunnel_token1] = ACTIONS(2448), + [aux_sym_tunnel_device_token1] = ACTIONS(2446), + [aux_sym_update_host_keys_token1] = ACTIONS(2446), + [aux_sym_use_keychain_token1] = ACTIONS(2446), + [aux_sym_use_roaming_token1] = ACTIONS(2446), + [aux_sym_user_token1] = ACTIONS(2448), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2446), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2446), + [aux_sym_visual_host_key_token1] = ACTIONS(2446), + [aux_sym_xauth_location_token1] = ACTIONS(2446), }, [337] = { - [ts_builtin_sym_end] = ACTIONS(2445), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2447), - [anon_sym_DQUOTE] = ACTIONS(2445), - [aux_sym_match_token1] = ACTIONS(2445), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2445), - [aux_sym_address_family_token1] = ACTIONS(2445), - [aux_sym_batch_mode_token1] = ACTIONS(2445), - [aux_sym_bind_address_token1] = ACTIONS(2445), - [aux_sym_bind_interface_token1] = ACTIONS(2445), - [aux_sym_canonical_domains_token1] = ACTIONS(2445), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2445), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2445), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2445), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2445), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2445), - [aux_sym_certificate_file_token1] = ACTIONS(2445), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2445), - [aux_sym_check_host_ip_token1] = ACTIONS(2445), - [aux_sym_ciphers_token1] = ACTIONS(2445), - [aux_sym_cipher_token1] = ACTIONS(2447), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2445), - [aux_sym_compression_token1] = ACTIONS(2445), - [aux_sym_connection_attempts_token1] = ACTIONS(2445), - [aux_sym_connect_timeout_token1] = ACTIONS(2445), - [aux_sym_control_master_token1] = ACTIONS(2445), - [aux_sym_control_path_token1] = ACTIONS(2445), - [aux_sym_control_persist_token1] = ACTIONS(2445), - [aux_sym_dynamic_forward_token1] = ACTIONS(2445), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2445), - [aux_sym_escape_char_token1] = ACTIONS(2445), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2445), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2445), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2445), - [aux_sym_forward_agent_token1] = ACTIONS(2445), - [aux_sym_forward_x11_token1] = ACTIONS(2447), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2445), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2445), - [aux_sym_gateway_ports_token1] = ACTIONS(2445), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2445), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2445), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2445), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2445), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2445), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2445), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2445), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2445), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2445), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2445), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2445), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2445), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2445), - [aux_sym_host_key_alias_token1] = ACTIONS(2445), - [aux_sym_hostname_token1] = ACTIONS(2445), - [aux_sym_identities_only_token1] = ACTIONS(2445), - [aux_sym_identity_agent_token1] = ACTIONS(2445), - [aux_sym_identity_file_token1] = ACTIONS(2445), - [aux_sym_ignore_unknown_token1] = ACTIONS(2445), - [aux_sym_include_token1] = ACTIONS(2445), - [aux_sym_ip_qos_token1] = ACTIONS(2445), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2445), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2445), - [aux_sym_kex_algorithms_token1] = ACTIONS(2445), - [aux_sym_known_hosts_command_token1] = ACTIONS(2445), - [aux_sym_local_command_token1] = ACTIONS(2445), - [aux_sym_local_forward_token1] = ACTIONS(2445), - [aux_sym_log_level_token1] = ACTIONS(2445), - [aux_sym_log_verbose_token1] = ACTIONS(2445), - [aux_sym_macs_token1] = ACTIONS(2445), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2445), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2445), - [aux_sym_password_authentication_token1] = ACTIONS(2445), - [aux_sym_permit_local_command_token1] = ACTIONS(2445), - [aux_sym_permit_remote_open_token1] = ACTIONS(2445), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2445), - [aux_sym_port_token1] = ACTIONS(2445), - [aux_sym_preferred_authentications_token1] = ACTIONS(2445), - [aux_sym_protocol_token1] = ACTIONS(2445), - [aux_sym_proxy_command_token1] = ACTIONS(2445), - [aux_sym_proxy_jump_token1] = ACTIONS(2445), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2445), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2445), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2445), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2445), - [aux_sym_rekey_limit_token1] = ACTIONS(2445), - [aux_sym_remote_command_token1] = ACTIONS(2445), - [aux_sym_remote_forward_token1] = ACTIONS(2445), - [aux_sym_request_tty_token1] = ACTIONS(2445), - [aux_sym_required_rsa_size_token1] = ACTIONS(2445), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2445), - [aux_sym_security_key_provider_token1] = ACTIONS(2445), - [aux_sym_send_env_token1] = ACTIONS(2445), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2445), - [aux_sym_server_alive_interval_token1] = ACTIONS(2445), - [aux_sym_session_type_token1] = ACTIONS(2445), - [aux_sym_set_env_token1] = ACTIONS(2445), - [aux_sym_stdin_null_token1] = ACTIONS(2445), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2445), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2445), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2445), - [aux_sym_syslog_facility_token1] = ACTIONS(2445), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2445), - [aux_sym_keep_alive_token1] = ACTIONS(2445), - [aux_sym_tunnel_token1] = ACTIONS(2447), - [aux_sym_tunnel_device_token1] = ACTIONS(2445), - [aux_sym_update_host_keys_token1] = ACTIONS(2445), - [aux_sym_use_keychain_token1] = ACTIONS(2445), - [aux_sym_use_roaming_token1] = ACTIONS(2445), - [aux_sym_user_token1] = ACTIONS(2447), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2445), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2445), - [aux_sym_visual_host_key_token1] = ACTIONS(2445), - [aux_sym_xauth_location_token1] = ACTIONS(2445), + [ts_builtin_sym_end] = ACTIONS(2452), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2454), + [anon_sym_DQUOTE] = ACTIONS(2456), + [aux_sym_match_token1] = ACTIONS(2452), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2452), + [aux_sym_address_family_token1] = ACTIONS(2452), + [aux_sym_batch_mode_token1] = ACTIONS(2452), + [aux_sym_bind_address_token1] = ACTIONS(2452), + [aux_sym_bind_interface_token1] = ACTIONS(2452), + [aux_sym_canonical_domains_token1] = ACTIONS(2452), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2452), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2452), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2452), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2452), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2452), + [aux_sym_certificate_file_token1] = ACTIONS(2452), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2452), + [aux_sym_check_host_ip_token1] = ACTIONS(2452), + [aux_sym_ciphers_token1] = ACTIONS(2452), + [aux_sym_cipher_token1] = ACTIONS(2454), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2452), + [aux_sym_compression_token1] = ACTIONS(2452), + [aux_sym_connection_attempts_token1] = ACTIONS(2452), + [aux_sym_connect_timeout_token1] = ACTIONS(2452), + [aux_sym_control_master_token1] = ACTIONS(2452), + [aux_sym_control_path_token1] = ACTIONS(2452), + [aux_sym_control_persist_token1] = ACTIONS(2452), + [aux_sym_dynamic_forward_token1] = ACTIONS(2452), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2452), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2452), + [aux_sym_escape_char_token1] = ACTIONS(2452), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2452), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2452), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2452), + [aux_sym_forward_agent_token1] = ACTIONS(2452), + [aux_sym_forward_x11_token1] = ACTIONS(2454), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2452), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2452), + [aux_sym_gateway_ports_token1] = ACTIONS(2452), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2452), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2452), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2452), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2452), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2452), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2452), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2452), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2452), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2452), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2452), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2452), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2452), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2452), + [aux_sym_host_key_alias_token1] = ACTIONS(2452), + [aux_sym_hostname_token1] = ACTIONS(2452), + [aux_sym_identities_only_token1] = ACTIONS(2452), + [aux_sym_identity_agent_token1] = ACTIONS(2452), + [aux_sym_identity_file_token1] = ACTIONS(2452), + [aux_sym_ignore_unknown_token1] = ACTIONS(2452), + [aux_sym_include_token1] = ACTIONS(2452), + [aux_sym_ip_qos_token1] = ACTIONS(2452), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2452), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2452), + [aux_sym_kex_algorithms_token1] = ACTIONS(2452), + [aux_sym_known_hosts_command_token1] = ACTIONS(2452), + [aux_sym_local_command_token1] = ACTIONS(2452), + [aux_sym_local_forward_token1] = ACTIONS(2452), + [aux_sym_log_level_token1] = ACTIONS(2452), + [aux_sym_log_verbose_token1] = ACTIONS(2452), + [aux_sym_macs_token1] = ACTIONS(2452), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2452), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2452), + [aux_sym_password_authentication_token1] = ACTIONS(2452), + [aux_sym_permit_local_command_token1] = ACTIONS(2452), + [aux_sym_permit_remote_open_token1] = ACTIONS(2452), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2452), + [aux_sym_port_token1] = ACTIONS(2452), + [aux_sym_preferred_authentications_token1] = ACTIONS(2452), + [aux_sym_protocol_token1] = ACTIONS(2452), + [aux_sym_proxy_command_token1] = ACTIONS(2452), + [aux_sym_proxy_jump_token1] = ACTIONS(2452), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2452), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2452), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2452), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2452), + [aux_sym_rekey_limit_token1] = ACTIONS(2452), + [aux_sym_remote_command_token1] = ACTIONS(2452), + [aux_sym_remote_forward_token1] = ACTIONS(2452), + [aux_sym_request_tty_token1] = ACTIONS(2452), + [aux_sym_required_rsa_size_token1] = ACTIONS(2452), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2452), + [aux_sym_security_key_provider_token1] = ACTIONS(2452), + [aux_sym_send_env_token1] = ACTIONS(2452), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2452), + [aux_sym_server_alive_interval_token1] = ACTIONS(2452), + [aux_sym_session_type_token1] = ACTIONS(2452), + [aux_sym_set_env_token1] = ACTIONS(2452), + [aux_sym_stdin_null_token1] = ACTIONS(2452), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2452), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2452), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2452), + [aux_sym_syslog_facility_token1] = ACTIONS(2452), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2452), + [aux_sym_keep_alive_token1] = ACTIONS(2452), + [aux_sym_tunnel_token1] = ACTIONS(2454), + [aux_sym_tunnel_device_token1] = ACTIONS(2452), + [aux_sym_update_host_keys_token1] = ACTIONS(2452), + [aux_sym_use_keychain_token1] = ACTIONS(2452), + [aux_sym_use_roaming_token1] = ACTIONS(2452), + [aux_sym_user_token1] = ACTIONS(2454), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2452), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2452), + [aux_sym_visual_host_key_token1] = ACTIONS(2452), + [aux_sym_xauth_location_token1] = ACTIONS(2452), }, [338] = { - [ts_builtin_sym_end] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2451), - [anon_sym_DQUOTE] = ACTIONS(2453), - [aux_sym_match_token1] = ACTIONS(2449), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2449), - [aux_sym_address_family_token1] = ACTIONS(2449), - [aux_sym_batch_mode_token1] = ACTIONS(2449), - [aux_sym_bind_address_token1] = ACTIONS(2449), - [aux_sym_bind_interface_token1] = ACTIONS(2449), - [aux_sym_canonical_domains_token1] = ACTIONS(2449), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2449), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2449), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2449), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2449), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2449), - [aux_sym_certificate_file_token1] = ACTIONS(2449), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2449), - [aux_sym_check_host_ip_token1] = ACTIONS(2449), - [aux_sym_ciphers_token1] = ACTIONS(2449), - [aux_sym_cipher_token1] = ACTIONS(2451), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2449), - [aux_sym_compression_token1] = ACTIONS(2449), - [aux_sym_connection_attempts_token1] = ACTIONS(2449), - [aux_sym_connect_timeout_token1] = ACTIONS(2449), - [aux_sym_control_master_token1] = ACTIONS(2449), - [aux_sym_control_path_token1] = ACTIONS(2449), - [aux_sym_control_persist_token1] = ACTIONS(2449), - [aux_sym_dynamic_forward_token1] = ACTIONS(2449), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2449), - [aux_sym_escape_char_token1] = ACTIONS(2449), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2449), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2449), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2449), - [aux_sym_forward_agent_token1] = ACTIONS(2449), - [aux_sym_forward_x11_token1] = ACTIONS(2451), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2449), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2449), - [aux_sym_gateway_ports_token1] = ACTIONS(2449), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2449), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2449), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2449), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2449), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2449), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2449), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2449), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2449), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2449), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2449), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2449), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2449), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2449), - [aux_sym_host_key_alias_token1] = ACTIONS(2449), - [aux_sym_hostname_token1] = ACTIONS(2449), - [aux_sym_identities_only_token1] = ACTIONS(2449), - [aux_sym_identity_agent_token1] = ACTIONS(2449), - [aux_sym_identity_file_token1] = ACTIONS(2449), - [aux_sym_ignore_unknown_token1] = ACTIONS(2449), - [aux_sym_include_token1] = ACTIONS(2449), - [aux_sym_ip_qos_token1] = ACTIONS(2449), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2449), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2449), - [aux_sym_kex_algorithms_token1] = ACTIONS(2449), - [aux_sym_known_hosts_command_token1] = ACTIONS(2449), - [aux_sym_local_command_token1] = ACTIONS(2449), - [aux_sym_local_forward_token1] = ACTIONS(2449), - [aux_sym_log_level_token1] = ACTIONS(2449), - [aux_sym_log_verbose_token1] = ACTIONS(2449), - [aux_sym_macs_token1] = ACTIONS(2449), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2449), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2449), - [aux_sym_password_authentication_token1] = ACTIONS(2449), - [aux_sym_permit_local_command_token1] = ACTIONS(2449), - [aux_sym_permit_remote_open_token1] = ACTIONS(2449), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2449), - [aux_sym_port_token1] = ACTIONS(2449), - [aux_sym_preferred_authentications_token1] = ACTIONS(2449), - [aux_sym_protocol_token1] = ACTIONS(2449), - [aux_sym_proxy_command_token1] = ACTIONS(2449), - [aux_sym_proxy_jump_token1] = ACTIONS(2449), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2449), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2449), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2449), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2449), - [aux_sym_rekey_limit_token1] = ACTIONS(2449), - [aux_sym_remote_command_token1] = ACTIONS(2449), - [aux_sym_remote_forward_token1] = ACTIONS(2449), - [aux_sym_request_tty_token1] = ACTIONS(2449), - [aux_sym_required_rsa_size_token1] = ACTIONS(2449), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2449), - [aux_sym_security_key_provider_token1] = ACTIONS(2449), - [aux_sym_send_env_token1] = ACTIONS(2449), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2449), - [aux_sym_server_alive_interval_token1] = ACTIONS(2449), - [aux_sym_session_type_token1] = ACTIONS(2449), - [aux_sym_set_env_token1] = ACTIONS(2449), - [aux_sym_stdin_null_token1] = ACTIONS(2449), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2449), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2449), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2449), - [aux_sym_syslog_facility_token1] = ACTIONS(2449), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2449), - [aux_sym_keep_alive_token1] = ACTIONS(2449), - [aux_sym_tunnel_token1] = ACTIONS(2451), - [aux_sym_tunnel_device_token1] = ACTIONS(2449), - [aux_sym_update_host_keys_token1] = ACTIONS(2449), - [aux_sym_use_keychain_token1] = ACTIONS(2449), - [aux_sym_use_roaming_token1] = ACTIONS(2449), - [aux_sym_user_token1] = ACTIONS(2451), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2449), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2449), - [aux_sym_visual_host_key_token1] = ACTIONS(2449), - [aux_sym_xauth_location_token1] = ACTIONS(2449), + [ts_builtin_sym_end] = ACTIONS(2458), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2460), + [anon_sym_DQUOTE] = ACTIONS(2458), + [aux_sym_match_token1] = ACTIONS(2458), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2458), + [aux_sym_address_family_token1] = ACTIONS(2458), + [aux_sym_batch_mode_token1] = ACTIONS(2458), + [aux_sym_bind_address_token1] = ACTIONS(2458), + [aux_sym_bind_interface_token1] = ACTIONS(2458), + [aux_sym_canonical_domains_token1] = ACTIONS(2458), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2458), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2458), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2458), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2458), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2458), + [aux_sym_certificate_file_token1] = ACTIONS(2458), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2458), + [aux_sym_check_host_ip_token1] = ACTIONS(2458), + [aux_sym_ciphers_token1] = ACTIONS(2458), + [aux_sym_cipher_token1] = ACTIONS(2460), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2458), + [aux_sym_compression_token1] = ACTIONS(2458), + [aux_sym_connection_attempts_token1] = ACTIONS(2458), + [aux_sym_connect_timeout_token1] = ACTIONS(2458), + [aux_sym_control_master_token1] = ACTIONS(2458), + [aux_sym_control_path_token1] = ACTIONS(2458), + [aux_sym_control_persist_token1] = ACTIONS(2458), + [aux_sym_dynamic_forward_token1] = ACTIONS(2458), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2458), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2458), + [aux_sym_escape_char_token1] = ACTIONS(2458), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2458), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2458), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2458), + [aux_sym_forward_agent_token1] = ACTIONS(2458), + [aux_sym_forward_x11_token1] = ACTIONS(2460), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2458), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2458), + [aux_sym_gateway_ports_token1] = ACTIONS(2458), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2458), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2458), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2458), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2458), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2458), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2458), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2458), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2458), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2458), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2458), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2458), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2458), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2458), + [aux_sym_host_key_alias_token1] = ACTIONS(2458), + [aux_sym_hostname_token1] = ACTIONS(2458), + [aux_sym_identities_only_token1] = ACTIONS(2458), + [aux_sym_identity_agent_token1] = ACTIONS(2458), + [aux_sym_identity_file_token1] = ACTIONS(2458), + [aux_sym_ignore_unknown_token1] = ACTIONS(2458), + [aux_sym_include_token1] = ACTIONS(2458), + [aux_sym_ip_qos_token1] = ACTIONS(2458), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2458), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2458), + [aux_sym_kex_algorithms_token1] = ACTIONS(2458), + [aux_sym_known_hosts_command_token1] = ACTIONS(2458), + [aux_sym_local_command_token1] = ACTIONS(2458), + [aux_sym_local_forward_token1] = ACTIONS(2458), + [aux_sym_log_level_token1] = ACTIONS(2458), + [aux_sym_log_verbose_token1] = ACTIONS(2458), + [aux_sym_macs_token1] = ACTIONS(2458), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2458), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2458), + [aux_sym_password_authentication_token1] = ACTIONS(2458), + [aux_sym_permit_local_command_token1] = ACTIONS(2458), + [aux_sym_permit_remote_open_token1] = ACTIONS(2458), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2458), + [aux_sym_port_token1] = ACTIONS(2458), + [aux_sym_preferred_authentications_token1] = ACTIONS(2458), + [aux_sym_protocol_token1] = ACTIONS(2458), + [aux_sym_proxy_command_token1] = ACTIONS(2458), + [aux_sym_proxy_jump_token1] = ACTIONS(2458), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2458), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2458), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2458), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2458), + [aux_sym_rekey_limit_token1] = ACTIONS(2458), + [aux_sym_remote_command_token1] = ACTIONS(2458), + [aux_sym_remote_forward_token1] = ACTIONS(2458), + [aux_sym_request_tty_token1] = ACTIONS(2458), + [aux_sym_required_rsa_size_token1] = ACTIONS(2458), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2458), + [aux_sym_security_key_provider_token1] = ACTIONS(2458), + [aux_sym_send_env_token1] = ACTIONS(2458), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2458), + [aux_sym_server_alive_interval_token1] = ACTIONS(2458), + [aux_sym_session_type_token1] = ACTIONS(2458), + [aux_sym_set_env_token1] = ACTIONS(2458), + [aux_sym_stdin_null_token1] = ACTIONS(2458), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2458), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2458), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2458), + [aux_sym_syslog_facility_token1] = ACTIONS(2458), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2458), + [aux_sym_keep_alive_token1] = ACTIONS(2458), + [aux_sym_tunnel_token1] = ACTIONS(2460), + [aux_sym_tunnel_device_token1] = ACTIONS(2458), + [aux_sym_update_host_keys_token1] = ACTIONS(2458), + [aux_sym_use_keychain_token1] = ACTIONS(2458), + [aux_sym_use_roaming_token1] = ACTIONS(2458), + [aux_sym_user_token1] = ACTIONS(2460), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2458), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2458), + [aux_sym_visual_host_key_token1] = ACTIONS(2458), + [aux_sym_xauth_location_token1] = ACTIONS(2458), }, [339] = { - [ts_builtin_sym_end] = ACTIONS(2455), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2457), - [anon_sym_DQUOTE] = ACTIONS(2459), - [aux_sym_match_token1] = ACTIONS(2455), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2455), - [aux_sym_address_family_token1] = ACTIONS(2455), - [aux_sym_batch_mode_token1] = ACTIONS(2455), - [aux_sym_bind_address_token1] = ACTIONS(2455), - [aux_sym_bind_interface_token1] = ACTIONS(2455), - [aux_sym_canonical_domains_token1] = ACTIONS(2455), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2455), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2455), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2455), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2455), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2455), - [aux_sym_certificate_file_token1] = ACTIONS(2455), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2455), - [aux_sym_check_host_ip_token1] = ACTIONS(2455), - [aux_sym_ciphers_token1] = ACTIONS(2455), - [aux_sym_cipher_token1] = ACTIONS(2457), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2455), - [aux_sym_compression_token1] = ACTIONS(2455), - [aux_sym_connection_attempts_token1] = ACTIONS(2455), - [aux_sym_connect_timeout_token1] = ACTIONS(2455), - [aux_sym_control_master_token1] = ACTIONS(2455), - [aux_sym_control_path_token1] = ACTIONS(2455), - [aux_sym_control_persist_token1] = ACTIONS(2455), - [aux_sym_dynamic_forward_token1] = ACTIONS(2455), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2455), - [aux_sym_escape_char_token1] = ACTIONS(2455), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2455), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2455), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2455), - [aux_sym_forward_agent_token1] = ACTIONS(2455), - [aux_sym_forward_x11_token1] = ACTIONS(2457), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2455), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2455), - [aux_sym_gateway_ports_token1] = ACTIONS(2455), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2455), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2455), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2455), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2455), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2455), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2455), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2455), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2455), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2455), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2455), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2455), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2455), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2455), - [aux_sym_host_key_alias_token1] = ACTIONS(2455), - [aux_sym_hostname_token1] = ACTIONS(2455), - [aux_sym_identities_only_token1] = ACTIONS(2455), - [aux_sym_identity_agent_token1] = ACTIONS(2455), - [aux_sym_identity_file_token1] = ACTIONS(2455), - [aux_sym_ignore_unknown_token1] = ACTIONS(2455), - [aux_sym_include_token1] = ACTIONS(2455), - [aux_sym_ip_qos_token1] = ACTIONS(2455), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2455), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2455), - [aux_sym_kex_algorithms_token1] = ACTIONS(2455), - [aux_sym_known_hosts_command_token1] = ACTIONS(2455), - [aux_sym_local_command_token1] = ACTIONS(2455), - [aux_sym_local_forward_token1] = ACTIONS(2455), - [aux_sym_log_level_token1] = ACTIONS(2455), - [aux_sym_log_verbose_token1] = ACTIONS(2455), - [aux_sym_macs_token1] = ACTIONS(2455), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2455), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2455), - [aux_sym_password_authentication_token1] = ACTIONS(2455), - [aux_sym_permit_local_command_token1] = ACTIONS(2455), - [aux_sym_permit_remote_open_token1] = ACTIONS(2455), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2455), - [aux_sym_port_token1] = ACTIONS(2455), - [aux_sym_preferred_authentications_token1] = ACTIONS(2455), - [aux_sym_protocol_token1] = ACTIONS(2455), - [aux_sym_proxy_command_token1] = ACTIONS(2455), - [aux_sym_proxy_jump_token1] = ACTIONS(2455), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2455), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2455), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2455), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2455), - [aux_sym_rekey_limit_token1] = ACTIONS(2455), - [aux_sym_remote_command_token1] = ACTIONS(2455), - [aux_sym_remote_forward_token1] = ACTIONS(2455), - [aux_sym_request_tty_token1] = ACTIONS(2455), - [aux_sym_required_rsa_size_token1] = ACTIONS(2455), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2455), - [aux_sym_security_key_provider_token1] = ACTIONS(2455), - [aux_sym_send_env_token1] = ACTIONS(2455), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2455), - [aux_sym_server_alive_interval_token1] = ACTIONS(2455), - [aux_sym_session_type_token1] = ACTIONS(2455), - [aux_sym_set_env_token1] = ACTIONS(2455), - [aux_sym_stdin_null_token1] = ACTIONS(2455), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2455), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2455), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2455), - [aux_sym_syslog_facility_token1] = ACTIONS(2455), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2455), - [aux_sym_keep_alive_token1] = ACTIONS(2455), - [aux_sym_tunnel_token1] = ACTIONS(2457), - [aux_sym_tunnel_device_token1] = ACTIONS(2455), - [aux_sym_update_host_keys_token1] = ACTIONS(2455), - [aux_sym_use_keychain_token1] = ACTIONS(2455), - [aux_sym_use_roaming_token1] = ACTIONS(2455), - [aux_sym_user_token1] = ACTIONS(2457), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2455), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2455), - [aux_sym_visual_host_key_token1] = ACTIONS(2455), - [aux_sym_xauth_location_token1] = ACTIONS(2455), + [ts_builtin_sym_end] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2464), + [anon_sym_DQUOTE] = ACTIONS(2462), + [aux_sym_match_token1] = ACTIONS(2462), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2462), + [aux_sym_address_family_token1] = ACTIONS(2462), + [aux_sym_batch_mode_token1] = ACTIONS(2462), + [aux_sym_bind_address_token1] = ACTIONS(2462), + [aux_sym_bind_interface_token1] = ACTIONS(2462), + [aux_sym_canonical_domains_token1] = ACTIONS(2462), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2462), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2462), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2462), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2462), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2462), + [aux_sym_certificate_file_token1] = ACTIONS(2462), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2462), + [aux_sym_check_host_ip_token1] = ACTIONS(2462), + [aux_sym_ciphers_token1] = ACTIONS(2462), + [aux_sym_cipher_token1] = ACTIONS(2464), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2462), + [aux_sym_compression_token1] = ACTIONS(2462), + [aux_sym_connection_attempts_token1] = ACTIONS(2462), + [aux_sym_connect_timeout_token1] = ACTIONS(2462), + [aux_sym_control_master_token1] = ACTIONS(2462), + [aux_sym_control_path_token1] = ACTIONS(2462), + [aux_sym_control_persist_token1] = ACTIONS(2462), + [aux_sym_dynamic_forward_token1] = ACTIONS(2462), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2462), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2462), + [aux_sym_escape_char_token1] = ACTIONS(2462), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2462), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2462), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2462), + [aux_sym_forward_agent_token1] = ACTIONS(2462), + [aux_sym_forward_x11_token1] = ACTIONS(2464), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2462), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2462), + [aux_sym_gateway_ports_token1] = ACTIONS(2462), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2462), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2462), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2462), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2462), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2462), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2462), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2462), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2462), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2462), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2462), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2462), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2462), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2462), + [aux_sym_host_key_alias_token1] = ACTIONS(2462), + [aux_sym_hostname_token1] = ACTIONS(2462), + [aux_sym_identities_only_token1] = ACTIONS(2462), + [aux_sym_identity_agent_token1] = ACTIONS(2462), + [aux_sym_identity_file_token1] = ACTIONS(2462), + [aux_sym_ignore_unknown_token1] = ACTIONS(2462), + [aux_sym_include_token1] = ACTIONS(2462), + [aux_sym_ip_qos_token1] = ACTIONS(2462), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2462), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2462), + [aux_sym_kex_algorithms_token1] = ACTIONS(2462), + [aux_sym_known_hosts_command_token1] = ACTIONS(2462), + [aux_sym_local_command_token1] = ACTIONS(2462), + [aux_sym_local_forward_token1] = ACTIONS(2462), + [aux_sym_log_level_token1] = ACTIONS(2462), + [aux_sym_log_verbose_token1] = ACTIONS(2462), + [aux_sym_macs_token1] = ACTIONS(2462), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2462), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2462), + [aux_sym_password_authentication_token1] = ACTIONS(2462), + [aux_sym_permit_local_command_token1] = ACTIONS(2462), + [aux_sym_permit_remote_open_token1] = ACTIONS(2462), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2462), + [aux_sym_port_token1] = ACTIONS(2462), + [aux_sym_preferred_authentications_token1] = ACTIONS(2462), + [aux_sym_protocol_token1] = ACTIONS(2462), + [aux_sym_proxy_command_token1] = ACTIONS(2462), + [aux_sym_proxy_jump_token1] = ACTIONS(2462), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2462), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2462), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2462), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2462), + [aux_sym_rekey_limit_token1] = ACTIONS(2462), + [aux_sym_remote_command_token1] = ACTIONS(2462), + [aux_sym_remote_forward_token1] = ACTIONS(2462), + [aux_sym_request_tty_token1] = ACTIONS(2462), + [aux_sym_required_rsa_size_token1] = ACTIONS(2462), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2462), + [aux_sym_security_key_provider_token1] = ACTIONS(2462), + [aux_sym_send_env_token1] = ACTIONS(2462), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2462), + [aux_sym_server_alive_interval_token1] = ACTIONS(2462), + [aux_sym_session_type_token1] = ACTIONS(2462), + [aux_sym_set_env_token1] = ACTIONS(2462), + [aux_sym_stdin_null_token1] = ACTIONS(2462), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2462), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2462), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2462), + [aux_sym_syslog_facility_token1] = ACTIONS(2462), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2462), + [aux_sym_keep_alive_token1] = ACTIONS(2462), + [aux_sym_tunnel_token1] = ACTIONS(2464), + [aux_sym_tunnel_device_token1] = ACTIONS(2462), + [aux_sym_update_host_keys_token1] = ACTIONS(2462), + [aux_sym_use_keychain_token1] = ACTIONS(2462), + [aux_sym_use_roaming_token1] = ACTIONS(2462), + [aux_sym_user_token1] = ACTIONS(2464), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2462), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2462), + [aux_sym_visual_host_key_token1] = ACTIONS(2462), + [aux_sym_xauth_location_token1] = ACTIONS(2462), }, [340] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2463), - [anon_sym_DQUOTE] = ACTIONS(2461), - [aux_sym_match_token1] = ACTIONS(2461), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2461), - [aux_sym_address_family_token1] = ACTIONS(2461), - [aux_sym_batch_mode_token1] = ACTIONS(2461), - [aux_sym_bind_address_token1] = ACTIONS(2461), - [aux_sym_bind_interface_token1] = ACTIONS(2461), - [aux_sym_canonical_domains_token1] = ACTIONS(2461), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2461), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2461), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2461), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2461), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2461), - [aux_sym_certificate_file_token1] = ACTIONS(2461), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2461), - [aux_sym_check_host_ip_token1] = ACTIONS(2461), - [aux_sym_ciphers_token1] = ACTIONS(2461), - [aux_sym_cipher_token1] = ACTIONS(2463), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2461), - [aux_sym_compression_token1] = ACTIONS(2461), - [aux_sym_connection_attempts_token1] = ACTIONS(2461), - [aux_sym_connect_timeout_token1] = ACTIONS(2461), - [aux_sym_control_master_token1] = ACTIONS(2461), - [aux_sym_control_path_token1] = ACTIONS(2461), - [aux_sym_control_persist_token1] = ACTIONS(2461), - [aux_sym_dynamic_forward_token1] = ACTIONS(2461), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2461), - [aux_sym_escape_char_token1] = ACTIONS(2461), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2461), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2461), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2461), - [aux_sym_forward_agent_token1] = ACTIONS(2461), - [aux_sym_forward_x11_token1] = ACTIONS(2463), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2461), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2461), - [aux_sym_gateway_ports_token1] = ACTIONS(2461), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2461), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2461), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2461), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2461), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2461), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2461), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2461), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2461), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2461), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2461), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2461), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2461), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2461), - [aux_sym_host_key_alias_token1] = ACTIONS(2461), - [aux_sym_hostname_token1] = ACTIONS(2461), - [aux_sym_identities_only_token1] = ACTIONS(2461), - [aux_sym_identity_agent_token1] = ACTIONS(2461), - [aux_sym_identity_file_token1] = ACTIONS(2461), - [aux_sym_ignore_unknown_token1] = ACTIONS(2461), - [aux_sym_include_token1] = ACTIONS(2461), - [aux_sym_ip_qos_token1] = ACTIONS(2461), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2461), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2461), - [aux_sym_kex_algorithms_token1] = ACTIONS(2461), - [aux_sym_known_hosts_command_token1] = ACTIONS(2461), - [aux_sym_local_command_token1] = ACTIONS(2461), - [aux_sym_local_forward_token1] = ACTIONS(2461), - [aux_sym_log_level_token1] = ACTIONS(2461), - [aux_sym_log_verbose_token1] = ACTIONS(2461), - [aux_sym_macs_token1] = ACTIONS(2461), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2461), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2461), - [aux_sym_password_authentication_token1] = ACTIONS(2461), - [aux_sym_permit_local_command_token1] = ACTIONS(2461), - [aux_sym_permit_remote_open_token1] = ACTIONS(2461), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2461), - [aux_sym_port_token1] = ACTIONS(2461), - [aux_sym_preferred_authentications_token1] = ACTIONS(2461), - [aux_sym_protocol_token1] = ACTIONS(2461), - [aux_sym_proxy_command_token1] = ACTIONS(2461), - [aux_sym_proxy_jump_token1] = ACTIONS(2461), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2461), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2461), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2461), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2461), - [aux_sym_rekey_limit_token1] = ACTIONS(2461), - [aux_sym_remote_command_token1] = ACTIONS(2461), - [aux_sym_remote_forward_token1] = ACTIONS(2461), - [aux_sym_request_tty_token1] = ACTIONS(2461), - [aux_sym_required_rsa_size_token1] = ACTIONS(2461), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2461), - [aux_sym_security_key_provider_token1] = ACTIONS(2461), - [aux_sym_send_env_token1] = ACTIONS(2461), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2461), - [aux_sym_server_alive_interval_token1] = ACTIONS(2461), - [aux_sym_session_type_token1] = ACTIONS(2461), - [aux_sym_set_env_token1] = ACTIONS(2461), - [aux_sym_stdin_null_token1] = ACTIONS(2461), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2461), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2461), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2461), - [aux_sym_syslog_facility_token1] = ACTIONS(2461), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2461), - [aux_sym_keep_alive_token1] = ACTIONS(2461), - [aux_sym_tunnel_token1] = ACTIONS(2463), - [aux_sym_tunnel_device_token1] = ACTIONS(2461), - [aux_sym_update_host_keys_token1] = ACTIONS(2461), - [aux_sym_use_keychain_token1] = ACTIONS(2461), - [aux_sym_use_roaming_token1] = ACTIONS(2461), - [aux_sym_user_token1] = ACTIONS(2463), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2461), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2461), - [aux_sym_visual_host_key_token1] = ACTIONS(2461), - [aux_sym_xauth_location_token1] = ACTIONS(2461), + [ts_builtin_sym_end] = ACTIONS(2466), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2468), + [anon_sym_DQUOTE] = ACTIONS(2470), + [aux_sym_match_token1] = ACTIONS(2466), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2466), + [aux_sym_address_family_token1] = ACTIONS(2466), + [aux_sym_batch_mode_token1] = ACTIONS(2466), + [aux_sym_bind_address_token1] = ACTIONS(2466), + [aux_sym_bind_interface_token1] = ACTIONS(2466), + [aux_sym_canonical_domains_token1] = ACTIONS(2466), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2466), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2466), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2466), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2466), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2466), + [aux_sym_certificate_file_token1] = ACTIONS(2466), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2466), + [aux_sym_check_host_ip_token1] = ACTIONS(2466), + [aux_sym_ciphers_token1] = ACTIONS(2466), + [aux_sym_cipher_token1] = ACTIONS(2468), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2466), + [aux_sym_compression_token1] = ACTIONS(2466), + [aux_sym_connection_attempts_token1] = ACTIONS(2466), + [aux_sym_connect_timeout_token1] = ACTIONS(2466), + [aux_sym_control_master_token1] = ACTIONS(2466), + [aux_sym_control_path_token1] = ACTIONS(2466), + [aux_sym_control_persist_token1] = ACTIONS(2466), + [aux_sym_dynamic_forward_token1] = ACTIONS(2466), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2466), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2466), + [aux_sym_escape_char_token1] = ACTIONS(2466), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2466), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2466), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2466), + [aux_sym_forward_agent_token1] = ACTIONS(2466), + [aux_sym_forward_x11_token1] = ACTIONS(2468), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2466), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2466), + [aux_sym_gateway_ports_token1] = ACTIONS(2466), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2466), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2466), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2466), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2466), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2466), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2466), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2466), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2466), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2466), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2466), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2466), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2466), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2466), + [aux_sym_host_key_alias_token1] = ACTIONS(2466), + [aux_sym_hostname_token1] = ACTIONS(2466), + [aux_sym_identities_only_token1] = ACTIONS(2466), + [aux_sym_identity_agent_token1] = ACTIONS(2466), + [aux_sym_identity_file_token1] = ACTIONS(2466), + [aux_sym_ignore_unknown_token1] = ACTIONS(2466), + [aux_sym_include_token1] = ACTIONS(2466), + [aux_sym_ip_qos_token1] = ACTIONS(2466), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2466), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2466), + [aux_sym_kex_algorithms_token1] = ACTIONS(2466), + [aux_sym_known_hosts_command_token1] = ACTIONS(2466), + [aux_sym_local_command_token1] = ACTIONS(2466), + [aux_sym_local_forward_token1] = ACTIONS(2466), + [aux_sym_log_level_token1] = ACTIONS(2466), + [aux_sym_log_verbose_token1] = ACTIONS(2466), + [aux_sym_macs_token1] = ACTIONS(2466), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2466), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2466), + [aux_sym_password_authentication_token1] = ACTIONS(2466), + [aux_sym_permit_local_command_token1] = ACTIONS(2466), + [aux_sym_permit_remote_open_token1] = ACTIONS(2466), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2466), + [aux_sym_port_token1] = ACTIONS(2466), + [aux_sym_preferred_authentications_token1] = ACTIONS(2466), + [aux_sym_protocol_token1] = ACTIONS(2466), + [aux_sym_proxy_command_token1] = ACTIONS(2466), + [aux_sym_proxy_jump_token1] = ACTIONS(2466), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2466), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2466), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2466), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2466), + [aux_sym_rekey_limit_token1] = ACTIONS(2466), + [aux_sym_remote_command_token1] = ACTIONS(2466), + [aux_sym_remote_forward_token1] = ACTIONS(2466), + [aux_sym_request_tty_token1] = ACTIONS(2466), + [aux_sym_required_rsa_size_token1] = ACTIONS(2466), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2466), + [aux_sym_security_key_provider_token1] = ACTIONS(2466), + [aux_sym_send_env_token1] = ACTIONS(2466), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2466), + [aux_sym_server_alive_interval_token1] = ACTIONS(2466), + [aux_sym_session_type_token1] = ACTIONS(2466), + [aux_sym_set_env_token1] = ACTIONS(2466), + [aux_sym_stdin_null_token1] = ACTIONS(2466), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2466), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2466), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2466), + [aux_sym_syslog_facility_token1] = ACTIONS(2466), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2466), + [aux_sym_keep_alive_token1] = ACTIONS(2466), + [aux_sym_tunnel_token1] = ACTIONS(2468), + [aux_sym_tunnel_device_token1] = ACTIONS(2466), + [aux_sym_update_host_keys_token1] = ACTIONS(2466), + [aux_sym_use_keychain_token1] = ACTIONS(2466), + [aux_sym_use_roaming_token1] = ACTIONS(2466), + [aux_sym_user_token1] = ACTIONS(2468), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2466), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2466), + [aux_sym_visual_host_key_token1] = ACTIONS(2466), + [aux_sym_xauth_location_token1] = ACTIONS(2466), }, [341] = { - [ts_builtin_sym_end] = ACTIONS(2465), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2467), - [anon_sym_DQUOTE] = ACTIONS(2465), - [aux_sym_match_token1] = ACTIONS(2465), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2465), - [aux_sym_address_family_token1] = ACTIONS(2465), - [aux_sym_batch_mode_token1] = ACTIONS(2465), - [aux_sym_bind_address_token1] = ACTIONS(2465), - [aux_sym_bind_interface_token1] = ACTIONS(2465), - [aux_sym_canonical_domains_token1] = ACTIONS(2465), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2465), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2465), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2465), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2465), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2465), - [aux_sym_certificate_file_token1] = ACTIONS(2465), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2465), - [aux_sym_check_host_ip_token1] = ACTIONS(2465), - [aux_sym_ciphers_token1] = ACTIONS(2465), - [aux_sym_cipher_token1] = ACTIONS(2467), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2465), - [aux_sym_compression_token1] = ACTIONS(2465), - [aux_sym_connection_attempts_token1] = ACTIONS(2465), - [aux_sym_connect_timeout_token1] = ACTIONS(2465), - [aux_sym_control_master_token1] = ACTIONS(2465), - [aux_sym_control_path_token1] = ACTIONS(2465), - [aux_sym_control_persist_token1] = ACTIONS(2465), - [aux_sym_dynamic_forward_token1] = ACTIONS(2465), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2465), - [aux_sym_escape_char_token1] = ACTIONS(2465), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2465), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2465), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2465), - [aux_sym_forward_agent_token1] = ACTIONS(2465), - [aux_sym_forward_x11_token1] = ACTIONS(2467), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2465), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2465), - [aux_sym_gateway_ports_token1] = ACTIONS(2465), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2465), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2465), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2465), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2465), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2465), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2465), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2465), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2465), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2465), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2465), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2465), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2465), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2465), - [aux_sym_host_key_alias_token1] = ACTIONS(2465), - [aux_sym_hostname_token1] = ACTIONS(2465), - [aux_sym_identities_only_token1] = ACTIONS(2465), - [aux_sym_identity_agent_token1] = ACTIONS(2465), - [aux_sym_identity_file_token1] = ACTIONS(2465), - [aux_sym_ignore_unknown_token1] = ACTIONS(2465), - [aux_sym_include_token1] = ACTIONS(2465), - [aux_sym_ip_qos_token1] = ACTIONS(2465), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2465), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2465), - [aux_sym_kex_algorithms_token1] = ACTIONS(2465), - [aux_sym_known_hosts_command_token1] = ACTIONS(2465), - [aux_sym_local_command_token1] = ACTIONS(2465), - [aux_sym_local_forward_token1] = ACTIONS(2465), - [aux_sym_log_level_token1] = ACTIONS(2465), - [aux_sym_log_verbose_token1] = ACTIONS(2465), - [aux_sym_macs_token1] = ACTIONS(2465), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2465), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2465), - [aux_sym_password_authentication_token1] = ACTIONS(2465), - [aux_sym_permit_local_command_token1] = ACTIONS(2465), - [aux_sym_permit_remote_open_token1] = ACTIONS(2465), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2465), - [aux_sym_port_token1] = ACTIONS(2465), - [aux_sym_preferred_authentications_token1] = ACTIONS(2465), - [aux_sym_protocol_token1] = ACTIONS(2465), - [aux_sym_proxy_command_token1] = ACTIONS(2465), - [aux_sym_proxy_jump_token1] = ACTIONS(2465), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2465), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2465), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2465), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2465), - [aux_sym_rekey_limit_token1] = ACTIONS(2465), - [aux_sym_remote_command_token1] = ACTIONS(2465), - [aux_sym_remote_forward_token1] = ACTIONS(2465), - [aux_sym_request_tty_token1] = ACTIONS(2465), - [aux_sym_required_rsa_size_token1] = ACTIONS(2465), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2465), - [aux_sym_security_key_provider_token1] = ACTIONS(2465), - [aux_sym_send_env_token1] = ACTIONS(2465), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2465), - [aux_sym_server_alive_interval_token1] = ACTIONS(2465), - [aux_sym_session_type_token1] = ACTIONS(2465), - [aux_sym_set_env_token1] = ACTIONS(2465), - [aux_sym_stdin_null_token1] = ACTIONS(2465), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2465), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2465), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2465), - [aux_sym_syslog_facility_token1] = ACTIONS(2465), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2465), - [aux_sym_keep_alive_token1] = ACTIONS(2465), - [aux_sym_tunnel_token1] = ACTIONS(2467), - [aux_sym_tunnel_device_token1] = ACTIONS(2465), - [aux_sym_update_host_keys_token1] = ACTIONS(2465), - [aux_sym_use_keychain_token1] = ACTIONS(2465), - [aux_sym_use_roaming_token1] = ACTIONS(2465), - [aux_sym_user_token1] = ACTIONS(2467), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2465), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2465), - [aux_sym_visual_host_key_token1] = ACTIONS(2465), - [aux_sym_xauth_location_token1] = ACTIONS(2465), + [ts_builtin_sym_end] = ACTIONS(2472), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2474), + [anon_sym_DQUOTE] = ACTIONS(2476), + [aux_sym_match_token1] = ACTIONS(2472), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2472), + [aux_sym_address_family_token1] = ACTIONS(2472), + [aux_sym_batch_mode_token1] = ACTIONS(2472), + [aux_sym_bind_address_token1] = ACTIONS(2472), + [aux_sym_bind_interface_token1] = ACTIONS(2472), + [aux_sym_canonical_domains_token1] = ACTIONS(2472), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2472), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2472), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2472), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2472), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2472), + [aux_sym_certificate_file_token1] = ACTIONS(2472), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2472), + [aux_sym_check_host_ip_token1] = ACTIONS(2472), + [aux_sym_ciphers_token1] = ACTIONS(2472), + [aux_sym_cipher_token1] = ACTIONS(2474), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2472), + [aux_sym_compression_token1] = ACTIONS(2472), + [aux_sym_connection_attempts_token1] = ACTIONS(2472), + [aux_sym_connect_timeout_token1] = ACTIONS(2472), + [aux_sym_control_master_token1] = ACTIONS(2472), + [aux_sym_control_path_token1] = ACTIONS(2472), + [aux_sym_control_persist_token1] = ACTIONS(2472), + [aux_sym_dynamic_forward_token1] = ACTIONS(2472), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2472), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2472), + [aux_sym_escape_char_token1] = ACTIONS(2472), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2472), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2472), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2472), + [aux_sym_forward_agent_token1] = ACTIONS(2472), + [aux_sym_forward_x11_token1] = ACTIONS(2474), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2472), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2472), + [aux_sym_gateway_ports_token1] = ACTIONS(2472), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2472), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2472), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2472), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2472), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2472), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2472), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2472), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2472), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2472), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2472), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2472), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2472), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2472), + [aux_sym_host_key_alias_token1] = ACTIONS(2472), + [aux_sym_hostname_token1] = ACTIONS(2472), + [aux_sym_identities_only_token1] = ACTIONS(2472), + [aux_sym_identity_agent_token1] = ACTIONS(2472), + [aux_sym_identity_file_token1] = ACTIONS(2472), + [aux_sym_ignore_unknown_token1] = ACTIONS(2472), + [aux_sym_include_token1] = ACTIONS(2472), + [aux_sym_ip_qos_token1] = ACTIONS(2472), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2472), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2472), + [aux_sym_kex_algorithms_token1] = ACTIONS(2472), + [aux_sym_known_hosts_command_token1] = ACTIONS(2472), + [aux_sym_local_command_token1] = ACTIONS(2472), + [aux_sym_local_forward_token1] = ACTIONS(2472), + [aux_sym_log_level_token1] = ACTIONS(2472), + [aux_sym_log_verbose_token1] = ACTIONS(2472), + [aux_sym_macs_token1] = ACTIONS(2472), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2472), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2472), + [aux_sym_password_authentication_token1] = ACTIONS(2472), + [aux_sym_permit_local_command_token1] = ACTIONS(2472), + [aux_sym_permit_remote_open_token1] = ACTIONS(2472), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2472), + [aux_sym_port_token1] = ACTIONS(2472), + [aux_sym_preferred_authentications_token1] = ACTIONS(2472), + [aux_sym_protocol_token1] = ACTIONS(2472), + [aux_sym_proxy_command_token1] = ACTIONS(2472), + [aux_sym_proxy_jump_token1] = ACTIONS(2472), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2472), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2472), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2472), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2472), + [aux_sym_rekey_limit_token1] = ACTIONS(2472), + [aux_sym_remote_command_token1] = ACTIONS(2472), + [aux_sym_remote_forward_token1] = ACTIONS(2472), + [aux_sym_request_tty_token1] = ACTIONS(2472), + [aux_sym_required_rsa_size_token1] = ACTIONS(2472), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2472), + [aux_sym_security_key_provider_token1] = ACTIONS(2472), + [aux_sym_send_env_token1] = ACTIONS(2472), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2472), + [aux_sym_server_alive_interval_token1] = ACTIONS(2472), + [aux_sym_session_type_token1] = ACTIONS(2472), + [aux_sym_set_env_token1] = ACTIONS(2472), + [aux_sym_stdin_null_token1] = ACTIONS(2472), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2472), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2472), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2472), + [aux_sym_syslog_facility_token1] = ACTIONS(2472), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2472), + [aux_sym_keep_alive_token1] = ACTIONS(2472), + [aux_sym_tunnel_token1] = ACTIONS(2474), + [aux_sym_tunnel_device_token1] = ACTIONS(2472), + [aux_sym_update_host_keys_token1] = ACTIONS(2472), + [aux_sym_use_keychain_token1] = ACTIONS(2472), + [aux_sym_use_roaming_token1] = ACTIONS(2472), + [aux_sym_user_token1] = ACTIONS(2474), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2472), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2472), + [aux_sym_visual_host_key_token1] = ACTIONS(2472), + [aux_sym_xauth_location_token1] = ACTIONS(2472), }, [342] = { - [ts_builtin_sym_end] = ACTIONS(2469), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2471), - [anon_sym_DQUOTE] = ACTIONS(2473), - [aux_sym_match_token1] = ACTIONS(2469), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2469), - [aux_sym_address_family_token1] = ACTIONS(2469), - [aux_sym_batch_mode_token1] = ACTIONS(2469), - [aux_sym_bind_address_token1] = ACTIONS(2469), - [aux_sym_bind_interface_token1] = ACTIONS(2469), - [aux_sym_canonical_domains_token1] = ACTIONS(2469), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2469), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2469), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2469), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2469), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2469), - [aux_sym_certificate_file_token1] = ACTIONS(2469), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2469), - [aux_sym_check_host_ip_token1] = ACTIONS(2469), - [aux_sym_ciphers_token1] = ACTIONS(2469), - [aux_sym_cipher_token1] = ACTIONS(2471), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2469), - [aux_sym_compression_token1] = ACTIONS(2469), - [aux_sym_connection_attempts_token1] = ACTIONS(2469), - [aux_sym_connect_timeout_token1] = ACTIONS(2469), - [aux_sym_control_master_token1] = ACTIONS(2469), - [aux_sym_control_path_token1] = ACTIONS(2469), - [aux_sym_control_persist_token1] = ACTIONS(2469), - [aux_sym_dynamic_forward_token1] = ACTIONS(2469), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2469), - [aux_sym_escape_char_token1] = ACTIONS(2469), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2469), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2469), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2469), - [aux_sym_forward_agent_token1] = ACTIONS(2469), - [aux_sym_forward_x11_token1] = ACTIONS(2471), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2469), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2469), - [aux_sym_gateway_ports_token1] = ACTIONS(2469), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2469), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2469), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2469), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2469), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2469), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2469), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2469), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2469), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2469), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2469), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2469), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2469), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2469), - [aux_sym_host_key_alias_token1] = ACTIONS(2469), - [aux_sym_hostname_token1] = ACTIONS(2469), - [aux_sym_identities_only_token1] = ACTIONS(2469), - [aux_sym_identity_agent_token1] = ACTIONS(2469), - [aux_sym_identity_file_token1] = ACTIONS(2469), - [aux_sym_ignore_unknown_token1] = ACTIONS(2469), - [aux_sym_include_token1] = ACTIONS(2469), - [aux_sym_ip_qos_token1] = ACTIONS(2469), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2469), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2469), - [aux_sym_kex_algorithms_token1] = ACTIONS(2469), - [aux_sym_known_hosts_command_token1] = ACTIONS(2469), - [aux_sym_local_command_token1] = ACTIONS(2469), - [aux_sym_local_forward_token1] = ACTIONS(2469), - [aux_sym_log_level_token1] = ACTIONS(2469), - [aux_sym_log_verbose_token1] = ACTIONS(2469), - [aux_sym_macs_token1] = ACTIONS(2469), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2469), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2469), - [aux_sym_password_authentication_token1] = ACTIONS(2469), - [aux_sym_permit_local_command_token1] = ACTIONS(2469), - [aux_sym_permit_remote_open_token1] = ACTIONS(2469), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2469), - [aux_sym_port_token1] = ACTIONS(2469), - [aux_sym_preferred_authentications_token1] = ACTIONS(2469), - [aux_sym_protocol_token1] = ACTIONS(2469), - [aux_sym_proxy_command_token1] = ACTIONS(2469), - [aux_sym_proxy_jump_token1] = ACTIONS(2469), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2469), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2469), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2469), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2469), - [aux_sym_rekey_limit_token1] = ACTIONS(2469), - [aux_sym_remote_command_token1] = ACTIONS(2469), - [aux_sym_remote_forward_token1] = ACTIONS(2469), - [aux_sym_request_tty_token1] = ACTIONS(2469), - [aux_sym_required_rsa_size_token1] = ACTIONS(2469), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2469), - [aux_sym_security_key_provider_token1] = ACTIONS(2469), - [aux_sym_send_env_token1] = ACTIONS(2469), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2469), - [aux_sym_server_alive_interval_token1] = ACTIONS(2469), - [aux_sym_session_type_token1] = ACTIONS(2469), - [aux_sym_set_env_token1] = ACTIONS(2469), - [aux_sym_stdin_null_token1] = ACTIONS(2469), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2469), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2469), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2469), - [aux_sym_syslog_facility_token1] = ACTIONS(2469), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2469), - [aux_sym_keep_alive_token1] = ACTIONS(2469), - [aux_sym_tunnel_token1] = ACTIONS(2471), - [aux_sym_tunnel_device_token1] = ACTIONS(2469), - [aux_sym_update_host_keys_token1] = ACTIONS(2469), - [aux_sym_use_keychain_token1] = ACTIONS(2469), - [aux_sym_use_roaming_token1] = ACTIONS(2469), - [aux_sym_user_token1] = ACTIONS(2471), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2469), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2469), - [aux_sym_visual_host_key_token1] = ACTIONS(2469), - [aux_sym_xauth_location_token1] = ACTIONS(2469), + [ts_builtin_sym_end] = ACTIONS(2478), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2480), + [anon_sym_DQUOTE] = ACTIONS(2478), + [aux_sym_match_token1] = ACTIONS(2478), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2478), + [aux_sym_address_family_token1] = ACTIONS(2478), + [aux_sym_batch_mode_token1] = ACTIONS(2478), + [aux_sym_bind_address_token1] = ACTIONS(2478), + [aux_sym_bind_interface_token1] = ACTIONS(2478), + [aux_sym_canonical_domains_token1] = ACTIONS(2478), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2478), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2478), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2478), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2478), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2478), + [aux_sym_certificate_file_token1] = ACTIONS(2478), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2478), + [aux_sym_check_host_ip_token1] = ACTIONS(2478), + [aux_sym_ciphers_token1] = ACTIONS(2478), + [aux_sym_cipher_token1] = ACTIONS(2480), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2478), + [aux_sym_compression_token1] = ACTIONS(2478), + [aux_sym_connection_attempts_token1] = ACTIONS(2478), + [aux_sym_connect_timeout_token1] = ACTIONS(2478), + [aux_sym_control_master_token1] = ACTIONS(2478), + [aux_sym_control_path_token1] = ACTIONS(2478), + [aux_sym_control_persist_token1] = ACTIONS(2478), + [aux_sym_dynamic_forward_token1] = ACTIONS(2478), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2478), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2478), + [aux_sym_escape_char_token1] = ACTIONS(2478), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2478), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2478), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2478), + [aux_sym_forward_agent_token1] = ACTIONS(2478), + [aux_sym_forward_x11_token1] = ACTIONS(2480), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2478), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2478), + [aux_sym_gateway_ports_token1] = ACTIONS(2478), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2478), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2478), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2478), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2478), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2478), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2478), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2478), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2478), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2478), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2478), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2478), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2478), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2478), + [aux_sym_host_key_alias_token1] = ACTIONS(2478), + [aux_sym_hostname_token1] = ACTIONS(2478), + [aux_sym_identities_only_token1] = ACTIONS(2478), + [aux_sym_identity_agent_token1] = ACTIONS(2478), + [aux_sym_identity_file_token1] = ACTIONS(2478), + [aux_sym_ignore_unknown_token1] = ACTIONS(2478), + [aux_sym_include_token1] = ACTIONS(2478), + [aux_sym_ip_qos_token1] = ACTIONS(2478), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2478), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2478), + [aux_sym_kex_algorithms_token1] = ACTIONS(2478), + [aux_sym_known_hosts_command_token1] = ACTIONS(2478), + [aux_sym_local_command_token1] = ACTIONS(2478), + [aux_sym_local_forward_token1] = ACTIONS(2478), + [aux_sym_log_level_token1] = ACTIONS(2478), + [aux_sym_log_verbose_token1] = ACTIONS(2478), + [aux_sym_macs_token1] = ACTIONS(2478), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2478), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2478), + [aux_sym_password_authentication_token1] = ACTIONS(2478), + [aux_sym_permit_local_command_token1] = ACTIONS(2478), + [aux_sym_permit_remote_open_token1] = ACTIONS(2478), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2478), + [aux_sym_port_token1] = ACTIONS(2478), + [aux_sym_preferred_authentications_token1] = ACTIONS(2478), + [aux_sym_protocol_token1] = ACTIONS(2478), + [aux_sym_proxy_command_token1] = ACTIONS(2478), + [aux_sym_proxy_jump_token1] = ACTIONS(2478), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2478), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2478), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2478), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2478), + [aux_sym_rekey_limit_token1] = ACTIONS(2478), + [aux_sym_remote_command_token1] = ACTIONS(2478), + [aux_sym_remote_forward_token1] = ACTIONS(2478), + [aux_sym_request_tty_token1] = ACTIONS(2478), + [aux_sym_required_rsa_size_token1] = ACTIONS(2478), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2478), + [aux_sym_security_key_provider_token1] = ACTIONS(2478), + [aux_sym_send_env_token1] = ACTIONS(2478), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2478), + [aux_sym_server_alive_interval_token1] = ACTIONS(2478), + [aux_sym_session_type_token1] = ACTIONS(2478), + [aux_sym_set_env_token1] = ACTIONS(2478), + [aux_sym_stdin_null_token1] = ACTIONS(2478), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2478), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2478), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2478), + [aux_sym_syslog_facility_token1] = ACTIONS(2478), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2478), + [aux_sym_keep_alive_token1] = ACTIONS(2478), + [aux_sym_tunnel_token1] = ACTIONS(2480), + [aux_sym_tunnel_device_token1] = ACTIONS(2478), + [aux_sym_update_host_keys_token1] = ACTIONS(2478), + [aux_sym_use_keychain_token1] = ACTIONS(2478), + [aux_sym_use_roaming_token1] = ACTIONS(2478), + [aux_sym_user_token1] = ACTIONS(2480), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2478), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2478), + [aux_sym_visual_host_key_token1] = ACTIONS(2478), + [aux_sym_xauth_location_token1] = ACTIONS(2478), }, [343] = { - [ts_builtin_sym_end] = ACTIONS(2475), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2477), - [anon_sym_DQUOTE] = ACTIONS(2479), - [aux_sym_match_token1] = ACTIONS(2475), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2475), - [aux_sym_address_family_token1] = ACTIONS(2475), - [aux_sym_batch_mode_token1] = ACTIONS(2475), - [aux_sym_bind_address_token1] = ACTIONS(2475), - [aux_sym_bind_interface_token1] = ACTIONS(2475), - [aux_sym_canonical_domains_token1] = ACTIONS(2475), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2475), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2475), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2475), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2475), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2475), - [aux_sym_certificate_file_token1] = ACTIONS(2475), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2475), - [aux_sym_check_host_ip_token1] = ACTIONS(2475), - [aux_sym_ciphers_token1] = ACTIONS(2475), - [aux_sym_cipher_token1] = ACTIONS(2477), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2475), - [aux_sym_compression_token1] = ACTIONS(2475), - [aux_sym_connection_attempts_token1] = ACTIONS(2475), - [aux_sym_connect_timeout_token1] = ACTIONS(2475), - [aux_sym_control_master_token1] = ACTIONS(2475), - [aux_sym_control_path_token1] = ACTIONS(2475), - [aux_sym_control_persist_token1] = ACTIONS(2475), - [aux_sym_dynamic_forward_token1] = ACTIONS(2475), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2475), - [aux_sym_escape_char_token1] = ACTIONS(2475), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2475), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2475), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2475), - [aux_sym_forward_agent_token1] = ACTIONS(2475), - [aux_sym_forward_x11_token1] = ACTIONS(2477), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2475), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2475), - [aux_sym_gateway_ports_token1] = ACTIONS(2475), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2475), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2475), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2475), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2475), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2475), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2475), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2475), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2475), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2475), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2475), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2475), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2475), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2475), - [aux_sym_host_key_alias_token1] = ACTIONS(2475), - [aux_sym_hostname_token1] = ACTIONS(2475), - [aux_sym_identities_only_token1] = ACTIONS(2475), - [aux_sym_identity_agent_token1] = ACTIONS(2475), - [aux_sym_identity_file_token1] = ACTIONS(2475), - [aux_sym_ignore_unknown_token1] = ACTIONS(2475), - [aux_sym_include_token1] = ACTIONS(2475), - [aux_sym_ip_qos_token1] = ACTIONS(2475), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2475), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2475), - [aux_sym_kex_algorithms_token1] = ACTIONS(2475), - [aux_sym_known_hosts_command_token1] = ACTIONS(2475), - [aux_sym_local_command_token1] = ACTIONS(2475), - [aux_sym_local_forward_token1] = ACTIONS(2475), - [aux_sym_log_level_token1] = ACTIONS(2475), - [aux_sym_log_verbose_token1] = ACTIONS(2475), - [aux_sym_macs_token1] = ACTIONS(2475), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2475), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2475), - [aux_sym_password_authentication_token1] = ACTIONS(2475), - [aux_sym_permit_local_command_token1] = ACTIONS(2475), - [aux_sym_permit_remote_open_token1] = ACTIONS(2475), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2475), - [aux_sym_port_token1] = ACTIONS(2475), - [aux_sym_preferred_authentications_token1] = ACTIONS(2475), - [aux_sym_protocol_token1] = ACTIONS(2475), - [aux_sym_proxy_command_token1] = ACTIONS(2475), - [aux_sym_proxy_jump_token1] = ACTIONS(2475), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2475), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2475), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2475), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2475), - [aux_sym_rekey_limit_token1] = ACTIONS(2475), - [aux_sym_remote_command_token1] = ACTIONS(2475), - [aux_sym_remote_forward_token1] = ACTIONS(2475), - [aux_sym_request_tty_token1] = ACTIONS(2475), - [aux_sym_required_rsa_size_token1] = ACTIONS(2475), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2475), - [aux_sym_security_key_provider_token1] = ACTIONS(2475), - [aux_sym_send_env_token1] = ACTIONS(2475), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2475), - [aux_sym_server_alive_interval_token1] = ACTIONS(2475), - [aux_sym_session_type_token1] = ACTIONS(2475), - [aux_sym_set_env_token1] = ACTIONS(2475), - [aux_sym_stdin_null_token1] = ACTIONS(2475), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2475), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2475), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2475), - [aux_sym_syslog_facility_token1] = ACTIONS(2475), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2475), - [aux_sym_keep_alive_token1] = ACTIONS(2475), - [aux_sym_tunnel_token1] = ACTIONS(2477), - [aux_sym_tunnel_device_token1] = ACTIONS(2475), - [aux_sym_update_host_keys_token1] = ACTIONS(2475), - [aux_sym_use_keychain_token1] = ACTIONS(2475), - [aux_sym_use_roaming_token1] = ACTIONS(2475), - [aux_sym_user_token1] = ACTIONS(2477), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2475), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2475), - [aux_sym_visual_host_key_token1] = ACTIONS(2475), - [aux_sym_xauth_location_token1] = ACTIONS(2475), + [ts_builtin_sym_end] = ACTIONS(2482), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2482), + [aux_sym_match_token1] = ACTIONS(2482), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2482), + [aux_sym_address_family_token1] = ACTIONS(2482), + [aux_sym_batch_mode_token1] = ACTIONS(2482), + [aux_sym_bind_address_token1] = ACTIONS(2482), + [aux_sym_bind_interface_token1] = ACTIONS(2482), + [aux_sym_canonical_domains_token1] = ACTIONS(2482), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2482), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2482), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2482), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2482), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2482), + [aux_sym_certificate_file_token1] = ACTIONS(2482), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2482), + [aux_sym_check_host_ip_token1] = ACTIONS(2482), + [aux_sym_ciphers_token1] = ACTIONS(2482), + [aux_sym_cipher_token1] = ACTIONS(2484), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2482), + [aux_sym_compression_token1] = ACTIONS(2482), + [aux_sym_connection_attempts_token1] = ACTIONS(2482), + [aux_sym_connect_timeout_token1] = ACTIONS(2482), + [aux_sym_control_master_token1] = ACTIONS(2482), + [aux_sym_control_path_token1] = ACTIONS(2482), + [aux_sym_control_persist_token1] = ACTIONS(2482), + [aux_sym_dynamic_forward_token1] = ACTIONS(2482), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2482), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2482), + [aux_sym_escape_char_token1] = ACTIONS(2482), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2482), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2482), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2482), + [aux_sym_forward_agent_token1] = ACTIONS(2482), + [aux_sym_forward_x11_token1] = ACTIONS(2484), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2482), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2482), + [aux_sym_gateway_ports_token1] = ACTIONS(2482), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2482), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2482), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2482), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2482), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2482), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2482), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2482), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2482), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2482), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2482), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2482), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2482), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2482), + [aux_sym_host_key_alias_token1] = ACTIONS(2482), + [aux_sym_hostname_token1] = ACTIONS(2482), + [aux_sym_identities_only_token1] = ACTIONS(2482), + [aux_sym_identity_agent_token1] = ACTIONS(2482), + [aux_sym_identity_file_token1] = ACTIONS(2482), + [aux_sym_ignore_unknown_token1] = ACTIONS(2482), + [aux_sym_include_token1] = ACTIONS(2482), + [aux_sym_ip_qos_token1] = ACTIONS(2482), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2482), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2482), + [aux_sym_kex_algorithms_token1] = ACTIONS(2482), + [aux_sym_known_hosts_command_token1] = ACTIONS(2482), + [aux_sym_local_command_token1] = ACTIONS(2482), + [aux_sym_local_forward_token1] = ACTIONS(2482), + [aux_sym_log_level_token1] = ACTIONS(2482), + [aux_sym_log_verbose_token1] = ACTIONS(2482), + [aux_sym_macs_token1] = ACTIONS(2482), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2482), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2482), + [aux_sym_password_authentication_token1] = ACTIONS(2482), + [aux_sym_permit_local_command_token1] = ACTIONS(2482), + [aux_sym_permit_remote_open_token1] = ACTIONS(2482), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2482), + [aux_sym_port_token1] = ACTIONS(2482), + [aux_sym_preferred_authentications_token1] = ACTIONS(2482), + [aux_sym_protocol_token1] = ACTIONS(2482), + [aux_sym_proxy_command_token1] = ACTIONS(2482), + [aux_sym_proxy_jump_token1] = ACTIONS(2482), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2482), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2482), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2482), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2482), + [aux_sym_rekey_limit_token1] = ACTIONS(2482), + [aux_sym_remote_command_token1] = ACTIONS(2482), + [aux_sym_remote_forward_token1] = ACTIONS(2482), + [aux_sym_request_tty_token1] = ACTIONS(2482), + [aux_sym_required_rsa_size_token1] = ACTIONS(2482), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2482), + [aux_sym_security_key_provider_token1] = ACTIONS(2482), + [aux_sym_send_env_token1] = ACTIONS(2482), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2482), + [aux_sym_server_alive_interval_token1] = ACTIONS(2482), + [aux_sym_session_type_token1] = ACTIONS(2482), + [aux_sym_set_env_token1] = ACTIONS(2482), + [aux_sym_stdin_null_token1] = ACTIONS(2482), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2482), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2482), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2482), + [aux_sym_syslog_facility_token1] = ACTIONS(2482), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2482), + [aux_sym_keep_alive_token1] = ACTIONS(2482), + [aux_sym_tunnel_token1] = ACTIONS(2484), + [aux_sym_tunnel_device_token1] = ACTIONS(2482), + [aux_sym_update_host_keys_token1] = ACTIONS(2482), + [aux_sym_use_keychain_token1] = ACTIONS(2482), + [aux_sym_use_roaming_token1] = ACTIONS(2482), + [aux_sym_user_token1] = ACTIONS(2484), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2482), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2482), + [aux_sym_visual_host_key_token1] = ACTIONS(2482), + [aux_sym_xauth_location_token1] = ACTIONS(2482), }, [344] = { - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2481), - [aux_sym_match_token1] = ACTIONS(2481), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2481), - [aux_sym_address_family_token1] = ACTIONS(2481), - [aux_sym_batch_mode_token1] = ACTIONS(2481), - [aux_sym_bind_address_token1] = ACTIONS(2481), - [aux_sym_bind_interface_token1] = ACTIONS(2481), - [aux_sym_canonical_domains_token1] = ACTIONS(2481), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2481), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2481), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2481), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2481), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2481), - [aux_sym_certificate_file_token1] = ACTIONS(2481), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2481), - [aux_sym_check_host_ip_token1] = ACTIONS(2481), - [aux_sym_ciphers_token1] = ACTIONS(2481), - [aux_sym_cipher_token1] = ACTIONS(2483), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2481), - [aux_sym_compression_token1] = ACTIONS(2481), - [aux_sym_connection_attempts_token1] = ACTIONS(2481), - [aux_sym_connect_timeout_token1] = ACTIONS(2481), - [aux_sym_control_master_token1] = ACTIONS(2481), - [aux_sym_control_path_token1] = ACTIONS(2481), - [aux_sym_control_persist_token1] = ACTIONS(2481), - [aux_sym_dynamic_forward_token1] = ACTIONS(2481), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2481), - [aux_sym_escape_char_token1] = ACTIONS(2481), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2481), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2481), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2481), - [aux_sym_forward_agent_token1] = ACTIONS(2481), - [aux_sym_forward_x11_token1] = ACTIONS(2483), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2481), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2481), - [aux_sym_gateway_ports_token1] = ACTIONS(2481), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2481), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2481), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2481), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2481), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2481), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2481), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2481), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2481), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2481), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2481), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2481), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2481), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2481), - [aux_sym_host_key_alias_token1] = ACTIONS(2481), - [aux_sym_hostname_token1] = ACTIONS(2481), - [aux_sym_identities_only_token1] = ACTIONS(2481), - [aux_sym_identity_agent_token1] = ACTIONS(2481), - [aux_sym_identity_file_token1] = ACTIONS(2481), - [aux_sym_ignore_unknown_token1] = ACTIONS(2481), - [aux_sym_include_token1] = ACTIONS(2481), - [aux_sym_ip_qos_token1] = ACTIONS(2481), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2481), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2481), - [aux_sym_kex_algorithms_token1] = ACTIONS(2481), - [aux_sym_known_hosts_command_token1] = ACTIONS(2481), - [aux_sym_local_command_token1] = ACTIONS(2481), - [aux_sym_local_forward_token1] = ACTIONS(2481), - [aux_sym_log_level_token1] = ACTIONS(2481), - [aux_sym_log_verbose_token1] = ACTIONS(2481), - [aux_sym_macs_token1] = ACTIONS(2481), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2481), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2481), - [aux_sym_password_authentication_token1] = ACTIONS(2481), - [aux_sym_permit_local_command_token1] = ACTIONS(2481), - [aux_sym_permit_remote_open_token1] = ACTIONS(2481), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2481), - [aux_sym_port_token1] = ACTIONS(2481), - [aux_sym_preferred_authentications_token1] = ACTIONS(2481), - [aux_sym_protocol_token1] = ACTIONS(2481), - [aux_sym_proxy_command_token1] = ACTIONS(2481), - [aux_sym_proxy_jump_token1] = ACTIONS(2481), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2481), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2481), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2481), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2481), - [aux_sym_rekey_limit_token1] = ACTIONS(2481), - [aux_sym_remote_command_token1] = ACTIONS(2481), - [aux_sym_remote_forward_token1] = ACTIONS(2481), - [aux_sym_request_tty_token1] = ACTIONS(2481), - [aux_sym_required_rsa_size_token1] = ACTIONS(2481), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2481), - [aux_sym_security_key_provider_token1] = ACTIONS(2481), - [aux_sym_send_env_token1] = ACTIONS(2481), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2481), - [aux_sym_server_alive_interval_token1] = ACTIONS(2481), - [aux_sym_session_type_token1] = ACTIONS(2481), - [aux_sym_set_env_token1] = ACTIONS(2481), - [aux_sym_stdin_null_token1] = ACTIONS(2481), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2481), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2481), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2481), - [aux_sym_syslog_facility_token1] = ACTIONS(2481), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2481), - [aux_sym_keep_alive_token1] = ACTIONS(2481), - [aux_sym_tunnel_token1] = ACTIONS(2483), - [aux_sym_tunnel_device_token1] = ACTIONS(2481), - [aux_sym_update_host_keys_token1] = ACTIONS(2481), - [aux_sym_use_keychain_token1] = ACTIONS(2481), - [aux_sym_use_roaming_token1] = ACTIONS(2481), - [aux_sym_user_token1] = ACTIONS(2483), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2481), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2481), - [aux_sym_visual_host_key_token1] = ACTIONS(2481), - [aux_sym_xauth_location_token1] = ACTIONS(2481), + [ts_builtin_sym_end] = ACTIONS(2486), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2488), + [anon_sym_DQUOTE] = ACTIONS(2490), + [aux_sym_match_token1] = ACTIONS(2486), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2486), + [aux_sym_address_family_token1] = ACTIONS(2486), + [aux_sym_batch_mode_token1] = ACTIONS(2486), + [aux_sym_bind_address_token1] = ACTIONS(2486), + [aux_sym_bind_interface_token1] = ACTIONS(2486), + [aux_sym_canonical_domains_token1] = ACTIONS(2486), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2486), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2486), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2486), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2486), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2486), + [aux_sym_certificate_file_token1] = ACTIONS(2486), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2486), + [aux_sym_check_host_ip_token1] = ACTIONS(2486), + [aux_sym_ciphers_token1] = ACTIONS(2486), + [aux_sym_cipher_token1] = ACTIONS(2488), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2486), + [aux_sym_compression_token1] = ACTIONS(2486), + [aux_sym_connection_attempts_token1] = ACTIONS(2486), + [aux_sym_connect_timeout_token1] = ACTIONS(2486), + [aux_sym_control_master_token1] = ACTIONS(2486), + [aux_sym_control_path_token1] = ACTIONS(2486), + [aux_sym_control_persist_token1] = ACTIONS(2486), + [aux_sym_dynamic_forward_token1] = ACTIONS(2486), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2486), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2486), + [aux_sym_escape_char_token1] = ACTIONS(2486), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2486), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2486), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2486), + [aux_sym_forward_agent_token1] = ACTIONS(2486), + [aux_sym_forward_x11_token1] = ACTIONS(2488), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2486), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2486), + [aux_sym_gateway_ports_token1] = ACTIONS(2486), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2486), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2486), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2486), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2486), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2486), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2486), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2486), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2486), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2486), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2486), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2486), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2486), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2486), + [aux_sym_host_key_alias_token1] = ACTIONS(2486), + [aux_sym_hostname_token1] = ACTIONS(2486), + [aux_sym_identities_only_token1] = ACTIONS(2486), + [aux_sym_identity_agent_token1] = ACTIONS(2486), + [aux_sym_identity_file_token1] = ACTIONS(2486), + [aux_sym_ignore_unknown_token1] = ACTIONS(2486), + [aux_sym_include_token1] = ACTIONS(2486), + [aux_sym_ip_qos_token1] = ACTIONS(2486), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2486), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2486), + [aux_sym_kex_algorithms_token1] = ACTIONS(2486), + [aux_sym_known_hosts_command_token1] = ACTIONS(2486), + [aux_sym_local_command_token1] = ACTIONS(2486), + [aux_sym_local_forward_token1] = ACTIONS(2486), + [aux_sym_log_level_token1] = ACTIONS(2486), + [aux_sym_log_verbose_token1] = ACTIONS(2486), + [aux_sym_macs_token1] = ACTIONS(2486), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2486), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2486), + [aux_sym_password_authentication_token1] = ACTIONS(2486), + [aux_sym_permit_local_command_token1] = ACTIONS(2486), + [aux_sym_permit_remote_open_token1] = ACTIONS(2486), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2486), + [aux_sym_port_token1] = ACTIONS(2486), + [aux_sym_preferred_authentications_token1] = ACTIONS(2486), + [aux_sym_protocol_token1] = ACTIONS(2486), + [aux_sym_proxy_command_token1] = ACTIONS(2486), + [aux_sym_proxy_jump_token1] = ACTIONS(2486), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2486), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2486), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2486), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2486), + [aux_sym_rekey_limit_token1] = ACTIONS(2486), + [aux_sym_remote_command_token1] = ACTIONS(2486), + [aux_sym_remote_forward_token1] = ACTIONS(2486), + [aux_sym_request_tty_token1] = ACTIONS(2486), + [aux_sym_required_rsa_size_token1] = ACTIONS(2486), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2486), + [aux_sym_security_key_provider_token1] = ACTIONS(2486), + [aux_sym_send_env_token1] = ACTIONS(2486), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2486), + [aux_sym_server_alive_interval_token1] = ACTIONS(2486), + [aux_sym_session_type_token1] = ACTIONS(2486), + [aux_sym_set_env_token1] = ACTIONS(2486), + [aux_sym_stdin_null_token1] = ACTIONS(2486), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2486), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2486), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2486), + [aux_sym_syslog_facility_token1] = ACTIONS(2486), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2486), + [aux_sym_keep_alive_token1] = ACTIONS(2486), + [aux_sym_tunnel_token1] = ACTIONS(2488), + [aux_sym_tunnel_device_token1] = ACTIONS(2486), + [aux_sym_update_host_keys_token1] = ACTIONS(2486), + [aux_sym_use_keychain_token1] = ACTIONS(2486), + [aux_sym_use_roaming_token1] = ACTIONS(2486), + [aux_sym_user_token1] = ACTIONS(2488), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2486), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2486), + [aux_sym_visual_host_key_token1] = ACTIONS(2486), + [aux_sym_xauth_location_token1] = ACTIONS(2486), }, [345] = { - [ts_builtin_sym_end] = ACTIONS(2485), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2487), - [anon_sym_DQUOTE] = ACTIONS(2485), - [aux_sym_match_token1] = ACTIONS(2485), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2485), - [aux_sym_address_family_token1] = ACTIONS(2485), - [aux_sym_batch_mode_token1] = ACTIONS(2485), - [aux_sym_bind_address_token1] = ACTIONS(2485), - [aux_sym_bind_interface_token1] = ACTIONS(2485), - [aux_sym_canonical_domains_token1] = ACTIONS(2485), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2485), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2485), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2485), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2485), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2485), - [aux_sym_certificate_file_token1] = ACTIONS(2485), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2485), - [aux_sym_check_host_ip_token1] = ACTIONS(2485), - [aux_sym_ciphers_token1] = ACTIONS(2485), - [aux_sym_cipher_token1] = ACTIONS(2487), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2485), - [aux_sym_compression_token1] = ACTIONS(2485), - [aux_sym_connection_attempts_token1] = ACTIONS(2485), - [aux_sym_connect_timeout_token1] = ACTIONS(2485), - [aux_sym_control_master_token1] = ACTIONS(2485), - [aux_sym_control_path_token1] = ACTIONS(2485), - [aux_sym_control_persist_token1] = ACTIONS(2485), - [aux_sym_dynamic_forward_token1] = ACTIONS(2485), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2485), - [aux_sym_escape_char_token1] = ACTIONS(2485), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2485), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2485), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2485), - [aux_sym_forward_agent_token1] = ACTIONS(2485), - [aux_sym_forward_x11_token1] = ACTIONS(2487), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2485), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2485), - [aux_sym_gateway_ports_token1] = ACTIONS(2485), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2485), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2485), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2485), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2485), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2485), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2485), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2485), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2485), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2485), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2485), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2485), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2485), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2485), - [aux_sym_host_key_alias_token1] = ACTIONS(2485), - [aux_sym_hostname_token1] = ACTIONS(2485), - [aux_sym_identities_only_token1] = ACTIONS(2485), - [aux_sym_identity_agent_token1] = ACTIONS(2485), - [aux_sym_identity_file_token1] = ACTIONS(2485), - [aux_sym_ignore_unknown_token1] = ACTIONS(2485), - [aux_sym_include_token1] = ACTIONS(2485), - [aux_sym_ip_qos_token1] = ACTIONS(2485), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2485), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2485), - [aux_sym_kex_algorithms_token1] = ACTIONS(2485), - [aux_sym_known_hosts_command_token1] = ACTIONS(2485), - [aux_sym_local_command_token1] = ACTIONS(2485), - [aux_sym_local_forward_token1] = ACTIONS(2485), - [aux_sym_log_level_token1] = ACTIONS(2485), - [aux_sym_log_verbose_token1] = ACTIONS(2485), - [aux_sym_macs_token1] = ACTIONS(2485), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2485), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2485), - [aux_sym_password_authentication_token1] = ACTIONS(2485), - [aux_sym_permit_local_command_token1] = ACTIONS(2485), - [aux_sym_permit_remote_open_token1] = ACTIONS(2485), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2485), - [aux_sym_port_token1] = ACTIONS(2485), - [aux_sym_preferred_authentications_token1] = ACTIONS(2485), - [aux_sym_protocol_token1] = ACTIONS(2485), - [aux_sym_proxy_command_token1] = ACTIONS(2485), - [aux_sym_proxy_jump_token1] = ACTIONS(2485), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2485), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2485), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2485), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2485), - [aux_sym_rekey_limit_token1] = ACTIONS(2485), - [aux_sym_remote_command_token1] = ACTIONS(2485), - [aux_sym_remote_forward_token1] = ACTIONS(2485), - [aux_sym_request_tty_token1] = ACTIONS(2485), - [aux_sym_required_rsa_size_token1] = ACTIONS(2485), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2485), - [aux_sym_security_key_provider_token1] = ACTIONS(2485), - [aux_sym_send_env_token1] = ACTIONS(2485), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2485), - [aux_sym_server_alive_interval_token1] = ACTIONS(2485), - [aux_sym_session_type_token1] = ACTIONS(2485), - [aux_sym_set_env_token1] = ACTIONS(2485), - [aux_sym_stdin_null_token1] = ACTIONS(2485), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2485), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2485), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2485), - [aux_sym_syslog_facility_token1] = ACTIONS(2485), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2485), - [aux_sym_keep_alive_token1] = ACTIONS(2485), - [aux_sym_tunnel_token1] = ACTIONS(2487), - [aux_sym_tunnel_device_token1] = ACTIONS(2485), - [aux_sym_update_host_keys_token1] = ACTIONS(2485), - [aux_sym_use_keychain_token1] = ACTIONS(2485), - [aux_sym_use_roaming_token1] = ACTIONS(2485), - [aux_sym_user_token1] = ACTIONS(2487), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2485), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2485), - [aux_sym_visual_host_key_token1] = ACTIONS(2485), - [aux_sym_xauth_location_token1] = ACTIONS(2485), + [ts_builtin_sym_end] = ACTIONS(2492), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [aux_sym_match_token1] = ACTIONS(2492), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2492), + [aux_sym_address_family_token1] = ACTIONS(2492), + [aux_sym_batch_mode_token1] = ACTIONS(2492), + [aux_sym_bind_address_token1] = ACTIONS(2492), + [aux_sym_bind_interface_token1] = ACTIONS(2492), + [aux_sym_canonical_domains_token1] = ACTIONS(2492), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2492), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2492), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2492), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2492), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2492), + [aux_sym_certificate_file_token1] = ACTIONS(2492), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2492), + [aux_sym_check_host_ip_token1] = ACTIONS(2492), + [aux_sym_ciphers_token1] = ACTIONS(2492), + [aux_sym_cipher_token1] = ACTIONS(2494), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2492), + [aux_sym_compression_token1] = ACTIONS(2492), + [aux_sym_connection_attempts_token1] = ACTIONS(2492), + [aux_sym_connect_timeout_token1] = ACTIONS(2492), + [aux_sym_control_master_token1] = ACTIONS(2492), + [aux_sym_control_path_token1] = ACTIONS(2492), + [aux_sym_control_persist_token1] = ACTIONS(2492), + [aux_sym_dynamic_forward_token1] = ACTIONS(2492), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2492), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2492), + [aux_sym_escape_char_token1] = ACTIONS(2492), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2492), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2492), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2492), + [aux_sym_forward_agent_token1] = ACTIONS(2492), + [aux_sym_forward_x11_token1] = ACTIONS(2494), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2492), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2492), + [aux_sym_gateway_ports_token1] = ACTIONS(2492), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2492), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2492), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2492), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2492), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2492), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2492), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2492), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2492), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2492), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2492), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2492), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2492), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2492), + [aux_sym_host_key_alias_token1] = ACTIONS(2492), + [aux_sym_hostname_token1] = ACTIONS(2492), + [aux_sym_identities_only_token1] = ACTIONS(2492), + [aux_sym_identity_agent_token1] = ACTIONS(2492), + [aux_sym_identity_file_token1] = ACTIONS(2492), + [aux_sym_ignore_unknown_token1] = ACTIONS(2492), + [aux_sym_include_token1] = ACTIONS(2492), + [aux_sym_ip_qos_token1] = ACTIONS(2492), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2492), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2492), + [aux_sym_kex_algorithms_token1] = ACTIONS(2492), + [aux_sym_known_hosts_command_token1] = ACTIONS(2492), + [aux_sym_local_command_token1] = ACTIONS(2492), + [aux_sym_local_forward_token1] = ACTIONS(2492), + [aux_sym_log_level_token1] = ACTIONS(2492), + [aux_sym_log_verbose_token1] = ACTIONS(2492), + [aux_sym_macs_token1] = ACTIONS(2492), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2492), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2492), + [aux_sym_password_authentication_token1] = ACTIONS(2492), + [aux_sym_permit_local_command_token1] = ACTIONS(2492), + [aux_sym_permit_remote_open_token1] = ACTIONS(2492), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2492), + [aux_sym_port_token1] = ACTIONS(2492), + [aux_sym_preferred_authentications_token1] = ACTIONS(2492), + [aux_sym_protocol_token1] = ACTIONS(2492), + [aux_sym_proxy_command_token1] = ACTIONS(2492), + [aux_sym_proxy_jump_token1] = ACTIONS(2492), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2492), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2492), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2492), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2492), + [aux_sym_rekey_limit_token1] = ACTIONS(2492), + [aux_sym_remote_command_token1] = ACTIONS(2492), + [aux_sym_remote_forward_token1] = ACTIONS(2492), + [aux_sym_request_tty_token1] = ACTIONS(2492), + [aux_sym_required_rsa_size_token1] = ACTIONS(2492), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2492), + [aux_sym_security_key_provider_token1] = ACTIONS(2492), + [aux_sym_send_env_token1] = ACTIONS(2492), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2492), + [aux_sym_server_alive_interval_token1] = ACTIONS(2492), + [aux_sym_session_type_token1] = ACTIONS(2492), + [aux_sym_set_env_token1] = ACTIONS(2492), + [aux_sym_stdin_null_token1] = ACTIONS(2492), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2492), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2492), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2492), + [aux_sym_syslog_facility_token1] = ACTIONS(2492), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2492), + [aux_sym_keep_alive_token1] = ACTIONS(2492), + [aux_sym_tunnel_token1] = ACTIONS(2494), + [aux_sym_tunnel_device_token1] = ACTIONS(2492), + [aux_sym_update_host_keys_token1] = ACTIONS(2492), + [aux_sym_use_keychain_token1] = ACTIONS(2492), + [aux_sym_use_roaming_token1] = ACTIONS(2492), + [aux_sym_user_token1] = ACTIONS(2494), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2492), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2492), + [aux_sym_visual_host_key_token1] = ACTIONS(2492), + [aux_sym_xauth_location_token1] = ACTIONS(2492), }, [346] = { - [ts_builtin_sym_end] = ACTIONS(2489), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2491), - [anon_sym_DQUOTE] = ACTIONS(2493), - [aux_sym_match_token1] = ACTIONS(2489), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2489), - [aux_sym_address_family_token1] = ACTIONS(2489), - [aux_sym_batch_mode_token1] = ACTIONS(2489), - [aux_sym_bind_address_token1] = ACTIONS(2489), - [aux_sym_bind_interface_token1] = ACTIONS(2489), - [aux_sym_canonical_domains_token1] = ACTIONS(2489), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2489), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2489), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2489), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2489), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2489), - [aux_sym_certificate_file_token1] = ACTIONS(2489), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2489), - [aux_sym_check_host_ip_token1] = ACTIONS(2489), - [aux_sym_ciphers_token1] = ACTIONS(2489), - [aux_sym_cipher_token1] = ACTIONS(2491), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2489), - [aux_sym_compression_token1] = ACTIONS(2489), - [aux_sym_connection_attempts_token1] = ACTIONS(2489), - [aux_sym_connect_timeout_token1] = ACTIONS(2489), - [aux_sym_control_master_token1] = ACTIONS(2489), - [aux_sym_control_path_token1] = ACTIONS(2489), - [aux_sym_control_persist_token1] = ACTIONS(2489), - [aux_sym_dynamic_forward_token1] = ACTIONS(2489), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2489), - [aux_sym_escape_char_token1] = ACTIONS(2489), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2489), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2489), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2489), - [aux_sym_forward_agent_token1] = ACTIONS(2489), - [aux_sym_forward_x11_token1] = ACTIONS(2491), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2489), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2489), - [aux_sym_gateway_ports_token1] = ACTIONS(2489), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2489), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2489), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2489), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2489), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2489), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2489), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2489), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2489), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2489), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2489), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2489), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2489), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2489), - [aux_sym_host_key_alias_token1] = ACTIONS(2489), - [aux_sym_hostname_token1] = ACTIONS(2489), - [aux_sym_identities_only_token1] = ACTIONS(2489), - [aux_sym_identity_agent_token1] = ACTIONS(2489), - [aux_sym_identity_file_token1] = ACTIONS(2489), - [aux_sym_ignore_unknown_token1] = ACTIONS(2489), - [aux_sym_include_token1] = ACTIONS(2489), - [aux_sym_ip_qos_token1] = ACTIONS(2489), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2489), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2489), - [aux_sym_kex_algorithms_token1] = ACTIONS(2489), - [aux_sym_known_hosts_command_token1] = ACTIONS(2489), - [aux_sym_local_command_token1] = ACTIONS(2489), - [aux_sym_local_forward_token1] = ACTIONS(2489), - [aux_sym_log_level_token1] = ACTIONS(2489), - [aux_sym_log_verbose_token1] = ACTIONS(2489), - [aux_sym_macs_token1] = ACTIONS(2489), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2489), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2489), - [aux_sym_password_authentication_token1] = ACTIONS(2489), - [aux_sym_permit_local_command_token1] = ACTIONS(2489), - [aux_sym_permit_remote_open_token1] = ACTIONS(2489), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2489), - [aux_sym_port_token1] = ACTIONS(2489), - [aux_sym_preferred_authentications_token1] = ACTIONS(2489), - [aux_sym_protocol_token1] = ACTIONS(2489), - [aux_sym_proxy_command_token1] = ACTIONS(2489), - [aux_sym_proxy_jump_token1] = ACTIONS(2489), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2489), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2489), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2489), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2489), - [aux_sym_rekey_limit_token1] = ACTIONS(2489), - [aux_sym_remote_command_token1] = ACTIONS(2489), - [aux_sym_remote_forward_token1] = ACTIONS(2489), - [aux_sym_request_tty_token1] = ACTIONS(2489), - [aux_sym_required_rsa_size_token1] = ACTIONS(2489), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2489), - [aux_sym_security_key_provider_token1] = ACTIONS(2489), - [aux_sym_send_env_token1] = ACTIONS(2489), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2489), - [aux_sym_server_alive_interval_token1] = ACTIONS(2489), - [aux_sym_session_type_token1] = ACTIONS(2489), - [aux_sym_set_env_token1] = ACTIONS(2489), - [aux_sym_stdin_null_token1] = ACTIONS(2489), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2489), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2489), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2489), - [aux_sym_syslog_facility_token1] = ACTIONS(2489), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2489), - [aux_sym_keep_alive_token1] = ACTIONS(2489), - [aux_sym_tunnel_token1] = ACTIONS(2491), - [aux_sym_tunnel_device_token1] = ACTIONS(2489), - [aux_sym_update_host_keys_token1] = ACTIONS(2489), - [aux_sym_use_keychain_token1] = ACTIONS(2489), - [aux_sym_use_roaming_token1] = ACTIONS(2489), - [aux_sym_user_token1] = ACTIONS(2491), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2489), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2489), - [aux_sym_visual_host_key_token1] = ACTIONS(2489), - [aux_sym_xauth_location_token1] = ACTIONS(2489), + [ts_builtin_sym_end] = ACTIONS(2498), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2500), + [anon_sym_DQUOTE] = ACTIONS(2498), + [aux_sym_match_token1] = ACTIONS(2498), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2498), + [aux_sym_address_family_token1] = ACTIONS(2498), + [aux_sym_batch_mode_token1] = ACTIONS(2498), + [aux_sym_bind_address_token1] = ACTIONS(2498), + [aux_sym_bind_interface_token1] = ACTIONS(2498), + [aux_sym_canonical_domains_token1] = ACTIONS(2498), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2498), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2498), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2498), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2498), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2498), + [aux_sym_certificate_file_token1] = ACTIONS(2498), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2498), + [aux_sym_check_host_ip_token1] = ACTIONS(2498), + [aux_sym_ciphers_token1] = ACTIONS(2498), + [aux_sym_cipher_token1] = ACTIONS(2500), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2498), + [aux_sym_compression_token1] = ACTIONS(2498), + [aux_sym_connection_attempts_token1] = ACTIONS(2498), + [aux_sym_connect_timeout_token1] = ACTIONS(2498), + [aux_sym_control_master_token1] = ACTIONS(2498), + [aux_sym_control_path_token1] = ACTIONS(2498), + [aux_sym_control_persist_token1] = ACTIONS(2498), + [aux_sym_dynamic_forward_token1] = ACTIONS(2498), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2498), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2498), + [aux_sym_escape_char_token1] = ACTIONS(2498), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2498), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2498), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2498), + [aux_sym_forward_agent_token1] = ACTIONS(2498), + [aux_sym_forward_x11_token1] = ACTIONS(2500), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2498), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2498), + [aux_sym_gateway_ports_token1] = ACTIONS(2498), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2498), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2498), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2498), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2498), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2498), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2498), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2498), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2498), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2498), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2498), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2498), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2498), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2498), + [aux_sym_host_key_alias_token1] = ACTIONS(2498), + [aux_sym_hostname_token1] = ACTIONS(2498), + [aux_sym_identities_only_token1] = ACTIONS(2498), + [aux_sym_identity_agent_token1] = ACTIONS(2498), + [aux_sym_identity_file_token1] = ACTIONS(2498), + [aux_sym_ignore_unknown_token1] = ACTIONS(2498), + [aux_sym_include_token1] = ACTIONS(2498), + [aux_sym_ip_qos_token1] = ACTIONS(2498), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2498), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2498), + [aux_sym_kex_algorithms_token1] = ACTIONS(2498), + [aux_sym_known_hosts_command_token1] = ACTIONS(2498), + [aux_sym_local_command_token1] = ACTIONS(2498), + [aux_sym_local_forward_token1] = ACTIONS(2498), + [aux_sym_log_level_token1] = ACTIONS(2498), + [aux_sym_log_verbose_token1] = ACTIONS(2498), + [aux_sym_macs_token1] = ACTIONS(2498), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2498), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2498), + [aux_sym_password_authentication_token1] = ACTIONS(2498), + [aux_sym_permit_local_command_token1] = ACTIONS(2498), + [aux_sym_permit_remote_open_token1] = ACTIONS(2498), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2498), + [aux_sym_port_token1] = ACTIONS(2498), + [aux_sym_preferred_authentications_token1] = ACTIONS(2498), + [aux_sym_protocol_token1] = ACTIONS(2498), + [aux_sym_proxy_command_token1] = ACTIONS(2498), + [aux_sym_proxy_jump_token1] = ACTIONS(2498), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2498), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2498), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2498), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2498), + [aux_sym_rekey_limit_token1] = ACTIONS(2498), + [aux_sym_remote_command_token1] = ACTIONS(2498), + [aux_sym_remote_forward_token1] = ACTIONS(2498), + [aux_sym_request_tty_token1] = ACTIONS(2498), + [aux_sym_required_rsa_size_token1] = ACTIONS(2498), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2498), + [aux_sym_security_key_provider_token1] = ACTIONS(2498), + [aux_sym_send_env_token1] = ACTIONS(2498), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2498), + [aux_sym_server_alive_interval_token1] = ACTIONS(2498), + [aux_sym_session_type_token1] = ACTIONS(2498), + [aux_sym_set_env_token1] = ACTIONS(2498), + [aux_sym_stdin_null_token1] = ACTIONS(2498), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2498), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2498), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2498), + [aux_sym_syslog_facility_token1] = ACTIONS(2498), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2498), + [aux_sym_keep_alive_token1] = ACTIONS(2498), + [aux_sym_tunnel_token1] = ACTIONS(2500), + [aux_sym_tunnel_device_token1] = ACTIONS(2498), + [aux_sym_update_host_keys_token1] = ACTIONS(2498), + [aux_sym_use_keychain_token1] = ACTIONS(2498), + [aux_sym_use_roaming_token1] = ACTIONS(2498), + [aux_sym_user_token1] = ACTIONS(2500), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2498), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2498), + [aux_sym_visual_host_key_token1] = ACTIONS(2498), + [aux_sym_xauth_location_token1] = ACTIONS(2498), }, [347] = { - [ts_builtin_sym_end] = ACTIONS(2495), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(2499), - [aux_sym_match_token1] = ACTIONS(2495), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2495), - [aux_sym_address_family_token1] = ACTIONS(2495), - [aux_sym_batch_mode_token1] = ACTIONS(2495), - [aux_sym_bind_address_token1] = ACTIONS(2495), - [aux_sym_bind_interface_token1] = ACTIONS(2495), - [aux_sym_canonical_domains_token1] = ACTIONS(2495), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2495), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2495), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2495), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2495), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2495), - [aux_sym_certificate_file_token1] = ACTIONS(2495), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2495), - [aux_sym_check_host_ip_token1] = ACTIONS(2495), - [aux_sym_ciphers_token1] = ACTIONS(2495), - [aux_sym_cipher_token1] = ACTIONS(2497), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2495), - [aux_sym_compression_token1] = ACTIONS(2495), - [aux_sym_connection_attempts_token1] = ACTIONS(2495), - [aux_sym_connect_timeout_token1] = ACTIONS(2495), - [aux_sym_control_master_token1] = ACTIONS(2495), - [aux_sym_control_path_token1] = ACTIONS(2495), - [aux_sym_control_persist_token1] = ACTIONS(2495), - [aux_sym_dynamic_forward_token1] = ACTIONS(2495), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2495), - [aux_sym_escape_char_token1] = ACTIONS(2495), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2495), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2495), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2495), - [aux_sym_forward_agent_token1] = ACTIONS(2495), - [aux_sym_forward_x11_token1] = ACTIONS(2497), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2495), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2495), - [aux_sym_gateway_ports_token1] = ACTIONS(2495), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2495), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2495), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2495), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2495), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2495), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2495), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2495), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2495), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2495), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2495), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2495), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2495), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2495), - [aux_sym_host_key_alias_token1] = ACTIONS(2495), - [aux_sym_hostname_token1] = ACTIONS(2495), - [aux_sym_identities_only_token1] = ACTIONS(2495), - [aux_sym_identity_agent_token1] = ACTIONS(2495), - [aux_sym_identity_file_token1] = ACTIONS(2495), - [aux_sym_ignore_unknown_token1] = ACTIONS(2495), - [aux_sym_include_token1] = ACTIONS(2495), - [aux_sym_ip_qos_token1] = ACTIONS(2495), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2495), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2495), - [aux_sym_kex_algorithms_token1] = ACTIONS(2495), - [aux_sym_known_hosts_command_token1] = ACTIONS(2495), - [aux_sym_local_command_token1] = ACTIONS(2495), - [aux_sym_local_forward_token1] = ACTIONS(2495), - [aux_sym_log_level_token1] = ACTIONS(2495), - [aux_sym_log_verbose_token1] = ACTIONS(2495), - [aux_sym_macs_token1] = ACTIONS(2495), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2495), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2495), - [aux_sym_password_authentication_token1] = ACTIONS(2495), - [aux_sym_permit_local_command_token1] = ACTIONS(2495), - [aux_sym_permit_remote_open_token1] = ACTIONS(2495), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2495), - [aux_sym_port_token1] = ACTIONS(2495), - [aux_sym_preferred_authentications_token1] = ACTIONS(2495), - [aux_sym_protocol_token1] = ACTIONS(2495), - [aux_sym_proxy_command_token1] = ACTIONS(2495), - [aux_sym_proxy_jump_token1] = ACTIONS(2495), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2495), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2495), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2495), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2495), - [aux_sym_rekey_limit_token1] = ACTIONS(2495), - [aux_sym_remote_command_token1] = ACTIONS(2495), - [aux_sym_remote_forward_token1] = ACTIONS(2495), - [aux_sym_request_tty_token1] = ACTIONS(2495), - [aux_sym_required_rsa_size_token1] = ACTIONS(2495), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2495), - [aux_sym_security_key_provider_token1] = ACTIONS(2495), - [aux_sym_send_env_token1] = ACTIONS(2495), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2495), - [aux_sym_server_alive_interval_token1] = ACTIONS(2495), - [aux_sym_session_type_token1] = ACTIONS(2495), - [aux_sym_set_env_token1] = ACTIONS(2495), - [aux_sym_stdin_null_token1] = ACTIONS(2495), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2495), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2495), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2495), - [aux_sym_syslog_facility_token1] = ACTIONS(2495), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2495), - [aux_sym_keep_alive_token1] = ACTIONS(2495), - [aux_sym_tunnel_token1] = ACTIONS(2497), - [aux_sym_tunnel_device_token1] = ACTIONS(2495), - [aux_sym_update_host_keys_token1] = ACTIONS(2495), - [aux_sym_use_keychain_token1] = ACTIONS(2495), - [aux_sym_use_roaming_token1] = ACTIONS(2495), - [aux_sym_user_token1] = ACTIONS(2497), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2495), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2495), - [aux_sym_visual_host_key_token1] = ACTIONS(2495), - [aux_sym_xauth_location_token1] = ACTIONS(2495), + [ts_builtin_sym_end] = ACTIONS(2502), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2504), + [anon_sym_DQUOTE] = ACTIONS(2502), + [aux_sym_match_token1] = ACTIONS(2502), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2502), + [aux_sym_address_family_token1] = ACTIONS(2502), + [aux_sym_batch_mode_token1] = ACTIONS(2502), + [aux_sym_bind_address_token1] = ACTIONS(2502), + [aux_sym_bind_interface_token1] = ACTIONS(2502), + [aux_sym_canonical_domains_token1] = ACTIONS(2502), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2502), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2502), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2502), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2502), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2502), + [aux_sym_certificate_file_token1] = ACTIONS(2502), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2502), + [aux_sym_check_host_ip_token1] = ACTIONS(2502), + [aux_sym_ciphers_token1] = ACTIONS(2502), + [aux_sym_cipher_token1] = ACTIONS(2504), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2502), + [aux_sym_compression_token1] = ACTIONS(2502), + [aux_sym_connection_attempts_token1] = ACTIONS(2502), + [aux_sym_connect_timeout_token1] = ACTIONS(2502), + [aux_sym_control_master_token1] = ACTIONS(2502), + [aux_sym_control_path_token1] = ACTIONS(2502), + [aux_sym_control_persist_token1] = ACTIONS(2502), + [aux_sym_dynamic_forward_token1] = ACTIONS(2502), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2502), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2502), + [aux_sym_escape_char_token1] = ACTIONS(2502), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2502), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2502), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2502), + [aux_sym_forward_agent_token1] = ACTIONS(2502), + [aux_sym_forward_x11_token1] = ACTIONS(2504), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2502), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2502), + [aux_sym_gateway_ports_token1] = ACTIONS(2502), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2502), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2502), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2502), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2502), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2502), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2502), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2502), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2502), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2502), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2502), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2502), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2502), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2502), + [aux_sym_host_key_alias_token1] = ACTIONS(2502), + [aux_sym_hostname_token1] = ACTIONS(2502), + [aux_sym_identities_only_token1] = ACTIONS(2502), + [aux_sym_identity_agent_token1] = ACTIONS(2502), + [aux_sym_identity_file_token1] = ACTIONS(2502), + [aux_sym_ignore_unknown_token1] = ACTIONS(2502), + [aux_sym_include_token1] = ACTIONS(2502), + [aux_sym_ip_qos_token1] = ACTIONS(2502), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2502), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2502), + [aux_sym_kex_algorithms_token1] = ACTIONS(2502), + [aux_sym_known_hosts_command_token1] = ACTIONS(2502), + [aux_sym_local_command_token1] = ACTIONS(2502), + [aux_sym_local_forward_token1] = ACTIONS(2502), + [aux_sym_log_level_token1] = ACTIONS(2502), + [aux_sym_log_verbose_token1] = ACTIONS(2502), + [aux_sym_macs_token1] = ACTIONS(2502), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2502), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2502), + [aux_sym_password_authentication_token1] = ACTIONS(2502), + [aux_sym_permit_local_command_token1] = ACTIONS(2502), + [aux_sym_permit_remote_open_token1] = ACTIONS(2502), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2502), + [aux_sym_port_token1] = ACTIONS(2502), + [aux_sym_preferred_authentications_token1] = ACTIONS(2502), + [aux_sym_protocol_token1] = ACTIONS(2502), + [aux_sym_proxy_command_token1] = ACTIONS(2502), + [aux_sym_proxy_jump_token1] = ACTIONS(2502), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2502), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2502), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2502), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2502), + [aux_sym_rekey_limit_token1] = ACTIONS(2502), + [aux_sym_remote_command_token1] = ACTIONS(2502), + [aux_sym_remote_forward_token1] = ACTIONS(2502), + [aux_sym_request_tty_token1] = ACTIONS(2502), + [aux_sym_required_rsa_size_token1] = ACTIONS(2502), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2502), + [aux_sym_security_key_provider_token1] = ACTIONS(2502), + [aux_sym_send_env_token1] = ACTIONS(2502), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2502), + [aux_sym_server_alive_interval_token1] = ACTIONS(2502), + [aux_sym_session_type_token1] = ACTIONS(2502), + [aux_sym_set_env_token1] = ACTIONS(2502), + [aux_sym_stdin_null_token1] = ACTIONS(2502), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2502), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2502), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2502), + [aux_sym_syslog_facility_token1] = ACTIONS(2502), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2502), + [aux_sym_keep_alive_token1] = ACTIONS(2502), + [aux_sym_tunnel_token1] = ACTIONS(2504), + [aux_sym_tunnel_device_token1] = ACTIONS(2502), + [aux_sym_update_host_keys_token1] = ACTIONS(2502), + [aux_sym_use_keychain_token1] = ACTIONS(2502), + [aux_sym_use_roaming_token1] = ACTIONS(2502), + [aux_sym_user_token1] = ACTIONS(2504), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2502), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2502), + [aux_sym_visual_host_key_token1] = ACTIONS(2502), + [aux_sym_xauth_location_token1] = ACTIONS(2502), }, [348] = { - [ts_builtin_sym_end] = ACTIONS(2501), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2503), - [anon_sym_DQUOTE] = ACTIONS(2501), - [aux_sym_match_token1] = ACTIONS(2501), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2501), - [aux_sym_address_family_token1] = ACTIONS(2501), - [aux_sym_batch_mode_token1] = ACTIONS(2501), - [aux_sym_bind_address_token1] = ACTIONS(2501), - [aux_sym_bind_interface_token1] = ACTIONS(2501), - [aux_sym_canonical_domains_token1] = ACTIONS(2501), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2501), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2501), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2501), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2501), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2501), - [aux_sym_certificate_file_token1] = ACTIONS(2501), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2501), - [aux_sym_check_host_ip_token1] = ACTIONS(2501), - [aux_sym_ciphers_token1] = ACTIONS(2501), - [aux_sym_cipher_token1] = ACTIONS(2503), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2501), - [aux_sym_compression_token1] = ACTIONS(2501), - [aux_sym_connection_attempts_token1] = ACTIONS(2501), - [aux_sym_connect_timeout_token1] = ACTIONS(2501), - [aux_sym_control_master_token1] = ACTIONS(2501), - [aux_sym_control_path_token1] = ACTIONS(2501), - [aux_sym_control_persist_token1] = ACTIONS(2501), - [aux_sym_dynamic_forward_token1] = ACTIONS(2501), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2501), - [aux_sym_escape_char_token1] = ACTIONS(2501), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2501), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2501), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2501), - [aux_sym_forward_agent_token1] = ACTIONS(2501), - [aux_sym_forward_x11_token1] = ACTIONS(2503), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2501), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2501), - [aux_sym_gateway_ports_token1] = ACTIONS(2501), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2501), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2501), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2501), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2501), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2501), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2501), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2501), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2501), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2501), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2501), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2501), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2501), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2501), - [aux_sym_host_key_alias_token1] = ACTIONS(2501), - [aux_sym_hostname_token1] = ACTIONS(2501), - [aux_sym_identities_only_token1] = ACTIONS(2501), - [aux_sym_identity_agent_token1] = ACTIONS(2501), - [aux_sym_identity_file_token1] = ACTIONS(2501), - [aux_sym_ignore_unknown_token1] = ACTIONS(2501), - [aux_sym_include_token1] = ACTIONS(2501), - [aux_sym_ip_qos_token1] = ACTIONS(2501), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2501), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2501), - [aux_sym_kex_algorithms_token1] = ACTIONS(2501), - [aux_sym_known_hosts_command_token1] = ACTIONS(2501), - [aux_sym_local_command_token1] = ACTIONS(2501), - [aux_sym_local_forward_token1] = ACTIONS(2501), - [aux_sym_log_level_token1] = ACTIONS(2501), - [aux_sym_log_verbose_token1] = ACTIONS(2501), - [aux_sym_macs_token1] = ACTIONS(2501), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2501), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2501), - [aux_sym_password_authentication_token1] = ACTIONS(2501), - [aux_sym_permit_local_command_token1] = ACTIONS(2501), - [aux_sym_permit_remote_open_token1] = ACTIONS(2501), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2501), - [aux_sym_port_token1] = ACTIONS(2501), - [aux_sym_preferred_authentications_token1] = ACTIONS(2501), - [aux_sym_protocol_token1] = ACTIONS(2501), - [aux_sym_proxy_command_token1] = ACTIONS(2501), - [aux_sym_proxy_jump_token1] = ACTIONS(2501), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2501), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2501), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2501), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2501), - [aux_sym_rekey_limit_token1] = ACTIONS(2501), - [aux_sym_remote_command_token1] = ACTIONS(2501), - [aux_sym_remote_forward_token1] = ACTIONS(2501), - [aux_sym_request_tty_token1] = ACTIONS(2501), - [aux_sym_required_rsa_size_token1] = ACTIONS(2501), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2501), - [aux_sym_security_key_provider_token1] = ACTIONS(2501), - [aux_sym_send_env_token1] = ACTIONS(2501), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2501), - [aux_sym_server_alive_interval_token1] = ACTIONS(2501), - [aux_sym_session_type_token1] = ACTIONS(2501), - [aux_sym_set_env_token1] = ACTIONS(2501), - [aux_sym_stdin_null_token1] = ACTIONS(2501), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2501), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2501), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2501), - [aux_sym_syslog_facility_token1] = ACTIONS(2501), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2501), - [aux_sym_keep_alive_token1] = ACTIONS(2501), - [aux_sym_tunnel_token1] = ACTIONS(2503), - [aux_sym_tunnel_device_token1] = ACTIONS(2501), - [aux_sym_update_host_keys_token1] = ACTIONS(2501), - [aux_sym_use_keychain_token1] = ACTIONS(2501), - [aux_sym_use_roaming_token1] = ACTIONS(2501), - [aux_sym_user_token1] = ACTIONS(2503), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2501), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2501), - [aux_sym_visual_host_key_token1] = ACTIONS(2501), - [aux_sym_xauth_location_token1] = ACTIONS(2501), + [ts_builtin_sym_end] = ACTIONS(2506), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2508), + [anon_sym_DQUOTE] = ACTIONS(2510), + [aux_sym_match_token1] = ACTIONS(2506), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2506), + [aux_sym_address_family_token1] = ACTIONS(2506), + [aux_sym_batch_mode_token1] = ACTIONS(2506), + [aux_sym_bind_address_token1] = ACTIONS(2506), + [aux_sym_bind_interface_token1] = ACTIONS(2506), + [aux_sym_canonical_domains_token1] = ACTIONS(2506), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2506), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2506), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2506), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2506), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2506), + [aux_sym_certificate_file_token1] = ACTIONS(2506), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2506), + [aux_sym_check_host_ip_token1] = ACTIONS(2506), + [aux_sym_ciphers_token1] = ACTIONS(2506), + [aux_sym_cipher_token1] = ACTIONS(2508), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2506), + [aux_sym_compression_token1] = ACTIONS(2506), + [aux_sym_connection_attempts_token1] = ACTIONS(2506), + [aux_sym_connect_timeout_token1] = ACTIONS(2506), + [aux_sym_control_master_token1] = ACTIONS(2506), + [aux_sym_control_path_token1] = ACTIONS(2506), + [aux_sym_control_persist_token1] = ACTIONS(2506), + [aux_sym_dynamic_forward_token1] = ACTIONS(2506), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2506), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2506), + [aux_sym_escape_char_token1] = ACTIONS(2506), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2506), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2506), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2506), + [aux_sym_forward_agent_token1] = ACTIONS(2506), + [aux_sym_forward_x11_token1] = ACTIONS(2508), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2506), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2506), + [aux_sym_gateway_ports_token1] = ACTIONS(2506), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2506), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2506), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2506), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2506), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2506), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2506), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2506), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2506), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2506), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2506), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2506), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2506), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2506), + [aux_sym_host_key_alias_token1] = ACTIONS(2506), + [aux_sym_hostname_token1] = ACTIONS(2506), + [aux_sym_identities_only_token1] = ACTIONS(2506), + [aux_sym_identity_agent_token1] = ACTIONS(2506), + [aux_sym_identity_file_token1] = ACTIONS(2506), + [aux_sym_ignore_unknown_token1] = ACTIONS(2506), + [aux_sym_include_token1] = ACTIONS(2506), + [aux_sym_ip_qos_token1] = ACTIONS(2506), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2506), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2506), + [aux_sym_kex_algorithms_token1] = ACTIONS(2506), + [aux_sym_known_hosts_command_token1] = ACTIONS(2506), + [aux_sym_local_command_token1] = ACTIONS(2506), + [aux_sym_local_forward_token1] = ACTIONS(2506), + [aux_sym_log_level_token1] = ACTIONS(2506), + [aux_sym_log_verbose_token1] = ACTIONS(2506), + [aux_sym_macs_token1] = ACTIONS(2506), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2506), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2506), + [aux_sym_password_authentication_token1] = ACTIONS(2506), + [aux_sym_permit_local_command_token1] = ACTIONS(2506), + [aux_sym_permit_remote_open_token1] = ACTIONS(2506), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2506), + [aux_sym_port_token1] = ACTIONS(2506), + [aux_sym_preferred_authentications_token1] = ACTIONS(2506), + [aux_sym_protocol_token1] = ACTIONS(2506), + [aux_sym_proxy_command_token1] = ACTIONS(2506), + [aux_sym_proxy_jump_token1] = ACTIONS(2506), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2506), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2506), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2506), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2506), + [aux_sym_rekey_limit_token1] = ACTIONS(2506), + [aux_sym_remote_command_token1] = ACTIONS(2506), + [aux_sym_remote_forward_token1] = ACTIONS(2506), + [aux_sym_request_tty_token1] = ACTIONS(2506), + [aux_sym_required_rsa_size_token1] = ACTIONS(2506), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2506), + [aux_sym_security_key_provider_token1] = ACTIONS(2506), + [aux_sym_send_env_token1] = ACTIONS(2506), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2506), + [aux_sym_server_alive_interval_token1] = ACTIONS(2506), + [aux_sym_session_type_token1] = ACTIONS(2506), + [aux_sym_set_env_token1] = ACTIONS(2506), + [aux_sym_stdin_null_token1] = ACTIONS(2506), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2506), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2506), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2506), + [aux_sym_syslog_facility_token1] = ACTIONS(2506), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2506), + [aux_sym_keep_alive_token1] = ACTIONS(2506), + [aux_sym_tunnel_token1] = ACTIONS(2508), + [aux_sym_tunnel_device_token1] = ACTIONS(2506), + [aux_sym_update_host_keys_token1] = ACTIONS(2506), + [aux_sym_use_keychain_token1] = ACTIONS(2506), + [aux_sym_use_roaming_token1] = ACTIONS(2506), + [aux_sym_user_token1] = ACTIONS(2508), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2506), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2506), + [aux_sym_visual_host_key_token1] = ACTIONS(2506), + [aux_sym_xauth_location_token1] = ACTIONS(2506), }, [349] = { - [ts_builtin_sym_end] = ACTIONS(2505), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2507), - [anon_sym_DQUOTE] = ACTIONS(2505), - [aux_sym_match_token1] = ACTIONS(2505), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2505), - [aux_sym_address_family_token1] = ACTIONS(2505), - [aux_sym_batch_mode_token1] = ACTIONS(2505), - [aux_sym_bind_address_token1] = ACTIONS(2505), - [aux_sym_bind_interface_token1] = ACTIONS(2505), - [aux_sym_canonical_domains_token1] = ACTIONS(2505), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2505), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2505), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2505), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2505), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2505), - [aux_sym_certificate_file_token1] = ACTIONS(2505), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2505), - [aux_sym_check_host_ip_token1] = ACTIONS(2505), - [aux_sym_ciphers_token1] = ACTIONS(2505), - [aux_sym_cipher_token1] = ACTIONS(2507), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2505), - [aux_sym_compression_token1] = ACTIONS(2505), - [aux_sym_connection_attempts_token1] = ACTIONS(2505), - [aux_sym_connect_timeout_token1] = ACTIONS(2505), - [aux_sym_control_master_token1] = ACTIONS(2505), - [aux_sym_control_path_token1] = ACTIONS(2505), - [aux_sym_control_persist_token1] = ACTIONS(2505), - [aux_sym_dynamic_forward_token1] = ACTIONS(2505), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2505), - [aux_sym_escape_char_token1] = ACTIONS(2505), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2505), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2505), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2505), - [aux_sym_forward_agent_token1] = ACTIONS(2505), - [aux_sym_forward_x11_token1] = ACTIONS(2507), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2505), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2505), - [aux_sym_gateway_ports_token1] = ACTIONS(2505), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2505), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2505), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2505), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2505), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2505), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2505), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2505), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2505), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2505), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2505), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2505), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2505), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2505), - [aux_sym_host_key_alias_token1] = ACTIONS(2505), - [aux_sym_hostname_token1] = ACTIONS(2505), - [aux_sym_identities_only_token1] = ACTIONS(2505), - [aux_sym_identity_agent_token1] = ACTIONS(2505), - [aux_sym_identity_file_token1] = ACTIONS(2505), - [aux_sym_ignore_unknown_token1] = ACTIONS(2505), - [aux_sym_include_token1] = ACTIONS(2505), - [aux_sym_ip_qos_token1] = ACTIONS(2505), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2505), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2505), - [aux_sym_kex_algorithms_token1] = ACTIONS(2505), - [aux_sym_known_hosts_command_token1] = ACTIONS(2505), - [aux_sym_local_command_token1] = ACTIONS(2505), - [aux_sym_local_forward_token1] = ACTIONS(2505), - [aux_sym_log_level_token1] = ACTIONS(2505), - [aux_sym_log_verbose_token1] = ACTIONS(2505), - [aux_sym_macs_token1] = ACTIONS(2505), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2505), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2505), - [aux_sym_password_authentication_token1] = ACTIONS(2505), - [aux_sym_permit_local_command_token1] = ACTIONS(2505), - [aux_sym_permit_remote_open_token1] = ACTIONS(2505), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2505), - [aux_sym_port_token1] = ACTIONS(2505), - [aux_sym_preferred_authentications_token1] = ACTIONS(2505), - [aux_sym_protocol_token1] = ACTIONS(2505), - [aux_sym_proxy_command_token1] = ACTIONS(2505), - [aux_sym_proxy_jump_token1] = ACTIONS(2505), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2505), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2505), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2505), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2505), - [aux_sym_rekey_limit_token1] = ACTIONS(2505), - [aux_sym_remote_command_token1] = ACTIONS(2505), - [aux_sym_remote_forward_token1] = ACTIONS(2505), - [aux_sym_request_tty_token1] = ACTIONS(2505), - [aux_sym_required_rsa_size_token1] = ACTIONS(2505), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2505), - [aux_sym_security_key_provider_token1] = ACTIONS(2505), - [aux_sym_send_env_token1] = ACTIONS(2505), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2505), - [aux_sym_server_alive_interval_token1] = ACTIONS(2505), - [aux_sym_session_type_token1] = ACTIONS(2505), - [aux_sym_set_env_token1] = ACTIONS(2505), - [aux_sym_stdin_null_token1] = ACTIONS(2505), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2505), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2505), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2505), - [aux_sym_syslog_facility_token1] = ACTIONS(2505), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2505), - [aux_sym_keep_alive_token1] = ACTIONS(2505), - [aux_sym_tunnel_token1] = ACTIONS(2507), - [aux_sym_tunnel_device_token1] = ACTIONS(2505), - [aux_sym_update_host_keys_token1] = ACTIONS(2505), - [aux_sym_use_keychain_token1] = ACTIONS(2505), - [aux_sym_use_roaming_token1] = ACTIONS(2505), - [aux_sym_user_token1] = ACTIONS(2507), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2505), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2505), - [aux_sym_visual_host_key_token1] = ACTIONS(2505), - [aux_sym_xauth_location_token1] = ACTIONS(2505), + [ts_builtin_sym_end] = ACTIONS(2512), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2514), + [anon_sym_DQUOTE] = ACTIONS(2516), + [aux_sym_match_token1] = ACTIONS(2512), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2512), + [aux_sym_address_family_token1] = ACTIONS(2512), + [aux_sym_batch_mode_token1] = ACTIONS(2512), + [aux_sym_bind_address_token1] = ACTIONS(2512), + [aux_sym_bind_interface_token1] = ACTIONS(2512), + [aux_sym_canonical_domains_token1] = ACTIONS(2512), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2512), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2512), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2512), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2512), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2512), + [aux_sym_certificate_file_token1] = ACTIONS(2512), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2512), + [aux_sym_check_host_ip_token1] = ACTIONS(2512), + [aux_sym_ciphers_token1] = ACTIONS(2512), + [aux_sym_cipher_token1] = ACTIONS(2514), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2512), + [aux_sym_compression_token1] = ACTIONS(2512), + [aux_sym_connection_attempts_token1] = ACTIONS(2512), + [aux_sym_connect_timeout_token1] = ACTIONS(2512), + [aux_sym_control_master_token1] = ACTIONS(2512), + [aux_sym_control_path_token1] = ACTIONS(2512), + [aux_sym_control_persist_token1] = ACTIONS(2512), + [aux_sym_dynamic_forward_token1] = ACTIONS(2512), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2512), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2512), + [aux_sym_escape_char_token1] = ACTIONS(2512), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2512), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2512), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2512), + [aux_sym_forward_agent_token1] = ACTIONS(2512), + [aux_sym_forward_x11_token1] = ACTIONS(2514), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2512), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2512), + [aux_sym_gateway_ports_token1] = ACTIONS(2512), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2512), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2512), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2512), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2512), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2512), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2512), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2512), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2512), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2512), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2512), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2512), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2512), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2512), + [aux_sym_host_key_alias_token1] = ACTIONS(2512), + [aux_sym_hostname_token1] = ACTIONS(2512), + [aux_sym_identities_only_token1] = ACTIONS(2512), + [aux_sym_identity_agent_token1] = ACTIONS(2512), + [aux_sym_identity_file_token1] = ACTIONS(2512), + [aux_sym_ignore_unknown_token1] = ACTIONS(2512), + [aux_sym_include_token1] = ACTIONS(2512), + [aux_sym_ip_qos_token1] = ACTIONS(2512), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2512), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2512), + [aux_sym_kex_algorithms_token1] = ACTIONS(2512), + [aux_sym_known_hosts_command_token1] = ACTIONS(2512), + [aux_sym_local_command_token1] = ACTIONS(2512), + [aux_sym_local_forward_token1] = ACTIONS(2512), + [aux_sym_log_level_token1] = ACTIONS(2512), + [aux_sym_log_verbose_token1] = ACTIONS(2512), + [aux_sym_macs_token1] = ACTIONS(2512), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2512), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2512), + [aux_sym_password_authentication_token1] = ACTIONS(2512), + [aux_sym_permit_local_command_token1] = ACTIONS(2512), + [aux_sym_permit_remote_open_token1] = ACTIONS(2512), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2512), + [aux_sym_port_token1] = ACTIONS(2512), + [aux_sym_preferred_authentications_token1] = ACTIONS(2512), + [aux_sym_protocol_token1] = ACTIONS(2512), + [aux_sym_proxy_command_token1] = ACTIONS(2512), + [aux_sym_proxy_jump_token1] = ACTIONS(2512), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2512), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2512), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2512), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2512), + [aux_sym_rekey_limit_token1] = ACTIONS(2512), + [aux_sym_remote_command_token1] = ACTIONS(2512), + [aux_sym_remote_forward_token1] = ACTIONS(2512), + [aux_sym_request_tty_token1] = ACTIONS(2512), + [aux_sym_required_rsa_size_token1] = ACTIONS(2512), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2512), + [aux_sym_security_key_provider_token1] = ACTIONS(2512), + [aux_sym_send_env_token1] = ACTIONS(2512), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2512), + [aux_sym_server_alive_interval_token1] = ACTIONS(2512), + [aux_sym_session_type_token1] = ACTIONS(2512), + [aux_sym_set_env_token1] = ACTIONS(2512), + [aux_sym_stdin_null_token1] = ACTIONS(2512), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2512), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2512), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2512), + [aux_sym_syslog_facility_token1] = ACTIONS(2512), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2512), + [aux_sym_keep_alive_token1] = ACTIONS(2512), + [aux_sym_tunnel_token1] = ACTIONS(2514), + [aux_sym_tunnel_device_token1] = ACTIONS(2512), + [aux_sym_update_host_keys_token1] = ACTIONS(2512), + [aux_sym_use_keychain_token1] = ACTIONS(2512), + [aux_sym_use_roaming_token1] = ACTIONS(2512), + [aux_sym_user_token1] = ACTIONS(2514), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2512), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2512), + [aux_sym_visual_host_key_token1] = ACTIONS(2512), + [aux_sym_xauth_location_token1] = ACTIONS(2512), }, [350] = { - [ts_builtin_sym_end] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2511), - [anon_sym_DQUOTE] = ACTIONS(2513), - [aux_sym_match_token1] = ACTIONS(2509), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2509), - [aux_sym_address_family_token1] = ACTIONS(2509), - [aux_sym_batch_mode_token1] = ACTIONS(2509), - [aux_sym_bind_address_token1] = ACTIONS(2509), - [aux_sym_bind_interface_token1] = ACTIONS(2509), - [aux_sym_canonical_domains_token1] = ACTIONS(2509), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2509), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2509), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2509), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2509), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2509), - [aux_sym_certificate_file_token1] = ACTIONS(2509), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2509), - [aux_sym_check_host_ip_token1] = ACTIONS(2509), - [aux_sym_ciphers_token1] = ACTIONS(2509), - [aux_sym_cipher_token1] = ACTIONS(2511), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2509), - [aux_sym_compression_token1] = ACTIONS(2509), - [aux_sym_connection_attempts_token1] = ACTIONS(2509), - [aux_sym_connect_timeout_token1] = ACTIONS(2509), - [aux_sym_control_master_token1] = ACTIONS(2509), - [aux_sym_control_path_token1] = ACTIONS(2509), - [aux_sym_control_persist_token1] = ACTIONS(2509), - [aux_sym_dynamic_forward_token1] = ACTIONS(2509), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2509), - [aux_sym_escape_char_token1] = ACTIONS(2509), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2509), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2509), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2509), - [aux_sym_forward_agent_token1] = ACTIONS(2509), - [aux_sym_forward_x11_token1] = ACTIONS(2511), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2509), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2509), - [aux_sym_gateway_ports_token1] = ACTIONS(2509), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2509), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2509), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2509), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2509), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2509), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2509), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2509), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2509), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2509), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2509), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2509), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2509), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2509), - [aux_sym_host_key_alias_token1] = ACTIONS(2509), - [aux_sym_hostname_token1] = ACTIONS(2509), - [aux_sym_identities_only_token1] = ACTIONS(2509), - [aux_sym_identity_agent_token1] = ACTIONS(2509), - [aux_sym_identity_file_token1] = ACTIONS(2509), - [aux_sym_ignore_unknown_token1] = ACTIONS(2509), - [aux_sym_include_token1] = ACTIONS(2509), - [aux_sym_ip_qos_token1] = ACTIONS(2509), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2509), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2509), - [aux_sym_kex_algorithms_token1] = ACTIONS(2509), - [aux_sym_known_hosts_command_token1] = ACTIONS(2509), - [aux_sym_local_command_token1] = ACTIONS(2509), - [aux_sym_local_forward_token1] = ACTIONS(2509), - [aux_sym_log_level_token1] = ACTIONS(2509), - [aux_sym_log_verbose_token1] = ACTIONS(2509), - [aux_sym_macs_token1] = ACTIONS(2509), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2509), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2509), - [aux_sym_password_authentication_token1] = ACTIONS(2509), - [aux_sym_permit_local_command_token1] = ACTIONS(2509), - [aux_sym_permit_remote_open_token1] = ACTIONS(2509), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2509), - [aux_sym_port_token1] = ACTIONS(2509), - [aux_sym_preferred_authentications_token1] = ACTIONS(2509), - [aux_sym_protocol_token1] = ACTIONS(2509), - [aux_sym_proxy_command_token1] = ACTIONS(2509), - [aux_sym_proxy_jump_token1] = ACTIONS(2509), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2509), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2509), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2509), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2509), - [aux_sym_rekey_limit_token1] = ACTIONS(2509), - [aux_sym_remote_command_token1] = ACTIONS(2509), - [aux_sym_remote_forward_token1] = ACTIONS(2509), - [aux_sym_request_tty_token1] = ACTIONS(2509), - [aux_sym_required_rsa_size_token1] = ACTIONS(2509), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2509), - [aux_sym_security_key_provider_token1] = ACTIONS(2509), - [aux_sym_send_env_token1] = ACTIONS(2509), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2509), - [aux_sym_server_alive_interval_token1] = ACTIONS(2509), - [aux_sym_session_type_token1] = ACTIONS(2509), - [aux_sym_set_env_token1] = ACTIONS(2509), - [aux_sym_stdin_null_token1] = ACTIONS(2509), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2509), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2509), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2509), - [aux_sym_syslog_facility_token1] = ACTIONS(2509), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2509), - [aux_sym_keep_alive_token1] = ACTIONS(2509), - [aux_sym_tunnel_token1] = ACTIONS(2511), - [aux_sym_tunnel_device_token1] = ACTIONS(2509), - [aux_sym_update_host_keys_token1] = ACTIONS(2509), - [aux_sym_use_keychain_token1] = ACTIONS(2509), - [aux_sym_use_roaming_token1] = ACTIONS(2509), - [aux_sym_user_token1] = ACTIONS(2511), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2509), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2509), - [aux_sym_visual_host_key_token1] = ACTIONS(2509), - [aux_sym_xauth_location_token1] = ACTIONS(2509), + [ts_builtin_sym_end] = ACTIONS(2518), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2520), + [anon_sym_DQUOTE] = ACTIONS(2518), + [aux_sym_match_token1] = ACTIONS(2518), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2518), + [aux_sym_address_family_token1] = ACTIONS(2518), + [aux_sym_batch_mode_token1] = ACTIONS(2518), + [aux_sym_bind_address_token1] = ACTIONS(2518), + [aux_sym_bind_interface_token1] = ACTIONS(2518), + [aux_sym_canonical_domains_token1] = ACTIONS(2518), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2518), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2518), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2518), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2518), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2518), + [aux_sym_certificate_file_token1] = ACTIONS(2518), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2518), + [aux_sym_check_host_ip_token1] = ACTIONS(2518), + [aux_sym_ciphers_token1] = ACTIONS(2518), + [aux_sym_cipher_token1] = ACTIONS(2520), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2518), + [aux_sym_compression_token1] = ACTIONS(2518), + [aux_sym_connection_attempts_token1] = ACTIONS(2518), + [aux_sym_connect_timeout_token1] = ACTIONS(2518), + [aux_sym_control_master_token1] = ACTIONS(2518), + [aux_sym_control_path_token1] = ACTIONS(2518), + [aux_sym_control_persist_token1] = ACTIONS(2518), + [aux_sym_dynamic_forward_token1] = ACTIONS(2518), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2518), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2518), + [aux_sym_escape_char_token1] = ACTIONS(2518), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2518), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2518), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2518), + [aux_sym_forward_agent_token1] = ACTIONS(2518), + [aux_sym_forward_x11_token1] = ACTIONS(2520), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2518), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2518), + [aux_sym_gateway_ports_token1] = ACTIONS(2518), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2518), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2518), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2518), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2518), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2518), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2518), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2518), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2518), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2518), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2518), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2518), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2518), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2518), + [aux_sym_host_key_alias_token1] = ACTIONS(2518), + [aux_sym_hostname_token1] = ACTIONS(2518), + [aux_sym_identities_only_token1] = ACTIONS(2518), + [aux_sym_identity_agent_token1] = ACTIONS(2518), + [aux_sym_identity_file_token1] = ACTIONS(2518), + [aux_sym_ignore_unknown_token1] = ACTIONS(2518), + [aux_sym_include_token1] = ACTIONS(2518), + [aux_sym_ip_qos_token1] = ACTIONS(2518), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2518), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2518), + [aux_sym_kex_algorithms_token1] = ACTIONS(2518), + [aux_sym_known_hosts_command_token1] = ACTIONS(2518), + [aux_sym_local_command_token1] = ACTIONS(2518), + [aux_sym_local_forward_token1] = ACTIONS(2518), + [aux_sym_log_level_token1] = ACTIONS(2518), + [aux_sym_log_verbose_token1] = ACTIONS(2518), + [aux_sym_macs_token1] = ACTIONS(2518), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2518), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2518), + [aux_sym_password_authentication_token1] = ACTIONS(2518), + [aux_sym_permit_local_command_token1] = ACTIONS(2518), + [aux_sym_permit_remote_open_token1] = ACTIONS(2518), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2518), + [aux_sym_port_token1] = ACTIONS(2518), + [aux_sym_preferred_authentications_token1] = ACTIONS(2518), + [aux_sym_protocol_token1] = ACTIONS(2518), + [aux_sym_proxy_command_token1] = ACTIONS(2518), + [aux_sym_proxy_jump_token1] = ACTIONS(2518), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2518), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2518), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2518), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2518), + [aux_sym_rekey_limit_token1] = ACTIONS(2518), + [aux_sym_remote_command_token1] = ACTIONS(2518), + [aux_sym_remote_forward_token1] = ACTIONS(2518), + [aux_sym_request_tty_token1] = ACTIONS(2518), + [aux_sym_required_rsa_size_token1] = ACTIONS(2518), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2518), + [aux_sym_security_key_provider_token1] = ACTIONS(2518), + [aux_sym_send_env_token1] = ACTIONS(2518), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2518), + [aux_sym_server_alive_interval_token1] = ACTIONS(2518), + [aux_sym_session_type_token1] = ACTIONS(2518), + [aux_sym_set_env_token1] = ACTIONS(2518), + [aux_sym_stdin_null_token1] = ACTIONS(2518), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2518), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2518), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2518), + [aux_sym_syslog_facility_token1] = ACTIONS(2518), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2518), + [aux_sym_keep_alive_token1] = ACTIONS(2518), + [aux_sym_tunnel_token1] = ACTIONS(2520), + [aux_sym_tunnel_device_token1] = ACTIONS(2518), + [aux_sym_update_host_keys_token1] = ACTIONS(2518), + [aux_sym_use_keychain_token1] = ACTIONS(2518), + [aux_sym_use_roaming_token1] = ACTIONS(2518), + [aux_sym_user_token1] = ACTIONS(2520), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2518), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2518), + [aux_sym_visual_host_key_token1] = ACTIONS(2518), + [aux_sym_xauth_location_token1] = ACTIONS(2518), }, [351] = { - [ts_builtin_sym_end] = ACTIONS(2515), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2515), - [aux_sym_match_token1] = ACTIONS(2515), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2515), - [aux_sym_address_family_token1] = ACTIONS(2515), - [aux_sym_batch_mode_token1] = ACTIONS(2515), - [aux_sym_bind_address_token1] = ACTIONS(2515), - [aux_sym_bind_interface_token1] = ACTIONS(2515), - [aux_sym_canonical_domains_token1] = ACTIONS(2515), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2515), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2515), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2515), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2515), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2515), - [aux_sym_certificate_file_token1] = ACTIONS(2515), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2515), - [aux_sym_check_host_ip_token1] = ACTIONS(2515), - [aux_sym_ciphers_token1] = ACTIONS(2515), - [aux_sym_cipher_token1] = ACTIONS(2517), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2515), - [aux_sym_compression_token1] = ACTIONS(2515), - [aux_sym_connection_attempts_token1] = ACTIONS(2515), - [aux_sym_connect_timeout_token1] = ACTIONS(2515), - [aux_sym_control_master_token1] = ACTIONS(2515), - [aux_sym_control_path_token1] = ACTIONS(2515), - [aux_sym_control_persist_token1] = ACTIONS(2515), - [aux_sym_dynamic_forward_token1] = ACTIONS(2515), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2515), - [aux_sym_escape_char_token1] = ACTIONS(2515), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2515), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2515), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2515), - [aux_sym_forward_agent_token1] = ACTIONS(2515), - [aux_sym_forward_x11_token1] = ACTIONS(2517), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2515), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2515), - [aux_sym_gateway_ports_token1] = ACTIONS(2515), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2515), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2515), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2515), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2515), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2515), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2515), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2515), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2515), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2515), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2515), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2515), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2515), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2515), - [aux_sym_host_key_alias_token1] = ACTIONS(2515), - [aux_sym_hostname_token1] = ACTIONS(2515), - [aux_sym_identities_only_token1] = ACTIONS(2515), - [aux_sym_identity_agent_token1] = ACTIONS(2515), - [aux_sym_identity_file_token1] = ACTIONS(2515), - [aux_sym_ignore_unknown_token1] = ACTIONS(2515), - [aux_sym_include_token1] = ACTIONS(2515), - [aux_sym_ip_qos_token1] = ACTIONS(2515), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2515), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2515), - [aux_sym_kex_algorithms_token1] = ACTIONS(2515), - [aux_sym_known_hosts_command_token1] = ACTIONS(2515), - [aux_sym_local_command_token1] = ACTIONS(2515), - [aux_sym_local_forward_token1] = ACTIONS(2515), - [aux_sym_log_level_token1] = ACTIONS(2515), - [aux_sym_log_verbose_token1] = ACTIONS(2515), - [aux_sym_macs_token1] = ACTIONS(2515), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2515), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2515), - [aux_sym_password_authentication_token1] = ACTIONS(2515), - [aux_sym_permit_local_command_token1] = ACTIONS(2515), - [aux_sym_permit_remote_open_token1] = ACTIONS(2515), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2515), - [aux_sym_port_token1] = ACTIONS(2515), - [aux_sym_preferred_authentications_token1] = ACTIONS(2515), - [aux_sym_protocol_token1] = ACTIONS(2515), - [aux_sym_proxy_command_token1] = ACTIONS(2515), - [aux_sym_proxy_jump_token1] = ACTIONS(2515), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2515), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2515), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2515), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2515), - [aux_sym_rekey_limit_token1] = ACTIONS(2515), - [aux_sym_remote_command_token1] = ACTIONS(2515), - [aux_sym_remote_forward_token1] = ACTIONS(2515), - [aux_sym_request_tty_token1] = ACTIONS(2515), - [aux_sym_required_rsa_size_token1] = ACTIONS(2515), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2515), - [aux_sym_security_key_provider_token1] = ACTIONS(2515), - [aux_sym_send_env_token1] = ACTIONS(2515), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2515), - [aux_sym_server_alive_interval_token1] = ACTIONS(2515), - [aux_sym_session_type_token1] = ACTIONS(2515), - [aux_sym_set_env_token1] = ACTIONS(2515), - [aux_sym_stdin_null_token1] = ACTIONS(2515), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2515), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2515), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2515), - [aux_sym_syslog_facility_token1] = ACTIONS(2515), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2515), - [aux_sym_keep_alive_token1] = ACTIONS(2515), - [aux_sym_tunnel_token1] = ACTIONS(2517), - [aux_sym_tunnel_device_token1] = ACTIONS(2515), - [aux_sym_update_host_keys_token1] = ACTIONS(2515), - [aux_sym_use_keychain_token1] = ACTIONS(2515), - [aux_sym_use_roaming_token1] = ACTIONS(2515), - [aux_sym_user_token1] = ACTIONS(2517), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2515), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2515), - [aux_sym_visual_host_key_token1] = ACTIONS(2515), - [aux_sym_xauth_location_token1] = ACTIONS(2515), + [ts_builtin_sym_end] = ACTIONS(2522), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2524), + [anon_sym_DQUOTE] = ACTIONS(2522), + [aux_sym_match_token1] = ACTIONS(2522), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2522), + [aux_sym_address_family_token1] = ACTIONS(2522), + [aux_sym_batch_mode_token1] = ACTIONS(2522), + [aux_sym_bind_address_token1] = ACTIONS(2522), + [aux_sym_bind_interface_token1] = ACTIONS(2522), + [aux_sym_canonical_domains_token1] = ACTIONS(2522), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2522), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2522), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2522), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2522), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2522), + [aux_sym_certificate_file_token1] = ACTIONS(2522), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2522), + [aux_sym_check_host_ip_token1] = ACTIONS(2522), + [aux_sym_ciphers_token1] = ACTIONS(2522), + [aux_sym_cipher_token1] = ACTIONS(2524), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2522), + [aux_sym_compression_token1] = ACTIONS(2522), + [aux_sym_connection_attempts_token1] = ACTIONS(2522), + [aux_sym_connect_timeout_token1] = ACTIONS(2522), + [aux_sym_control_master_token1] = ACTIONS(2522), + [aux_sym_control_path_token1] = ACTIONS(2522), + [aux_sym_control_persist_token1] = ACTIONS(2522), + [aux_sym_dynamic_forward_token1] = ACTIONS(2522), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2522), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2522), + [aux_sym_escape_char_token1] = ACTIONS(2522), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2522), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2522), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2522), + [aux_sym_forward_agent_token1] = ACTIONS(2522), + [aux_sym_forward_x11_token1] = ACTIONS(2524), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2522), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2522), + [aux_sym_gateway_ports_token1] = ACTIONS(2522), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2522), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2522), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2522), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2522), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2522), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2522), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2522), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2522), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2522), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2522), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2522), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2522), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2522), + [aux_sym_host_key_alias_token1] = ACTIONS(2522), + [aux_sym_hostname_token1] = ACTIONS(2522), + [aux_sym_identities_only_token1] = ACTIONS(2522), + [aux_sym_identity_agent_token1] = ACTIONS(2522), + [aux_sym_identity_file_token1] = ACTIONS(2522), + [aux_sym_ignore_unknown_token1] = ACTIONS(2522), + [aux_sym_include_token1] = ACTIONS(2522), + [aux_sym_ip_qos_token1] = ACTIONS(2522), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2522), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2522), + [aux_sym_kex_algorithms_token1] = ACTIONS(2522), + [aux_sym_known_hosts_command_token1] = ACTIONS(2522), + [aux_sym_local_command_token1] = ACTIONS(2522), + [aux_sym_local_forward_token1] = ACTIONS(2522), + [aux_sym_log_level_token1] = ACTIONS(2522), + [aux_sym_log_verbose_token1] = ACTIONS(2522), + [aux_sym_macs_token1] = ACTIONS(2522), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2522), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2522), + [aux_sym_password_authentication_token1] = ACTIONS(2522), + [aux_sym_permit_local_command_token1] = ACTIONS(2522), + [aux_sym_permit_remote_open_token1] = ACTIONS(2522), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2522), + [aux_sym_port_token1] = ACTIONS(2522), + [aux_sym_preferred_authentications_token1] = ACTIONS(2522), + [aux_sym_protocol_token1] = ACTIONS(2522), + [aux_sym_proxy_command_token1] = ACTIONS(2522), + [aux_sym_proxy_jump_token1] = ACTIONS(2522), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2522), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2522), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2522), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2522), + [aux_sym_rekey_limit_token1] = ACTIONS(2522), + [aux_sym_remote_command_token1] = ACTIONS(2522), + [aux_sym_remote_forward_token1] = ACTIONS(2522), + [aux_sym_request_tty_token1] = ACTIONS(2522), + [aux_sym_required_rsa_size_token1] = ACTIONS(2522), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2522), + [aux_sym_security_key_provider_token1] = ACTIONS(2522), + [aux_sym_send_env_token1] = ACTIONS(2522), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2522), + [aux_sym_server_alive_interval_token1] = ACTIONS(2522), + [aux_sym_session_type_token1] = ACTIONS(2522), + [aux_sym_set_env_token1] = ACTIONS(2522), + [aux_sym_stdin_null_token1] = ACTIONS(2522), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2522), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2522), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2522), + [aux_sym_syslog_facility_token1] = ACTIONS(2522), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2522), + [aux_sym_keep_alive_token1] = ACTIONS(2522), + [aux_sym_tunnel_token1] = ACTIONS(2524), + [aux_sym_tunnel_device_token1] = ACTIONS(2522), + [aux_sym_update_host_keys_token1] = ACTIONS(2522), + [aux_sym_use_keychain_token1] = ACTIONS(2522), + [aux_sym_use_roaming_token1] = ACTIONS(2522), + [aux_sym_user_token1] = ACTIONS(2524), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2522), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2522), + [aux_sym_visual_host_key_token1] = ACTIONS(2522), + [aux_sym_xauth_location_token1] = ACTIONS(2522), }, [352] = { - [ts_builtin_sym_end] = ACTIONS(2519), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2521), - [anon_sym_DQUOTE] = ACTIONS(2523), - [aux_sym_match_token1] = ACTIONS(2519), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2519), - [aux_sym_address_family_token1] = ACTIONS(2519), - [aux_sym_batch_mode_token1] = ACTIONS(2519), - [aux_sym_bind_address_token1] = ACTIONS(2519), - [aux_sym_bind_interface_token1] = ACTIONS(2519), - [aux_sym_canonical_domains_token1] = ACTIONS(2519), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2519), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2519), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2519), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2519), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2519), - [aux_sym_certificate_file_token1] = ACTIONS(2519), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2519), - [aux_sym_check_host_ip_token1] = ACTIONS(2519), - [aux_sym_ciphers_token1] = ACTIONS(2519), - [aux_sym_cipher_token1] = ACTIONS(2521), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2519), - [aux_sym_compression_token1] = ACTIONS(2519), - [aux_sym_connection_attempts_token1] = ACTIONS(2519), - [aux_sym_connect_timeout_token1] = ACTIONS(2519), - [aux_sym_control_master_token1] = ACTIONS(2519), - [aux_sym_control_path_token1] = ACTIONS(2519), - [aux_sym_control_persist_token1] = ACTIONS(2519), - [aux_sym_dynamic_forward_token1] = ACTIONS(2519), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2519), - [aux_sym_escape_char_token1] = ACTIONS(2519), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2519), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2519), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2519), - [aux_sym_forward_agent_token1] = ACTIONS(2519), - [aux_sym_forward_x11_token1] = ACTIONS(2521), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2519), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2519), - [aux_sym_gateway_ports_token1] = ACTIONS(2519), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2519), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2519), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2519), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2519), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2519), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2519), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2519), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2519), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2519), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2519), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2519), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2519), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2519), - [aux_sym_host_key_alias_token1] = ACTIONS(2519), - [aux_sym_hostname_token1] = ACTIONS(2519), - [aux_sym_identities_only_token1] = ACTIONS(2519), - [aux_sym_identity_agent_token1] = ACTIONS(2519), - [aux_sym_identity_file_token1] = ACTIONS(2519), - [aux_sym_ignore_unknown_token1] = ACTIONS(2519), - [aux_sym_include_token1] = ACTIONS(2519), - [aux_sym_ip_qos_token1] = ACTIONS(2519), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2519), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2519), - [aux_sym_kex_algorithms_token1] = ACTIONS(2519), - [aux_sym_known_hosts_command_token1] = ACTIONS(2519), - [aux_sym_local_command_token1] = ACTIONS(2519), - [aux_sym_local_forward_token1] = ACTIONS(2519), - [aux_sym_log_level_token1] = ACTIONS(2519), - [aux_sym_log_verbose_token1] = ACTIONS(2519), - [aux_sym_macs_token1] = ACTIONS(2519), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2519), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2519), - [aux_sym_password_authentication_token1] = ACTIONS(2519), - [aux_sym_permit_local_command_token1] = ACTIONS(2519), - [aux_sym_permit_remote_open_token1] = ACTIONS(2519), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2519), - [aux_sym_port_token1] = ACTIONS(2519), - [aux_sym_preferred_authentications_token1] = ACTIONS(2519), - [aux_sym_protocol_token1] = ACTIONS(2519), - [aux_sym_proxy_command_token1] = ACTIONS(2519), - [aux_sym_proxy_jump_token1] = ACTIONS(2519), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2519), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2519), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2519), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2519), - [aux_sym_rekey_limit_token1] = ACTIONS(2519), - [aux_sym_remote_command_token1] = ACTIONS(2519), - [aux_sym_remote_forward_token1] = ACTIONS(2519), - [aux_sym_request_tty_token1] = ACTIONS(2519), - [aux_sym_required_rsa_size_token1] = ACTIONS(2519), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2519), - [aux_sym_security_key_provider_token1] = ACTIONS(2519), - [aux_sym_send_env_token1] = ACTIONS(2519), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2519), - [aux_sym_server_alive_interval_token1] = ACTIONS(2519), - [aux_sym_session_type_token1] = ACTIONS(2519), - [aux_sym_set_env_token1] = ACTIONS(2519), - [aux_sym_stdin_null_token1] = ACTIONS(2519), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2519), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2519), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2519), - [aux_sym_syslog_facility_token1] = ACTIONS(2519), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2519), - [aux_sym_keep_alive_token1] = ACTIONS(2519), - [aux_sym_tunnel_token1] = ACTIONS(2521), - [aux_sym_tunnel_device_token1] = ACTIONS(2519), - [aux_sym_update_host_keys_token1] = ACTIONS(2519), - [aux_sym_use_keychain_token1] = ACTIONS(2519), - [aux_sym_use_roaming_token1] = ACTIONS(2519), - [aux_sym_user_token1] = ACTIONS(2521), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2519), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2519), - [aux_sym_visual_host_key_token1] = ACTIONS(2519), - [aux_sym_xauth_location_token1] = ACTIONS(2519), + [ts_builtin_sym_end] = ACTIONS(2526), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2530), + [aux_sym_match_token1] = ACTIONS(2526), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2526), + [aux_sym_address_family_token1] = ACTIONS(2526), + [aux_sym_batch_mode_token1] = ACTIONS(2526), + [aux_sym_bind_address_token1] = ACTIONS(2526), + [aux_sym_bind_interface_token1] = ACTIONS(2526), + [aux_sym_canonical_domains_token1] = ACTIONS(2526), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2526), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2526), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2526), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2526), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2526), + [aux_sym_certificate_file_token1] = ACTIONS(2526), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2526), + [aux_sym_check_host_ip_token1] = ACTIONS(2526), + [aux_sym_ciphers_token1] = ACTIONS(2526), + [aux_sym_cipher_token1] = ACTIONS(2528), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2526), + [aux_sym_compression_token1] = ACTIONS(2526), + [aux_sym_connection_attempts_token1] = ACTIONS(2526), + [aux_sym_connect_timeout_token1] = ACTIONS(2526), + [aux_sym_control_master_token1] = ACTIONS(2526), + [aux_sym_control_path_token1] = ACTIONS(2526), + [aux_sym_control_persist_token1] = ACTIONS(2526), + [aux_sym_dynamic_forward_token1] = ACTIONS(2526), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2526), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2526), + [aux_sym_escape_char_token1] = ACTIONS(2526), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2526), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2526), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2526), + [aux_sym_forward_agent_token1] = ACTIONS(2526), + [aux_sym_forward_x11_token1] = ACTIONS(2528), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2526), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2526), + [aux_sym_gateway_ports_token1] = ACTIONS(2526), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2526), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2526), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2526), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2526), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2526), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2526), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2526), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2526), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2526), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2526), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2526), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2526), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2526), + [aux_sym_host_key_alias_token1] = ACTIONS(2526), + [aux_sym_hostname_token1] = ACTIONS(2526), + [aux_sym_identities_only_token1] = ACTIONS(2526), + [aux_sym_identity_agent_token1] = ACTIONS(2526), + [aux_sym_identity_file_token1] = ACTIONS(2526), + [aux_sym_ignore_unknown_token1] = ACTIONS(2526), + [aux_sym_include_token1] = ACTIONS(2526), + [aux_sym_ip_qos_token1] = ACTIONS(2526), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2526), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2526), + [aux_sym_kex_algorithms_token1] = ACTIONS(2526), + [aux_sym_known_hosts_command_token1] = ACTIONS(2526), + [aux_sym_local_command_token1] = ACTIONS(2526), + [aux_sym_local_forward_token1] = ACTIONS(2526), + [aux_sym_log_level_token1] = ACTIONS(2526), + [aux_sym_log_verbose_token1] = ACTIONS(2526), + [aux_sym_macs_token1] = ACTIONS(2526), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2526), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2526), + [aux_sym_password_authentication_token1] = ACTIONS(2526), + [aux_sym_permit_local_command_token1] = ACTIONS(2526), + [aux_sym_permit_remote_open_token1] = ACTIONS(2526), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2526), + [aux_sym_port_token1] = ACTIONS(2526), + [aux_sym_preferred_authentications_token1] = ACTIONS(2526), + [aux_sym_protocol_token1] = ACTIONS(2526), + [aux_sym_proxy_command_token1] = ACTIONS(2526), + [aux_sym_proxy_jump_token1] = ACTIONS(2526), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2526), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2526), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2526), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2526), + [aux_sym_rekey_limit_token1] = ACTIONS(2526), + [aux_sym_remote_command_token1] = ACTIONS(2526), + [aux_sym_remote_forward_token1] = ACTIONS(2526), + [aux_sym_request_tty_token1] = ACTIONS(2526), + [aux_sym_required_rsa_size_token1] = ACTIONS(2526), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2526), + [aux_sym_security_key_provider_token1] = ACTIONS(2526), + [aux_sym_send_env_token1] = ACTIONS(2526), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2526), + [aux_sym_server_alive_interval_token1] = ACTIONS(2526), + [aux_sym_session_type_token1] = ACTIONS(2526), + [aux_sym_set_env_token1] = ACTIONS(2526), + [aux_sym_stdin_null_token1] = ACTIONS(2526), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2526), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2526), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2526), + [aux_sym_syslog_facility_token1] = ACTIONS(2526), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2526), + [aux_sym_keep_alive_token1] = ACTIONS(2526), + [aux_sym_tunnel_token1] = ACTIONS(2528), + [aux_sym_tunnel_device_token1] = ACTIONS(2526), + [aux_sym_update_host_keys_token1] = ACTIONS(2526), + [aux_sym_use_keychain_token1] = ACTIONS(2526), + [aux_sym_use_roaming_token1] = ACTIONS(2526), + [aux_sym_user_token1] = ACTIONS(2528), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2526), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2526), + [aux_sym_visual_host_key_token1] = ACTIONS(2526), + [aux_sym_xauth_location_token1] = ACTIONS(2526), }, [353] = { - [ts_builtin_sym_end] = ACTIONS(2525), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2527), - [anon_sym_DQUOTE] = ACTIONS(2525), - [aux_sym_match_token1] = ACTIONS(2525), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2525), - [aux_sym_address_family_token1] = ACTIONS(2525), - [aux_sym_batch_mode_token1] = ACTIONS(2525), - [aux_sym_bind_address_token1] = ACTIONS(2525), - [aux_sym_bind_interface_token1] = ACTIONS(2525), - [aux_sym_canonical_domains_token1] = ACTIONS(2525), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2525), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2525), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2525), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2525), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2525), - [aux_sym_certificate_file_token1] = ACTIONS(2525), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2525), - [aux_sym_check_host_ip_token1] = ACTIONS(2525), - [aux_sym_ciphers_token1] = ACTIONS(2525), - [aux_sym_cipher_token1] = ACTIONS(2527), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2525), - [aux_sym_compression_token1] = ACTIONS(2525), - [aux_sym_connection_attempts_token1] = ACTIONS(2525), - [aux_sym_connect_timeout_token1] = ACTIONS(2525), - [aux_sym_control_master_token1] = ACTIONS(2525), - [aux_sym_control_path_token1] = ACTIONS(2525), - [aux_sym_control_persist_token1] = ACTIONS(2525), - [aux_sym_dynamic_forward_token1] = ACTIONS(2525), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2525), - [aux_sym_escape_char_token1] = ACTIONS(2525), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2525), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2525), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2525), - [aux_sym_forward_agent_token1] = ACTIONS(2525), - [aux_sym_forward_x11_token1] = ACTIONS(2527), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2525), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2525), - [aux_sym_gateway_ports_token1] = ACTIONS(2525), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2525), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2525), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2525), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2525), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2525), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2525), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2525), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2525), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2525), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2525), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2525), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2525), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2525), - [aux_sym_host_key_alias_token1] = ACTIONS(2525), - [aux_sym_hostname_token1] = ACTIONS(2525), - [aux_sym_identities_only_token1] = ACTIONS(2525), - [aux_sym_identity_agent_token1] = ACTIONS(2525), - [aux_sym_identity_file_token1] = ACTIONS(2525), - [aux_sym_ignore_unknown_token1] = ACTIONS(2525), - [aux_sym_include_token1] = ACTIONS(2525), - [aux_sym_ip_qos_token1] = ACTIONS(2525), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2525), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2525), - [aux_sym_kex_algorithms_token1] = ACTIONS(2525), - [aux_sym_known_hosts_command_token1] = ACTIONS(2525), - [aux_sym_local_command_token1] = ACTIONS(2525), - [aux_sym_local_forward_token1] = ACTIONS(2525), - [aux_sym_log_level_token1] = ACTIONS(2525), - [aux_sym_log_verbose_token1] = ACTIONS(2525), - [aux_sym_macs_token1] = ACTIONS(2525), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2525), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2525), - [aux_sym_password_authentication_token1] = ACTIONS(2525), - [aux_sym_permit_local_command_token1] = ACTIONS(2525), - [aux_sym_permit_remote_open_token1] = ACTIONS(2525), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2525), - [aux_sym_port_token1] = ACTIONS(2525), - [aux_sym_preferred_authentications_token1] = ACTIONS(2525), - [aux_sym_protocol_token1] = ACTIONS(2525), - [aux_sym_proxy_command_token1] = ACTIONS(2525), - [aux_sym_proxy_jump_token1] = ACTIONS(2525), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2525), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2525), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2525), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2525), - [aux_sym_rekey_limit_token1] = ACTIONS(2525), - [aux_sym_remote_command_token1] = ACTIONS(2525), - [aux_sym_remote_forward_token1] = ACTIONS(2525), - [aux_sym_request_tty_token1] = ACTIONS(2525), - [aux_sym_required_rsa_size_token1] = ACTIONS(2525), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2525), - [aux_sym_security_key_provider_token1] = ACTIONS(2525), - [aux_sym_send_env_token1] = ACTIONS(2525), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2525), - [aux_sym_server_alive_interval_token1] = ACTIONS(2525), - [aux_sym_session_type_token1] = ACTIONS(2525), - [aux_sym_set_env_token1] = ACTIONS(2525), - [aux_sym_stdin_null_token1] = ACTIONS(2525), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2525), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2525), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2525), - [aux_sym_syslog_facility_token1] = ACTIONS(2525), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2525), - [aux_sym_keep_alive_token1] = ACTIONS(2525), - [aux_sym_tunnel_token1] = ACTIONS(2527), - [aux_sym_tunnel_device_token1] = ACTIONS(2525), - [aux_sym_update_host_keys_token1] = ACTIONS(2525), - [aux_sym_use_keychain_token1] = ACTIONS(2525), - [aux_sym_use_roaming_token1] = ACTIONS(2525), - [aux_sym_user_token1] = ACTIONS(2527), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2525), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2525), - [aux_sym_visual_host_key_token1] = ACTIONS(2525), - [aux_sym_xauth_location_token1] = ACTIONS(2525), + [ts_builtin_sym_end] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2534), + [anon_sym_DQUOTE] = ACTIONS(2536), + [aux_sym_match_token1] = ACTIONS(2532), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2532), + [aux_sym_address_family_token1] = ACTIONS(2532), + [aux_sym_batch_mode_token1] = ACTIONS(2532), + [aux_sym_bind_address_token1] = ACTIONS(2532), + [aux_sym_bind_interface_token1] = ACTIONS(2532), + [aux_sym_canonical_domains_token1] = ACTIONS(2532), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2532), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2532), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2532), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2532), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2532), + [aux_sym_certificate_file_token1] = ACTIONS(2532), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2532), + [aux_sym_check_host_ip_token1] = ACTIONS(2532), + [aux_sym_ciphers_token1] = ACTIONS(2532), + [aux_sym_cipher_token1] = ACTIONS(2534), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2532), + [aux_sym_compression_token1] = ACTIONS(2532), + [aux_sym_connection_attempts_token1] = ACTIONS(2532), + [aux_sym_connect_timeout_token1] = ACTIONS(2532), + [aux_sym_control_master_token1] = ACTIONS(2532), + [aux_sym_control_path_token1] = ACTIONS(2532), + [aux_sym_control_persist_token1] = ACTIONS(2532), + [aux_sym_dynamic_forward_token1] = ACTIONS(2532), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2532), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2532), + [aux_sym_escape_char_token1] = ACTIONS(2532), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2532), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2532), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2532), + [aux_sym_forward_agent_token1] = ACTIONS(2532), + [aux_sym_forward_x11_token1] = ACTIONS(2534), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2532), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2532), + [aux_sym_gateway_ports_token1] = ACTIONS(2532), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2532), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2532), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2532), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2532), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2532), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2532), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2532), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2532), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2532), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2532), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2532), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2532), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2532), + [aux_sym_host_key_alias_token1] = ACTIONS(2532), + [aux_sym_hostname_token1] = ACTIONS(2532), + [aux_sym_identities_only_token1] = ACTIONS(2532), + [aux_sym_identity_agent_token1] = ACTIONS(2532), + [aux_sym_identity_file_token1] = ACTIONS(2532), + [aux_sym_ignore_unknown_token1] = ACTIONS(2532), + [aux_sym_include_token1] = ACTIONS(2532), + [aux_sym_ip_qos_token1] = ACTIONS(2532), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2532), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2532), + [aux_sym_kex_algorithms_token1] = ACTIONS(2532), + [aux_sym_known_hosts_command_token1] = ACTIONS(2532), + [aux_sym_local_command_token1] = ACTIONS(2532), + [aux_sym_local_forward_token1] = ACTIONS(2532), + [aux_sym_log_level_token1] = ACTIONS(2532), + [aux_sym_log_verbose_token1] = ACTIONS(2532), + [aux_sym_macs_token1] = ACTIONS(2532), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2532), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2532), + [aux_sym_password_authentication_token1] = ACTIONS(2532), + [aux_sym_permit_local_command_token1] = ACTIONS(2532), + [aux_sym_permit_remote_open_token1] = ACTIONS(2532), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2532), + [aux_sym_port_token1] = ACTIONS(2532), + [aux_sym_preferred_authentications_token1] = ACTIONS(2532), + [aux_sym_protocol_token1] = ACTIONS(2532), + [aux_sym_proxy_command_token1] = ACTIONS(2532), + [aux_sym_proxy_jump_token1] = ACTIONS(2532), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2532), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2532), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2532), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2532), + [aux_sym_rekey_limit_token1] = ACTIONS(2532), + [aux_sym_remote_command_token1] = ACTIONS(2532), + [aux_sym_remote_forward_token1] = ACTIONS(2532), + [aux_sym_request_tty_token1] = ACTIONS(2532), + [aux_sym_required_rsa_size_token1] = ACTIONS(2532), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2532), + [aux_sym_security_key_provider_token1] = ACTIONS(2532), + [aux_sym_send_env_token1] = ACTIONS(2532), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2532), + [aux_sym_server_alive_interval_token1] = ACTIONS(2532), + [aux_sym_session_type_token1] = ACTIONS(2532), + [aux_sym_set_env_token1] = ACTIONS(2532), + [aux_sym_stdin_null_token1] = ACTIONS(2532), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2532), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2532), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2532), + [aux_sym_syslog_facility_token1] = ACTIONS(2532), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2532), + [aux_sym_keep_alive_token1] = ACTIONS(2532), + [aux_sym_tunnel_token1] = ACTIONS(2534), + [aux_sym_tunnel_device_token1] = ACTIONS(2532), + [aux_sym_update_host_keys_token1] = ACTIONS(2532), + [aux_sym_use_keychain_token1] = ACTIONS(2532), + [aux_sym_use_roaming_token1] = ACTIONS(2532), + [aux_sym_user_token1] = ACTIONS(2534), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2532), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2532), + [aux_sym_visual_host_key_token1] = ACTIONS(2532), + [aux_sym_xauth_location_token1] = ACTIONS(2532), }, [354] = { - [ts_builtin_sym_end] = ACTIONS(2529), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2531), - [anon_sym_DQUOTE] = ACTIONS(2533), - [aux_sym_match_token1] = ACTIONS(2529), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2529), - [aux_sym_address_family_token1] = ACTIONS(2529), - [aux_sym_batch_mode_token1] = ACTIONS(2529), - [aux_sym_bind_address_token1] = ACTIONS(2529), - [aux_sym_bind_interface_token1] = ACTIONS(2529), - [aux_sym_canonical_domains_token1] = ACTIONS(2529), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2529), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2529), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2529), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2529), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2529), - [aux_sym_certificate_file_token1] = ACTIONS(2529), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2529), - [aux_sym_check_host_ip_token1] = ACTIONS(2529), - [aux_sym_ciphers_token1] = ACTIONS(2529), - [aux_sym_cipher_token1] = ACTIONS(2531), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2529), - [aux_sym_compression_token1] = ACTIONS(2529), - [aux_sym_connection_attempts_token1] = ACTIONS(2529), - [aux_sym_connect_timeout_token1] = ACTIONS(2529), - [aux_sym_control_master_token1] = ACTIONS(2529), - [aux_sym_control_path_token1] = ACTIONS(2529), - [aux_sym_control_persist_token1] = ACTIONS(2529), - [aux_sym_dynamic_forward_token1] = ACTIONS(2529), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2529), - [aux_sym_escape_char_token1] = ACTIONS(2529), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2529), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2529), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2529), - [aux_sym_forward_agent_token1] = ACTIONS(2529), - [aux_sym_forward_x11_token1] = ACTIONS(2531), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2529), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2529), - [aux_sym_gateway_ports_token1] = ACTIONS(2529), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2529), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2529), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2529), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2529), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2529), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2529), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2529), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2529), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2529), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2529), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2529), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2529), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2529), - [aux_sym_host_key_alias_token1] = ACTIONS(2529), - [aux_sym_hostname_token1] = ACTIONS(2529), - [aux_sym_identities_only_token1] = ACTIONS(2529), - [aux_sym_identity_agent_token1] = ACTIONS(2529), - [aux_sym_identity_file_token1] = ACTIONS(2529), - [aux_sym_ignore_unknown_token1] = ACTIONS(2529), - [aux_sym_include_token1] = ACTIONS(2529), - [aux_sym_ip_qos_token1] = ACTIONS(2529), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2529), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2529), - [aux_sym_kex_algorithms_token1] = ACTIONS(2529), - [aux_sym_known_hosts_command_token1] = ACTIONS(2529), - [aux_sym_local_command_token1] = ACTIONS(2529), - [aux_sym_local_forward_token1] = ACTIONS(2529), - [aux_sym_log_level_token1] = ACTIONS(2529), - [aux_sym_log_verbose_token1] = ACTIONS(2529), - [aux_sym_macs_token1] = ACTIONS(2529), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2529), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2529), - [aux_sym_password_authentication_token1] = ACTIONS(2529), - [aux_sym_permit_local_command_token1] = ACTIONS(2529), - [aux_sym_permit_remote_open_token1] = ACTIONS(2529), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2529), - [aux_sym_port_token1] = ACTIONS(2529), - [aux_sym_preferred_authentications_token1] = ACTIONS(2529), - [aux_sym_protocol_token1] = ACTIONS(2529), - [aux_sym_proxy_command_token1] = ACTIONS(2529), - [aux_sym_proxy_jump_token1] = ACTIONS(2529), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2529), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2529), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2529), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2529), - [aux_sym_rekey_limit_token1] = ACTIONS(2529), - [aux_sym_remote_command_token1] = ACTIONS(2529), - [aux_sym_remote_forward_token1] = ACTIONS(2529), - [aux_sym_request_tty_token1] = ACTIONS(2529), - [aux_sym_required_rsa_size_token1] = ACTIONS(2529), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2529), - [aux_sym_security_key_provider_token1] = ACTIONS(2529), - [aux_sym_send_env_token1] = ACTIONS(2529), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2529), - [aux_sym_server_alive_interval_token1] = ACTIONS(2529), - [aux_sym_session_type_token1] = ACTIONS(2529), - [aux_sym_set_env_token1] = ACTIONS(2529), - [aux_sym_stdin_null_token1] = ACTIONS(2529), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2529), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2529), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2529), - [aux_sym_syslog_facility_token1] = ACTIONS(2529), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2529), - [aux_sym_keep_alive_token1] = ACTIONS(2529), - [aux_sym_tunnel_token1] = ACTIONS(2531), - [aux_sym_tunnel_device_token1] = ACTIONS(2529), - [aux_sym_update_host_keys_token1] = ACTIONS(2529), - [aux_sym_use_keychain_token1] = ACTIONS(2529), - [aux_sym_use_roaming_token1] = ACTIONS(2529), - [aux_sym_user_token1] = ACTIONS(2531), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2529), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2529), - [aux_sym_visual_host_key_token1] = ACTIONS(2529), - [aux_sym_xauth_location_token1] = ACTIONS(2529), + [ts_builtin_sym_end] = ACTIONS(2538), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2538), + [aux_sym_match_token1] = ACTIONS(2538), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2538), + [aux_sym_address_family_token1] = ACTIONS(2538), + [aux_sym_batch_mode_token1] = ACTIONS(2538), + [aux_sym_bind_address_token1] = ACTIONS(2538), + [aux_sym_bind_interface_token1] = ACTIONS(2538), + [aux_sym_canonical_domains_token1] = ACTIONS(2538), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2538), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2538), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2538), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2538), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2538), + [aux_sym_certificate_file_token1] = ACTIONS(2538), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2538), + [aux_sym_check_host_ip_token1] = ACTIONS(2538), + [aux_sym_ciphers_token1] = ACTIONS(2538), + [aux_sym_cipher_token1] = ACTIONS(2540), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2538), + [aux_sym_compression_token1] = ACTIONS(2538), + [aux_sym_connection_attempts_token1] = ACTIONS(2538), + [aux_sym_connect_timeout_token1] = ACTIONS(2538), + [aux_sym_control_master_token1] = ACTIONS(2538), + [aux_sym_control_path_token1] = ACTIONS(2538), + [aux_sym_control_persist_token1] = ACTIONS(2538), + [aux_sym_dynamic_forward_token1] = ACTIONS(2538), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2538), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2538), + [aux_sym_escape_char_token1] = ACTIONS(2538), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2538), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2538), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2538), + [aux_sym_forward_agent_token1] = ACTIONS(2538), + [aux_sym_forward_x11_token1] = ACTIONS(2540), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2538), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2538), + [aux_sym_gateway_ports_token1] = ACTIONS(2538), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2538), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2538), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2538), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2538), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2538), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2538), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2538), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2538), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2538), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2538), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2538), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2538), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2538), + [aux_sym_host_key_alias_token1] = ACTIONS(2538), + [aux_sym_hostname_token1] = ACTIONS(2538), + [aux_sym_identities_only_token1] = ACTIONS(2538), + [aux_sym_identity_agent_token1] = ACTIONS(2538), + [aux_sym_identity_file_token1] = ACTIONS(2538), + [aux_sym_ignore_unknown_token1] = ACTIONS(2538), + [aux_sym_include_token1] = ACTIONS(2538), + [aux_sym_ip_qos_token1] = ACTIONS(2538), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2538), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2538), + [aux_sym_kex_algorithms_token1] = ACTIONS(2538), + [aux_sym_known_hosts_command_token1] = ACTIONS(2538), + [aux_sym_local_command_token1] = ACTIONS(2538), + [aux_sym_local_forward_token1] = ACTIONS(2538), + [aux_sym_log_level_token1] = ACTIONS(2538), + [aux_sym_log_verbose_token1] = ACTIONS(2538), + [aux_sym_macs_token1] = ACTIONS(2538), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2538), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2538), + [aux_sym_password_authentication_token1] = ACTIONS(2538), + [aux_sym_permit_local_command_token1] = ACTIONS(2538), + [aux_sym_permit_remote_open_token1] = ACTIONS(2538), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2538), + [aux_sym_port_token1] = ACTIONS(2538), + [aux_sym_preferred_authentications_token1] = ACTIONS(2538), + [aux_sym_protocol_token1] = ACTIONS(2538), + [aux_sym_proxy_command_token1] = ACTIONS(2538), + [aux_sym_proxy_jump_token1] = ACTIONS(2538), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2538), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2538), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2538), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2538), + [aux_sym_rekey_limit_token1] = ACTIONS(2538), + [aux_sym_remote_command_token1] = ACTIONS(2538), + [aux_sym_remote_forward_token1] = ACTIONS(2538), + [aux_sym_request_tty_token1] = ACTIONS(2538), + [aux_sym_required_rsa_size_token1] = ACTIONS(2538), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2538), + [aux_sym_security_key_provider_token1] = ACTIONS(2538), + [aux_sym_send_env_token1] = ACTIONS(2538), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2538), + [aux_sym_server_alive_interval_token1] = ACTIONS(2538), + [aux_sym_session_type_token1] = ACTIONS(2538), + [aux_sym_set_env_token1] = ACTIONS(2538), + [aux_sym_stdin_null_token1] = ACTIONS(2538), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2538), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2538), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2538), + [aux_sym_syslog_facility_token1] = ACTIONS(2538), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2538), + [aux_sym_keep_alive_token1] = ACTIONS(2538), + [aux_sym_tunnel_token1] = ACTIONS(2540), + [aux_sym_tunnel_device_token1] = ACTIONS(2538), + [aux_sym_update_host_keys_token1] = ACTIONS(2538), + [aux_sym_use_keychain_token1] = ACTIONS(2538), + [aux_sym_use_roaming_token1] = ACTIONS(2538), + [aux_sym_user_token1] = ACTIONS(2540), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2538), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2538), + [aux_sym_visual_host_key_token1] = ACTIONS(2538), + [aux_sym_xauth_location_token1] = ACTIONS(2538), }, [355] = { - [ts_builtin_sym_end] = ACTIONS(2535), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2537), - [anon_sym_DQUOTE] = ACTIONS(2539), - [aux_sym_match_token1] = ACTIONS(2535), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2535), - [aux_sym_address_family_token1] = ACTIONS(2535), - [aux_sym_batch_mode_token1] = ACTIONS(2535), - [aux_sym_bind_address_token1] = ACTIONS(2535), - [aux_sym_bind_interface_token1] = ACTIONS(2535), - [aux_sym_canonical_domains_token1] = ACTIONS(2535), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2535), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2535), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2535), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2535), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2535), - [aux_sym_certificate_file_token1] = ACTIONS(2535), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2535), - [aux_sym_check_host_ip_token1] = ACTIONS(2535), - [aux_sym_ciphers_token1] = ACTIONS(2535), - [aux_sym_cipher_token1] = ACTIONS(2537), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2535), - [aux_sym_compression_token1] = ACTIONS(2535), - [aux_sym_connection_attempts_token1] = ACTIONS(2535), - [aux_sym_connect_timeout_token1] = ACTIONS(2535), - [aux_sym_control_master_token1] = ACTIONS(2535), - [aux_sym_control_path_token1] = ACTIONS(2535), - [aux_sym_control_persist_token1] = ACTIONS(2535), - [aux_sym_dynamic_forward_token1] = ACTIONS(2535), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2535), - [aux_sym_escape_char_token1] = ACTIONS(2535), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2535), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2535), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2535), - [aux_sym_forward_agent_token1] = ACTIONS(2535), - [aux_sym_forward_x11_token1] = ACTIONS(2537), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2535), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2535), - [aux_sym_gateway_ports_token1] = ACTIONS(2535), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2535), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2535), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2535), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2535), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2535), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2535), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2535), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2535), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2535), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2535), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2535), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2535), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2535), - [aux_sym_host_key_alias_token1] = ACTIONS(2535), - [aux_sym_hostname_token1] = ACTIONS(2535), - [aux_sym_identities_only_token1] = ACTIONS(2535), - [aux_sym_identity_agent_token1] = ACTIONS(2535), - [aux_sym_identity_file_token1] = ACTIONS(2535), - [aux_sym_ignore_unknown_token1] = ACTIONS(2535), - [aux_sym_include_token1] = ACTIONS(2535), - [aux_sym_ip_qos_token1] = ACTIONS(2535), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2535), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2535), - [aux_sym_kex_algorithms_token1] = ACTIONS(2535), - [aux_sym_known_hosts_command_token1] = ACTIONS(2535), - [aux_sym_local_command_token1] = ACTIONS(2535), - [aux_sym_local_forward_token1] = ACTIONS(2535), - [aux_sym_log_level_token1] = ACTIONS(2535), - [aux_sym_log_verbose_token1] = ACTIONS(2535), - [aux_sym_macs_token1] = ACTIONS(2535), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2535), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2535), - [aux_sym_password_authentication_token1] = ACTIONS(2535), - [aux_sym_permit_local_command_token1] = ACTIONS(2535), - [aux_sym_permit_remote_open_token1] = ACTIONS(2535), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2535), - [aux_sym_port_token1] = ACTIONS(2535), - [aux_sym_preferred_authentications_token1] = ACTIONS(2535), - [aux_sym_protocol_token1] = ACTIONS(2535), - [aux_sym_proxy_command_token1] = ACTIONS(2535), - [aux_sym_proxy_jump_token1] = ACTIONS(2535), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2535), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2535), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2535), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2535), - [aux_sym_rekey_limit_token1] = ACTIONS(2535), - [aux_sym_remote_command_token1] = ACTIONS(2535), - [aux_sym_remote_forward_token1] = ACTIONS(2535), - [aux_sym_request_tty_token1] = ACTIONS(2535), - [aux_sym_required_rsa_size_token1] = ACTIONS(2535), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2535), - [aux_sym_security_key_provider_token1] = ACTIONS(2535), - [aux_sym_send_env_token1] = ACTIONS(2535), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2535), - [aux_sym_server_alive_interval_token1] = ACTIONS(2535), - [aux_sym_session_type_token1] = ACTIONS(2535), - [aux_sym_set_env_token1] = ACTIONS(2535), - [aux_sym_stdin_null_token1] = ACTIONS(2535), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2535), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2535), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2535), - [aux_sym_syslog_facility_token1] = ACTIONS(2535), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2535), - [aux_sym_keep_alive_token1] = ACTIONS(2535), - [aux_sym_tunnel_token1] = ACTIONS(2537), - [aux_sym_tunnel_device_token1] = ACTIONS(2535), - [aux_sym_update_host_keys_token1] = ACTIONS(2535), - [aux_sym_use_keychain_token1] = ACTIONS(2535), - [aux_sym_use_roaming_token1] = ACTIONS(2535), - [aux_sym_user_token1] = ACTIONS(2537), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2535), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2535), - [aux_sym_visual_host_key_token1] = ACTIONS(2535), - [aux_sym_xauth_location_token1] = ACTIONS(2535), + [ts_builtin_sym_end] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2544), + [anon_sym_DQUOTE] = ACTIONS(2542), + [aux_sym_match_token1] = ACTIONS(2542), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2542), + [aux_sym_address_family_token1] = ACTIONS(2542), + [aux_sym_batch_mode_token1] = ACTIONS(2542), + [aux_sym_bind_address_token1] = ACTIONS(2542), + [aux_sym_bind_interface_token1] = ACTIONS(2542), + [aux_sym_canonical_domains_token1] = ACTIONS(2542), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2542), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2542), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2542), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2542), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2542), + [aux_sym_certificate_file_token1] = ACTIONS(2542), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2542), + [aux_sym_check_host_ip_token1] = ACTIONS(2542), + [aux_sym_ciphers_token1] = ACTIONS(2542), + [aux_sym_cipher_token1] = ACTIONS(2544), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2542), + [aux_sym_compression_token1] = ACTIONS(2542), + [aux_sym_connection_attempts_token1] = ACTIONS(2542), + [aux_sym_connect_timeout_token1] = ACTIONS(2542), + [aux_sym_control_master_token1] = ACTIONS(2542), + [aux_sym_control_path_token1] = ACTIONS(2542), + [aux_sym_control_persist_token1] = ACTIONS(2542), + [aux_sym_dynamic_forward_token1] = ACTIONS(2542), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2542), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2542), + [aux_sym_escape_char_token1] = ACTIONS(2542), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2542), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2542), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2542), + [aux_sym_forward_agent_token1] = ACTIONS(2542), + [aux_sym_forward_x11_token1] = ACTIONS(2544), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2542), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2542), + [aux_sym_gateway_ports_token1] = ACTIONS(2542), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2542), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2542), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2542), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2542), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2542), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2542), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2542), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2542), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2542), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2542), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2542), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2542), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2542), + [aux_sym_host_key_alias_token1] = ACTIONS(2542), + [aux_sym_hostname_token1] = ACTIONS(2542), + [aux_sym_identities_only_token1] = ACTIONS(2542), + [aux_sym_identity_agent_token1] = ACTIONS(2542), + [aux_sym_identity_file_token1] = ACTIONS(2542), + [aux_sym_ignore_unknown_token1] = ACTIONS(2542), + [aux_sym_include_token1] = ACTIONS(2542), + [aux_sym_ip_qos_token1] = ACTIONS(2542), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2542), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2542), + [aux_sym_kex_algorithms_token1] = ACTIONS(2542), + [aux_sym_known_hosts_command_token1] = ACTIONS(2542), + [aux_sym_local_command_token1] = ACTIONS(2542), + [aux_sym_local_forward_token1] = ACTIONS(2542), + [aux_sym_log_level_token1] = ACTIONS(2542), + [aux_sym_log_verbose_token1] = ACTIONS(2542), + [aux_sym_macs_token1] = ACTIONS(2542), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2542), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2542), + [aux_sym_password_authentication_token1] = ACTIONS(2542), + [aux_sym_permit_local_command_token1] = ACTIONS(2542), + [aux_sym_permit_remote_open_token1] = ACTIONS(2542), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2542), + [aux_sym_port_token1] = ACTIONS(2542), + [aux_sym_preferred_authentications_token1] = ACTIONS(2542), + [aux_sym_protocol_token1] = ACTIONS(2542), + [aux_sym_proxy_command_token1] = ACTIONS(2542), + [aux_sym_proxy_jump_token1] = ACTIONS(2542), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2542), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2542), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2542), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2542), + [aux_sym_rekey_limit_token1] = ACTIONS(2542), + [aux_sym_remote_command_token1] = ACTIONS(2542), + [aux_sym_remote_forward_token1] = ACTIONS(2542), + [aux_sym_request_tty_token1] = ACTIONS(2542), + [aux_sym_required_rsa_size_token1] = ACTIONS(2542), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2542), + [aux_sym_security_key_provider_token1] = ACTIONS(2542), + [aux_sym_send_env_token1] = ACTIONS(2542), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2542), + [aux_sym_server_alive_interval_token1] = ACTIONS(2542), + [aux_sym_session_type_token1] = ACTIONS(2542), + [aux_sym_set_env_token1] = ACTIONS(2542), + [aux_sym_stdin_null_token1] = ACTIONS(2542), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2542), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2542), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2542), + [aux_sym_syslog_facility_token1] = ACTIONS(2542), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2542), + [aux_sym_keep_alive_token1] = ACTIONS(2542), + [aux_sym_tunnel_token1] = ACTIONS(2544), + [aux_sym_tunnel_device_token1] = ACTIONS(2542), + [aux_sym_update_host_keys_token1] = ACTIONS(2542), + [aux_sym_use_keychain_token1] = ACTIONS(2542), + [aux_sym_use_roaming_token1] = ACTIONS(2542), + [aux_sym_user_token1] = ACTIONS(2544), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2542), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2542), + [aux_sym_visual_host_key_token1] = ACTIONS(2542), + [aux_sym_xauth_location_token1] = ACTIONS(2542), }, [356] = { - [ts_builtin_sym_end] = ACTIONS(2541), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2543), - [anon_sym_DQUOTE] = ACTIONS(2541), - [aux_sym_match_token1] = ACTIONS(2541), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2541), - [aux_sym_address_family_token1] = ACTIONS(2541), - [aux_sym_batch_mode_token1] = ACTIONS(2541), - [aux_sym_bind_address_token1] = ACTIONS(2541), - [aux_sym_bind_interface_token1] = ACTIONS(2541), - [aux_sym_canonical_domains_token1] = ACTIONS(2541), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2541), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2541), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2541), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2541), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2541), - [aux_sym_certificate_file_token1] = ACTIONS(2541), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2541), - [aux_sym_check_host_ip_token1] = ACTIONS(2541), - [aux_sym_ciphers_token1] = ACTIONS(2541), - [aux_sym_cipher_token1] = ACTIONS(2543), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2541), - [aux_sym_compression_token1] = ACTIONS(2541), - [aux_sym_connection_attempts_token1] = ACTIONS(2541), - [aux_sym_connect_timeout_token1] = ACTIONS(2541), - [aux_sym_control_master_token1] = ACTIONS(2541), - [aux_sym_control_path_token1] = ACTIONS(2541), - [aux_sym_control_persist_token1] = ACTIONS(2541), - [aux_sym_dynamic_forward_token1] = ACTIONS(2541), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2541), - [aux_sym_escape_char_token1] = ACTIONS(2541), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2541), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2541), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2541), - [aux_sym_forward_agent_token1] = ACTIONS(2541), - [aux_sym_forward_x11_token1] = ACTIONS(2543), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2541), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2541), - [aux_sym_gateway_ports_token1] = ACTIONS(2541), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2541), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2541), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2541), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2541), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2541), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2541), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2541), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2541), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2541), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2541), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2541), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2541), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2541), - [aux_sym_host_key_alias_token1] = ACTIONS(2541), - [aux_sym_hostname_token1] = ACTIONS(2541), - [aux_sym_identities_only_token1] = ACTIONS(2541), - [aux_sym_identity_agent_token1] = ACTIONS(2541), - [aux_sym_identity_file_token1] = ACTIONS(2541), - [aux_sym_ignore_unknown_token1] = ACTIONS(2541), - [aux_sym_include_token1] = ACTIONS(2541), - [aux_sym_ip_qos_token1] = ACTIONS(2541), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2541), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2541), - [aux_sym_kex_algorithms_token1] = ACTIONS(2541), - [aux_sym_known_hosts_command_token1] = ACTIONS(2541), - [aux_sym_local_command_token1] = ACTIONS(2541), - [aux_sym_local_forward_token1] = ACTIONS(2541), - [aux_sym_log_level_token1] = ACTIONS(2541), - [aux_sym_log_verbose_token1] = ACTIONS(2541), - [aux_sym_macs_token1] = ACTIONS(2541), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2541), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2541), - [aux_sym_password_authentication_token1] = ACTIONS(2541), - [aux_sym_permit_local_command_token1] = ACTIONS(2541), - [aux_sym_permit_remote_open_token1] = ACTIONS(2541), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2541), - [aux_sym_port_token1] = ACTIONS(2541), - [aux_sym_preferred_authentications_token1] = ACTIONS(2541), - [aux_sym_protocol_token1] = ACTIONS(2541), - [aux_sym_proxy_command_token1] = ACTIONS(2541), - [aux_sym_proxy_jump_token1] = ACTIONS(2541), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2541), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2541), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2541), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2541), - [aux_sym_rekey_limit_token1] = ACTIONS(2541), - [aux_sym_remote_command_token1] = ACTIONS(2541), - [aux_sym_remote_forward_token1] = ACTIONS(2541), - [aux_sym_request_tty_token1] = ACTIONS(2541), - [aux_sym_required_rsa_size_token1] = ACTIONS(2541), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2541), - [aux_sym_security_key_provider_token1] = ACTIONS(2541), - [aux_sym_send_env_token1] = ACTIONS(2541), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2541), - [aux_sym_server_alive_interval_token1] = ACTIONS(2541), - [aux_sym_session_type_token1] = ACTIONS(2541), - [aux_sym_set_env_token1] = ACTIONS(2541), - [aux_sym_stdin_null_token1] = ACTIONS(2541), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2541), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2541), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2541), - [aux_sym_syslog_facility_token1] = ACTIONS(2541), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2541), - [aux_sym_keep_alive_token1] = ACTIONS(2541), - [aux_sym_tunnel_token1] = ACTIONS(2543), - [aux_sym_tunnel_device_token1] = ACTIONS(2541), - [aux_sym_update_host_keys_token1] = ACTIONS(2541), - [aux_sym_use_keychain_token1] = ACTIONS(2541), - [aux_sym_use_roaming_token1] = ACTIONS(2541), - [aux_sym_user_token1] = ACTIONS(2543), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2541), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2541), - [aux_sym_visual_host_key_token1] = ACTIONS(2541), - [aux_sym_xauth_location_token1] = ACTIONS(2541), + [ts_builtin_sym_end] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2548), + [anon_sym_DQUOTE] = ACTIONS(2550), + [aux_sym_match_token1] = ACTIONS(2546), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2546), + [aux_sym_address_family_token1] = ACTIONS(2546), + [aux_sym_batch_mode_token1] = ACTIONS(2546), + [aux_sym_bind_address_token1] = ACTIONS(2546), + [aux_sym_bind_interface_token1] = ACTIONS(2546), + [aux_sym_canonical_domains_token1] = ACTIONS(2546), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2546), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2546), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2546), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2546), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2546), + [aux_sym_certificate_file_token1] = ACTIONS(2546), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2546), + [aux_sym_check_host_ip_token1] = ACTIONS(2546), + [aux_sym_ciphers_token1] = ACTIONS(2546), + [aux_sym_cipher_token1] = ACTIONS(2548), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2546), + [aux_sym_compression_token1] = ACTIONS(2546), + [aux_sym_connection_attempts_token1] = ACTIONS(2546), + [aux_sym_connect_timeout_token1] = ACTIONS(2546), + [aux_sym_control_master_token1] = ACTIONS(2546), + [aux_sym_control_path_token1] = ACTIONS(2546), + [aux_sym_control_persist_token1] = ACTIONS(2546), + [aux_sym_dynamic_forward_token1] = ACTIONS(2546), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2546), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2546), + [aux_sym_escape_char_token1] = ACTIONS(2546), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2546), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2546), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2546), + [aux_sym_forward_agent_token1] = ACTIONS(2546), + [aux_sym_forward_x11_token1] = ACTIONS(2548), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2546), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2546), + [aux_sym_gateway_ports_token1] = ACTIONS(2546), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2546), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2546), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2546), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2546), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2546), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2546), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2546), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2546), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2546), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2546), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2546), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2546), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2546), + [aux_sym_host_key_alias_token1] = ACTIONS(2546), + [aux_sym_hostname_token1] = ACTIONS(2546), + [aux_sym_identities_only_token1] = ACTIONS(2546), + [aux_sym_identity_agent_token1] = ACTIONS(2546), + [aux_sym_identity_file_token1] = ACTIONS(2546), + [aux_sym_ignore_unknown_token1] = ACTIONS(2546), + [aux_sym_include_token1] = ACTIONS(2546), + [aux_sym_ip_qos_token1] = ACTIONS(2546), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2546), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2546), + [aux_sym_kex_algorithms_token1] = ACTIONS(2546), + [aux_sym_known_hosts_command_token1] = ACTIONS(2546), + [aux_sym_local_command_token1] = ACTIONS(2546), + [aux_sym_local_forward_token1] = ACTIONS(2546), + [aux_sym_log_level_token1] = ACTIONS(2546), + [aux_sym_log_verbose_token1] = ACTIONS(2546), + [aux_sym_macs_token1] = ACTIONS(2546), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2546), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2546), + [aux_sym_password_authentication_token1] = ACTIONS(2546), + [aux_sym_permit_local_command_token1] = ACTIONS(2546), + [aux_sym_permit_remote_open_token1] = ACTIONS(2546), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2546), + [aux_sym_port_token1] = ACTIONS(2546), + [aux_sym_preferred_authentications_token1] = ACTIONS(2546), + [aux_sym_protocol_token1] = ACTIONS(2546), + [aux_sym_proxy_command_token1] = ACTIONS(2546), + [aux_sym_proxy_jump_token1] = ACTIONS(2546), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2546), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2546), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2546), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2546), + [aux_sym_rekey_limit_token1] = ACTIONS(2546), + [aux_sym_remote_command_token1] = ACTIONS(2546), + [aux_sym_remote_forward_token1] = ACTIONS(2546), + [aux_sym_request_tty_token1] = ACTIONS(2546), + [aux_sym_required_rsa_size_token1] = ACTIONS(2546), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2546), + [aux_sym_security_key_provider_token1] = ACTIONS(2546), + [aux_sym_send_env_token1] = ACTIONS(2546), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2546), + [aux_sym_server_alive_interval_token1] = ACTIONS(2546), + [aux_sym_session_type_token1] = ACTIONS(2546), + [aux_sym_set_env_token1] = ACTIONS(2546), + [aux_sym_stdin_null_token1] = ACTIONS(2546), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2546), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2546), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2546), + [aux_sym_syslog_facility_token1] = ACTIONS(2546), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2546), + [aux_sym_keep_alive_token1] = ACTIONS(2546), + [aux_sym_tunnel_token1] = ACTIONS(2548), + [aux_sym_tunnel_device_token1] = ACTIONS(2546), + [aux_sym_update_host_keys_token1] = ACTIONS(2546), + [aux_sym_use_keychain_token1] = ACTIONS(2546), + [aux_sym_use_roaming_token1] = ACTIONS(2546), + [aux_sym_user_token1] = ACTIONS(2548), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2546), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2546), + [aux_sym_visual_host_key_token1] = ACTIONS(2546), + [aux_sym_xauth_location_token1] = ACTIONS(2546), }, [357] = { - [ts_builtin_sym_end] = ACTIONS(2545), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2545), - [aux_sym_match_token1] = ACTIONS(2545), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2545), - [aux_sym_address_family_token1] = ACTIONS(2545), - [aux_sym_batch_mode_token1] = ACTIONS(2545), - [aux_sym_bind_address_token1] = ACTIONS(2545), - [aux_sym_bind_interface_token1] = ACTIONS(2545), - [aux_sym_canonical_domains_token1] = ACTIONS(2545), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2545), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2545), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2545), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2545), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2545), - [aux_sym_certificate_file_token1] = ACTIONS(2545), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2545), - [aux_sym_check_host_ip_token1] = ACTIONS(2545), - [aux_sym_ciphers_token1] = ACTIONS(2545), - [aux_sym_cipher_token1] = ACTIONS(2547), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2545), - [aux_sym_compression_token1] = ACTIONS(2545), - [aux_sym_connection_attempts_token1] = ACTIONS(2545), - [aux_sym_connect_timeout_token1] = ACTIONS(2545), - [aux_sym_control_master_token1] = ACTIONS(2545), - [aux_sym_control_path_token1] = ACTIONS(2545), - [aux_sym_control_persist_token1] = ACTIONS(2545), - [aux_sym_dynamic_forward_token1] = ACTIONS(2545), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2545), - [aux_sym_escape_char_token1] = ACTIONS(2545), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2545), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2545), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2545), - [aux_sym_forward_agent_token1] = ACTIONS(2545), - [aux_sym_forward_x11_token1] = ACTIONS(2547), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2545), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2545), - [aux_sym_gateway_ports_token1] = ACTIONS(2545), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2545), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2545), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2545), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2545), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2545), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2545), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2545), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2545), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2545), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2545), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2545), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2545), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2545), - [aux_sym_host_key_alias_token1] = ACTIONS(2545), - [aux_sym_hostname_token1] = ACTIONS(2545), - [aux_sym_identities_only_token1] = ACTIONS(2545), - [aux_sym_identity_agent_token1] = ACTIONS(2545), - [aux_sym_identity_file_token1] = ACTIONS(2545), - [aux_sym_ignore_unknown_token1] = ACTIONS(2545), - [aux_sym_include_token1] = ACTIONS(2545), - [aux_sym_ip_qos_token1] = ACTIONS(2545), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2545), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2545), - [aux_sym_kex_algorithms_token1] = ACTIONS(2545), - [aux_sym_known_hosts_command_token1] = ACTIONS(2545), - [aux_sym_local_command_token1] = ACTIONS(2545), - [aux_sym_local_forward_token1] = ACTIONS(2545), - [aux_sym_log_level_token1] = ACTIONS(2545), - [aux_sym_log_verbose_token1] = ACTIONS(2545), - [aux_sym_macs_token1] = ACTIONS(2545), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2545), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2545), - [aux_sym_password_authentication_token1] = ACTIONS(2545), - [aux_sym_permit_local_command_token1] = ACTIONS(2545), - [aux_sym_permit_remote_open_token1] = ACTIONS(2545), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2545), - [aux_sym_port_token1] = ACTIONS(2545), - [aux_sym_preferred_authentications_token1] = ACTIONS(2545), - [aux_sym_protocol_token1] = ACTIONS(2545), - [aux_sym_proxy_command_token1] = ACTIONS(2545), - [aux_sym_proxy_jump_token1] = ACTIONS(2545), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2545), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2545), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2545), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2545), - [aux_sym_rekey_limit_token1] = ACTIONS(2545), - [aux_sym_remote_command_token1] = ACTIONS(2545), - [aux_sym_remote_forward_token1] = ACTIONS(2545), - [aux_sym_request_tty_token1] = ACTIONS(2545), - [aux_sym_required_rsa_size_token1] = ACTIONS(2545), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2545), - [aux_sym_security_key_provider_token1] = ACTIONS(2545), - [aux_sym_send_env_token1] = ACTIONS(2545), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2545), - [aux_sym_server_alive_interval_token1] = ACTIONS(2545), - [aux_sym_session_type_token1] = ACTIONS(2545), - [aux_sym_set_env_token1] = ACTIONS(2545), - [aux_sym_stdin_null_token1] = ACTIONS(2545), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2545), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2545), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2545), - [aux_sym_syslog_facility_token1] = ACTIONS(2545), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2545), - [aux_sym_keep_alive_token1] = ACTIONS(2545), - [aux_sym_tunnel_token1] = ACTIONS(2547), - [aux_sym_tunnel_device_token1] = ACTIONS(2545), - [aux_sym_update_host_keys_token1] = ACTIONS(2545), - [aux_sym_use_keychain_token1] = ACTIONS(2545), - [aux_sym_use_roaming_token1] = ACTIONS(2545), - [aux_sym_user_token1] = ACTIONS(2547), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2545), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2545), - [aux_sym_visual_host_key_token1] = ACTIONS(2545), - [aux_sym_xauth_location_token1] = ACTIONS(2545), + [ts_builtin_sym_end] = ACTIONS(2552), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2554), + [anon_sym_DQUOTE] = ACTIONS(2552), + [aux_sym_match_token1] = ACTIONS(2552), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2552), + [aux_sym_address_family_token1] = ACTIONS(2552), + [aux_sym_batch_mode_token1] = ACTIONS(2552), + [aux_sym_bind_address_token1] = ACTIONS(2552), + [aux_sym_bind_interface_token1] = ACTIONS(2552), + [aux_sym_canonical_domains_token1] = ACTIONS(2552), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2552), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2552), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2552), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2552), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2552), + [aux_sym_certificate_file_token1] = ACTIONS(2552), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2552), + [aux_sym_check_host_ip_token1] = ACTIONS(2552), + [aux_sym_ciphers_token1] = ACTIONS(2552), + [aux_sym_cipher_token1] = ACTIONS(2554), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2552), + [aux_sym_compression_token1] = ACTIONS(2552), + [aux_sym_connection_attempts_token1] = ACTIONS(2552), + [aux_sym_connect_timeout_token1] = ACTIONS(2552), + [aux_sym_control_master_token1] = ACTIONS(2552), + [aux_sym_control_path_token1] = ACTIONS(2552), + [aux_sym_control_persist_token1] = ACTIONS(2552), + [aux_sym_dynamic_forward_token1] = ACTIONS(2552), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2552), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2552), + [aux_sym_escape_char_token1] = ACTIONS(2552), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2552), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2552), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2552), + [aux_sym_forward_agent_token1] = ACTIONS(2552), + [aux_sym_forward_x11_token1] = ACTIONS(2554), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2552), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2552), + [aux_sym_gateway_ports_token1] = ACTIONS(2552), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2552), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2552), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2552), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2552), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2552), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2552), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2552), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2552), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2552), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2552), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2552), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2552), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2552), + [aux_sym_host_key_alias_token1] = ACTIONS(2552), + [aux_sym_hostname_token1] = ACTIONS(2552), + [aux_sym_identities_only_token1] = ACTIONS(2552), + [aux_sym_identity_agent_token1] = ACTIONS(2552), + [aux_sym_identity_file_token1] = ACTIONS(2552), + [aux_sym_ignore_unknown_token1] = ACTIONS(2552), + [aux_sym_include_token1] = ACTIONS(2552), + [aux_sym_ip_qos_token1] = ACTIONS(2552), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2552), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2552), + [aux_sym_kex_algorithms_token1] = ACTIONS(2552), + [aux_sym_known_hosts_command_token1] = ACTIONS(2552), + [aux_sym_local_command_token1] = ACTIONS(2552), + [aux_sym_local_forward_token1] = ACTIONS(2552), + [aux_sym_log_level_token1] = ACTIONS(2552), + [aux_sym_log_verbose_token1] = ACTIONS(2552), + [aux_sym_macs_token1] = ACTIONS(2552), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2552), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2552), + [aux_sym_password_authentication_token1] = ACTIONS(2552), + [aux_sym_permit_local_command_token1] = ACTIONS(2552), + [aux_sym_permit_remote_open_token1] = ACTIONS(2552), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2552), + [aux_sym_port_token1] = ACTIONS(2552), + [aux_sym_preferred_authentications_token1] = ACTIONS(2552), + [aux_sym_protocol_token1] = ACTIONS(2552), + [aux_sym_proxy_command_token1] = ACTIONS(2552), + [aux_sym_proxy_jump_token1] = ACTIONS(2552), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2552), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2552), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2552), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2552), + [aux_sym_rekey_limit_token1] = ACTIONS(2552), + [aux_sym_remote_command_token1] = ACTIONS(2552), + [aux_sym_remote_forward_token1] = ACTIONS(2552), + [aux_sym_request_tty_token1] = ACTIONS(2552), + [aux_sym_required_rsa_size_token1] = ACTIONS(2552), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2552), + [aux_sym_security_key_provider_token1] = ACTIONS(2552), + [aux_sym_send_env_token1] = ACTIONS(2552), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2552), + [aux_sym_server_alive_interval_token1] = ACTIONS(2552), + [aux_sym_session_type_token1] = ACTIONS(2552), + [aux_sym_set_env_token1] = ACTIONS(2552), + [aux_sym_stdin_null_token1] = ACTIONS(2552), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2552), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2552), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2552), + [aux_sym_syslog_facility_token1] = ACTIONS(2552), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2552), + [aux_sym_keep_alive_token1] = ACTIONS(2552), + [aux_sym_tunnel_token1] = ACTIONS(2554), + [aux_sym_tunnel_device_token1] = ACTIONS(2552), + [aux_sym_update_host_keys_token1] = ACTIONS(2552), + [aux_sym_use_keychain_token1] = ACTIONS(2552), + [aux_sym_use_roaming_token1] = ACTIONS(2552), + [aux_sym_user_token1] = ACTIONS(2554), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2552), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2552), + [aux_sym_visual_host_key_token1] = ACTIONS(2552), + [aux_sym_xauth_location_token1] = ACTIONS(2552), }, [358] = { - [ts_builtin_sym_end] = ACTIONS(2549), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2551), - [anon_sym_DQUOTE] = ACTIONS(2553), - [aux_sym_match_token1] = ACTIONS(2549), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2549), - [aux_sym_address_family_token1] = ACTIONS(2549), - [aux_sym_batch_mode_token1] = ACTIONS(2549), - [aux_sym_bind_address_token1] = ACTIONS(2549), - [aux_sym_bind_interface_token1] = ACTIONS(2549), - [aux_sym_canonical_domains_token1] = ACTIONS(2549), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2549), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2549), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2549), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2549), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2549), - [aux_sym_certificate_file_token1] = ACTIONS(2549), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2549), - [aux_sym_check_host_ip_token1] = ACTIONS(2549), - [aux_sym_ciphers_token1] = ACTIONS(2549), - [aux_sym_cipher_token1] = ACTIONS(2551), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2549), - [aux_sym_compression_token1] = ACTIONS(2549), - [aux_sym_connection_attempts_token1] = ACTIONS(2549), - [aux_sym_connect_timeout_token1] = ACTIONS(2549), - [aux_sym_control_master_token1] = ACTIONS(2549), - [aux_sym_control_path_token1] = ACTIONS(2549), - [aux_sym_control_persist_token1] = ACTIONS(2549), - [aux_sym_dynamic_forward_token1] = ACTIONS(2549), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2549), - [aux_sym_escape_char_token1] = ACTIONS(2549), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2549), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2549), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2549), - [aux_sym_forward_agent_token1] = ACTIONS(2549), - [aux_sym_forward_x11_token1] = ACTIONS(2551), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2549), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2549), - [aux_sym_gateway_ports_token1] = ACTIONS(2549), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2549), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2549), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2549), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2549), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2549), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2549), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2549), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2549), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2549), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2549), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2549), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2549), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2549), - [aux_sym_host_key_alias_token1] = ACTIONS(2549), - [aux_sym_hostname_token1] = ACTIONS(2549), - [aux_sym_identities_only_token1] = ACTIONS(2549), - [aux_sym_identity_agent_token1] = ACTIONS(2549), - [aux_sym_identity_file_token1] = ACTIONS(2549), - [aux_sym_ignore_unknown_token1] = ACTIONS(2549), - [aux_sym_include_token1] = ACTIONS(2549), - [aux_sym_ip_qos_token1] = ACTIONS(2549), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2549), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2549), - [aux_sym_kex_algorithms_token1] = ACTIONS(2549), - [aux_sym_known_hosts_command_token1] = ACTIONS(2549), - [aux_sym_local_command_token1] = ACTIONS(2549), - [aux_sym_local_forward_token1] = ACTIONS(2549), - [aux_sym_log_level_token1] = ACTIONS(2549), - [aux_sym_log_verbose_token1] = ACTIONS(2549), - [aux_sym_macs_token1] = ACTIONS(2549), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2549), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2549), - [aux_sym_password_authentication_token1] = ACTIONS(2549), - [aux_sym_permit_local_command_token1] = ACTIONS(2549), - [aux_sym_permit_remote_open_token1] = ACTIONS(2549), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2549), - [aux_sym_port_token1] = ACTIONS(2549), - [aux_sym_preferred_authentications_token1] = ACTIONS(2549), - [aux_sym_protocol_token1] = ACTIONS(2549), - [aux_sym_proxy_command_token1] = ACTIONS(2549), - [aux_sym_proxy_jump_token1] = ACTIONS(2549), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2549), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2549), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2549), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2549), - [aux_sym_rekey_limit_token1] = ACTIONS(2549), - [aux_sym_remote_command_token1] = ACTIONS(2549), - [aux_sym_remote_forward_token1] = ACTIONS(2549), - [aux_sym_request_tty_token1] = ACTIONS(2549), - [aux_sym_required_rsa_size_token1] = ACTIONS(2549), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2549), - [aux_sym_security_key_provider_token1] = ACTIONS(2549), - [aux_sym_send_env_token1] = ACTIONS(2549), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2549), - [aux_sym_server_alive_interval_token1] = ACTIONS(2549), - [aux_sym_session_type_token1] = ACTIONS(2549), - [aux_sym_set_env_token1] = ACTIONS(2549), - [aux_sym_stdin_null_token1] = ACTIONS(2549), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2549), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2549), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2549), - [aux_sym_syslog_facility_token1] = ACTIONS(2549), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2549), - [aux_sym_keep_alive_token1] = ACTIONS(2549), - [aux_sym_tunnel_token1] = ACTIONS(2551), - [aux_sym_tunnel_device_token1] = ACTIONS(2549), - [aux_sym_update_host_keys_token1] = ACTIONS(2549), - [aux_sym_use_keychain_token1] = ACTIONS(2549), - [aux_sym_use_roaming_token1] = ACTIONS(2549), - [aux_sym_user_token1] = ACTIONS(2551), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2549), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2549), - [aux_sym_visual_host_key_token1] = ACTIONS(2549), - [aux_sym_xauth_location_token1] = ACTIONS(2549), + [ts_builtin_sym_end] = ACTIONS(2556), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2558), + [anon_sym_DQUOTE] = ACTIONS(2560), + [aux_sym_match_token1] = ACTIONS(2556), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2556), + [aux_sym_address_family_token1] = ACTIONS(2556), + [aux_sym_batch_mode_token1] = ACTIONS(2556), + [aux_sym_bind_address_token1] = ACTIONS(2556), + [aux_sym_bind_interface_token1] = ACTIONS(2556), + [aux_sym_canonical_domains_token1] = ACTIONS(2556), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2556), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2556), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2556), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2556), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2556), + [aux_sym_certificate_file_token1] = ACTIONS(2556), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2556), + [aux_sym_check_host_ip_token1] = ACTIONS(2556), + [aux_sym_ciphers_token1] = ACTIONS(2556), + [aux_sym_cipher_token1] = ACTIONS(2558), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2556), + [aux_sym_compression_token1] = ACTIONS(2556), + [aux_sym_connection_attempts_token1] = ACTIONS(2556), + [aux_sym_connect_timeout_token1] = ACTIONS(2556), + [aux_sym_control_master_token1] = ACTIONS(2556), + [aux_sym_control_path_token1] = ACTIONS(2556), + [aux_sym_control_persist_token1] = ACTIONS(2556), + [aux_sym_dynamic_forward_token1] = ACTIONS(2556), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2556), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2556), + [aux_sym_escape_char_token1] = ACTIONS(2556), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2556), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2556), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2556), + [aux_sym_forward_agent_token1] = ACTIONS(2556), + [aux_sym_forward_x11_token1] = ACTIONS(2558), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2556), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2556), + [aux_sym_gateway_ports_token1] = ACTIONS(2556), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2556), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2556), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2556), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2556), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2556), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2556), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2556), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2556), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2556), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2556), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2556), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2556), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2556), + [aux_sym_host_key_alias_token1] = ACTIONS(2556), + [aux_sym_hostname_token1] = ACTIONS(2556), + [aux_sym_identities_only_token1] = ACTIONS(2556), + [aux_sym_identity_agent_token1] = ACTIONS(2556), + [aux_sym_identity_file_token1] = ACTIONS(2556), + [aux_sym_ignore_unknown_token1] = ACTIONS(2556), + [aux_sym_include_token1] = ACTIONS(2556), + [aux_sym_ip_qos_token1] = ACTIONS(2556), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2556), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2556), + [aux_sym_kex_algorithms_token1] = ACTIONS(2556), + [aux_sym_known_hosts_command_token1] = ACTIONS(2556), + [aux_sym_local_command_token1] = ACTIONS(2556), + [aux_sym_local_forward_token1] = ACTIONS(2556), + [aux_sym_log_level_token1] = ACTIONS(2556), + [aux_sym_log_verbose_token1] = ACTIONS(2556), + [aux_sym_macs_token1] = ACTIONS(2556), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2556), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2556), + [aux_sym_password_authentication_token1] = ACTIONS(2556), + [aux_sym_permit_local_command_token1] = ACTIONS(2556), + [aux_sym_permit_remote_open_token1] = ACTIONS(2556), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2556), + [aux_sym_port_token1] = ACTIONS(2556), + [aux_sym_preferred_authentications_token1] = ACTIONS(2556), + [aux_sym_protocol_token1] = ACTIONS(2556), + [aux_sym_proxy_command_token1] = ACTIONS(2556), + [aux_sym_proxy_jump_token1] = ACTIONS(2556), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2556), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2556), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2556), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2556), + [aux_sym_rekey_limit_token1] = ACTIONS(2556), + [aux_sym_remote_command_token1] = ACTIONS(2556), + [aux_sym_remote_forward_token1] = ACTIONS(2556), + [aux_sym_request_tty_token1] = ACTIONS(2556), + [aux_sym_required_rsa_size_token1] = ACTIONS(2556), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2556), + [aux_sym_security_key_provider_token1] = ACTIONS(2556), + [aux_sym_send_env_token1] = ACTIONS(2556), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2556), + [aux_sym_server_alive_interval_token1] = ACTIONS(2556), + [aux_sym_session_type_token1] = ACTIONS(2556), + [aux_sym_set_env_token1] = ACTIONS(2556), + [aux_sym_stdin_null_token1] = ACTIONS(2556), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2556), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2556), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2556), + [aux_sym_syslog_facility_token1] = ACTIONS(2556), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2556), + [aux_sym_keep_alive_token1] = ACTIONS(2556), + [aux_sym_tunnel_token1] = ACTIONS(2558), + [aux_sym_tunnel_device_token1] = ACTIONS(2556), + [aux_sym_update_host_keys_token1] = ACTIONS(2556), + [aux_sym_use_keychain_token1] = ACTIONS(2556), + [aux_sym_use_roaming_token1] = ACTIONS(2556), + [aux_sym_user_token1] = ACTIONS(2558), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2556), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2556), + [aux_sym_visual_host_key_token1] = ACTIONS(2556), + [aux_sym_xauth_location_token1] = ACTIONS(2556), }, [359] = { - [ts_builtin_sym_end] = ACTIONS(2555), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2557), - [anon_sym_DQUOTE] = ACTIONS(2555), - [aux_sym_match_token1] = ACTIONS(2555), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2555), - [aux_sym_address_family_token1] = ACTIONS(2555), - [aux_sym_batch_mode_token1] = ACTIONS(2555), - [aux_sym_bind_address_token1] = ACTIONS(2555), - [aux_sym_bind_interface_token1] = ACTIONS(2555), - [aux_sym_canonical_domains_token1] = ACTIONS(2555), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2555), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2555), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2555), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2555), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2555), - [aux_sym_certificate_file_token1] = ACTIONS(2555), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2555), - [aux_sym_check_host_ip_token1] = ACTIONS(2555), - [aux_sym_ciphers_token1] = ACTIONS(2555), - [aux_sym_cipher_token1] = ACTIONS(2557), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2555), - [aux_sym_compression_token1] = ACTIONS(2555), - [aux_sym_connection_attempts_token1] = ACTIONS(2555), - [aux_sym_connect_timeout_token1] = ACTIONS(2555), - [aux_sym_control_master_token1] = ACTIONS(2555), - [aux_sym_control_path_token1] = ACTIONS(2555), - [aux_sym_control_persist_token1] = ACTIONS(2555), - [aux_sym_dynamic_forward_token1] = ACTIONS(2555), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2555), - [aux_sym_escape_char_token1] = ACTIONS(2555), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2555), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2555), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2555), - [aux_sym_forward_agent_token1] = ACTIONS(2555), - [aux_sym_forward_x11_token1] = ACTIONS(2557), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2555), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2555), - [aux_sym_gateway_ports_token1] = ACTIONS(2555), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2555), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2555), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2555), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2555), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2555), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2555), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2555), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2555), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2555), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2555), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2555), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2555), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2555), - [aux_sym_host_key_alias_token1] = ACTIONS(2555), - [aux_sym_hostname_token1] = ACTIONS(2555), - [aux_sym_identities_only_token1] = ACTIONS(2555), - [aux_sym_identity_agent_token1] = ACTIONS(2555), - [aux_sym_identity_file_token1] = ACTIONS(2555), - [aux_sym_ignore_unknown_token1] = ACTIONS(2555), - [aux_sym_include_token1] = ACTIONS(2555), - [aux_sym_ip_qos_token1] = ACTIONS(2555), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2555), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2555), - [aux_sym_kex_algorithms_token1] = ACTIONS(2555), - [aux_sym_known_hosts_command_token1] = ACTIONS(2555), - [aux_sym_local_command_token1] = ACTIONS(2555), - [aux_sym_local_forward_token1] = ACTIONS(2555), - [aux_sym_log_level_token1] = ACTIONS(2555), - [aux_sym_log_verbose_token1] = ACTIONS(2555), - [aux_sym_macs_token1] = ACTIONS(2555), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2555), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2555), - [aux_sym_password_authentication_token1] = ACTIONS(2555), - [aux_sym_permit_local_command_token1] = ACTIONS(2555), - [aux_sym_permit_remote_open_token1] = ACTIONS(2555), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2555), - [aux_sym_port_token1] = ACTIONS(2555), - [aux_sym_preferred_authentications_token1] = ACTIONS(2555), - [aux_sym_protocol_token1] = ACTIONS(2555), - [aux_sym_proxy_command_token1] = ACTIONS(2555), - [aux_sym_proxy_jump_token1] = ACTIONS(2555), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2555), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2555), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2555), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2555), - [aux_sym_rekey_limit_token1] = ACTIONS(2555), - [aux_sym_remote_command_token1] = ACTIONS(2555), - [aux_sym_remote_forward_token1] = ACTIONS(2555), - [aux_sym_request_tty_token1] = ACTIONS(2555), - [aux_sym_required_rsa_size_token1] = ACTIONS(2555), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2555), - [aux_sym_security_key_provider_token1] = ACTIONS(2555), - [aux_sym_send_env_token1] = ACTIONS(2555), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2555), - [aux_sym_server_alive_interval_token1] = ACTIONS(2555), - [aux_sym_session_type_token1] = ACTIONS(2555), - [aux_sym_set_env_token1] = ACTIONS(2555), - [aux_sym_stdin_null_token1] = ACTIONS(2555), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2555), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2555), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2555), - [aux_sym_syslog_facility_token1] = ACTIONS(2555), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2555), - [aux_sym_keep_alive_token1] = ACTIONS(2555), - [aux_sym_tunnel_token1] = ACTIONS(2557), - [aux_sym_tunnel_device_token1] = ACTIONS(2555), - [aux_sym_update_host_keys_token1] = ACTIONS(2555), - [aux_sym_use_keychain_token1] = ACTIONS(2555), - [aux_sym_use_roaming_token1] = ACTIONS(2555), - [aux_sym_user_token1] = ACTIONS(2557), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2555), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2555), - [aux_sym_visual_host_key_token1] = ACTIONS(2555), - [aux_sym_xauth_location_token1] = ACTIONS(2555), + [ts_builtin_sym_end] = ACTIONS(2562), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2562), + [aux_sym_match_token1] = ACTIONS(2562), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2562), + [aux_sym_address_family_token1] = ACTIONS(2562), + [aux_sym_batch_mode_token1] = ACTIONS(2562), + [aux_sym_bind_address_token1] = ACTIONS(2562), + [aux_sym_bind_interface_token1] = ACTIONS(2562), + [aux_sym_canonical_domains_token1] = ACTIONS(2562), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2562), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2562), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2562), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2562), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2562), + [aux_sym_certificate_file_token1] = ACTIONS(2562), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2562), + [aux_sym_check_host_ip_token1] = ACTIONS(2562), + [aux_sym_ciphers_token1] = ACTIONS(2562), + [aux_sym_cipher_token1] = ACTIONS(2564), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2562), + [aux_sym_compression_token1] = ACTIONS(2562), + [aux_sym_connection_attempts_token1] = ACTIONS(2562), + [aux_sym_connect_timeout_token1] = ACTIONS(2562), + [aux_sym_control_master_token1] = ACTIONS(2562), + [aux_sym_control_path_token1] = ACTIONS(2562), + [aux_sym_control_persist_token1] = ACTIONS(2562), + [aux_sym_dynamic_forward_token1] = ACTIONS(2562), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2562), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2562), + [aux_sym_escape_char_token1] = ACTIONS(2562), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2562), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2562), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2562), + [aux_sym_forward_agent_token1] = ACTIONS(2562), + [aux_sym_forward_x11_token1] = ACTIONS(2564), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2562), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2562), + [aux_sym_gateway_ports_token1] = ACTIONS(2562), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2562), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2562), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2562), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2562), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2562), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2562), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2562), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2562), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2562), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2562), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2562), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2562), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2562), + [aux_sym_host_key_alias_token1] = ACTIONS(2562), + [aux_sym_hostname_token1] = ACTIONS(2562), + [aux_sym_identities_only_token1] = ACTIONS(2562), + [aux_sym_identity_agent_token1] = ACTIONS(2562), + [aux_sym_identity_file_token1] = ACTIONS(2562), + [aux_sym_ignore_unknown_token1] = ACTIONS(2562), + [aux_sym_include_token1] = ACTIONS(2562), + [aux_sym_ip_qos_token1] = ACTIONS(2562), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2562), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2562), + [aux_sym_kex_algorithms_token1] = ACTIONS(2562), + [aux_sym_known_hosts_command_token1] = ACTIONS(2562), + [aux_sym_local_command_token1] = ACTIONS(2562), + [aux_sym_local_forward_token1] = ACTIONS(2562), + [aux_sym_log_level_token1] = ACTIONS(2562), + [aux_sym_log_verbose_token1] = ACTIONS(2562), + [aux_sym_macs_token1] = ACTIONS(2562), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2562), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2562), + [aux_sym_password_authentication_token1] = ACTIONS(2562), + [aux_sym_permit_local_command_token1] = ACTIONS(2562), + [aux_sym_permit_remote_open_token1] = ACTIONS(2562), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2562), + [aux_sym_port_token1] = ACTIONS(2562), + [aux_sym_preferred_authentications_token1] = ACTIONS(2562), + [aux_sym_protocol_token1] = ACTIONS(2562), + [aux_sym_proxy_command_token1] = ACTIONS(2562), + [aux_sym_proxy_jump_token1] = ACTIONS(2562), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2562), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2562), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2562), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2562), + [aux_sym_rekey_limit_token1] = ACTIONS(2562), + [aux_sym_remote_command_token1] = ACTIONS(2562), + [aux_sym_remote_forward_token1] = ACTIONS(2562), + [aux_sym_request_tty_token1] = ACTIONS(2562), + [aux_sym_required_rsa_size_token1] = ACTIONS(2562), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2562), + [aux_sym_security_key_provider_token1] = ACTIONS(2562), + [aux_sym_send_env_token1] = ACTIONS(2562), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2562), + [aux_sym_server_alive_interval_token1] = ACTIONS(2562), + [aux_sym_session_type_token1] = ACTIONS(2562), + [aux_sym_set_env_token1] = ACTIONS(2562), + [aux_sym_stdin_null_token1] = ACTIONS(2562), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2562), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2562), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2562), + [aux_sym_syslog_facility_token1] = ACTIONS(2562), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2562), + [aux_sym_keep_alive_token1] = ACTIONS(2562), + [aux_sym_tunnel_token1] = ACTIONS(2564), + [aux_sym_tunnel_device_token1] = ACTIONS(2562), + [aux_sym_update_host_keys_token1] = ACTIONS(2562), + [aux_sym_use_keychain_token1] = ACTIONS(2562), + [aux_sym_use_roaming_token1] = ACTIONS(2562), + [aux_sym_user_token1] = ACTIONS(2564), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2562), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2562), + [aux_sym_visual_host_key_token1] = ACTIONS(2562), + [aux_sym_xauth_location_token1] = ACTIONS(2562), }, [360] = { - [ts_builtin_sym_end] = ACTIONS(2559), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2563), - [aux_sym_match_token1] = ACTIONS(2559), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2559), - [aux_sym_address_family_token1] = ACTIONS(2559), - [aux_sym_batch_mode_token1] = ACTIONS(2559), - [aux_sym_bind_address_token1] = ACTIONS(2559), - [aux_sym_bind_interface_token1] = ACTIONS(2559), - [aux_sym_canonical_domains_token1] = ACTIONS(2559), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2559), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2559), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2559), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2559), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2559), - [aux_sym_certificate_file_token1] = ACTIONS(2559), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2559), - [aux_sym_check_host_ip_token1] = ACTIONS(2559), - [aux_sym_ciphers_token1] = ACTIONS(2559), - [aux_sym_cipher_token1] = ACTIONS(2561), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2559), - [aux_sym_compression_token1] = ACTIONS(2559), - [aux_sym_connection_attempts_token1] = ACTIONS(2559), - [aux_sym_connect_timeout_token1] = ACTIONS(2559), - [aux_sym_control_master_token1] = ACTIONS(2559), - [aux_sym_control_path_token1] = ACTIONS(2559), - [aux_sym_control_persist_token1] = ACTIONS(2559), - [aux_sym_dynamic_forward_token1] = ACTIONS(2559), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2559), - [aux_sym_escape_char_token1] = ACTIONS(2559), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2559), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2559), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2559), - [aux_sym_forward_agent_token1] = ACTIONS(2559), - [aux_sym_forward_x11_token1] = ACTIONS(2561), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2559), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2559), - [aux_sym_gateway_ports_token1] = ACTIONS(2559), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2559), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2559), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2559), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2559), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2559), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2559), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2559), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2559), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2559), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2559), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2559), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2559), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2559), - [aux_sym_host_key_alias_token1] = ACTIONS(2559), - [aux_sym_hostname_token1] = ACTIONS(2559), - [aux_sym_identities_only_token1] = ACTIONS(2559), - [aux_sym_identity_agent_token1] = ACTIONS(2559), - [aux_sym_identity_file_token1] = ACTIONS(2559), - [aux_sym_ignore_unknown_token1] = ACTIONS(2559), - [aux_sym_include_token1] = ACTIONS(2559), - [aux_sym_ip_qos_token1] = ACTIONS(2559), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2559), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2559), - [aux_sym_kex_algorithms_token1] = ACTIONS(2559), - [aux_sym_known_hosts_command_token1] = ACTIONS(2559), - [aux_sym_local_command_token1] = ACTIONS(2559), - [aux_sym_local_forward_token1] = ACTIONS(2559), - [aux_sym_log_level_token1] = ACTIONS(2559), - [aux_sym_log_verbose_token1] = ACTIONS(2559), - [aux_sym_macs_token1] = ACTIONS(2559), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2559), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2559), - [aux_sym_password_authentication_token1] = ACTIONS(2559), - [aux_sym_permit_local_command_token1] = ACTIONS(2559), - [aux_sym_permit_remote_open_token1] = ACTIONS(2559), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2559), - [aux_sym_port_token1] = ACTIONS(2559), - [aux_sym_preferred_authentications_token1] = ACTIONS(2559), - [aux_sym_protocol_token1] = ACTIONS(2559), - [aux_sym_proxy_command_token1] = ACTIONS(2559), - [aux_sym_proxy_jump_token1] = ACTIONS(2559), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2559), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2559), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2559), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2559), - [aux_sym_rekey_limit_token1] = ACTIONS(2559), - [aux_sym_remote_command_token1] = ACTIONS(2559), - [aux_sym_remote_forward_token1] = ACTIONS(2559), - [aux_sym_request_tty_token1] = ACTIONS(2559), - [aux_sym_required_rsa_size_token1] = ACTIONS(2559), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2559), - [aux_sym_security_key_provider_token1] = ACTIONS(2559), - [aux_sym_send_env_token1] = ACTIONS(2559), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2559), - [aux_sym_server_alive_interval_token1] = ACTIONS(2559), - [aux_sym_session_type_token1] = ACTIONS(2559), - [aux_sym_set_env_token1] = ACTIONS(2559), - [aux_sym_stdin_null_token1] = ACTIONS(2559), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2559), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2559), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2559), - [aux_sym_syslog_facility_token1] = ACTIONS(2559), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2559), - [aux_sym_keep_alive_token1] = ACTIONS(2559), - [aux_sym_tunnel_token1] = ACTIONS(2561), - [aux_sym_tunnel_device_token1] = ACTIONS(2559), - [aux_sym_update_host_keys_token1] = ACTIONS(2559), - [aux_sym_use_keychain_token1] = ACTIONS(2559), - [aux_sym_use_roaming_token1] = ACTIONS(2559), - [aux_sym_user_token1] = ACTIONS(2561), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2559), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2559), - [aux_sym_visual_host_key_token1] = ACTIONS(2559), - [aux_sym_xauth_location_token1] = ACTIONS(2559), + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2568), + [anon_sym_DQUOTE] = ACTIONS(2570), + [aux_sym_match_token1] = ACTIONS(2566), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2566), + [aux_sym_address_family_token1] = ACTIONS(2566), + [aux_sym_batch_mode_token1] = ACTIONS(2566), + [aux_sym_bind_address_token1] = ACTIONS(2566), + [aux_sym_bind_interface_token1] = ACTIONS(2566), + [aux_sym_canonical_domains_token1] = ACTIONS(2566), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2566), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2566), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2566), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2566), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2566), + [aux_sym_certificate_file_token1] = ACTIONS(2566), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2566), + [aux_sym_check_host_ip_token1] = ACTIONS(2566), + [aux_sym_ciphers_token1] = ACTIONS(2566), + [aux_sym_cipher_token1] = ACTIONS(2568), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2566), + [aux_sym_compression_token1] = ACTIONS(2566), + [aux_sym_connection_attempts_token1] = ACTIONS(2566), + [aux_sym_connect_timeout_token1] = ACTIONS(2566), + [aux_sym_control_master_token1] = ACTIONS(2566), + [aux_sym_control_path_token1] = ACTIONS(2566), + [aux_sym_control_persist_token1] = ACTIONS(2566), + [aux_sym_dynamic_forward_token1] = ACTIONS(2566), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2566), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2566), + [aux_sym_escape_char_token1] = ACTIONS(2566), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2566), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2566), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2566), + [aux_sym_forward_agent_token1] = ACTIONS(2566), + [aux_sym_forward_x11_token1] = ACTIONS(2568), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2566), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2566), + [aux_sym_gateway_ports_token1] = ACTIONS(2566), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2566), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2566), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2566), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2566), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2566), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2566), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2566), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2566), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2566), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2566), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2566), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2566), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2566), + [aux_sym_host_key_alias_token1] = ACTIONS(2566), + [aux_sym_hostname_token1] = ACTIONS(2566), + [aux_sym_identities_only_token1] = ACTIONS(2566), + [aux_sym_identity_agent_token1] = ACTIONS(2566), + [aux_sym_identity_file_token1] = ACTIONS(2566), + [aux_sym_ignore_unknown_token1] = ACTIONS(2566), + [aux_sym_include_token1] = ACTIONS(2566), + [aux_sym_ip_qos_token1] = ACTIONS(2566), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2566), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2566), + [aux_sym_kex_algorithms_token1] = ACTIONS(2566), + [aux_sym_known_hosts_command_token1] = ACTIONS(2566), + [aux_sym_local_command_token1] = ACTIONS(2566), + [aux_sym_local_forward_token1] = ACTIONS(2566), + [aux_sym_log_level_token1] = ACTIONS(2566), + [aux_sym_log_verbose_token1] = ACTIONS(2566), + [aux_sym_macs_token1] = ACTIONS(2566), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2566), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2566), + [aux_sym_password_authentication_token1] = ACTIONS(2566), + [aux_sym_permit_local_command_token1] = ACTIONS(2566), + [aux_sym_permit_remote_open_token1] = ACTIONS(2566), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2566), + [aux_sym_port_token1] = ACTIONS(2566), + [aux_sym_preferred_authentications_token1] = ACTIONS(2566), + [aux_sym_protocol_token1] = ACTIONS(2566), + [aux_sym_proxy_command_token1] = ACTIONS(2566), + [aux_sym_proxy_jump_token1] = ACTIONS(2566), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2566), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2566), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2566), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2566), + [aux_sym_rekey_limit_token1] = ACTIONS(2566), + [aux_sym_remote_command_token1] = ACTIONS(2566), + [aux_sym_remote_forward_token1] = ACTIONS(2566), + [aux_sym_request_tty_token1] = ACTIONS(2566), + [aux_sym_required_rsa_size_token1] = ACTIONS(2566), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2566), + [aux_sym_security_key_provider_token1] = ACTIONS(2566), + [aux_sym_send_env_token1] = ACTIONS(2566), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2566), + [aux_sym_server_alive_interval_token1] = ACTIONS(2566), + [aux_sym_session_type_token1] = ACTIONS(2566), + [aux_sym_set_env_token1] = ACTIONS(2566), + [aux_sym_stdin_null_token1] = ACTIONS(2566), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2566), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2566), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2566), + [aux_sym_syslog_facility_token1] = ACTIONS(2566), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2566), + [aux_sym_keep_alive_token1] = ACTIONS(2566), + [aux_sym_tunnel_token1] = ACTIONS(2568), + [aux_sym_tunnel_device_token1] = ACTIONS(2566), + [aux_sym_update_host_keys_token1] = ACTIONS(2566), + [aux_sym_use_keychain_token1] = ACTIONS(2566), + [aux_sym_use_roaming_token1] = ACTIONS(2566), + [aux_sym_user_token1] = ACTIONS(2568), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2566), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2566), + [aux_sym_visual_host_key_token1] = ACTIONS(2566), + [aux_sym_xauth_location_token1] = ACTIONS(2566), }, [361] = { - [ts_builtin_sym_end] = ACTIONS(2565), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2565), - [aux_sym_match_token1] = ACTIONS(2565), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2565), - [aux_sym_address_family_token1] = ACTIONS(2565), - [aux_sym_batch_mode_token1] = ACTIONS(2565), - [aux_sym_bind_address_token1] = ACTIONS(2565), - [aux_sym_bind_interface_token1] = ACTIONS(2565), - [aux_sym_canonical_domains_token1] = ACTIONS(2565), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2565), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2565), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2565), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2565), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2565), - [aux_sym_certificate_file_token1] = ACTIONS(2565), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2565), - [aux_sym_check_host_ip_token1] = ACTIONS(2565), - [aux_sym_ciphers_token1] = ACTIONS(2565), - [aux_sym_cipher_token1] = ACTIONS(2567), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2565), - [aux_sym_compression_token1] = ACTIONS(2565), - [aux_sym_connection_attempts_token1] = ACTIONS(2565), - [aux_sym_connect_timeout_token1] = ACTIONS(2565), - [aux_sym_control_master_token1] = ACTIONS(2565), - [aux_sym_control_path_token1] = ACTIONS(2565), - [aux_sym_control_persist_token1] = ACTIONS(2565), - [aux_sym_dynamic_forward_token1] = ACTIONS(2565), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2565), - [aux_sym_escape_char_token1] = ACTIONS(2565), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2565), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2565), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2565), - [aux_sym_forward_agent_token1] = ACTIONS(2565), - [aux_sym_forward_x11_token1] = ACTIONS(2567), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2565), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2565), - [aux_sym_gateway_ports_token1] = ACTIONS(2565), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2565), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2565), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2565), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2565), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2565), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2565), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2565), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2565), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2565), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2565), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2565), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2565), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2565), - [aux_sym_host_key_alias_token1] = ACTIONS(2565), - [aux_sym_hostname_token1] = ACTIONS(2565), - [aux_sym_identities_only_token1] = ACTIONS(2565), - [aux_sym_identity_agent_token1] = ACTIONS(2565), - [aux_sym_identity_file_token1] = ACTIONS(2565), - [aux_sym_ignore_unknown_token1] = ACTIONS(2565), - [aux_sym_include_token1] = ACTIONS(2565), - [aux_sym_ip_qos_token1] = ACTIONS(2565), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2565), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2565), - [aux_sym_kex_algorithms_token1] = ACTIONS(2565), - [aux_sym_known_hosts_command_token1] = ACTIONS(2565), - [aux_sym_local_command_token1] = ACTIONS(2565), - [aux_sym_local_forward_token1] = ACTIONS(2565), - [aux_sym_log_level_token1] = ACTIONS(2565), - [aux_sym_log_verbose_token1] = ACTIONS(2565), - [aux_sym_macs_token1] = ACTIONS(2565), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2565), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2565), - [aux_sym_password_authentication_token1] = ACTIONS(2565), - [aux_sym_permit_local_command_token1] = ACTIONS(2565), - [aux_sym_permit_remote_open_token1] = ACTIONS(2565), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2565), - [aux_sym_port_token1] = ACTIONS(2565), - [aux_sym_preferred_authentications_token1] = ACTIONS(2565), - [aux_sym_protocol_token1] = ACTIONS(2565), - [aux_sym_proxy_command_token1] = ACTIONS(2565), - [aux_sym_proxy_jump_token1] = ACTIONS(2565), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2565), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2565), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2565), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2565), - [aux_sym_rekey_limit_token1] = ACTIONS(2565), - [aux_sym_remote_command_token1] = ACTIONS(2565), - [aux_sym_remote_forward_token1] = ACTIONS(2565), - [aux_sym_request_tty_token1] = ACTIONS(2565), - [aux_sym_required_rsa_size_token1] = ACTIONS(2565), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2565), - [aux_sym_security_key_provider_token1] = ACTIONS(2565), - [aux_sym_send_env_token1] = ACTIONS(2565), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2565), - [aux_sym_server_alive_interval_token1] = ACTIONS(2565), - [aux_sym_session_type_token1] = ACTIONS(2565), - [aux_sym_set_env_token1] = ACTIONS(2565), - [aux_sym_stdin_null_token1] = ACTIONS(2565), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2565), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2565), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2565), - [aux_sym_syslog_facility_token1] = ACTIONS(2565), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2565), - [aux_sym_keep_alive_token1] = ACTIONS(2565), - [aux_sym_tunnel_token1] = ACTIONS(2567), - [aux_sym_tunnel_device_token1] = ACTIONS(2565), - [aux_sym_update_host_keys_token1] = ACTIONS(2565), - [aux_sym_use_keychain_token1] = ACTIONS(2565), - [aux_sym_use_roaming_token1] = ACTIONS(2565), - [aux_sym_user_token1] = ACTIONS(2567), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2565), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2565), - [aux_sym_visual_host_key_token1] = ACTIONS(2565), - [aux_sym_xauth_location_token1] = ACTIONS(2565), + [ts_builtin_sym_end] = ACTIONS(2572), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2574), + [anon_sym_DQUOTE] = ACTIONS(2576), + [aux_sym_match_token1] = ACTIONS(2572), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2572), + [aux_sym_address_family_token1] = ACTIONS(2572), + [aux_sym_batch_mode_token1] = ACTIONS(2572), + [aux_sym_bind_address_token1] = ACTIONS(2572), + [aux_sym_bind_interface_token1] = ACTIONS(2572), + [aux_sym_canonical_domains_token1] = ACTIONS(2572), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2572), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2572), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2572), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2572), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2572), + [aux_sym_certificate_file_token1] = ACTIONS(2572), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2572), + [aux_sym_check_host_ip_token1] = ACTIONS(2572), + [aux_sym_ciphers_token1] = ACTIONS(2572), + [aux_sym_cipher_token1] = ACTIONS(2574), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2572), + [aux_sym_compression_token1] = ACTIONS(2572), + [aux_sym_connection_attempts_token1] = ACTIONS(2572), + [aux_sym_connect_timeout_token1] = ACTIONS(2572), + [aux_sym_control_master_token1] = ACTIONS(2572), + [aux_sym_control_path_token1] = ACTIONS(2572), + [aux_sym_control_persist_token1] = ACTIONS(2572), + [aux_sym_dynamic_forward_token1] = ACTIONS(2572), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2572), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2572), + [aux_sym_escape_char_token1] = ACTIONS(2572), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2572), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2572), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2572), + [aux_sym_forward_agent_token1] = ACTIONS(2572), + [aux_sym_forward_x11_token1] = ACTIONS(2574), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2572), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2572), + [aux_sym_gateway_ports_token1] = ACTIONS(2572), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2572), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2572), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2572), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2572), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2572), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2572), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2572), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2572), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2572), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2572), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2572), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2572), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2572), + [aux_sym_host_key_alias_token1] = ACTIONS(2572), + [aux_sym_hostname_token1] = ACTIONS(2572), + [aux_sym_identities_only_token1] = ACTIONS(2572), + [aux_sym_identity_agent_token1] = ACTIONS(2572), + [aux_sym_identity_file_token1] = ACTIONS(2572), + [aux_sym_ignore_unknown_token1] = ACTIONS(2572), + [aux_sym_include_token1] = ACTIONS(2572), + [aux_sym_ip_qos_token1] = ACTIONS(2572), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2572), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2572), + [aux_sym_kex_algorithms_token1] = ACTIONS(2572), + [aux_sym_known_hosts_command_token1] = ACTIONS(2572), + [aux_sym_local_command_token1] = ACTIONS(2572), + [aux_sym_local_forward_token1] = ACTIONS(2572), + [aux_sym_log_level_token1] = ACTIONS(2572), + [aux_sym_log_verbose_token1] = ACTIONS(2572), + [aux_sym_macs_token1] = ACTIONS(2572), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2572), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2572), + [aux_sym_password_authentication_token1] = ACTIONS(2572), + [aux_sym_permit_local_command_token1] = ACTIONS(2572), + [aux_sym_permit_remote_open_token1] = ACTIONS(2572), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2572), + [aux_sym_port_token1] = ACTIONS(2572), + [aux_sym_preferred_authentications_token1] = ACTIONS(2572), + [aux_sym_protocol_token1] = ACTIONS(2572), + [aux_sym_proxy_command_token1] = ACTIONS(2572), + [aux_sym_proxy_jump_token1] = ACTIONS(2572), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2572), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2572), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2572), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2572), + [aux_sym_rekey_limit_token1] = ACTIONS(2572), + [aux_sym_remote_command_token1] = ACTIONS(2572), + [aux_sym_remote_forward_token1] = ACTIONS(2572), + [aux_sym_request_tty_token1] = ACTIONS(2572), + [aux_sym_required_rsa_size_token1] = ACTIONS(2572), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2572), + [aux_sym_security_key_provider_token1] = ACTIONS(2572), + [aux_sym_send_env_token1] = ACTIONS(2572), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2572), + [aux_sym_server_alive_interval_token1] = ACTIONS(2572), + [aux_sym_session_type_token1] = ACTIONS(2572), + [aux_sym_set_env_token1] = ACTIONS(2572), + [aux_sym_stdin_null_token1] = ACTIONS(2572), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2572), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2572), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2572), + [aux_sym_syslog_facility_token1] = ACTIONS(2572), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2572), + [aux_sym_keep_alive_token1] = ACTIONS(2572), + [aux_sym_tunnel_token1] = ACTIONS(2574), + [aux_sym_tunnel_device_token1] = ACTIONS(2572), + [aux_sym_update_host_keys_token1] = ACTIONS(2572), + [aux_sym_use_keychain_token1] = ACTIONS(2572), + [aux_sym_use_roaming_token1] = ACTIONS(2572), + [aux_sym_user_token1] = ACTIONS(2574), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2572), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2572), + [aux_sym_visual_host_key_token1] = ACTIONS(2572), + [aux_sym_xauth_location_token1] = ACTIONS(2572), }, [362] = { - [ts_builtin_sym_end] = ACTIONS(2569), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2573), - [aux_sym_match_token1] = ACTIONS(2569), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2569), - [aux_sym_address_family_token1] = ACTIONS(2569), - [aux_sym_batch_mode_token1] = ACTIONS(2569), - [aux_sym_bind_address_token1] = ACTIONS(2569), - [aux_sym_bind_interface_token1] = ACTIONS(2569), - [aux_sym_canonical_domains_token1] = ACTIONS(2569), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2569), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2569), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2569), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2569), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2569), - [aux_sym_certificate_file_token1] = ACTIONS(2569), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2569), - [aux_sym_check_host_ip_token1] = ACTIONS(2569), - [aux_sym_ciphers_token1] = ACTIONS(2569), - [aux_sym_cipher_token1] = ACTIONS(2571), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2569), - [aux_sym_compression_token1] = ACTIONS(2569), - [aux_sym_connection_attempts_token1] = ACTIONS(2569), - [aux_sym_connect_timeout_token1] = ACTIONS(2569), - [aux_sym_control_master_token1] = ACTIONS(2569), - [aux_sym_control_path_token1] = ACTIONS(2569), - [aux_sym_control_persist_token1] = ACTIONS(2569), - [aux_sym_dynamic_forward_token1] = ACTIONS(2569), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2569), - [aux_sym_escape_char_token1] = ACTIONS(2569), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2569), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2569), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2569), - [aux_sym_forward_agent_token1] = ACTIONS(2569), - [aux_sym_forward_x11_token1] = ACTIONS(2571), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2569), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2569), - [aux_sym_gateway_ports_token1] = ACTIONS(2569), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2569), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2569), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2569), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2569), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2569), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2569), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2569), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2569), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2569), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2569), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2569), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2569), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2569), - [aux_sym_host_key_alias_token1] = ACTIONS(2569), - [aux_sym_hostname_token1] = ACTIONS(2569), - [aux_sym_identities_only_token1] = ACTIONS(2569), - [aux_sym_identity_agent_token1] = ACTIONS(2569), - [aux_sym_identity_file_token1] = ACTIONS(2569), - [aux_sym_ignore_unknown_token1] = ACTIONS(2569), - [aux_sym_include_token1] = ACTIONS(2569), - [aux_sym_ip_qos_token1] = ACTIONS(2569), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2569), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2569), - [aux_sym_kex_algorithms_token1] = ACTIONS(2569), - [aux_sym_known_hosts_command_token1] = ACTIONS(2569), - [aux_sym_local_command_token1] = ACTIONS(2569), - [aux_sym_local_forward_token1] = ACTIONS(2569), - [aux_sym_log_level_token1] = ACTIONS(2569), - [aux_sym_log_verbose_token1] = ACTIONS(2569), - [aux_sym_macs_token1] = ACTIONS(2569), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2569), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2569), - [aux_sym_password_authentication_token1] = ACTIONS(2569), - [aux_sym_permit_local_command_token1] = ACTIONS(2569), - [aux_sym_permit_remote_open_token1] = ACTIONS(2569), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2569), - [aux_sym_port_token1] = ACTIONS(2569), - [aux_sym_preferred_authentications_token1] = ACTIONS(2569), - [aux_sym_protocol_token1] = ACTIONS(2569), - [aux_sym_proxy_command_token1] = ACTIONS(2569), - [aux_sym_proxy_jump_token1] = ACTIONS(2569), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2569), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2569), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2569), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2569), - [aux_sym_rekey_limit_token1] = ACTIONS(2569), - [aux_sym_remote_command_token1] = ACTIONS(2569), - [aux_sym_remote_forward_token1] = ACTIONS(2569), - [aux_sym_request_tty_token1] = ACTIONS(2569), - [aux_sym_required_rsa_size_token1] = ACTIONS(2569), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2569), - [aux_sym_security_key_provider_token1] = ACTIONS(2569), - [aux_sym_send_env_token1] = ACTIONS(2569), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2569), - [aux_sym_server_alive_interval_token1] = ACTIONS(2569), - [aux_sym_session_type_token1] = ACTIONS(2569), - [aux_sym_set_env_token1] = ACTIONS(2569), - [aux_sym_stdin_null_token1] = ACTIONS(2569), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2569), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2569), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2569), - [aux_sym_syslog_facility_token1] = ACTIONS(2569), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2569), - [aux_sym_keep_alive_token1] = ACTIONS(2569), - [aux_sym_tunnel_token1] = ACTIONS(2571), - [aux_sym_tunnel_device_token1] = ACTIONS(2569), - [aux_sym_update_host_keys_token1] = ACTIONS(2569), - [aux_sym_use_keychain_token1] = ACTIONS(2569), - [aux_sym_use_roaming_token1] = ACTIONS(2569), - [aux_sym_user_token1] = ACTIONS(2571), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2569), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2569), - [aux_sym_visual_host_key_token1] = ACTIONS(2569), - [aux_sym_xauth_location_token1] = ACTIONS(2569), + [ts_builtin_sym_end] = ACTIONS(2578), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2580), + [anon_sym_DQUOTE] = ACTIONS(2578), + [aux_sym_match_token1] = ACTIONS(2578), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2578), + [aux_sym_address_family_token1] = ACTIONS(2578), + [aux_sym_batch_mode_token1] = ACTIONS(2578), + [aux_sym_bind_address_token1] = ACTIONS(2578), + [aux_sym_bind_interface_token1] = ACTIONS(2578), + [aux_sym_canonical_domains_token1] = ACTIONS(2578), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2578), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2578), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2578), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2578), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2578), + [aux_sym_certificate_file_token1] = ACTIONS(2578), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2578), + [aux_sym_check_host_ip_token1] = ACTIONS(2578), + [aux_sym_ciphers_token1] = ACTIONS(2578), + [aux_sym_cipher_token1] = ACTIONS(2580), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2578), + [aux_sym_compression_token1] = ACTIONS(2578), + [aux_sym_connection_attempts_token1] = ACTIONS(2578), + [aux_sym_connect_timeout_token1] = ACTIONS(2578), + [aux_sym_control_master_token1] = ACTIONS(2578), + [aux_sym_control_path_token1] = ACTIONS(2578), + [aux_sym_control_persist_token1] = ACTIONS(2578), + [aux_sym_dynamic_forward_token1] = ACTIONS(2578), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2578), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2578), + [aux_sym_escape_char_token1] = ACTIONS(2578), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2578), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2578), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2578), + [aux_sym_forward_agent_token1] = ACTIONS(2578), + [aux_sym_forward_x11_token1] = ACTIONS(2580), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2578), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2578), + [aux_sym_gateway_ports_token1] = ACTIONS(2578), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2578), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2578), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2578), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2578), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2578), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2578), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2578), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2578), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2578), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2578), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2578), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2578), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2578), + [aux_sym_host_key_alias_token1] = ACTIONS(2578), + [aux_sym_hostname_token1] = ACTIONS(2578), + [aux_sym_identities_only_token1] = ACTIONS(2578), + [aux_sym_identity_agent_token1] = ACTIONS(2578), + [aux_sym_identity_file_token1] = ACTIONS(2578), + [aux_sym_ignore_unknown_token1] = ACTIONS(2578), + [aux_sym_include_token1] = ACTIONS(2578), + [aux_sym_ip_qos_token1] = ACTIONS(2578), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2578), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2578), + [aux_sym_kex_algorithms_token1] = ACTIONS(2578), + [aux_sym_known_hosts_command_token1] = ACTIONS(2578), + [aux_sym_local_command_token1] = ACTIONS(2578), + [aux_sym_local_forward_token1] = ACTIONS(2578), + [aux_sym_log_level_token1] = ACTIONS(2578), + [aux_sym_log_verbose_token1] = ACTIONS(2578), + [aux_sym_macs_token1] = ACTIONS(2578), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2578), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2578), + [aux_sym_password_authentication_token1] = ACTIONS(2578), + [aux_sym_permit_local_command_token1] = ACTIONS(2578), + [aux_sym_permit_remote_open_token1] = ACTIONS(2578), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2578), + [aux_sym_port_token1] = ACTIONS(2578), + [aux_sym_preferred_authentications_token1] = ACTIONS(2578), + [aux_sym_protocol_token1] = ACTIONS(2578), + [aux_sym_proxy_command_token1] = ACTIONS(2578), + [aux_sym_proxy_jump_token1] = ACTIONS(2578), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2578), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2578), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2578), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2578), + [aux_sym_rekey_limit_token1] = ACTIONS(2578), + [aux_sym_remote_command_token1] = ACTIONS(2578), + [aux_sym_remote_forward_token1] = ACTIONS(2578), + [aux_sym_request_tty_token1] = ACTIONS(2578), + [aux_sym_required_rsa_size_token1] = ACTIONS(2578), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2578), + [aux_sym_security_key_provider_token1] = ACTIONS(2578), + [aux_sym_send_env_token1] = ACTIONS(2578), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2578), + [aux_sym_server_alive_interval_token1] = ACTIONS(2578), + [aux_sym_session_type_token1] = ACTIONS(2578), + [aux_sym_set_env_token1] = ACTIONS(2578), + [aux_sym_stdin_null_token1] = ACTIONS(2578), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2578), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2578), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2578), + [aux_sym_syslog_facility_token1] = ACTIONS(2578), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2578), + [aux_sym_keep_alive_token1] = ACTIONS(2578), + [aux_sym_tunnel_token1] = ACTIONS(2580), + [aux_sym_tunnel_device_token1] = ACTIONS(2578), + [aux_sym_update_host_keys_token1] = ACTIONS(2578), + [aux_sym_use_keychain_token1] = ACTIONS(2578), + [aux_sym_use_roaming_token1] = ACTIONS(2578), + [aux_sym_user_token1] = ACTIONS(2580), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2578), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2578), + [aux_sym_visual_host_key_token1] = ACTIONS(2578), + [aux_sym_xauth_location_token1] = ACTIONS(2578), }, [363] = { - [ts_builtin_sym_end] = ACTIONS(2575), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2577), - [anon_sym_DQUOTE] = ACTIONS(2579), - [aux_sym_match_token1] = ACTIONS(2575), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2575), - [aux_sym_address_family_token1] = ACTIONS(2575), - [aux_sym_batch_mode_token1] = ACTIONS(2575), - [aux_sym_bind_address_token1] = ACTIONS(2575), - [aux_sym_bind_interface_token1] = ACTIONS(2575), - [aux_sym_canonical_domains_token1] = ACTIONS(2575), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2575), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2575), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2575), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2575), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2575), - [aux_sym_certificate_file_token1] = ACTIONS(2575), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2575), - [aux_sym_check_host_ip_token1] = ACTIONS(2575), - [aux_sym_ciphers_token1] = ACTIONS(2575), - [aux_sym_cipher_token1] = ACTIONS(2577), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2575), - [aux_sym_compression_token1] = ACTIONS(2575), - [aux_sym_connection_attempts_token1] = ACTIONS(2575), - [aux_sym_connect_timeout_token1] = ACTIONS(2575), - [aux_sym_control_master_token1] = ACTIONS(2575), - [aux_sym_control_path_token1] = ACTIONS(2575), - [aux_sym_control_persist_token1] = ACTIONS(2575), - [aux_sym_dynamic_forward_token1] = ACTIONS(2575), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2575), - [aux_sym_escape_char_token1] = ACTIONS(2575), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2575), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2575), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2575), - [aux_sym_forward_agent_token1] = ACTIONS(2575), - [aux_sym_forward_x11_token1] = ACTIONS(2577), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2575), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2575), - [aux_sym_gateway_ports_token1] = ACTIONS(2575), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2575), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2575), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2575), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2575), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2575), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2575), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2575), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2575), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2575), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2575), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2575), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2575), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2575), - [aux_sym_host_key_alias_token1] = ACTIONS(2575), - [aux_sym_hostname_token1] = ACTIONS(2575), - [aux_sym_identities_only_token1] = ACTIONS(2575), - [aux_sym_identity_agent_token1] = ACTIONS(2575), - [aux_sym_identity_file_token1] = ACTIONS(2575), - [aux_sym_ignore_unknown_token1] = ACTIONS(2575), - [aux_sym_include_token1] = ACTIONS(2575), - [aux_sym_ip_qos_token1] = ACTIONS(2575), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2575), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2575), - [aux_sym_kex_algorithms_token1] = ACTIONS(2575), - [aux_sym_known_hosts_command_token1] = ACTIONS(2575), - [aux_sym_local_command_token1] = ACTIONS(2575), - [aux_sym_local_forward_token1] = ACTIONS(2575), - [aux_sym_log_level_token1] = ACTIONS(2575), - [aux_sym_log_verbose_token1] = ACTIONS(2575), - [aux_sym_macs_token1] = ACTIONS(2575), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2575), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2575), - [aux_sym_password_authentication_token1] = ACTIONS(2575), - [aux_sym_permit_local_command_token1] = ACTIONS(2575), - [aux_sym_permit_remote_open_token1] = ACTIONS(2575), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2575), - [aux_sym_port_token1] = ACTIONS(2575), - [aux_sym_preferred_authentications_token1] = ACTIONS(2575), - [aux_sym_protocol_token1] = ACTIONS(2575), - [aux_sym_proxy_command_token1] = ACTIONS(2575), - [aux_sym_proxy_jump_token1] = ACTIONS(2575), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2575), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2575), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2575), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2575), - [aux_sym_rekey_limit_token1] = ACTIONS(2575), - [aux_sym_remote_command_token1] = ACTIONS(2575), - [aux_sym_remote_forward_token1] = ACTIONS(2575), - [aux_sym_request_tty_token1] = ACTIONS(2575), - [aux_sym_required_rsa_size_token1] = ACTIONS(2575), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2575), - [aux_sym_security_key_provider_token1] = ACTIONS(2575), - [aux_sym_send_env_token1] = ACTIONS(2575), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2575), - [aux_sym_server_alive_interval_token1] = ACTIONS(2575), - [aux_sym_session_type_token1] = ACTIONS(2575), - [aux_sym_set_env_token1] = ACTIONS(2575), - [aux_sym_stdin_null_token1] = ACTIONS(2575), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2575), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2575), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2575), - [aux_sym_syslog_facility_token1] = ACTIONS(2575), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2575), - [aux_sym_keep_alive_token1] = ACTIONS(2575), - [aux_sym_tunnel_token1] = ACTIONS(2577), - [aux_sym_tunnel_device_token1] = ACTIONS(2575), - [aux_sym_update_host_keys_token1] = ACTIONS(2575), - [aux_sym_use_keychain_token1] = ACTIONS(2575), - [aux_sym_use_roaming_token1] = ACTIONS(2575), - [aux_sym_user_token1] = ACTIONS(2577), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2575), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2575), - [aux_sym_visual_host_key_token1] = ACTIONS(2575), - [aux_sym_xauth_location_token1] = ACTIONS(2575), + [ts_builtin_sym_end] = ACTIONS(2582), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2584), + [anon_sym_DQUOTE] = ACTIONS(2582), + [aux_sym_match_token1] = ACTIONS(2582), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2582), + [aux_sym_address_family_token1] = ACTIONS(2582), + [aux_sym_batch_mode_token1] = ACTIONS(2582), + [aux_sym_bind_address_token1] = ACTIONS(2582), + [aux_sym_bind_interface_token1] = ACTIONS(2582), + [aux_sym_canonical_domains_token1] = ACTIONS(2582), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2582), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2582), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2582), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2582), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2582), + [aux_sym_certificate_file_token1] = ACTIONS(2582), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2582), + [aux_sym_check_host_ip_token1] = ACTIONS(2582), + [aux_sym_ciphers_token1] = ACTIONS(2582), + [aux_sym_cipher_token1] = ACTIONS(2584), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2582), + [aux_sym_compression_token1] = ACTIONS(2582), + [aux_sym_connection_attempts_token1] = ACTIONS(2582), + [aux_sym_connect_timeout_token1] = ACTIONS(2582), + [aux_sym_control_master_token1] = ACTIONS(2582), + [aux_sym_control_path_token1] = ACTIONS(2582), + [aux_sym_control_persist_token1] = ACTIONS(2582), + [aux_sym_dynamic_forward_token1] = ACTIONS(2582), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2582), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2582), + [aux_sym_escape_char_token1] = ACTIONS(2582), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2582), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2582), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2582), + [aux_sym_forward_agent_token1] = ACTIONS(2582), + [aux_sym_forward_x11_token1] = ACTIONS(2584), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2582), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2582), + [aux_sym_gateway_ports_token1] = ACTIONS(2582), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2582), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2582), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2582), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2582), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2582), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2582), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2582), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2582), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2582), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2582), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2582), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2582), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2582), + [aux_sym_host_key_alias_token1] = ACTIONS(2582), + [aux_sym_hostname_token1] = ACTIONS(2582), + [aux_sym_identities_only_token1] = ACTIONS(2582), + [aux_sym_identity_agent_token1] = ACTIONS(2582), + [aux_sym_identity_file_token1] = ACTIONS(2582), + [aux_sym_ignore_unknown_token1] = ACTIONS(2582), + [aux_sym_include_token1] = ACTIONS(2582), + [aux_sym_ip_qos_token1] = ACTIONS(2582), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2582), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2582), + [aux_sym_kex_algorithms_token1] = ACTIONS(2582), + [aux_sym_known_hosts_command_token1] = ACTIONS(2582), + [aux_sym_local_command_token1] = ACTIONS(2582), + [aux_sym_local_forward_token1] = ACTIONS(2582), + [aux_sym_log_level_token1] = ACTIONS(2582), + [aux_sym_log_verbose_token1] = ACTIONS(2582), + [aux_sym_macs_token1] = ACTIONS(2582), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2582), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2582), + [aux_sym_password_authentication_token1] = ACTIONS(2582), + [aux_sym_permit_local_command_token1] = ACTIONS(2582), + [aux_sym_permit_remote_open_token1] = ACTIONS(2582), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2582), + [aux_sym_port_token1] = ACTIONS(2582), + [aux_sym_preferred_authentications_token1] = ACTIONS(2582), + [aux_sym_protocol_token1] = ACTIONS(2582), + [aux_sym_proxy_command_token1] = ACTIONS(2582), + [aux_sym_proxy_jump_token1] = ACTIONS(2582), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2582), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2582), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2582), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2582), + [aux_sym_rekey_limit_token1] = ACTIONS(2582), + [aux_sym_remote_command_token1] = ACTIONS(2582), + [aux_sym_remote_forward_token1] = ACTIONS(2582), + [aux_sym_request_tty_token1] = ACTIONS(2582), + [aux_sym_required_rsa_size_token1] = ACTIONS(2582), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2582), + [aux_sym_security_key_provider_token1] = ACTIONS(2582), + [aux_sym_send_env_token1] = ACTIONS(2582), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2582), + [aux_sym_server_alive_interval_token1] = ACTIONS(2582), + [aux_sym_session_type_token1] = ACTIONS(2582), + [aux_sym_set_env_token1] = ACTIONS(2582), + [aux_sym_stdin_null_token1] = ACTIONS(2582), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2582), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2582), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2582), + [aux_sym_syslog_facility_token1] = ACTIONS(2582), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2582), + [aux_sym_keep_alive_token1] = ACTIONS(2582), + [aux_sym_tunnel_token1] = ACTIONS(2584), + [aux_sym_tunnel_device_token1] = ACTIONS(2582), + [aux_sym_update_host_keys_token1] = ACTIONS(2582), + [aux_sym_use_keychain_token1] = ACTIONS(2582), + [aux_sym_use_roaming_token1] = ACTIONS(2582), + [aux_sym_user_token1] = ACTIONS(2584), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2582), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2582), + [aux_sym_visual_host_key_token1] = ACTIONS(2582), + [aux_sym_xauth_location_token1] = ACTIONS(2582), }, [364] = { - [ts_builtin_sym_end] = ACTIONS(2581), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2583), - [anon_sym_DQUOTE] = ACTIONS(2581), - [aux_sym_match_token1] = ACTIONS(2581), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2581), - [aux_sym_address_family_token1] = ACTIONS(2581), - [aux_sym_batch_mode_token1] = ACTIONS(2581), - [aux_sym_bind_address_token1] = ACTIONS(2581), - [aux_sym_bind_interface_token1] = ACTIONS(2581), - [aux_sym_canonical_domains_token1] = ACTIONS(2581), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2581), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2581), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2581), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2581), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2581), - [aux_sym_certificate_file_token1] = ACTIONS(2581), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2581), - [aux_sym_check_host_ip_token1] = ACTIONS(2581), - [aux_sym_ciphers_token1] = ACTIONS(2581), - [aux_sym_cipher_token1] = ACTIONS(2583), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2581), - [aux_sym_compression_token1] = ACTIONS(2581), - [aux_sym_connection_attempts_token1] = ACTIONS(2581), - [aux_sym_connect_timeout_token1] = ACTIONS(2581), - [aux_sym_control_master_token1] = ACTIONS(2581), - [aux_sym_control_path_token1] = ACTIONS(2581), - [aux_sym_control_persist_token1] = ACTIONS(2581), - [aux_sym_dynamic_forward_token1] = ACTIONS(2581), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2581), - [aux_sym_escape_char_token1] = ACTIONS(2581), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2581), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2581), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2581), - [aux_sym_forward_agent_token1] = ACTIONS(2581), - [aux_sym_forward_x11_token1] = ACTIONS(2583), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2581), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2581), - [aux_sym_gateway_ports_token1] = ACTIONS(2581), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2581), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2581), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2581), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2581), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2581), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2581), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2581), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2581), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2581), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2581), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2581), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2581), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2581), - [aux_sym_host_key_alias_token1] = ACTIONS(2581), - [aux_sym_hostname_token1] = ACTIONS(2581), - [aux_sym_identities_only_token1] = ACTIONS(2581), - [aux_sym_identity_agent_token1] = ACTIONS(2581), - [aux_sym_identity_file_token1] = ACTIONS(2581), - [aux_sym_ignore_unknown_token1] = ACTIONS(2581), - [aux_sym_include_token1] = ACTIONS(2581), - [aux_sym_ip_qos_token1] = ACTIONS(2581), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2581), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2581), - [aux_sym_kex_algorithms_token1] = ACTIONS(2581), - [aux_sym_known_hosts_command_token1] = ACTIONS(2581), - [aux_sym_local_command_token1] = ACTIONS(2581), - [aux_sym_local_forward_token1] = ACTIONS(2581), - [aux_sym_log_level_token1] = ACTIONS(2581), - [aux_sym_log_verbose_token1] = ACTIONS(2581), - [aux_sym_macs_token1] = ACTIONS(2581), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2581), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2581), - [aux_sym_password_authentication_token1] = ACTIONS(2581), - [aux_sym_permit_local_command_token1] = ACTIONS(2581), - [aux_sym_permit_remote_open_token1] = ACTIONS(2581), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2581), - [aux_sym_port_token1] = ACTIONS(2581), - [aux_sym_preferred_authentications_token1] = ACTIONS(2581), - [aux_sym_protocol_token1] = ACTIONS(2581), - [aux_sym_proxy_command_token1] = ACTIONS(2581), - [aux_sym_proxy_jump_token1] = ACTIONS(2581), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2581), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2581), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2581), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2581), - [aux_sym_rekey_limit_token1] = ACTIONS(2581), - [aux_sym_remote_command_token1] = ACTIONS(2581), - [aux_sym_remote_forward_token1] = ACTIONS(2581), - [aux_sym_request_tty_token1] = ACTIONS(2581), - [aux_sym_required_rsa_size_token1] = ACTIONS(2581), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2581), - [aux_sym_security_key_provider_token1] = ACTIONS(2581), - [aux_sym_send_env_token1] = ACTIONS(2581), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2581), - [aux_sym_server_alive_interval_token1] = ACTIONS(2581), - [aux_sym_session_type_token1] = ACTIONS(2581), - [aux_sym_set_env_token1] = ACTIONS(2581), - [aux_sym_stdin_null_token1] = ACTIONS(2581), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2581), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2581), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2581), - [aux_sym_syslog_facility_token1] = ACTIONS(2581), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2581), - [aux_sym_keep_alive_token1] = ACTIONS(2581), - [aux_sym_tunnel_token1] = ACTIONS(2583), - [aux_sym_tunnel_device_token1] = ACTIONS(2581), - [aux_sym_update_host_keys_token1] = ACTIONS(2581), - [aux_sym_use_keychain_token1] = ACTIONS(2581), - [aux_sym_use_roaming_token1] = ACTIONS(2581), - [aux_sym_user_token1] = ACTIONS(2583), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2581), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2581), - [aux_sym_visual_host_key_token1] = ACTIONS(2581), - [aux_sym_xauth_location_token1] = ACTIONS(2581), + [ts_builtin_sym_end] = ACTIONS(2586), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2590), + [aux_sym_match_token1] = ACTIONS(2586), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2586), + [aux_sym_address_family_token1] = ACTIONS(2586), + [aux_sym_batch_mode_token1] = ACTIONS(2586), + [aux_sym_bind_address_token1] = ACTIONS(2586), + [aux_sym_bind_interface_token1] = ACTIONS(2586), + [aux_sym_canonical_domains_token1] = ACTIONS(2586), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2586), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2586), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2586), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2586), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2586), + [aux_sym_certificate_file_token1] = ACTIONS(2586), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2586), + [aux_sym_check_host_ip_token1] = ACTIONS(2586), + [aux_sym_ciphers_token1] = ACTIONS(2586), + [aux_sym_cipher_token1] = ACTIONS(2588), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2586), + [aux_sym_compression_token1] = ACTIONS(2586), + [aux_sym_connection_attempts_token1] = ACTIONS(2586), + [aux_sym_connect_timeout_token1] = ACTIONS(2586), + [aux_sym_control_master_token1] = ACTIONS(2586), + [aux_sym_control_path_token1] = ACTIONS(2586), + [aux_sym_control_persist_token1] = ACTIONS(2586), + [aux_sym_dynamic_forward_token1] = ACTIONS(2586), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2586), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2586), + [aux_sym_escape_char_token1] = ACTIONS(2586), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2586), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2586), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2586), + [aux_sym_forward_agent_token1] = ACTIONS(2586), + [aux_sym_forward_x11_token1] = ACTIONS(2588), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2586), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2586), + [aux_sym_gateway_ports_token1] = ACTIONS(2586), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2586), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2586), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2586), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2586), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2586), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2586), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2586), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2586), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2586), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2586), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2586), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2586), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2586), + [aux_sym_host_key_alias_token1] = ACTIONS(2586), + [aux_sym_hostname_token1] = ACTIONS(2586), + [aux_sym_identities_only_token1] = ACTIONS(2586), + [aux_sym_identity_agent_token1] = ACTIONS(2586), + [aux_sym_identity_file_token1] = ACTIONS(2586), + [aux_sym_ignore_unknown_token1] = ACTIONS(2586), + [aux_sym_include_token1] = ACTIONS(2586), + [aux_sym_ip_qos_token1] = ACTIONS(2586), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2586), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2586), + [aux_sym_kex_algorithms_token1] = ACTIONS(2586), + [aux_sym_known_hosts_command_token1] = ACTIONS(2586), + [aux_sym_local_command_token1] = ACTIONS(2586), + [aux_sym_local_forward_token1] = ACTIONS(2586), + [aux_sym_log_level_token1] = ACTIONS(2586), + [aux_sym_log_verbose_token1] = ACTIONS(2586), + [aux_sym_macs_token1] = ACTIONS(2586), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2586), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2586), + [aux_sym_password_authentication_token1] = ACTIONS(2586), + [aux_sym_permit_local_command_token1] = ACTIONS(2586), + [aux_sym_permit_remote_open_token1] = ACTIONS(2586), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2586), + [aux_sym_port_token1] = ACTIONS(2586), + [aux_sym_preferred_authentications_token1] = ACTIONS(2586), + [aux_sym_protocol_token1] = ACTIONS(2586), + [aux_sym_proxy_command_token1] = ACTIONS(2586), + [aux_sym_proxy_jump_token1] = ACTIONS(2586), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2586), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2586), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2586), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2586), + [aux_sym_rekey_limit_token1] = ACTIONS(2586), + [aux_sym_remote_command_token1] = ACTIONS(2586), + [aux_sym_remote_forward_token1] = ACTIONS(2586), + [aux_sym_request_tty_token1] = ACTIONS(2586), + [aux_sym_required_rsa_size_token1] = ACTIONS(2586), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2586), + [aux_sym_security_key_provider_token1] = ACTIONS(2586), + [aux_sym_send_env_token1] = ACTIONS(2586), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2586), + [aux_sym_server_alive_interval_token1] = ACTIONS(2586), + [aux_sym_session_type_token1] = ACTIONS(2586), + [aux_sym_set_env_token1] = ACTIONS(2586), + [aux_sym_stdin_null_token1] = ACTIONS(2586), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2586), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2586), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2586), + [aux_sym_syslog_facility_token1] = ACTIONS(2586), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2586), + [aux_sym_keep_alive_token1] = ACTIONS(2586), + [aux_sym_tunnel_token1] = ACTIONS(2588), + [aux_sym_tunnel_device_token1] = ACTIONS(2586), + [aux_sym_update_host_keys_token1] = ACTIONS(2586), + [aux_sym_use_keychain_token1] = ACTIONS(2586), + [aux_sym_use_roaming_token1] = ACTIONS(2586), + [aux_sym_user_token1] = ACTIONS(2588), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2586), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2586), + [aux_sym_visual_host_key_token1] = ACTIONS(2586), + [aux_sym_xauth_location_token1] = ACTIONS(2586), }, [365] = { - [ts_builtin_sym_end] = ACTIONS(2585), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2587), - [anon_sym_DQUOTE] = ACTIONS(2585), - [aux_sym_match_token1] = ACTIONS(2585), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2585), - [aux_sym_address_family_token1] = ACTIONS(2585), - [aux_sym_batch_mode_token1] = ACTIONS(2585), - [aux_sym_bind_address_token1] = ACTIONS(2585), - [aux_sym_bind_interface_token1] = ACTIONS(2585), - [aux_sym_canonical_domains_token1] = ACTIONS(2585), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2585), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2585), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2585), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2585), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2585), - [aux_sym_certificate_file_token1] = ACTIONS(2585), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2585), - [aux_sym_check_host_ip_token1] = ACTIONS(2585), - [aux_sym_ciphers_token1] = ACTIONS(2585), - [aux_sym_cipher_token1] = ACTIONS(2587), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2585), - [aux_sym_compression_token1] = ACTIONS(2585), - [aux_sym_connection_attempts_token1] = ACTIONS(2585), - [aux_sym_connect_timeout_token1] = ACTIONS(2585), - [aux_sym_control_master_token1] = ACTIONS(2585), - [aux_sym_control_path_token1] = ACTIONS(2585), - [aux_sym_control_persist_token1] = ACTIONS(2585), - [aux_sym_dynamic_forward_token1] = ACTIONS(2585), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2585), - [aux_sym_escape_char_token1] = ACTIONS(2585), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2585), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2585), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2585), - [aux_sym_forward_agent_token1] = ACTIONS(2585), - [aux_sym_forward_x11_token1] = ACTIONS(2587), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2585), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2585), - [aux_sym_gateway_ports_token1] = ACTIONS(2585), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2585), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2585), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2585), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2585), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2585), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2585), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2585), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2585), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2585), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2585), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2585), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2585), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2585), - [aux_sym_host_key_alias_token1] = ACTIONS(2585), - [aux_sym_hostname_token1] = ACTIONS(2585), - [aux_sym_identities_only_token1] = ACTIONS(2585), - [aux_sym_identity_agent_token1] = ACTIONS(2585), - [aux_sym_identity_file_token1] = ACTIONS(2585), - [aux_sym_ignore_unknown_token1] = ACTIONS(2585), - [aux_sym_include_token1] = ACTIONS(2585), - [aux_sym_ip_qos_token1] = ACTIONS(2585), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2585), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2585), - [aux_sym_kex_algorithms_token1] = ACTIONS(2585), - [aux_sym_known_hosts_command_token1] = ACTIONS(2585), - [aux_sym_local_command_token1] = ACTIONS(2585), - [aux_sym_local_forward_token1] = ACTIONS(2585), - [aux_sym_log_level_token1] = ACTIONS(2585), - [aux_sym_log_verbose_token1] = ACTIONS(2585), - [aux_sym_macs_token1] = ACTIONS(2585), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2585), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2585), - [aux_sym_password_authentication_token1] = ACTIONS(2585), - [aux_sym_permit_local_command_token1] = ACTIONS(2585), - [aux_sym_permit_remote_open_token1] = ACTIONS(2585), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2585), - [aux_sym_port_token1] = ACTIONS(2585), - [aux_sym_preferred_authentications_token1] = ACTIONS(2585), - [aux_sym_protocol_token1] = ACTIONS(2585), - [aux_sym_proxy_command_token1] = ACTIONS(2585), - [aux_sym_proxy_jump_token1] = ACTIONS(2585), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2585), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2585), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2585), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2585), - [aux_sym_rekey_limit_token1] = ACTIONS(2585), - [aux_sym_remote_command_token1] = ACTIONS(2585), - [aux_sym_remote_forward_token1] = ACTIONS(2585), - [aux_sym_request_tty_token1] = ACTIONS(2585), - [aux_sym_required_rsa_size_token1] = ACTIONS(2585), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2585), - [aux_sym_security_key_provider_token1] = ACTIONS(2585), - [aux_sym_send_env_token1] = ACTIONS(2585), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2585), - [aux_sym_server_alive_interval_token1] = ACTIONS(2585), - [aux_sym_session_type_token1] = ACTIONS(2585), - [aux_sym_set_env_token1] = ACTIONS(2585), - [aux_sym_stdin_null_token1] = ACTIONS(2585), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2585), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2585), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2585), - [aux_sym_syslog_facility_token1] = ACTIONS(2585), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2585), - [aux_sym_keep_alive_token1] = ACTIONS(2585), - [aux_sym_tunnel_token1] = ACTIONS(2587), - [aux_sym_tunnel_device_token1] = ACTIONS(2585), - [aux_sym_update_host_keys_token1] = ACTIONS(2585), - [aux_sym_use_keychain_token1] = ACTIONS(2585), - [aux_sym_use_roaming_token1] = ACTIONS(2585), - [aux_sym_user_token1] = ACTIONS(2587), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2585), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2585), - [aux_sym_visual_host_key_token1] = ACTIONS(2585), - [aux_sym_xauth_location_token1] = ACTIONS(2585), + [ts_builtin_sym_end] = ACTIONS(2592), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2592), + [aux_sym_match_token1] = ACTIONS(2592), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2592), + [aux_sym_address_family_token1] = ACTIONS(2592), + [aux_sym_batch_mode_token1] = ACTIONS(2592), + [aux_sym_bind_address_token1] = ACTIONS(2592), + [aux_sym_bind_interface_token1] = ACTIONS(2592), + [aux_sym_canonical_domains_token1] = ACTIONS(2592), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2592), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2592), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2592), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2592), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2592), + [aux_sym_certificate_file_token1] = ACTIONS(2592), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2592), + [aux_sym_check_host_ip_token1] = ACTIONS(2592), + [aux_sym_ciphers_token1] = ACTIONS(2592), + [aux_sym_cipher_token1] = ACTIONS(2594), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2592), + [aux_sym_compression_token1] = ACTIONS(2592), + [aux_sym_connection_attempts_token1] = ACTIONS(2592), + [aux_sym_connect_timeout_token1] = ACTIONS(2592), + [aux_sym_control_master_token1] = ACTIONS(2592), + [aux_sym_control_path_token1] = ACTIONS(2592), + [aux_sym_control_persist_token1] = ACTIONS(2592), + [aux_sym_dynamic_forward_token1] = ACTIONS(2592), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2592), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2592), + [aux_sym_escape_char_token1] = ACTIONS(2592), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2592), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2592), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2592), + [aux_sym_forward_agent_token1] = ACTIONS(2592), + [aux_sym_forward_x11_token1] = ACTIONS(2594), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2592), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2592), + [aux_sym_gateway_ports_token1] = ACTIONS(2592), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2592), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2592), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2592), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2592), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2592), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2592), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2592), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2592), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2592), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2592), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2592), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2592), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2592), + [aux_sym_host_key_alias_token1] = ACTIONS(2592), + [aux_sym_hostname_token1] = ACTIONS(2592), + [aux_sym_identities_only_token1] = ACTIONS(2592), + [aux_sym_identity_agent_token1] = ACTIONS(2592), + [aux_sym_identity_file_token1] = ACTIONS(2592), + [aux_sym_ignore_unknown_token1] = ACTIONS(2592), + [aux_sym_include_token1] = ACTIONS(2592), + [aux_sym_ip_qos_token1] = ACTIONS(2592), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2592), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2592), + [aux_sym_kex_algorithms_token1] = ACTIONS(2592), + [aux_sym_known_hosts_command_token1] = ACTIONS(2592), + [aux_sym_local_command_token1] = ACTIONS(2592), + [aux_sym_local_forward_token1] = ACTIONS(2592), + [aux_sym_log_level_token1] = ACTIONS(2592), + [aux_sym_log_verbose_token1] = ACTIONS(2592), + [aux_sym_macs_token1] = ACTIONS(2592), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2592), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2592), + [aux_sym_password_authentication_token1] = ACTIONS(2592), + [aux_sym_permit_local_command_token1] = ACTIONS(2592), + [aux_sym_permit_remote_open_token1] = ACTIONS(2592), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2592), + [aux_sym_port_token1] = ACTIONS(2592), + [aux_sym_preferred_authentications_token1] = ACTIONS(2592), + [aux_sym_protocol_token1] = ACTIONS(2592), + [aux_sym_proxy_command_token1] = ACTIONS(2592), + [aux_sym_proxy_jump_token1] = ACTIONS(2592), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2592), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2592), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2592), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2592), + [aux_sym_rekey_limit_token1] = ACTIONS(2592), + [aux_sym_remote_command_token1] = ACTIONS(2592), + [aux_sym_remote_forward_token1] = ACTIONS(2592), + [aux_sym_request_tty_token1] = ACTIONS(2592), + [aux_sym_required_rsa_size_token1] = ACTIONS(2592), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2592), + [aux_sym_security_key_provider_token1] = ACTIONS(2592), + [aux_sym_send_env_token1] = ACTIONS(2592), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2592), + [aux_sym_server_alive_interval_token1] = ACTIONS(2592), + [aux_sym_session_type_token1] = ACTIONS(2592), + [aux_sym_set_env_token1] = ACTIONS(2592), + [aux_sym_stdin_null_token1] = ACTIONS(2592), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2592), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2592), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2592), + [aux_sym_syslog_facility_token1] = ACTIONS(2592), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2592), + [aux_sym_keep_alive_token1] = ACTIONS(2592), + [aux_sym_tunnel_token1] = ACTIONS(2594), + [aux_sym_tunnel_device_token1] = ACTIONS(2592), + [aux_sym_update_host_keys_token1] = ACTIONS(2592), + [aux_sym_use_keychain_token1] = ACTIONS(2592), + [aux_sym_use_roaming_token1] = ACTIONS(2592), + [aux_sym_user_token1] = ACTIONS(2594), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2592), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2592), + [aux_sym_visual_host_key_token1] = ACTIONS(2592), + [aux_sym_xauth_location_token1] = ACTIONS(2592), }, [366] = { - [ts_builtin_sym_end] = ACTIONS(2589), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2593), - [aux_sym_match_token1] = ACTIONS(2589), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2589), - [aux_sym_address_family_token1] = ACTIONS(2589), - [aux_sym_batch_mode_token1] = ACTIONS(2589), - [aux_sym_bind_address_token1] = ACTIONS(2589), - [aux_sym_bind_interface_token1] = ACTIONS(2589), - [aux_sym_canonical_domains_token1] = ACTIONS(2589), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2589), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2589), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2589), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2589), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2589), - [aux_sym_certificate_file_token1] = ACTIONS(2589), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2589), - [aux_sym_check_host_ip_token1] = ACTIONS(2589), - [aux_sym_ciphers_token1] = ACTIONS(2589), - [aux_sym_cipher_token1] = ACTIONS(2591), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2589), - [aux_sym_compression_token1] = ACTIONS(2589), - [aux_sym_connection_attempts_token1] = ACTIONS(2589), - [aux_sym_connect_timeout_token1] = ACTIONS(2589), - [aux_sym_control_master_token1] = ACTIONS(2589), - [aux_sym_control_path_token1] = ACTIONS(2589), - [aux_sym_control_persist_token1] = ACTIONS(2589), - [aux_sym_dynamic_forward_token1] = ACTIONS(2589), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2589), - [aux_sym_escape_char_token1] = ACTIONS(2589), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2589), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2589), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2589), - [aux_sym_forward_agent_token1] = ACTIONS(2589), - [aux_sym_forward_x11_token1] = ACTIONS(2591), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2589), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2589), - [aux_sym_gateway_ports_token1] = ACTIONS(2589), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2589), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2589), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2589), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2589), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2589), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2589), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2589), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2589), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2589), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2589), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2589), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2589), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2589), - [aux_sym_host_key_alias_token1] = ACTIONS(2589), - [aux_sym_hostname_token1] = ACTIONS(2589), - [aux_sym_identities_only_token1] = ACTIONS(2589), - [aux_sym_identity_agent_token1] = ACTIONS(2589), - [aux_sym_identity_file_token1] = ACTIONS(2589), - [aux_sym_ignore_unknown_token1] = ACTIONS(2589), - [aux_sym_include_token1] = ACTIONS(2589), - [aux_sym_ip_qos_token1] = ACTIONS(2589), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2589), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2589), - [aux_sym_kex_algorithms_token1] = ACTIONS(2589), - [aux_sym_known_hosts_command_token1] = ACTIONS(2589), - [aux_sym_local_command_token1] = ACTIONS(2589), - [aux_sym_local_forward_token1] = ACTIONS(2589), - [aux_sym_log_level_token1] = ACTIONS(2589), - [aux_sym_log_verbose_token1] = ACTIONS(2589), - [aux_sym_macs_token1] = ACTIONS(2589), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2589), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2589), - [aux_sym_password_authentication_token1] = ACTIONS(2589), - [aux_sym_permit_local_command_token1] = ACTIONS(2589), - [aux_sym_permit_remote_open_token1] = ACTIONS(2589), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2589), - [aux_sym_port_token1] = ACTIONS(2589), - [aux_sym_preferred_authentications_token1] = ACTIONS(2589), - [aux_sym_protocol_token1] = ACTIONS(2589), - [aux_sym_proxy_command_token1] = ACTIONS(2589), - [aux_sym_proxy_jump_token1] = ACTIONS(2589), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2589), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2589), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2589), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2589), - [aux_sym_rekey_limit_token1] = ACTIONS(2589), - [aux_sym_remote_command_token1] = ACTIONS(2589), - [aux_sym_remote_forward_token1] = ACTIONS(2589), - [aux_sym_request_tty_token1] = ACTIONS(2589), - [aux_sym_required_rsa_size_token1] = ACTIONS(2589), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2589), - [aux_sym_security_key_provider_token1] = ACTIONS(2589), - [aux_sym_send_env_token1] = ACTIONS(2589), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2589), - [aux_sym_server_alive_interval_token1] = ACTIONS(2589), - [aux_sym_session_type_token1] = ACTIONS(2589), - [aux_sym_set_env_token1] = ACTIONS(2589), - [aux_sym_stdin_null_token1] = ACTIONS(2589), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2589), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2589), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2589), - [aux_sym_syslog_facility_token1] = ACTIONS(2589), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2589), - [aux_sym_keep_alive_token1] = ACTIONS(2589), - [aux_sym_tunnel_token1] = ACTIONS(2591), - [aux_sym_tunnel_device_token1] = ACTIONS(2589), - [aux_sym_update_host_keys_token1] = ACTIONS(2589), - [aux_sym_use_keychain_token1] = ACTIONS(2589), - [aux_sym_use_roaming_token1] = ACTIONS(2589), - [aux_sym_user_token1] = ACTIONS(2591), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2589), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2589), - [aux_sym_visual_host_key_token1] = ACTIONS(2589), - [aux_sym_xauth_location_token1] = ACTIONS(2589), + [ts_builtin_sym_end] = ACTIONS(2596), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2598), + [anon_sym_DQUOTE] = ACTIONS(2600), + [aux_sym_match_token1] = ACTIONS(2596), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2596), + [aux_sym_address_family_token1] = ACTIONS(2596), + [aux_sym_batch_mode_token1] = ACTIONS(2596), + [aux_sym_bind_address_token1] = ACTIONS(2596), + [aux_sym_bind_interface_token1] = ACTIONS(2596), + [aux_sym_canonical_domains_token1] = ACTIONS(2596), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2596), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2596), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2596), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2596), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2596), + [aux_sym_certificate_file_token1] = ACTIONS(2596), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2596), + [aux_sym_check_host_ip_token1] = ACTIONS(2596), + [aux_sym_ciphers_token1] = ACTIONS(2596), + [aux_sym_cipher_token1] = ACTIONS(2598), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2596), + [aux_sym_compression_token1] = ACTIONS(2596), + [aux_sym_connection_attempts_token1] = ACTIONS(2596), + [aux_sym_connect_timeout_token1] = ACTIONS(2596), + [aux_sym_control_master_token1] = ACTIONS(2596), + [aux_sym_control_path_token1] = ACTIONS(2596), + [aux_sym_control_persist_token1] = ACTIONS(2596), + [aux_sym_dynamic_forward_token1] = ACTIONS(2596), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2596), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2596), + [aux_sym_escape_char_token1] = ACTIONS(2596), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2596), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2596), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2596), + [aux_sym_forward_agent_token1] = ACTIONS(2596), + [aux_sym_forward_x11_token1] = ACTIONS(2598), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2596), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2596), + [aux_sym_gateway_ports_token1] = ACTIONS(2596), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2596), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2596), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2596), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2596), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2596), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2596), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2596), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2596), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2596), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2596), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2596), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2596), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2596), + [aux_sym_host_key_alias_token1] = ACTIONS(2596), + [aux_sym_hostname_token1] = ACTIONS(2596), + [aux_sym_identities_only_token1] = ACTIONS(2596), + [aux_sym_identity_agent_token1] = ACTIONS(2596), + [aux_sym_identity_file_token1] = ACTIONS(2596), + [aux_sym_ignore_unknown_token1] = ACTIONS(2596), + [aux_sym_include_token1] = ACTIONS(2596), + [aux_sym_ip_qos_token1] = ACTIONS(2596), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2596), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2596), + [aux_sym_kex_algorithms_token1] = ACTIONS(2596), + [aux_sym_known_hosts_command_token1] = ACTIONS(2596), + [aux_sym_local_command_token1] = ACTIONS(2596), + [aux_sym_local_forward_token1] = ACTIONS(2596), + [aux_sym_log_level_token1] = ACTIONS(2596), + [aux_sym_log_verbose_token1] = ACTIONS(2596), + [aux_sym_macs_token1] = ACTIONS(2596), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2596), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2596), + [aux_sym_password_authentication_token1] = ACTIONS(2596), + [aux_sym_permit_local_command_token1] = ACTIONS(2596), + [aux_sym_permit_remote_open_token1] = ACTIONS(2596), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2596), + [aux_sym_port_token1] = ACTIONS(2596), + [aux_sym_preferred_authentications_token1] = ACTIONS(2596), + [aux_sym_protocol_token1] = ACTIONS(2596), + [aux_sym_proxy_command_token1] = ACTIONS(2596), + [aux_sym_proxy_jump_token1] = ACTIONS(2596), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2596), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2596), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2596), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2596), + [aux_sym_rekey_limit_token1] = ACTIONS(2596), + [aux_sym_remote_command_token1] = ACTIONS(2596), + [aux_sym_remote_forward_token1] = ACTIONS(2596), + [aux_sym_request_tty_token1] = ACTIONS(2596), + [aux_sym_required_rsa_size_token1] = ACTIONS(2596), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2596), + [aux_sym_security_key_provider_token1] = ACTIONS(2596), + [aux_sym_send_env_token1] = ACTIONS(2596), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2596), + [aux_sym_server_alive_interval_token1] = ACTIONS(2596), + [aux_sym_session_type_token1] = ACTIONS(2596), + [aux_sym_set_env_token1] = ACTIONS(2596), + [aux_sym_stdin_null_token1] = ACTIONS(2596), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2596), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2596), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2596), + [aux_sym_syslog_facility_token1] = ACTIONS(2596), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2596), + [aux_sym_keep_alive_token1] = ACTIONS(2596), + [aux_sym_tunnel_token1] = ACTIONS(2598), + [aux_sym_tunnel_device_token1] = ACTIONS(2596), + [aux_sym_update_host_keys_token1] = ACTIONS(2596), + [aux_sym_use_keychain_token1] = ACTIONS(2596), + [aux_sym_use_roaming_token1] = ACTIONS(2596), + [aux_sym_user_token1] = ACTIONS(2598), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2596), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2596), + [aux_sym_visual_host_key_token1] = ACTIONS(2596), + [aux_sym_xauth_location_token1] = ACTIONS(2596), }, [367] = { - [ts_builtin_sym_end] = ACTIONS(2595), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2597), - [anon_sym_DQUOTE] = ACTIONS(2599), - [aux_sym_match_token1] = ACTIONS(2595), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2595), - [aux_sym_address_family_token1] = ACTIONS(2595), - [aux_sym_batch_mode_token1] = ACTIONS(2595), - [aux_sym_bind_address_token1] = ACTIONS(2595), - [aux_sym_bind_interface_token1] = ACTIONS(2595), - [aux_sym_canonical_domains_token1] = ACTIONS(2595), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2595), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2595), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2595), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2595), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2595), - [aux_sym_certificate_file_token1] = ACTIONS(2595), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2595), - [aux_sym_check_host_ip_token1] = ACTIONS(2595), - [aux_sym_ciphers_token1] = ACTIONS(2595), - [aux_sym_cipher_token1] = ACTIONS(2597), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2595), - [aux_sym_compression_token1] = ACTIONS(2595), - [aux_sym_connection_attempts_token1] = ACTIONS(2595), - [aux_sym_connect_timeout_token1] = ACTIONS(2595), - [aux_sym_control_master_token1] = ACTIONS(2595), - [aux_sym_control_path_token1] = ACTIONS(2595), - [aux_sym_control_persist_token1] = ACTIONS(2595), - [aux_sym_dynamic_forward_token1] = ACTIONS(2595), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2595), - [aux_sym_escape_char_token1] = ACTIONS(2595), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2595), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2595), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2595), - [aux_sym_forward_agent_token1] = ACTIONS(2595), - [aux_sym_forward_x11_token1] = ACTIONS(2597), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2595), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2595), - [aux_sym_gateway_ports_token1] = ACTIONS(2595), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2595), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2595), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2595), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2595), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2595), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2595), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2595), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2595), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2595), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2595), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2595), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2595), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2595), - [aux_sym_host_key_alias_token1] = ACTIONS(2595), - [aux_sym_hostname_token1] = ACTIONS(2595), - [aux_sym_identities_only_token1] = ACTIONS(2595), - [aux_sym_identity_agent_token1] = ACTIONS(2595), - [aux_sym_identity_file_token1] = ACTIONS(2595), - [aux_sym_ignore_unknown_token1] = ACTIONS(2595), - [aux_sym_include_token1] = ACTIONS(2595), - [aux_sym_ip_qos_token1] = ACTIONS(2595), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2595), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2595), - [aux_sym_kex_algorithms_token1] = ACTIONS(2595), - [aux_sym_known_hosts_command_token1] = ACTIONS(2595), - [aux_sym_local_command_token1] = ACTIONS(2595), - [aux_sym_local_forward_token1] = ACTIONS(2595), - [aux_sym_log_level_token1] = ACTIONS(2595), - [aux_sym_log_verbose_token1] = ACTIONS(2595), - [aux_sym_macs_token1] = ACTIONS(2595), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2595), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2595), - [aux_sym_password_authentication_token1] = ACTIONS(2595), - [aux_sym_permit_local_command_token1] = ACTIONS(2595), - [aux_sym_permit_remote_open_token1] = ACTIONS(2595), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2595), - [aux_sym_port_token1] = ACTIONS(2595), - [aux_sym_preferred_authentications_token1] = ACTIONS(2595), - [aux_sym_protocol_token1] = ACTIONS(2595), - [aux_sym_proxy_command_token1] = ACTIONS(2595), - [aux_sym_proxy_jump_token1] = ACTIONS(2595), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2595), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2595), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2595), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2595), - [aux_sym_rekey_limit_token1] = ACTIONS(2595), - [aux_sym_remote_command_token1] = ACTIONS(2595), - [aux_sym_remote_forward_token1] = ACTIONS(2595), - [aux_sym_request_tty_token1] = ACTIONS(2595), - [aux_sym_required_rsa_size_token1] = ACTIONS(2595), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2595), - [aux_sym_security_key_provider_token1] = ACTIONS(2595), - [aux_sym_send_env_token1] = ACTIONS(2595), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2595), - [aux_sym_server_alive_interval_token1] = ACTIONS(2595), - [aux_sym_session_type_token1] = ACTIONS(2595), - [aux_sym_set_env_token1] = ACTIONS(2595), - [aux_sym_stdin_null_token1] = ACTIONS(2595), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2595), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2595), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2595), - [aux_sym_syslog_facility_token1] = ACTIONS(2595), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2595), - [aux_sym_keep_alive_token1] = ACTIONS(2595), - [aux_sym_tunnel_token1] = ACTIONS(2597), - [aux_sym_tunnel_device_token1] = ACTIONS(2595), - [aux_sym_update_host_keys_token1] = ACTIONS(2595), - [aux_sym_use_keychain_token1] = ACTIONS(2595), - [aux_sym_use_roaming_token1] = ACTIONS(2595), - [aux_sym_user_token1] = ACTIONS(2597), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2595), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2595), - [aux_sym_visual_host_key_token1] = ACTIONS(2595), - [aux_sym_xauth_location_token1] = ACTIONS(2595), + [ts_builtin_sym_end] = ACTIONS(2602), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2604), + [anon_sym_DQUOTE] = ACTIONS(2602), + [aux_sym_match_token1] = ACTIONS(2602), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2602), + [aux_sym_address_family_token1] = ACTIONS(2602), + [aux_sym_batch_mode_token1] = ACTIONS(2602), + [aux_sym_bind_address_token1] = ACTIONS(2602), + [aux_sym_bind_interface_token1] = ACTIONS(2602), + [aux_sym_canonical_domains_token1] = ACTIONS(2602), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2602), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2602), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2602), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2602), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2602), + [aux_sym_certificate_file_token1] = ACTIONS(2602), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2602), + [aux_sym_check_host_ip_token1] = ACTIONS(2602), + [aux_sym_ciphers_token1] = ACTIONS(2602), + [aux_sym_cipher_token1] = ACTIONS(2604), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2602), + [aux_sym_compression_token1] = ACTIONS(2602), + [aux_sym_connection_attempts_token1] = ACTIONS(2602), + [aux_sym_connect_timeout_token1] = ACTIONS(2602), + [aux_sym_control_master_token1] = ACTIONS(2602), + [aux_sym_control_path_token1] = ACTIONS(2602), + [aux_sym_control_persist_token1] = ACTIONS(2602), + [aux_sym_dynamic_forward_token1] = ACTIONS(2602), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2602), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2602), + [aux_sym_escape_char_token1] = ACTIONS(2602), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2602), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2602), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2602), + [aux_sym_forward_agent_token1] = ACTIONS(2602), + [aux_sym_forward_x11_token1] = ACTIONS(2604), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2602), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2602), + [aux_sym_gateway_ports_token1] = ACTIONS(2602), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2602), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2602), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2602), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2602), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2602), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2602), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2602), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2602), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2602), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2602), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2602), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2602), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2602), + [aux_sym_host_key_alias_token1] = ACTIONS(2602), + [aux_sym_hostname_token1] = ACTIONS(2602), + [aux_sym_identities_only_token1] = ACTIONS(2602), + [aux_sym_identity_agent_token1] = ACTIONS(2602), + [aux_sym_identity_file_token1] = ACTIONS(2602), + [aux_sym_ignore_unknown_token1] = ACTIONS(2602), + [aux_sym_include_token1] = ACTIONS(2602), + [aux_sym_ip_qos_token1] = ACTIONS(2602), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2602), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2602), + [aux_sym_kex_algorithms_token1] = ACTIONS(2602), + [aux_sym_known_hosts_command_token1] = ACTIONS(2602), + [aux_sym_local_command_token1] = ACTIONS(2602), + [aux_sym_local_forward_token1] = ACTIONS(2602), + [aux_sym_log_level_token1] = ACTIONS(2602), + [aux_sym_log_verbose_token1] = ACTIONS(2602), + [aux_sym_macs_token1] = ACTIONS(2602), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2602), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2602), + [aux_sym_password_authentication_token1] = ACTIONS(2602), + [aux_sym_permit_local_command_token1] = ACTIONS(2602), + [aux_sym_permit_remote_open_token1] = ACTIONS(2602), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2602), + [aux_sym_port_token1] = ACTIONS(2602), + [aux_sym_preferred_authentications_token1] = ACTIONS(2602), + [aux_sym_protocol_token1] = ACTIONS(2602), + [aux_sym_proxy_command_token1] = ACTIONS(2602), + [aux_sym_proxy_jump_token1] = ACTIONS(2602), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2602), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2602), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2602), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2602), + [aux_sym_rekey_limit_token1] = ACTIONS(2602), + [aux_sym_remote_command_token1] = ACTIONS(2602), + [aux_sym_remote_forward_token1] = ACTIONS(2602), + [aux_sym_request_tty_token1] = ACTIONS(2602), + [aux_sym_required_rsa_size_token1] = ACTIONS(2602), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2602), + [aux_sym_security_key_provider_token1] = ACTIONS(2602), + [aux_sym_send_env_token1] = ACTIONS(2602), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2602), + [aux_sym_server_alive_interval_token1] = ACTIONS(2602), + [aux_sym_session_type_token1] = ACTIONS(2602), + [aux_sym_set_env_token1] = ACTIONS(2602), + [aux_sym_stdin_null_token1] = ACTIONS(2602), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2602), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2602), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2602), + [aux_sym_syslog_facility_token1] = ACTIONS(2602), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2602), + [aux_sym_keep_alive_token1] = ACTIONS(2602), + [aux_sym_tunnel_token1] = ACTIONS(2604), + [aux_sym_tunnel_device_token1] = ACTIONS(2602), + [aux_sym_update_host_keys_token1] = ACTIONS(2602), + [aux_sym_use_keychain_token1] = ACTIONS(2602), + [aux_sym_use_roaming_token1] = ACTIONS(2602), + [aux_sym_user_token1] = ACTIONS(2604), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2602), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2602), + [aux_sym_visual_host_key_token1] = ACTIONS(2602), + [aux_sym_xauth_location_token1] = ACTIONS(2602), }, [368] = { - [ts_builtin_sym_end] = ACTIONS(2601), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2603), - [anon_sym_DQUOTE] = ACTIONS(2601), - [aux_sym_match_token1] = ACTIONS(2601), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2601), - [aux_sym_address_family_token1] = ACTIONS(2601), - [aux_sym_batch_mode_token1] = ACTIONS(2601), - [aux_sym_bind_address_token1] = ACTIONS(2601), - [aux_sym_bind_interface_token1] = ACTIONS(2601), - [aux_sym_canonical_domains_token1] = ACTIONS(2601), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2601), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2601), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2601), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2601), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2601), - [aux_sym_certificate_file_token1] = ACTIONS(2601), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2601), - [aux_sym_check_host_ip_token1] = ACTIONS(2601), - [aux_sym_ciphers_token1] = ACTIONS(2601), - [aux_sym_cipher_token1] = ACTIONS(2603), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2601), - [aux_sym_compression_token1] = ACTIONS(2601), - [aux_sym_connection_attempts_token1] = ACTIONS(2601), - [aux_sym_connect_timeout_token1] = ACTIONS(2601), - [aux_sym_control_master_token1] = ACTIONS(2601), - [aux_sym_control_path_token1] = ACTIONS(2601), - [aux_sym_control_persist_token1] = ACTIONS(2601), - [aux_sym_dynamic_forward_token1] = ACTIONS(2601), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2601), - [aux_sym_escape_char_token1] = ACTIONS(2601), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2601), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2601), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2601), - [aux_sym_forward_agent_token1] = ACTIONS(2601), - [aux_sym_forward_x11_token1] = ACTIONS(2603), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2601), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2601), - [aux_sym_gateway_ports_token1] = ACTIONS(2601), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2601), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2601), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2601), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2601), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2601), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2601), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2601), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2601), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2601), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2601), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2601), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2601), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2601), - [aux_sym_host_key_alias_token1] = ACTIONS(2601), - [aux_sym_hostname_token1] = ACTIONS(2601), - [aux_sym_identities_only_token1] = ACTIONS(2601), - [aux_sym_identity_agent_token1] = ACTIONS(2601), - [aux_sym_identity_file_token1] = ACTIONS(2601), - [aux_sym_ignore_unknown_token1] = ACTIONS(2601), - [aux_sym_include_token1] = ACTIONS(2601), - [aux_sym_ip_qos_token1] = ACTIONS(2601), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2601), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2601), - [aux_sym_kex_algorithms_token1] = ACTIONS(2601), - [aux_sym_known_hosts_command_token1] = ACTIONS(2601), - [aux_sym_local_command_token1] = ACTIONS(2601), - [aux_sym_local_forward_token1] = ACTIONS(2601), - [aux_sym_log_level_token1] = ACTIONS(2601), - [aux_sym_log_verbose_token1] = ACTIONS(2601), - [aux_sym_macs_token1] = ACTIONS(2601), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2601), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2601), - [aux_sym_password_authentication_token1] = ACTIONS(2601), - [aux_sym_permit_local_command_token1] = ACTIONS(2601), - [aux_sym_permit_remote_open_token1] = ACTIONS(2601), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2601), - [aux_sym_port_token1] = ACTIONS(2601), - [aux_sym_preferred_authentications_token1] = ACTIONS(2601), - [aux_sym_protocol_token1] = ACTIONS(2601), - [aux_sym_proxy_command_token1] = ACTIONS(2601), - [aux_sym_proxy_jump_token1] = ACTIONS(2601), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2601), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2601), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2601), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2601), - [aux_sym_rekey_limit_token1] = ACTIONS(2601), - [aux_sym_remote_command_token1] = ACTIONS(2601), - [aux_sym_remote_forward_token1] = ACTIONS(2601), - [aux_sym_request_tty_token1] = ACTIONS(2601), - [aux_sym_required_rsa_size_token1] = ACTIONS(2601), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2601), - [aux_sym_security_key_provider_token1] = ACTIONS(2601), - [aux_sym_send_env_token1] = ACTIONS(2601), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2601), - [aux_sym_server_alive_interval_token1] = ACTIONS(2601), - [aux_sym_session_type_token1] = ACTIONS(2601), - [aux_sym_set_env_token1] = ACTIONS(2601), - [aux_sym_stdin_null_token1] = ACTIONS(2601), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2601), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2601), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2601), - [aux_sym_syslog_facility_token1] = ACTIONS(2601), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2601), - [aux_sym_keep_alive_token1] = ACTIONS(2601), - [aux_sym_tunnel_token1] = ACTIONS(2603), - [aux_sym_tunnel_device_token1] = ACTIONS(2601), - [aux_sym_update_host_keys_token1] = ACTIONS(2601), - [aux_sym_use_keychain_token1] = ACTIONS(2601), - [aux_sym_use_roaming_token1] = ACTIONS(2601), - [aux_sym_user_token1] = ACTIONS(2603), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2601), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2601), - [aux_sym_visual_host_key_token1] = ACTIONS(2601), - [aux_sym_xauth_location_token1] = ACTIONS(2601), + [ts_builtin_sym_end] = ACTIONS(2606), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2608), + [anon_sym_DQUOTE] = ACTIONS(2610), + [aux_sym_match_token1] = ACTIONS(2606), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2606), + [aux_sym_address_family_token1] = ACTIONS(2606), + [aux_sym_batch_mode_token1] = ACTIONS(2606), + [aux_sym_bind_address_token1] = ACTIONS(2606), + [aux_sym_bind_interface_token1] = ACTIONS(2606), + [aux_sym_canonical_domains_token1] = ACTIONS(2606), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2606), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2606), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2606), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2606), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2606), + [aux_sym_certificate_file_token1] = ACTIONS(2606), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2606), + [aux_sym_check_host_ip_token1] = ACTIONS(2606), + [aux_sym_ciphers_token1] = ACTIONS(2606), + [aux_sym_cipher_token1] = ACTIONS(2608), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2606), + [aux_sym_compression_token1] = ACTIONS(2606), + [aux_sym_connection_attempts_token1] = ACTIONS(2606), + [aux_sym_connect_timeout_token1] = ACTIONS(2606), + [aux_sym_control_master_token1] = ACTIONS(2606), + [aux_sym_control_path_token1] = ACTIONS(2606), + [aux_sym_control_persist_token1] = ACTIONS(2606), + [aux_sym_dynamic_forward_token1] = ACTIONS(2606), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2606), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2606), + [aux_sym_escape_char_token1] = ACTIONS(2606), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2606), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2606), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2606), + [aux_sym_forward_agent_token1] = ACTIONS(2606), + [aux_sym_forward_x11_token1] = ACTIONS(2608), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2606), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2606), + [aux_sym_gateway_ports_token1] = ACTIONS(2606), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2606), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2606), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2606), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2606), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2606), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2606), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2606), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2606), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2606), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2606), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2606), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2606), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2606), + [aux_sym_host_key_alias_token1] = ACTIONS(2606), + [aux_sym_hostname_token1] = ACTIONS(2606), + [aux_sym_identities_only_token1] = ACTIONS(2606), + [aux_sym_identity_agent_token1] = ACTIONS(2606), + [aux_sym_identity_file_token1] = ACTIONS(2606), + [aux_sym_ignore_unknown_token1] = ACTIONS(2606), + [aux_sym_include_token1] = ACTIONS(2606), + [aux_sym_ip_qos_token1] = ACTIONS(2606), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2606), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2606), + [aux_sym_kex_algorithms_token1] = ACTIONS(2606), + [aux_sym_known_hosts_command_token1] = ACTIONS(2606), + [aux_sym_local_command_token1] = ACTIONS(2606), + [aux_sym_local_forward_token1] = ACTIONS(2606), + [aux_sym_log_level_token1] = ACTIONS(2606), + [aux_sym_log_verbose_token1] = ACTIONS(2606), + [aux_sym_macs_token1] = ACTIONS(2606), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2606), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2606), + [aux_sym_password_authentication_token1] = ACTIONS(2606), + [aux_sym_permit_local_command_token1] = ACTIONS(2606), + [aux_sym_permit_remote_open_token1] = ACTIONS(2606), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2606), + [aux_sym_port_token1] = ACTIONS(2606), + [aux_sym_preferred_authentications_token1] = ACTIONS(2606), + [aux_sym_protocol_token1] = ACTIONS(2606), + [aux_sym_proxy_command_token1] = ACTIONS(2606), + [aux_sym_proxy_jump_token1] = ACTIONS(2606), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2606), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2606), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2606), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2606), + [aux_sym_rekey_limit_token1] = ACTIONS(2606), + [aux_sym_remote_command_token1] = ACTIONS(2606), + [aux_sym_remote_forward_token1] = ACTIONS(2606), + [aux_sym_request_tty_token1] = ACTIONS(2606), + [aux_sym_required_rsa_size_token1] = ACTIONS(2606), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2606), + [aux_sym_security_key_provider_token1] = ACTIONS(2606), + [aux_sym_send_env_token1] = ACTIONS(2606), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2606), + [aux_sym_server_alive_interval_token1] = ACTIONS(2606), + [aux_sym_session_type_token1] = ACTIONS(2606), + [aux_sym_set_env_token1] = ACTIONS(2606), + [aux_sym_stdin_null_token1] = ACTIONS(2606), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2606), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2606), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2606), + [aux_sym_syslog_facility_token1] = ACTIONS(2606), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2606), + [aux_sym_keep_alive_token1] = ACTIONS(2606), + [aux_sym_tunnel_token1] = ACTIONS(2608), + [aux_sym_tunnel_device_token1] = ACTIONS(2606), + [aux_sym_update_host_keys_token1] = ACTIONS(2606), + [aux_sym_use_keychain_token1] = ACTIONS(2606), + [aux_sym_use_roaming_token1] = ACTIONS(2606), + [aux_sym_user_token1] = ACTIONS(2608), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2606), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2606), + [aux_sym_visual_host_key_token1] = ACTIONS(2606), + [aux_sym_xauth_location_token1] = ACTIONS(2606), }, [369] = { - [ts_builtin_sym_end] = ACTIONS(2605), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2607), - [anon_sym_DQUOTE] = ACTIONS(2605), - [aux_sym_match_token1] = ACTIONS(2605), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2605), - [aux_sym_address_family_token1] = ACTIONS(2605), - [aux_sym_batch_mode_token1] = ACTIONS(2605), - [aux_sym_bind_address_token1] = ACTIONS(2605), - [aux_sym_bind_interface_token1] = ACTIONS(2605), - [aux_sym_canonical_domains_token1] = ACTIONS(2605), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2605), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2605), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2605), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2605), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2605), - [aux_sym_certificate_file_token1] = ACTIONS(2605), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2605), - [aux_sym_check_host_ip_token1] = ACTIONS(2605), - [aux_sym_ciphers_token1] = ACTIONS(2605), - [aux_sym_cipher_token1] = ACTIONS(2607), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2605), - [aux_sym_compression_token1] = ACTIONS(2605), - [aux_sym_connection_attempts_token1] = ACTIONS(2605), - [aux_sym_connect_timeout_token1] = ACTIONS(2605), - [aux_sym_control_master_token1] = ACTIONS(2605), - [aux_sym_control_path_token1] = ACTIONS(2605), - [aux_sym_control_persist_token1] = ACTIONS(2605), - [aux_sym_dynamic_forward_token1] = ACTIONS(2605), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2605), - [aux_sym_escape_char_token1] = ACTIONS(2605), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2605), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2605), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2605), - [aux_sym_forward_agent_token1] = ACTIONS(2605), - [aux_sym_forward_x11_token1] = ACTIONS(2607), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2605), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2605), - [aux_sym_gateway_ports_token1] = ACTIONS(2605), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2605), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2605), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2605), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2605), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2605), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2605), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2605), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2605), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2605), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2605), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2605), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2605), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2605), - [aux_sym_host_key_alias_token1] = ACTIONS(2605), - [aux_sym_hostname_token1] = ACTIONS(2605), - [aux_sym_identities_only_token1] = ACTIONS(2605), - [aux_sym_identity_agent_token1] = ACTIONS(2605), - [aux_sym_identity_file_token1] = ACTIONS(2605), - [aux_sym_ignore_unknown_token1] = ACTIONS(2605), - [aux_sym_include_token1] = ACTIONS(2605), - [aux_sym_ip_qos_token1] = ACTIONS(2605), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2605), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2605), - [aux_sym_kex_algorithms_token1] = ACTIONS(2605), - [aux_sym_known_hosts_command_token1] = ACTIONS(2605), - [aux_sym_local_command_token1] = ACTIONS(2605), - [aux_sym_local_forward_token1] = ACTIONS(2605), - [aux_sym_log_level_token1] = ACTIONS(2605), - [aux_sym_log_verbose_token1] = ACTIONS(2605), - [aux_sym_macs_token1] = ACTIONS(2605), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2605), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2605), - [aux_sym_password_authentication_token1] = ACTIONS(2605), - [aux_sym_permit_local_command_token1] = ACTIONS(2605), - [aux_sym_permit_remote_open_token1] = ACTIONS(2605), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2605), - [aux_sym_port_token1] = ACTIONS(2605), - [aux_sym_preferred_authentications_token1] = ACTIONS(2605), - [aux_sym_protocol_token1] = ACTIONS(2605), - [aux_sym_proxy_command_token1] = ACTIONS(2605), - [aux_sym_proxy_jump_token1] = ACTIONS(2605), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2605), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2605), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2605), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2605), - [aux_sym_rekey_limit_token1] = ACTIONS(2605), - [aux_sym_remote_command_token1] = ACTIONS(2605), - [aux_sym_remote_forward_token1] = ACTIONS(2605), - [aux_sym_request_tty_token1] = ACTIONS(2605), - [aux_sym_required_rsa_size_token1] = ACTIONS(2605), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2605), - [aux_sym_security_key_provider_token1] = ACTIONS(2605), - [aux_sym_send_env_token1] = ACTIONS(2605), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2605), - [aux_sym_server_alive_interval_token1] = ACTIONS(2605), - [aux_sym_session_type_token1] = ACTIONS(2605), - [aux_sym_set_env_token1] = ACTIONS(2605), - [aux_sym_stdin_null_token1] = ACTIONS(2605), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2605), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2605), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2605), - [aux_sym_syslog_facility_token1] = ACTIONS(2605), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2605), - [aux_sym_keep_alive_token1] = ACTIONS(2605), - [aux_sym_tunnel_token1] = ACTIONS(2607), - [aux_sym_tunnel_device_token1] = ACTIONS(2605), - [aux_sym_update_host_keys_token1] = ACTIONS(2605), - [aux_sym_use_keychain_token1] = ACTIONS(2605), - [aux_sym_use_roaming_token1] = ACTIONS(2605), - [aux_sym_user_token1] = ACTIONS(2607), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2605), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2605), - [aux_sym_visual_host_key_token1] = ACTIONS(2605), - [aux_sym_xauth_location_token1] = ACTIONS(2605), + [ts_builtin_sym_end] = ACTIONS(2612), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2614), + [anon_sym_DQUOTE] = ACTIONS(2616), + [aux_sym_match_token1] = ACTIONS(2612), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2612), + [aux_sym_address_family_token1] = ACTIONS(2612), + [aux_sym_batch_mode_token1] = ACTIONS(2612), + [aux_sym_bind_address_token1] = ACTIONS(2612), + [aux_sym_bind_interface_token1] = ACTIONS(2612), + [aux_sym_canonical_domains_token1] = ACTIONS(2612), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2612), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2612), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2612), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2612), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2612), + [aux_sym_certificate_file_token1] = ACTIONS(2612), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2612), + [aux_sym_check_host_ip_token1] = ACTIONS(2612), + [aux_sym_ciphers_token1] = ACTIONS(2612), + [aux_sym_cipher_token1] = ACTIONS(2614), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2612), + [aux_sym_compression_token1] = ACTIONS(2612), + [aux_sym_connection_attempts_token1] = ACTIONS(2612), + [aux_sym_connect_timeout_token1] = ACTIONS(2612), + [aux_sym_control_master_token1] = ACTIONS(2612), + [aux_sym_control_path_token1] = ACTIONS(2612), + [aux_sym_control_persist_token1] = ACTIONS(2612), + [aux_sym_dynamic_forward_token1] = ACTIONS(2612), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2612), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2612), + [aux_sym_escape_char_token1] = ACTIONS(2612), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2612), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2612), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2612), + [aux_sym_forward_agent_token1] = ACTIONS(2612), + [aux_sym_forward_x11_token1] = ACTIONS(2614), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2612), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2612), + [aux_sym_gateway_ports_token1] = ACTIONS(2612), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2612), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2612), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2612), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2612), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2612), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2612), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2612), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2612), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2612), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2612), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2612), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2612), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2612), + [aux_sym_host_key_alias_token1] = ACTIONS(2612), + [aux_sym_hostname_token1] = ACTIONS(2612), + [aux_sym_identities_only_token1] = ACTIONS(2612), + [aux_sym_identity_agent_token1] = ACTIONS(2612), + [aux_sym_identity_file_token1] = ACTIONS(2612), + [aux_sym_ignore_unknown_token1] = ACTIONS(2612), + [aux_sym_include_token1] = ACTIONS(2612), + [aux_sym_ip_qos_token1] = ACTIONS(2612), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2612), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2612), + [aux_sym_kex_algorithms_token1] = ACTIONS(2612), + [aux_sym_known_hosts_command_token1] = ACTIONS(2612), + [aux_sym_local_command_token1] = ACTIONS(2612), + [aux_sym_local_forward_token1] = ACTIONS(2612), + [aux_sym_log_level_token1] = ACTIONS(2612), + [aux_sym_log_verbose_token1] = ACTIONS(2612), + [aux_sym_macs_token1] = ACTIONS(2612), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2612), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2612), + [aux_sym_password_authentication_token1] = ACTIONS(2612), + [aux_sym_permit_local_command_token1] = ACTIONS(2612), + [aux_sym_permit_remote_open_token1] = ACTIONS(2612), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2612), + [aux_sym_port_token1] = ACTIONS(2612), + [aux_sym_preferred_authentications_token1] = ACTIONS(2612), + [aux_sym_protocol_token1] = ACTIONS(2612), + [aux_sym_proxy_command_token1] = ACTIONS(2612), + [aux_sym_proxy_jump_token1] = ACTIONS(2612), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2612), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2612), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2612), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2612), + [aux_sym_rekey_limit_token1] = ACTIONS(2612), + [aux_sym_remote_command_token1] = ACTIONS(2612), + [aux_sym_remote_forward_token1] = ACTIONS(2612), + [aux_sym_request_tty_token1] = ACTIONS(2612), + [aux_sym_required_rsa_size_token1] = ACTIONS(2612), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2612), + [aux_sym_security_key_provider_token1] = ACTIONS(2612), + [aux_sym_send_env_token1] = ACTIONS(2612), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2612), + [aux_sym_server_alive_interval_token1] = ACTIONS(2612), + [aux_sym_session_type_token1] = ACTIONS(2612), + [aux_sym_set_env_token1] = ACTIONS(2612), + [aux_sym_stdin_null_token1] = ACTIONS(2612), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2612), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2612), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2612), + [aux_sym_syslog_facility_token1] = ACTIONS(2612), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2612), + [aux_sym_keep_alive_token1] = ACTIONS(2612), + [aux_sym_tunnel_token1] = ACTIONS(2614), + [aux_sym_tunnel_device_token1] = ACTIONS(2612), + [aux_sym_update_host_keys_token1] = ACTIONS(2612), + [aux_sym_use_keychain_token1] = ACTIONS(2612), + [aux_sym_use_roaming_token1] = ACTIONS(2612), + [aux_sym_user_token1] = ACTIONS(2614), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2612), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2612), + [aux_sym_visual_host_key_token1] = ACTIONS(2612), + [aux_sym_xauth_location_token1] = ACTIONS(2612), }, [370] = { - [ts_builtin_sym_end] = ACTIONS(2609), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2611), - [anon_sym_DQUOTE] = ACTIONS(2613), - [aux_sym_match_token1] = ACTIONS(2609), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2609), - [aux_sym_address_family_token1] = ACTIONS(2609), - [aux_sym_batch_mode_token1] = ACTIONS(2609), - [aux_sym_bind_address_token1] = ACTIONS(2609), - [aux_sym_bind_interface_token1] = ACTIONS(2609), - [aux_sym_canonical_domains_token1] = ACTIONS(2609), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2609), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2609), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2609), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2609), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2609), - [aux_sym_certificate_file_token1] = ACTIONS(2609), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2609), - [aux_sym_check_host_ip_token1] = ACTIONS(2609), - [aux_sym_ciphers_token1] = ACTIONS(2609), - [aux_sym_cipher_token1] = ACTIONS(2611), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2609), - [aux_sym_compression_token1] = ACTIONS(2609), - [aux_sym_connection_attempts_token1] = ACTIONS(2609), - [aux_sym_connect_timeout_token1] = ACTIONS(2609), - [aux_sym_control_master_token1] = ACTIONS(2609), - [aux_sym_control_path_token1] = ACTIONS(2609), - [aux_sym_control_persist_token1] = ACTIONS(2609), - [aux_sym_dynamic_forward_token1] = ACTIONS(2609), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2609), - [aux_sym_escape_char_token1] = ACTIONS(2609), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2609), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2609), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2609), - [aux_sym_forward_agent_token1] = ACTIONS(2609), - [aux_sym_forward_x11_token1] = ACTIONS(2611), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2609), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2609), - [aux_sym_gateway_ports_token1] = ACTIONS(2609), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2609), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2609), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2609), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2609), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2609), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2609), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2609), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2609), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2609), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2609), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2609), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2609), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2609), - [aux_sym_host_key_alias_token1] = ACTIONS(2609), - [aux_sym_hostname_token1] = ACTIONS(2609), - [aux_sym_identities_only_token1] = ACTIONS(2609), - [aux_sym_identity_agent_token1] = ACTIONS(2609), - [aux_sym_identity_file_token1] = ACTIONS(2609), - [aux_sym_ignore_unknown_token1] = ACTIONS(2609), - [aux_sym_include_token1] = ACTIONS(2609), - [aux_sym_ip_qos_token1] = ACTIONS(2609), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2609), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2609), - [aux_sym_kex_algorithms_token1] = ACTIONS(2609), - [aux_sym_known_hosts_command_token1] = ACTIONS(2609), - [aux_sym_local_command_token1] = ACTIONS(2609), - [aux_sym_local_forward_token1] = ACTIONS(2609), - [aux_sym_log_level_token1] = ACTIONS(2609), - [aux_sym_log_verbose_token1] = ACTIONS(2609), - [aux_sym_macs_token1] = ACTIONS(2609), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2609), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2609), - [aux_sym_password_authentication_token1] = ACTIONS(2609), - [aux_sym_permit_local_command_token1] = ACTIONS(2609), - [aux_sym_permit_remote_open_token1] = ACTIONS(2609), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2609), - [aux_sym_port_token1] = ACTIONS(2609), - [aux_sym_preferred_authentications_token1] = ACTIONS(2609), - [aux_sym_protocol_token1] = ACTIONS(2609), - [aux_sym_proxy_command_token1] = ACTIONS(2609), - [aux_sym_proxy_jump_token1] = ACTIONS(2609), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2609), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2609), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2609), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2609), - [aux_sym_rekey_limit_token1] = ACTIONS(2609), - [aux_sym_remote_command_token1] = ACTIONS(2609), - [aux_sym_remote_forward_token1] = ACTIONS(2609), - [aux_sym_request_tty_token1] = ACTIONS(2609), - [aux_sym_required_rsa_size_token1] = ACTIONS(2609), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2609), - [aux_sym_security_key_provider_token1] = ACTIONS(2609), - [aux_sym_send_env_token1] = ACTIONS(2609), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2609), - [aux_sym_server_alive_interval_token1] = ACTIONS(2609), - [aux_sym_session_type_token1] = ACTIONS(2609), - [aux_sym_set_env_token1] = ACTIONS(2609), - [aux_sym_stdin_null_token1] = ACTIONS(2609), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2609), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2609), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2609), - [aux_sym_syslog_facility_token1] = ACTIONS(2609), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2609), - [aux_sym_keep_alive_token1] = ACTIONS(2609), - [aux_sym_tunnel_token1] = ACTIONS(2611), - [aux_sym_tunnel_device_token1] = ACTIONS(2609), - [aux_sym_update_host_keys_token1] = ACTIONS(2609), - [aux_sym_use_keychain_token1] = ACTIONS(2609), - [aux_sym_use_roaming_token1] = ACTIONS(2609), - [aux_sym_user_token1] = ACTIONS(2611), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2609), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2609), - [aux_sym_visual_host_key_token1] = ACTIONS(2609), - [aux_sym_xauth_location_token1] = ACTIONS(2609), + [ts_builtin_sym_end] = ACTIONS(2618), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2620), + [anon_sym_DQUOTE] = ACTIONS(2618), + [aux_sym_match_token1] = ACTIONS(2618), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2618), + [aux_sym_address_family_token1] = ACTIONS(2618), + [aux_sym_batch_mode_token1] = ACTIONS(2618), + [aux_sym_bind_address_token1] = ACTIONS(2618), + [aux_sym_bind_interface_token1] = ACTIONS(2618), + [aux_sym_canonical_domains_token1] = ACTIONS(2618), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2618), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2618), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2618), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2618), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2618), + [aux_sym_certificate_file_token1] = ACTIONS(2618), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2618), + [aux_sym_check_host_ip_token1] = ACTIONS(2618), + [aux_sym_ciphers_token1] = ACTIONS(2618), + [aux_sym_cipher_token1] = ACTIONS(2620), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2618), + [aux_sym_compression_token1] = ACTIONS(2618), + [aux_sym_connection_attempts_token1] = ACTIONS(2618), + [aux_sym_connect_timeout_token1] = ACTIONS(2618), + [aux_sym_control_master_token1] = ACTIONS(2618), + [aux_sym_control_path_token1] = ACTIONS(2618), + [aux_sym_control_persist_token1] = ACTIONS(2618), + [aux_sym_dynamic_forward_token1] = ACTIONS(2618), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2618), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2618), + [aux_sym_escape_char_token1] = ACTIONS(2618), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2618), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2618), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2618), + [aux_sym_forward_agent_token1] = ACTIONS(2618), + [aux_sym_forward_x11_token1] = ACTIONS(2620), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2618), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2618), + [aux_sym_gateway_ports_token1] = ACTIONS(2618), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2618), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2618), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2618), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2618), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2618), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2618), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2618), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2618), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2618), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2618), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2618), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2618), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2618), + [aux_sym_host_key_alias_token1] = ACTIONS(2618), + [aux_sym_hostname_token1] = ACTIONS(2618), + [aux_sym_identities_only_token1] = ACTIONS(2618), + [aux_sym_identity_agent_token1] = ACTIONS(2618), + [aux_sym_identity_file_token1] = ACTIONS(2618), + [aux_sym_ignore_unknown_token1] = ACTIONS(2618), + [aux_sym_include_token1] = ACTIONS(2618), + [aux_sym_ip_qos_token1] = ACTIONS(2618), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2618), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2618), + [aux_sym_kex_algorithms_token1] = ACTIONS(2618), + [aux_sym_known_hosts_command_token1] = ACTIONS(2618), + [aux_sym_local_command_token1] = ACTIONS(2618), + [aux_sym_local_forward_token1] = ACTIONS(2618), + [aux_sym_log_level_token1] = ACTIONS(2618), + [aux_sym_log_verbose_token1] = ACTIONS(2618), + [aux_sym_macs_token1] = ACTIONS(2618), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2618), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2618), + [aux_sym_password_authentication_token1] = ACTIONS(2618), + [aux_sym_permit_local_command_token1] = ACTIONS(2618), + [aux_sym_permit_remote_open_token1] = ACTIONS(2618), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2618), + [aux_sym_port_token1] = ACTIONS(2618), + [aux_sym_preferred_authentications_token1] = ACTIONS(2618), + [aux_sym_protocol_token1] = ACTIONS(2618), + [aux_sym_proxy_command_token1] = ACTIONS(2618), + [aux_sym_proxy_jump_token1] = ACTIONS(2618), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2618), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2618), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2618), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2618), + [aux_sym_rekey_limit_token1] = ACTIONS(2618), + [aux_sym_remote_command_token1] = ACTIONS(2618), + [aux_sym_remote_forward_token1] = ACTIONS(2618), + [aux_sym_request_tty_token1] = ACTIONS(2618), + [aux_sym_required_rsa_size_token1] = ACTIONS(2618), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2618), + [aux_sym_security_key_provider_token1] = ACTIONS(2618), + [aux_sym_send_env_token1] = ACTIONS(2618), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2618), + [aux_sym_server_alive_interval_token1] = ACTIONS(2618), + [aux_sym_session_type_token1] = ACTIONS(2618), + [aux_sym_set_env_token1] = ACTIONS(2618), + [aux_sym_stdin_null_token1] = ACTIONS(2618), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2618), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2618), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2618), + [aux_sym_syslog_facility_token1] = ACTIONS(2618), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2618), + [aux_sym_keep_alive_token1] = ACTIONS(2618), + [aux_sym_tunnel_token1] = ACTIONS(2620), + [aux_sym_tunnel_device_token1] = ACTIONS(2618), + [aux_sym_update_host_keys_token1] = ACTIONS(2618), + [aux_sym_use_keychain_token1] = ACTIONS(2618), + [aux_sym_use_roaming_token1] = ACTIONS(2618), + [aux_sym_user_token1] = ACTIONS(2620), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2618), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2618), + [aux_sym_visual_host_key_token1] = ACTIONS(2618), + [aux_sym_xauth_location_token1] = ACTIONS(2618), }, [371] = { - [ts_builtin_sym_end] = ACTIONS(2615), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(2615), - [aux_sym_match_token1] = ACTIONS(2615), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2615), - [aux_sym_address_family_token1] = ACTIONS(2615), - [aux_sym_batch_mode_token1] = ACTIONS(2615), - [aux_sym_bind_address_token1] = ACTIONS(2615), - [aux_sym_bind_interface_token1] = ACTIONS(2615), - [aux_sym_canonical_domains_token1] = ACTIONS(2615), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2615), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2615), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2615), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2615), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2615), - [aux_sym_certificate_file_token1] = ACTIONS(2615), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2615), - [aux_sym_check_host_ip_token1] = ACTIONS(2615), - [aux_sym_ciphers_token1] = ACTIONS(2615), - [aux_sym_cipher_token1] = ACTIONS(2617), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2615), - [aux_sym_compression_token1] = ACTIONS(2615), - [aux_sym_connection_attempts_token1] = ACTIONS(2615), - [aux_sym_connect_timeout_token1] = ACTIONS(2615), - [aux_sym_control_master_token1] = ACTIONS(2615), - [aux_sym_control_path_token1] = ACTIONS(2615), - [aux_sym_control_persist_token1] = ACTIONS(2615), - [aux_sym_dynamic_forward_token1] = ACTIONS(2615), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2615), - [aux_sym_escape_char_token1] = ACTIONS(2615), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2615), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2615), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2615), - [aux_sym_forward_agent_token1] = ACTIONS(2615), - [aux_sym_forward_x11_token1] = ACTIONS(2617), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2615), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2615), - [aux_sym_gateway_ports_token1] = ACTIONS(2615), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2615), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2615), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2615), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2615), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2615), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2615), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2615), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2615), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2615), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2615), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2615), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2615), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2615), - [aux_sym_host_key_alias_token1] = ACTIONS(2615), - [aux_sym_hostname_token1] = ACTIONS(2615), - [aux_sym_identities_only_token1] = ACTIONS(2615), - [aux_sym_identity_agent_token1] = ACTIONS(2615), - [aux_sym_identity_file_token1] = ACTIONS(2615), - [aux_sym_ignore_unknown_token1] = ACTIONS(2615), - [aux_sym_include_token1] = ACTIONS(2615), - [aux_sym_ip_qos_token1] = ACTIONS(2615), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2615), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2615), - [aux_sym_kex_algorithms_token1] = ACTIONS(2615), - [aux_sym_known_hosts_command_token1] = ACTIONS(2615), - [aux_sym_local_command_token1] = ACTIONS(2615), - [aux_sym_local_forward_token1] = ACTIONS(2615), - [aux_sym_log_level_token1] = ACTIONS(2615), - [aux_sym_log_verbose_token1] = ACTIONS(2615), - [aux_sym_macs_token1] = ACTIONS(2615), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2615), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2615), - [aux_sym_password_authentication_token1] = ACTIONS(2615), - [aux_sym_permit_local_command_token1] = ACTIONS(2615), - [aux_sym_permit_remote_open_token1] = ACTIONS(2615), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2615), - [aux_sym_port_token1] = ACTIONS(2615), - [aux_sym_preferred_authentications_token1] = ACTIONS(2615), - [aux_sym_protocol_token1] = ACTIONS(2615), - [aux_sym_proxy_command_token1] = ACTIONS(2615), - [aux_sym_proxy_jump_token1] = ACTIONS(2615), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2615), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2615), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2615), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2615), - [aux_sym_rekey_limit_token1] = ACTIONS(2615), - [aux_sym_remote_command_token1] = ACTIONS(2615), - [aux_sym_remote_forward_token1] = ACTIONS(2615), - [aux_sym_request_tty_token1] = ACTIONS(2615), - [aux_sym_required_rsa_size_token1] = ACTIONS(2615), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2615), - [aux_sym_security_key_provider_token1] = ACTIONS(2615), - [aux_sym_send_env_token1] = ACTIONS(2615), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2615), - [aux_sym_server_alive_interval_token1] = ACTIONS(2615), - [aux_sym_session_type_token1] = ACTIONS(2615), - [aux_sym_set_env_token1] = ACTIONS(2615), - [aux_sym_stdin_null_token1] = ACTIONS(2615), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2615), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2615), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2615), - [aux_sym_syslog_facility_token1] = ACTIONS(2615), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2615), - [aux_sym_keep_alive_token1] = ACTIONS(2615), - [aux_sym_tunnel_token1] = ACTIONS(2617), - [aux_sym_tunnel_device_token1] = ACTIONS(2615), - [aux_sym_update_host_keys_token1] = ACTIONS(2615), - [aux_sym_use_keychain_token1] = ACTIONS(2615), - [aux_sym_use_roaming_token1] = ACTIONS(2615), - [aux_sym_user_token1] = ACTIONS(2617), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2615), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2615), - [aux_sym_visual_host_key_token1] = ACTIONS(2615), - [aux_sym_xauth_location_token1] = ACTIONS(2615), + [ts_builtin_sym_end] = ACTIONS(2622), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2624), + [anon_sym_DQUOTE] = ACTIONS(2622), + [aux_sym_match_token1] = ACTIONS(2622), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2622), + [aux_sym_address_family_token1] = ACTIONS(2622), + [aux_sym_batch_mode_token1] = ACTIONS(2622), + [aux_sym_bind_address_token1] = ACTIONS(2622), + [aux_sym_bind_interface_token1] = ACTIONS(2622), + [aux_sym_canonical_domains_token1] = ACTIONS(2622), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2622), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2622), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2622), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2622), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2622), + [aux_sym_certificate_file_token1] = ACTIONS(2622), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2622), + [aux_sym_check_host_ip_token1] = ACTIONS(2622), + [aux_sym_ciphers_token1] = ACTIONS(2622), + [aux_sym_cipher_token1] = ACTIONS(2624), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2622), + [aux_sym_compression_token1] = ACTIONS(2622), + [aux_sym_connection_attempts_token1] = ACTIONS(2622), + [aux_sym_connect_timeout_token1] = ACTIONS(2622), + [aux_sym_control_master_token1] = ACTIONS(2622), + [aux_sym_control_path_token1] = ACTIONS(2622), + [aux_sym_control_persist_token1] = ACTIONS(2622), + [aux_sym_dynamic_forward_token1] = ACTIONS(2622), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2622), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2622), + [aux_sym_escape_char_token1] = ACTIONS(2622), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2622), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2622), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2622), + [aux_sym_forward_agent_token1] = ACTIONS(2622), + [aux_sym_forward_x11_token1] = ACTIONS(2624), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2622), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2622), + [aux_sym_gateway_ports_token1] = ACTIONS(2622), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2622), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2622), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2622), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2622), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2622), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2622), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2622), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2622), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2622), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2622), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2622), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2622), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2622), + [aux_sym_host_key_alias_token1] = ACTIONS(2622), + [aux_sym_hostname_token1] = ACTIONS(2622), + [aux_sym_identities_only_token1] = ACTIONS(2622), + [aux_sym_identity_agent_token1] = ACTIONS(2622), + [aux_sym_identity_file_token1] = ACTIONS(2622), + [aux_sym_ignore_unknown_token1] = ACTIONS(2622), + [aux_sym_include_token1] = ACTIONS(2622), + [aux_sym_ip_qos_token1] = ACTIONS(2622), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2622), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2622), + [aux_sym_kex_algorithms_token1] = ACTIONS(2622), + [aux_sym_known_hosts_command_token1] = ACTIONS(2622), + [aux_sym_local_command_token1] = ACTIONS(2622), + [aux_sym_local_forward_token1] = ACTIONS(2622), + [aux_sym_log_level_token1] = ACTIONS(2622), + [aux_sym_log_verbose_token1] = ACTIONS(2622), + [aux_sym_macs_token1] = ACTIONS(2622), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2622), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2622), + [aux_sym_password_authentication_token1] = ACTIONS(2622), + [aux_sym_permit_local_command_token1] = ACTIONS(2622), + [aux_sym_permit_remote_open_token1] = ACTIONS(2622), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2622), + [aux_sym_port_token1] = ACTIONS(2622), + [aux_sym_preferred_authentications_token1] = ACTIONS(2622), + [aux_sym_protocol_token1] = ACTIONS(2622), + [aux_sym_proxy_command_token1] = ACTIONS(2622), + [aux_sym_proxy_jump_token1] = ACTIONS(2622), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2622), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2622), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2622), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2622), + [aux_sym_rekey_limit_token1] = ACTIONS(2622), + [aux_sym_remote_command_token1] = ACTIONS(2622), + [aux_sym_remote_forward_token1] = ACTIONS(2622), + [aux_sym_request_tty_token1] = ACTIONS(2622), + [aux_sym_required_rsa_size_token1] = ACTIONS(2622), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2622), + [aux_sym_security_key_provider_token1] = ACTIONS(2622), + [aux_sym_send_env_token1] = ACTIONS(2622), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2622), + [aux_sym_server_alive_interval_token1] = ACTIONS(2622), + [aux_sym_session_type_token1] = ACTIONS(2622), + [aux_sym_set_env_token1] = ACTIONS(2622), + [aux_sym_stdin_null_token1] = ACTIONS(2622), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2622), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2622), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2622), + [aux_sym_syslog_facility_token1] = ACTIONS(2622), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2622), + [aux_sym_keep_alive_token1] = ACTIONS(2622), + [aux_sym_tunnel_token1] = ACTIONS(2624), + [aux_sym_tunnel_device_token1] = ACTIONS(2622), + [aux_sym_update_host_keys_token1] = ACTIONS(2622), + [aux_sym_use_keychain_token1] = ACTIONS(2622), + [aux_sym_use_roaming_token1] = ACTIONS(2622), + [aux_sym_user_token1] = ACTIONS(2624), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2622), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2622), + [aux_sym_visual_host_key_token1] = ACTIONS(2622), + [aux_sym_xauth_location_token1] = ACTIONS(2622), }, [372] = { - [ts_builtin_sym_end] = ACTIONS(2619), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2621), - [anon_sym_DQUOTE] = ACTIONS(2623), - [aux_sym_match_token1] = ACTIONS(2619), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2619), - [aux_sym_address_family_token1] = ACTIONS(2619), - [aux_sym_batch_mode_token1] = ACTIONS(2619), - [aux_sym_bind_address_token1] = ACTIONS(2619), - [aux_sym_bind_interface_token1] = ACTIONS(2619), - [aux_sym_canonical_domains_token1] = ACTIONS(2619), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2619), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2619), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2619), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2619), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2619), - [aux_sym_certificate_file_token1] = ACTIONS(2619), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2619), - [aux_sym_check_host_ip_token1] = ACTIONS(2619), - [aux_sym_ciphers_token1] = ACTIONS(2619), - [aux_sym_cipher_token1] = ACTIONS(2621), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2619), - [aux_sym_compression_token1] = ACTIONS(2619), - [aux_sym_connection_attempts_token1] = ACTIONS(2619), - [aux_sym_connect_timeout_token1] = ACTIONS(2619), - [aux_sym_control_master_token1] = ACTIONS(2619), - [aux_sym_control_path_token1] = ACTIONS(2619), - [aux_sym_control_persist_token1] = ACTIONS(2619), - [aux_sym_dynamic_forward_token1] = ACTIONS(2619), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2619), - [aux_sym_escape_char_token1] = ACTIONS(2619), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2619), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2619), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2619), - [aux_sym_forward_agent_token1] = ACTIONS(2619), - [aux_sym_forward_x11_token1] = ACTIONS(2621), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2619), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2619), - [aux_sym_gateway_ports_token1] = ACTIONS(2619), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2619), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2619), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2619), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2619), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2619), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2619), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2619), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2619), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2619), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2619), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2619), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2619), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2619), - [aux_sym_host_key_alias_token1] = ACTIONS(2619), - [aux_sym_hostname_token1] = ACTIONS(2619), - [aux_sym_identities_only_token1] = ACTIONS(2619), - [aux_sym_identity_agent_token1] = ACTIONS(2619), - [aux_sym_identity_file_token1] = ACTIONS(2619), - [aux_sym_ignore_unknown_token1] = ACTIONS(2619), - [aux_sym_include_token1] = ACTIONS(2619), - [aux_sym_ip_qos_token1] = ACTIONS(2619), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2619), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2619), - [aux_sym_kex_algorithms_token1] = ACTIONS(2619), - [aux_sym_known_hosts_command_token1] = ACTIONS(2619), - [aux_sym_local_command_token1] = ACTIONS(2619), - [aux_sym_local_forward_token1] = ACTIONS(2619), - [aux_sym_log_level_token1] = ACTIONS(2619), - [aux_sym_log_verbose_token1] = ACTIONS(2619), - [aux_sym_macs_token1] = ACTIONS(2619), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2619), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2619), - [aux_sym_password_authentication_token1] = ACTIONS(2619), - [aux_sym_permit_local_command_token1] = ACTIONS(2619), - [aux_sym_permit_remote_open_token1] = ACTIONS(2619), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2619), - [aux_sym_port_token1] = ACTIONS(2619), - [aux_sym_preferred_authentications_token1] = ACTIONS(2619), - [aux_sym_protocol_token1] = ACTIONS(2619), - [aux_sym_proxy_command_token1] = ACTIONS(2619), - [aux_sym_proxy_jump_token1] = ACTIONS(2619), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2619), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2619), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2619), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2619), - [aux_sym_rekey_limit_token1] = ACTIONS(2619), - [aux_sym_remote_command_token1] = ACTIONS(2619), - [aux_sym_remote_forward_token1] = ACTIONS(2619), - [aux_sym_request_tty_token1] = ACTIONS(2619), - [aux_sym_required_rsa_size_token1] = ACTIONS(2619), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2619), - [aux_sym_security_key_provider_token1] = ACTIONS(2619), - [aux_sym_send_env_token1] = ACTIONS(2619), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2619), - [aux_sym_server_alive_interval_token1] = ACTIONS(2619), - [aux_sym_session_type_token1] = ACTIONS(2619), - [aux_sym_set_env_token1] = ACTIONS(2619), - [aux_sym_stdin_null_token1] = ACTIONS(2619), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2619), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2619), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2619), - [aux_sym_syslog_facility_token1] = ACTIONS(2619), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2619), - [aux_sym_keep_alive_token1] = ACTIONS(2619), - [aux_sym_tunnel_token1] = ACTIONS(2621), - [aux_sym_tunnel_device_token1] = ACTIONS(2619), - [aux_sym_update_host_keys_token1] = ACTIONS(2619), - [aux_sym_use_keychain_token1] = ACTIONS(2619), - [aux_sym_use_roaming_token1] = ACTIONS(2619), - [aux_sym_user_token1] = ACTIONS(2621), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2619), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2619), - [aux_sym_visual_host_key_token1] = ACTIONS(2619), - [aux_sym_xauth_location_token1] = ACTIONS(2619), + [ts_builtin_sym_end] = ACTIONS(2626), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2630), + [aux_sym_match_token1] = ACTIONS(2626), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2626), + [aux_sym_address_family_token1] = ACTIONS(2626), + [aux_sym_batch_mode_token1] = ACTIONS(2626), + [aux_sym_bind_address_token1] = ACTIONS(2626), + [aux_sym_bind_interface_token1] = ACTIONS(2626), + [aux_sym_canonical_domains_token1] = ACTIONS(2626), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2626), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2626), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2626), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2626), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2626), + [aux_sym_certificate_file_token1] = ACTIONS(2626), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2626), + [aux_sym_check_host_ip_token1] = ACTIONS(2626), + [aux_sym_ciphers_token1] = ACTIONS(2626), + [aux_sym_cipher_token1] = ACTIONS(2628), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2626), + [aux_sym_compression_token1] = ACTIONS(2626), + [aux_sym_connection_attempts_token1] = ACTIONS(2626), + [aux_sym_connect_timeout_token1] = ACTIONS(2626), + [aux_sym_control_master_token1] = ACTIONS(2626), + [aux_sym_control_path_token1] = ACTIONS(2626), + [aux_sym_control_persist_token1] = ACTIONS(2626), + [aux_sym_dynamic_forward_token1] = ACTIONS(2626), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2626), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2626), + [aux_sym_escape_char_token1] = ACTIONS(2626), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2626), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2626), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2626), + [aux_sym_forward_agent_token1] = ACTIONS(2626), + [aux_sym_forward_x11_token1] = ACTIONS(2628), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2626), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2626), + [aux_sym_gateway_ports_token1] = ACTIONS(2626), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2626), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2626), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2626), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2626), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2626), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2626), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2626), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2626), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2626), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2626), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2626), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2626), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2626), + [aux_sym_host_key_alias_token1] = ACTIONS(2626), + [aux_sym_hostname_token1] = ACTIONS(2626), + [aux_sym_identities_only_token1] = ACTIONS(2626), + [aux_sym_identity_agent_token1] = ACTIONS(2626), + [aux_sym_identity_file_token1] = ACTIONS(2626), + [aux_sym_ignore_unknown_token1] = ACTIONS(2626), + [aux_sym_include_token1] = ACTIONS(2626), + [aux_sym_ip_qos_token1] = ACTIONS(2626), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2626), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2626), + [aux_sym_kex_algorithms_token1] = ACTIONS(2626), + [aux_sym_known_hosts_command_token1] = ACTIONS(2626), + [aux_sym_local_command_token1] = ACTIONS(2626), + [aux_sym_local_forward_token1] = ACTIONS(2626), + [aux_sym_log_level_token1] = ACTIONS(2626), + [aux_sym_log_verbose_token1] = ACTIONS(2626), + [aux_sym_macs_token1] = ACTIONS(2626), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2626), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2626), + [aux_sym_password_authentication_token1] = ACTIONS(2626), + [aux_sym_permit_local_command_token1] = ACTIONS(2626), + [aux_sym_permit_remote_open_token1] = ACTIONS(2626), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2626), + [aux_sym_port_token1] = ACTIONS(2626), + [aux_sym_preferred_authentications_token1] = ACTIONS(2626), + [aux_sym_protocol_token1] = ACTIONS(2626), + [aux_sym_proxy_command_token1] = ACTIONS(2626), + [aux_sym_proxy_jump_token1] = ACTIONS(2626), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2626), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2626), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2626), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2626), + [aux_sym_rekey_limit_token1] = ACTIONS(2626), + [aux_sym_remote_command_token1] = ACTIONS(2626), + [aux_sym_remote_forward_token1] = ACTIONS(2626), + [aux_sym_request_tty_token1] = ACTIONS(2626), + [aux_sym_required_rsa_size_token1] = ACTIONS(2626), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2626), + [aux_sym_security_key_provider_token1] = ACTIONS(2626), + [aux_sym_send_env_token1] = ACTIONS(2626), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2626), + [aux_sym_server_alive_interval_token1] = ACTIONS(2626), + [aux_sym_session_type_token1] = ACTIONS(2626), + [aux_sym_set_env_token1] = ACTIONS(2626), + [aux_sym_stdin_null_token1] = ACTIONS(2626), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2626), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2626), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2626), + [aux_sym_syslog_facility_token1] = ACTIONS(2626), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2626), + [aux_sym_keep_alive_token1] = ACTIONS(2626), + [aux_sym_tunnel_token1] = ACTIONS(2628), + [aux_sym_tunnel_device_token1] = ACTIONS(2626), + [aux_sym_update_host_keys_token1] = ACTIONS(2626), + [aux_sym_use_keychain_token1] = ACTIONS(2626), + [aux_sym_use_roaming_token1] = ACTIONS(2626), + [aux_sym_user_token1] = ACTIONS(2628), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2626), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2626), + [aux_sym_visual_host_key_token1] = ACTIONS(2626), + [aux_sym_xauth_location_token1] = ACTIONS(2626), }, [373] = { - [ts_builtin_sym_end] = ACTIONS(2625), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(2625), - [aux_sym_match_token1] = ACTIONS(2625), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2625), - [aux_sym_address_family_token1] = ACTIONS(2625), - [aux_sym_batch_mode_token1] = ACTIONS(2625), - [aux_sym_bind_address_token1] = ACTIONS(2625), - [aux_sym_bind_interface_token1] = ACTIONS(2625), - [aux_sym_canonical_domains_token1] = ACTIONS(2625), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2625), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2625), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2625), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2625), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2625), - [aux_sym_certificate_file_token1] = ACTIONS(2625), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2625), - [aux_sym_check_host_ip_token1] = ACTIONS(2625), - [aux_sym_ciphers_token1] = ACTIONS(2625), - [aux_sym_cipher_token1] = ACTIONS(2627), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2625), - [aux_sym_compression_token1] = ACTIONS(2625), - [aux_sym_connection_attempts_token1] = ACTIONS(2625), - [aux_sym_connect_timeout_token1] = ACTIONS(2625), - [aux_sym_control_master_token1] = ACTIONS(2625), - [aux_sym_control_path_token1] = ACTIONS(2625), - [aux_sym_control_persist_token1] = ACTIONS(2625), - [aux_sym_dynamic_forward_token1] = ACTIONS(2625), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2625), - [aux_sym_escape_char_token1] = ACTIONS(2625), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2625), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2625), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2625), - [aux_sym_forward_agent_token1] = ACTIONS(2625), - [aux_sym_forward_x11_token1] = ACTIONS(2627), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2625), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2625), - [aux_sym_gateway_ports_token1] = ACTIONS(2625), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2625), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2625), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2625), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2625), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2625), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2625), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2625), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2625), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2625), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2625), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2625), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2625), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2625), - [aux_sym_host_key_alias_token1] = ACTIONS(2625), - [aux_sym_hostname_token1] = ACTIONS(2625), - [aux_sym_identities_only_token1] = ACTIONS(2625), - [aux_sym_identity_agent_token1] = ACTIONS(2625), - [aux_sym_identity_file_token1] = ACTIONS(2625), - [aux_sym_ignore_unknown_token1] = ACTIONS(2625), - [aux_sym_include_token1] = ACTIONS(2625), - [aux_sym_ip_qos_token1] = ACTIONS(2625), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2625), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2625), - [aux_sym_kex_algorithms_token1] = ACTIONS(2625), - [aux_sym_known_hosts_command_token1] = ACTIONS(2625), - [aux_sym_local_command_token1] = ACTIONS(2625), - [aux_sym_local_forward_token1] = ACTIONS(2625), - [aux_sym_log_level_token1] = ACTIONS(2625), - [aux_sym_log_verbose_token1] = ACTIONS(2625), - [aux_sym_macs_token1] = ACTIONS(2625), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2625), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2625), - [aux_sym_password_authentication_token1] = ACTIONS(2625), - [aux_sym_permit_local_command_token1] = ACTIONS(2625), - [aux_sym_permit_remote_open_token1] = ACTIONS(2625), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2625), - [aux_sym_port_token1] = ACTIONS(2625), - [aux_sym_preferred_authentications_token1] = ACTIONS(2625), - [aux_sym_protocol_token1] = ACTIONS(2625), - [aux_sym_proxy_command_token1] = ACTIONS(2625), - [aux_sym_proxy_jump_token1] = ACTIONS(2625), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2625), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2625), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2625), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2625), - [aux_sym_rekey_limit_token1] = ACTIONS(2625), - [aux_sym_remote_command_token1] = ACTIONS(2625), - [aux_sym_remote_forward_token1] = ACTIONS(2625), - [aux_sym_request_tty_token1] = ACTIONS(2625), - [aux_sym_required_rsa_size_token1] = ACTIONS(2625), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2625), - [aux_sym_security_key_provider_token1] = ACTIONS(2625), - [aux_sym_send_env_token1] = ACTIONS(2625), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2625), - [aux_sym_server_alive_interval_token1] = ACTIONS(2625), - [aux_sym_session_type_token1] = ACTIONS(2625), - [aux_sym_set_env_token1] = ACTIONS(2625), - [aux_sym_stdin_null_token1] = ACTIONS(2625), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2625), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2625), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2625), - [aux_sym_syslog_facility_token1] = ACTIONS(2625), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2625), - [aux_sym_keep_alive_token1] = ACTIONS(2625), - [aux_sym_tunnel_token1] = ACTIONS(2627), - [aux_sym_tunnel_device_token1] = ACTIONS(2625), - [aux_sym_update_host_keys_token1] = ACTIONS(2625), - [aux_sym_use_keychain_token1] = ACTIONS(2625), - [aux_sym_use_roaming_token1] = ACTIONS(2625), - [aux_sym_user_token1] = ACTIONS(2627), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2625), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2625), - [aux_sym_visual_host_key_token1] = ACTIONS(2625), - [aux_sym_xauth_location_token1] = ACTIONS(2625), + [ts_builtin_sym_end] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2634), + [anon_sym_DQUOTE] = ACTIONS(2636), + [aux_sym_match_token1] = ACTIONS(2632), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2632), + [aux_sym_address_family_token1] = ACTIONS(2632), + [aux_sym_batch_mode_token1] = ACTIONS(2632), + [aux_sym_bind_address_token1] = ACTIONS(2632), + [aux_sym_bind_interface_token1] = ACTIONS(2632), + [aux_sym_canonical_domains_token1] = ACTIONS(2632), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2632), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2632), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2632), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2632), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2632), + [aux_sym_certificate_file_token1] = ACTIONS(2632), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2632), + [aux_sym_check_host_ip_token1] = ACTIONS(2632), + [aux_sym_ciphers_token1] = ACTIONS(2632), + [aux_sym_cipher_token1] = ACTIONS(2634), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2632), + [aux_sym_compression_token1] = ACTIONS(2632), + [aux_sym_connection_attempts_token1] = ACTIONS(2632), + [aux_sym_connect_timeout_token1] = ACTIONS(2632), + [aux_sym_control_master_token1] = ACTIONS(2632), + [aux_sym_control_path_token1] = ACTIONS(2632), + [aux_sym_control_persist_token1] = ACTIONS(2632), + [aux_sym_dynamic_forward_token1] = ACTIONS(2632), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2632), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2632), + [aux_sym_escape_char_token1] = ACTIONS(2632), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2632), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2632), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2632), + [aux_sym_forward_agent_token1] = ACTIONS(2632), + [aux_sym_forward_x11_token1] = ACTIONS(2634), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2632), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2632), + [aux_sym_gateway_ports_token1] = ACTIONS(2632), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2632), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2632), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2632), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2632), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2632), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2632), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2632), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2632), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2632), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2632), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2632), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2632), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2632), + [aux_sym_host_key_alias_token1] = ACTIONS(2632), + [aux_sym_hostname_token1] = ACTIONS(2632), + [aux_sym_identities_only_token1] = ACTIONS(2632), + [aux_sym_identity_agent_token1] = ACTIONS(2632), + [aux_sym_identity_file_token1] = ACTIONS(2632), + [aux_sym_ignore_unknown_token1] = ACTIONS(2632), + [aux_sym_include_token1] = ACTIONS(2632), + [aux_sym_ip_qos_token1] = ACTIONS(2632), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2632), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2632), + [aux_sym_kex_algorithms_token1] = ACTIONS(2632), + [aux_sym_known_hosts_command_token1] = ACTIONS(2632), + [aux_sym_local_command_token1] = ACTIONS(2632), + [aux_sym_local_forward_token1] = ACTIONS(2632), + [aux_sym_log_level_token1] = ACTIONS(2632), + [aux_sym_log_verbose_token1] = ACTIONS(2632), + [aux_sym_macs_token1] = ACTIONS(2632), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2632), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2632), + [aux_sym_password_authentication_token1] = ACTIONS(2632), + [aux_sym_permit_local_command_token1] = ACTIONS(2632), + [aux_sym_permit_remote_open_token1] = ACTIONS(2632), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2632), + [aux_sym_port_token1] = ACTIONS(2632), + [aux_sym_preferred_authentications_token1] = ACTIONS(2632), + [aux_sym_protocol_token1] = ACTIONS(2632), + [aux_sym_proxy_command_token1] = ACTIONS(2632), + [aux_sym_proxy_jump_token1] = ACTIONS(2632), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2632), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2632), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2632), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2632), + [aux_sym_rekey_limit_token1] = ACTIONS(2632), + [aux_sym_remote_command_token1] = ACTIONS(2632), + [aux_sym_remote_forward_token1] = ACTIONS(2632), + [aux_sym_request_tty_token1] = ACTIONS(2632), + [aux_sym_required_rsa_size_token1] = ACTIONS(2632), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2632), + [aux_sym_security_key_provider_token1] = ACTIONS(2632), + [aux_sym_send_env_token1] = ACTIONS(2632), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2632), + [aux_sym_server_alive_interval_token1] = ACTIONS(2632), + [aux_sym_session_type_token1] = ACTIONS(2632), + [aux_sym_set_env_token1] = ACTIONS(2632), + [aux_sym_stdin_null_token1] = ACTIONS(2632), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2632), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2632), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2632), + [aux_sym_syslog_facility_token1] = ACTIONS(2632), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2632), + [aux_sym_keep_alive_token1] = ACTIONS(2632), + [aux_sym_tunnel_token1] = ACTIONS(2634), + [aux_sym_tunnel_device_token1] = ACTIONS(2632), + [aux_sym_update_host_keys_token1] = ACTIONS(2632), + [aux_sym_use_keychain_token1] = ACTIONS(2632), + [aux_sym_use_roaming_token1] = ACTIONS(2632), + [aux_sym_user_token1] = ACTIONS(2634), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2632), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2632), + [aux_sym_visual_host_key_token1] = ACTIONS(2632), + [aux_sym_xauth_location_token1] = ACTIONS(2632), }, [374] = { - [ts_builtin_sym_end] = ACTIONS(2629), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2631), - [anon_sym_DQUOTE] = ACTIONS(2633), - [aux_sym_match_token1] = ACTIONS(2629), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2629), - [aux_sym_address_family_token1] = ACTIONS(2629), - [aux_sym_batch_mode_token1] = ACTIONS(2629), - [aux_sym_bind_address_token1] = ACTIONS(2629), - [aux_sym_bind_interface_token1] = ACTIONS(2629), - [aux_sym_canonical_domains_token1] = ACTIONS(2629), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2629), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2629), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2629), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2629), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2629), - [aux_sym_certificate_file_token1] = ACTIONS(2629), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2629), - [aux_sym_check_host_ip_token1] = ACTIONS(2629), - [aux_sym_ciphers_token1] = ACTIONS(2629), - [aux_sym_cipher_token1] = ACTIONS(2631), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2629), - [aux_sym_compression_token1] = ACTIONS(2629), - [aux_sym_connection_attempts_token1] = ACTIONS(2629), - [aux_sym_connect_timeout_token1] = ACTIONS(2629), - [aux_sym_control_master_token1] = ACTIONS(2629), - [aux_sym_control_path_token1] = ACTIONS(2629), - [aux_sym_control_persist_token1] = ACTIONS(2629), - [aux_sym_dynamic_forward_token1] = ACTIONS(2629), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2629), - [aux_sym_escape_char_token1] = ACTIONS(2629), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2629), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2629), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2629), - [aux_sym_forward_agent_token1] = ACTIONS(2629), - [aux_sym_forward_x11_token1] = ACTIONS(2631), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2629), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2629), - [aux_sym_gateway_ports_token1] = ACTIONS(2629), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2629), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2629), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2629), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2629), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2629), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2629), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2629), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2629), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2629), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2629), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2629), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2629), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2629), - [aux_sym_host_key_alias_token1] = ACTIONS(2629), - [aux_sym_hostname_token1] = ACTIONS(2629), - [aux_sym_identities_only_token1] = ACTIONS(2629), - [aux_sym_identity_agent_token1] = ACTIONS(2629), - [aux_sym_identity_file_token1] = ACTIONS(2629), - [aux_sym_ignore_unknown_token1] = ACTIONS(2629), - [aux_sym_include_token1] = ACTIONS(2629), - [aux_sym_ip_qos_token1] = ACTIONS(2629), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2629), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2629), - [aux_sym_kex_algorithms_token1] = ACTIONS(2629), - [aux_sym_known_hosts_command_token1] = ACTIONS(2629), - [aux_sym_local_command_token1] = ACTIONS(2629), - [aux_sym_local_forward_token1] = ACTIONS(2629), - [aux_sym_log_level_token1] = ACTIONS(2629), - [aux_sym_log_verbose_token1] = ACTIONS(2629), - [aux_sym_macs_token1] = ACTIONS(2629), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2629), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2629), - [aux_sym_password_authentication_token1] = ACTIONS(2629), - [aux_sym_permit_local_command_token1] = ACTIONS(2629), - [aux_sym_permit_remote_open_token1] = ACTIONS(2629), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2629), - [aux_sym_port_token1] = ACTIONS(2629), - [aux_sym_preferred_authentications_token1] = ACTIONS(2629), - [aux_sym_protocol_token1] = ACTIONS(2629), - [aux_sym_proxy_command_token1] = ACTIONS(2629), - [aux_sym_proxy_jump_token1] = ACTIONS(2629), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2629), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2629), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2629), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2629), - [aux_sym_rekey_limit_token1] = ACTIONS(2629), - [aux_sym_remote_command_token1] = ACTIONS(2629), - [aux_sym_remote_forward_token1] = ACTIONS(2629), - [aux_sym_request_tty_token1] = ACTIONS(2629), - [aux_sym_required_rsa_size_token1] = ACTIONS(2629), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2629), - [aux_sym_security_key_provider_token1] = ACTIONS(2629), - [aux_sym_send_env_token1] = ACTIONS(2629), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2629), - [aux_sym_server_alive_interval_token1] = ACTIONS(2629), - [aux_sym_session_type_token1] = ACTIONS(2629), - [aux_sym_set_env_token1] = ACTIONS(2629), - [aux_sym_stdin_null_token1] = ACTIONS(2629), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2629), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2629), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2629), - [aux_sym_syslog_facility_token1] = ACTIONS(2629), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2629), - [aux_sym_keep_alive_token1] = ACTIONS(2629), - [aux_sym_tunnel_token1] = ACTIONS(2631), - [aux_sym_tunnel_device_token1] = ACTIONS(2629), - [aux_sym_update_host_keys_token1] = ACTIONS(2629), - [aux_sym_use_keychain_token1] = ACTIONS(2629), - [aux_sym_use_roaming_token1] = ACTIONS(2629), - [aux_sym_user_token1] = ACTIONS(2631), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2629), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2629), - [aux_sym_visual_host_key_token1] = ACTIONS(2629), - [aux_sym_xauth_location_token1] = ACTIONS(2629), + [ts_builtin_sym_end] = ACTIONS(2638), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2640), + [anon_sym_DQUOTE] = ACTIONS(2638), + [aux_sym_match_token1] = ACTIONS(2638), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2638), + [aux_sym_address_family_token1] = ACTIONS(2638), + [aux_sym_batch_mode_token1] = ACTIONS(2638), + [aux_sym_bind_address_token1] = ACTIONS(2638), + [aux_sym_bind_interface_token1] = ACTIONS(2638), + [aux_sym_canonical_domains_token1] = ACTIONS(2638), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2638), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2638), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2638), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2638), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2638), + [aux_sym_certificate_file_token1] = ACTIONS(2638), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2638), + [aux_sym_check_host_ip_token1] = ACTIONS(2638), + [aux_sym_ciphers_token1] = ACTIONS(2638), + [aux_sym_cipher_token1] = ACTIONS(2640), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2638), + [aux_sym_compression_token1] = ACTIONS(2638), + [aux_sym_connection_attempts_token1] = ACTIONS(2638), + [aux_sym_connect_timeout_token1] = ACTIONS(2638), + [aux_sym_control_master_token1] = ACTIONS(2638), + [aux_sym_control_path_token1] = ACTIONS(2638), + [aux_sym_control_persist_token1] = ACTIONS(2638), + [aux_sym_dynamic_forward_token1] = ACTIONS(2638), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2638), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2638), + [aux_sym_escape_char_token1] = ACTIONS(2638), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2638), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2638), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2638), + [aux_sym_forward_agent_token1] = ACTIONS(2638), + [aux_sym_forward_x11_token1] = ACTIONS(2640), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2638), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2638), + [aux_sym_gateway_ports_token1] = ACTIONS(2638), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2638), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2638), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2638), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2638), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2638), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2638), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2638), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2638), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2638), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2638), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2638), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2638), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2638), + [aux_sym_host_key_alias_token1] = ACTIONS(2638), + [aux_sym_hostname_token1] = ACTIONS(2638), + [aux_sym_identities_only_token1] = ACTIONS(2638), + [aux_sym_identity_agent_token1] = ACTIONS(2638), + [aux_sym_identity_file_token1] = ACTIONS(2638), + [aux_sym_ignore_unknown_token1] = ACTIONS(2638), + [aux_sym_include_token1] = ACTIONS(2638), + [aux_sym_ip_qos_token1] = ACTIONS(2638), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2638), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2638), + [aux_sym_kex_algorithms_token1] = ACTIONS(2638), + [aux_sym_known_hosts_command_token1] = ACTIONS(2638), + [aux_sym_local_command_token1] = ACTIONS(2638), + [aux_sym_local_forward_token1] = ACTIONS(2638), + [aux_sym_log_level_token1] = ACTIONS(2638), + [aux_sym_log_verbose_token1] = ACTIONS(2638), + [aux_sym_macs_token1] = ACTIONS(2638), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2638), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2638), + [aux_sym_password_authentication_token1] = ACTIONS(2638), + [aux_sym_permit_local_command_token1] = ACTIONS(2638), + [aux_sym_permit_remote_open_token1] = ACTIONS(2638), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2638), + [aux_sym_port_token1] = ACTIONS(2638), + [aux_sym_preferred_authentications_token1] = ACTIONS(2638), + [aux_sym_protocol_token1] = ACTIONS(2638), + [aux_sym_proxy_command_token1] = ACTIONS(2638), + [aux_sym_proxy_jump_token1] = ACTIONS(2638), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2638), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2638), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2638), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2638), + [aux_sym_rekey_limit_token1] = ACTIONS(2638), + [aux_sym_remote_command_token1] = ACTIONS(2638), + [aux_sym_remote_forward_token1] = ACTIONS(2638), + [aux_sym_request_tty_token1] = ACTIONS(2638), + [aux_sym_required_rsa_size_token1] = ACTIONS(2638), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2638), + [aux_sym_security_key_provider_token1] = ACTIONS(2638), + [aux_sym_send_env_token1] = ACTIONS(2638), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2638), + [aux_sym_server_alive_interval_token1] = ACTIONS(2638), + [aux_sym_session_type_token1] = ACTIONS(2638), + [aux_sym_set_env_token1] = ACTIONS(2638), + [aux_sym_stdin_null_token1] = ACTIONS(2638), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2638), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2638), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2638), + [aux_sym_syslog_facility_token1] = ACTIONS(2638), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2638), + [aux_sym_keep_alive_token1] = ACTIONS(2638), + [aux_sym_tunnel_token1] = ACTIONS(2640), + [aux_sym_tunnel_device_token1] = ACTIONS(2638), + [aux_sym_update_host_keys_token1] = ACTIONS(2638), + [aux_sym_use_keychain_token1] = ACTIONS(2638), + [aux_sym_use_roaming_token1] = ACTIONS(2638), + [aux_sym_user_token1] = ACTIONS(2640), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2638), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2638), + [aux_sym_visual_host_key_token1] = ACTIONS(2638), + [aux_sym_xauth_location_token1] = ACTIONS(2638), }, [375] = { - [ts_builtin_sym_end] = ACTIONS(2635), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(2639), - [aux_sym_match_token1] = ACTIONS(2635), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2635), - [aux_sym_address_family_token1] = ACTIONS(2635), - [aux_sym_batch_mode_token1] = ACTIONS(2635), - [aux_sym_bind_address_token1] = ACTIONS(2635), - [aux_sym_bind_interface_token1] = ACTIONS(2635), - [aux_sym_canonical_domains_token1] = ACTIONS(2635), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2635), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2635), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2635), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2635), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2635), - [aux_sym_certificate_file_token1] = ACTIONS(2635), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2635), - [aux_sym_check_host_ip_token1] = ACTIONS(2635), - [aux_sym_ciphers_token1] = ACTIONS(2635), - [aux_sym_cipher_token1] = ACTIONS(2637), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2635), - [aux_sym_compression_token1] = ACTIONS(2635), - [aux_sym_connection_attempts_token1] = ACTIONS(2635), - [aux_sym_connect_timeout_token1] = ACTIONS(2635), - [aux_sym_control_master_token1] = ACTIONS(2635), - [aux_sym_control_path_token1] = ACTIONS(2635), - [aux_sym_control_persist_token1] = ACTIONS(2635), - [aux_sym_dynamic_forward_token1] = ACTIONS(2635), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2635), - [aux_sym_escape_char_token1] = ACTIONS(2635), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2635), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2635), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2635), - [aux_sym_forward_agent_token1] = ACTIONS(2635), - [aux_sym_forward_x11_token1] = ACTIONS(2637), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2635), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2635), - [aux_sym_gateway_ports_token1] = ACTIONS(2635), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2635), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2635), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2635), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2635), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2635), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2635), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2635), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2635), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2635), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2635), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2635), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2635), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2635), - [aux_sym_host_key_alias_token1] = ACTIONS(2635), - [aux_sym_hostname_token1] = ACTIONS(2635), - [aux_sym_identities_only_token1] = ACTIONS(2635), - [aux_sym_identity_agent_token1] = ACTIONS(2635), - [aux_sym_identity_file_token1] = ACTIONS(2635), - [aux_sym_ignore_unknown_token1] = ACTIONS(2635), - [aux_sym_include_token1] = ACTIONS(2635), - [aux_sym_ip_qos_token1] = ACTIONS(2635), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2635), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2635), - [aux_sym_kex_algorithms_token1] = ACTIONS(2635), - [aux_sym_known_hosts_command_token1] = ACTIONS(2635), - [aux_sym_local_command_token1] = ACTIONS(2635), - [aux_sym_local_forward_token1] = ACTIONS(2635), - [aux_sym_log_level_token1] = ACTIONS(2635), - [aux_sym_log_verbose_token1] = ACTIONS(2635), - [aux_sym_macs_token1] = ACTIONS(2635), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2635), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2635), - [aux_sym_password_authentication_token1] = ACTIONS(2635), - [aux_sym_permit_local_command_token1] = ACTIONS(2635), - [aux_sym_permit_remote_open_token1] = ACTIONS(2635), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2635), - [aux_sym_port_token1] = ACTIONS(2635), - [aux_sym_preferred_authentications_token1] = ACTIONS(2635), - [aux_sym_protocol_token1] = ACTIONS(2635), - [aux_sym_proxy_command_token1] = ACTIONS(2635), - [aux_sym_proxy_jump_token1] = ACTIONS(2635), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2635), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2635), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2635), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2635), - [aux_sym_rekey_limit_token1] = ACTIONS(2635), - [aux_sym_remote_command_token1] = ACTIONS(2635), - [aux_sym_remote_forward_token1] = ACTIONS(2635), - [aux_sym_request_tty_token1] = ACTIONS(2635), - [aux_sym_required_rsa_size_token1] = ACTIONS(2635), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2635), - [aux_sym_security_key_provider_token1] = ACTIONS(2635), - [aux_sym_send_env_token1] = ACTIONS(2635), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2635), - [aux_sym_server_alive_interval_token1] = ACTIONS(2635), - [aux_sym_session_type_token1] = ACTIONS(2635), - [aux_sym_set_env_token1] = ACTIONS(2635), - [aux_sym_stdin_null_token1] = ACTIONS(2635), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2635), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2635), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2635), - [aux_sym_syslog_facility_token1] = ACTIONS(2635), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2635), - [aux_sym_keep_alive_token1] = ACTIONS(2635), - [aux_sym_tunnel_token1] = ACTIONS(2637), - [aux_sym_tunnel_device_token1] = ACTIONS(2635), - [aux_sym_update_host_keys_token1] = ACTIONS(2635), - [aux_sym_use_keychain_token1] = ACTIONS(2635), - [aux_sym_use_roaming_token1] = ACTIONS(2635), - [aux_sym_user_token1] = ACTIONS(2637), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2635), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2635), - [aux_sym_visual_host_key_token1] = ACTIONS(2635), - [aux_sym_xauth_location_token1] = ACTIONS(2635), + [ts_builtin_sym_end] = ACTIONS(2642), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2644), + [anon_sym_DQUOTE] = ACTIONS(2642), + [aux_sym_match_token1] = ACTIONS(2642), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2642), + [aux_sym_address_family_token1] = ACTIONS(2642), + [aux_sym_batch_mode_token1] = ACTIONS(2642), + [aux_sym_bind_address_token1] = ACTIONS(2642), + [aux_sym_bind_interface_token1] = ACTIONS(2642), + [aux_sym_canonical_domains_token1] = ACTIONS(2642), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2642), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2642), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2642), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2642), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2642), + [aux_sym_certificate_file_token1] = ACTIONS(2642), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2642), + [aux_sym_check_host_ip_token1] = ACTIONS(2642), + [aux_sym_ciphers_token1] = ACTIONS(2642), + [aux_sym_cipher_token1] = ACTIONS(2644), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2642), + [aux_sym_compression_token1] = ACTIONS(2642), + [aux_sym_connection_attempts_token1] = ACTIONS(2642), + [aux_sym_connect_timeout_token1] = ACTIONS(2642), + [aux_sym_control_master_token1] = ACTIONS(2642), + [aux_sym_control_path_token1] = ACTIONS(2642), + [aux_sym_control_persist_token1] = ACTIONS(2642), + [aux_sym_dynamic_forward_token1] = ACTIONS(2642), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2642), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2642), + [aux_sym_escape_char_token1] = ACTIONS(2642), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2642), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2642), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2642), + [aux_sym_forward_agent_token1] = ACTIONS(2642), + [aux_sym_forward_x11_token1] = ACTIONS(2644), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2642), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2642), + [aux_sym_gateway_ports_token1] = ACTIONS(2642), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2642), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2642), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2642), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2642), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2642), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2642), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2642), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2642), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2642), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2642), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2642), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2642), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2642), + [aux_sym_host_key_alias_token1] = ACTIONS(2642), + [aux_sym_hostname_token1] = ACTIONS(2642), + [aux_sym_identities_only_token1] = ACTIONS(2642), + [aux_sym_identity_agent_token1] = ACTIONS(2642), + [aux_sym_identity_file_token1] = ACTIONS(2642), + [aux_sym_ignore_unknown_token1] = ACTIONS(2642), + [aux_sym_include_token1] = ACTIONS(2642), + [aux_sym_ip_qos_token1] = ACTIONS(2642), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2642), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2642), + [aux_sym_kex_algorithms_token1] = ACTIONS(2642), + [aux_sym_known_hosts_command_token1] = ACTIONS(2642), + [aux_sym_local_command_token1] = ACTIONS(2642), + [aux_sym_local_forward_token1] = ACTIONS(2642), + [aux_sym_log_level_token1] = ACTIONS(2642), + [aux_sym_log_verbose_token1] = ACTIONS(2642), + [aux_sym_macs_token1] = ACTIONS(2642), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2642), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2642), + [aux_sym_password_authentication_token1] = ACTIONS(2642), + [aux_sym_permit_local_command_token1] = ACTIONS(2642), + [aux_sym_permit_remote_open_token1] = ACTIONS(2642), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2642), + [aux_sym_port_token1] = ACTIONS(2642), + [aux_sym_preferred_authentications_token1] = ACTIONS(2642), + [aux_sym_protocol_token1] = ACTIONS(2642), + [aux_sym_proxy_command_token1] = ACTIONS(2642), + [aux_sym_proxy_jump_token1] = ACTIONS(2642), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2642), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2642), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2642), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2642), + [aux_sym_rekey_limit_token1] = ACTIONS(2642), + [aux_sym_remote_command_token1] = ACTIONS(2642), + [aux_sym_remote_forward_token1] = ACTIONS(2642), + [aux_sym_request_tty_token1] = ACTIONS(2642), + [aux_sym_required_rsa_size_token1] = ACTIONS(2642), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2642), + [aux_sym_security_key_provider_token1] = ACTIONS(2642), + [aux_sym_send_env_token1] = ACTIONS(2642), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2642), + [aux_sym_server_alive_interval_token1] = ACTIONS(2642), + [aux_sym_session_type_token1] = ACTIONS(2642), + [aux_sym_set_env_token1] = ACTIONS(2642), + [aux_sym_stdin_null_token1] = ACTIONS(2642), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2642), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2642), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2642), + [aux_sym_syslog_facility_token1] = ACTIONS(2642), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2642), + [aux_sym_keep_alive_token1] = ACTIONS(2642), + [aux_sym_tunnel_token1] = ACTIONS(2644), + [aux_sym_tunnel_device_token1] = ACTIONS(2642), + [aux_sym_update_host_keys_token1] = ACTIONS(2642), + [aux_sym_use_keychain_token1] = ACTIONS(2642), + [aux_sym_use_roaming_token1] = ACTIONS(2642), + [aux_sym_user_token1] = ACTIONS(2644), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2642), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2642), + [aux_sym_visual_host_key_token1] = ACTIONS(2642), + [aux_sym_xauth_location_token1] = ACTIONS(2642), }, [376] = { - [ts_builtin_sym_end] = ACTIONS(2641), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2643), - [anon_sym_DQUOTE] = ACTIONS(2641), - [aux_sym_match_token1] = ACTIONS(2641), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2641), - [aux_sym_address_family_token1] = ACTIONS(2641), - [aux_sym_batch_mode_token1] = ACTIONS(2641), - [aux_sym_bind_address_token1] = ACTIONS(2641), - [aux_sym_bind_interface_token1] = ACTIONS(2641), - [aux_sym_canonical_domains_token1] = ACTIONS(2641), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2641), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2641), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2641), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2641), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2641), - [aux_sym_certificate_file_token1] = ACTIONS(2641), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2641), - [aux_sym_check_host_ip_token1] = ACTIONS(2641), - [aux_sym_ciphers_token1] = ACTIONS(2641), - [aux_sym_cipher_token1] = ACTIONS(2643), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2641), - [aux_sym_compression_token1] = ACTIONS(2641), - [aux_sym_connection_attempts_token1] = ACTIONS(2641), - [aux_sym_connect_timeout_token1] = ACTIONS(2641), - [aux_sym_control_master_token1] = ACTIONS(2641), - [aux_sym_control_path_token1] = ACTIONS(2641), - [aux_sym_control_persist_token1] = ACTIONS(2641), - [aux_sym_dynamic_forward_token1] = ACTIONS(2641), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2641), - [aux_sym_escape_char_token1] = ACTIONS(2641), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2641), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2641), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2641), - [aux_sym_forward_agent_token1] = ACTIONS(2641), - [aux_sym_forward_x11_token1] = ACTIONS(2643), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2641), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2641), - [aux_sym_gateway_ports_token1] = ACTIONS(2641), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2641), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2641), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2641), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2641), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2641), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2641), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2641), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2641), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2641), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2641), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2641), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2641), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2641), - [aux_sym_host_key_alias_token1] = ACTIONS(2641), - [aux_sym_hostname_token1] = ACTIONS(2641), - [aux_sym_identities_only_token1] = ACTIONS(2641), - [aux_sym_identity_agent_token1] = ACTIONS(2641), - [aux_sym_identity_file_token1] = ACTIONS(2641), - [aux_sym_ignore_unknown_token1] = ACTIONS(2641), - [aux_sym_include_token1] = ACTIONS(2641), - [aux_sym_ip_qos_token1] = ACTIONS(2641), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2641), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2641), - [aux_sym_kex_algorithms_token1] = ACTIONS(2641), - [aux_sym_known_hosts_command_token1] = ACTIONS(2641), - [aux_sym_local_command_token1] = ACTIONS(2641), - [aux_sym_local_forward_token1] = ACTIONS(2641), - [aux_sym_log_level_token1] = ACTIONS(2641), - [aux_sym_log_verbose_token1] = ACTIONS(2641), - [aux_sym_macs_token1] = ACTIONS(2641), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2641), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2641), - [aux_sym_password_authentication_token1] = ACTIONS(2641), - [aux_sym_permit_local_command_token1] = ACTIONS(2641), - [aux_sym_permit_remote_open_token1] = ACTIONS(2641), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2641), - [aux_sym_port_token1] = ACTIONS(2641), - [aux_sym_preferred_authentications_token1] = ACTIONS(2641), - [aux_sym_protocol_token1] = ACTIONS(2641), - [aux_sym_proxy_command_token1] = ACTIONS(2641), - [aux_sym_proxy_jump_token1] = ACTIONS(2641), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2641), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2641), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2641), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2641), - [aux_sym_rekey_limit_token1] = ACTIONS(2641), - [aux_sym_remote_command_token1] = ACTIONS(2641), - [aux_sym_remote_forward_token1] = ACTIONS(2641), - [aux_sym_request_tty_token1] = ACTIONS(2641), - [aux_sym_required_rsa_size_token1] = ACTIONS(2641), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2641), - [aux_sym_security_key_provider_token1] = ACTIONS(2641), - [aux_sym_send_env_token1] = ACTIONS(2641), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2641), - [aux_sym_server_alive_interval_token1] = ACTIONS(2641), - [aux_sym_session_type_token1] = ACTIONS(2641), - [aux_sym_set_env_token1] = ACTIONS(2641), - [aux_sym_stdin_null_token1] = ACTIONS(2641), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2641), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2641), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2641), - [aux_sym_syslog_facility_token1] = ACTIONS(2641), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2641), - [aux_sym_keep_alive_token1] = ACTIONS(2641), - [aux_sym_tunnel_token1] = ACTIONS(2643), - [aux_sym_tunnel_device_token1] = ACTIONS(2641), - [aux_sym_update_host_keys_token1] = ACTIONS(2641), - [aux_sym_use_keychain_token1] = ACTIONS(2641), - [aux_sym_use_roaming_token1] = ACTIONS(2641), - [aux_sym_user_token1] = ACTIONS(2643), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2641), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2641), - [aux_sym_visual_host_key_token1] = ACTIONS(2641), - [aux_sym_xauth_location_token1] = ACTIONS(2641), + [ts_builtin_sym_end] = ACTIONS(2646), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(2650), + [aux_sym_match_token1] = ACTIONS(2646), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2646), + [aux_sym_address_family_token1] = ACTIONS(2646), + [aux_sym_batch_mode_token1] = ACTIONS(2646), + [aux_sym_bind_address_token1] = ACTIONS(2646), + [aux_sym_bind_interface_token1] = ACTIONS(2646), + [aux_sym_canonical_domains_token1] = ACTIONS(2646), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2646), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2646), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2646), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2646), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2646), + [aux_sym_certificate_file_token1] = ACTIONS(2646), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2646), + [aux_sym_check_host_ip_token1] = ACTIONS(2646), + [aux_sym_ciphers_token1] = ACTIONS(2646), + [aux_sym_cipher_token1] = ACTIONS(2648), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2646), + [aux_sym_compression_token1] = ACTIONS(2646), + [aux_sym_connection_attempts_token1] = ACTIONS(2646), + [aux_sym_connect_timeout_token1] = ACTIONS(2646), + [aux_sym_control_master_token1] = ACTIONS(2646), + [aux_sym_control_path_token1] = ACTIONS(2646), + [aux_sym_control_persist_token1] = ACTIONS(2646), + [aux_sym_dynamic_forward_token1] = ACTIONS(2646), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2646), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2646), + [aux_sym_escape_char_token1] = ACTIONS(2646), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2646), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2646), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2646), + [aux_sym_forward_agent_token1] = ACTIONS(2646), + [aux_sym_forward_x11_token1] = ACTIONS(2648), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2646), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2646), + [aux_sym_gateway_ports_token1] = ACTIONS(2646), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2646), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2646), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2646), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2646), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2646), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2646), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2646), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2646), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2646), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2646), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2646), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2646), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2646), + [aux_sym_host_key_alias_token1] = ACTIONS(2646), + [aux_sym_hostname_token1] = ACTIONS(2646), + [aux_sym_identities_only_token1] = ACTIONS(2646), + [aux_sym_identity_agent_token1] = ACTIONS(2646), + [aux_sym_identity_file_token1] = ACTIONS(2646), + [aux_sym_ignore_unknown_token1] = ACTIONS(2646), + [aux_sym_include_token1] = ACTIONS(2646), + [aux_sym_ip_qos_token1] = ACTIONS(2646), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2646), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2646), + [aux_sym_kex_algorithms_token1] = ACTIONS(2646), + [aux_sym_known_hosts_command_token1] = ACTIONS(2646), + [aux_sym_local_command_token1] = ACTIONS(2646), + [aux_sym_local_forward_token1] = ACTIONS(2646), + [aux_sym_log_level_token1] = ACTIONS(2646), + [aux_sym_log_verbose_token1] = ACTIONS(2646), + [aux_sym_macs_token1] = ACTIONS(2646), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2646), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2646), + [aux_sym_password_authentication_token1] = ACTIONS(2646), + [aux_sym_permit_local_command_token1] = ACTIONS(2646), + [aux_sym_permit_remote_open_token1] = ACTIONS(2646), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2646), + [aux_sym_port_token1] = ACTIONS(2646), + [aux_sym_preferred_authentications_token1] = ACTIONS(2646), + [aux_sym_protocol_token1] = ACTIONS(2646), + [aux_sym_proxy_command_token1] = ACTIONS(2646), + [aux_sym_proxy_jump_token1] = ACTIONS(2646), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2646), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2646), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2646), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2646), + [aux_sym_rekey_limit_token1] = ACTIONS(2646), + [aux_sym_remote_command_token1] = ACTIONS(2646), + [aux_sym_remote_forward_token1] = ACTIONS(2646), + [aux_sym_request_tty_token1] = ACTIONS(2646), + [aux_sym_required_rsa_size_token1] = ACTIONS(2646), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2646), + [aux_sym_security_key_provider_token1] = ACTIONS(2646), + [aux_sym_send_env_token1] = ACTIONS(2646), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2646), + [aux_sym_server_alive_interval_token1] = ACTIONS(2646), + [aux_sym_session_type_token1] = ACTIONS(2646), + [aux_sym_set_env_token1] = ACTIONS(2646), + [aux_sym_stdin_null_token1] = ACTIONS(2646), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2646), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2646), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2646), + [aux_sym_syslog_facility_token1] = ACTIONS(2646), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2646), + [aux_sym_keep_alive_token1] = ACTIONS(2646), + [aux_sym_tunnel_token1] = ACTIONS(2648), + [aux_sym_tunnel_device_token1] = ACTIONS(2646), + [aux_sym_update_host_keys_token1] = ACTIONS(2646), + [aux_sym_use_keychain_token1] = ACTIONS(2646), + [aux_sym_use_roaming_token1] = ACTIONS(2646), + [aux_sym_user_token1] = ACTIONS(2648), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2646), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2646), + [aux_sym_visual_host_key_token1] = ACTIONS(2646), + [aux_sym_xauth_location_token1] = ACTIONS(2646), }, [377] = { - [ts_builtin_sym_end] = ACTIONS(2645), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2645), - [aux_sym_match_token1] = ACTIONS(2645), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2645), - [aux_sym_address_family_token1] = ACTIONS(2645), - [aux_sym_batch_mode_token1] = ACTIONS(2645), - [aux_sym_bind_address_token1] = ACTIONS(2645), - [aux_sym_bind_interface_token1] = ACTIONS(2645), - [aux_sym_canonical_domains_token1] = ACTIONS(2645), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2645), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2645), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2645), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2645), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2645), - [aux_sym_certificate_file_token1] = ACTIONS(2645), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2645), - [aux_sym_check_host_ip_token1] = ACTIONS(2645), - [aux_sym_ciphers_token1] = ACTIONS(2645), - [aux_sym_cipher_token1] = ACTIONS(2647), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2645), - [aux_sym_compression_token1] = ACTIONS(2645), - [aux_sym_connection_attempts_token1] = ACTIONS(2645), - [aux_sym_connect_timeout_token1] = ACTIONS(2645), - [aux_sym_control_master_token1] = ACTIONS(2645), - [aux_sym_control_path_token1] = ACTIONS(2645), - [aux_sym_control_persist_token1] = ACTIONS(2645), - [aux_sym_dynamic_forward_token1] = ACTIONS(2645), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2645), - [aux_sym_escape_char_token1] = ACTIONS(2645), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2645), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2645), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2645), - [aux_sym_forward_agent_token1] = ACTIONS(2645), - [aux_sym_forward_x11_token1] = ACTIONS(2647), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2645), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2645), - [aux_sym_gateway_ports_token1] = ACTIONS(2645), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2645), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2645), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2645), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2645), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2645), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2645), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2645), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2645), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2645), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2645), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2645), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2645), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2645), - [aux_sym_host_key_alias_token1] = ACTIONS(2645), - [aux_sym_hostname_token1] = ACTIONS(2645), - [aux_sym_identities_only_token1] = ACTIONS(2645), - [aux_sym_identity_agent_token1] = ACTIONS(2645), - [aux_sym_identity_file_token1] = ACTIONS(2645), - [aux_sym_ignore_unknown_token1] = ACTIONS(2645), - [aux_sym_include_token1] = ACTIONS(2645), - [aux_sym_ip_qos_token1] = ACTIONS(2645), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2645), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2645), - [aux_sym_kex_algorithms_token1] = ACTIONS(2645), - [aux_sym_known_hosts_command_token1] = ACTIONS(2645), - [aux_sym_local_command_token1] = ACTIONS(2645), - [aux_sym_local_forward_token1] = ACTIONS(2645), - [aux_sym_log_level_token1] = ACTIONS(2645), - [aux_sym_log_verbose_token1] = ACTIONS(2645), - [aux_sym_macs_token1] = ACTIONS(2645), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2645), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2645), - [aux_sym_password_authentication_token1] = ACTIONS(2645), - [aux_sym_permit_local_command_token1] = ACTIONS(2645), - [aux_sym_permit_remote_open_token1] = ACTIONS(2645), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2645), - [aux_sym_port_token1] = ACTIONS(2645), - [aux_sym_preferred_authentications_token1] = ACTIONS(2645), - [aux_sym_protocol_token1] = ACTIONS(2645), - [aux_sym_proxy_command_token1] = ACTIONS(2645), - [aux_sym_proxy_jump_token1] = ACTIONS(2645), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2645), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2645), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2645), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2645), - [aux_sym_rekey_limit_token1] = ACTIONS(2645), - [aux_sym_remote_command_token1] = ACTIONS(2645), - [aux_sym_remote_forward_token1] = ACTIONS(2645), - [aux_sym_request_tty_token1] = ACTIONS(2645), - [aux_sym_required_rsa_size_token1] = ACTIONS(2645), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2645), - [aux_sym_security_key_provider_token1] = ACTIONS(2645), - [aux_sym_send_env_token1] = ACTIONS(2645), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2645), - [aux_sym_server_alive_interval_token1] = ACTIONS(2645), - [aux_sym_session_type_token1] = ACTIONS(2645), - [aux_sym_set_env_token1] = ACTIONS(2645), - [aux_sym_stdin_null_token1] = ACTIONS(2645), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2645), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2645), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2645), - [aux_sym_syslog_facility_token1] = ACTIONS(2645), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2645), - [aux_sym_keep_alive_token1] = ACTIONS(2645), - [aux_sym_tunnel_token1] = ACTIONS(2647), - [aux_sym_tunnel_device_token1] = ACTIONS(2645), - [aux_sym_update_host_keys_token1] = ACTIONS(2645), - [aux_sym_use_keychain_token1] = ACTIONS(2645), - [aux_sym_use_roaming_token1] = ACTIONS(2645), - [aux_sym_user_token1] = ACTIONS(2647), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2645), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2645), - [aux_sym_visual_host_key_token1] = ACTIONS(2645), - [aux_sym_xauth_location_token1] = ACTIONS(2645), + [ts_builtin_sym_end] = ACTIONS(2652), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2652), + [aux_sym_match_token1] = ACTIONS(2652), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2652), + [aux_sym_address_family_token1] = ACTIONS(2652), + [aux_sym_batch_mode_token1] = ACTIONS(2652), + [aux_sym_bind_address_token1] = ACTIONS(2652), + [aux_sym_bind_interface_token1] = ACTIONS(2652), + [aux_sym_canonical_domains_token1] = ACTIONS(2652), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2652), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2652), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2652), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2652), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2652), + [aux_sym_certificate_file_token1] = ACTIONS(2652), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2652), + [aux_sym_check_host_ip_token1] = ACTIONS(2652), + [aux_sym_ciphers_token1] = ACTIONS(2652), + [aux_sym_cipher_token1] = ACTIONS(2654), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2652), + [aux_sym_compression_token1] = ACTIONS(2652), + [aux_sym_connection_attempts_token1] = ACTIONS(2652), + [aux_sym_connect_timeout_token1] = ACTIONS(2652), + [aux_sym_control_master_token1] = ACTIONS(2652), + [aux_sym_control_path_token1] = ACTIONS(2652), + [aux_sym_control_persist_token1] = ACTIONS(2652), + [aux_sym_dynamic_forward_token1] = ACTIONS(2652), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2652), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2652), + [aux_sym_escape_char_token1] = ACTIONS(2652), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2652), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2652), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2652), + [aux_sym_forward_agent_token1] = ACTIONS(2652), + [aux_sym_forward_x11_token1] = ACTIONS(2654), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2652), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2652), + [aux_sym_gateway_ports_token1] = ACTIONS(2652), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2652), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2652), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2652), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2652), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2652), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2652), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2652), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2652), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2652), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2652), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2652), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2652), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2652), + [aux_sym_host_key_alias_token1] = ACTIONS(2652), + [aux_sym_hostname_token1] = ACTIONS(2652), + [aux_sym_identities_only_token1] = ACTIONS(2652), + [aux_sym_identity_agent_token1] = ACTIONS(2652), + [aux_sym_identity_file_token1] = ACTIONS(2652), + [aux_sym_ignore_unknown_token1] = ACTIONS(2652), + [aux_sym_include_token1] = ACTIONS(2652), + [aux_sym_ip_qos_token1] = ACTIONS(2652), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2652), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2652), + [aux_sym_kex_algorithms_token1] = ACTIONS(2652), + [aux_sym_known_hosts_command_token1] = ACTIONS(2652), + [aux_sym_local_command_token1] = ACTIONS(2652), + [aux_sym_local_forward_token1] = ACTIONS(2652), + [aux_sym_log_level_token1] = ACTIONS(2652), + [aux_sym_log_verbose_token1] = ACTIONS(2652), + [aux_sym_macs_token1] = ACTIONS(2652), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2652), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2652), + [aux_sym_password_authentication_token1] = ACTIONS(2652), + [aux_sym_permit_local_command_token1] = ACTIONS(2652), + [aux_sym_permit_remote_open_token1] = ACTIONS(2652), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2652), + [aux_sym_port_token1] = ACTIONS(2652), + [aux_sym_preferred_authentications_token1] = ACTIONS(2652), + [aux_sym_protocol_token1] = ACTIONS(2652), + [aux_sym_proxy_command_token1] = ACTIONS(2652), + [aux_sym_proxy_jump_token1] = ACTIONS(2652), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2652), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2652), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2652), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2652), + [aux_sym_rekey_limit_token1] = ACTIONS(2652), + [aux_sym_remote_command_token1] = ACTIONS(2652), + [aux_sym_remote_forward_token1] = ACTIONS(2652), + [aux_sym_request_tty_token1] = ACTIONS(2652), + [aux_sym_required_rsa_size_token1] = ACTIONS(2652), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2652), + [aux_sym_security_key_provider_token1] = ACTIONS(2652), + [aux_sym_send_env_token1] = ACTIONS(2652), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2652), + [aux_sym_server_alive_interval_token1] = ACTIONS(2652), + [aux_sym_session_type_token1] = ACTIONS(2652), + [aux_sym_set_env_token1] = ACTIONS(2652), + [aux_sym_stdin_null_token1] = ACTIONS(2652), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2652), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2652), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2652), + [aux_sym_syslog_facility_token1] = ACTIONS(2652), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2652), + [aux_sym_keep_alive_token1] = ACTIONS(2652), + [aux_sym_tunnel_token1] = ACTIONS(2654), + [aux_sym_tunnel_device_token1] = ACTIONS(2652), + [aux_sym_update_host_keys_token1] = ACTIONS(2652), + [aux_sym_use_keychain_token1] = ACTIONS(2652), + [aux_sym_use_roaming_token1] = ACTIONS(2652), + [aux_sym_user_token1] = ACTIONS(2654), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2652), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2652), + [aux_sym_visual_host_key_token1] = ACTIONS(2652), + [aux_sym_xauth_location_token1] = ACTIONS(2652), }, [378] = { - [ts_builtin_sym_end] = ACTIONS(2649), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2653), - [aux_sym_match_token1] = ACTIONS(2649), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2649), - [aux_sym_address_family_token1] = ACTIONS(2649), - [aux_sym_batch_mode_token1] = ACTIONS(2649), - [aux_sym_bind_address_token1] = ACTIONS(2649), - [aux_sym_bind_interface_token1] = ACTIONS(2649), - [aux_sym_canonical_domains_token1] = ACTIONS(2649), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2649), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2649), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2649), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2649), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2649), - [aux_sym_certificate_file_token1] = ACTIONS(2649), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2649), - [aux_sym_check_host_ip_token1] = ACTIONS(2649), - [aux_sym_ciphers_token1] = ACTIONS(2649), - [aux_sym_cipher_token1] = ACTIONS(2651), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2649), - [aux_sym_compression_token1] = ACTIONS(2649), - [aux_sym_connection_attempts_token1] = ACTIONS(2649), - [aux_sym_connect_timeout_token1] = ACTIONS(2649), - [aux_sym_control_master_token1] = ACTIONS(2649), - [aux_sym_control_path_token1] = ACTIONS(2649), - [aux_sym_control_persist_token1] = ACTIONS(2649), - [aux_sym_dynamic_forward_token1] = ACTIONS(2649), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2649), - [aux_sym_escape_char_token1] = ACTIONS(2649), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2649), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2649), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2649), - [aux_sym_forward_agent_token1] = ACTIONS(2649), - [aux_sym_forward_x11_token1] = ACTIONS(2651), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2649), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2649), - [aux_sym_gateway_ports_token1] = ACTIONS(2649), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2649), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2649), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2649), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2649), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2649), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2649), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2649), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2649), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2649), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2649), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2649), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2649), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2649), - [aux_sym_host_key_alias_token1] = ACTIONS(2649), - [aux_sym_hostname_token1] = ACTIONS(2649), - [aux_sym_identities_only_token1] = ACTIONS(2649), - [aux_sym_identity_agent_token1] = ACTIONS(2649), - [aux_sym_identity_file_token1] = ACTIONS(2649), - [aux_sym_ignore_unknown_token1] = ACTIONS(2649), - [aux_sym_include_token1] = ACTIONS(2649), - [aux_sym_ip_qos_token1] = ACTIONS(2649), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2649), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2649), - [aux_sym_kex_algorithms_token1] = ACTIONS(2649), - [aux_sym_known_hosts_command_token1] = ACTIONS(2649), - [aux_sym_local_command_token1] = ACTIONS(2649), - [aux_sym_local_forward_token1] = ACTIONS(2649), - [aux_sym_log_level_token1] = ACTIONS(2649), - [aux_sym_log_verbose_token1] = ACTIONS(2649), - [aux_sym_macs_token1] = ACTIONS(2649), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2649), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2649), - [aux_sym_password_authentication_token1] = ACTIONS(2649), - [aux_sym_permit_local_command_token1] = ACTIONS(2649), - [aux_sym_permit_remote_open_token1] = ACTIONS(2649), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2649), - [aux_sym_port_token1] = ACTIONS(2649), - [aux_sym_preferred_authentications_token1] = ACTIONS(2649), - [aux_sym_protocol_token1] = ACTIONS(2649), - [aux_sym_proxy_command_token1] = ACTIONS(2649), - [aux_sym_proxy_jump_token1] = ACTIONS(2649), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2649), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2649), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2649), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2649), - [aux_sym_rekey_limit_token1] = ACTIONS(2649), - [aux_sym_remote_command_token1] = ACTIONS(2649), - [aux_sym_remote_forward_token1] = ACTIONS(2649), - [aux_sym_request_tty_token1] = ACTIONS(2649), - [aux_sym_required_rsa_size_token1] = ACTIONS(2649), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2649), - [aux_sym_security_key_provider_token1] = ACTIONS(2649), - [aux_sym_send_env_token1] = ACTIONS(2649), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2649), - [aux_sym_server_alive_interval_token1] = ACTIONS(2649), - [aux_sym_session_type_token1] = ACTIONS(2649), - [aux_sym_set_env_token1] = ACTIONS(2649), - [aux_sym_stdin_null_token1] = ACTIONS(2649), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2649), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2649), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2649), - [aux_sym_syslog_facility_token1] = ACTIONS(2649), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2649), - [aux_sym_keep_alive_token1] = ACTIONS(2649), - [aux_sym_tunnel_token1] = ACTIONS(2651), - [aux_sym_tunnel_device_token1] = ACTIONS(2649), - [aux_sym_update_host_keys_token1] = ACTIONS(2649), - [aux_sym_use_keychain_token1] = ACTIONS(2649), - [aux_sym_use_roaming_token1] = ACTIONS(2649), - [aux_sym_user_token1] = ACTIONS(2651), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2649), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2649), - [aux_sym_visual_host_key_token1] = ACTIONS(2649), - [aux_sym_xauth_location_token1] = ACTIONS(2649), + [ts_builtin_sym_end] = ACTIONS(2656), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(2660), + [aux_sym_match_token1] = ACTIONS(2656), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2656), + [aux_sym_address_family_token1] = ACTIONS(2656), + [aux_sym_batch_mode_token1] = ACTIONS(2656), + [aux_sym_bind_address_token1] = ACTIONS(2656), + [aux_sym_bind_interface_token1] = ACTIONS(2656), + [aux_sym_canonical_domains_token1] = ACTIONS(2656), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2656), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2656), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2656), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2656), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2656), + [aux_sym_certificate_file_token1] = ACTIONS(2656), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2656), + [aux_sym_check_host_ip_token1] = ACTIONS(2656), + [aux_sym_ciphers_token1] = ACTIONS(2656), + [aux_sym_cipher_token1] = ACTIONS(2658), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2656), + [aux_sym_compression_token1] = ACTIONS(2656), + [aux_sym_connection_attempts_token1] = ACTIONS(2656), + [aux_sym_connect_timeout_token1] = ACTIONS(2656), + [aux_sym_control_master_token1] = ACTIONS(2656), + [aux_sym_control_path_token1] = ACTIONS(2656), + [aux_sym_control_persist_token1] = ACTIONS(2656), + [aux_sym_dynamic_forward_token1] = ACTIONS(2656), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2656), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2656), + [aux_sym_escape_char_token1] = ACTIONS(2656), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2656), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2656), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2656), + [aux_sym_forward_agent_token1] = ACTIONS(2656), + [aux_sym_forward_x11_token1] = ACTIONS(2658), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2656), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2656), + [aux_sym_gateway_ports_token1] = ACTIONS(2656), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2656), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2656), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2656), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2656), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2656), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2656), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2656), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2656), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2656), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2656), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2656), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2656), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2656), + [aux_sym_host_key_alias_token1] = ACTIONS(2656), + [aux_sym_hostname_token1] = ACTIONS(2656), + [aux_sym_identities_only_token1] = ACTIONS(2656), + [aux_sym_identity_agent_token1] = ACTIONS(2656), + [aux_sym_identity_file_token1] = ACTIONS(2656), + [aux_sym_ignore_unknown_token1] = ACTIONS(2656), + [aux_sym_include_token1] = ACTIONS(2656), + [aux_sym_ip_qos_token1] = ACTIONS(2656), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2656), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2656), + [aux_sym_kex_algorithms_token1] = ACTIONS(2656), + [aux_sym_known_hosts_command_token1] = ACTIONS(2656), + [aux_sym_local_command_token1] = ACTIONS(2656), + [aux_sym_local_forward_token1] = ACTIONS(2656), + [aux_sym_log_level_token1] = ACTIONS(2656), + [aux_sym_log_verbose_token1] = ACTIONS(2656), + [aux_sym_macs_token1] = ACTIONS(2656), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2656), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2656), + [aux_sym_password_authentication_token1] = ACTIONS(2656), + [aux_sym_permit_local_command_token1] = ACTIONS(2656), + [aux_sym_permit_remote_open_token1] = ACTIONS(2656), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2656), + [aux_sym_port_token1] = ACTIONS(2656), + [aux_sym_preferred_authentications_token1] = ACTIONS(2656), + [aux_sym_protocol_token1] = ACTIONS(2656), + [aux_sym_proxy_command_token1] = ACTIONS(2656), + [aux_sym_proxy_jump_token1] = ACTIONS(2656), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2656), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2656), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2656), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2656), + [aux_sym_rekey_limit_token1] = ACTIONS(2656), + [aux_sym_remote_command_token1] = ACTIONS(2656), + [aux_sym_remote_forward_token1] = ACTIONS(2656), + [aux_sym_request_tty_token1] = ACTIONS(2656), + [aux_sym_required_rsa_size_token1] = ACTIONS(2656), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2656), + [aux_sym_security_key_provider_token1] = ACTIONS(2656), + [aux_sym_send_env_token1] = ACTIONS(2656), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2656), + [aux_sym_server_alive_interval_token1] = ACTIONS(2656), + [aux_sym_session_type_token1] = ACTIONS(2656), + [aux_sym_set_env_token1] = ACTIONS(2656), + [aux_sym_stdin_null_token1] = ACTIONS(2656), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2656), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2656), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2656), + [aux_sym_syslog_facility_token1] = ACTIONS(2656), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2656), + [aux_sym_keep_alive_token1] = ACTIONS(2656), + [aux_sym_tunnel_token1] = ACTIONS(2658), + [aux_sym_tunnel_device_token1] = ACTIONS(2656), + [aux_sym_update_host_keys_token1] = ACTIONS(2656), + [aux_sym_use_keychain_token1] = ACTIONS(2656), + [aux_sym_use_roaming_token1] = ACTIONS(2656), + [aux_sym_user_token1] = ACTIONS(2658), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2656), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2656), + [aux_sym_visual_host_key_token1] = ACTIONS(2656), + [aux_sym_xauth_location_token1] = ACTIONS(2656), }, [379] = { - [ts_builtin_sym_end] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2655), - [aux_sym_match_token1] = ACTIONS(2655), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2655), - [aux_sym_address_family_token1] = ACTIONS(2655), - [aux_sym_batch_mode_token1] = ACTIONS(2655), - [aux_sym_bind_address_token1] = ACTIONS(2655), - [aux_sym_bind_interface_token1] = ACTIONS(2655), - [aux_sym_canonical_domains_token1] = ACTIONS(2655), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2655), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2655), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2655), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2655), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2655), - [aux_sym_certificate_file_token1] = ACTIONS(2655), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2655), - [aux_sym_check_host_ip_token1] = ACTIONS(2655), - [aux_sym_ciphers_token1] = ACTIONS(2655), - [aux_sym_cipher_token1] = ACTIONS(2657), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2655), - [aux_sym_compression_token1] = ACTIONS(2655), - [aux_sym_connection_attempts_token1] = ACTIONS(2655), - [aux_sym_connect_timeout_token1] = ACTIONS(2655), - [aux_sym_control_master_token1] = ACTIONS(2655), - [aux_sym_control_path_token1] = ACTIONS(2655), - [aux_sym_control_persist_token1] = ACTIONS(2655), - [aux_sym_dynamic_forward_token1] = ACTIONS(2655), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2655), - [aux_sym_escape_char_token1] = ACTIONS(2655), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2655), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2655), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2655), - [aux_sym_forward_agent_token1] = ACTIONS(2655), - [aux_sym_forward_x11_token1] = ACTIONS(2657), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2655), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2655), - [aux_sym_gateway_ports_token1] = ACTIONS(2655), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2655), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2655), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2655), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2655), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2655), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2655), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2655), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2655), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2655), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2655), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2655), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2655), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2655), - [aux_sym_host_key_alias_token1] = ACTIONS(2655), - [aux_sym_hostname_token1] = ACTIONS(2655), - [aux_sym_identities_only_token1] = ACTIONS(2655), - [aux_sym_identity_agent_token1] = ACTIONS(2655), - [aux_sym_identity_file_token1] = ACTIONS(2655), - [aux_sym_ignore_unknown_token1] = ACTIONS(2655), - [aux_sym_include_token1] = ACTIONS(2655), - [aux_sym_ip_qos_token1] = ACTIONS(2655), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2655), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2655), - [aux_sym_kex_algorithms_token1] = ACTIONS(2655), - [aux_sym_known_hosts_command_token1] = ACTIONS(2655), - [aux_sym_local_command_token1] = ACTIONS(2655), - [aux_sym_local_forward_token1] = ACTIONS(2655), - [aux_sym_log_level_token1] = ACTIONS(2655), - [aux_sym_log_verbose_token1] = ACTIONS(2655), - [aux_sym_macs_token1] = ACTIONS(2655), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2655), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2655), - [aux_sym_password_authentication_token1] = ACTIONS(2655), - [aux_sym_permit_local_command_token1] = ACTIONS(2655), - [aux_sym_permit_remote_open_token1] = ACTIONS(2655), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2655), - [aux_sym_port_token1] = ACTIONS(2655), - [aux_sym_preferred_authentications_token1] = ACTIONS(2655), - [aux_sym_protocol_token1] = ACTIONS(2655), - [aux_sym_proxy_command_token1] = ACTIONS(2655), - [aux_sym_proxy_jump_token1] = ACTIONS(2655), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2655), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2655), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2655), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2655), - [aux_sym_rekey_limit_token1] = ACTIONS(2655), - [aux_sym_remote_command_token1] = ACTIONS(2655), - [aux_sym_remote_forward_token1] = ACTIONS(2655), - [aux_sym_request_tty_token1] = ACTIONS(2655), - [aux_sym_required_rsa_size_token1] = ACTIONS(2655), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2655), - [aux_sym_security_key_provider_token1] = ACTIONS(2655), - [aux_sym_send_env_token1] = ACTIONS(2655), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2655), - [aux_sym_server_alive_interval_token1] = ACTIONS(2655), - [aux_sym_session_type_token1] = ACTIONS(2655), - [aux_sym_set_env_token1] = ACTIONS(2655), - [aux_sym_stdin_null_token1] = ACTIONS(2655), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2655), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2655), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2655), - [aux_sym_syslog_facility_token1] = ACTIONS(2655), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2655), - [aux_sym_keep_alive_token1] = ACTIONS(2655), - [aux_sym_tunnel_token1] = ACTIONS(2657), - [aux_sym_tunnel_device_token1] = ACTIONS(2655), - [aux_sym_update_host_keys_token1] = ACTIONS(2655), - [aux_sym_use_keychain_token1] = ACTIONS(2655), - [aux_sym_use_roaming_token1] = ACTIONS(2655), - [aux_sym_user_token1] = ACTIONS(2657), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2655), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2655), - [aux_sym_visual_host_key_token1] = ACTIONS(2655), - [aux_sym_xauth_location_token1] = ACTIONS(2655), + [ts_builtin_sym_end] = ACTIONS(2662), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(2662), + [aux_sym_match_token1] = ACTIONS(2662), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2662), + [aux_sym_address_family_token1] = ACTIONS(2662), + [aux_sym_batch_mode_token1] = ACTIONS(2662), + [aux_sym_bind_address_token1] = ACTIONS(2662), + [aux_sym_bind_interface_token1] = ACTIONS(2662), + [aux_sym_canonical_domains_token1] = ACTIONS(2662), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2662), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2662), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2662), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2662), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2662), + [aux_sym_certificate_file_token1] = ACTIONS(2662), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2662), + [aux_sym_check_host_ip_token1] = ACTIONS(2662), + [aux_sym_ciphers_token1] = ACTIONS(2662), + [aux_sym_cipher_token1] = ACTIONS(2664), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2662), + [aux_sym_compression_token1] = ACTIONS(2662), + [aux_sym_connection_attempts_token1] = ACTIONS(2662), + [aux_sym_connect_timeout_token1] = ACTIONS(2662), + [aux_sym_control_master_token1] = ACTIONS(2662), + [aux_sym_control_path_token1] = ACTIONS(2662), + [aux_sym_control_persist_token1] = ACTIONS(2662), + [aux_sym_dynamic_forward_token1] = ACTIONS(2662), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2662), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2662), + [aux_sym_escape_char_token1] = ACTIONS(2662), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2662), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2662), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2662), + [aux_sym_forward_agent_token1] = ACTIONS(2662), + [aux_sym_forward_x11_token1] = ACTIONS(2664), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2662), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2662), + [aux_sym_gateway_ports_token1] = ACTIONS(2662), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2662), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2662), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2662), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2662), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2662), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2662), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2662), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2662), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2662), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2662), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2662), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2662), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2662), + [aux_sym_host_key_alias_token1] = ACTIONS(2662), + [aux_sym_hostname_token1] = ACTIONS(2662), + [aux_sym_identities_only_token1] = ACTIONS(2662), + [aux_sym_identity_agent_token1] = ACTIONS(2662), + [aux_sym_identity_file_token1] = ACTIONS(2662), + [aux_sym_ignore_unknown_token1] = ACTIONS(2662), + [aux_sym_include_token1] = ACTIONS(2662), + [aux_sym_ip_qos_token1] = ACTIONS(2662), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2662), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2662), + [aux_sym_kex_algorithms_token1] = ACTIONS(2662), + [aux_sym_known_hosts_command_token1] = ACTIONS(2662), + [aux_sym_local_command_token1] = ACTIONS(2662), + [aux_sym_local_forward_token1] = ACTIONS(2662), + [aux_sym_log_level_token1] = ACTIONS(2662), + [aux_sym_log_verbose_token1] = ACTIONS(2662), + [aux_sym_macs_token1] = ACTIONS(2662), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2662), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2662), + [aux_sym_password_authentication_token1] = ACTIONS(2662), + [aux_sym_permit_local_command_token1] = ACTIONS(2662), + [aux_sym_permit_remote_open_token1] = ACTIONS(2662), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2662), + [aux_sym_port_token1] = ACTIONS(2662), + [aux_sym_preferred_authentications_token1] = ACTIONS(2662), + [aux_sym_protocol_token1] = ACTIONS(2662), + [aux_sym_proxy_command_token1] = ACTIONS(2662), + [aux_sym_proxy_jump_token1] = ACTIONS(2662), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2662), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2662), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2662), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2662), + [aux_sym_rekey_limit_token1] = ACTIONS(2662), + [aux_sym_remote_command_token1] = ACTIONS(2662), + [aux_sym_remote_forward_token1] = ACTIONS(2662), + [aux_sym_request_tty_token1] = ACTIONS(2662), + [aux_sym_required_rsa_size_token1] = ACTIONS(2662), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2662), + [aux_sym_security_key_provider_token1] = ACTIONS(2662), + [aux_sym_send_env_token1] = ACTIONS(2662), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2662), + [aux_sym_server_alive_interval_token1] = ACTIONS(2662), + [aux_sym_session_type_token1] = ACTIONS(2662), + [aux_sym_set_env_token1] = ACTIONS(2662), + [aux_sym_stdin_null_token1] = ACTIONS(2662), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2662), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2662), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2662), + [aux_sym_syslog_facility_token1] = ACTIONS(2662), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2662), + [aux_sym_keep_alive_token1] = ACTIONS(2662), + [aux_sym_tunnel_token1] = ACTIONS(2664), + [aux_sym_tunnel_device_token1] = ACTIONS(2662), + [aux_sym_update_host_keys_token1] = ACTIONS(2662), + [aux_sym_use_keychain_token1] = ACTIONS(2662), + [aux_sym_use_roaming_token1] = ACTIONS(2662), + [aux_sym_user_token1] = ACTIONS(2664), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2662), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2662), + [aux_sym_visual_host_key_token1] = ACTIONS(2662), + [aux_sym_xauth_location_token1] = ACTIONS(2662), }, [380] = { - [ts_builtin_sym_end] = ACTIONS(2659), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2661), - [anon_sym_DQUOTE] = ACTIONS(2663), - [aux_sym_match_token1] = ACTIONS(2659), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2659), - [aux_sym_address_family_token1] = ACTIONS(2659), - [aux_sym_batch_mode_token1] = ACTIONS(2659), - [aux_sym_bind_address_token1] = ACTIONS(2659), - [aux_sym_bind_interface_token1] = ACTIONS(2659), - [aux_sym_canonical_domains_token1] = ACTIONS(2659), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2659), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2659), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2659), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2659), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2659), - [aux_sym_certificate_file_token1] = ACTIONS(2659), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2659), - [aux_sym_check_host_ip_token1] = ACTIONS(2659), - [aux_sym_ciphers_token1] = ACTIONS(2659), - [aux_sym_cipher_token1] = ACTIONS(2661), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2659), - [aux_sym_compression_token1] = ACTIONS(2659), - [aux_sym_connection_attempts_token1] = ACTIONS(2659), - [aux_sym_connect_timeout_token1] = ACTIONS(2659), - [aux_sym_control_master_token1] = ACTIONS(2659), - [aux_sym_control_path_token1] = ACTIONS(2659), - [aux_sym_control_persist_token1] = ACTIONS(2659), - [aux_sym_dynamic_forward_token1] = ACTIONS(2659), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2659), - [aux_sym_escape_char_token1] = ACTIONS(2659), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2659), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2659), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2659), - [aux_sym_forward_agent_token1] = ACTIONS(2659), - [aux_sym_forward_x11_token1] = ACTIONS(2661), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2659), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2659), - [aux_sym_gateway_ports_token1] = ACTIONS(2659), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2659), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2659), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2659), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2659), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2659), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2659), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2659), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2659), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2659), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2659), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2659), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2659), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2659), - [aux_sym_host_key_alias_token1] = ACTIONS(2659), - [aux_sym_hostname_token1] = ACTIONS(2659), - [aux_sym_identities_only_token1] = ACTIONS(2659), - [aux_sym_identity_agent_token1] = ACTIONS(2659), - [aux_sym_identity_file_token1] = ACTIONS(2659), - [aux_sym_ignore_unknown_token1] = ACTIONS(2659), - [aux_sym_include_token1] = ACTIONS(2659), - [aux_sym_ip_qos_token1] = ACTIONS(2659), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2659), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2659), - [aux_sym_kex_algorithms_token1] = ACTIONS(2659), - [aux_sym_known_hosts_command_token1] = ACTIONS(2659), - [aux_sym_local_command_token1] = ACTIONS(2659), - [aux_sym_local_forward_token1] = ACTIONS(2659), - [aux_sym_log_level_token1] = ACTIONS(2659), - [aux_sym_log_verbose_token1] = ACTIONS(2659), - [aux_sym_macs_token1] = ACTIONS(2659), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2659), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2659), - [aux_sym_password_authentication_token1] = ACTIONS(2659), - [aux_sym_permit_local_command_token1] = ACTIONS(2659), - [aux_sym_permit_remote_open_token1] = ACTIONS(2659), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2659), - [aux_sym_port_token1] = ACTIONS(2659), - [aux_sym_preferred_authentications_token1] = ACTIONS(2659), - [aux_sym_protocol_token1] = ACTIONS(2659), - [aux_sym_proxy_command_token1] = ACTIONS(2659), - [aux_sym_proxy_jump_token1] = ACTIONS(2659), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2659), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2659), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2659), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2659), - [aux_sym_rekey_limit_token1] = ACTIONS(2659), - [aux_sym_remote_command_token1] = ACTIONS(2659), - [aux_sym_remote_forward_token1] = ACTIONS(2659), - [aux_sym_request_tty_token1] = ACTIONS(2659), - [aux_sym_required_rsa_size_token1] = ACTIONS(2659), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2659), - [aux_sym_security_key_provider_token1] = ACTIONS(2659), - [aux_sym_send_env_token1] = ACTIONS(2659), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2659), - [aux_sym_server_alive_interval_token1] = ACTIONS(2659), - [aux_sym_session_type_token1] = ACTIONS(2659), - [aux_sym_set_env_token1] = ACTIONS(2659), - [aux_sym_stdin_null_token1] = ACTIONS(2659), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2659), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2659), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2659), - [aux_sym_syslog_facility_token1] = ACTIONS(2659), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2659), - [aux_sym_keep_alive_token1] = ACTIONS(2659), - [aux_sym_tunnel_token1] = ACTIONS(2661), - [aux_sym_tunnel_device_token1] = ACTIONS(2659), - [aux_sym_update_host_keys_token1] = ACTIONS(2659), - [aux_sym_use_keychain_token1] = ACTIONS(2659), - [aux_sym_use_roaming_token1] = ACTIONS(2659), - [aux_sym_user_token1] = ACTIONS(2661), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2659), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2659), - [aux_sym_visual_host_key_token1] = ACTIONS(2659), - [aux_sym_xauth_location_token1] = ACTIONS(2659), + [ts_builtin_sym_end] = ACTIONS(2666), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2668), + [anon_sym_DQUOTE] = ACTIONS(2670), + [aux_sym_match_token1] = ACTIONS(2666), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2666), + [aux_sym_address_family_token1] = ACTIONS(2666), + [aux_sym_batch_mode_token1] = ACTIONS(2666), + [aux_sym_bind_address_token1] = ACTIONS(2666), + [aux_sym_bind_interface_token1] = ACTIONS(2666), + [aux_sym_canonical_domains_token1] = ACTIONS(2666), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2666), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2666), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2666), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2666), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2666), + [aux_sym_certificate_file_token1] = ACTIONS(2666), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2666), + [aux_sym_check_host_ip_token1] = ACTIONS(2666), + [aux_sym_ciphers_token1] = ACTIONS(2666), + [aux_sym_cipher_token1] = ACTIONS(2668), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2666), + [aux_sym_compression_token1] = ACTIONS(2666), + [aux_sym_connection_attempts_token1] = ACTIONS(2666), + [aux_sym_connect_timeout_token1] = ACTIONS(2666), + [aux_sym_control_master_token1] = ACTIONS(2666), + [aux_sym_control_path_token1] = ACTIONS(2666), + [aux_sym_control_persist_token1] = ACTIONS(2666), + [aux_sym_dynamic_forward_token1] = ACTIONS(2666), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2666), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2666), + [aux_sym_escape_char_token1] = ACTIONS(2666), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2666), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2666), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2666), + [aux_sym_forward_agent_token1] = ACTIONS(2666), + [aux_sym_forward_x11_token1] = ACTIONS(2668), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2666), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2666), + [aux_sym_gateway_ports_token1] = ACTIONS(2666), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2666), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2666), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2666), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2666), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2666), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2666), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2666), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2666), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2666), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2666), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2666), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2666), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2666), + [aux_sym_host_key_alias_token1] = ACTIONS(2666), + [aux_sym_hostname_token1] = ACTIONS(2666), + [aux_sym_identities_only_token1] = ACTIONS(2666), + [aux_sym_identity_agent_token1] = ACTIONS(2666), + [aux_sym_identity_file_token1] = ACTIONS(2666), + [aux_sym_ignore_unknown_token1] = ACTIONS(2666), + [aux_sym_include_token1] = ACTIONS(2666), + [aux_sym_ip_qos_token1] = ACTIONS(2666), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2666), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2666), + [aux_sym_kex_algorithms_token1] = ACTIONS(2666), + [aux_sym_known_hosts_command_token1] = ACTIONS(2666), + [aux_sym_local_command_token1] = ACTIONS(2666), + [aux_sym_local_forward_token1] = ACTIONS(2666), + [aux_sym_log_level_token1] = ACTIONS(2666), + [aux_sym_log_verbose_token1] = ACTIONS(2666), + [aux_sym_macs_token1] = ACTIONS(2666), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2666), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2666), + [aux_sym_password_authentication_token1] = ACTIONS(2666), + [aux_sym_permit_local_command_token1] = ACTIONS(2666), + [aux_sym_permit_remote_open_token1] = ACTIONS(2666), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2666), + [aux_sym_port_token1] = ACTIONS(2666), + [aux_sym_preferred_authentications_token1] = ACTIONS(2666), + [aux_sym_protocol_token1] = ACTIONS(2666), + [aux_sym_proxy_command_token1] = ACTIONS(2666), + [aux_sym_proxy_jump_token1] = ACTIONS(2666), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2666), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2666), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2666), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2666), + [aux_sym_rekey_limit_token1] = ACTIONS(2666), + [aux_sym_remote_command_token1] = ACTIONS(2666), + [aux_sym_remote_forward_token1] = ACTIONS(2666), + [aux_sym_request_tty_token1] = ACTIONS(2666), + [aux_sym_required_rsa_size_token1] = ACTIONS(2666), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2666), + [aux_sym_security_key_provider_token1] = ACTIONS(2666), + [aux_sym_send_env_token1] = ACTIONS(2666), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2666), + [aux_sym_server_alive_interval_token1] = ACTIONS(2666), + [aux_sym_session_type_token1] = ACTIONS(2666), + [aux_sym_set_env_token1] = ACTIONS(2666), + [aux_sym_stdin_null_token1] = ACTIONS(2666), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2666), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2666), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2666), + [aux_sym_syslog_facility_token1] = ACTIONS(2666), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2666), + [aux_sym_keep_alive_token1] = ACTIONS(2666), + [aux_sym_tunnel_token1] = ACTIONS(2668), + [aux_sym_tunnel_device_token1] = ACTIONS(2666), + [aux_sym_update_host_keys_token1] = ACTIONS(2666), + [aux_sym_use_keychain_token1] = ACTIONS(2666), + [aux_sym_use_roaming_token1] = ACTIONS(2666), + [aux_sym_user_token1] = ACTIONS(2668), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2666), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2666), + [aux_sym_visual_host_key_token1] = ACTIONS(2666), + [aux_sym_xauth_location_token1] = ACTIONS(2666), }, [381] = { - [ts_builtin_sym_end] = ACTIONS(2665), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2665), - [aux_sym_match_token1] = ACTIONS(2665), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2665), - [aux_sym_address_family_token1] = ACTIONS(2665), - [aux_sym_batch_mode_token1] = ACTIONS(2665), - [aux_sym_bind_address_token1] = ACTIONS(2665), - [aux_sym_bind_interface_token1] = ACTIONS(2665), - [aux_sym_canonical_domains_token1] = ACTIONS(2665), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2665), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2665), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2665), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2665), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2665), - [aux_sym_certificate_file_token1] = ACTIONS(2665), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2665), - [aux_sym_check_host_ip_token1] = ACTIONS(2665), - [aux_sym_ciphers_token1] = ACTIONS(2665), - [aux_sym_cipher_token1] = ACTIONS(2667), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2665), - [aux_sym_compression_token1] = ACTIONS(2665), - [aux_sym_connection_attempts_token1] = ACTIONS(2665), - [aux_sym_connect_timeout_token1] = ACTIONS(2665), - [aux_sym_control_master_token1] = ACTIONS(2665), - [aux_sym_control_path_token1] = ACTIONS(2665), - [aux_sym_control_persist_token1] = ACTIONS(2665), - [aux_sym_dynamic_forward_token1] = ACTIONS(2665), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2665), - [aux_sym_escape_char_token1] = ACTIONS(2665), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2665), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2665), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2665), - [aux_sym_forward_agent_token1] = ACTIONS(2665), - [aux_sym_forward_x11_token1] = ACTIONS(2667), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2665), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2665), - [aux_sym_gateway_ports_token1] = ACTIONS(2665), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2665), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2665), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2665), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2665), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2665), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2665), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2665), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2665), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2665), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2665), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2665), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2665), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2665), - [aux_sym_host_key_alias_token1] = ACTIONS(2665), - [aux_sym_hostname_token1] = ACTIONS(2665), - [aux_sym_identities_only_token1] = ACTIONS(2665), - [aux_sym_identity_agent_token1] = ACTIONS(2665), - [aux_sym_identity_file_token1] = ACTIONS(2665), - [aux_sym_ignore_unknown_token1] = ACTIONS(2665), - [aux_sym_include_token1] = ACTIONS(2665), - [aux_sym_ip_qos_token1] = ACTIONS(2665), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2665), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2665), - [aux_sym_kex_algorithms_token1] = ACTIONS(2665), - [aux_sym_known_hosts_command_token1] = ACTIONS(2665), - [aux_sym_local_command_token1] = ACTIONS(2665), - [aux_sym_local_forward_token1] = ACTIONS(2665), - [aux_sym_log_level_token1] = ACTIONS(2665), - [aux_sym_log_verbose_token1] = ACTIONS(2665), - [aux_sym_macs_token1] = ACTIONS(2665), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2665), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2665), - [aux_sym_password_authentication_token1] = ACTIONS(2665), - [aux_sym_permit_local_command_token1] = ACTIONS(2665), - [aux_sym_permit_remote_open_token1] = ACTIONS(2665), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2665), - [aux_sym_port_token1] = ACTIONS(2665), - [aux_sym_preferred_authentications_token1] = ACTIONS(2665), - [aux_sym_protocol_token1] = ACTIONS(2665), - [aux_sym_proxy_command_token1] = ACTIONS(2665), - [aux_sym_proxy_jump_token1] = ACTIONS(2665), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2665), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2665), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2665), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2665), - [aux_sym_rekey_limit_token1] = ACTIONS(2665), - [aux_sym_remote_command_token1] = ACTIONS(2665), - [aux_sym_remote_forward_token1] = ACTIONS(2665), - [aux_sym_request_tty_token1] = ACTIONS(2665), - [aux_sym_required_rsa_size_token1] = ACTIONS(2665), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2665), - [aux_sym_security_key_provider_token1] = ACTIONS(2665), - [aux_sym_send_env_token1] = ACTIONS(2665), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2665), - [aux_sym_server_alive_interval_token1] = ACTIONS(2665), - [aux_sym_session_type_token1] = ACTIONS(2665), - [aux_sym_set_env_token1] = ACTIONS(2665), - [aux_sym_stdin_null_token1] = ACTIONS(2665), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2665), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2665), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2665), - [aux_sym_syslog_facility_token1] = ACTIONS(2665), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2665), - [aux_sym_keep_alive_token1] = ACTIONS(2665), - [aux_sym_tunnel_token1] = ACTIONS(2667), - [aux_sym_tunnel_device_token1] = ACTIONS(2665), - [aux_sym_update_host_keys_token1] = ACTIONS(2665), - [aux_sym_use_keychain_token1] = ACTIONS(2665), - [aux_sym_use_roaming_token1] = ACTIONS(2665), - [aux_sym_user_token1] = ACTIONS(2667), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2665), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2665), - [aux_sym_visual_host_key_token1] = ACTIONS(2665), - [aux_sym_xauth_location_token1] = ACTIONS(2665), + [ts_builtin_sym_end] = ACTIONS(2672), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2674), + [anon_sym_DQUOTE] = ACTIONS(2676), + [aux_sym_match_token1] = ACTIONS(2672), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2672), + [aux_sym_address_family_token1] = ACTIONS(2672), + [aux_sym_batch_mode_token1] = ACTIONS(2672), + [aux_sym_bind_address_token1] = ACTIONS(2672), + [aux_sym_bind_interface_token1] = ACTIONS(2672), + [aux_sym_canonical_domains_token1] = ACTIONS(2672), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2672), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2672), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2672), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2672), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2672), + [aux_sym_certificate_file_token1] = ACTIONS(2672), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2672), + [aux_sym_check_host_ip_token1] = ACTIONS(2672), + [aux_sym_ciphers_token1] = ACTIONS(2672), + [aux_sym_cipher_token1] = ACTIONS(2674), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2672), + [aux_sym_compression_token1] = ACTIONS(2672), + [aux_sym_connection_attempts_token1] = ACTIONS(2672), + [aux_sym_connect_timeout_token1] = ACTIONS(2672), + [aux_sym_control_master_token1] = ACTIONS(2672), + [aux_sym_control_path_token1] = ACTIONS(2672), + [aux_sym_control_persist_token1] = ACTIONS(2672), + [aux_sym_dynamic_forward_token1] = ACTIONS(2672), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2672), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2672), + [aux_sym_escape_char_token1] = ACTIONS(2672), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2672), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2672), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2672), + [aux_sym_forward_agent_token1] = ACTIONS(2672), + [aux_sym_forward_x11_token1] = ACTIONS(2674), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2672), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2672), + [aux_sym_gateway_ports_token1] = ACTIONS(2672), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2672), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2672), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2672), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2672), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2672), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2672), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2672), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2672), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2672), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2672), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2672), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2672), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2672), + [aux_sym_host_key_alias_token1] = ACTIONS(2672), + [aux_sym_hostname_token1] = ACTIONS(2672), + [aux_sym_identities_only_token1] = ACTIONS(2672), + [aux_sym_identity_agent_token1] = ACTIONS(2672), + [aux_sym_identity_file_token1] = ACTIONS(2672), + [aux_sym_ignore_unknown_token1] = ACTIONS(2672), + [aux_sym_include_token1] = ACTIONS(2672), + [aux_sym_ip_qos_token1] = ACTIONS(2672), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2672), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2672), + [aux_sym_kex_algorithms_token1] = ACTIONS(2672), + [aux_sym_known_hosts_command_token1] = ACTIONS(2672), + [aux_sym_local_command_token1] = ACTIONS(2672), + [aux_sym_local_forward_token1] = ACTIONS(2672), + [aux_sym_log_level_token1] = ACTIONS(2672), + [aux_sym_log_verbose_token1] = ACTIONS(2672), + [aux_sym_macs_token1] = ACTIONS(2672), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2672), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2672), + [aux_sym_password_authentication_token1] = ACTIONS(2672), + [aux_sym_permit_local_command_token1] = ACTIONS(2672), + [aux_sym_permit_remote_open_token1] = ACTIONS(2672), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2672), + [aux_sym_port_token1] = ACTIONS(2672), + [aux_sym_preferred_authentications_token1] = ACTIONS(2672), + [aux_sym_protocol_token1] = ACTIONS(2672), + [aux_sym_proxy_command_token1] = ACTIONS(2672), + [aux_sym_proxy_jump_token1] = ACTIONS(2672), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2672), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2672), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2672), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2672), + [aux_sym_rekey_limit_token1] = ACTIONS(2672), + [aux_sym_remote_command_token1] = ACTIONS(2672), + [aux_sym_remote_forward_token1] = ACTIONS(2672), + [aux_sym_request_tty_token1] = ACTIONS(2672), + [aux_sym_required_rsa_size_token1] = ACTIONS(2672), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2672), + [aux_sym_security_key_provider_token1] = ACTIONS(2672), + [aux_sym_send_env_token1] = ACTIONS(2672), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2672), + [aux_sym_server_alive_interval_token1] = ACTIONS(2672), + [aux_sym_session_type_token1] = ACTIONS(2672), + [aux_sym_set_env_token1] = ACTIONS(2672), + [aux_sym_stdin_null_token1] = ACTIONS(2672), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2672), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2672), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2672), + [aux_sym_syslog_facility_token1] = ACTIONS(2672), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2672), + [aux_sym_keep_alive_token1] = ACTIONS(2672), + [aux_sym_tunnel_token1] = ACTIONS(2674), + [aux_sym_tunnel_device_token1] = ACTIONS(2672), + [aux_sym_update_host_keys_token1] = ACTIONS(2672), + [aux_sym_use_keychain_token1] = ACTIONS(2672), + [aux_sym_use_roaming_token1] = ACTIONS(2672), + [aux_sym_user_token1] = ACTIONS(2674), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2672), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2672), + [aux_sym_visual_host_key_token1] = ACTIONS(2672), + [aux_sym_xauth_location_token1] = ACTIONS(2672), }, [382] = { - [ts_builtin_sym_end] = ACTIONS(2669), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2673), - [aux_sym_match_token1] = ACTIONS(2669), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2669), - [aux_sym_address_family_token1] = ACTIONS(2669), - [aux_sym_batch_mode_token1] = ACTIONS(2669), - [aux_sym_bind_address_token1] = ACTIONS(2669), - [aux_sym_bind_interface_token1] = ACTIONS(2669), - [aux_sym_canonical_domains_token1] = ACTIONS(2669), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2669), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2669), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2669), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2669), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2669), - [aux_sym_certificate_file_token1] = ACTIONS(2669), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2669), - [aux_sym_check_host_ip_token1] = ACTIONS(2669), - [aux_sym_ciphers_token1] = ACTIONS(2669), - [aux_sym_cipher_token1] = ACTIONS(2671), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2669), - [aux_sym_compression_token1] = ACTIONS(2669), - [aux_sym_connection_attempts_token1] = ACTIONS(2669), - [aux_sym_connect_timeout_token1] = ACTIONS(2669), - [aux_sym_control_master_token1] = ACTIONS(2669), - [aux_sym_control_path_token1] = ACTIONS(2669), - [aux_sym_control_persist_token1] = ACTIONS(2669), - [aux_sym_dynamic_forward_token1] = ACTIONS(2669), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2669), - [aux_sym_escape_char_token1] = ACTIONS(2669), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2669), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2669), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2669), - [aux_sym_forward_agent_token1] = ACTIONS(2669), - [aux_sym_forward_x11_token1] = ACTIONS(2671), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2669), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2669), - [aux_sym_gateway_ports_token1] = ACTIONS(2669), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2669), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2669), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2669), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2669), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2669), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2669), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2669), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2669), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2669), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2669), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2669), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2669), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2669), - [aux_sym_host_key_alias_token1] = ACTIONS(2669), - [aux_sym_hostname_token1] = ACTIONS(2669), - [aux_sym_identities_only_token1] = ACTIONS(2669), - [aux_sym_identity_agent_token1] = ACTIONS(2669), - [aux_sym_identity_file_token1] = ACTIONS(2669), - [aux_sym_ignore_unknown_token1] = ACTIONS(2669), - [aux_sym_include_token1] = ACTIONS(2669), - [aux_sym_ip_qos_token1] = ACTIONS(2669), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2669), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2669), - [aux_sym_kex_algorithms_token1] = ACTIONS(2669), - [aux_sym_known_hosts_command_token1] = ACTIONS(2669), - [aux_sym_local_command_token1] = ACTIONS(2669), - [aux_sym_local_forward_token1] = ACTIONS(2669), - [aux_sym_log_level_token1] = ACTIONS(2669), - [aux_sym_log_verbose_token1] = ACTIONS(2669), - [aux_sym_macs_token1] = ACTIONS(2669), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2669), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2669), - [aux_sym_password_authentication_token1] = ACTIONS(2669), - [aux_sym_permit_local_command_token1] = ACTIONS(2669), - [aux_sym_permit_remote_open_token1] = ACTIONS(2669), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2669), - [aux_sym_port_token1] = ACTIONS(2669), - [aux_sym_preferred_authentications_token1] = ACTIONS(2669), - [aux_sym_protocol_token1] = ACTIONS(2669), - [aux_sym_proxy_command_token1] = ACTIONS(2669), - [aux_sym_proxy_jump_token1] = ACTIONS(2669), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2669), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2669), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2669), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2669), - [aux_sym_rekey_limit_token1] = ACTIONS(2669), - [aux_sym_remote_command_token1] = ACTIONS(2669), - [aux_sym_remote_forward_token1] = ACTIONS(2669), - [aux_sym_request_tty_token1] = ACTIONS(2669), - [aux_sym_required_rsa_size_token1] = ACTIONS(2669), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2669), - [aux_sym_security_key_provider_token1] = ACTIONS(2669), - [aux_sym_send_env_token1] = ACTIONS(2669), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2669), - [aux_sym_server_alive_interval_token1] = ACTIONS(2669), - [aux_sym_session_type_token1] = ACTIONS(2669), - [aux_sym_set_env_token1] = ACTIONS(2669), - [aux_sym_stdin_null_token1] = ACTIONS(2669), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2669), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2669), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2669), - [aux_sym_syslog_facility_token1] = ACTIONS(2669), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2669), - [aux_sym_keep_alive_token1] = ACTIONS(2669), - [aux_sym_tunnel_token1] = ACTIONS(2671), - [aux_sym_tunnel_device_token1] = ACTIONS(2669), - [aux_sym_update_host_keys_token1] = ACTIONS(2669), - [aux_sym_use_keychain_token1] = ACTIONS(2669), - [aux_sym_use_roaming_token1] = ACTIONS(2669), - [aux_sym_user_token1] = ACTIONS(2671), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2669), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2669), - [aux_sym_visual_host_key_token1] = ACTIONS(2669), - [aux_sym_xauth_location_token1] = ACTIONS(2669), + [ts_builtin_sym_end] = ACTIONS(2678), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2680), + [anon_sym_DQUOTE] = ACTIONS(2678), + [aux_sym_match_token1] = ACTIONS(2678), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2678), + [aux_sym_address_family_token1] = ACTIONS(2678), + [aux_sym_batch_mode_token1] = ACTIONS(2678), + [aux_sym_bind_address_token1] = ACTIONS(2678), + [aux_sym_bind_interface_token1] = ACTIONS(2678), + [aux_sym_canonical_domains_token1] = ACTIONS(2678), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2678), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2678), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2678), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2678), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2678), + [aux_sym_certificate_file_token1] = ACTIONS(2678), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2678), + [aux_sym_check_host_ip_token1] = ACTIONS(2678), + [aux_sym_ciphers_token1] = ACTIONS(2678), + [aux_sym_cipher_token1] = ACTIONS(2680), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2678), + [aux_sym_compression_token1] = ACTIONS(2678), + [aux_sym_connection_attempts_token1] = ACTIONS(2678), + [aux_sym_connect_timeout_token1] = ACTIONS(2678), + [aux_sym_control_master_token1] = ACTIONS(2678), + [aux_sym_control_path_token1] = ACTIONS(2678), + [aux_sym_control_persist_token1] = ACTIONS(2678), + [aux_sym_dynamic_forward_token1] = ACTIONS(2678), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2678), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2678), + [aux_sym_escape_char_token1] = ACTIONS(2678), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2678), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2678), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2678), + [aux_sym_forward_agent_token1] = ACTIONS(2678), + [aux_sym_forward_x11_token1] = ACTIONS(2680), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2678), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2678), + [aux_sym_gateway_ports_token1] = ACTIONS(2678), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2678), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2678), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2678), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2678), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2678), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2678), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2678), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2678), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2678), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2678), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2678), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2678), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2678), + [aux_sym_host_key_alias_token1] = ACTIONS(2678), + [aux_sym_hostname_token1] = ACTIONS(2678), + [aux_sym_identities_only_token1] = ACTIONS(2678), + [aux_sym_identity_agent_token1] = ACTIONS(2678), + [aux_sym_identity_file_token1] = ACTIONS(2678), + [aux_sym_ignore_unknown_token1] = ACTIONS(2678), + [aux_sym_include_token1] = ACTIONS(2678), + [aux_sym_ip_qos_token1] = ACTIONS(2678), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2678), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2678), + [aux_sym_kex_algorithms_token1] = ACTIONS(2678), + [aux_sym_known_hosts_command_token1] = ACTIONS(2678), + [aux_sym_local_command_token1] = ACTIONS(2678), + [aux_sym_local_forward_token1] = ACTIONS(2678), + [aux_sym_log_level_token1] = ACTIONS(2678), + [aux_sym_log_verbose_token1] = ACTIONS(2678), + [aux_sym_macs_token1] = ACTIONS(2678), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2678), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2678), + [aux_sym_password_authentication_token1] = ACTIONS(2678), + [aux_sym_permit_local_command_token1] = ACTIONS(2678), + [aux_sym_permit_remote_open_token1] = ACTIONS(2678), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2678), + [aux_sym_port_token1] = ACTIONS(2678), + [aux_sym_preferred_authentications_token1] = ACTIONS(2678), + [aux_sym_protocol_token1] = ACTIONS(2678), + [aux_sym_proxy_command_token1] = ACTIONS(2678), + [aux_sym_proxy_jump_token1] = ACTIONS(2678), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2678), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2678), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2678), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2678), + [aux_sym_rekey_limit_token1] = ACTIONS(2678), + [aux_sym_remote_command_token1] = ACTIONS(2678), + [aux_sym_remote_forward_token1] = ACTIONS(2678), + [aux_sym_request_tty_token1] = ACTIONS(2678), + [aux_sym_required_rsa_size_token1] = ACTIONS(2678), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2678), + [aux_sym_security_key_provider_token1] = ACTIONS(2678), + [aux_sym_send_env_token1] = ACTIONS(2678), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2678), + [aux_sym_server_alive_interval_token1] = ACTIONS(2678), + [aux_sym_session_type_token1] = ACTIONS(2678), + [aux_sym_set_env_token1] = ACTIONS(2678), + [aux_sym_stdin_null_token1] = ACTIONS(2678), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2678), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2678), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2678), + [aux_sym_syslog_facility_token1] = ACTIONS(2678), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2678), + [aux_sym_keep_alive_token1] = ACTIONS(2678), + [aux_sym_tunnel_token1] = ACTIONS(2680), + [aux_sym_tunnel_device_token1] = ACTIONS(2678), + [aux_sym_update_host_keys_token1] = ACTIONS(2678), + [aux_sym_use_keychain_token1] = ACTIONS(2678), + [aux_sym_use_roaming_token1] = ACTIONS(2678), + [aux_sym_user_token1] = ACTIONS(2680), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2678), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2678), + [aux_sym_visual_host_key_token1] = ACTIONS(2678), + [aux_sym_xauth_location_token1] = ACTIONS(2678), }, [383] = { - [ts_builtin_sym_end] = ACTIONS(2675), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2677), - [anon_sym_DQUOTE] = ACTIONS(2679), - [aux_sym_match_token1] = ACTIONS(2675), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2675), - [aux_sym_address_family_token1] = ACTIONS(2675), - [aux_sym_batch_mode_token1] = ACTIONS(2675), - [aux_sym_bind_address_token1] = ACTIONS(2675), - [aux_sym_bind_interface_token1] = ACTIONS(2675), - [aux_sym_canonical_domains_token1] = ACTIONS(2675), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2675), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2675), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2675), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2675), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2675), - [aux_sym_certificate_file_token1] = ACTIONS(2675), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2675), - [aux_sym_check_host_ip_token1] = ACTIONS(2675), - [aux_sym_ciphers_token1] = ACTIONS(2675), - [aux_sym_cipher_token1] = ACTIONS(2677), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2675), - [aux_sym_compression_token1] = ACTIONS(2675), - [aux_sym_connection_attempts_token1] = ACTIONS(2675), - [aux_sym_connect_timeout_token1] = ACTIONS(2675), - [aux_sym_control_master_token1] = ACTIONS(2675), - [aux_sym_control_path_token1] = ACTIONS(2675), - [aux_sym_control_persist_token1] = ACTIONS(2675), - [aux_sym_dynamic_forward_token1] = ACTIONS(2675), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2675), - [aux_sym_escape_char_token1] = ACTIONS(2675), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2675), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2675), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2675), - [aux_sym_forward_agent_token1] = ACTIONS(2675), - [aux_sym_forward_x11_token1] = ACTIONS(2677), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2675), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2675), - [aux_sym_gateway_ports_token1] = ACTIONS(2675), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2675), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2675), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2675), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2675), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2675), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2675), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2675), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2675), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2675), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2675), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2675), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2675), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2675), - [aux_sym_host_key_alias_token1] = ACTIONS(2675), - [aux_sym_hostname_token1] = ACTIONS(2675), - [aux_sym_identities_only_token1] = ACTIONS(2675), - [aux_sym_identity_agent_token1] = ACTIONS(2675), - [aux_sym_identity_file_token1] = ACTIONS(2675), - [aux_sym_ignore_unknown_token1] = ACTIONS(2675), - [aux_sym_include_token1] = ACTIONS(2675), - [aux_sym_ip_qos_token1] = ACTIONS(2675), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2675), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2675), - [aux_sym_kex_algorithms_token1] = ACTIONS(2675), - [aux_sym_known_hosts_command_token1] = ACTIONS(2675), - [aux_sym_local_command_token1] = ACTIONS(2675), - [aux_sym_local_forward_token1] = ACTIONS(2675), - [aux_sym_log_level_token1] = ACTIONS(2675), - [aux_sym_log_verbose_token1] = ACTIONS(2675), - [aux_sym_macs_token1] = ACTIONS(2675), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2675), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2675), - [aux_sym_password_authentication_token1] = ACTIONS(2675), - [aux_sym_permit_local_command_token1] = ACTIONS(2675), - [aux_sym_permit_remote_open_token1] = ACTIONS(2675), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2675), - [aux_sym_port_token1] = ACTIONS(2675), - [aux_sym_preferred_authentications_token1] = ACTIONS(2675), - [aux_sym_protocol_token1] = ACTIONS(2675), - [aux_sym_proxy_command_token1] = ACTIONS(2675), - [aux_sym_proxy_jump_token1] = ACTIONS(2675), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2675), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2675), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2675), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2675), - [aux_sym_rekey_limit_token1] = ACTIONS(2675), - [aux_sym_remote_command_token1] = ACTIONS(2675), - [aux_sym_remote_forward_token1] = ACTIONS(2675), - [aux_sym_request_tty_token1] = ACTIONS(2675), - [aux_sym_required_rsa_size_token1] = ACTIONS(2675), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2675), - [aux_sym_security_key_provider_token1] = ACTIONS(2675), - [aux_sym_send_env_token1] = ACTIONS(2675), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2675), - [aux_sym_server_alive_interval_token1] = ACTIONS(2675), - [aux_sym_session_type_token1] = ACTIONS(2675), - [aux_sym_set_env_token1] = ACTIONS(2675), - [aux_sym_stdin_null_token1] = ACTIONS(2675), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2675), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2675), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2675), - [aux_sym_syslog_facility_token1] = ACTIONS(2675), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2675), - [aux_sym_keep_alive_token1] = ACTIONS(2675), - [aux_sym_tunnel_token1] = ACTIONS(2677), - [aux_sym_tunnel_device_token1] = ACTIONS(2675), - [aux_sym_update_host_keys_token1] = ACTIONS(2675), - [aux_sym_use_keychain_token1] = ACTIONS(2675), - [aux_sym_use_roaming_token1] = ACTIONS(2675), - [aux_sym_user_token1] = ACTIONS(2677), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2675), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2675), - [aux_sym_visual_host_key_token1] = ACTIONS(2675), - [aux_sym_xauth_location_token1] = ACTIONS(2675), + [ts_builtin_sym_end] = ACTIONS(2682), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2684), + [anon_sym_DQUOTE] = ACTIONS(2682), + [aux_sym_match_token1] = ACTIONS(2682), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2682), + [aux_sym_address_family_token1] = ACTIONS(2682), + [aux_sym_batch_mode_token1] = ACTIONS(2682), + [aux_sym_bind_address_token1] = ACTIONS(2682), + [aux_sym_bind_interface_token1] = ACTIONS(2682), + [aux_sym_canonical_domains_token1] = ACTIONS(2682), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2682), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2682), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2682), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2682), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2682), + [aux_sym_certificate_file_token1] = ACTIONS(2682), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2682), + [aux_sym_check_host_ip_token1] = ACTIONS(2682), + [aux_sym_ciphers_token1] = ACTIONS(2682), + [aux_sym_cipher_token1] = ACTIONS(2684), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2682), + [aux_sym_compression_token1] = ACTIONS(2682), + [aux_sym_connection_attempts_token1] = ACTIONS(2682), + [aux_sym_connect_timeout_token1] = ACTIONS(2682), + [aux_sym_control_master_token1] = ACTIONS(2682), + [aux_sym_control_path_token1] = ACTIONS(2682), + [aux_sym_control_persist_token1] = ACTIONS(2682), + [aux_sym_dynamic_forward_token1] = ACTIONS(2682), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2682), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2682), + [aux_sym_escape_char_token1] = ACTIONS(2682), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2682), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2682), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2682), + [aux_sym_forward_agent_token1] = ACTIONS(2682), + [aux_sym_forward_x11_token1] = ACTIONS(2684), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2682), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2682), + [aux_sym_gateway_ports_token1] = ACTIONS(2682), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2682), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2682), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2682), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2682), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2682), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2682), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2682), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2682), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2682), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2682), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2682), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2682), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2682), + [aux_sym_host_key_alias_token1] = ACTIONS(2682), + [aux_sym_hostname_token1] = ACTIONS(2682), + [aux_sym_identities_only_token1] = ACTIONS(2682), + [aux_sym_identity_agent_token1] = ACTIONS(2682), + [aux_sym_identity_file_token1] = ACTIONS(2682), + [aux_sym_ignore_unknown_token1] = ACTIONS(2682), + [aux_sym_include_token1] = ACTIONS(2682), + [aux_sym_ip_qos_token1] = ACTIONS(2682), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2682), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2682), + [aux_sym_kex_algorithms_token1] = ACTIONS(2682), + [aux_sym_known_hosts_command_token1] = ACTIONS(2682), + [aux_sym_local_command_token1] = ACTIONS(2682), + [aux_sym_local_forward_token1] = ACTIONS(2682), + [aux_sym_log_level_token1] = ACTIONS(2682), + [aux_sym_log_verbose_token1] = ACTIONS(2682), + [aux_sym_macs_token1] = ACTIONS(2682), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2682), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2682), + [aux_sym_password_authentication_token1] = ACTIONS(2682), + [aux_sym_permit_local_command_token1] = ACTIONS(2682), + [aux_sym_permit_remote_open_token1] = ACTIONS(2682), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2682), + [aux_sym_port_token1] = ACTIONS(2682), + [aux_sym_preferred_authentications_token1] = ACTIONS(2682), + [aux_sym_protocol_token1] = ACTIONS(2682), + [aux_sym_proxy_command_token1] = ACTIONS(2682), + [aux_sym_proxy_jump_token1] = ACTIONS(2682), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2682), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2682), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2682), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2682), + [aux_sym_rekey_limit_token1] = ACTIONS(2682), + [aux_sym_remote_command_token1] = ACTIONS(2682), + [aux_sym_remote_forward_token1] = ACTIONS(2682), + [aux_sym_request_tty_token1] = ACTIONS(2682), + [aux_sym_required_rsa_size_token1] = ACTIONS(2682), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2682), + [aux_sym_security_key_provider_token1] = ACTIONS(2682), + [aux_sym_send_env_token1] = ACTIONS(2682), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2682), + [aux_sym_server_alive_interval_token1] = ACTIONS(2682), + [aux_sym_session_type_token1] = ACTIONS(2682), + [aux_sym_set_env_token1] = ACTIONS(2682), + [aux_sym_stdin_null_token1] = ACTIONS(2682), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2682), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2682), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2682), + [aux_sym_syslog_facility_token1] = ACTIONS(2682), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2682), + [aux_sym_keep_alive_token1] = ACTIONS(2682), + [aux_sym_tunnel_token1] = ACTIONS(2684), + [aux_sym_tunnel_device_token1] = ACTIONS(2682), + [aux_sym_update_host_keys_token1] = ACTIONS(2682), + [aux_sym_use_keychain_token1] = ACTIONS(2682), + [aux_sym_use_roaming_token1] = ACTIONS(2682), + [aux_sym_user_token1] = ACTIONS(2684), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2682), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2682), + [aux_sym_visual_host_key_token1] = ACTIONS(2682), + [aux_sym_xauth_location_token1] = ACTIONS(2682), }, [384] = { - [ts_builtin_sym_end] = ACTIONS(2681), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2683), - [anon_sym_DQUOTE] = ACTIONS(2681), - [aux_sym_match_token1] = ACTIONS(2681), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2681), - [aux_sym_address_family_token1] = ACTIONS(2681), - [aux_sym_batch_mode_token1] = ACTIONS(2681), - [aux_sym_bind_address_token1] = ACTIONS(2681), - [aux_sym_bind_interface_token1] = ACTIONS(2681), - [aux_sym_canonical_domains_token1] = ACTIONS(2681), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2681), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2681), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2681), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2681), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2681), - [aux_sym_certificate_file_token1] = ACTIONS(2681), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2681), - [aux_sym_check_host_ip_token1] = ACTIONS(2681), - [aux_sym_ciphers_token1] = ACTIONS(2681), - [aux_sym_cipher_token1] = ACTIONS(2683), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2681), - [aux_sym_compression_token1] = ACTIONS(2681), - [aux_sym_connection_attempts_token1] = ACTIONS(2681), - [aux_sym_connect_timeout_token1] = ACTIONS(2681), - [aux_sym_control_master_token1] = ACTIONS(2681), - [aux_sym_control_path_token1] = ACTIONS(2681), - [aux_sym_control_persist_token1] = ACTIONS(2681), - [aux_sym_dynamic_forward_token1] = ACTIONS(2681), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2681), - [aux_sym_escape_char_token1] = ACTIONS(2681), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2681), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2681), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2681), - [aux_sym_forward_agent_token1] = ACTIONS(2681), - [aux_sym_forward_x11_token1] = ACTIONS(2683), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2681), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2681), - [aux_sym_gateway_ports_token1] = ACTIONS(2681), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2681), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2681), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2681), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2681), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2681), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2681), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2681), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2681), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2681), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2681), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2681), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2681), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2681), - [aux_sym_host_key_alias_token1] = ACTIONS(2681), - [aux_sym_hostname_token1] = ACTIONS(2681), - [aux_sym_identities_only_token1] = ACTIONS(2681), - [aux_sym_identity_agent_token1] = ACTIONS(2681), - [aux_sym_identity_file_token1] = ACTIONS(2681), - [aux_sym_ignore_unknown_token1] = ACTIONS(2681), - [aux_sym_include_token1] = ACTIONS(2681), - [aux_sym_ip_qos_token1] = ACTIONS(2681), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2681), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2681), - [aux_sym_kex_algorithms_token1] = ACTIONS(2681), - [aux_sym_known_hosts_command_token1] = ACTIONS(2681), - [aux_sym_local_command_token1] = ACTIONS(2681), - [aux_sym_local_forward_token1] = ACTIONS(2681), - [aux_sym_log_level_token1] = ACTIONS(2681), - [aux_sym_log_verbose_token1] = ACTIONS(2681), - [aux_sym_macs_token1] = ACTIONS(2681), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2681), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2681), - [aux_sym_password_authentication_token1] = ACTIONS(2681), - [aux_sym_permit_local_command_token1] = ACTIONS(2681), - [aux_sym_permit_remote_open_token1] = ACTIONS(2681), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2681), - [aux_sym_port_token1] = ACTIONS(2681), - [aux_sym_preferred_authentications_token1] = ACTIONS(2681), - [aux_sym_protocol_token1] = ACTIONS(2681), - [aux_sym_proxy_command_token1] = ACTIONS(2681), - [aux_sym_proxy_jump_token1] = ACTIONS(2681), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2681), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2681), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2681), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2681), - [aux_sym_rekey_limit_token1] = ACTIONS(2681), - [aux_sym_remote_command_token1] = ACTIONS(2681), - [aux_sym_remote_forward_token1] = ACTIONS(2681), - [aux_sym_request_tty_token1] = ACTIONS(2681), - [aux_sym_required_rsa_size_token1] = ACTIONS(2681), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2681), - [aux_sym_security_key_provider_token1] = ACTIONS(2681), - [aux_sym_send_env_token1] = ACTIONS(2681), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2681), - [aux_sym_server_alive_interval_token1] = ACTIONS(2681), - [aux_sym_session_type_token1] = ACTIONS(2681), - [aux_sym_set_env_token1] = ACTIONS(2681), - [aux_sym_stdin_null_token1] = ACTIONS(2681), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2681), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2681), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2681), - [aux_sym_syslog_facility_token1] = ACTIONS(2681), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2681), - [aux_sym_keep_alive_token1] = ACTIONS(2681), - [aux_sym_tunnel_token1] = ACTIONS(2683), - [aux_sym_tunnel_device_token1] = ACTIONS(2681), - [aux_sym_update_host_keys_token1] = ACTIONS(2681), - [aux_sym_use_keychain_token1] = ACTIONS(2681), - [aux_sym_use_roaming_token1] = ACTIONS(2681), - [aux_sym_user_token1] = ACTIONS(2683), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2681), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2681), - [aux_sym_visual_host_key_token1] = ACTIONS(2681), - [aux_sym_xauth_location_token1] = ACTIONS(2681), + [ts_builtin_sym_end] = ACTIONS(2686), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2688), + [anon_sym_DQUOTE] = ACTIONS(2690), + [aux_sym_match_token1] = ACTIONS(2686), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2686), + [aux_sym_address_family_token1] = ACTIONS(2686), + [aux_sym_batch_mode_token1] = ACTIONS(2686), + [aux_sym_bind_address_token1] = ACTIONS(2686), + [aux_sym_bind_interface_token1] = ACTIONS(2686), + [aux_sym_canonical_domains_token1] = ACTIONS(2686), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2686), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2686), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2686), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2686), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2686), + [aux_sym_certificate_file_token1] = ACTIONS(2686), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2686), + [aux_sym_check_host_ip_token1] = ACTIONS(2686), + [aux_sym_ciphers_token1] = ACTIONS(2686), + [aux_sym_cipher_token1] = ACTIONS(2688), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2686), + [aux_sym_compression_token1] = ACTIONS(2686), + [aux_sym_connection_attempts_token1] = ACTIONS(2686), + [aux_sym_connect_timeout_token1] = ACTIONS(2686), + [aux_sym_control_master_token1] = ACTIONS(2686), + [aux_sym_control_path_token1] = ACTIONS(2686), + [aux_sym_control_persist_token1] = ACTIONS(2686), + [aux_sym_dynamic_forward_token1] = ACTIONS(2686), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2686), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2686), + [aux_sym_escape_char_token1] = ACTIONS(2686), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2686), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2686), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2686), + [aux_sym_forward_agent_token1] = ACTIONS(2686), + [aux_sym_forward_x11_token1] = ACTIONS(2688), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2686), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2686), + [aux_sym_gateway_ports_token1] = ACTIONS(2686), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2686), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2686), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2686), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2686), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2686), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2686), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2686), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2686), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2686), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2686), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2686), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2686), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2686), + [aux_sym_host_key_alias_token1] = ACTIONS(2686), + [aux_sym_hostname_token1] = ACTIONS(2686), + [aux_sym_identities_only_token1] = ACTIONS(2686), + [aux_sym_identity_agent_token1] = ACTIONS(2686), + [aux_sym_identity_file_token1] = ACTIONS(2686), + [aux_sym_ignore_unknown_token1] = ACTIONS(2686), + [aux_sym_include_token1] = ACTIONS(2686), + [aux_sym_ip_qos_token1] = ACTIONS(2686), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2686), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2686), + [aux_sym_kex_algorithms_token1] = ACTIONS(2686), + [aux_sym_known_hosts_command_token1] = ACTIONS(2686), + [aux_sym_local_command_token1] = ACTIONS(2686), + [aux_sym_local_forward_token1] = ACTIONS(2686), + [aux_sym_log_level_token1] = ACTIONS(2686), + [aux_sym_log_verbose_token1] = ACTIONS(2686), + [aux_sym_macs_token1] = ACTIONS(2686), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2686), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2686), + [aux_sym_password_authentication_token1] = ACTIONS(2686), + [aux_sym_permit_local_command_token1] = ACTIONS(2686), + [aux_sym_permit_remote_open_token1] = ACTIONS(2686), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2686), + [aux_sym_port_token1] = ACTIONS(2686), + [aux_sym_preferred_authentications_token1] = ACTIONS(2686), + [aux_sym_protocol_token1] = ACTIONS(2686), + [aux_sym_proxy_command_token1] = ACTIONS(2686), + [aux_sym_proxy_jump_token1] = ACTIONS(2686), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2686), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2686), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2686), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2686), + [aux_sym_rekey_limit_token1] = ACTIONS(2686), + [aux_sym_remote_command_token1] = ACTIONS(2686), + [aux_sym_remote_forward_token1] = ACTIONS(2686), + [aux_sym_request_tty_token1] = ACTIONS(2686), + [aux_sym_required_rsa_size_token1] = ACTIONS(2686), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2686), + [aux_sym_security_key_provider_token1] = ACTIONS(2686), + [aux_sym_send_env_token1] = ACTIONS(2686), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2686), + [aux_sym_server_alive_interval_token1] = ACTIONS(2686), + [aux_sym_session_type_token1] = ACTIONS(2686), + [aux_sym_set_env_token1] = ACTIONS(2686), + [aux_sym_stdin_null_token1] = ACTIONS(2686), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2686), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2686), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2686), + [aux_sym_syslog_facility_token1] = ACTIONS(2686), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2686), + [aux_sym_keep_alive_token1] = ACTIONS(2686), + [aux_sym_tunnel_token1] = ACTIONS(2688), + [aux_sym_tunnel_device_token1] = ACTIONS(2686), + [aux_sym_update_host_keys_token1] = ACTIONS(2686), + [aux_sym_use_keychain_token1] = ACTIONS(2686), + [aux_sym_use_roaming_token1] = ACTIONS(2686), + [aux_sym_user_token1] = ACTIONS(2688), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2686), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2686), + [aux_sym_visual_host_key_token1] = ACTIONS(2686), + [aux_sym_xauth_location_token1] = ACTIONS(2686), }, [385] = { - [ts_builtin_sym_end] = ACTIONS(2685), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2685), - [aux_sym_match_token1] = ACTIONS(2685), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2685), - [aux_sym_address_family_token1] = ACTIONS(2685), - [aux_sym_batch_mode_token1] = ACTIONS(2685), - [aux_sym_bind_address_token1] = ACTIONS(2685), - [aux_sym_bind_interface_token1] = ACTIONS(2685), - [aux_sym_canonical_domains_token1] = ACTIONS(2685), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2685), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2685), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2685), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2685), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2685), - [aux_sym_certificate_file_token1] = ACTIONS(2685), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2685), - [aux_sym_check_host_ip_token1] = ACTIONS(2685), - [aux_sym_ciphers_token1] = ACTIONS(2685), - [aux_sym_cipher_token1] = ACTIONS(2687), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2685), - [aux_sym_compression_token1] = ACTIONS(2685), - [aux_sym_connection_attempts_token1] = ACTIONS(2685), - [aux_sym_connect_timeout_token1] = ACTIONS(2685), - [aux_sym_control_master_token1] = ACTIONS(2685), - [aux_sym_control_path_token1] = ACTIONS(2685), - [aux_sym_control_persist_token1] = ACTIONS(2685), - [aux_sym_dynamic_forward_token1] = ACTIONS(2685), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2685), - [aux_sym_escape_char_token1] = ACTIONS(2685), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2685), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2685), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2685), - [aux_sym_forward_agent_token1] = ACTIONS(2685), - [aux_sym_forward_x11_token1] = ACTIONS(2687), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2685), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2685), - [aux_sym_gateway_ports_token1] = ACTIONS(2685), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2685), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2685), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2685), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2685), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2685), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2685), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2685), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2685), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2685), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2685), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2685), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2685), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2685), - [aux_sym_host_key_alias_token1] = ACTIONS(2685), - [aux_sym_hostname_token1] = ACTIONS(2685), - [aux_sym_identities_only_token1] = ACTIONS(2685), - [aux_sym_identity_agent_token1] = ACTIONS(2685), - [aux_sym_identity_file_token1] = ACTIONS(2685), - [aux_sym_ignore_unknown_token1] = ACTIONS(2685), - [aux_sym_include_token1] = ACTIONS(2685), - [aux_sym_ip_qos_token1] = ACTIONS(2685), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2685), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2685), - [aux_sym_kex_algorithms_token1] = ACTIONS(2685), - [aux_sym_known_hosts_command_token1] = ACTIONS(2685), - [aux_sym_local_command_token1] = ACTIONS(2685), - [aux_sym_local_forward_token1] = ACTIONS(2685), - [aux_sym_log_level_token1] = ACTIONS(2685), - [aux_sym_log_verbose_token1] = ACTIONS(2685), - [aux_sym_macs_token1] = ACTIONS(2685), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2685), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2685), - [aux_sym_password_authentication_token1] = ACTIONS(2685), - [aux_sym_permit_local_command_token1] = ACTIONS(2685), - [aux_sym_permit_remote_open_token1] = ACTIONS(2685), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2685), - [aux_sym_port_token1] = ACTIONS(2685), - [aux_sym_preferred_authentications_token1] = ACTIONS(2685), - [aux_sym_protocol_token1] = ACTIONS(2685), - [aux_sym_proxy_command_token1] = ACTIONS(2685), - [aux_sym_proxy_jump_token1] = ACTIONS(2685), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2685), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2685), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2685), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2685), - [aux_sym_rekey_limit_token1] = ACTIONS(2685), - [aux_sym_remote_command_token1] = ACTIONS(2685), - [aux_sym_remote_forward_token1] = ACTIONS(2685), - [aux_sym_request_tty_token1] = ACTIONS(2685), - [aux_sym_required_rsa_size_token1] = ACTIONS(2685), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2685), - [aux_sym_security_key_provider_token1] = ACTIONS(2685), - [aux_sym_send_env_token1] = ACTIONS(2685), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2685), - [aux_sym_server_alive_interval_token1] = ACTIONS(2685), - [aux_sym_session_type_token1] = ACTIONS(2685), - [aux_sym_set_env_token1] = ACTIONS(2685), - [aux_sym_stdin_null_token1] = ACTIONS(2685), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2685), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2685), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2685), - [aux_sym_syslog_facility_token1] = ACTIONS(2685), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2685), - [aux_sym_keep_alive_token1] = ACTIONS(2685), - [aux_sym_tunnel_token1] = ACTIONS(2687), - [aux_sym_tunnel_device_token1] = ACTIONS(2685), - [aux_sym_update_host_keys_token1] = ACTIONS(2685), - [aux_sym_use_keychain_token1] = ACTIONS(2685), - [aux_sym_use_roaming_token1] = ACTIONS(2685), - [aux_sym_user_token1] = ACTIONS(2687), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2685), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2685), - [aux_sym_visual_host_key_token1] = ACTIONS(2685), - [aux_sym_xauth_location_token1] = ACTIONS(2685), + [ts_builtin_sym_end] = ACTIONS(2692), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2694), + [anon_sym_DQUOTE] = ACTIONS(2692), + [aux_sym_match_token1] = ACTIONS(2692), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2692), + [aux_sym_address_family_token1] = ACTIONS(2692), + [aux_sym_batch_mode_token1] = ACTIONS(2692), + [aux_sym_bind_address_token1] = ACTIONS(2692), + [aux_sym_bind_interface_token1] = ACTIONS(2692), + [aux_sym_canonical_domains_token1] = ACTIONS(2692), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2692), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2692), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2692), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2692), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2692), + [aux_sym_certificate_file_token1] = ACTIONS(2692), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2692), + [aux_sym_check_host_ip_token1] = ACTIONS(2692), + [aux_sym_ciphers_token1] = ACTIONS(2692), + [aux_sym_cipher_token1] = ACTIONS(2694), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2692), + [aux_sym_compression_token1] = ACTIONS(2692), + [aux_sym_connection_attempts_token1] = ACTIONS(2692), + [aux_sym_connect_timeout_token1] = ACTIONS(2692), + [aux_sym_control_master_token1] = ACTIONS(2692), + [aux_sym_control_path_token1] = ACTIONS(2692), + [aux_sym_control_persist_token1] = ACTIONS(2692), + [aux_sym_dynamic_forward_token1] = ACTIONS(2692), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2692), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2692), + [aux_sym_escape_char_token1] = ACTIONS(2692), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2692), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2692), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2692), + [aux_sym_forward_agent_token1] = ACTIONS(2692), + [aux_sym_forward_x11_token1] = ACTIONS(2694), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2692), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2692), + [aux_sym_gateway_ports_token1] = ACTIONS(2692), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2692), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2692), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2692), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2692), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2692), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2692), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2692), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2692), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2692), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2692), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2692), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2692), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2692), + [aux_sym_host_key_alias_token1] = ACTIONS(2692), + [aux_sym_hostname_token1] = ACTIONS(2692), + [aux_sym_identities_only_token1] = ACTIONS(2692), + [aux_sym_identity_agent_token1] = ACTIONS(2692), + [aux_sym_identity_file_token1] = ACTIONS(2692), + [aux_sym_ignore_unknown_token1] = ACTIONS(2692), + [aux_sym_include_token1] = ACTIONS(2692), + [aux_sym_ip_qos_token1] = ACTIONS(2692), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2692), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2692), + [aux_sym_kex_algorithms_token1] = ACTIONS(2692), + [aux_sym_known_hosts_command_token1] = ACTIONS(2692), + [aux_sym_local_command_token1] = ACTIONS(2692), + [aux_sym_local_forward_token1] = ACTIONS(2692), + [aux_sym_log_level_token1] = ACTIONS(2692), + [aux_sym_log_verbose_token1] = ACTIONS(2692), + [aux_sym_macs_token1] = ACTIONS(2692), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2692), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2692), + [aux_sym_password_authentication_token1] = ACTIONS(2692), + [aux_sym_permit_local_command_token1] = ACTIONS(2692), + [aux_sym_permit_remote_open_token1] = ACTIONS(2692), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2692), + [aux_sym_port_token1] = ACTIONS(2692), + [aux_sym_preferred_authentications_token1] = ACTIONS(2692), + [aux_sym_protocol_token1] = ACTIONS(2692), + [aux_sym_proxy_command_token1] = ACTIONS(2692), + [aux_sym_proxy_jump_token1] = ACTIONS(2692), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2692), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2692), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2692), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2692), + [aux_sym_rekey_limit_token1] = ACTIONS(2692), + [aux_sym_remote_command_token1] = ACTIONS(2692), + [aux_sym_remote_forward_token1] = ACTIONS(2692), + [aux_sym_request_tty_token1] = ACTIONS(2692), + [aux_sym_required_rsa_size_token1] = ACTIONS(2692), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2692), + [aux_sym_security_key_provider_token1] = ACTIONS(2692), + [aux_sym_send_env_token1] = ACTIONS(2692), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2692), + [aux_sym_server_alive_interval_token1] = ACTIONS(2692), + [aux_sym_session_type_token1] = ACTIONS(2692), + [aux_sym_set_env_token1] = ACTIONS(2692), + [aux_sym_stdin_null_token1] = ACTIONS(2692), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2692), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2692), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2692), + [aux_sym_syslog_facility_token1] = ACTIONS(2692), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2692), + [aux_sym_keep_alive_token1] = ACTIONS(2692), + [aux_sym_tunnel_token1] = ACTIONS(2694), + [aux_sym_tunnel_device_token1] = ACTIONS(2692), + [aux_sym_update_host_keys_token1] = ACTIONS(2692), + [aux_sym_use_keychain_token1] = ACTIONS(2692), + [aux_sym_use_roaming_token1] = ACTIONS(2692), + [aux_sym_user_token1] = ACTIONS(2694), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2692), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2692), + [aux_sym_visual_host_key_token1] = ACTIONS(2692), + [aux_sym_xauth_location_token1] = ACTIONS(2692), }, [386] = { - [ts_builtin_sym_end] = ACTIONS(2689), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2691), - [anon_sym_DQUOTE] = ACTIONS(2693), - [aux_sym_match_token1] = ACTIONS(2689), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2689), - [aux_sym_address_family_token1] = ACTIONS(2689), - [aux_sym_batch_mode_token1] = ACTIONS(2689), - [aux_sym_bind_address_token1] = ACTIONS(2689), - [aux_sym_bind_interface_token1] = ACTIONS(2689), - [aux_sym_canonical_domains_token1] = ACTIONS(2689), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2689), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2689), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2689), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2689), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2689), - [aux_sym_certificate_file_token1] = ACTIONS(2689), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2689), - [aux_sym_check_host_ip_token1] = ACTIONS(2689), - [aux_sym_ciphers_token1] = ACTIONS(2689), - [aux_sym_cipher_token1] = ACTIONS(2691), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2689), - [aux_sym_compression_token1] = ACTIONS(2689), - [aux_sym_connection_attempts_token1] = ACTIONS(2689), - [aux_sym_connect_timeout_token1] = ACTIONS(2689), - [aux_sym_control_master_token1] = ACTIONS(2689), - [aux_sym_control_path_token1] = ACTIONS(2689), - [aux_sym_control_persist_token1] = ACTIONS(2689), - [aux_sym_dynamic_forward_token1] = ACTIONS(2689), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2689), - [aux_sym_escape_char_token1] = ACTIONS(2689), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2689), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2689), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2689), - [aux_sym_forward_agent_token1] = ACTIONS(2689), - [aux_sym_forward_x11_token1] = ACTIONS(2691), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2689), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2689), - [aux_sym_gateway_ports_token1] = ACTIONS(2689), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2689), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2689), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2689), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2689), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2689), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2689), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2689), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2689), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2689), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2689), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2689), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2689), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2689), - [aux_sym_host_key_alias_token1] = ACTIONS(2689), - [aux_sym_hostname_token1] = ACTIONS(2689), - [aux_sym_identities_only_token1] = ACTIONS(2689), - [aux_sym_identity_agent_token1] = ACTIONS(2689), - [aux_sym_identity_file_token1] = ACTIONS(2689), - [aux_sym_ignore_unknown_token1] = ACTIONS(2689), - [aux_sym_include_token1] = ACTIONS(2689), - [aux_sym_ip_qos_token1] = ACTIONS(2689), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2689), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2689), - [aux_sym_kex_algorithms_token1] = ACTIONS(2689), - [aux_sym_known_hosts_command_token1] = ACTIONS(2689), - [aux_sym_local_command_token1] = ACTIONS(2689), - [aux_sym_local_forward_token1] = ACTIONS(2689), - [aux_sym_log_level_token1] = ACTIONS(2689), - [aux_sym_log_verbose_token1] = ACTIONS(2689), - [aux_sym_macs_token1] = ACTIONS(2689), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2689), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2689), - [aux_sym_password_authentication_token1] = ACTIONS(2689), - [aux_sym_permit_local_command_token1] = ACTIONS(2689), - [aux_sym_permit_remote_open_token1] = ACTIONS(2689), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2689), - [aux_sym_port_token1] = ACTIONS(2689), - [aux_sym_preferred_authentications_token1] = ACTIONS(2689), - [aux_sym_protocol_token1] = ACTIONS(2689), - [aux_sym_proxy_command_token1] = ACTIONS(2689), - [aux_sym_proxy_jump_token1] = ACTIONS(2689), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2689), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2689), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2689), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2689), - [aux_sym_rekey_limit_token1] = ACTIONS(2689), - [aux_sym_remote_command_token1] = ACTIONS(2689), - [aux_sym_remote_forward_token1] = ACTIONS(2689), - [aux_sym_request_tty_token1] = ACTIONS(2689), - [aux_sym_required_rsa_size_token1] = ACTIONS(2689), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2689), - [aux_sym_security_key_provider_token1] = ACTIONS(2689), - [aux_sym_send_env_token1] = ACTIONS(2689), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2689), - [aux_sym_server_alive_interval_token1] = ACTIONS(2689), - [aux_sym_session_type_token1] = ACTIONS(2689), - [aux_sym_set_env_token1] = ACTIONS(2689), - [aux_sym_stdin_null_token1] = ACTIONS(2689), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2689), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2689), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2689), - [aux_sym_syslog_facility_token1] = ACTIONS(2689), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2689), - [aux_sym_keep_alive_token1] = ACTIONS(2689), - [aux_sym_tunnel_token1] = ACTIONS(2691), - [aux_sym_tunnel_device_token1] = ACTIONS(2689), - [aux_sym_update_host_keys_token1] = ACTIONS(2689), - [aux_sym_use_keychain_token1] = ACTIONS(2689), - [aux_sym_use_roaming_token1] = ACTIONS(2689), - [aux_sym_user_token1] = ACTIONS(2691), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2689), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2689), - [aux_sym_visual_host_key_token1] = ACTIONS(2689), - [aux_sym_xauth_location_token1] = ACTIONS(2689), + [ts_builtin_sym_end] = ACTIONS(2696), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2698), + [anon_sym_DQUOTE] = ACTIONS(2700), + [aux_sym_match_token1] = ACTIONS(2696), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2696), + [aux_sym_address_family_token1] = ACTIONS(2696), + [aux_sym_batch_mode_token1] = ACTIONS(2696), + [aux_sym_bind_address_token1] = ACTIONS(2696), + [aux_sym_bind_interface_token1] = ACTIONS(2696), + [aux_sym_canonical_domains_token1] = ACTIONS(2696), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2696), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2696), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2696), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2696), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2696), + [aux_sym_certificate_file_token1] = ACTIONS(2696), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2696), + [aux_sym_check_host_ip_token1] = ACTIONS(2696), + [aux_sym_ciphers_token1] = ACTIONS(2696), + [aux_sym_cipher_token1] = ACTIONS(2698), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2696), + [aux_sym_compression_token1] = ACTIONS(2696), + [aux_sym_connection_attempts_token1] = ACTIONS(2696), + [aux_sym_connect_timeout_token1] = ACTIONS(2696), + [aux_sym_control_master_token1] = ACTIONS(2696), + [aux_sym_control_path_token1] = ACTIONS(2696), + [aux_sym_control_persist_token1] = ACTIONS(2696), + [aux_sym_dynamic_forward_token1] = ACTIONS(2696), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2696), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2696), + [aux_sym_escape_char_token1] = ACTIONS(2696), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2696), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2696), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2696), + [aux_sym_forward_agent_token1] = ACTIONS(2696), + [aux_sym_forward_x11_token1] = ACTIONS(2698), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2696), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2696), + [aux_sym_gateway_ports_token1] = ACTIONS(2696), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2696), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2696), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2696), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2696), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2696), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2696), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2696), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2696), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2696), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2696), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2696), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2696), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2696), + [aux_sym_host_key_alias_token1] = ACTIONS(2696), + [aux_sym_hostname_token1] = ACTIONS(2696), + [aux_sym_identities_only_token1] = ACTIONS(2696), + [aux_sym_identity_agent_token1] = ACTIONS(2696), + [aux_sym_identity_file_token1] = ACTIONS(2696), + [aux_sym_ignore_unknown_token1] = ACTIONS(2696), + [aux_sym_include_token1] = ACTIONS(2696), + [aux_sym_ip_qos_token1] = ACTIONS(2696), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2696), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2696), + [aux_sym_kex_algorithms_token1] = ACTIONS(2696), + [aux_sym_known_hosts_command_token1] = ACTIONS(2696), + [aux_sym_local_command_token1] = ACTIONS(2696), + [aux_sym_local_forward_token1] = ACTIONS(2696), + [aux_sym_log_level_token1] = ACTIONS(2696), + [aux_sym_log_verbose_token1] = ACTIONS(2696), + [aux_sym_macs_token1] = ACTIONS(2696), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2696), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2696), + [aux_sym_password_authentication_token1] = ACTIONS(2696), + [aux_sym_permit_local_command_token1] = ACTIONS(2696), + [aux_sym_permit_remote_open_token1] = ACTIONS(2696), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2696), + [aux_sym_port_token1] = ACTIONS(2696), + [aux_sym_preferred_authentications_token1] = ACTIONS(2696), + [aux_sym_protocol_token1] = ACTIONS(2696), + [aux_sym_proxy_command_token1] = ACTIONS(2696), + [aux_sym_proxy_jump_token1] = ACTIONS(2696), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2696), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2696), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2696), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2696), + [aux_sym_rekey_limit_token1] = ACTIONS(2696), + [aux_sym_remote_command_token1] = ACTIONS(2696), + [aux_sym_remote_forward_token1] = ACTIONS(2696), + [aux_sym_request_tty_token1] = ACTIONS(2696), + [aux_sym_required_rsa_size_token1] = ACTIONS(2696), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2696), + [aux_sym_security_key_provider_token1] = ACTIONS(2696), + [aux_sym_send_env_token1] = ACTIONS(2696), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2696), + [aux_sym_server_alive_interval_token1] = ACTIONS(2696), + [aux_sym_session_type_token1] = ACTIONS(2696), + [aux_sym_set_env_token1] = ACTIONS(2696), + [aux_sym_stdin_null_token1] = ACTIONS(2696), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2696), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2696), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2696), + [aux_sym_syslog_facility_token1] = ACTIONS(2696), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2696), + [aux_sym_keep_alive_token1] = ACTIONS(2696), + [aux_sym_tunnel_token1] = ACTIONS(2698), + [aux_sym_tunnel_device_token1] = ACTIONS(2696), + [aux_sym_update_host_keys_token1] = ACTIONS(2696), + [aux_sym_use_keychain_token1] = ACTIONS(2696), + [aux_sym_use_roaming_token1] = ACTIONS(2696), + [aux_sym_user_token1] = ACTIONS(2698), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2696), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2696), + [aux_sym_visual_host_key_token1] = ACTIONS(2696), + [aux_sym_xauth_location_token1] = ACTIONS(2696), }, [387] = { - [ts_builtin_sym_end] = ACTIONS(2695), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2699), - [aux_sym_match_token1] = ACTIONS(2695), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2695), - [aux_sym_address_family_token1] = ACTIONS(2695), - [aux_sym_batch_mode_token1] = ACTIONS(2695), - [aux_sym_bind_address_token1] = ACTIONS(2695), - [aux_sym_bind_interface_token1] = ACTIONS(2695), - [aux_sym_canonical_domains_token1] = ACTIONS(2695), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2695), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2695), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2695), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2695), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2695), - [aux_sym_certificate_file_token1] = ACTIONS(2695), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2695), - [aux_sym_check_host_ip_token1] = ACTIONS(2695), - [aux_sym_ciphers_token1] = ACTIONS(2695), - [aux_sym_cipher_token1] = ACTIONS(2697), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2695), - [aux_sym_compression_token1] = ACTIONS(2695), - [aux_sym_connection_attempts_token1] = ACTIONS(2695), - [aux_sym_connect_timeout_token1] = ACTIONS(2695), - [aux_sym_control_master_token1] = ACTIONS(2695), - [aux_sym_control_path_token1] = ACTIONS(2695), - [aux_sym_control_persist_token1] = ACTIONS(2695), - [aux_sym_dynamic_forward_token1] = ACTIONS(2695), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2695), - [aux_sym_escape_char_token1] = ACTIONS(2695), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2695), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2695), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2695), - [aux_sym_forward_agent_token1] = ACTIONS(2695), - [aux_sym_forward_x11_token1] = ACTIONS(2697), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2695), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2695), - [aux_sym_gateway_ports_token1] = ACTIONS(2695), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2695), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2695), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2695), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2695), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2695), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2695), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2695), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2695), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2695), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2695), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2695), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2695), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2695), - [aux_sym_host_key_alias_token1] = ACTIONS(2695), - [aux_sym_hostname_token1] = ACTIONS(2695), - [aux_sym_identities_only_token1] = ACTIONS(2695), - [aux_sym_identity_agent_token1] = ACTIONS(2695), - [aux_sym_identity_file_token1] = ACTIONS(2695), - [aux_sym_ignore_unknown_token1] = ACTIONS(2695), - [aux_sym_include_token1] = ACTIONS(2695), - [aux_sym_ip_qos_token1] = ACTIONS(2695), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2695), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2695), - [aux_sym_kex_algorithms_token1] = ACTIONS(2695), - [aux_sym_known_hosts_command_token1] = ACTIONS(2695), - [aux_sym_local_command_token1] = ACTIONS(2695), - [aux_sym_local_forward_token1] = ACTIONS(2695), - [aux_sym_log_level_token1] = ACTIONS(2695), - [aux_sym_log_verbose_token1] = ACTIONS(2695), - [aux_sym_macs_token1] = ACTIONS(2695), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2695), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2695), - [aux_sym_password_authentication_token1] = ACTIONS(2695), - [aux_sym_permit_local_command_token1] = ACTIONS(2695), - [aux_sym_permit_remote_open_token1] = ACTIONS(2695), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2695), - [aux_sym_port_token1] = ACTIONS(2695), - [aux_sym_preferred_authentications_token1] = ACTIONS(2695), - [aux_sym_protocol_token1] = ACTIONS(2695), - [aux_sym_proxy_command_token1] = ACTIONS(2695), - [aux_sym_proxy_jump_token1] = ACTIONS(2695), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2695), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2695), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2695), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2695), - [aux_sym_rekey_limit_token1] = ACTIONS(2695), - [aux_sym_remote_command_token1] = ACTIONS(2695), - [aux_sym_remote_forward_token1] = ACTIONS(2695), - [aux_sym_request_tty_token1] = ACTIONS(2695), - [aux_sym_required_rsa_size_token1] = ACTIONS(2695), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2695), - [aux_sym_security_key_provider_token1] = ACTIONS(2695), - [aux_sym_send_env_token1] = ACTIONS(2695), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2695), - [aux_sym_server_alive_interval_token1] = ACTIONS(2695), - [aux_sym_session_type_token1] = ACTIONS(2695), - [aux_sym_set_env_token1] = ACTIONS(2695), - [aux_sym_stdin_null_token1] = ACTIONS(2695), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2695), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2695), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2695), - [aux_sym_syslog_facility_token1] = ACTIONS(2695), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2695), - [aux_sym_keep_alive_token1] = ACTIONS(2695), - [aux_sym_tunnel_token1] = ACTIONS(2697), - [aux_sym_tunnel_device_token1] = ACTIONS(2695), - [aux_sym_update_host_keys_token1] = ACTIONS(2695), - [aux_sym_use_keychain_token1] = ACTIONS(2695), - [aux_sym_use_roaming_token1] = ACTIONS(2695), - [aux_sym_user_token1] = ACTIONS(2697), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2695), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2695), - [aux_sym_visual_host_key_token1] = ACTIONS(2695), - [aux_sym_xauth_location_token1] = ACTIONS(2695), + [ts_builtin_sym_end] = ACTIONS(2702), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2704), + [anon_sym_DQUOTE] = ACTIONS(2702), + [aux_sym_match_token1] = ACTIONS(2702), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2702), + [aux_sym_address_family_token1] = ACTIONS(2702), + [aux_sym_batch_mode_token1] = ACTIONS(2702), + [aux_sym_bind_address_token1] = ACTIONS(2702), + [aux_sym_bind_interface_token1] = ACTIONS(2702), + [aux_sym_canonical_domains_token1] = ACTIONS(2702), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2702), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2702), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2702), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2702), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2702), + [aux_sym_certificate_file_token1] = ACTIONS(2702), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2702), + [aux_sym_check_host_ip_token1] = ACTIONS(2702), + [aux_sym_ciphers_token1] = ACTIONS(2702), + [aux_sym_cipher_token1] = ACTIONS(2704), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2702), + [aux_sym_compression_token1] = ACTIONS(2702), + [aux_sym_connection_attempts_token1] = ACTIONS(2702), + [aux_sym_connect_timeout_token1] = ACTIONS(2702), + [aux_sym_control_master_token1] = ACTIONS(2702), + [aux_sym_control_path_token1] = ACTIONS(2702), + [aux_sym_control_persist_token1] = ACTIONS(2702), + [aux_sym_dynamic_forward_token1] = ACTIONS(2702), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2702), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2702), + [aux_sym_escape_char_token1] = ACTIONS(2702), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2702), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2702), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2702), + [aux_sym_forward_agent_token1] = ACTIONS(2702), + [aux_sym_forward_x11_token1] = ACTIONS(2704), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2702), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2702), + [aux_sym_gateway_ports_token1] = ACTIONS(2702), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2702), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2702), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2702), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2702), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2702), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2702), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2702), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2702), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2702), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2702), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2702), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2702), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2702), + [aux_sym_host_key_alias_token1] = ACTIONS(2702), + [aux_sym_hostname_token1] = ACTIONS(2702), + [aux_sym_identities_only_token1] = ACTIONS(2702), + [aux_sym_identity_agent_token1] = ACTIONS(2702), + [aux_sym_identity_file_token1] = ACTIONS(2702), + [aux_sym_ignore_unknown_token1] = ACTIONS(2702), + [aux_sym_include_token1] = ACTIONS(2702), + [aux_sym_ip_qos_token1] = ACTIONS(2702), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2702), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2702), + [aux_sym_kex_algorithms_token1] = ACTIONS(2702), + [aux_sym_known_hosts_command_token1] = ACTIONS(2702), + [aux_sym_local_command_token1] = ACTIONS(2702), + [aux_sym_local_forward_token1] = ACTIONS(2702), + [aux_sym_log_level_token1] = ACTIONS(2702), + [aux_sym_log_verbose_token1] = ACTIONS(2702), + [aux_sym_macs_token1] = ACTIONS(2702), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2702), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2702), + [aux_sym_password_authentication_token1] = ACTIONS(2702), + [aux_sym_permit_local_command_token1] = ACTIONS(2702), + [aux_sym_permit_remote_open_token1] = ACTIONS(2702), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2702), + [aux_sym_port_token1] = ACTIONS(2702), + [aux_sym_preferred_authentications_token1] = ACTIONS(2702), + [aux_sym_protocol_token1] = ACTIONS(2702), + [aux_sym_proxy_command_token1] = ACTIONS(2702), + [aux_sym_proxy_jump_token1] = ACTIONS(2702), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2702), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2702), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2702), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2702), + [aux_sym_rekey_limit_token1] = ACTIONS(2702), + [aux_sym_remote_command_token1] = ACTIONS(2702), + [aux_sym_remote_forward_token1] = ACTIONS(2702), + [aux_sym_request_tty_token1] = ACTIONS(2702), + [aux_sym_required_rsa_size_token1] = ACTIONS(2702), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2702), + [aux_sym_security_key_provider_token1] = ACTIONS(2702), + [aux_sym_send_env_token1] = ACTIONS(2702), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2702), + [aux_sym_server_alive_interval_token1] = ACTIONS(2702), + [aux_sym_session_type_token1] = ACTIONS(2702), + [aux_sym_set_env_token1] = ACTIONS(2702), + [aux_sym_stdin_null_token1] = ACTIONS(2702), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2702), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2702), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2702), + [aux_sym_syslog_facility_token1] = ACTIONS(2702), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2702), + [aux_sym_keep_alive_token1] = ACTIONS(2702), + [aux_sym_tunnel_token1] = ACTIONS(2704), + [aux_sym_tunnel_device_token1] = ACTIONS(2702), + [aux_sym_update_host_keys_token1] = ACTIONS(2702), + [aux_sym_use_keychain_token1] = ACTIONS(2702), + [aux_sym_use_roaming_token1] = ACTIONS(2702), + [aux_sym_user_token1] = ACTIONS(2704), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2702), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2702), + [aux_sym_visual_host_key_token1] = ACTIONS(2702), + [aux_sym_xauth_location_token1] = ACTIONS(2702), }, [388] = { - [ts_builtin_sym_end] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2703), - [anon_sym_DQUOTE] = ACTIONS(2701), - [aux_sym_match_token1] = ACTIONS(2701), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2701), - [aux_sym_address_family_token1] = ACTIONS(2701), - [aux_sym_batch_mode_token1] = ACTIONS(2701), - [aux_sym_bind_address_token1] = ACTIONS(2701), - [aux_sym_bind_interface_token1] = ACTIONS(2701), - [aux_sym_canonical_domains_token1] = ACTIONS(2701), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2701), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2701), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2701), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2701), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2701), - [aux_sym_certificate_file_token1] = ACTIONS(2701), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2701), - [aux_sym_check_host_ip_token1] = ACTIONS(2701), - [aux_sym_ciphers_token1] = ACTIONS(2701), - [aux_sym_cipher_token1] = ACTIONS(2703), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2701), - [aux_sym_compression_token1] = ACTIONS(2701), - [aux_sym_connection_attempts_token1] = ACTIONS(2701), - [aux_sym_connect_timeout_token1] = ACTIONS(2701), - [aux_sym_control_master_token1] = ACTIONS(2701), - [aux_sym_control_path_token1] = ACTIONS(2701), - [aux_sym_control_persist_token1] = ACTIONS(2701), - [aux_sym_dynamic_forward_token1] = ACTIONS(2701), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2701), - [aux_sym_escape_char_token1] = ACTIONS(2701), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2701), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2701), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2701), - [aux_sym_forward_agent_token1] = ACTIONS(2701), - [aux_sym_forward_x11_token1] = ACTIONS(2703), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2701), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2701), - [aux_sym_gateway_ports_token1] = ACTIONS(2701), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2701), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2701), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2701), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2701), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2701), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2701), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2701), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2701), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2701), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2701), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2701), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2701), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2701), - [aux_sym_host_key_alias_token1] = ACTIONS(2701), - [aux_sym_hostname_token1] = ACTIONS(2701), - [aux_sym_identities_only_token1] = ACTIONS(2701), - [aux_sym_identity_agent_token1] = ACTIONS(2701), - [aux_sym_identity_file_token1] = ACTIONS(2701), - [aux_sym_ignore_unknown_token1] = ACTIONS(2701), - [aux_sym_include_token1] = ACTIONS(2701), - [aux_sym_ip_qos_token1] = ACTIONS(2701), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2701), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2701), - [aux_sym_kex_algorithms_token1] = ACTIONS(2701), - [aux_sym_known_hosts_command_token1] = ACTIONS(2701), - [aux_sym_local_command_token1] = ACTIONS(2701), - [aux_sym_local_forward_token1] = ACTIONS(2701), - [aux_sym_log_level_token1] = ACTIONS(2701), - [aux_sym_log_verbose_token1] = ACTIONS(2701), - [aux_sym_macs_token1] = ACTIONS(2701), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2701), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2701), - [aux_sym_password_authentication_token1] = ACTIONS(2701), - [aux_sym_permit_local_command_token1] = ACTIONS(2701), - [aux_sym_permit_remote_open_token1] = ACTIONS(2701), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2701), - [aux_sym_port_token1] = ACTIONS(2701), - [aux_sym_preferred_authentications_token1] = ACTIONS(2701), - [aux_sym_protocol_token1] = ACTIONS(2701), - [aux_sym_proxy_command_token1] = ACTIONS(2701), - [aux_sym_proxy_jump_token1] = ACTIONS(2701), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2701), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2701), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2701), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2701), - [aux_sym_rekey_limit_token1] = ACTIONS(2701), - [aux_sym_remote_command_token1] = ACTIONS(2701), - [aux_sym_remote_forward_token1] = ACTIONS(2701), - [aux_sym_request_tty_token1] = ACTIONS(2701), - [aux_sym_required_rsa_size_token1] = ACTIONS(2701), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2701), - [aux_sym_security_key_provider_token1] = ACTIONS(2701), - [aux_sym_send_env_token1] = ACTIONS(2701), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2701), - [aux_sym_server_alive_interval_token1] = ACTIONS(2701), - [aux_sym_session_type_token1] = ACTIONS(2701), - [aux_sym_set_env_token1] = ACTIONS(2701), - [aux_sym_stdin_null_token1] = ACTIONS(2701), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2701), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2701), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2701), - [aux_sym_syslog_facility_token1] = ACTIONS(2701), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2701), - [aux_sym_keep_alive_token1] = ACTIONS(2701), - [aux_sym_tunnel_token1] = ACTIONS(2703), - [aux_sym_tunnel_device_token1] = ACTIONS(2701), - [aux_sym_update_host_keys_token1] = ACTIONS(2701), - [aux_sym_use_keychain_token1] = ACTIONS(2701), - [aux_sym_use_roaming_token1] = ACTIONS(2701), - [aux_sym_user_token1] = ACTIONS(2703), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2701), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2701), - [aux_sym_visual_host_key_token1] = ACTIONS(2701), - [aux_sym_xauth_location_token1] = ACTIONS(2701), + [ts_builtin_sym_end] = ACTIONS(2706), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2710), + [aux_sym_match_token1] = ACTIONS(2706), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2706), + [aux_sym_address_family_token1] = ACTIONS(2706), + [aux_sym_batch_mode_token1] = ACTIONS(2706), + [aux_sym_bind_address_token1] = ACTIONS(2706), + [aux_sym_bind_interface_token1] = ACTIONS(2706), + [aux_sym_canonical_domains_token1] = ACTIONS(2706), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2706), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2706), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2706), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2706), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2706), + [aux_sym_certificate_file_token1] = ACTIONS(2706), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2706), + [aux_sym_check_host_ip_token1] = ACTIONS(2706), + [aux_sym_ciphers_token1] = ACTIONS(2706), + [aux_sym_cipher_token1] = ACTIONS(2708), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2706), + [aux_sym_compression_token1] = ACTIONS(2706), + [aux_sym_connection_attempts_token1] = ACTIONS(2706), + [aux_sym_connect_timeout_token1] = ACTIONS(2706), + [aux_sym_control_master_token1] = ACTIONS(2706), + [aux_sym_control_path_token1] = ACTIONS(2706), + [aux_sym_control_persist_token1] = ACTIONS(2706), + [aux_sym_dynamic_forward_token1] = ACTIONS(2706), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2706), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2706), + [aux_sym_escape_char_token1] = ACTIONS(2706), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2706), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2706), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2706), + [aux_sym_forward_agent_token1] = ACTIONS(2706), + [aux_sym_forward_x11_token1] = ACTIONS(2708), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2706), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2706), + [aux_sym_gateway_ports_token1] = ACTIONS(2706), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2706), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2706), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2706), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2706), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2706), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2706), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2706), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2706), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2706), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2706), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2706), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2706), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2706), + [aux_sym_host_key_alias_token1] = ACTIONS(2706), + [aux_sym_hostname_token1] = ACTIONS(2706), + [aux_sym_identities_only_token1] = ACTIONS(2706), + [aux_sym_identity_agent_token1] = ACTIONS(2706), + [aux_sym_identity_file_token1] = ACTIONS(2706), + [aux_sym_ignore_unknown_token1] = ACTIONS(2706), + [aux_sym_include_token1] = ACTIONS(2706), + [aux_sym_ip_qos_token1] = ACTIONS(2706), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2706), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2706), + [aux_sym_kex_algorithms_token1] = ACTIONS(2706), + [aux_sym_known_hosts_command_token1] = ACTIONS(2706), + [aux_sym_local_command_token1] = ACTIONS(2706), + [aux_sym_local_forward_token1] = ACTIONS(2706), + [aux_sym_log_level_token1] = ACTIONS(2706), + [aux_sym_log_verbose_token1] = ACTIONS(2706), + [aux_sym_macs_token1] = ACTIONS(2706), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2706), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2706), + [aux_sym_password_authentication_token1] = ACTIONS(2706), + [aux_sym_permit_local_command_token1] = ACTIONS(2706), + [aux_sym_permit_remote_open_token1] = ACTIONS(2706), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2706), + [aux_sym_port_token1] = ACTIONS(2706), + [aux_sym_preferred_authentications_token1] = ACTIONS(2706), + [aux_sym_protocol_token1] = ACTIONS(2706), + [aux_sym_proxy_command_token1] = ACTIONS(2706), + [aux_sym_proxy_jump_token1] = ACTIONS(2706), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2706), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2706), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2706), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2706), + [aux_sym_rekey_limit_token1] = ACTIONS(2706), + [aux_sym_remote_command_token1] = ACTIONS(2706), + [aux_sym_remote_forward_token1] = ACTIONS(2706), + [aux_sym_request_tty_token1] = ACTIONS(2706), + [aux_sym_required_rsa_size_token1] = ACTIONS(2706), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2706), + [aux_sym_security_key_provider_token1] = ACTIONS(2706), + [aux_sym_send_env_token1] = ACTIONS(2706), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2706), + [aux_sym_server_alive_interval_token1] = ACTIONS(2706), + [aux_sym_session_type_token1] = ACTIONS(2706), + [aux_sym_set_env_token1] = ACTIONS(2706), + [aux_sym_stdin_null_token1] = ACTIONS(2706), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2706), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2706), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2706), + [aux_sym_syslog_facility_token1] = ACTIONS(2706), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2706), + [aux_sym_keep_alive_token1] = ACTIONS(2706), + [aux_sym_tunnel_token1] = ACTIONS(2708), + [aux_sym_tunnel_device_token1] = ACTIONS(2706), + [aux_sym_update_host_keys_token1] = ACTIONS(2706), + [aux_sym_use_keychain_token1] = ACTIONS(2706), + [aux_sym_use_roaming_token1] = ACTIONS(2706), + [aux_sym_user_token1] = ACTIONS(2708), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2706), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2706), + [aux_sym_visual_host_key_token1] = ACTIONS(2706), + [aux_sym_xauth_location_token1] = ACTIONS(2706), }, [389] = { - [ts_builtin_sym_end] = ACTIONS(2705), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2705), - [aux_sym_match_token1] = ACTIONS(2705), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2705), - [aux_sym_address_family_token1] = ACTIONS(2705), - [aux_sym_batch_mode_token1] = ACTIONS(2705), - [aux_sym_bind_address_token1] = ACTIONS(2705), - [aux_sym_bind_interface_token1] = ACTIONS(2705), - [aux_sym_canonical_domains_token1] = ACTIONS(2705), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2705), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2705), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2705), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2705), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2705), - [aux_sym_certificate_file_token1] = ACTIONS(2705), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2705), - [aux_sym_check_host_ip_token1] = ACTIONS(2705), - [aux_sym_ciphers_token1] = ACTIONS(2705), - [aux_sym_cipher_token1] = ACTIONS(2707), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2705), - [aux_sym_compression_token1] = ACTIONS(2705), - [aux_sym_connection_attempts_token1] = ACTIONS(2705), - [aux_sym_connect_timeout_token1] = ACTIONS(2705), - [aux_sym_control_master_token1] = ACTIONS(2705), - [aux_sym_control_path_token1] = ACTIONS(2705), - [aux_sym_control_persist_token1] = ACTIONS(2705), - [aux_sym_dynamic_forward_token1] = ACTIONS(2705), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2705), - [aux_sym_escape_char_token1] = ACTIONS(2705), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2705), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2705), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2705), - [aux_sym_forward_agent_token1] = ACTIONS(2705), - [aux_sym_forward_x11_token1] = ACTIONS(2707), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2705), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2705), - [aux_sym_gateway_ports_token1] = ACTIONS(2705), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2705), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2705), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2705), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2705), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2705), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2705), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2705), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2705), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2705), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2705), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2705), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2705), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2705), - [aux_sym_host_key_alias_token1] = ACTIONS(2705), - [aux_sym_hostname_token1] = ACTIONS(2705), - [aux_sym_identities_only_token1] = ACTIONS(2705), - [aux_sym_identity_agent_token1] = ACTIONS(2705), - [aux_sym_identity_file_token1] = ACTIONS(2705), - [aux_sym_ignore_unknown_token1] = ACTIONS(2705), - [aux_sym_include_token1] = ACTIONS(2705), - [aux_sym_ip_qos_token1] = ACTIONS(2705), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2705), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2705), - [aux_sym_kex_algorithms_token1] = ACTIONS(2705), - [aux_sym_known_hosts_command_token1] = ACTIONS(2705), - [aux_sym_local_command_token1] = ACTIONS(2705), - [aux_sym_local_forward_token1] = ACTIONS(2705), - [aux_sym_log_level_token1] = ACTIONS(2705), - [aux_sym_log_verbose_token1] = ACTIONS(2705), - [aux_sym_macs_token1] = ACTIONS(2705), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2705), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2705), - [aux_sym_password_authentication_token1] = ACTIONS(2705), - [aux_sym_permit_local_command_token1] = ACTIONS(2705), - [aux_sym_permit_remote_open_token1] = ACTIONS(2705), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2705), - [aux_sym_port_token1] = ACTIONS(2705), - [aux_sym_preferred_authentications_token1] = ACTIONS(2705), - [aux_sym_protocol_token1] = ACTIONS(2705), - [aux_sym_proxy_command_token1] = ACTIONS(2705), - [aux_sym_proxy_jump_token1] = ACTIONS(2705), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2705), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2705), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2705), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2705), - [aux_sym_rekey_limit_token1] = ACTIONS(2705), - [aux_sym_remote_command_token1] = ACTIONS(2705), - [aux_sym_remote_forward_token1] = ACTIONS(2705), - [aux_sym_request_tty_token1] = ACTIONS(2705), - [aux_sym_required_rsa_size_token1] = ACTIONS(2705), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2705), - [aux_sym_security_key_provider_token1] = ACTIONS(2705), - [aux_sym_send_env_token1] = ACTIONS(2705), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2705), - [aux_sym_server_alive_interval_token1] = ACTIONS(2705), - [aux_sym_session_type_token1] = ACTIONS(2705), - [aux_sym_set_env_token1] = ACTIONS(2705), - [aux_sym_stdin_null_token1] = ACTIONS(2705), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2705), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2705), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2705), - [aux_sym_syslog_facility_token1] = ACTIONS(2705), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2705), - [aux_sym_keep_alive_token1] = ACTIONS(2705), - [aux_sym_tunnel_token1] = ACTIONS(2707), - [aux_sym_tunnel_device_token1] = ACTIONS(2705), - [aux_sym_update_host_keys_token1] = ACTIONS(2705), - [aux_sym_use_keychain_token1] = ACTIONS(2705), - [aux_sym_use_roaming_token1] = ACTIONS(2705), - [aux_sym_user_token1] = ACTIONS(2707), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2705), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2705), - [aux_sym_visual_host_key_token1] = ACTIONS(2705), - [aux_sym_xauth_location_token1] = ACTIONS(2705), + [ts_builtin_sym_end] = ACTIONS(2712), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2714), + [anon_sym_DQUOTE] = ACTIONS(2716), + [aux_sym_match_token1] = ACTIONS(2712), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2712), + [aux_sym_address_family_token1] = ACTIONS(2712), + [aux_sym_batch_mode_token1] = ACTIONS(2712), + [aux_sym_bind_address_token1] = ACTIONS(2712), + [aux_sym_bind_interface_token1] = ACTIONS(2712), + [aux_sym_canonical_domains_token1] = ACTIONS(2712), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2712), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2712), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2712), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2712), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2712), + [aux_sym_certificate_file_token1] = ACTIONS(2712), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2712), + [aux_sym_check_host_ip_token1] = ACTIONS(2712), + [aux_sym_ciphers_token1] = ACTIONS(2712), + [aux_sym_cipher_token1] = ACTIONS(2714), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2712), + [aux_sym_compression_token1] = ACTIONS(2712), + [aux_sym_connection_attempts_token1] = ACTIONS(2712), + [aux_sym_connect_timeout_token1] = ACTIONS(2712), + [aux_sym_control_master_token1] = ACTIONS(2712), + [aux_sym_control_path_token1] = ACTIONS(2712), + [aux_sym_control_persist_token1] = ACTIONS(2712), + [aux_sym_dynamic_forward_token1] = ACTIONS(2712), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2712), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2712), + [aux_sym_escape_char_token1] = ACTIONS(2712), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2712), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2712), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2712), + [aux_sym_forward_agent_token1] = ACTIONS(2712), + [aux_sym_forward_x11_token1] = ACTIONS(2714), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2712), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2712), + [aux_sym_gateway_ports_token1] = ACTIONS(2712), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2712), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2712), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2712), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2712), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2712), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2712), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2712), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2712), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2712), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2712), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2712), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2712), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2712), + [aux_sym_host_key_alias_token1] = ACTIONS(2712), + [aux_sym_hostname_token1] = ACTIONS(2712), + [aux_sym_identities_only_token1] = ACTIONS(2712), + [aux_sym_identity_agent_token1] = ACTIONS(2712), + [aux_sym_identity_file_token1] = ACTIONS(2712), + [aux_sym_ignore_unknown_token1] = ACTIONS(2712), + [aux_sym_include_token1] = ACTIONS(2712), + [aux_sym_ip_qos_token1] = ACTIONS(2712), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2712), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2712), + [aux_sym_kex_algorithms_token1] = ACTIONS(2712), + [aux_sym_known_hosts_command_token1] = ACTIONS(2712), + [aux_sym_local_command_token1] = ACTIONS(2712), + [aux_sym_local_forward_token1] = ACTIONS(2712), + [aux_sym_log_level_token1] = ACTIONS(2712), + [aux_sym_log_verbose_token1] = ACTIONS(2712), + [aux_sym_macs_token1] = ACTIONS(2712), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2712), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2712), + [aux_sym_password_authentication_token1] = ACTIONS(2712), + [aux_sym_permit_local_command_token1] = ACTIONS(2712), + [aux_sym_permit_remote_open_token1] = ACTIONS(2712), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2712), + [aux_sym_port_token1] = ACTIONS(2712), + [aux_sym_preferred_authentications_token1] = ACTIONS(2712), + [aux_sym_protocol_token1] = ACTIONS(2712), + [aux_sym_proxy_command_token1] = ACTIONS(2712), + [aux_sym_proxy_jump_token1] = ACTIONS(2712), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2712), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2712), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2712), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2712), + [aux_sym_rekey_limit_token1] = ACTIONS(2712), + [aux_sym_remote_command_token1] = ACTIONS(2712), + [aux_sym_remote_forward_token1] = ACTIONS(2712), + [aux_sym_request_tty_token1] = ACTIONS(2712), + [aux_sym_required_rsa_size_token1] = ACTIONS(2712), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2712), + [aux_sym_security_key_provider_token1] = ACTIONS(2712), + [aux_sym_send_env_token1] = ACTIONS(2712), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2712), + [aux_sym_server_alive_interval_token1] = ACTIONS(2712), + [aux_sym_session_type_token1] = ACTIONS(2712), + [aux_sym_set_env_token1] = ACTIONS(2712), + [aux_sym_stdin_null_token1] = ACTIONS(2712), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2712), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2712), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2712), + [aux_sym_syslog_facility_token1] = ACTIONS(2712), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2712), + [aux_sym_keep_alive_token1] = ACTIONS(2712), + [aux_sym_tunnel_token1] = ACTIONS(2714), + [aux_sym_tunnel_device_token1] = ACTIONS(2712), + [aux_sym_update_host_keys_token1] = ACTIONS(2712), + [aux_sym_use_keychain_token1] = ACTIONS(2712), + [aux_sym_use_roaming_token1] = ACTIONS(2712), + [aux_sym_user_token1] = ACTIONS(2714), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2712), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2712), + [aux_sym_visual_host_key_token1] = ACTIONS(2712), + [aux_sym_xauth_location_token1] = ACTIONS(2712), }, [390] = { - [ts_builtin_sym_end] = ACTIONS(2709), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2711), - [anon_sym_DQUOTE] = ACTIONS(2713), - [aux_sym_match_token1] = ACTIONS(2709), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2709), - [aux_sym_address_family_token1] = ACTIONS(2709), - [aux_sym_batch_mode_token1] = ACTIONS(2709), - [aux_sym_bind_address_token1] = ACTIONS(2709), - [aux_sym_bind_interface_token1] = ACTIONS(2709), - [aux_sym_canonical_domains_token1] = ACTIONS(2709), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2709), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2709), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2709), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2709), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2709), - [aux_sym_certificate_file_token1] = ACTIONS(2709), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2709), - [aux_sym_check_host_ip_token1] = ACTIONS(2709), - [aux_sym_ciphers_token1] = ACTIONS(2709), - [aux_sym_cipher_token1] = ACTIONS(2711), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2709), - [aux_sym_compression_token1] = ACTIONS(2709), - [aux_sym_connection_attempts_token1] = ACTIONS(2709), - [aux_sym_connect_timeout_token1] = ACTIONS(2709), - [aux_sym_control_master_token1] = ACTIONS(2709), - [aux_sym_control_path_token1] = ACTIONS(2709), - [aux_sym_control_persist_token1] = ACTIONS(2709), - [aux_sym_dynamic_forward_token1] = ACTIONS(2709), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2709), - [aux_sym_escape_char_token1] = ACTIONS(2709), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2709), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2709), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2709), - [aux_sym_forward_agent_token1] = ACTIONS(2709), - [aux_sym_forward_x11_token1] = ACTIONS(2711), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2709), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2709), - [aux_sym_gateway_ports_token1] = ACTIONS(2709), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2709), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2709), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2709), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2709), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2709), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2709), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2709), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2709), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2709), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2709), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2709), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2709), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2709), - [aux_sym_host_key_alias_token1] = ACTIONS(2709), - [aux_sym_hostname_token1] = ACTIONS(2709), - [aux_sym_identities_only_token1] = ACTIONS(2709), - [aux_sym_identity_agent_token1] = ACTIONS(2709), - [aux_sym_identity_file_token1] = ACTIONS(2709), - [aux_sym_ignore_unknown_token1] = ACTIONS(2709), - [aux_sym_include_token1] = ACTIONS(2709), - [aux_sym_ip_qos_token1] = ACTIONS(2709), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2709), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2709), - [aux_sym_kex_algorithms_token1] = ACTIONS(2709), - [aux_sym_known_hosts_command_token1] = ACTIONS(2709), - [aux_sym_local_command_token1] = ACTIONS(2709), - [aux_sym_local_forward_token1] = ACTIONS(2709), - [aux_sym_log_level_token1] = ACTIONS(2709), - [aux_sym_log_verbose_token1] = ACTIONS(2709), - [aux_sym_macs_token1] = ACTIONS(2709), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2709), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2709), - [aux_sym_password_authentication_token1] = ACTIONS(2709), - [aux_sym_permit_local_command_token1] = ACTIONS(2709), - [aux_sym_permit_remote_open_token1] = ACTIONS(2709), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2709), - [aux_sym_port_token1] = ACTIONS(2709), - [aux_sym_preferred_authentications_token1] = ACTIONS(2709), - [aux_sym_protocol_token1] = ACTIONS(2709), - [aux_sym_proxy_command_token1] = ACTIONS(2709), - [aux_sym_proxy_jump_token1] = ACTIONS(2709), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2709), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2709), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2709), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2709), - [aux_sym_rekey_limit_token1] = ACTIONS(2709), - [aux_sym_remote_command_token1] = ACTIONS(2709), - [aux_sym_remote_forward_token1] = ACTIONS(2709), - [aux_sym_request_tty_token1] = ACTIONS(2709), - [aux_sym_required_rsa_size_token1] = ACTIONS(2709), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2709), - [aux_sym_security_key_provider_token1] = ACTIONS(2709), - [aux_sym_send_env_token1] = ACTIONS(2709), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2709), - [aux_sym_server_alive_interval_token1] = ACTIONS(2709), - [aux_sym_session_type_token1] = ACTIONS(2709), - [aux_sym_set_env_token1] = ACTIONS(2709), - [aux_sym_stdin_null_token1] = ACTIONS(2709), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2709), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2709), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2709), - [aux_sym_syslog_facility_token1] = ACTIONS(2709), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2709), - [aux_sym_keep_alive_token1] = ACTIONS(2709), - [aux_sym_tunnel_token1] = ACTIONS(2711), - [aux_sym_tunnel_device_token1] = ACTIONS(2709), - [aux_sym_update_host_keys_token1] = ACTIONS(2709), - [aux_sym_use_keychain_token1] = ACTIONS(2709), - [aux_sym_use_roaming_token1] = ACTIONS(2709), - [aux_sym_user_token1] = ACTIONS(2711), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2709), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2709), - [aux_sym_visual_host_key_token1] = ACTIONS(2709), - [aux_sym_xauth_location_token1] = ACTIONS(2709), + [ts_builtin_sym_end] = ACTIONS(2718), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2720), + [anon_sym_DQUOTE] = ACTIONS(2718), + [aux_sym_match_token1] = ACTIONS(2718), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2718), + [aux_sym_address_family_token1] = ACTIONS(2718), + [aux_sym_batch_mode_token1] = ACTIONS(2718), + [aux_sym_bind_address_token1] = ACTIONS(2718), + [aux_sym_bind_interface_token1] = ACTIONS(2718), + [aux_sym_canonical_domains_token1] = ACTIONS(2718), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2718), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2718), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2718), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2718), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2718), + [aux_sym_certificate_file_token1] = ACTIONS(2718), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2718), + [aux_sym_check_host_ip_token1] = ACTIONS(2718), + [aux_sym_ciphers_token1] = ACTIONS(2718), + [aux_sym_cipher_token1] = ACTIONS(2720), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2718), + [aux_sym_compression_token1] = ACTIONS(2718), + [aux_sym_connection_attempts_token1] = ACTIONS(2718), + [aux_sym_connect_timeout_token1] = ACTIONS(2718), + [aux_sym_control_master_token1] = ACTIONS(2718), + [aux_sym_control_path_token1] = ACTIONS(2718), + [aux_sym_control_persist_token1] = ACTIONS(2718), + [aux_sym_dynamic_forward_token1] = ACTIONS(2718), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2718), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2718), + [aux_sym_escape_char_token1] = ACTIONS(2718), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2718), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2718), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2718), + [aux_sym_forward_agent_token1] = ACTIONS(2718), + [aux_sym_forward_x11_token1] = ACTIONS(2720), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2718), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2718), + [aux_sym_gateway_ports_token1] = ACTIONS(2718), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2718), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2718), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2718), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2718), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2718), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2718), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2718), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2718), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2718), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2718), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2718), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2718), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2718), + [aux_sym_host_key_alias_token1] = ACTIONS(2718), + [aux_sym_hostname_token1] = ACTIONS(2718), + [aux_sym_identities_only_token1] = ACTIONS(2718), + [aux_sym_identity_agent_token1] = ACTIONS(2718), + [aux_sym_identity_file_token1] = ACTIONS(2718), + [aux_sym_ignore_unknown_token1] = ACTIONS(2718), + [aux_sym_include_token1] = ACTIONS(2718), + [aux_sym_ip_qos_token1] = ACTIONS(2718), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2718), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2718), + [aux_sym_kex_algorithms_token1] = ACTIONS(2718), + [aux_sym_known_hosts_command_token1] = ACTIONS(2718), + [aux_sym_local_command_token1] = ACTIONS(2718), + [aux_sym_local_forward_token1] = ACTIONS(2718), + [aux_sym_log_level_token1] = ACTIONS(2718), + [aux_sym_log_verbose_token1] = ACTIONS(2718), + [aux_sym_macs_token1] = ACTIONS(2718), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2718), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2718), + [aux_sym_password_authentication_token1] = ACTIONS(2718), + [aux_sym_permit_local_command_token1] = ACTIONS(2718), + [aux_sym_permit_remote_open_token1] = ACTIONS(2718), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2718), + [aux_sym_port_token1] = ACTIONS(2718), + [aux_sym_preferred_authentications_token1] = ACTIONS(2718), + [aux_sym_protocol_token1] = ACTIONS(2718), + [aux_sym_proxy_command_token1] = ACTIONS(2718), + [aux_sym_proxy_jump_token1] = ACTIONS(2718), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2718), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2718), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2718), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2718), + [aux_sym_rekey_limit_token1] = ACTIONS(2718), + [aux_sym_remote_command_token1] = ACTIONS(2718), + [aux_sym_remote_forward_token1] = ACTIONS(2718), + [aux_sym_request_tty_token1] = ACTIONS(2718), + [aux_sym_required_rsa_size_token1] = ACTIONS(2718), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2718), + [aux_sym_security_key_provider_token1] = ACTIONS(2718), + [aux_sym_send_env_token1] = ACTIONS(2718), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2718), + [aux_sym_server_alive_interval_token1] = ACTIONS(2718), + [aux_sym_session_type_token1] = ACTIONS(2718), + [aux_sym_set_env_token1] = ACTIONS(2718), + [aux_sym_stdin_null_token1] = ACTIONS(2718), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2718), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2718), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2718), + [aux_sym_syslog_facility_token1] = ACTIONS(2718), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2718), + [aux_sym_keep_alive_token1] = ACTIONS(2718), + [aux_sym_tunnel_token1] = ACTIONS(2720), + [aux_sym_tunnel_device_token1] = ACTIONS(2718), + [aux_sym_update_host_keys_token1] = ACTIONS(2718), + [aux_sym_use_keychain_token1] = ACTIONS(2718), + [aux_sym_use_roaming_token1] = ACTIONS(2718), + [aux_sym_user_token1] = ACTIONS(2720), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2718), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2718), + [aux_sym_visual_host_key_token1] = ACTIONS(2718), + [aux_sym_xauth_location_token1] = ACTIONS(2718), }, [391] = { - [ts_builtin_sym_end] = ACTIONS(2715), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2717), - [anon_sym_DQUOTE] = ACTIONS(2719), - [aux_sym_match_token1] = ACTIONS(2715), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2715), - [aux_sym_address_family_token1] = ACTIONS(2715), - [aux_sym_batch_mode_token1] = ACTIONS(2715), - [aux_sym_bind_address_token1] = ACTIONS(2715), - [aux_sym_bind_interface_token1] = ACTIONS(2715), - [aux_sym_canonical_domains_token1] = ACTIONS(2715), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2715), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2715), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2715), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2715), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2715), - [aux_sym_certificate_file_token1] = ACTIONS(2715), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2715), - [aux_sym_check_host_ip_token1] = ACTIONS(2715), - [aux_sym_ciphers_token1] = ACTIONS(2715), - [aux_sym_cipher_token1] = ACTIONS(2717), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2715), - [aux_sym_compression_token1] = ACTIONS(2715), - [aux_sym_connection_attempts_token1] = ACTIONS(2715), - [aux_sym_connect_timeout_token1] = ACTIONS(2715), - [aux_sym_control_master_token1] = ACTIONS(2715), - [aux_sym_control_path_token1] = ACTIONS(2715), - [aux_sym_control_persist_token1] = ACTIONS(2715), - [aux_sym_dynamic_forward_token1] = ACTIONS(2715), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2715), - [aux_sym_escape_char_token1] = ACTIONS(2715), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2715), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2715), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2715), - [aux_sym_forward_agent_token1] = ACTIONS(2715), - [aux_sym_forward_x11_token1] = ACTIONS(2717), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2715), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2715), - [aux_sym_gateway_ports_token1] = ACTIONS(2715), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2715), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2715), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2715), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2715), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2715), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2715), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2715), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2715), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2715), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2715), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2715), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2715), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2715), - [aux_sym_host_key_alias_token1] = ACTIONS(2715), - [aux_sym_hostname_token1] = ACTIONS(2715), - [aux_sym_identities_only_token1] = ACTIONS(2715), - [aux_sym_identity_agent_token1] = ACTIONS(2715), - [aux_sym_identity_file_token1] = ACTIONS(2715), - [aux_sym_ignore_unknown_token1] = ACTIONS(2715), - [aux_sym_include_token1] = ACTIONS(2715), - [aux_sym_ip_qos_token1] = ACTIONS(2715), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2715), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2715), - [aux_sym_kex_algorithms_token1] = ACTIONS(2715), - [aux_sym_known_hosts_command_token1] = ACTIONS(2715), - [aux_sym_local_command_token1] = ACTIONS(2715), - [aux_sym_local_forward_token1] = ACTIONS(2715), - [aux_sym_log_level_token1] = ACTIONS(2715), - [aux_sym_log_verbose_token1] = ACTIONS(2715), - [aux_sym_macs_token1] = ACTIONS(2715), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2715), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2715), - [aux_sym_password_authentication_token1] = ACTIONS(2715), - [aux_sym_permit_local_command_token1] = ACTIONS(2715), - [aux_sym_permit_remote_open_token1] = ACTIONS(2715), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2715), - [aux_sym_port_token1] = ACTIONS(2715), - [aux_sym_preferred_authentications_token1] = ACTIONS(2715), - [aux_sym_protocol_token1] = ACTIONS(2715), - [aux_sym_proxy_command_token1] = ACTIONS(2715), - [aux_sym_proxy_jump_token1] = ACTIONS(2715), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2715), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2715), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2715), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2715), - [aux_sym_rekey_limit_token1] = ACTIONS(2715), - [aux_sym_remote_command_token1] = ACTIONS(2715), - [aux_sym_remote_forward_token1] = ACTIONS(2715), - [aux_sym_request_tty_token1] = ACTIONS(2715), - [aux_sym_required_rsa_size_token1] = ACTIONS(2715), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2715), - [aux_sym_security_key_provider_token1] = ACTIONS(2715), - [aux_sym_send_env_token1] = ACTIONS(2715), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2715), - [aux_sym_server_alive_interval_token1] = ACTIONS(2715), - [aux_sym_session_type_token1] = ACTIONS(2715), - [aux_sym_set_env_token1] = ACTIONS(2715), - [aux_sym_stdin_null_token1] = ACTIONS(2715), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2715), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2715), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2715), - [aux_sym_syslog_facility_token1] = ACTIONS(2715), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2715), - [aux_sym_keep_alive_token1] = ACTIONS(2715), - [aux_sym_tunnel_token1] = ACTIONS(2717), - [aux_sym_tunnel_device_token1] = ACTIONS(2715), - [aux_sym_update_host_keys_token1] = ACTIONS(2715), - [aux_sym_use_keychain_token1] = ACTIONS(2715), - [aux_sym_use_roaming_token1] = ACTIONS(2715), - [aux_sym_user_token1] = ACTIONS(2717), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2715), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2715), - [aux_sym_visual_host_key_token1] = ACTIONS(2715), - [aux_sym_xauth_location_token1] = ACTIONS(2715), + [ts_builtin_sym_end] = ACTIONS(2722), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2724), + [anon_sym_DQUOTE] = ACTIONS(2722), + [aux_sym_match_token1] = ACTIONS(2722), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2722), + [aux_sym_address_family_token1] = ACTIONS(2722), + [aux_sym_batch_mode_token1] = ACTIONS(2722), + [aux_sym_bind_address_token1] = ACTIONS(2722), + [aux_sym_bind_interface_token1] = ACTIONS(2722), + [aux_sym_canonical_domains_token1] = ACTIONS(2722), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2722), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2722), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2722), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2722), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2722), + [aux_sym_certificate_file_token1] = ACTIONS(2722), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2722), + [aux_sym_check_host_ip_token1] = ACTIONS(2722), + [aux_sym_ciphers_token1] = ACTIONS(2722), + [aux_sym_cipher_token1] = ACTIONS(2724), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2722), + [aux_sym_compression_token1] = ACTIONS(2722), + [aux_sym_connection_attempts_token1] = ACTIONS(2722), + [aux_sym_connect_timeout_token1] = ACTIONS(2722), + [aux_sym_control_master_token1] = ACTIONS(2722), + [aux_sym_control_path_token1] = ACTIONS(2722), + [aux_sym_control_persist_token1] = ACTIONS(2722), + [aux_sym_dynamic_forward_token1] = ACTIONS(2722), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2722), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2722), + [aux_sym_escape_char_token1] = ACTIONS(2722), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2722), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2722), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2722), + [aux_sym_forward_agent_token1] = ACTIONS(2722), + [aux_sym_forward_x11_token1] = ACTIONS(2724), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2722), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2722), + [aux_sym_gateway_ports_token1] = ACTIONS(2722), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2722), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2722), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2722), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2722), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2722), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2722), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2722), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2722), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2722), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2722), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2722), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2722), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2722), + [aux_sym_host_key_alias_token1] = ACTIONS(2722), + [aux_sym_hostname_token1] = ACTIONS(2722), + [aux_sym_identities_only_token1] = ACTIONS(2722), + [aux_sym_identity_agent_token1] = ACTIONS(2722), + [aux_sym_identity_file_token1] = ACTIONS(2722), + [aux_sym_ignore_unknown_token1] = ACTIONS(2722), + [aux_sym_include_token1] = ACTIONS(2722), + [aux_sym_ip_qos_token1] = ACTIONS(2722), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2722), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2722), + [aux_sym_kex_algorithms_token1] = ACTIONS(2722), + [aux_sym_known_hosts_command_token1] = ACTIONS(2722), + [aux_sym_local_command_token1] = ACTIONS(2722), + [aux_sym_local_forward_token1] = ACTIONS(2722), + [aux_sym_log_level_token1] = ACTIONS(2722), + [aux_sym_log_verbose_token1] = ACTIONS(2722), + [aux_sym_macs_token1] = ACTIONS(2722), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2722), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2722), + [aux_sym_password_authentication_token1] = ACTIONS(2722), + [aux_sym_permit_local_command_token1] = ACTIONS(2722), + [aux_sym_permit_remote_open_token1] = ACTIONS(2722), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2722), + [aux_sym_port_token1] = ACTIONS(2722), + [aux_sym_preferred_authentications_token1] = ACTIONS(2722), + [aux_sym_protocol_token1] = ACTIONS(2722), + [aux_sym_proxy_command_token1] = ACTIONS(2722), + [aux_sym_proxy_jump_token1] = ACTIONS(2722), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2722), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2722), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2722), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2722), + [aux_sym_rekey_limit_token1] = ACTIONS(2722), + [aux_sym_remote_command_token1] = ACTIONS(2722), + [aux_sym_remote_forward_token1] = ACTIONS(2722), + [aux_sym_request_tty_token1] = ACTIONS(2722), + [aux_sym_required_rsa_size_token1] = ACTIONS(2722), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2722), + [aux_sym_security_key_provider_token1] = ACTIONS(2722), + [aux_sym_send_env_token1] = ACTIONS(2722), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2722), + [aux_sym_server_alive_interval_token1] = ACTIONS(2722), + [aux_sym_session_type_token1] = ACTIONS(2722), + [aux_sym_set_env_token1] = ACTIONS(2722), + [aux_sym_stdin_null_token1] = ACTIONS(2722), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2722), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2722), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2722), + [aux_sym_syslog_facility_token1] = ACTIONS(2722), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2722), + [aux_sym_keep_alive_token1] = ACTIONS(2722), + [aux_sym_tunnel_token1] = ACTIONS(2724), + [aux_sym_tunnel_device_token1] = ACTIONS(2722), + [aux_sym_update_host_keys_token1] = ACTIONS(2722), + [aux_sym_use_keychain_token1] = ACTIONS(2722), + [aux_sym_use_roaming_token1] = ACTIONS(2722), + [aux_sym_user_token1] = ACTIONS(2724), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2722), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2722), + [aux_sym_visual_host_key_token1] = ACTIONS(2722), + [aux_sym_xauth_location_token1] = ACTIONS(2722), }, [392] = { - [ts_builtin_sym_end] = ACTIONS(2721), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2723), - [anon_sym_DQUOTE] = ACTIONS(2721), - [aux_sym_match_token1] = ACTIONS(2721), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2721), - [aux_sym_address_family_token1] = ACTIONS(2721), - [aux_sym_batch_mode_token1] = ACTIONS(2721), - [aux_sym_bind_address_token1] = ACTIONS(2721), - [aux_sym_bind_interface_token1] = ACTIONS(2721), - [aux_sym_canonical_domains_token1] = ACTIONS(2721), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2721), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2721), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2721), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2721), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2721), - [aux_sym_certificate_file_token1] = ACTIONS(2721), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2721), - [aux_sym_check_host_ip_token1] = ACTIONS(2721), - [aux_sym_ciphers_token1] = ACTIONS(2721), - [aux_sym_cipher_token1] = ACTIONS(2723), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2721), - [aux_sym_compression_token1] = ACTIONS(2721), - [aux_sym_connection_attempts_token1] = ACTIONS(2721), - [aux_sym_connect_timeout_token1] = ACTIONS(2721), - [aux_sym_control_master_token1] = ACTIONS(2721), - [aux_sym_control_path_token1] = ACTIONS(2721), - [aux_sym_control_persist_token1] = ACTIONS(2721), - [aux_sym_dynamic_forward_token1] = ACTIONS(2721), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2721), - [aux_sym_escape_char_token1] = ACTIONS(2721), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2721), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2721), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2721), - [aux_sym_forward_agent_token1] = ACTIONS(2721), - [aux_sym_forward_x11_token1] = ACTIONS(2723), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2721), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2721), - [aux_sym_gateway_ports_token1] = ACTIONS(2721), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2721), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2721), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2721), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2721), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2721), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2721), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2721), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2721), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2721), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2721), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2721), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2721), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2721), - [aux_sym_host_key_alias_token1] = ACTIONS(2721), - [aux_sym_hostname_token1] = ACTIONS(2721), - [aux_sym_identities_only_token1] = ACTIONS(2721), - [aux_sym_identity_agent_token1] = ACTIONS(2721), - [aux_sym_identity_file_token1] = ACTIONS(2721), - [aux_sym_ignore_unknown_token1] = ACTIONS(2721), - [aux_sym_include_token1] = ACTIONS(2721), - [aux_sym_ip_qos_token1] = ACTIONS(2721), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2721), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2721), - [aux_sym_kex_algorithms_token1] = ACTIONS(2721), - [aux_sym_known_hosts_command_token1] = ACTIONS(2721), - [aux_sym_local_command_token1] = ACTIONS(2721), - [aux_sym_local_forward_token1] = ACTIONS(2721), - [aux_sym_log_level_token1] = ACTIONS(2721), - [aux_sym_log_verbose_token1] = ACTIONS(2721), - [aux_sym_macs_token1] = ACTIONS(2721), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2721), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2721), - [aux_sym_password_authentication_token1] = ACTIONS(2721), - [aux_sym_permit_local_command_token1] = ACTIONS(2721), - [aux_sym_permit_remote_open_token1] = ACTIONS(2721), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2721), - [aux_sym_port_token1] = ACTIONS(2721), - [aux_sym_preferred_authentications_token1] = ACTIONS(2721), - [aux_sym_protocol_token1] = ACTIONS(2721), - [aux_sym_proxy_command_token1] = ACTIONS(2721), - [aux_sym_proxy_jump_token1] = ACTIONS(2721), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2721), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2721), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2721), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2721), - [aux_sym_rekey_limit_token1] = ACTIONS(2721), - [aux_sym_remote_command_token1] = ACTIONS(2721), - [aux_sym_remote_forward_token1] = ACTIONS(2721), - [aux_sym_request_tty_token1] = ACTIONS(2721), - [aux_sym_required_rsa_size_token1] = ACTIONS(2721), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2721), - [aux_sym_security_key_provider_token1] = ACTIONS(2721), - [aux_sym_send_env_token1] = ACTIONS(2721), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2721), - [aux_sym_server_alive_interval_token1] = ACTIONS(2721), - [aux_sym_session_type_token1] = ACTIONS(2721), - [aux_sym_set_env_token1] = ACTIONS(2721), - [aux_sym_stdin_null_token1] = ACTIONS(2721), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2721), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2721), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2721), - [aux_sym_syslog_facility_token1] = ACTIONS(2721), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2721), - [aux_sym_keep_alive_token1] = ACTIONS(2721), - [aux_sym_tunnel_token1] = ACTIONS(2723), - [aux_sym_tunnel_device_token1] = ACTIONS(2721), - [aux_sym_update_host_keys_token1] = ACTIONS(2721), - [aux_sym_use_keychain_token1] = ACTIONS(2721), - [aux_sym_use_roaming_token1] = ACTIONS(2721), - [aux_sym_user_token1] = ACTIONS(2723), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2721), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2721), - [aux_sym_visual_host_key_token1] = ACTIONS(2721), - [aux_sym_xauth_location_token1] = ACTIONS(2721), + [ts_builtin_sym_end] = ACTIONS(2726), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2728), + [anon_sym_DQUOTE] = ACTIONS(2730), + [aux_sym_match_token1] = ACTIONS(2726), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2726), + [aux_sym_address_family_token1] = ACTIONS(2726), + [aux_sym_batch_mode_token1] = ACTIONS(2726), + [aux_sym_bind_address_token1] = ACTIONS(2726), + [aux_sym_bind_interface_token1] = ACTIONS(2726), + [aux_sym_canonical_domains_token1] = ACTIONS(2726), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2726), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2726), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2726), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2726), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2726), + [aux_sym_certificate_file_token1] = ACTIONS(2726), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2726), + [aux_sym_check_host_ip_token1] = ACTIONS(2726), + [aux_sym_ciphers_token1] = ACTIONS(2726), + [aux_sym_cipher_token1] = ACTIONS(2728), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2726), + [aux_sym_compression_token1] = ACTIONS(2726), + [aux_sym_connection_attempts_token1] = ACTIONS(2726), + [aux_sym_connect_timeout_token1] = ACTIONS(2726), + [aux_sym_control_master_token1] = ACTIONS(2726), + [aux_sym_control_path_token1] = ACTIONS(2726), + [aux_sym_control_persist_token1] = ACTIONS(2726), + [aux_sym_dynamic_forward_token1] = ACTIONS(2726), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2726), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2726), + [aux_sym_escape_char_token1] = ACTIONS(2726), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2726), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2726), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2726), + [aux_sym_forward_agent_token1] = ACTIONS(2726), + [aux_sym_forward_x11_token1] = ACTIONS(2728), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2726), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2726), + [aux_sym_gateway_ports_token1] = ACTIONS(2726), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2726), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2726), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2726), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2726), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2726), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2726), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2726), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2726), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2726), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2726), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2726), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2726), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2726), + [aux_sym_host_key_alias_token1] = ACTIONS(2726), + [aux_sym_hostname_token1] = ACTIONS(2726), + [aux_sym_identities_only_token1] = ACTIONS(2726), + [aux_sym_identity_agent_token1] = ACTIONS(2726), + [aux_sym_identity_file_token1] = ACTIONS(2726), + [aux_sym_ignore_unknown_token1] = ACTIONS(2726), + [aux_sym_include_token1] = ACTIONS(2726), + [aux_sym_ip_qos_token1] = ACTIONS(2726), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2726), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2726), + [aux_sym_kex_algorithms_token1] = ACTIONS(2726), + [aux_sym_known_hosts_command_token1] = ACTIONS(2726), + [aux_sym_local_command_token1] = ACTIONS(2726), + [aux_sym_local_forward_token1] = ACTIONS(2726), + [aux_sym_log_level_token1] = ACTIONS(2726), + [aux_sym_log_verbose_token1] = ACTIONS(2726), + [aux_sym_macs_token1] = ACTIONS(2726), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2726), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2726), + [aux_sym_password_authentication_token1] = ACTIONS(2726), + [aux_sym_permit_local_command_token1] = ACTIONS(2726), + [aux_sym_permit_remote_open_token1] = ACTIONS(2726), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2726), + [aux_sym_port_token1] = ACTIONS(2726), + [aux_sym_preferred_authentications_token1] = ACTIONS(2726), + [aux_sym_protocol_token1] = ACTIONS(2726), + [aux_sym_proxy_command_token1] = ACTIONS(2726), + [aux_sym_proxy_jump_token1] = ACTIONS(2726), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2726), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2726), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2726), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2726), + [aux_sym_rekey_limit_token1] = ACTIONS(2726), + [aux_sym_remote_command_token1] = ACTIONS(2726), + [aux_sym_remote_forward_token1] = ACTIONS(2726), + [aux_sym_request_tty_token1] = ACTIONS(2726), + [aux_sym_required_rsa_size_token1] = ACTIONS(2726), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2726), + [aux_sym_security_key_provider_token1] = ACTIONS(2726), + [aux_sym_send_env_token1] = ACTIONS(2726), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2726), + [aux_sym_server_alive_interval_token1] = ACTIONS(2726), + [aux_sym_session_type_token1] = ACTIONS(2726), + [aux_sym_set_env_token1] = ACTIONS(2726), + [aux_sym_stdin_null_token1] = ACTIONS(2726), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2726), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2726), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2726), + [aux_sym_syslog_facility_token1] = ACTIONS(2726), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2726), + [aux_sym_keep_alive_token1] = ACTIONS(2726), + [aux_sym_tunnel_token1] = ACTIONS(2728), + [aux_sym_tunnel_device_token1] = ACTIONS(2726), + [aux_sym_update_host_keys_token1] = ACTIONS(2726), + [aux_sym_use_keychain_token1] = ACTIONS(2726), + [aux_sym_use_roaming_token1] = ACTIONS(2726), + [aux_sym_user_token1] = ACTIONS(2728), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2726), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2726), + [aux_sym_visual_host_key_token1] = ACTIONS(2726), + [aux_sym_xauth_location_token1] = ACTIONS(2726), }, [393] = { - [ts_builtin_sym_end] = ACTIONS(2725), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2727), - [anon_sym_DQUOTE] = ACTIONS(2725), - [aux_sym_match_token1] = ACTIONS(2725), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2725), - [aux_sym_address_family_token1] = ACTIONS(2725), - [aux_sym_batch_mode_token1] = ACTIONS(2725), - [aux_sym_bind_address_token1] = ACTIONS(2725), - [aux_sym_bind_interface_token1] = ACTIONS(2725), - [aux_sym_canonical_domains_token1] = ACTIONS(2725), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2725), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2725), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2725), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2725), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2725), - [aux_sym_certificate_file_token1] = ACTIONS(2725), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2725), - [aux_sym_check_host_ip_token1] = ACTIONS(2725), - [aux_sym_ciphers_token1] = ACTIONS(2725), - [aux_sym_cipher_token1] = ACTIONS(2727), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2725), - [aux_sym_compression_token1] = ACTIONS(2725), - [aux_sym_connection_attempts_token1] = ACTIONS(2725), - [aux_sym_connect_timeout_token1] = ACTIONS(2725), - [aux_sym_control_master_token1] = ACTIONS(2725), - [aux_sym_control_path_token1] = ACTIONS(2725), - [aux_sym_control_persist_token1] = ACTIONS(2725), - [aux_sym_dynamic_forward_token1] = ACTIONS(2725), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2725), - [aux_sym_escape_char_token1] = ACTIONS(2725), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2725), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2725), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2725), - [aux_sym_forward_agent_token1] = ACTIONS(2725), - [aux_sym_forward_x11_token1] = ACTIONS(2727), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2725), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2725), - [aux_sym_gateway_ports_token1] = ACTIONS(2725), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2725), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2725), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2725), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2725), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2725), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2725), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2725), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2725), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2725), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2725), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2725), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2725), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2725), - [aux_sym_host_key_alias_token1] = ACTIONS(2725), - [aux_sym_hostname_token1] = ACTIONS(2725), - [aux_sym_identities_only_token1] = ACTIONS(2725), - [aux_sym_identity_agent_token1] = ACTIONS(2725), - [aux_sym_identity_file_token1] = ACTIONS(2725), - [aux_sym_ignore_unknown_token1] = ACTIONS(2725), - [aux_sym_include_token1] = ACTIONS(2725), - [aux_sym_ip_qos_token1] = ACTIONS(2725), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2725), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2725), - [aux_sym_kex_algorithms_token1] = ACTIONS(2725), - [aux_sym_known_hosts_command_token1] = ACTIONS(2725), - [aux_sym_local_command_token1] = ACTIONS(2725), - [aux_sym_local_forward_token1] = ACTIONS(2725), - [aux_sym_log_level_token1] = ACTIONS(2725), - [aux_sym_log_verbose_token1] = ACTIONS(2725), - [aux_sym_macs_token1] = ACTIONS(2725), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2725), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2725), - [aux_sym_password_authentication_token1] = ACTIONS(2725), - [aux_sym_permit_local_command_token1] = ACTIONS(2725), - [aux_sym_permit_remote_open_token1] = ACTIONS(2725), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2725), - [aux_sym_port_token1] = ACTIONS(2725), - [aux_sym_preferred_authentications_token1] = ACTIONS(2725), - [aux_sym_protocol_token1] = ACTIONS(2725), - [aux_sym_proxy_command_token1] = ACTIONS(2725), - [aux_sym_proxy_jump_token1] = ACTIONS(2725), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2725), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2725), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2725), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2725), - [aux_sym_rekey_limit_token1] = ACTIONS(2725), - [aux_sym_remote_command_token1] = ACTIONS(2725), - [aux_sym_remote_forward_token1] = ACTIONS(2725), - [aux_sym_request_tty_token1] = ACTIONS(2725), - [aux_sym_required_rsa_size_token1] = ACTIONS(2725), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2725), - [aux_sym_security_key_provider_token1] = ACTIONS(2725), - [aux_sym_send_env_token1] = ACTIONS(2725), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2725), - [aux_sym_server_alive_interval_token1] = ACTIONS(2725), - [aux_sym_session_type_token1] = ACTIONS(2725), - [aux_sym_set_env_token1] = ACTIONS(2725), - [aux_sym_stdin_null_token1] = ACTIONS(2725), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2725), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2725), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2725), - [aux_sym_syslog_facility_token1] = ACTIONS(2725), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2725), - [aux_sym_keep_alive_token1] = ACTIONS(2725), - [aux_sym_tunnel_token1] = ACTIONS(2727), - [aux_sym_tunnel_device_token1] = ACTIONS(2725), - [aux_sym_update_host_keys_token1] = ACTIONS(2725), - [aux_sym_use_keychain_token1] = ACTIONS(2725), - [aux_sym_use_roaming_token1] = ACTIONS(2725), - [aux_sym_user_token1] = ACTIONS(2727), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2725), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2725), - [aux_sym_visual_host_key_token1] = ACTIONS(2725), - [aux_sym_xauth_location_token1] = ACTIONS(2725), + [ts_builtin_sym_end] = ACTIONS(2732), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2734), + [anon_sym_DQUOTE] = ACTIONS(2736), + [aux_sym_match_token1] = ACTIONS(2732), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2732), + [aux_sym_address_family_token1] = ACTIONS(2732), + [aux_sym_batch_mode_token1] = ACTIONS(2732), + [aux_sym_bind_address_token1] = ACTIONS(2732), + [aux_sym_bind_interface_token1] = ACTIONS(2732), + [aux_sym_canonical_domains_token1] = ACTIONS(2732), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2732), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2732), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2732), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2732), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2732), + [aux_sym_certificate_file_token1] = ACTIONS(2732), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2732), + [aux_sym_check_host_ip_token1] = ACTIONS(2732), + [aux_sym_ciphers_token1] = ACTIONS(2732), + [aux_sym_cipher_token1] = ACTIONS(2734), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2732), + [aux_sym_compression_token1] = ACTIONS(2732), + [aux_sym_connection_attempts_token1] = ACTIONS(2732), + [aux_sym_connect_timeout_token1] = ACTIONS(2732), + [aux_sym_control_master_token1] = ACTIONS(2732), + [aux_sym_control_path_token1] = ACTIONS(2732), + [aux_sym_control_persist_token1] = ACTIONS(2732), + [aux_sym_dynamic_forward_token1] = ACTIONS(2732), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2732), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2732), + [aux_sym_escape_char_token1] = ACTIONS(2732), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2732), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2732), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2732), + [aux_sym_forward_agent_token1] = ACTIONS(2732), + [aux_sym_forward_x11_token1] = ACTIONS(2734), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2732), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2732), + [aux_sym_gateway_ports_token1] = ACTIONS(2732), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2732), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2732), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2732), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2732), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2732), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2732), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2732), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2732), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2732), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2732), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2732), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2732), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2732), + [aux_sym_host_key_alias_token1] = ACTIONS(2732), + [aux_sym_hostname_token1] = ACTIONS(2732), + [aux_sym_identities_only_token1] = ACTIONS(2732), + [aux_sym_identity_agent_token1] = ACTIONS(2732), + [aux_sym_identity_file_token1] = ACTIONS(2732), + [aux_sym_ignore_unknown_token1] = ACTIONS(2732), + [aux_sym_include_token1] = ACTIONS(2732), + [aux_sym_ip_qos_token1] = ACTIONS(2732), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2732), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2732), + [aux_sym_kex_algorithms_token1] = ACTIONS(2732), + [aux_sym_known_hosts_command_token1] = ACTIONS(2732), + [aux_sym_local_command_token1] = ACTIONS(2732), + [aux_sym_local_forward_token1] = ACTIONS(2732), + [aux_sym_log_level_token1] = ACTIONS(2732), + [aux_sym_log_verbose_token1] = ACTIONS(2732), + [aux_sym_macs_token1] = ACTIONS(2732), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2732), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2732), + [aux_sym_password_authentication_token1] = ACTIONS(2732), + [aux_sym_permit_local_command_token1] = ACTIONS(2732), + [aux_sym_permit_remote_open_token1] = ACTIONS(2732), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2732), + [aux_sym_port_token1] = ACTIONS(2732), + [aux_sym_preferred_authentications_token1] = ACTIONS(2732), + [aux_sym_protocol_token1] = ACTIONS(2732), + [aux_sym_proxy_command_token1] = ACTIONS(2732), + [aux_sym_proxy_jump_token1] = ACTIONS(2732), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2732), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2732), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2732), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2732), + [aux_sym_rekey_limit_token1] = ACTIONS(2732), + [aux_sym_remote_command_token1] = ACTIONS(2732), + [aux_sym_remote_forward_token1] = ACTIONS(2732), + [aux_sym_request_tty_token1] = ACTIONS(2732), + [aux_sym_required_rsa_size_token1] = ACTIONS(2732), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2732), + [aux_sym_security_key_provider_token1] = ACTIONS(2732), + [aux_sym_send_env_token1] = ACTIONS(2732), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2732), + [aux_sym_server_alive_interval_token1] = ACTIONS(2732), + [aux_sym_session_type_token1] = ACTIONS(2732), + [aux_sym_set_env_token1] = ACTIONS(2732), + [aux_sym_stdin_null_token1] = ACTIONS(2732), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2732), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2732), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2732), + [aux_sym_syslog_facility_token1] = ACTIONS(2732), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2732), + [aux_sym_keep_alive_token1] = ACTIONS(2732), + [aux_sym_tunnel_token1] = ACTIONS(2734), + [aux_sym_tunnel_device_token1] = ACTIONS(2732), + [aux_sym_update_host_keys_token1] = ACTIONS(2732), + [aux_sym_use_keychain_token1] = ACTIONS(2732), + [aux_sym_use_roaming_token1] = ACTIONS(2732), + [aux_sym_user_token1] = ACTIONS(2734), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2732), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2732), + [aux_sym_visual_host_key_token1] = ACTIONS(2732), + [aux_sym_xauth_location_token1] = ACTIONS(2732), }, [394] = { - [ts_builtin_sym_end] = ACTIONS(2729), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2731), - [anon_sym_DQUOTE] = ACTIONS(2733), - [aux_sym_match_token1] = ACTIONS(2729), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2729), - [aux_sym_address_family_token1] = ACTIONS(2729), - [aux_sym_batch_mode_token1] = ACTIONS(2729), - [aux_sym_bind_address_token1] = ACTIONS(2729), - [aux_sym_bind_interface_token1] = ACTIONS(2729), - [aux_sym_canonical_domains_token1] = ACTIONS(2729), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2729), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2729), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2729), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2729), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2729), - [aux_sym_certificate_file_token1] = ACTIONS(2729), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2729), - [aux_sym_check_host_ip_token1] = ACTIONS(2729), - [aux_sym_ciphers_token1] = ACTIONS(2729), - [aux_sym_cipher_token1] = ACTIONS(2731), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2729), - [aux_sym_compression_token1] = ACTIONS(2729), - [aux_sym_connection_attempts_token1] = ACTIONS(2729), - [aux_sym_connect_timeout_token1] = ACTIONS(2729), - [aux_sym_control_master_token1] = ACTIONS(2729), - [aux_sym_control_path_token1] = ACTIONS(2729), - [aux_sym_control_persist_token1] = ACTIONS(2729), - [aux_sym_dynamic_forward_token1] = ACTIONS(2729), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2729), - [aux_sym_escape_char_token1] = ACTIONS(2729), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2729), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2729), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2729), - [aux_sym_forward_agent_token1] = ACTIONS(2729), - [aux_sym_forward_x11_token1] = ACTIONS(2731), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2729), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2729), - [aux_sym_gateway_ports_token1] = ACTIONS(2729), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2729), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2729), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2729), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2729), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2729), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2729), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2729), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2729), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2729), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2729), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2729), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2729), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2729), - [aux_sym_host_key_alias_token1] = ACTIONS(2729), - [aux_sym_hostname_token1] = ACTIONS(2729), - [aux_sym_identities_only_token1] = ACTIONS(2729), - [aux_sym_identity_agent_token1] = ACTIONS(2729), - [aux_sym_identity_file_token1] = ACTIONS(2729), - [aux_sym_ignore_unknown_token1] = ACTIONS(2729), - [aux_sym_include_token1] = ACTIONS(2729), - [aux_sym_ip_qos_token1] = ACTIONS(2729), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2729), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2729), - [aux_sym_kex_algorithms_token1] = ACTIONS(2729), - [aux_sym_known_hosts_command_token1] = ACTIONS(2729), - [aux_sym_local_command_token1] = ACTIONS(2729), - [aux_sym_local_forward_token1] = ACTIONS(2729), - [aux_sym_log_level_token1] = ACTIONS(2729), - [aux_sym_log_verbose_token1] = ACTIONS(2729), - [aux_sym_macs_token1] = ACTIONS(2729), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2729), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2729), - [aux_sym_password_authentication_token1] = ACTIONS(2729), - [aux_sym_permit_local_command_token1] = ACTIONS(2729), - [aux_sym_permit_remote_open_token1] = ACTIONS(2729), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2729), - [aux_sym_port_token1] = ACTIONS(2729), - [aux_sym_preferred_authentications_token1] = ACTIONS(2729), - [aux_sym_protocol_token1] = ACTIONS(2729), - [aux_sym_proxy_command_token1] = ACTIONS(2729), - [aux_sym_proxy_jump_token1] = ACTIONS(2729), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2729), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2729), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2729), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2729), - [aux_sym_rekey_limit_token1] = ACTIONS(2729), - [aux_sym_remote_command_token1] = ACTIONS(2729), - [aux_sym_remote_forward_token1] = ACTIONS(2729), - [aux_sym_request_tty_token1] = ACTIONS(2729), - [aux_sym_required_rsa_size_token1] = ACTIONS(2729), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2729), - [aux_sym_security_key_provider_token1] = ACTIONS(2729), - [aux_sym_send_env_token1] = ACTIONS(2729), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2729), - [aux_sym_server_alive_interval_token1] = ACTIONS(2729), - [aux_sym_session_type_token1] = ACTIONS(2729), - [aux_sym_set_env_token1] = ACTIONS(2729), - [aux_sym_stdin_null_token1] = ACTIONS(2729), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2729), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2729), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2729), - [aux_sym_syslog_facility_token1] = ACTIONS(2729), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2729), - [aux_sym_keep_alive_token1] = ACTIONS(2729), - [aux_sym_tunnel_token1] = ACTIONS(2731), - [aux_sym_tunnel_device_token1] = ACTIONS(2729), - [aux_sym_update_host_keys_token1] = ACTIONS(2729), - [aux_sym_use_keychain_token1] = ACTIONS(2729), - [aux_sym_use_roaming_token1] = ACTIONS(2729), - [aux_sym_user_token1] = ACTIONS(2731), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2729), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2729), - [aux_sym_visual_host_key_token1] = ACTIONS(2729), - [aux_sym_xauth_location_token1] = ACTIONS(2729), + [ts_builtin_sym_end] = ACTIONS(2738), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2740), + [anon_sym_DQUOTE] = ACTIONS(2738), + [aux_sym_match_token1] = ACTIONS(2738), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2738), + [aux_sym_address_family_token1] = ACTIONS(2738), + [aux_sym_batch_mode_token1] = ACTIONS(2738), + [aux_sym_bind_address_token1] = ACTIONS(2738), + [aux_sym_bind_interface_token1] = ACTIONS(2738), + [aux_sym_canonical_domains_token1] = ACTIONS(2738), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2738), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2738), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2738), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2738), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2738), + [aux_sym_certificate_file_token1] = ACTIONS(2738), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2738), + [aux_sym_check_host_ip_token1] = ACTIONS(2738), + [aux_sym_ciphers_token1] = ACTIONS(2738), + [aux_sym_cipher_token1] = ACTIONS(2740), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2738), + [aux_sym_compression_token1] = ACTIONS(2738), + [aux_sym_connection_attempts_token1] = ACTIONS(2738), + [aux_sym_connect_timeout_token1] = ACTIONS(2738), + [aux_sym_control_master_token1] = ACTIONS(2738), + [aux_sym_control_path_token1] = ACTIONS(2738), + [aux_sym_control_persist_token1] = ACTIONS(2738), + [aux_sym_dynamic_forward_token1] = ACTIONS(2738), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2738), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2738), + [aux_sym_escape_char_token1] = ACTIONS(2738), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2738), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2738), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2738), + [aux_sym_forward_agent_token1] = ACTIONS(2738), + [aux_sym_forward_x11_token1] = ACTIONS(2740), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2738), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2738), + [aux_sym_gateway_ports_token1] = ACTIONS(2738), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2738), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2738), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2738), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2738), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2738), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2738), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2738), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2738), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2738), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2738), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2738), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2738), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2738), + [aux_sym_host_key_alias_token1] = ACTIONS(2738), + [aux_sym_hostname_token1] = ACTIONS(2738), + [aux_sym_identities_only_token1] = ACTIONS(2738), + [aux_sym_identity_agent_token1] = ACTIONS(2738), + [aux_sym_identity_file_token1] = ACTIONS(2738), + [aux_sym_ignore_unknown_token1] = ACTIONS(2738), + [aux_sym_include_token1] = ACTIONS(2738), + [aux_sym_ip_qos_token1] = ACTIONS(2738), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2738), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2738), + [aux_sym_kex_algorithms_token1] = ACTIONS(2738), + [aux_sym_known_hosts_command_token1] = ACTIONS(2738), + [aux_sym_local_command_token1] = ACTIONS(2738), + [aux_sym_local_forward_token1] = ACTIONS(2738), + [aux_sym_log_level_token1] = ACTIONS(2738), + [aux_sym_log_verbose_token1] = ACTIONS(2738), + [aux_sym_macs_token1] = ACTIONS(2738), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2738), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2738), + [aux_sym_password_authentication_token1] = ACTIONS(2738), + [aux_sym_permit_local_command_token1] = ACTIONS(2738), + [aux_sym_permit_remote_open_token1] = ACTIONS(2738), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2738), + [aux_sym_port_token1] = ACTIONS(2738), + [aux_sym_preferred_authentications_token1] = ACTIONS(2738), + [aux_sym_protocol_token1] = ACTIONS(2738), + [aux_sym_proxy_command_token1] = ACTIONS(2738), + [aux_sym_proxy_jump_token1] = ACTIONS(2738), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2738), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2738), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2738), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2738), + [aux_sym_rekey_limit_token1] = ACTIONS(2738), + [aux_sym_remote_command_token1] = ACTIONS(2738), + [aux_sym_remote_forward_token1] = ACTIONS(2738), + [aux_sym_request_tty_token1] = ACTIONS(2738), + [aux_sym_required_rsa_size_token1] = ACTIONS(2738), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2738), + [aux_sym_security_key_provider_token1] = ACTIONS(2738), + [aux_sym_send_env_token1] = ACTIONS(2738), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2738), + [aux_sym_server_alive_interval_token1] = ACTIONS(2738), + [aux_sym_session_type_token1] = ACTIONS(2738), + [aux_sym_set_env_token1] = ACTIONS(2738), + [aux_sym_stdin_null_token1] = ACTIONS(2738), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2738), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2738), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2738), + [aux_sym_syslog_facility_token1] = ACTIONS(2738), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2738), + [aux_sym_keep_alive_token1] = ACTIONS(2738), + [aux_sym_tunnel_token1] = ACTIONS(2740), + [aux_sym_tunnel_device_token1] = ACTIONS(2738), + [aux_sym_update_host_keys_token1] = ACTIONS(2738), + [aux_sym_use_keychain_token1] = ACTIONS(2738), + [aux_sym_use_roaming_token1] = ACTIONS(2738), + [aux_sym_user_token1] = ACTIONS(2740), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2738), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2738), + [aux_sym_visual_host_key_token1] = ACTIONS(2738), + [aux_sym_xauth_location_token1] = ACTIONS(2738), }, [395] = { - [ts_builtin_sym_end] = ACTIONS(2735), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2737), - [anon_sym_DQUOTE] = ACTIONS(2735), - [aux_sym_match_token1] = ACTIONS(2735), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2735), - [aux_sym_address_family_token1] = ACTIONS(2735), - [aux_sym_batch_mode_token1] = ACTIONS(2735), - [aux_sym_bind_address_token1] = ACTIONS(2735), - [aux_sym_bind_interface_token1] = ACTIONS(2735), - [aux_sym_canonical_domains_token1] = ACTIONS(2735), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2735), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2735), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2735), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2735), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2735), - [aux_sym_certificate_file_token1] = ACTIONS(2735), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2735), - [aux_sym_check_host_ip_token1] = ACTIONS(2735), - [aux_sym_ciphers_token1] = ACTIONS(2735), - [aux_sym_cipher_token1] = ACTIONS(2737), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2735), - [aux_sym_compression_token1] = ACTIONS(2735), - [aux_sym_connection_attempts_token1] = ACTIONS(2735), - [aux_sym_connect_timeout_token1] = ACTIONS(2735), - [aux_sym_control_master_token1] = ACTIONS(2735), - [aux_sym_control_path_token1] = ACTIONS(2735), - [aux_sym_control_persist_token1] = ACTIONS(2735), - [aux_sym_dynamic_forward_token1] = ACTIONS(2735), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2735), - [aux_sym_escape_char_token1] = ACTIONS(2735), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2735), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2735), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2735), - [aux_sym_forward_agent_token1] = ACTIONS(2735), - [aux_sym_forward_x11_token1] = ACTIONS(2737), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2735), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2735), - [aux_sym_gateway_ports_token1] = ACTIONS(2735), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2735), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2735), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2735), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2735), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2735), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2735), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2735), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2735), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2735), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2735), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2735), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2735), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2735), - [aux_sym_host_key_alias_token1] = ACTIONS(2735), - [aux_sym_hostname_token1] = ACTIONS(2735), - [aux_sym_identities_only_token1] = ACTIONS(2735), - [aux_sym_identity_agent_token1] = ACTIONS(2735), - [aux_sym_identity_file_token1] = ACTIONS(2735), - [aux_sym_ignore_unknown_token1] = ACTIONS(2735), - [aux_sym_include_token1] = ACTIONS(2735), - [aux_sym_ip_qos_token1] = ACTIONS(2735), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2735), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2735), - [aux_sym_kex_algorithms_token1] = ACTIONS(2735), - [aux_sym_known_hosts_command_token1] = ACTIONS(2735), - [aux_sym_local_command_token1] = ACTIONS(2735), - [aux_sym_local_forward_token1] = ACTIONS(2735), - [aux_sym_log_level_token1] = ACTIONS(2735), - [aux_sym_log_verbose_token1] = ACTIONS(2735), - [aux_sym_macs_token1] = ACTIONS(2735), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2735), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2735), - [aux_sym_password_authentication_token1] = ACTIONS(2735), - [aux_sym_permit_local_command_token1] = ACTIONS(2735), - [aux_sym_permit_remote_open_token1] = ACTIONS(2735), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2735), - [aux_sym_port_token1] = ACTIONS(2735), - [aux_sym_preferred_authentications_token1] = ACTIONS(2735), - [aux_sym_protocol_token1] = ACTIONS(2735), - [aux_sym_proxy_command_token1] = ACTIONS(2735), - [aux_sym_proxy_jump_token1] = ACTIONS(2735), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2735), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2735), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2735), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2735), - [aux_sym_rekey_limit_token1] = ACTIONS(2735), - [aux_sym_remote_command_token1] = ACTIONS(2735), - [aux_sym_remote_forward_token1] = ACTIONS(2735), - [aux_sym_request_tty_token1] = ACTIONS(2735), - [aux_sym_required_rsa_size_token1] = ACTIONS(2735), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2735), - [aux_sym_security_key_provider_token1] = ACTIONS(2735), - [aux_sym_send_env_token1] = ACTIONS(2735), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2735), - [aux_sym_server_alive_interval_token1] = ACTIONS(2735), - [aux_sym_session_type_token1] = ACTIONS(2735), - [aux_sym_set_env_token1] = ACTIONS(2735), - [aux_sym_stdin_null_token1] = ACTIONS(2735), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2735), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2735), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2735), - [aux_sym_syslog_facility_token1] = ACTIONS(2735), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2735), - [aux_sym_keep_alive_token1] = ACTIONS(2735), - [aux_sym_tunnel_token1] = ACTIONS(2737), - [aux_sym_tunnel_device_token1] = ACTIONS(2735), - [aux_sym_update_host_keys_token1] = ACTIONS(2735), - [aux_sym_use_keychain_token1] = ACTIONS(2735), - [aux_sym_use_roaming_token1] = ACTIONS(2735), - [aux_sym_user_token1] = ACTIONS(2737), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2735), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2735), - [aux_sym_visual_host_key_token1] = ACTIONS(2735), - [aux_sym_xauth_location_token1] = ACTIONS(2735), + [ts_builtin_sym_end] = ACTIONS(2742), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2744), + [anon_sym_DQUOTE] = ACTIONS(2742), + [aux_sym_match_token1] = ACTIONS(2742), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2742), + [aux_sym_address_family_token1] = ACTIONS(2742), + [aux_sym_batch_mode_token1] = ACTIONS(2742), + [aux_sym_bind_address_token1] = ACTIONS(2742), + [aux_sym_bind_interface_token1] = ACTIONS(2742), + [aux_sym_canonical_domains_token1] = ACTIONS(2742), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2742), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2742), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2742), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2742), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2742), + [aux_sym_certificate_file_token1] = ACTIONS(2742), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2742), + [aux_sym_check_host_ip_token1] = ACTIONS(2742), + [aux_sym_ciphers_token1] = ACTIONS(2742), + [aux_sym_cipher_token1] = ACTIONS(2744), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2742), + [aux_sym_compression_token1] = ACTIONS(2742), + [aux_sym_connection_attempts_token1] = ACTIONS(2742), + [aux_sym_connect_timeout_token1] = ACTIONS(2742), + [aux_sym_control_master_token1] = ACTIONS(2742), + [aux_sym_control_path_token1] = ACTIONS(2742), + [aux_sym_control_persist_token1] = ACTIONS(2742), + [aux_sym_dynamic_forward_token1] = ACTIONS(2742), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2742), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2742), + [aux_sym_escape_char_token1] = ACTIONS(2742), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2742), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2742), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2742), + [aux_sym_forward_agent_token1] = ACTIONS(2742), + [aux_sym_forward_x11_token1] = ACTIONS(2744), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2742), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2742), + [aux_sym_gateway_ports_token1] = ACTIONS(2742), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2742), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2742), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2742), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2742), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2742), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2742), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2742), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2742), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2742), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2742), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2742), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2742), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2742), + [aux_sym_host_key_alias_token1] = ACTIONS(2742), + [aux_sym_hostname_token1] = ACTIONS(2742), + [aux_sym_identities_only_token1] = ACTIONS(2742), + [aux_sym_identity_agent_token1] = ACTIONS(2742), + [aux_sym_identity_file_token1] = ACTIONS(2742), + [aux_sym_ignore_unknown_token1] = ACTIONS(2742), + [aux_sym_include_token1] = ACTIONS(2742), + [aux_sym_ip_qos_token1] = ACTIONS(2742), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2742), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2742), + [aux_sym_kex_algorithms_token1] = ACTIONS(2742), + [aux_sym_known_hosts_command_token1] = ACTIONS(2742), + [aux_sym_local_command_token1] = ACTIONS(2742), + [aux_sym_local_forward_token1] = ACTIONS(2742), + [aux_sym_log_level_token1] = ACTIONS(2742), + [aux_sym_log_verbose_token1] = ACTIONS(2742), + [aux_sym_macs_token1] = ACTIONS(2742), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2742), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2742), + [aux_sym_password_authentication_token1] = ACTIONS(2742), + [aux_sym_permit_local_command_token1] = ACTIONS(2742), + [aux_sym_permit_remote_open_token1] = ACTIONS(2742), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2742), + [aux_sym_port_token1] = ACTIONS(2742), + [aux_sym_preferred_authentications_token1] = ACTIONS(2742), + [aux_sym_protocol_token1] = ACTIONS(2742), + [aux_sym_proxy_command_token1] = ACTIONS(2742), + [aux_sym_proxy_jump_token1] = ACTIONS(2742), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2742), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2742), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2742), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2742), + [aux_sym_rekey_limit_token1] = ACTIONS(2742), + [aux_sym_remote_command_token1] = ACTIONS(2742), + [aux_sym_remote_forward_token1] = ACTIONS(2742), + [aux_sym_request_tty_token1] = ACTIONS(2742), + [aux_sym_required_rsa_size_token1] = ACTIONS(2742), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2742), + [aux_sym_security_key_provider_token1] = ACTIONS(2742), + [aux_sym_send_env_token1] = ACTIONS(2742), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2742), + [aux_sym_server_alive_interval_token1] = ACTIONS(2742), + [aux_sym_session_type_token1] = ACTIONS(2742), + [aux_sym_set_env_token1] = ACTIONS(2742), + [aux_sym_stdin_null_token1] = ACTIONS(2742), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2742), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2742), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2742), + [aux_sym_syslog_facility_token1] = ACTIONS(2742), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2742), + [aux_sym_keep_alive_token1] = ACTIONS(2742), + [aux_sym_tunnel_token1] = ACTIONS(2744), + [aux_sym_tunnel_device_token1] = ACTIONS(2742), + [aux_sym_update_host_keys_token1] = ACTIONS(2742), + [aux_sym_use_keychain_token1] = ACTIONS(2742), + [aux_sym_use_roaming_token1] = ACTIONS(2742), + [aux_sym_user_token1] = ACTIONS(2744), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2742), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2742), + [aux_sym_visual_host_key_token1] = ACTIONS(2742), + [aux_sym_xauth_location_token1] = ACTIONS(2742), }, [396] = { - [ts_builtin_sym_end] = ACTIONS(2739), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2741), - [anon_sym_DQUOTE] = ACTIONS(2743), - [aux_sym_match_token1] = ACTIONS(2739), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2739), - [aux_sym_address_family_token1] = ACTIONS(2739), - [aux_sym_batch_mode_token1] = ACTIONS(2739), - [aux_sym_bind_address_token1] = ACTIONS(2739), - [aux_sym_bind_interface_token1] = ACTIONS(2739), - [aux_sym_canonical_domains_token1] = ACTIONS(2739), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2739), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2739), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2739), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2739), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2739), - [aux_sym_certificate_file_token1] = ACTIONS(2739), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2739), - [aux_sym_check_host_ip_token1] = ACTIONS(2739), - [aux_sym_ciphers_token1] = ACTIONS(2739), - [aux_sym_cipher_token1] = ACTIONS(2741), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2739), - [aux_sym_compression_token1] = ACTIONS(2739), - [aux_sym_connection_attempts_token1] = ACTIONS(2739), - [aux_sym_connect_timeout_token1] = ACTIONS(2739), - [aux_sym_control_master_token1] = ACTIONS(2739), - [aux_sym_control_path_token1] = ACTIONS(2739), - [aux_sym_control_persist_token1] = ACTIONS(2739), - [aux_sym_dynamic_forward_token1] = ACTIONS(2739), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2739), - [aux_sym_escape_char_token1] = ACTIONS(2739), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2739), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2739), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2739), - [aux_sym_forward_agent_token1] = ACTIONS(2739), - [aux_sym_forward_x11_token1] = ACTIONS(2741), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2739), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2739), - [aux_sym_gateway_ports_token1] = ACTIONS(2739), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2739), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2739), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2739), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2739), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2739), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2739), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2739), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2739), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2739), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2739), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2739), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2739), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2739), - [aux_sym_host_key_alias_token1] = ACTIONS(2739), - [aux_sym_hostname_token1] = ACTIONS(2739), - [aux_sym_identities_only_token1] = ACTIONS(2739), - [aux_sym_identity_agent_token1] = ACTIONS(2739), - [aux_sym_identity_file_token1] = ACTIONS(2739), - [aux_sym_ignore_unknown_token1] = ACTIONS(2739), - [aux_sym_include_token1] = ACTIONS(2739), - [aux_sym_ip_qos_token1] = ACTIONS(2739), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2739), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2739), - [aux_sym_kex_algorithms_token1] = ACTIONS(2739), - [aux_sym_known_hosts_command_token1] = ACTIONS(2739), - [aux_sym_local_command_token1] = ACTIONS(2739), - [aux_sym_local_forward_token1] = ACTIONS(2739), - [aux_sym_log_level_token1] = ACTIONS(2739), - [aux_sym_log_verbose_token1] = ACTIONS(2739), - [aux_sym_macs_token1] = ACTIONS(2739), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2739), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2739), - [aux_sym_password_authentication_token1] = ACTIONS(2739), - [aux_sym_permit_local_command_token1] = ACTIONS(2739), - [aux_sym_permit_remote_open_token1] = ACTIONS(2739), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2739), - [aux_sym_port_token1] = ACTIONS(2739), - [aux_sym_preferred_authentications_token1] = ACTIONS(2739), - [aux_sym_protocol_token1] = ACTIONS(2739), - [aux_sym_proxy_command_token1] = ACTIONS(2739), - [aux_sym_proxy_jump_token1] = ACTIONS(2739), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2739), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2739), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2739), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2739), - [aux_sym_rekey_limit_token1] = ACTIONS(2739), - [aux_sym_remote_command_token1] = ACTIONS(2739), - [aux_sym_remote_forward_token1] = ACTIONS(2739), - [aux_sym_request_tty_token1] = ACTIONS(2739), - [aux_sym_required_rsa_size_token1] = ACTIONS(2739), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2739), - [aux_sym_security_key_provider_token1] = ACTIONS(2739), - [aux_sym_send_env_token1] = ACTIONS(2739), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2739), - [aux_sym_server_alive_interval_token1] = ACTIONS(2739), - [aux_sym_session_type_token1] = ACTIONS(2739), - [aux_sym_set_env_token1] = ACTIONS(2739), - [aux_sym_stdin_null_token1] = ACTIONS(2739), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2739), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2739), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2739), - [aux_sym_syslog_facility_token1] = ACTIONS(2739), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2739), - [aux_sym_keep_alive_token1] = ACTIONS(2739), - [aux_sym_tunnel_token1] = ACTIONS(2741), - [aux_sym_tunnel_device_token1] = ACTIONS(2739), - [aux_sym_update_host_keys_token1] = ACTIONS(2739), - [aux_sym_use_keychain_token1] = ACTIONS(2739), - [aux_sym_use_roaming_token1] = ACTIONS(2739), - [aux_sym_user_token1] = ACTIONS(2741), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2739), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2739), - [aux_sym_visual_host_key_token1] = ACTIONS(2739), - [aux_sym_xauth_location_token1] = ACTIONS(2739), + [ts_builtin_sym_end] = ACTIONS(2746), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2750), + [aux_sym_match_token1] = ACTIONS(2746), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2746), + [aux_sym_address_family_token1] = ACTIONS(2746), + [aux_sym_batch_mode_token1] = ACTIONS(2746), + [aux_sym_bind_address_token1] = ACTIONS(2746), + [aux_sym_bind_interface_token1] = ACTIONS(2746), + [aux_sym_canonical_domains_token1] = ACTIONS(2746), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2746), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2746), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2746), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2746), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2746), + [aux_sym_certificate_file_token1] = ACTIONS(2746), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2746), + [aux_sym_check_host_ip_token1] = ACTIONS(2746), + [aux_sym_ciphers_token1] = ACTIONS(2746), + [aux_sym_cipher_token1] = ACTIONS(2748), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2746), + [aux_sym_compression_token1] = ACTIONS(2746), + [aux_sym_connection_attempts_token1] = ACTIONS(2746), + [aux_sym_connect_timeout_token1] = ACTIONS(2746), + [aux_sym_control_master_token1] = ACTIONS(2746), + [aux_sym_control_path_token1] = ACTIONS(2746), + [aux_sym_control_persist_token1] = ACTIONS(2746), + [aux_sym_dynamic_forward_token1] = ACTIONS(2746), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2746), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2746), + [aux_sym_escape_char_token1] = ACTIONS(2746), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2746), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2746), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2746), + [aux_sym_forward_agent_token1] = ACTIONS(2746), + [aux_sym_forward_x11_token1] = ACTIONS(2748), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2746), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2746), + [aux_sym_gateway_ports_token1] = ACTIONS(2746), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2746), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2746), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2746), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2746), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2746), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2746), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2746), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2746), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2746), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2746), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2746), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2746), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2746), + [aux_sym_host_key_alias_token1] = ACTIONS(2746), + [aux_sym_hostname_token1] = ACTIONS(2746), + [aux_sym_identities_only_token1] = ACTIONS(2746), + [aux_sym_identity_agent_token1] = ACTIONS(2746), + [aux_sym_identity_file_token1] = ACTIONS(2746), + [aux_sym_ignore_unknown_token1] = ACTIONS(2746), + [aux_sym_include_token1] = ACTIONS(2746), + [aux_sym_ip_qos_token1] = ACTIONS(2746), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2746), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2746), + [aux_sym_kex_algorithms_token1] = ACTIONS(2746), + [aux_sym_known_hosts_command_token1] = ACTIONS(2746), + [aux_sym_local_command_token1] = ACTIONS(2746), + [aux_sym_local_forward_token1] = ACTIONS(2746), + [aux_sym_log_level_token1] = ACTIONS(2746), + [aux_sym_log_verbose_token1] = ACTIONS(2746), + [aux_sym_macs_token1] = ACTIONS(2746), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2746), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2746), + [aux_sym_password_authentication_token1] = ACTIONS(2746), + [aux_sym_permit_local_command_token1] = ACTIONS(2746), + [aux_sym_permit_remote_open_token1] = ACTIONS(2746), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2746), + [aux_sym_port_token1] = ACTIONS(2746), + [aux_sym_preferred_authentications_token1] = ACTIONS(2746), + [aux_sym_protocol_token1] = ACTIONS(2746), + [aux_sym_proxy_command_token1] = ACTIONS(2746), + [aux_sym_proxy_jump_token1] = ACTIONS(2746), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2746), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2746), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2746), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2746), + [aux_sym_rekey_limit_token1] = ACTIONS(2746), + [aux_sym_remote_command_token1] = ACTIONS(2746), + [aux_sym_remote_forward_token1] = ACTIONS(2746), + [aux_sym_request_tty_token1] = ACTIONS(2746), + [aux_sym_required_rsa_size_token1] = ACTIONS(2746), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2746), + [aux_sym_security_key_provider_token1] = ACTIONS(2746), + [aux_sym_send_env_token1] = ACTIONS(2746), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2746), + [aux_sym_server_alive_interval_token1] = ACTIONS(2746), + [aux_sym_session_type_token1] = ACTIONS(2746), + [aux_sym_set_env_token1] = ACTIONS(2746), + [aux_sym_stdin_null_token1] = ACTIONS(2746), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2746), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2746), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2746), + [aux_sym_syslog_facility_token1] = ACTIONS(2746), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2746), + [aux_sym_keep_alive_token1] = ACTIONS(2746), + [aux_sym_tunnel_token1] = ACTIONS(2748), + [aux_sym_tunnel_device_token1] = ACTIONS(2746), + [aux_sym_update_host_keys_token1] = ACTIONS(2746), + [aux_sym_use_keychain_token1] = ACTIONS(2746), + [aux_sym_use_roaming_token1] = ACTIONS(2746), + [aux_sym_user_token1] = ACTIONS(2748), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2746), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2746), + [aux_sym_visual_host_key_token1] = ACTIONS(2746), + [aux_sym_xauth_location_token1] = ACTIONS(2746), }, [397] = { - [ts_builtin_sym_end] = ACTIONS(2745), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2747), - [anon_sym_DQUOTE] = ACTIONS(2745), - [aux_sym_match_token1] = ACTIONS(2745), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2745), - [aux_sym_address_family_token1] = ACTIONS(2745), - [aux_sym_batch_mode_token1] = ACTIONS(2745), - [aux_sym_bind_address_token1] = ACTIONS(2745), - [aux_sym_bind_interface_token1] = ACTIONS(2745), - [aux_sym_canonical_domains_token1] = ACTIONS(2745), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2745), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2745), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2745), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2745), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2745), - [aux_sym_certificate_file_token1] = ACTIONS(2745), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2745), - [aux_sym_check_host_ip_token1] = ACTIONS(2745), - [aux_sym_ciphers_token1] = ACTIONS(2745), - [aux_sym_cipher_token1] = ACTIONS(2747), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2745), - [aux_sym_compression_token1] = ACTIONS(2745), - [aux_sym_connection_attempts_token1] = ACTIONS(2745), - [aux_sym_connect_timeout_token1] = ACTIONS(2745), - [aux_sym_control_master_token1] = ACTIONS(2745), - [aux_sym_control_path_token1] = ACTIONS(2745), - [aux_sym_control_persist_token1] = ACTIONS(2745), - [aux_sym_dynamic_forward_token1] = ACTIONS(2745), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2745), - [aux_sym_escape_char_token1] = ACTIONS(2745), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2745), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2745), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2745), - [aux_sym_forward_agent_token1] = ACTIONS(2745), - [aux_sym_forward_x11_token1] = ACTIONS(2747), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2745), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2745), - [aux_sym_gateway_ports_token1] = ACTIONS(2745), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2745), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2745), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2745), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2745), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2745), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2745), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2745), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2745), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2745), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2745), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2745), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2745), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2745), - [aux_sym_host_key_alias_token1] = ACTIONS(2745), - [aux_sym_hostname_token1] = ACTIONS(2745), - [aux_sym_identities_only_token1] = ACTIONS(2745), - [aux_sym_identity_agent_token1] = ACTIONS(2745), - [aux_sym_identity_file_token1] = ACTIONS(2745), - [aux_sym_ignore_unknown_token1] = ACTIONS(2745), - [aux_sym_include_token1] = ACTIONS(2745), - [aux_sym_ip_qos_token1] = ACTIONS(2745), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2745), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2745), - [aux_sym_kex_algorithms_token1] = ACTIONS(2745), - [aux_sym_known_hosts_command_token1] = ACTIONS(2745), - [aux_sym_local_command_token1] = ACTIONS(2745), - [aux_sym_local_forward_token1] = ACTIONS(2745), - [aux_sym_log_level_token1] = ACTIONS(2745), - [aux_sym_log_verbose_token1] = ACTIONS(2745), - [aux_sym_macs_token1] = ACTIONS(2745), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2745), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2745), - [aux_sym_password_authentication_token1] = ACTIONS(2745), - [aux_sym_permit_local_command_token1] = ACTIONS(2745), - [aux_sym_permit_remote_open_token1] = ACTIONS(2745), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2745), - [aux_sym_port_token1] = ACTIONS(2745), - [aux_sym_preferred_authentications_token1] = ACTIONS(2745), - [aux_sym_protocol_token1] = ACTIONS(2745), - [aux_sym_proxy_command_token1] = ACTIONS(2745), - [aux_sym_proxy_jump_token1] = ACTIONS(2745), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2745), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2745), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2745), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2745), - [aux_sym_rekey_limit_token1] = ACTIONS(2745), - [aux_sym_remote_command_token1] = ACTIONS(2745), - [aux_sym_remote_forward_token1] = ACTIONS(2745), - [aux_sym_request_tty_token1] = ACTIONS(2745), - [aux_sym_required_rsa_size_token1] = ACTIONS(2745), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2745), - [aux_sym_security_key_provider_token1] = ACTIONS(2745), - [aux_sym_send_env_token1] = ACTIONS(2745), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2745), - [aux_sym_server_alive_interval_token1] = ACTIONS(2745), - [aux_sym_session_type_token1] = ACTIONS(2745), - [aux_sym_set_env_token1] = ACTIONS(2745), - [aux_sym_stdin_null_token1] = ACTIONS(2745), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2745), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2745), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2745), - [aux_sym_syslog_facility_token1] = ACTIONS(2745), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2745), - [aux_sym_keep_alive_token1] = ACTIONS(2745), - [aux_sym_tunnel_token1] = ACTIONS(2747), - [aux_sym_tunnel_device_token1] = ACTIONS(2745), - [aux_sym_update_host_keys_token1] = ACTIONS(2745), - [aux_sym_use_keychain_token1] = ACTIONS(2745), - [aux_sym_use_roaming_token1] = ACTIONS(2745), - [aux_sym_user_token1] = ACTIONS(2747), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2745), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2745), - [aux_sym_visual_host_key_token1] = ACTIONS(2745), - [aux_sym_xauth_location_token1] = ACTIONS(2745), + [ts_builtin_sym_end] = ACTIONS(2752), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2754), + [anon_sym_DQUOTE] = ACTIONS(2756), + [aux_sym_match_token1] = ACTIONS(2752), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2752), + [aux_sym_address_family_token1] = ACTIONS(2752), + [aux_sym_batch_mode_token1] = ACTIONS(2752), + [aux_sym_bind_address_token1] = ACTIONS(2752), + [aux_sym_bind_interface_token1] = ACTIONS(2752), + [aux_sym_canonical_domains_token1] = ACTIONS(2752), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2752), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2752), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2752), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2752), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2752), + [aux_sym_certificate_file_token1] = ACTIONS(2752), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2752), + [aux_sym_check_host_ip_token1] = ACTIONS(2752), + [aux_sym_ciphers_token1] = ACTIONS(2752), + [aux_sym_cipher_token1] = ACTIONS(2754), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2752), + [aux_sym_compression_token1] = ACTIONS(2752), + [aux_sym_connection_attempts_token1] = ACTIONS(2752), + [aux_sym_connect_timeout_token1] = ACTIONS(2752), + [aux_sym_control_master_token1] = ACTIONS(2752), + [aux_sym_control_path_token1] = ACTIONS(2752), + [aux_sym_control_persist_token1] = ACTIONS(2752), + [aux_sym_dynamic_forward_token1] = ACTIONS(2752), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2752), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2752), + [aux_sym_escape_char_token1] = ACTIONS(2752), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2752), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2752), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2752), + [aux_sym_forward_agent_token1] = ACTIONS(2752), + [aux_sym_forward_x11_token1] = ACTIONS(2754), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2752), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2752), + [aux_sym_gateway_ports_token1] = ACTIONS(2752), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2752), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2752), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2752), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2752), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2752), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2752), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2752), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2752), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2752), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2752), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2752), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2752), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2752), + [aux_sym_host_key_alias_token1] = ACTIONS(2752), + [aux_sym_hostname_token1] = ACTIONS(2752), + [aux_sym_identities_only_token1] = ACTIONS(2752), + [aux_sym_identity_agent_token1] = ACTIONS(2752), + [aux_sym_identity_file_token1] = ACTIONS(2752), + [aux_sym_ignore_unknown_token1] = ACTIONS(2752), + [aux_sym_include_token1] = ACTIONS(2752), + [aux_sym_ip_qos_token1] = ACTIONS(2752), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2752), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2752), + [aux_sym_kex_algorithms_token1] = ACTIONS(2752), + [aux_sym_known_hosts_command_token1] = ACTIONS(2752), + [aux_sym_local_command_token1] = ACTIONS(2752), + [aux_sym_local_forward_token1] = ACTIONS(2752), + [aux_sym_log_level_token1] = ACTIONS(2752), + [aux_sym_log_verbose_token1] = ACTIONS(2752), + [aux_sym_macs_token1] = ACTIONS(2752), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2752), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2752), + [aux_sym_password_authentication_token1] = ACTIONS(2752), + [aux_sym_permit_local_command_token1] = ACTIONS(2752), + [aux_sym_permit_remote_open_token1] = ACTIONS(2752), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2752), + [aux_sym_port_token1] = ACTIONS(2752), + [aux_sym_preferred_authentications_token1] = ACTIONS(2752), + [aux_sym_protocol_token1] = ACTIONS(2752), + [aux_sym_proxy_command_token1] = ACTIONS(2752), + [aux_sym_proxy_jump_token1] = ACTIONS(2752), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2752), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2752), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2752), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2752), + [aux_sym_rekey_limit_token1] = ACTIONS(2752), + [aux_sym_remote_command_token1] = ACTIONS(2752), + [aux_sym_remote_forward_token1] = ACTIONS(2752), + [aux_sym_request_tty_token1] = ACTIONS(2752), + [aux_sym_required_rsa_size_token1] = ACTIONS(2752), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2752), + [aux_sym_security_key_provider_token1] = ACTIONS(2752), + [aux_sym_send_env_token1] = ACTIONS(2752), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2752), + [aux_sym_server_alive_interval_token1] = ACTIONS(2752), + [aux_sym_session_type_token1] = ACTIONS(2752), + [aux_sym_set_env_token1] = ACTIONS(2752), + [aux_sym_stdin_null_token1] = ACTIONS(2752), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2752), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2752), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2752), + [aux_sym_syslog_facility_token1] = ACTIONS(2752), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2752), + [aux_sym_keep_alive_token1] = ACTIONS(2752), + [aux_sym_tunnel_token1] = ACTIONS(2754), + [aux_sym_tunnel_device_token1] = ACTIONS(2752), + [aux_sym_update_host_keys_token1] = ACTIONS(2752), + [aux_sym_use_keychain_token1] = ACTIONS(2752), + [aux_sym_use_roaming_token1] = ACTIONS(2752), + [aux_sym_user_token1] = ACTIONS(2754), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2752), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2752), + [aux_sym_visual_host_key_token1] = ACTIONS(2752), + [aux_sym_xauth_location_token1] = ACTIONS(2752), }, [398] = { - [ts_builtin_sym_end] = ACTIONS(2749), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2751), - [anon_sym_DQUOTE] = ACTIONS(2753), - [aux_sym_match_token1] = ACTIONS(2749), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2749), - [aux_sym_address_family_token1] = ACTIONS(2749), - [aux_sym_batch_mode_token1] = ACTIONS(2749), - [aux_sym_bind_address_token1] = ACTIONS(2749), - [aux_sym_bind_interface_token1] = ACTIONS(2749), - [aux_sym_canonical_domains_token1] = ACTIONS(2749), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2749), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2749), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2749), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2749), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2749), - [aux_sym_certificate_file_token1] = ACTIONS(2749), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2749), - [aux_sym_check_host_ip_token1] = ACTIONS(2749), - [aux_sym_ciphers_token1] = ACTIONS(2749), - [aux_sym_cipher_token1] = ACTIONS(2751), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2749), - [aux_sym_compression_token1] = ACTIONS(2749), - [aux_sym_connection_attempts_token1] = ACTIONS(2749), - [aux_sym_connect_timeout_token1] = ACTIONS(2749), - [aux_sym_control_master_token1] = ACTIONS(2749), - [aux_sym_control_path_token1] = ACTIONS(2749), - [aux_sym_control_persist_token1] = ACTIONS(2749), - [aux_sym_dynamic_forward_token1] = ACTIONS(2749), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2749), - [aux_sym_escape_char_token1] = ACTIONS(2749), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2749), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2749), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2749), - [aux_sym_forward_agent_token1] = ACTIONS(2749), - [aux_sym_forward_x11_token1] = ACTIONS(2751), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2749), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2749), - [aux_sym_gateway_ports_token1] = ACTIONS(2749), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2749), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2749), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2749), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2749), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2749), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2749), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2749), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2749), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2749), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2749), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2749), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2749), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2749), - [aux_sym_host_key_alias_token1] = ACTIONS(2749), - [aux_sym_hostname_token1] = ACTIONS(2749), - [aux_sym_identities_only_token1] = ACTIONS(2749), - [aux_sym_identity_agent_token1] = ACTIONS(2749), - [aux_sym_identity_file_token1] = ACTIONS(2749), - [aux_sym_ignore_unknown_token1] = ACTIONS(2749), - [aux_sym_include_token1] = ACTIONS(2749), - [aux_sym_ip_qos_token1] = ACTIONS(2749), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2749), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2749), - [aux_sym_kex_algorithms_token1] = ACTIONS(2749), - [aux_sym_known_hosts_command_token1] = ACTIONS(2749), - [aux_sym_local_command_token1] = ACTIONS(2749), - [aux_sym_local_forward_token1] = ACTIONS(2749), - [aux_sym_log_level_token1] = ACTIONS(2749), - [aux_sym_log_verbose_token1] = ACTIONS(2749), - [aux_sym_macs_token1] = ACTIONS(2749), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2749), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2749), - [aux_sym_password_authentication_token1] = ACTIONS(2749), - [aux_sym_permit_local_command_token1] = ACTIONS(2749), - [aux_sym_permit_remote_open_token1] = ACTIONS(2749), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2749), - [aux_sym_port_token1] = ACTIONS(2749), - [aux_sym_preferred_authentications_token1] = ACTIONS(2749), - [aux_sym_protocol_token1] = ACTIONS(2749), - [aux_sym_proxy_command_token1] = ACTIONS(2749), - [aux_sym_proxy_jump_token1] = ACTIONS(2749), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2749), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2749), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2749), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2749), - [aux_sym_rekey_limit_token1] = ACTIONS(2749), - [aux_sym_remote_command_token1] = ACTIONS(2749), - [aux_sym_remote_forward_token1] = ACTIONS(2749), - [aux_sym_request_tty_token1] = ACTIONS(2749), - [aux_sym_required_rsa_size_token1] = ACTIONS(2749), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2749), - [aux_sym_security_key_provider_token1] = ACTIONS(2749), - [aux_sym_send_env_token1] = ACTIONS(2749), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2749), - [aux_sym_server_alive_interval_token1] = ACTIONS(2749), - [aux_sym_session_type_token1] = ACTIONS(2749), - [aux_sym_set_env_token1] = ACTIONS(2749), - [aux_sym_stdin_null_token1] = ACTIONS(2749), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2749), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2749), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2749), - [aux_sym_syslog_facility_token1] = ACTIONS(2749), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2749), - [aux_sym_keep_alive_token1] = ACTIONS(2749), - [aux_sym_tunnel_token1] = ACTIONS(2751), - [aux_sym_tunnel_device_token1] = ACTIONS(2749), - [aux_sym_update_host_keys_token1] = ACTIONS(2749), - [aux_sym_use_keychain_token1] = ACTIONS(2749), - [aux_sym_use_roaming_token1] = ACTIONS(2749), - [aux_sym_user_token1] = ACTIONS(2751), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2749), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2749), - [aux_sym_visual_host_key_token1] = ACTIONS(2749), - [aux_sym_xauth_location_token1] = ACTIONS(2749), + [ts_builtin_sym_end] = ACTIONS(2758), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2760), + [anon_sym_DQUOTE] = ACTIONS(2758), + [aux_sym_match_token1] = ACTIONS(2758), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2758), + [aux_sym_address_family_token1] = ACTIONS(2758), + [aux_sym_batch_mode_token1] = ACTIONS(2758), + [aux_sym_bind_address_token1] = ACTIONS(2758), + [aux_sym_bind_interface_token1] = ACTIONS(2758), + [aux_sym_canonical_domains_token1] = ACTIONS(2758), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2758), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2758), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2758), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2758), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2758), + [aux_sym_certificate_file_token1] = ACTIONS(2758), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2758), + [aux_sym_check_host_ip_token1] = ACTIONS(2758), + [aux_sym_ciphers_token1] = ACTIONS(2758), + [aux_sym_cipher_token1] = ACTIONS(2760), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2758), + [aux_sym_compression_token1] = ACTIONS(2758), + [aux_sym_connection_attempts_token1] = ACTIONS(2758), + [aux_sym_connect_timeout_token1] = ACTIONS(2758), + [aux_sym_control_master_token1] = ACTIONS(2758), + [aux_sym_control_path_token1] = ACTIONS(2758), + [aux_sym_control_persist_token1] = ACTIONS(2758), + [aux_sym_dynamic_forward_token1] = ACTIONS(2758), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2758), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2758), + [aux_sym_escape_char_token1] = ACTIONS(2758), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2758), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2758), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2758), + [aux_sym_forward_agent_token1] = ACTIONS(2758), + [aux_sym_forward_x11_token1] = ACTIONS(2760), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2758), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2758), + [aux_sym_gateway_ports_token1] = ACTIONS(2758), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2758), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2758), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2758), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2758), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2758), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2758), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2758), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2758), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2758), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2758), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2758), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2758), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2758), + [aux_sym_host_key_alias_token1] = ACTIONS(2758), + [aux_sym_hostname_token1] = ACTIONS(2758), + [aux_sym_identities_only_token1] = ACTIONS(2758), + [aux_sym_identity_agent_token1] = ACTIONS(2758), + [aux_sym_identity_file_token1] = ACTIONS(2758), + [aux_sym_ignore_unknown_token1] = ACTIONS(2758), + [aux_sym_include_token1] = ACTIONS(2758), + [aux_sym_ip_qos_token1] = ACTIONS(2758), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2758), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2758), + [aux_sym_kex_algorithms_token1] = ACTIONS(2758), + [aux_sym_known_hosts_command_token1] = ACTIONS(2758), + [aux_sym_local_command_token1] = ACTIONS(2758), + [aux_sym_local_forward_token1] = ACTIONS(2758), + [aux_sym_log_level_token1] = ACTIONS(2758), + [aux_sym_log_verbose_token1] = ACTIONS(2758), + [aux_sym_macs_token1] = ACTIONS(2758), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2758), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2758), + [aux_sym_password_authentication_token1] = ACTIONS(2758), + [aux_sym_permit_local_command_token1] = ACTIONS(2758), + [aux_sym_permit_remote_open_token1] = ACTIONS(2758), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2758), + [aux_sym_port_token1] = ACTIONS(2758), + [aux_sym_preferred_authentications_token1] = ACTIONS(2758), + [aux_sym_protocol_token1] = ACTIONS(2758), + [aux_sym_proxy_command_token1] = ACTIONS(2758), + [aux_sym_proxy_jump_token1] = ACTIONS(2758), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2758), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2758), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2758), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2758), + [aux_sym_rekey_limit_token1] = ACTIONS(2758), + [aux_sym_remote_command_token1] = ACTIONS(2758), + [aux_sym_remote_forward_token1] = ACTIONS(2758), + [aux_sym_request_tty_token1] = ACTIONS(2758), + [aux_sym_required_rsa_size_token1] = ACTIONS(2758), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2758), + [aux_sym_security_key_provider_token1] = ACTIONS(2758), + [aux_sym_send_env_token1] = ACTIONS(2758), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2758), + [aux_sym_server_alive_interval_token1] = ACTIONS(2758), + [aux_sym_session_type_token1] = ACTIONS(2758), + [aux_sym_set_env_token1] = ACTIONS(2758), + [aux_sym_stdin_null_token1] = ACTIONS(2758), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2758), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2758), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2758), + [aux_sym_syslog_facility_token1] = ACTIONS(2758), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2758), + [aux_sym_keep_alive_token1] = ACTIONS(2758), + [aux_sym_tunnel_token1] = ACTIONS(2760), + [aux_sym_tunnel_device_token1] = ACTIONS(2758), + [aux_sym_update_host_keys_token1] = ACTIONS(2758), + [aux_sym_use_keychain_token1] = ACTIONS(2758), + [aux_sym_use_roaming_token1] = ACTIONS(2758), + [aux_sym_user_token1] = ACTIONS(2760), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2758), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2758), + [aux_sym_visual_host_key_token1] = ACTIONS(2758), + [aux_sym_xauth_location_token1] = ACTIONS(2758), }, [399] = { - [ts_builtin_sym_end] = ACTIONS(2755), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2757), - [anon_sym_DQUOTE] = ACTIONS(2759), - [aux_sym_match_token1] = ACTIONS(2755), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2755), - [aux_sym_address_family_token1] = ACTIONS(2755), - [aux_sym_batch_mode_token1] = ACTIONS(2755), - [aux_sym_bind_address_token1] = ACTIONS(2755), - [aux_sym_bind_interface_token1] = ACTIONS(2755), - [aux_sym_canonical_domains_token1] = ACTIONS(2755), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2755), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2755), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2755), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2755), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2755), - [aux_sym_certificate_file_token1] = ACTIONS(2755), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2755), - [aux_sym_check_host_ip_token1] = ACTIONS(2755), - [aux_sym_ciphers_token1] = ACTIONS(2755), - [aux_sym_cipher_token1] = ACTIONS(2757), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2755), - [aux_sym_compression_token1] = ACTIONS(2755), - [aux_sym_connection_attempts_token1] = ACTIONS(2755), - [aux_sym_connect_timeout_token1] = ACTIONS(2755), - [aux_sym_control_master_token1] = ACTIONS(2755), - [aux_sym_control_path_token1] = ACTIONS(2755), - [aux_sym_control_persist_token1] = ACTIONS(2755), - [aux_sym_dynamic_forward_token1] = ACTIONS(2755), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2755), - [aux_sym_escape_char_token1] = ACTIONS(2755), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2755), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2755), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2755), - [aux_sym_forward_agent_token1] = ACTIONS(2755), - [aux_sym_forward_x11_token1] = ACTIONS(2757), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2755), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2755), - [aux_sym_gateway_ports_token1] = ACTIONS(2755), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2755), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2755), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2755), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2755), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2755), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2755), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2755), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2755), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2755), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2755), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2755), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2755), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2755), - [aux_sym_host_key_alias_token1] = ACTIONS(2755), - [aux_sym_hostname_token1] = ACTIONS(2755), - [aux_sym_identities_only_token1] = ACTIONS(2755), - [aux_sym_identity_agent_token1] = ACTIONS(2755), - [aux_sym_identity_file_token1] = ACTIONS(2755), - [aux_sym_ignore_unknown_token1] = ACTIONS(2755), - [aux_sym_include_token1] = ACTIONS(2755), - [aux_sym_ip_qos_token1] = ACTIONS(2755), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2755), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2755), - [aux_sym_kex_algorithms_token1] = ACTIONS(2755), - [aux_sym_known_hosts_command_token1] = ACTIONS(2755), - [aux_sym_local_command_token1] = ACTIONS(2755), - [aux_sym_local_forward_token1] = ACTIONS(2755), - [aux_sym_log_level_token1] = ACTIONS(2755), - [aux_sym_log_verbose_token1] = ACTIONS(2755), - [aux_sym_macs_token1] = ACTIONS(2755), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2755), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2755), - [aux_sym_password_authentication_token1] = ACTIONS(2755), - [aux_sym_permit_local_command_token1] = ACTIONS(2755), - [aux_sym_permit_remote_open_token1] = ACTIONS(2755), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2755), - [aux_sym_port_token1] = ACTIONS(2755), - [aux_sym_preferred_authentications_token1] = ACTIONS(2755), - [aux_sym_protocol_token1] = ACTIONS(2755), - [aux_sym_proxy_command_token1] = ACTIONS(2755), - [aux_sym_proxy_jump_token1] = ACTIONS(2755), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2755), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2755), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2755), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2755), - [aux_sym_rekey_limit_token1] = ACTIONS(2755), - [aux_sym_remote_command_token1] = ACTIONS(2755), - [aux_sym_remote_forward_token1] = ACTIONS(2755), - [aux_sym_request_tty_token1] = ACTIONS(2755), - [aux_sym_required_rsa_size_token1] = ACTIONS(2755), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2755), - [aux_sym_security_key_provider_token1] = ACTIONS(2755), - [aux_sym_send_env_token1] = ACTIONS(2755), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2755), - [aux_sym_server_alive_interval_token1] = ACTIONS(2755), - [aux_sym_session_type_token1] = ACTIONS(2755), - [aux_sym_set_env_token1] = ACTIONS(2755), - [aux_sym_stdin_null_token1] = ACTIONS(2755), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2755), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2755), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2755), - [aux_sym_syslog_facility_token1] = ACTIONS(2755), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2755), - [aux_sym_keep_alive_token1] = ACTIONS(2755), - [aux_sym_tunnel_token1] = ACTIONS(2757), - [aux_sym_tunnel_device_token1] = ACTIONS(2755), - [aux_sym_update_host_keys_token1] = ACTIONS(2755), - [aux_sym_use_keychain_token1] = ACTIONS(2755), - [aux_sym_use_roaming_token1] = ACTIONS(2755), - [aux_sym_user_token1] = ACTIONS(2757), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2755), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2755), - [aux_sym_visual_host_key_token1] = ACTIONS(2755), - [aux_sym_xauth_location_token1] = ACTIONS(2755), + [ts_builtin_sym_end] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2762), + [aux_sym_match_token1] = ACTIONS(2762), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2762), + [aux_sym_address_family_token1] = ACTIONS(2762), + [aux_sym_batch_mode_token1] = ACTIONS(2762), + [aux_sym_bind_address_token1] = ACTIONS(2762), + [aux_sym_bind_interface_token1] = ACTIONS(2762), + [aux_sym_canonical_domains_token1] = ACTIONS(2762), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2762), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2762), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2762), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2762), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2762), + [aux_sym_certificate_file_token1] = ACTIONS(2762), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2762), + [aux_sym_check_host_ip_token1] = ACTIONS(2762), + [aux_sym_ciphers_token1] = ACTIONS(2762), + [aux_sym_cipher_token1] = ACTIONS(2764), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2762), + [aux_sym_compression_token1] = ACTIONS(2762), + [aux_sym_connection_attempts_token1] = ACTIONS(2762), + [aux_sym_connect_timeout_token1] = ACTIONS(2762), + [aux_sym_control_master_token1] = ACTIONS(2762), + [aux_sym_control_path_token1] = ACTIONS(2762), + [aux_sym_control_persist_token1] = ACTIONS(2762), + [aux_sym_dynamic_forward_token1] = ACTIONS(2762), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2762), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2762), + [aux_sym_escape_char_token1] = ACTIONS(2762), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2762), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2762), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2762), + [aux_sym_forward_agent_token1] = ACTIONS(2762), + [aux_sym_forward_x11_token1] = ACTIONS(2764), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2762), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2762), + [aux_sym_gateway_ports_token1] = ACTIONS(2762), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2762), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2762), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2762), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2762), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2762), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2762), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2762), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2762), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2762), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2762), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2762), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2762), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2762), + [aux_sym_host_key_alias_token1] = ACTIONS(2762), + [aux_sym_hostname_token1] = ACTIONS(2762), + [aux_sym_identities_only_token1] = ACTIONS(2762), + [aux_sym_identity_agent_token1] = ACTIONS(2762), + [aux_sym_identity_file_token1] = ACTIONS(2762), + [aux_sym_ignore_unknown_token1] = ACTIONS(2762), + [aux_sym_include_token1] = ACTIONS(2762), + [aux_sym_ip_qos_token1] = ACTIONS(2762), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2762), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2762), + [aux_sym_kex_algorithms_token1] = ACTIONS(2762), + [aux_sym_known_hosts_command_token1] = ACTIONS(2762), + [aux_sym_local_command_token1] = ACTIONS(2762), + [aux_sym_local_forward_token1] = ACTIONS(2762), + [aux_sym_log_level_token1] = ACTIONS(2762), + [aux_sym_log_verbose_token1] = ACTIONS(2762), + [aux_sym_macs_token1] = ACTIONS(2762), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2762), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2762), + [aux_sym_password_authentication_token1] = ACTIONS(2762), + [aux_sym_permit_local_command_token1] = ACTIONS(2762), + [aux_sym_permit_remote_open_token1] = ACTIONS(2762), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2762), + [aux_sym_port_token1] = ACTIONS(2762), + [aux_sym_preferred_authentications_token1] = ACTIONS(2762), + [aux_sym_protocol_token1] = ACTIONS(2762), + [aux_sym_proxy_command_token1] = ACTIONS(2762), + [aux_sym_proxy_jump_token1] = ACTIONS(2762), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2762), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2762), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2762), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2762), + [aux_sym_rekey_limit_token1] = ACTIONS(2762), + [aux_sym_remote_command_token1] = ACTIONS(2762), + [aux_sym_remote_forward_token1] = ACTIONS(2762), + [aux_sym_request_tty_token1] = ACTIONS(2762), + [aux_sym_required_rsa_size_token1] = ACTIONS(2762), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2762), + [aux_sym_security_key_provider_token1] = ACTIONS(2762), + [aux_sym_send_env_token1] = ACTIONS(2762), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2762), + [aux_sym_server_alive_interval_token1] = ACTIONS(2762), + [aux_sym_session_type_token1] = ACTIONS(2762), + [aux_sym_set_env_token1] = ACTIONS(2762), + [aux_sym_stdin_null_token1] = ACTIONS(2762), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2762), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2762), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2762), + [aux_sym_syslog_facility_token1] = ACTIONS(2762), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2762), + [aux_sym_keep_alive_token1] = ACTIONS(2762), + [aux_sym_tunnel_token1] = ACTIONS(2764), + [aux_sym_tunnel_device_token1] = ACTIONS(2762), + [aux_sym_update_host_keys_token1] = ACTIONS(2762), + [aux_sym_use_keychain_token1] = ACTIONS(2762), + [aux_sym_use_roaming_token1] = ACTIONS(2762), + [aux_sym_user_token1] = ACTIONS(2764), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2762), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2762), + [aux_sym_visual_host_key_token1] = ACTIONS(2762), + [aux_sym_xauth_location_token1] = ACTIONS(2762), }, [400] = { - [ts_builtin_sym_end] = ACTIONS(2761), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2763), - [anon_sym_DQUOTE] = ACTIONS(2761), - [aux_sym_match_token1] = ACTIONS(2761), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2761), - [aux_sym_address_family_token1] = ACTIONS(2761), - [aux_sym_batch_mode_token1] = ACTIONS(2761), - [aux_sym_bind_address_token1] = ACTIONS(2761), - [aux_sym_bind_interface_token1] = ACTIONS(2761), - [aux_sym_canonical_domains_token1] = ACTIONS(2761), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2761), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2761), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2761), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2761), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2761), - [aux_sym_certificate_file_token1] = ACTIONS(2761), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2761), - [aux_sym_check_host_ip_token1] = ACTIONS(2761), - [aux_sym_ciphers_token1] = ACTIONS(2761), - [aux_sym_cipher_token1] = ACTIONS(2763), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2761), - [aux_sym_compression_token1] = ACTIONS(2761), - [aux_sym_connection_attempts_token1] = ACTIONS(2761), - [aux_sym_connect_timeout_token1] = ACTIONS(2761), - [aux_sym_control_master_token1] = ACTIONS(2761), - [aux_sym_control_path_token1] = ACTIONS(2761), - [aux_sym_control_persist_token1] = ACTIONS(2761), - [aux_sym_dynamic_forward_token1] = ACTIONS(2761), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2761), - [aux_sym_escape_char_token1] = ACTIONS(2761), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2761), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2761), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2761), - [aux_sym_forward_agent_token1] = ACTIONS(2761), - [aux_sym_forward_x11_token1] = ACTIONS(2763), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2761), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2761), - [aux_sym_gateway_ports_token1] = ACTIONS(2761), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2761), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2761), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2761), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2761), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2761), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2761), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2761), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2761), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2761), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2761), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2761), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2761), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2761), - [aux_sym_host_key_alias_token1] = ACTIONS(2761), - [aux_sym_hostname_token1] = ACTIONS(2761), - [aux_sym_identities_only_token1] = ACTIONS(2761), - [aux_sym_identity_agent_token1] = ACTIONS(2761), - [aux_sym_identity_file_token1] = ACTIONS(2761), - [aux_sym_ignore_unknown_token1] = ACTIONS(2761), - [aux_sym_include_token1] = ACTIONS(2761), - [aux_sym_ip_qos_token1] = ACTIONS(2761), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2761), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2761), - [aux_sym_kex_algorithms_token1] = ACTIONS(2761), - [aux_sym_known_hosts_command_token1] = ACTIONS(2761), - [aux_sym_local_command_token1] = ACTIONS(2761), - [aux_sym_local_forward_token1] = ACTIONS(2761), - [aux_sym_log_level_token1] = ACTIONS(2761), - [aux_sym_log_verbose_token1] = ACTIONS(2761), - [aux_sym_macs_token1] = ACTIONS(2761), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2761), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2761), - [aux_sym_password_authentication_token1] = ACTIONS(2761), - [aux_sym_permit_local_command_token1] = ACTIONS(2761), - [aux_sym_permit_remote_open_token1] = ACTIONS(2761), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2761), - [aux_sym_port_token1] = ACTIONS(2761), - [aux_sym_preferred_authentications_token1] = ACTIONS(2761), - [aux_sym_protocol_token1] = ACTIONS(2761), - [aux_sym_proxy_command_token1] = ACTIONS(2761), - [aux_sym_proxy_jump_token1] = ACTIONS(2761), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2761), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2761), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2761), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2761), - [aux_sym_rekey_limit_token1] = ACTIONS(2761), - [aux_sym_remote_command_token1] = ACTIONS(2761), - [aux_sym_remote_forward_token1] = ACTIONS(2761), - [aux_sym_request_tty_token1] = ACTIONS(2761), - [aux_sym_required_rsa_size_token1] = ACTIONS(2761), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2761), - [aux_sym_security_key_provider_token1] = ACTIONS(2761), - [aux_sym_send_env_token1] = ACTIONS(2761), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2761), - [aux_sym_server_alive_interval_token1] = ACTIONS(2761), - [aux_sym_session_type_token1] = ACTIONS(2761), - [aux_sym_set_env_token1] = ACTIONS(2761), - [aux_sym_stdin_null_token1] = ACTIONS(2761), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2761), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2761), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2761), - [aux_sym_syslog_facility_token1] = ACTIONS(2761), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2761), - [aux_sym_keep_alive_token1] = ACTIONS(2761), - [aux_sym_tunnel_token1] = ACTIONS(2763), - [aux_sym_tunnel_device_token1] = ACTIONS(2761), - [aux_sym_update_host_keys_token1] = ACTIONS(2761), - [aux_sym_use_keychain_token1] = ACTIONS(2761), - [aux_sym_use_roaming_token1] = ACTIONS(2761), - [aux_sym_user_token1] = ACTIONS(2763), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2761), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2761), - [aux_sym_visual_host_key_token1] = ACTIONS(2761), - [aux_sym_xauth_location_token1] = ACTIONS(2761), + [ts_builtin_sym_end] = ACTIONS(2766), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2770), + [aux_sym_match_token1] = ACTIONS(2766), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2766), + [aux_sym_address_family_token1] = ACTIONS(2766), + [aux_sym_batch_mode_token1] = ACTIONS(2766), + [aux_sym_bind_address_token1] = ACTIONS(2766), + [aux_sym_bind_interface_token1] = ACTIONS(2766), + [aux_sym_canonical_domains_token1] = ACTIONS(2766), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2766), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2766), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2766), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2766), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2766), + [aux_sym_certificate_file_token1] = ACTIONS(2766), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2766), + [aux_sym_check_host_ip_token1] = ACTIONS(2766), + [aux_sym_ciphers_token1] = ACTIONS(2766), + [aux_sym_cipher_token1] = ACTIONS(2768), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2766), + [aux_sym_compression_token1] = ACTIONS(2766), + [aux_sym_connection_attempts_token1] = ACTIONS(2766), + [aux_sym_connect_timeout_token1] = ACTIONS(2766), + [aux_sym_control_master_token1] = ACTIONS(2766), + [aux_sym_control_path_token1] = ACTIONS(2766), + [aux_sym_control_persist_token1] = ACTIONS(2766), + [aux_sym_dynamic_forward_token1] = ACTIONS(2766), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2766), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2766), + [aux_sym_escape_char_token1] = ACTIONS(2766), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2766), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2766), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2766), + [aux_sym_forward_agent_token1] = ACTIONS(2766), + [aux_sym_forward_x11_token1] = ACTIONS(2768), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2766), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2766), + [aux_sym_gateway_ports_token1] = ACTIONS(2766), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2766), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2766), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2766), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2766), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2766), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2766), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2766), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2766), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2766), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2766), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2766), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2766), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2766), + [aux_sym_host_key_alias_token1] = ACTIONS(2766), + [aux_sym_hostname_token1] = ACTIONS(2766), + [aux_sym_identities_only_token1] = ACTIONS(2766), + [aux_sym_identity_agent_token1] = ACTIONS(2766), + [aux_sym_identity_file_token1] = ACTIONS(2766), + [aux_sym_ignore_unknown_token1] = ACTIONS(2766), + [aux_sym_include_token1] = ACTIONS(2766), + [aux_sym_ip_qos_token1] = ACTIONS(2766), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2766), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2766), + [aux_sym_kex_algorithms_token1] = ACTIONS(2766), + [aux_sym_known_hosts_command_token1] = ACTIONS(2766), + [aux_sym_local_command_token1] = ACTIONS(2766), + [aux_sym_local_forward_token1] = ACTIONS(2766), + [aux_sym_log_level_token1] = ACTIONS(2766), + [aux_sym_log_verbose_token1] = ACTIONS(2766), + [aux_sym_macs_token1] = ACTIONS(2766), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2766), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2766), + [aux_sym_password_authentication_token1] = ACTIONS(2766), + [aux_sym_permit_local_command_token1] = ACTIONS(2766), + [aux_sym_permit_remote_open_token1] = ACTIONS(2766), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2766), + [aux_sym_port_token1] = ACTIONS(2766), + [aux_sym_preferred_authentications_token1] = ACTIONS(2766), + [aux_sym_protocol_token1] = ACTIONS(2766), + [aux_sym_proxy_command_token1] = ACTIONS(2766), + [aux_sym_proxy_jump_token1] = ACTIONS(2766), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2766), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2766), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2766), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2766), + [aux_sym_rekey_limit_token1] = ACTIONS(2766), + [aux_sym_remote_command_token1] = ACTIONS(2766), + [aux_sym_remote_forward_token1] = ACTIONS(2766), + [aux_sym_request_tty_token1] = ACTIONS(2766), + [aux_sym_required_rsa_size_token1] = ACTIONS(2766), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2766), + [aux_sym_security_key_provider_token1] = ACTIONS(2766), + [aux_sym_send_env_token1] = ACTIONS(2766), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2766), + [aux_sym_server_alive_interval_token1] = ACTIONS(2766), + [aux_sym_session_type_token1] = ACTIONS(2766), + [aux_sym_set_env_token1] = ACTIONS(2766), + [aux_sym_stdin_null_token1] = ACTIONS(2766), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2766), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2766), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2766), + [aux_sym_syslog_facility_token1] = ACTIONS(2766), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2766), + [aux_sym_keep_alive_token1] = ACTIONS(2766), + [aux_sym_tunnel_token1] = ACTIONS(2768), + [aux_sym_tunnel_device_token1] = ACTIONS(2766), + [aux_sym_update_host_keys_token1] = ACTIONS(2766), + [aux_sym_use_keychain_token1] = ACTIONS(2766), + [aux_sym_use_roaming_token1] = ACTIONS(2766), + [aux_sym_user_token1] = ACTIONS(2768), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2766), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2766), + [aux_sym_visual_host_key_token1] = ACTIONS(2766), + [aux_sym_xauth_location_token1] = ACTIONS(2766), }, [401] = { - [ts_builtin_sym_end] = ACTIONS(2765), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2767), - [anon_sym_DQUOTE] = ACTIONS(2765), - [aux_sym_match_token1] = ACTIONS(2765), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2765), - [aux_sym_address_family_token1] = ACTIONS(2765), - [aux_sym_batch_mode_token1] = ACTIONS(2765), - [aux_sym_bind_address_token1] = ACTIONS(2765), - [aux_sym_bind_interface_token1] = ACTIONS(2765), - [aux_sym_canonical_domains_token1] = ACTIONS(2765), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2765), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2765), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2765), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2765), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2765), - [aux_sym_certificate_file_token1] = ACTIONS(2765), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2765), - [aux_sym_check_host_ip_token1] = ACTIONS(2765), - [aux_sym_ciphers_token1] = ACTIONS(2765), - [aux_sym_cipher_token1] = ACTIONS(2767), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2765), - [aux_sym_compression_token1] = ACTIONS(2765), - [aux_sym_connection_attempts_token1] = ACTIONS(2765), - [aux_sym_connect_timeout_token1] = ACTIONS(2765), - [aux_sym_control_master_token1] = ACTIONS(2765), - [aux_sym_control_path_token1] = ACTIONS(2765), - [aux_sym_control_persist_token1] = ACTIONS(2765), - [aux_sym_dynamic_forward_token1] = ACTIONS(2765), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2765), - [aux_sym_escape_char_token1] = ACTIONS(2765), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2765), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2765), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2765), - [aux_sym_forward_agent_token1] = ACTIONS(2765), - [aux_sym_forward_x11_token1] = ACTIONS(2767), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2765), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2765), - [aux_sym_gateway_ports_token1] = ACTIONS(2765), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2765), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2765), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2765), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2765), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2765), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2765), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2765), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2765), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2765), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2765), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2765), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2765), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2765), - [aux_sym_host_key_alias_token1] = ACTIONS(2765), - [aux_sym_hostname_token1] = ACTIONS(2765), - [aux_sym_identities_only_token1] = ACTIONS(2765), - [aux_sym_identity_agent_token1] = ACTIONS(2765), - [aux_sym_identity_file_token1] = ACTIONS(2765), - [aux_sym_ignore_unknown_token1] = ACTIONS(2765), - [aux_sym_include_token1] = ACTIONS(2765), - [aux_sym_ip_qos_token1] = ACTIONS(2765), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2765), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2765), - [aux_sym_kex_algorithms_token1] = ACTIONS(2765), - [aux_sym_known_hosts_command_token1] = ACTIONS(2765), - [aux_sym_local_command_token1] = ACTIONS(2765), - [aux_sym_local_forward_token1] = ACTIONS(2765), - [aux_sym_log_level_token1] = ACTIONS(2765), - [aux_sym_log_verbose_token1] = ACTIONS(2765), - [aux_sym_macs_token1] = ACTIONS(2765), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2765), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2765), - [aux_sym_password_authentication_token1] = ACTIONS(2765), - [aux_sym_permit_local_command_token1] = ACTIONS(2765), - [aux_sym_permit_remote_open_token1] = ACTIONS(2765), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2765), - [aux_sym_port_token1] = ACTIONS(2765), - [aux_sym_preferred_authentications_token1] = ACTIONS(2765), - [aux_sym_protocol_token1] = ACTIONS(2765), - [aux_sym_proxy_command_token1] = ACTIONS(2765), - [aux_sym_proxy_jump_token1] = ACTIONS(2765), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2765), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2765), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2765), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2765), - [aux_sym_rekey_limit_token1] = ACTIONS(2765), - [aux_sym_remote_command_token1] = ACTIONS(2765), - [aux_sym_remote_forward_token1] = ACTIONS(2765), - [aux_sym_request_tty_token1] = ACTIONS(2765), - [aux_sym_required_rsa_size_token1] = ACTIONS(2765), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2765), - [aux_sym_security_key_provider_token1] = ACTIONS(2765), - [aux_sym_send_env_token1] = ACTIONS(2765), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2765), - [aux_sym_server_alive_interval_token1] = ACTIONS(2765), - [aux_sym_session_type_token1] = ACTIONS(2765), - [aux_sym_set_env_token1] = ACTIONS(2765), - [aux_sym_stdin_null_token1] = ACTIONS(2765), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2765), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2765), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2765), - [aux_sym_syslog_facility_token1] = ACTIONS(2765), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2765), - [aux_sym_keep_alive_token1] = ACTIONS(2765), - [aux_sym_tunnel_token1] = ACTIONS(2767), - [aux_sym_tunnel_device_token1] = ACTIONS(2765), - [aux_sym_update_host_keys_token1] = ACTIONS(2765), - [aux_sym_use_keychain_token1] = ACTIONS(2765), - [aux_sym_use_roaming_token1] = ACTIONS(2765), - [aux_sym_user_token1] = ACTIONS(2767), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2765), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2765), - [aux_sym_visual_host_key_token1] = ACTIONS(2765), - [aux_sym_xauth_location_token1] = ACTIONS(2765), + [ts_builtin_sym_end] = ACTIONS(2772), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(2772), + [aux_sym_match_token1] = ACTIONS(2772), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2772), + [aux_sym_address_family_token1] = ACTIONS(2772), + [aux_sym_batch_mode_token1] = ACTIONS(2772), + [aux_sym_bind_address_token1] = ACTIONS(2772), + [aux_sym_bind_interface_token1] = ACTIONS(2772), + [aux_sym_canonical_domains_token1] = ACTIONS(2772), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2772), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2772), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2772), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2772), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2772), + [aux_sym_certificate_file_token1] = ACTIONS(2772), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2772), + [aux_sym_check_host_ip_token1] = ACTIONS(2772), + [aux_sym_ciphers_token1] = ACTIONS(2772), + [aux_sym_cipher_token1] = ACTIONS(2774), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2772), + [aux_sym_compression_token1] = ACTIONS(2772), + [aux_sym_connection_attempts_token1] = ACTIONS(2772), + [aux_sym_connect_timeout_token1] = ACTIONS(2772), + [aux_sym_control_master_token1] = ACTIONS(2772), + [aux_sym_control_path_token1] = ACTIONS(2772), + [aux_sym_control_persist_token1] = ACTIONS(2772), + [aux_sym_dynamic_forward_token1] = ACTIONS(2772), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2772), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2772), + [aux_sym_escape_char_token1] = ACTIONS(2772), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2772), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2772), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2772), + [aux_sym_forward_agent_token1] = ACTIONS(2772), + [aux_sym_forward_x11_token1] = ACTIONS(2774), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2772), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2772), + [aux_sym_gateway_ports_token1] = ACTIONS(2772), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2772), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2772), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2772), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2772), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2772), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2772), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2772), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2772), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2772), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2772), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2772), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2772), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2772), + [aux_sym_host_key_alias_token1] = ACTIONS(2772), + [aux_sym_hostname_token1] = ACTIONS(2772), + [aux_sym_identities_only_token1] = ACTIONS(2772), + [aux_sym_identity_agent_token1] = ACTIONS(2772), + [aux_sym_identity_file_token1] = ACTIONS(2772), + [aux_sym_ignore_unknown_token1] = ACTIONS(2772), + [aux_sym_include_token1] = ACTIONS(2772), + [aux_sym_ip_qos_token1] = ACTIONS(2772), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2772), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2772), + [aux_sym_kex_algorithms_token1] = ACTIONS(2772), + [aux_sym_known_hosts_command_token1] = ACTIONS(2772), + [aux_sym_local_command_token1] = ACTIONS(2772), + [aux_sym_local_forward_token1] = ACTIONS(2772), + [aux_sym_log_level_token1] = ACTIONS(2772), + [aux_sym_log_verbose_token1] = ACTIONS(2772), + [aux_sym_macs_token1] = ACTIONS(2772), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2772), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2772), + [aux_sym_password_authentication_token1] = ACTIONS(2772), + [aux_sym_permit_local_command_token1] = ACTIONS(2772), + [aux_sym_permit_remote_open_token1] = ACTIONS(2772), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2772), + [aux_sym_port_token1] = ACTIONS(2772), + [aux_sym_preferred_authentications_token1] = ACTIONS(2772), + [aux_sym_protocol_token1] = ACTIONS(2772), + [aux_sym_proxy_command_token1] = ACTIONS(2772), + [aux_sym_proxy_jump_token1] = ACTIONS(2772), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2772), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2772), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2772), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2772), + [aux_sym_rekey_limit_token1] = ACTIONS(2772), + [aux_sym_remote_command_token1] = ACTIONS(2772), + [aux_sym_remote_forward_token1] = ACTIONS(2772), + [aux_sym_request_tty_token1] = ACTIONS(2772), + [aux_sym_required_rsa_size_token1] = ACTIONS(2772), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2772), + [aux_sym_security_key_provider_token1] = ACTIONS(2772), + [aux_sym_send_env_token1] = ACTIONS(2772), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2772), + [aux_sym_server_alive_interval_token1] = ACTIONS(2772), + [aux_sym_session_type_token1] = ACTIONS(2772), + [aux_sym_set_env_token1] = ACTIONS(2772), + [aux_sym_stdin_null_token1] = ACTIONS(2772), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2772), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2772), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2772), + [aux_sym_syslog_facility_token1] = ACTIONS(2772), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2772), + [aux_sym_keep_alive_token1] = ACTIONS(2772), + [aux_sym_tunnel_token1] = ACTIONS(2774), + [aux_sym_tunnel_device_token1] = ACTIONS(2772), + [aux_sym_update_host_keys_token1] = ACTIONS(2772), + [aux_sym_use_keychain_token1] = ACTIONS(2772), + [aux_sym_use_roaming_token1] = ACTIONS(2772), + [aux_sym_user_token1] = ACTIONS(2774), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2772), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2772), + [aux_sym_visual_host_key_token1] = ACTIONS(2772), + [aux_sym_xauth_location_token1] = ACTIONS(2772), }, [402] = { - [ts_builtin_sym_end] = ACTIONS(2769), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2771), - [anon_sym_DQUOTE] = ACTIONS(2773), - [aux_sym_match_token1] = ACTIONS(2769), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2769), - [aux_sym_address_family_token1] = ACTIONS(2769), - [aux_sym_batch_mode_token1] = ACTIONS(2769), - [aux_sym_bind_address_token1] = ACTIONS(2769), - [aux_sym_bind_interface_token1] = ACTIONS(2769), - [aux_sym_canonical_domains_token1] = ACTIONS(2769), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2769), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2769), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2769), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2769), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2769), - [aux_sym_certificate_file_token1] = ACTIONS(2769), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2769), - [aux_sym_check_host_ip_token1] = ACTIONS(2769), - [aux_sym_ciphers_token1] = ACTIONS(2769), - [aux_sym_cipher_token1] = ACTIONS(2771), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2769), - [aux_sym_compression_token1] = ACTIONS(2769), - [aux_sym_connection_attempts_token1] = ACTIONS(2769), - [aux_sym_connect_timeout_token1] = ACTIONS(2769), - [aux_sym_control_master_token1] = ACTIONS(2769), - [aux_sym_control_path_token1] = ACTIONS(2769), - [aux_sym_control_persist_token1] = ACTIONS(2769), - [aux_sym_dynamic_forward_token1] = ACTIONS(2769), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2769), - [aux_sym_escape_char_token1] = ACTIONS(2769), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2769), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2769), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2769), - [aux_sym_forward_agent_token1] = ACTIONS(2769), - [aux_sym_forward_x11_token1] = ACTIONS(2771), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2769), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2769), - [aux_sym_gateway_ports_token1] = ACTIONS(2769), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2769), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2769), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2769), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2769), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2769), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2769), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2769), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2769), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2769), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2769), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2769), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2769), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2769), - [aux_sym_host_key_alias_token1] = ACTIONS(2769), - [aux_sym_hostname_token1] = ACTIONS(2769), - [aux_sym_identities_only_token1] = ACTIONS(2769), - [aux_sym_identity_agent_token1] = ACTIONS(2769), - [aux_sym_identity_file_token1] = ACTIONS(2769), - [aux_sym_ignore_unknown_token1] = ACTIONS(2769), - [aux_sym_include_token1] = ACTIONS(2769), - [aux_sym_ip_qos_token1] = ACTIONS(2769), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2769), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2769), - [aux_sym_kex_algorithms_token1] = ACTIONS(2769), - [aux_sym_known_hosts_command_token1] = ACTIONS(2769), - [aux_sym_local_command_token1] = ACTIONS(2769), - [aux_sym_local_forward_token1] = ACTIONS(2769), - [aux_sym_log_level_token1] = ACTIONS(2769), - [aux_sym_log_verbose_token1] = ACTIONS(2769), - [aux_sym_macs_token1] = ACTIONS(2769), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2769), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2769), - [aux_sym_password_authentication_token1] = ACTIONS(2769), - [aux_sym_permit_local_command_token1] = ACTIONS(2769), - [aux_sym_permit_remote_open_token1] = ACTIONS(2769), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2769), - [aux_sym_port_token1] = ACTIONS(2769), - [aux_sym_preferred_authentications_token1] = ACTIONS(2769), - [aux_sym_protocol_token1] = ACTIONS(2769), - [aux_sym_proxy_command_token1] = ACTIONS(2769), - [aux_sym_proxy_jump_token1] = ACTIONS(2769), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2769), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2769), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2769), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2769), - [aux_sym_rekey_limit_token1] = ACTIONS(2769), - [aux_sym_remote_command_token1] = ACTIONS(2769), - [aux_sym_remote_forward_token1] = ACTIONS(2769), - [aux_sym_request_tty_token1] = ACTIONS(2769), - [aux_sym_required_rsa_size_token1] = ACTIONS(2769), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2769), - [aux_sym_security_key_provider_token1] = ACTIONS(2769), - [aux_sym_send_env_token1] = ACTIONS(2769), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2769), - [aux_sym_server_alive_interval_token1] = ACTIONS(2769), - [aux_sym_session_type_token1] = ACTIONS(2769), - [aux_sym_set_env_token1] = ACTIONS(2769), - [aux_sym_stdin_null_token1] = ACTIONS(2769), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2769), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2769), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2769), - [aux_sym_syslog_facility_token1] = ACTIONS(2769), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2769), - [aux_sym_keep_alive_token1] = ACTIONS(2769), - [aux_sym_tunnel_token1] = ACTIONS(2771), - [aux_sym_tunnel_device_token1] = ACTIONS(2769), - [aux_sym_update_host_keys_token1] = ACTIONS(2769), - [aux_sym_use_keychain_token1] = ACTIONS(2769), - [aux_sym_use_roaming_token1] = ACTIONS(2769), - [aux_sym_user_token1] = ACTIONS(2771), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2769), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2769), - [aux_sym_visual_host_key_token1] = ACTIONS(2769), - [aux_sym_xauth_location_token1] = ACTIONS(2769), + [ts_builtin_sym_end] = ACTIONS(2776), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2778), + [anon_sym_DQUOTE] = ACTIONS(2780), + [aux_sym_match_token1] = ACTIONS(2776), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2776), + [aux_sym_address_family_token1] = ACTIONS(2776), + [aux_sym_batch_mode_token1] = ACTIONS(2776), + [aux_sym_bind_address_token1] = ACTIONS(2776), + [aux_sym_bind_interface_token1] = ACTIONS(2776), + [aux_sym_canonical_domains_token1] = ACTIONS(2776), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2776), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2776), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2776), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2776), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2776), + [aux_sym_certificate_file_token1] = ACTIONS(2776), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2776), + [aux_sym_check_host_ip_token1] = ACTIONS(2776), + [aux_sym_ciphers_token1] = ACTIONS(2776), + [aux_sym_cipher_token1] = ACTIONS(2778), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2776), + [aux_sym_compression_token1] = ACTIONS(2776), + [aux_sym_connection_attempts_token1] = ACTIONS(2776), + [aux_sym_connect_timeout_token1] = ACTIONS(2776), + [aux_sym_control_master_token1] = ACTIONS(2776), + [aux_sym_control_path_token1] = ACTIONS(2776), + [aux_sym_control_persist_token1] = ACTIONS(2776), + [aux_sym_dynamic_forward_token1] = ACTIONS(2776), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2776), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2776), + [aux_sym_escape_char_token1] = ACTIONS(2776), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2776), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2776), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2776), + [aux_sym_forward_agent_token1] = ACTIONS(2776), + [aux_sym_forward_x11_token1] = ACTIONS(2778), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2776), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2776), + [aux_sym_gateway_ports_token1] = ACTIONS(2776), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2776), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2776), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2776), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2776), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2776), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2776), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2776), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2776), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2776), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2776), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2776), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2776), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2776), + [aux_sym_host_key_alias_token1] = ACTIONS(2776), + [aux_sym_hostname_token1] = ACTIONS(2776), + [aux_sym_identities_only_token1] = ACTIONS(2776), + [aux_sym_identity_agent_token1] = ACTIONS(2776), + [aux_sym_identity_file_token1] = ACTIONS(2776), + [aux_sym_ignore_unknown_token1] = ACTIONS(2776), + [aux_sym_include_token1] = ACTIONS(2776), + [aux_sym_ip_qos_token1] = ACTIONS(2776), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2776), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2776), + [aux_sym_kex_algorithms_token1] = ACTIONS(2776), + [aux_sym_known_hosts_command_token1] = ACTIONS(2776), + [aux_sym_local_command_token1] = ACTIONS(2776), + [aux_sym_local_forward_token1] = ACTIONS(2776), + [aux_sym_log_level_token1] = ACTIONS(2776), + [aux_sym_log_verbose_token1] = ACTIONS(2776), + [aux_sym_macs_token1] = ACTIONS(2776), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2776), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2776), + [aux_sym_password_authentication_token1] = ACTIONS(2776), + [aux_sym_permit_local_command_token1] = ACTIONS(2776), + [aux_sym_permit_remote_open_token1] = ACTIONS(2776), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2776), + [aux_sym_port_token1] = ACTIONS(2776), + [aux_sym_preferred_authentications_token1] = ACTIONS(2776), + [aux_sym_protocol_token1] = ACTIONS(2776), + [aux_sym_proxy_command_token1] = ACTIONS(2776), + [aux_sym_proxy_jump_token1] = ACTIONS(2776), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2776), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2776), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2776), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2776), + [aux_sym_rekey_limit_token1] = ACTIONS(2776), + [aux_sym_remote_command_token1] = ACTIONS(2776), + [aux_sym_remote_forward_token1] = ACTIONS(2776), + [aux_sym_request_tty_token1] = ACTIONS(2776), + [aux_sym_required_rsa_size_token1] = ACTIONS(2776), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2776), + [aux_sym_security_key_provider_token1] = ACTIONS(2776), + [aux_sym_send_env_token1] = ACTIONS(2776), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2776), + [aux_sym_server_alive_interval_token1] = ACTIONS(2776), + [aux_sym_session_type_token1] = ACTIONS(2776), + [aux_sym_set_env_token1] = ACTIONS(2776), + [aux_sym_stdin_null_token1] = ACTIONS(2776), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2776), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2776), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2776), + [aux_sym_syslog_facility_token1] = ACTIONS(2776), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2776), + [aux_sym_keep_alive_token1] = ACTIONS(2776), + [aux_sym_tunnel_token1] = ACTIONS(2778), + [aux_sym_tunnel_device_token1] = ACTIONS(2776), + [aux_sym_update_host_keys_token1] = ACTIONS(2776), + [aux_sym_use_keychain_token1] = ACTIONS(2776), + [aux_sym_use_roaming_token1] = ACTIONS(2776), + [aux_sym_user_token1] = ACTIONS(2778), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2776), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2776), + [aux_sym_visual_host_key_token1] = ACTIONS(2776), + [aux_sym_xauth_location_token1] = ACTIONS(2776), }, [403] = { - [ts_builtin_sym_end] = ACTIONS(2775), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2777), - [anon_sym_DQUOTE] = ACTIONS(2775), - [aux_sym_match_token1] = ACTIONS(2775), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2775), - [aux_sym_address_family_token1] = ACTIONS(2775), - [aux_sym_batch_mode_token1] = ACTIONS(2775), - [aux_sym_bind_address_token1] = ACTIONS(2775), - [aux_sym_bind_interface_token1] = ACTIONS(2775), - [aux_sym_canonical_domains_token1] = ACTIONS(2775), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2775), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2775), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2775), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2775), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2775), - [aux_sym_certificate_file_token1] = ACTIONS(2775), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2775), - [aux_sym_check_host_ip_token1] = ACTIONS(2775), - [aux_sym_ciphers_token1] = ACTIONS(2775), - [aux_sym_cipher_token1] = ACTIONS(2777), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2775), - [aux_sym_compression_token1] = ACTIONS(2775), - [aux_sym_connection_attempts_token1] = ACTIONS(2775), - [aux_sym_connect_timeout_token1] = ACTIONS(2775), - [aux_sym_control_master_token1] = ACTIONS(2775), - [aux_sym_control_path_token1] = ACTIONS(2775), - [aux_sym_control_persist_token1] = ACTIONS(2775), - [aux_sym_dynamic_forward_token1] = ACTIONS(2775), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2775), - [aux_sym_escape_char_token1] = ACTIONS(2775), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2775), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2775), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2775), - [aux_sym_forward_agent_token1] = ACTIONS(2775), - [aux_sym_forward_x11_token1] = ACTIONS(2777), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2775), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2775), - [aux_sym_gateway_ports_token1] = ACTIONS(2775), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2775), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2775), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2775), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2775), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2775), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2775), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2775), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2775), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2775), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2775), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2775), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2775), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2775), - [aux_sym_host_key_alias_token1] = ACTIONS(2775), - [aux_sym_hostname_token1] = ACTIONS(2775), - [aux_sym_identities_only_token1] = ACTIONS(2775), - [aux_sym_identity_agent_token1] = ACTIONS(2775), - [aux_sym_identity_file_token1] = ACTIONS(2775), - [aux_sym_ignore_unknown_token1] = ACTIONS(2775), - [aux_sym_include_token1] = ACTIONS(2775), - [aux_sym_ip_qos_token1] = ACTIONS(2775), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2775), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2775), - [aux_sym_kex_algorithms_token1] = ACTIONS(2775), - [aux_sym_known_hosts_command_token1] = ACTIONS(2775), - [aux_sym_local_command_token1] = ACTIONS(2775), - [aux_sym_local_forward_token1] = ACTIONS(2775), - [aux_sym_log_level_token1] = ACTIONS(2775), - [aux_sym_log_verbose_token1] = ACTIONS(2775), - [aux_sym_macs_token1] = ACTIONS(2775), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2775), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2775), - [aux_sym_password_authentication_token1] = ACTIONS(2775), - [aux_sym_permit_local_command_token1] = ACTIONS(2775), - [aux_sym_permit_remote_open_token1] = ACTIONS(2775), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2775), - [aux_sym_port_token1] = ACTIONS(2775), - [aux_sym_preferred_authentications_token1] = ACTIONS(2775), - [aux_sym_protocol_token1] = ACTIONS(2775), - [aux_sym_proxy_command_token1] = ACTIONS(2775), - [aux_sym_proxy_jump_token1] = ACTIONS(2775), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2775), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2775), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2775), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2775), - [aux_sym_rekey_limit_token1] = ACTIONS(2775), - [aux_sym_remote_command_token1] = ACTIONS(2775), - [aux_sym_remote_forward_token1] = ACTIONS(2775), - [aux_sym_request_tty_token1] = ACTIONS(2775), - [aux_sym_required_rsa_size_token1] = ACTIONS(2775), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2775), - [aux_sym_security_key_provider_token1] = ACTIONS(2775), - [aux_sym_send_env_token1] = ACTIONS(2775), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2775), - [aux_sym_server_alive_interval_token1] = ACTIONS(2775), - [aux_sym_session_type_token1] = ACTIONS(2775), - [aux_sym_set_env_token1] = ACTIONS(2775), - [aux_sym_stdin_null_token1] = ACTIONS(2775), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2775), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2775), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2775), - [aux_sym_syslog_facility_token1] = ACTIONS(2775), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2775), - [aux_sym_keep_alive_token1] = ACTIONS(2775), - [aux_sym_tunnel_token1] = ACTIONS(2777), - [aux_sym_tunnel_device_token1] = ACTIONS(2775), - [aux_sym_update_host_keys_token1] = ACTIONS(2775), - [aux_sym_use_keychain_token1] = ACTIONS(2775), - [aux_sym_use_roaming_token1] = ACTIONS(2775), - [aux_sym_user_token1] = ACTIONS(2777), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2775), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2775), - [aux_sym_visual_host_key_token1] = ACTIONS(2775), - [aux_sym_xauth_location_token1] = ACTIONS(2775), + [ts_builtin_sym_end] = ACTIONS(2782), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2784), + [anon_sym_DQUOTE] = ACTIONS(2782), + [aux_sym_match_token1] = ACTIONS(2782), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2782), + [aux_sym_address_family_token1] = ACTIONS(2782), + [aux_sym_batch_mode_token1] = ACTIONS(2782), + [aux_sym_bind_address_token1] = ACTIONS(2782), + [aux_sym_bind_interface_token1] = ACTIONS(2782), + [aux_sym_canonical_domains_token1] = ACTIONS(2782), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2782), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2782), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2782), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2782), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2782), + [aux_sym_certificate_file_token1] = ACTIONS(2782), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2782), + [aux_sym_check_host_ip_token1] = ACTIONS(2782), + [aux_sym_ciphers_token1] = ACTIONS(2782), + [aux_sym_cipher_token1] = ACTIONS(2784), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2782), + [aux_sym_compression_token1] = ACTIONS(2782), + [aux_sym_connection_attempts_token1] = ACTIONS(2782), + [aux_sym_connect_timeout_token1] = ACTIONS(2782), + [aux_sym_control_master_token1] = ACTIONS(2782), + [aux_sym_control_path_token1] = ACTIONS(2782), + [aux_sym_control_persist_token1] = ACTIONS(2782), + [aux_sym_dynamic_forward_token1] = ACTIONS(2782), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2782), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2782), + [aux_sym_escape_char_token1] = ACTIONS(2782), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2782), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2782), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2782), + [aux_sym_forward_agent_token1] = ACTIONS(2782), + [aux_sym_forward_x11_token1] = ACTIONS(2784), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2782), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2782), + [aux_sym_gateway_ports_token1] = ACTIONS(2782), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2782), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2782), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2782), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2782), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2782), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2782), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2782), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2782), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2782), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2782), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2782), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2782), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2782), + [aux_sym_host_key_alias_token1] = ACTIONS(2782), + [aux_sym_hostname_token1] = ACTIONS(2782), + [aux_sym_identities_only_token1] = ACTIONS(2782), + [aux_sym_identity_agent_token1] = ACTIONS(2782), + [aux_sym_identity_file_token1] = ACTIONS(2782), + [aux_sym_ignore_unknown_token1] = ACTIONS(2782), + [aux_sym_include_token1] = ACTIONS(2782), + [aux_sym_ip_qos_token1] = ACTIONS(2782), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2782), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2782), + [aux_sym_kex_algorithms_token1] = ACTIONS(2782), + [aux_sym_known_hosts_command_token1] = ACTIONS(2782), + [aux_sym_local_command_token1] = ACTIONS(2782), + [aux_sym_local_forward_token1] = ACTIONS(2782), + [aux_sym_log_level_token1] = ACTIONS(2782), + [aux_sym_log_verbose_token1] = ACTIONS(2782), + [aux_sym_macs_token1] = ACTIONS(2782), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2782), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2782), + [aux_sym_password_authentication_token1] = ACTIONS(2782), + [aux_sym_permit_local_command_token1] = ACTIONS(2782), + [aux_sym_permit_remote_open_token1] = ACTIONS(2782), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2782), + [aux_sym_port_token1] = ACTIONS(2782), + [aux_sym_preferred_authentications_token1] = ACTIONS(2782), + [aux_sym_protocol_token1] = ACTIONS(2782), + [aux_sym_proxy_command_token1] = ACTIONS(2782), + [aux_sym_proxy_jump_token1] = ACTIONS(2782), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2782), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2782), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2782), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2782), + [aux_sym_rekey_limit_token1] = ACTIONS(2782), + [aux_sym_remote_command_token1] = ACTIONS(2782), + [aux_sym_remote_forward_token1] = ACTIONS(2782), + [aux_sym_request_tty_token1] = ACTIONS(2782), + [aux_sym_required_rsa_size_token1] = ACTIONS(2782), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2782), + [aux_sym_security_key_provider_token1] = ACTIONS(2782), + [aux_sym_send_env_token1] = ACTIONS(2782), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2782), + [aux_sym_server_alive_interval_token1] = ACTIONS(2782), + [aux_sym_session_type_token1] = ACTIONS(2782), + [aux_sym_set_env_token1] = ACTIONS(2782), + [aux_sym_stdin_null_token1] = ACTIONS(2782), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2782), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2782), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2782), + [aux_sym_syslog_facility_token1] = ACTIONS(2782), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2782), + [aux_sym_keep_alive_token1] = ACTIONS(2782), + [aux_sym_tunnel_token1] = ACTIONS(2784), + [aux_sym_tunnel_device_token1] = ACTIONS(2782), + [aux_sym_update_host_keys_token1] = ACTIONS(2782), + [aux_sym_use_keychain_token1] = ACTIONS(2782), + [aux_sym_use_roaming_token1] = ACTIONS(2782), + [aux_sym_user_token1] = ACTIONS(2784), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2782), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2782), + [aux_sym_visual_host_key_token1] = ACTIONS(2782), + [aux_sym_xauth_location_token1] = ACTIONS(2782), }, [404] = { - [ts_builtin_sym_end] = ACTIONS(2779), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2781), - [anon_sym_DQUOTE] = ACTIONS(2783), - [aux_sym_match_token1] = ACTIONS(2779), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2779), - [aux_sym_address_family_token1] = ACTIONS(2779), - [aux_sym_batch_mode_token1] = ACTIONS(2779), - [aux_sym_bind_address_token1] = ACTIONS(2779), - [aux_sym_bind_interface_token1] = ACTIONS(2779), - [aux_sym_canonical_domains_token1] = ACTIONS(2779), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2779), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2779), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2779), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2779), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2779), - [aux_sym_certificate_file_token1] = ACTIONS(2779), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2779), - [aux_sym_check_host_ip_token1] = ACTIONS(2779), - [aux_sym_ciphers_token1] = ACTIONS(2779), - [aux_sym_cipher_token1] = ACTIONS(2781), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2779), - [aux_sym_compression_token1] = ACTIONS(2779), - [aux_sym_connection_attempts_token1] = ACTIONS(2779), - [aux_sym_connect_timeout_token1] = ACTIONS(2779), - [aux_sym_control_master_token1] = ACTIONS(2779), - [aux_sym_control_path_token1] = ACTIONS(2779), - [aux_sym_control_persist_token1] = ACTIONS(2779), - [aux_sym_dynamic_forward_token1] = ACTIONS(2779), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2779), - [aux_sym_escape_char_token1] = ACTIONS(2779), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2779), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2779), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2779), - [aux_sym_forward_agent_token1] = ACTIONS(2779), - [aux_sym_forward_x11_token1] = ACTIONS(2781), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2779), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2779), - [aux_sym_gateway_ports_token1] = ACTIONS(2779), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2779), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2779), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2779), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2779), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2779), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2779), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2779), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2779), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2779), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2779), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2779), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2779), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2779), - [aux_sym_host_key_alias_token1] = ACTIONS(2779), - [aux_sym_hostname_token1] = ACTIONS(2779), - [aux_sym_identities_only_token1] = ACTIONS(2779), - [aux_sym_identity_agent_token1] = ACTIONS(2779), - [aux_sym_identity_file_token1] = ACTIONS(2779), - [aux_sym_ignore_unknown_token1] = ACTIONS(2779), - [aux_sym_include_token1] = ACTIONS(2779), - [aux_sym_ip_qos_token1] = ACTIONS(2779), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2779), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2779), - [aux_sym_kex_algorithms_token1] = ACTIONS(2779), - [aux_sym_known_hosts_command_token1] = ACTIONS(2779), - [aux_sym_local_command_token1] = ACTIONS(2779), - [aux_sym_local_forward_token1] = ACTIONS(2779), - [aux_sym_log_level_token1] = ACTIONS(2779), - [aux_sym_log_verbose_token1] = ACTIONS(2779), - [aux_sym_macs_token1] = ACTIONS(2779), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2779), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2779), - [aux_sym_password_authentication_token1] = ACTIONS(2779), - [aux_sym_permit_local_command_token1] = ACTIONS(2779), - [aux_sym_permit_remote_open_token1] = ACTIONS(2779), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2779), - [aux_sym_port_token1] = ACTIONS(2779), - [aux_sym_preferred_authentications_token1] = ACTIONS(2779), - [aux_sym_protocol_token1] = ACTIONS(2779), - [aux_sym_proxy_command_token1] = ACTIONS(2779), - [aux_sym_proxy_jump_token1] = ACTIONS(2779), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2779), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2779), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2779), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2779), - [aux_sym_rekey_limit_token1] = ACTIONS(2779), - [aux_sym_remote_command_token1] = ACTIONS(2779), - [aux_sym_remote_forward_token1] = ACTIONS(2779), - [aux_sym_request_tty_token1] = ACTIONS(2779), - [aux_sym_required_rsa_size_token1] = ACTIONS(2779), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2779), - [aux_sym_security_key_provider_token1] = ACTIONS(2779), - [aux_sym_send_env_token1] = ACTIONS(2779), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2779), - [aux_sym_server_alive_interval_token1] = ACTIONS(2779), - [aux_sym_session_type_token1] = ACTIONS(2779), - [aux_sym_set_env_token1] = ACTIONS(2779), - [aux_sym_stdin_null_token1] = ACTIONS(2779), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2779), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2779), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2779), - [aux_sym_syslog_facility_token1] = ACTIONS(2779), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2779), - [aux_sym_keep_alive_token1] = ACTIONS(2779), - [aux_sym_tunnel_token1] = ACTIONS(2781), - [aux_sym_tunnel_device_token1] = ACTIONS(2779), - [aux_sym_update_host_keys_token1] = ACTIONS(2779), - [aux_sym_use_keychain_token1] = ACTIONS(2779), - [aux_sym_use_roaming_token1] = ACTIONS(2779), - [aux_sym_user_token1] = ACTIONS(2781), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2779), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2779), - [aux_sym_visual_host_key_token1] = ACTIONS(2779), - [aux_sym_xauth_location_token1] = ACTIONS(2779), + [ts_builtin_sym_end] = ACTIONS(2786), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2788), + [anon_sym_DQUOTE] = ACTIONS(2790), + [aux_sym_match_token1] = ACTIONS(2786), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2786), + [aux_sym_address_family_token1] = ACTIONS(2786), + [aux_sym_batch_mode_token1] = ACTIONS(2786), + [aux_sym_bind_address_token1] = ACTIONS(2786), + [aux_sym_bind_interface_token1] = ACTIONS(2786), + [aux_sym_canonical_domains_token1] = ACTIONS(2786), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2786), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2786), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2786), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2786), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2786), + [aux_sym_certificate_file_token1] = ACTIONS(2786), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2786), + [aux_sym_check_host_ip_token1] = ACTIONS(2786), + [aux_sym_ciphers_token1] = ACTIONS(2786), + [aux_sym_cipher_token1] = ACTIONS(2788), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2786), + [aux_sym_compression_token1] = ACTIONS(2786), + [aux_sym_connection_attempts_token1] = ACTIONS(2786), + [aux_sym_connect_timeout_token1] = ACTIONS(2786), + [aux_sym_control_master_token1] = ACTIONS(2786), + [aux_sym_control_path_token1] = ACTIONS(2786), + [aux_sym_control_persist_token1] = ACTIONS(2786), + [aux_sym_dynamic_forward_token1] = ACTIONS(2786), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2786), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2786), + [aux_sym_escape_char_token1] = ACTIONS(2786), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2786), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2786), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2786), + [aux_sym_forward_agent_token1] = ACTIONS(2786), + [aux_sym_forward_x11_token1] = ACTIONS(2788), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2786), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2786), + [aux_sym_gateway_ports_token1] = ACTIONS(2786), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2786), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2786), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2786), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2786), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2786), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2786), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2786), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2786), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2786), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2786), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2786), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2786), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2786), + [aux_sym_host_key_alias_token1] = ACTIONS(2786), + [aux_sym_hostname_token1] = ACTIONS(2786), + [aux_sym_identities_only_token1] = ACTIONS(2786), + [aux_sym_identity_agent_token1] = ACTIONS(2786), + [aux_sym_identity_file_token1] = ACTIONS(2786), + [aux_sym_ignore_unknown_token1] = ACTIONS(2786), + [aux_sym_include_token1] = ACTIONS(2786), + [aux_sym_ip_qos_token1] = ACTIONS(2786), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2786), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2786), + [aux_sym_kex_algorithms_token1] = ACTIONS(2786), + [aux_sym_known_hosts_command_token1] = ACTIONS(2786), + [aux_sym_local_command_token1] = ACTIONS(2786), + [aux_sym_local_forward_token1] = ACTIONS(2786), + [aux_sym_log_level_token1] = ACTIONS(2786), + [aux_sym_log_verbose_token1] = ACTIONS(2786), + [aux_sym_macs_token1] = ACTIONS(2786), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2786), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2786), + [aux_sym_password_authentication_token1] = ACTIONS(2786), + [aux_sym_permit_local_command_token1] = ACTIONS(2786), + [aux_sym_permit_remote_open_token1] = ACTIONS(2786), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2786), + [aux_sym_port_token1] = ACTIONS(2786), + [aux_sym_preferred_authentications_token1] = ACTIONS(2786), + [aux_sym_protocol_token1] = ACTIONS(2786), + [aux_sym_proxy_command_token1] = ACTIONS(2786), + [aux_sym_proxy_jump_token1] = ACTIONS(2786), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2786), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2786), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2786), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2786), + [aux_sym_rekey_limit_token1] = ACTIONS(2786), + [aux_sym_remote_command_token1] = ACTIONS(2786), + [aux_sym_remote_forward_token1] = ACTIONS(2786), + [aux_sym_request_tty_token1] = ACTIONS(2786), + [aux_sym_required_rsa_size_token1] = ACTIONS(2786), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2786), + [aux_sym_security_key_provider_token1] = ACTIONS(2786), + [aux_sym_send_env_token1] = ACTIONS(2786), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2786), + [aux_sym_server_alive_interval_token1] = ACTIONS(2786), + [aux_sym_session_type_token1] = ACTIONS(2786), + [aux_sym_set_env_token1] = ACTIONS(2786), + [aux_sym_stdin_null_token1] = ACTIONS(2786), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2786), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2786), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2786), + [aux_sym_syslog_facility_token1] = ACTIONS(2786), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2786), + [aux_sym_keep_alive_token1] = ACTIONS(2786), + [aux_sym_tunnel_token1] = ACTIONS(2788), + [aux_sym_tunnel_device_token1] = ACTIONS(2786), + [aux_sym_update_host_keys_token1] = ACTIONS(2786), + [aux_sym_use_keychain_token1] = ACTIONS(2786), + [aux_sym_use_roaming_token1] = ACTIONS(2786), + [aux_sym_user_token1] = ACTIONS(2788), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2786), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2786), + [aux_sym_visual_host_key_token1] = ACTIONS(2786), + [aux_sym_xauth_location_token1] = ACTIONS(2786), }, [405] = { - [ts_builtin_sym_end] = ACTIONS(2785), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2787), - [anon_sym_DQUOTE] = ACTIONS(2785), - [aux_sym_match_token1] = ACTIONS(2785), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2785), - [aux_sym_address_family_token1] = ACTIONS(2785), - [aux_sym_batch_mode_token1] = ACTIONS(2785), - [aux_sym_bind_address_token1] = ACTIONS(2785), - [aux_sym_bind_interface_token1] = ACTIONS(2785), - [aux_sym_canonical_domains_token1] = ACTIONS(2785), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2785), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2785), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2785), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2785), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2785), - [aux_sym_certificate_file_token1] = ACTIONS(2785), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2785), - [aux_sym_check_host_ip_token1] = ACTIONS(2785), - [aux_sym_ciphers_token1] = ACTIONS(2785), - [aux_sym_cipher_token1] = ACTIONS(2787), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2785), - [aux_sym_compression_token1] = ACTIONS(2785), - [aux_sym_connection_attempts_token1] = ACTIONS(2785), - [aux_sym_connect_timeout_token1] = ACTIONS(2785), - [aux_sym_control_master_token1] = ACTIONS(2785), - [aux_sym_control_path_token1] = ACTIONS(2785), - [aux_sym_control_persist_token1] = ACTIONS(2785), - [aux_sym_dynamic_forward_token1] = ACTIONS(2785), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2785), - [aux_sym_escape_char_token1] = ACTIONS(2785), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2785), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2785), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2785), - [aux_sym_forward_agent_token1] = ACTIONS(2785), - [aux_sym_forward_x11_token1] = ACTIONS(2787), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2785), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2785), - [aux_sym_gateway_ports_token1] = ACTIONS(2785), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2785), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2785), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2785), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2785), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2785), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2785), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2785), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2785), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2785), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2785), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2785), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2785), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2785), - [aux_sym_host_key_alias_token1] = ACTIONS(2785), - [aux_sym_hostname_token1] = ACTIONS(2785), - [aux_sym_identities_only_token1] = ACTIONS(2785), - [aux_sym_identity_agent_token1] = ACTIONS(2785), - [aux_sym_identity_file_token1] = ACTIONS(2785), - [aux_sym_ignore_unknown_token1] = ACTIONS(2785), - [aux_sym_include_token1] = ACTIONS(2785), - [aux_sym_ip_qos_token1] = ACTIONS(2785), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2785), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2785), - [aux_sym_kex_algorithms_token1] = ACTIONS(2785), - [aux_sym_known_hosts_command_token1] = ACTIONS(2785), - [aux_sym_local_command_token1] = ACTIONS(2785), - [aux_sym_local_forward_token1] = ACTIONS(2785), - [aux_sym_log_level_token1] = ACTIONS(2785), - [aux_sym_log_verbose_token1] = ACTIONS(2785), - [aux_sym_macs_token1] = ACTIONS(2785), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2785), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2785), - [aux_sym_password_authentication_token1] = ACTIONS(2785), - [aux_sym_permit_local_command_token1] = ACTIONS(2785), - [aux_sym_permit_remote_open_token1] = ACTIONS(2785), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2785), - [aux_sym_port_token1] = ACTIONS(2785), - [aux_sym_preferred_authentications_token1] = ACTIONS(2785), - [aux_sym_protocol_token1] = ACTIONS(2785), - [aux_sym_proxy_command_token1] = ACTIONS(2785), - [aux_sym_proxy_jump_token1] = ACTIONS(2785), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2785), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2785), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2785), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2785), - [aux_sym_rekey_limit_token1] = ACTIONS(2785), - [aux_sym_remote_command_token1] = ACTIONS(2785), - [aux_sym_remote_forward_token1] = ACTIONS(2785), - [aux_sym_request_tty_token1] = ACTIONS(2785), - [aux_sym_required_rsa_size_token1] = ACTIONS(2785), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2785), - [aux_sym_security_key_provider_token1] = ACTIONS(2785), - [aux_sym_send_env_token1] = ACTIONS(2785), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2785), - [aux_sym_server_alive_interval_token1] = ACTIONS(2785), - [aux_sym_session_type_token1] = ACTIONS(2785), - [aux_sym_set_env_token1] = ACTIONS(2785), - [aux_sym_stdin_null_token1] = ACTIONS(2785), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2785), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2785), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2785), - [aux_sym_syslog_facility_token1] = ACTIONS(2785), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2785), - [aux_sym_keep_alive_token1] = ACTIONS(2785), - [aux_sym_tunnel_token1] = ACTIONS(2787), - [aux_sym_tunnel_device_token1] = ACTIONS(2785), - [aux_sym_update_host_keys_token1] = ACTIONS(2785), - [aux_sym_use_keychain_token1] = ACTIONS(2785), - [aux_sym_use_roaming_token1] = ACTIONS(2785), - [aux_sym_user_token1] = ACTIONS(2787), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2785), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2785), - [aux_sym_visual_host_key_token1] = ACTIONS(2785), - [aux_sym_xauth_location_token1] = ACTIONS(2785), + [ts_builtin_sym_end] = ACTIONS(2792), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2794), + [anon_sym_DQUOTE] = ACTIONS(2796), + [aux_sym_match_token1] = ACTIONS(2792), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2792), + [aux_sym_address_family_token1] = ACTIONS(2792), + [aux_sym_batch_mode_token1] = ACTIONS(2792), + [aux_sym_bind_address_token1] = ACTIONS(2792), + [aux_sym_bind_interface_token1] = ACTIONS(2792), + [aux_sym_canonical_domains_token1] = ACTIONS(2792), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2792), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2792), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2792), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2792), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2792), + [aux_sym_certificate_file_token1] = ACTIONS(2792), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2792), + [aux_sym_check_host_ip_token1] = ACTIONS(2792), + [aux_sym_ciphers_token1] = ACTIONS(2792), + [aux_sym_cipher_token1] = ACTIONS(2794), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2792), + [aux_sym_compression_token1] = ACTIONS(2792), + [aux_sym_connection_attempts_token1] = ACTIONS(2792), + [aux_sym_connect_timeout_token1] = ACTIONS(2792), + [aux_sym_control_master_token1] = ACTIONS(2792), + [aux_sym_control_path_token1] = ACTIONS(2792), + [aux_sym_control_persist_token1] = ACTIONS(2792), + [aux_sym_dynamic_forward_token1] = ACTIONS(2792), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2792), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2792), + [aux_sym_escape_char_token1] = ACTIONS(2792), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2792), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2792), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2792), + [aux_sym_forward_agent_token1] = ACTIONS(2792), + [aux_sym_forward_x11_token1] = ACTIONS(2794), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2792), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2792), + [aux_sym_gateway_ports_token1] = ACTIONS(2792), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2792), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2792), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2792), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2792), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2792), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2792), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2792), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2792), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2792), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2792), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2792), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2792), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2792), + [aux_sym_host_key_alias_token1] = ACTIONS(2792), + [aux_sym_hostname_token1] = ACTIONS(2792), + [aux_sym_identities_only_token1] = ACTIONS(2792), + [aux_sym_identity_agent_token1] = ACTIONS(2792), + [aux_sym_identity_file_token1] = ACTIONS(2792), + [aux_sym_ignore_unknown_token1] = ACTIONS(2792), + [aux_sym_include_token1] = ACTIONS(2792), + [aux_sym_ip_qos_token1] = ACTIONS(2792), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2792), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2792), + [aux_sym_kex_algorithms_token1] = ACTIONS(2792), + [aux_sym_known_hosts_command_token1] = ACTIONS(2792), + [aux_sym_local_command_token1] = ACTIONS(2792), + [aux_sym_local_forward_token1] = ACTIONS(2792), + [aux_sym_log_level_token1] = ACTIONS(2792), + [aux_sym_log_verbose_token1] = ACTIONS(2792), + [aux_sym_macs_token1] = ACTIONS(2792), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2792), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2792), + [aux_sym_password_authentication_token1] = ACTIONS(2792), + [aux_sym_permit_local_command_token1] = ACTIONS(2792), + [aux_sym_permit_remote_open_token1] = ACTIONS(2792), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2792), + [aux_sym_port_token1] = ACTIONS(2792), + [aux_sym_preferred_authentications_token1] = ACTIONS(2792), + [aux_sym_protocol_token1] = ACTIONS(2792), + [aux_sym_proxy_command_token1] = ACTIONS(2792), + [aux_sym_proxy_jump_token1] = ACTIONS(2792), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2792), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2792), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2792), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2792), + [aux_sym_rekey_limit_token1] = ACTIONS(2792), + [aux_sym_remote_command_token1] = ACTIONS(2792), + [aux_sym_remote_forward_token1] = ACTIONS(2792), + [aux_sym_request_tty_token1] = ACTIONS(2792), + [aux_sym_required_rsa_size_token1] = ACTIONS(2792), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2792), + [aux_sym_security_key_provider_token1] = ACTIONS(2792), + [aux_sym_send_env_token1] = ACTIONS(2792), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2792), + [aux_sym_server_alive_interval_token1] = ACTIONS(2792), + [aux_sym_session_type_token1] = ACTIONS(2792), + [aux_sym_set_env_token1] = ACTIONS(2792), + [aux_sym_stdin_null_token1] = ACTIONS(2792), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2792), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2792), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2792), + [aux_sym_syslog_facility_token1] = ACTIONS(2792), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2792), + [aux_sym_keep_alive_token1] = ACTIONS(2792), + [aux_sym_tunnel_token1] = ACTIONS(2794), + [aux_sym_tunnel_device_token1] = ACTIONS(2792), + [aux_sym_update_host_keys_token1] = ACTIONS(2792), + [aux_sym_use_keychain_token1] = ACTIONS(2792), + [aux_sym_use_roaming_token1] = ACTIONS(2792), + [aux_sym_user_token1] = ACTIONS(2794), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2792), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2792), + [aux_sym_visual_host_key_token1] = ACTIONS(2792), + [aux_sym_xauth_location_token1] = ACTIONS(2792), }, [406] = { - [ts_builtin_sym_end] = ACTIONS(2789), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2791), - [anon_sym_DQUOTE] = ACTIONS(2793), - [aux_sym_match_token1] = ACTIONS(2789), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2789), - [aux_sym_address_family_token1] = ACTIONS(2789), - [aux_sym_batch_mode_token1] = ACTIONS(2789), - [aux_sym_bind_address_token1] = ACTIONS(2789), - [aux_sym_bind_interface_token1] = ACTIONS(2789), - [aux_sym_canonical_domains_token1] = ACTIONS(2789), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2789), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2789), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2789), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2789), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2789), - [aux_sym_certificate_file_token1] = ACTIONS(2789), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2789), - [aux_sym_check_host_ip_token1] = ACTIONS(2789), - [aux_sym_ciphers_token1] = ACTIONS(2789), - [aux_sym_cipher_token1] = ACTIONS(2791), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2789), - [aux_sym_compression_token1] = ACTIONS(2789), - [aux_sym_connection_attempts_token1] = ACTIONS(2789), - [aux_sym_connect_timeout_token1] = ACTIONS(2789), - [aux_sym_control_master_token1] = ACTIONS(2789), - [aux_sym_control_path_token1] = ACTIONS(2789), - [aux_sym_control_persist_token1] = ACTIONS(2789), - [aux_sym_dynamic_forward_token1] = ACTIONS(2789), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2789), - [aux_sym_escape_char_token1] = ACTIONS(2789), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2789), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2789), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2789), - [aux_sym_forward_agent_token1] = ACTIONS(2789), - [aux_sym_forward_x11_token1] = ACTIONS(2791), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2789), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2789), - [aux_sym_gateway_ports_token1] = ACTIONS(2789), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2789), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2789), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2789), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2789), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2789), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2789), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2789), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2789), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2789), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2789), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2789), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2789), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2789), - [aux_sym_host_key_alias_token1] = ACTIONS(2789), - [aux_sym_hostname_token1] = ACTIONS(2789), - [aux_sym_identities_only_token1] = ACTIONS(2789), - [aux_sym_identity_agent_token1] = ACTIONS(2789), - [aux_sym_identity_file_token1] = ACTIONS(2789), - [aux_sym_ignore_unknown_token1] = ACTIONS(2789), - [aux_sym_include_token1] = ACTIONS(2789), - [aux_sym_ip_qos_token1] = ACTIONS(2789), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2789), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2789), - [aux_sym_kex_algorithms_token1] = ACTIONS(2789), - [aux_sym_known_hosts_command_token1] = ACTIONS(2789), - [aux_sym_local_command_token1] = ACTIONS(2789), - [aux_sym_local_forward_token1] = ACTIONS(2789), - [aux_sym_log_level_token1] = ACTIONS(2789), - [aux_sym_log_verbose_token1] = ACTIONS(2789), - [aux_sym_macs_token1] = ACTIONS(2789), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2789), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2789), - [aux_sym_password_authentication_token1] = ACTIONS(2789), - [aux_sym_permit_local_command_token1] = ACTIONS(2789), - [aux_sym_permit_remote_open_token1] = ACTIONS(2789), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2789), - [aux_sym_port_token1] = ACTIONS(2789), - [aux_sym_preferred_authentications_token1] = ACTIONS(2789), - [aux_sym_protocol_token1] = ACTIONS(2789), - [aux_sym_proxy_command_token1] = ACTIONS(2789), - [aux_sym_proxy_jump_token1] = ACTIONS(2789), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2789), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2789), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2789), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2789), - [aux_sym_rekey_limit_token1] = ACTIONS(2789), - [aux_sym_remote_command_token1] = ACTIONS(2789), - [aux_sym_remote_forward_token1] = ACTIONS(2789), - [aux_sym_request_tty_token1] = ACTIONS(2789), - [aux_sym_required_rsa_size_token1] = ACTIONS(2789), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2789), - [aux_sym_security_key_provider_token1] = ACTIONS(2789), - [aux_sym_send_env_token1] = ACTIONS(2789), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2789), - [aux_sym_server_alive_interval_token1] = ACTIONS(2789), - [aux_sym_session_type_token1] = ACTIONS(2789), - [aux_sym_set_env_token1] = ACTIONS(2789), - [aux_sym_stdin_null_token1] = ACTIONS(2789), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2789), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2789), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2789), - [aux_sym_syslog_facility_token1] = ACTIONS(2789), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2789), - [aux_sym_keep_alive_token1] = ACTIONS(2789), - [aux_sym_tunnel_token1] = ACTIONS(2791), - [aux_sym_tunnel_device_token1] = ACTIONS(2789), - [aux_sym_update_host_keys_token1] = ACTIONS(2789), - [aux_sym_use_keychain_token1] = ACTIONS(2789), - [aux_sym_use_roaming_token1] = ACTIONS(2789), - [aux_sym_user_token1] = ACTIONS(2791), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2789), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2789), - [aux_sym_visual_host_key_token1] = ACTIONS(2789), - [aux_sym_xauth_location_token1] = ACTIONS(2789), + [ts_builtin_sym_end] = ACTIONS(2798), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2800), + [anon_sym_DQUOTE] = ACTIONS(2798), + [aux_sym_match_token1] = ACTIONS(2798), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2798), + [aux_sym_address_family_token1] = ACTIONS(2798), + [aux_sym_batch_mode_token1] = ACTIONS(2798), + [aux_sym_bind_address_token1] = ACTIONS(2798), + [aux_sym_bind_interface_token1] = ACTIONS(2798), + [aux_sym_canonical_domains_token1] = ACTIONS(2798), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2798), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2798), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2798), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2798), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2798), + [aux_sym_certificate_file_token1] = ACTIONS(2798), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2798), + [aux_sym_check_host_ip_token1] = ACTIONS(2798), + [aux_sym_ciphers_token1] = ACTIONS(2798), + [aux_sym_cipher_token1] = ACTIONS(2800), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2798), + [aux_sym_compression_token1] = ACTIONS(2798), + [aux_sym_connection_attempts_token1] = ACTIONS(2798), + [aux_sym_connect_timeout_token1] = ACTIONS(2798), + [aux_sym_control_master_token1] = ACTIONS(2798), + [aux_sym_control_path_token1] = ACTIONS(2798), + [aux_sym_control_persist_token1] = ACTIONS(2798), + [aux_sym_dynamic_forward_token1] = ACTIONS(2798), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2798), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2798), + [aux_sym_escape_char_token1] = ACTIONS(2798), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2798), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2798), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2798), + [aux_sym_forward_agent_token1] = ACTIONS(2798), + [aux_sym_forward_x11_token1] = ACTIONS(2800), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2798), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2798), + [aux_sym_gateway_ports_token1] = ACTIONS(2798), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2798), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2798), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2798), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2798), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2798), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2798), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2798), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2798), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2798), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2798), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2798), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2798), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2798), + [aux_sym_host_key_alias_token1] = ACTIONS(2798), + [aux_sym_hostname_token1] = ACTIONS(2798), + [aux_sym_identities_only_token1] = ACTIONS(2798), + [aux_sym_identity_agent_token1] = ACTIONS(2798), + [aux_sym_identity_file_token1] = ACTIONS(2798), + [aux_sym_ignore_unknown_token1] = ACTIONS(2798), + [aux_sym_include_token1] = ACTIONS(2798), + [aux_sym_ip_qos_token1] = ACTIONS(2798), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2798), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2798), + [aux_sym_kex_algorithms_token1] = ACTIONS(2798), + [aux_sym_known_hosts_command_token1] = ACTIONS(2798), + [aux_sym_local_command_token1] = ACTIONS(2798), + [aux_sym_local_forward_token1] = ACTIONS(2798), + [aux_sym_log_level_token1] = ACTIONS(2798), + [aux_sym_log_verbose_token1] = ACTIONS(2798), + [aux_sym_macs_token1] = ACTIONS(2798), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2798), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2798), + [aux_sym_password_authentication_token1] = ACTIONS(2798), + [aux_sym_permit_local_command_token1] = ACTIONS(2798), + [aux_sym_permit_remote_open_token1] = ACTIONS(2798), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2798), + [aux_sym_port_token1] = ACTIONS(2798), + [aux_sym_preferred_authentications_token1] = ACTIONS(2798), + [aux_sym_protocol_token1] = ACTIONS(2798), + [aux_sym_proxy_command_token1] = ACTIONS(2798), + [aux_sym_proxy_jump_token1] = ACTIONS(2798), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2798), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2798), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2798), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2798), + [aux_sym_rekey_limit_token1] = ACTIONS(2798), + [aux_sym_remote_command_token1] = ACTIONS(2798), + [aux_sym_remote_forward_token1] = ACTIONS(2798), + [aux_sym_request_tty_token1] = ACTIONS(2798), + [aux_sym_required_rsa_size_token1] = ACTIONS(2798), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2798), + [aux_sym_security_key_provider_token1] = ACTIONS(2798), + [aux_sym_send_env_token1] = ACTIONS(2798), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2798), + [aux_sym_server_alive_interval_token1] = ACTIONS(2798), + [aux_sym_session_type_token1] = ACTIONS(2798), + [aux_sym_set_env_token1] = ACTIONS(2798), + [aux_sym_stdin_null_token1] = ACTIONS(2798), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2798), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2798), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2798), + [aux_sym_syslog_facility_token1] = ACTIONS(2798), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2798), + [aux_sym_keep_alive_token1] = ACTIONS(2798), + [aux_sym_tunnel_token1] = ACTIONS(2800), + [aux_sym_tunnel_device_token1] = ACTIONS(2798), + [aux_sym_update_host_keys_token1] = ACTIONS(2798), + [aux_sym_use_keychain_token1] = ACTIONS(2798), + [aux_sym_use_roaming_token1] = ACTIONS(2798), + [aux_sym_user_token1] = ACTIONS(2800), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2798), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2798), + [aux_sym_visual_host_key_token1] = ACTIONS(2798), + [aux_sym_xauth_location_token1] = ACTIONS(2798), }, [407] = { - [ts_builtin_sym_end] = ACTIONS(2795), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2797), - [anon_sym_DQUOTE] = ACTIONS(2799), - [aux_sym_match_token1] = ACTIONS(2795), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2795), - [aux_sym_address_family_token1] = ACTIONS(2795), - [aux_sym_batch_mode_token1] = ACTIONS(2795), - [aux_sym_bind_address_token1] = ACTIONS(2795), - [aux_sym_bind_interface_token1] = ACTIONS(2795), - [aux_sym_canonical_domains_token1] = ACTIONS(2795), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2795), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2795), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2795), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2795), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2795), - [aux_sym_certificate_file_token1] = ACTIONS(2795), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2795), - [aux_sym_check_host_ip_token1] = ACTIONS(2795), - [aux_sym_ciphers_token1] = ACTIONS(2795), - [aux_sym_cipher_token1] = ACTIONS(2797), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2795), - [aux_sym_compression_token1] = ACTIONS(2795), - [aux_sym_connection_attempts_token1] = ACTIONS(2795), - [aux_sym_connect_timeout_token1] = ACTIONS(2795), - [aux_sym_control_master_token1] = ACTIONS(2795), - [aux_sym_control_path_token1] = ACTIONS(2795), - [aux_sym_control_persist_token1] = ACTIONS(2795), - [aux_sym_dynamic_forward_token1] = ACTIONS(2795), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2795), - [aux_sym_escape_char_token1] = ACTIONS(2795), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2795), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2795), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2795), - [aux_sym_forward_agent_token1] = ACTIONS(2795), - [aux_sym_forward_x11_token1] = ACTIONS(2797), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2795), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2795), - [aux_sym_gateway_ports_token1] = ACTIONS(2795), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2795), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2795), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2795), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2795), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2795), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2795), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2795), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2795), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2795), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2795), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2795), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2795), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2795), - [aux_sym_host_key_alias_token1] = ACTIONS(2795), - [aux_sym_hostname_token1] = ACTIONS(2795), - [aux_sym_identities_only_token1] = ACTIONS(2795), - [aux_sym_identity_agent_token1] = ACTIONS(2795), - [aux_sym_identity_file_token1] = ACTIONS(2795), - [aux_sym_ignore_unknown_token1] = ACTIONS(2795), - [aux_sym_include_token1] = ACTIONS(2795), - [aux_sym_ip_qos_token1] = ACTIONS(2795), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2795), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2795), - [aux_sym_kex_algorithms_token1] = ACTIONS(2795), - [aux_sym_known_hosts_command_token1] = ACTIONS(2795), - [aux_sym_local_command_token1] = ACTIONS(2795), - [aux_sym_local_forward_token1] = ACTIONS(2795), - [aux_sym_log_level_token1] = ACTIONS(2795), - [aux_sym_log_verbose_token1] = ACTIONS(2795), - [aux_sym_macs_token1] = ACTIONS(2795), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2795), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2795), - [aux_sym_password_authentication_token1] = ACTIONS(2795), - [aux_sym_permit_local_command_token1] = ACTIONS(2795), - [aux_sym_permit_remote_open_token1] = ACTIONS(2795), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2795), - [aux_sym_port_token1] = ACTIONS(2795), - [aux_sym_preferred_authentications_token1] = ACTIONS(2795), - [aux_sym_protocol_token1] = ACTIONS(2795), - [aux_sym_proxy_command_token1] = ACTIONS(2795), - [aux_sym_proxy_jump_token1] = ACTIONS(2795), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2795), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2795), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2795), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2795), - [aux_sym_rekey_limit_token1] = ACTIONS(2795), - [aux_sym_remote_command_token1] = ACTIONS(2795), - [aux_sym_remote_forward_token1] = ACTIONS(2795), - [aux_sym_request_tty_token1] = ACTIONS(2795), - [aux_sym_required_rsa_size_token1] = ACTIONS(2795), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2795), - [aux_sym_security_key_provider_token1] = ACTIONS(2795), - [aux_sym_send_env_token1] = ACTIONS(2795), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2795), - [aux_sym_server_alive_interval_token1] = ACTIONS(2795), - [aux_sym_session_type_token1] = ACTIONS(2795), - [aux_sym_set_env_token1] = ACTIONS(2795), - [aux_sym_stdin_null_token1] = ACTIONS(2795), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2795), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2795), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2795), - [aux_sym_syslog_facility_token1] = ACTIONS(2795), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2795), - [aux_sym_keep_alive_token1] = ACTIONS(2795), - [aux_sym_tunnel_token1] = ACTIONS(2797), - [aux_sym_tunnel_device_token1] = ACTIONS(2795), - [aux_sym_update_host_keys_token1] = ACTIONS(2795), - [aux_sym_use_keychain_token1] = ACTIONS(2795), - [aux_sym_use_roaming_token1] = ACTIONS(2795), - [aux_sym_user_token1] = ACTIONS(2797), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2795), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2795), - [aux_sym_visual_host_key_token1] = ACTIONS(2795), - [aux_sym_xauth_location_token1] = ACTIONS(2795), + [ts_builtin_sym_end] = ACTIONS(2802), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2804), + [anon_sym_DQUOTE] = ACTIONS(2802), + [aux_sym_match_token1] = ACTIONS(2802), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2802), + [aux_sym_address_family_token1] = ACTIONS(2802), + [aux_sym_batch_mode_token1] = ACTIONS(2802), + [aux_sym_bind_address_token1] = ACTIONS(2802), + [aux_sym_bind_interface_token1] = ACTIONS(2802), + [aux_sym_canonical_domains_token1] = ACTIONS(2802), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2802), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2802), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2802), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2802), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2802), + [aux_sym_certificate_file_token1] = ACTIONS(2802), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2802), + [aux_sym_check_host_ip_token1] = ACTIONS(2802), + [aux_sym_ciphers_token1] = ACTIONS(2802), + [aux_sym_cipher_token1] = ACTIONS(2804), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2802), + [aux_sym_compression_token1] = ACTIONS(2802), + [aux_sym_connection_attempts_token1] = ACTIONS(2802), + [aux_sym_connect_timeout_token1] = ACTIONS(2802), + [aux_sym_control_master_token1] = ACTIONS(2802), + [aux_sym_control_path_token1] = ACTIONS(2802), + [aux_sym_control_persist_token1] = ACTIONS(2802), + [aux_sym_dynamic_forward_token1] = ACTIONS(2802), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2802), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2802), + [aux_sym_escape_char_token1] = ACTIONS(2802), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2802), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2802), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2802), + [aux_sym_forward_agent_token1] = ACTIONS(2802), + [aux_sym_forward_x11_token1] = ACTIONS(2804), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2802), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2802), + [aux_sym_gateway_ports_token1] = ACTIONS(2802), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2802), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2802), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2802), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2802), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2802), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2802), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2802), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2802), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2802), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2802), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2802), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2802), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2802), + [aux_sym_host_key_alias_token1] = ACTIONS(2802), + [aux_sym_hostname_token1] = ACTIONS(2802), + [aux_sym_identities_only_token1] = ACTIONS(2802), + [aux_sym_identity_agent_token1] = ACTIONS(2802), + [aux_sym_identity_file_token1] = ACTIONS(2802), + [aux_sym_ignore_unknown_token1] = ACTIONS(2802), + [aux_sym_include_token1] = ACTIONS(2802), + [aux_sym_ip_qos_token1] = ACTIONS(2802), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2802), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2802), + [aux_sym_kex_algorithms_token1] = ACTIONS(2802), + [aux_sym_known_hosts_command_token1] = ACTIONS(2802), + [aux_sym_local_command_token1] = ACTIONS(2802), + [aux_sym_local_forward_token1] = ACTIONS(2802), + [aux_sym_log_level_token1] = ACTIONS(2802), + [aux_sym_log_verbose_token1] = ACTIONS(2802), + [aux_sym_macs_token1] = ACTIONS(2802), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2802), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2802), + [aux_sym_password_authentication_token1] = ACTIONS(2802), + [aux_sym_permit_local_command_token1] = ACTIONS(2802), + [aux_sym_permit_remote_open_token1] = ACTIONS(2802), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2802), + [aux_sym_port_token1] = ACTIONS(2802), + [aux_sym_preferred_authentications_token1] = ACTIONS(2802), + [aux_sym_protocol_token1] = ACTIONS(2802), + [aux_sym_proxy_command_token1] = ACTIONS(2802), + [aux_sym_proxy_jump_token1] = ACTIONS(2802), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2802), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2802), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2802), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2802), + [aux_sym_rekey_limit_token1] = ACTIONS(2802), + [aux_sym_remote_command_token1] = ACTIONS(2802), + [aux_sym_remote_forward_token1] = ACTIONS(2802), + [aux_sym_request_tty_token1] = ACTIONS(2802), + [aux_sym_required_rsa_size_token1] = ACTIONS(2802), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2802), + [aux_sym_security_key_provider_token1] = ACTIONS(2802), + [aux_sym_send_env_token1] = ACTIONS(2802), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2802), + [aux_sym_server_alive_interval_token1] = ACTIONS(2802), + [aux_sym_session_type_token1] = ACTIONS(2802), + [aux_sym_set_env_token1] = ACTIONS(2802), + [aux_sym_stdin_null_token1] = ACTIONS(2802), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2802), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2802), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2802), + [aux_sym_syslog_facility_token1] = ACTIONS(2802), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2802), + [aux_sym_keep_alive_token1] = ACTIONS(2802), + [aux_sym_tunnel_token1] = ACTIONS(2804), + [aux_sym_tunnel_device_token1] = ACTIONS(2802), + [aux_sym_update_host_keys_token1] = ACTIONS(2802), + [aux_sym_use_keychain_token1] = ACTIONS(2802), + [aux_sym_use_roaming_token1] = ACTIONS(2802), + [aux_sym_user_token1] = ACTIONS(2804), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2802), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2802), + [aux_sym_visual_host_key_token1] = ACTIONS(2802), + [aux_sym_xauth_location_token1] = ACTIONS(2802), }, [408] = { - [ts_builtin_sym_end] = ACTIONS(2801), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2803), - [anon_sym_DQUOTE] = ACTIONS(2801), - [aux_sym_match_token1] = ACTIONS(2801), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2801), - [aux_sym_address_family_token1] = ACTIONS(2801), - [aux_sym_batch_mode_token1] = ACTIONS(2801), - [aux_sym_bind_address_token1] = ACTIONS(2801), - [aux_sym_bind_interface_token1] = ACTIONS(2801), - [aux_sym_canonical_domains_token1] = ACTIONS(2801), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2801), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2801), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2801), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2801), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2801), - [aux_sym_certificate_file_token1] = ACTIONS(2801), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2801), - [aux_sym_check_host_ip_token1] = ACTIONS(2801), - [aux_sym_ciphers_token1] = ACTIONS(2801), - [aux_sym_cipher_token1] = ACTIONS(2803), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2801), - [aux_sym_compression_token1] = ACTIONS(2801), - [aux_sym_connection_attempts_token1] = ACTIONS(2801), - [aux_sym_connect_timeout_token1] = ACTIONS(2801), - [aux_sym_control_master_token1] = ACTIONS(2801), - [aux_sym_control_path_token1] = ACTIONS(2801), - [aux_sym_control_persist_token1] = ACTIONS(2801), - [aux_sym_dynamic_forward_token1] = ACTIONS(2801), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2801), - [aux_sym_escape_char_token1] = ACTIONS(2801), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2801), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2801), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2801), - [aux_sym_forward_agent_token1] = ACTIONS(2801), - [aux_sym_forward_x11_token1] = ACTIONS(2803), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2801), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2801), - [aux_sym_gateway_ports_token1] = ACTIONS(2801), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2801), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2801), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2801), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2801), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2801), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2801), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2801), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2801), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2801), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2801), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2801), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2801), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2801), - [aux_sym_host_key_alias_token1] = ACTIONS(2801), - [aux_sym_hostname_token1] = ACTIONS(2801), - [aux_sym_identities_only_token1] = ACTIONS(2801), - [aux_sym_identity_agent_token1] = ACTIONS(2801), - [aux_sym_identity_file_token1] = ACTIONS(2801), - [aux_sym_ignore_unknown_token1] = ACTIONS(2801), - [aux_sym_include_token1] = ACTIONS(2801), - [aux_sym_ip_qos_token1] = ACTIONS(2801), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2801), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2801), - [aux_sym_kex_algorithms_token1] = ACTIONS(2801), - [aux_sym_known_hosts_command_token1] = ACTIONS(2801), - [aux_sym_local_command_token1] = ACTIONS(2801), - [aux_sym_local_forward_token1] = ACTIONS(2801), - [aux_sym_log_level_token1] = ACTIONS(2801), - [aux_sym_log_verbose_token1] = ACTIONS(2801), - [aux_sym_macs_token1] = ACTIONS(2801), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2801), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2801), - [aux_sym_password_authentication_token1] = ACTIONS(2801), - [aux_sym_permit_local_command_token1] = ACTIONS(2801), - [aux_sym_permit_remote_open_token1] = ACTIONS(2801), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2801), - [aux_sym_port_token1] = ACTIONS(2801), - [aux_sym_preferred_authentications_token1] = ACTIONS(2801), - [aux_sym_protocol_token1] = ACTIONS(2801), - [aux_sym_proxy_command_token1] = ACTIONS(2801), - [aux_sym_proxy_jump_token1] = ACTIONS(2801), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2801), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2801), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2801), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2801), - [aux_sym_rekey_limit_token1] = ACTIONS(2801), - [aux_sym_remote_command_token1] = ACTIONS(2801), - [aux_sym_remote_forward_token1] = ACTIONS(2801), - [aux_sym_request_tty_token1] = ACTIONS(2801), - [aux_sym_required_rsa_size_token1] = ACTIONS(2801), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2801), - [aux_sym_security_key_provider_token1] = ACTIONS(2801), - [aux_sym_send_env_token1] = ACTIONS(2801), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2801), - [aux_sym_server_alive_interval_token1] = ACTIONS(2801), - [aux_sym_session_type_token1] = ACTIONS(2801), - [aux_sym_set_env_token1] = ACTIONS(2801), - [aux_sym_stdin_null_token1] = ACTIONS(2801), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2801), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2801), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2801), - [aux_sym_syslog_facility_token1] = ACTIONS(2801), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2801), - [aux_sym_keep_alive_token1] = ACTIONS(2801), - [aux_sym_tunnel_token1] = ACTIONS(2803), - [aux_sym_tunnel_device_token1] = ACTIONS(2801), - [aux_sym_update_host_keys_token1] = ACTIONS(2801), - [aux_sym_use_keychain_token1] = ACTIONS(2801), - [aux_sym_use_roaming_token1] = ACTIONS(2801), - [aux_sym_user_token1] = ACTIONS(2803), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2801), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2801), - [aux_sym_visual_host_key_token1] = ACTIONS(2801), - [aux_sym_xauth_location_token1] = ACTIONS(2801), + [ts_builtin_sym_end] = ACTIONS(2806), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2808), + [anon_sym_DQUOTE] = ACTIONS(2810), + [aux_sym_match_token1] = ACTIONS(2806), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2806), + [aux_sym_address_family_token1] = ACTIONS(2806), + [aux_sym_batch_mode_token1] = ACTIONS(2806), + [aux_sym_bind_address_token1] = ACTIONS(2806), + [aux_sym_bind_interface_token1] = ACTIONS(2806), + [aux_sym_canonical_domains_token1] = ACTIONS(2806), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2806), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2806), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2806), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2806), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2806), + [aux_sym_certificate_file_token1] = ACTIONS(2806), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2806), + [aux_sym_check_host_ip_token1] = ACTIONS(2806), + [aux_sym_ciphers_token1] = ACTIONS(2806), + [aux_sym_cipher_token1] = ACTIONS(2808), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2806), + [aux_sym_compression_token1] = ACTIONS(2806), + [aux_sym_connection_attempts_token1] = ACTIONS(2806), + [aux_sym_connect_timeout_token1] = ACTIONS(2806), + [aux_sym_control_master_token1] = ACTIONS(2806), + [aux_sym_control_path_token1] = ACTIONS(2806), + [aux_sym_control_persist_token1] = ACTIONS(2806), + [aux_sym_dynamic_forward_token1] = ACTIONS(2806), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2806), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2806), + [aux_sym_escape_char_token1] = ACTIONS(2806), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2806), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2806), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2806), + [aux_sym_forward_agent_token1] = ACTIONS(2806), + [aux_sym_forward_x11_token1] = ACTIONS(2808), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2806), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2806), + [aux_sym_gateway_ports_token1] = ACTIONS(2806), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2806), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2806), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2806), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2806), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2806), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2806), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2806), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2806), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2806), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2806), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2806), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2806), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2806), + [aux_sym_host_key_alias_token1] = ACTIONS(2806), + [aux_sym_hostname_token1] = ACTIONS(2806), + [aux_sym_identities_only_token1] = ACTIONS(2806), + [aux_sym_identity_agent_token1] = ACTIONS(2806), + [aux_sym_identity_file_token1] = ACTIONS(2806), + [aux_sym_ignore_unknown_token1] = ACTIONS(2806), + [aux_sym_include_token1] = ACTIONS(2806), + [aux_sym_ip_qos_token1] = ACTIONS(2806), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2806), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2806), + [aux_sym_kex_algorithms_token1] = ACTIONS(2806), + [aux_sym_known_hosts_command_token1] = ACTIONS(2806), + [aux_sym_local_command_token1] = ACTIONS(2806), + [aux_sym_local_forward_token1] = ACTIONS(2806), + [aux_sym_log_level_token1] = ACTIONS(2806), + [aux_sym_log_verbose_token1] = ACTIONS(2806), + [aux_sym_macs_token1] = ACTIONS(2806), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2806), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2806), + [aux_sym_password_authentication_token1] = ACTIONS(2806), + [aux_sym_permit_local_command_token1] = ACTIONS(2806), + [aux_sym_permit_remote_open_token1] = ACTIONS(2806), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2806), + [aux_sym_port_token1] = ACTIONS(2806), + [aux_sym_preferred_authentications_token1] = ACTIONS(2806), + [aux_sym_protocol_token1] = ACTIONS(2806), + [aux_sym_proxy_command_token1] = ACTIONS(2806), + [aux_sym_proxy_jump_token1] = ACTIONS(2806), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2806), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2806), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2806), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2806), + [aux_sym_rekey_limit_token1] = ACTIONS(2806), + [aux_sym_remote_command_token1] = ACTIONS(2806), + [aux_sym_remote_forward_token1] = ACTIONS(2806), + [aux_sym_request_tty_token1] = ACTIONS(2806), + [aux_sym_required_rsa_size_token1] = ACTIONS(2806), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2806), + [aux_sym_security_key_provider_token1] = ACTIONS(2806), + [aux_sym_send_env_token1] = ACTIONS(2806), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2806), + [aux_sym_server_alive_interval_token1] = ACTIONS(2806), + [aux_sym_session_type_token1] = ACTIONS(2806), + [aux_sym_set_env_token1] = ACTIONS(2806), + [aux_sym_stdin_null_token1] = ACTIONS(2806), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2806), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2806), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2806), + [aux_sym_syslog_facility_token1] = ACTIONS(2806), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2806), + [aux_sym_keep_alive_token1] = ACTIONS(2806), + [aux_sym_tunnel_token1] = ACTIONS(2808), + [aux_sym_tunnel_device_token1] = ACTIONS(2806), + [aux_sym_update_host_keys_token1] = ACTIONS(2806), + [aux_sym_use_keychain_token1] = ACTIONS(2806), + [aux_sym_use_roaming_token1] = ACTIONS(2806), + [aux_sym_user_token1] = ACTIONS(2808), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2806), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2806), + [aux_sym_visual_host_key_token1] = ACTIONS(2806), + [aux_sym_xauth_location_token1] = ACTIONS(2806), }, [409] = { - [ts_builtin_sym_end] = ACTIONS(2805), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2807), - [anon_sym_DQUOTE] = ACTIONS(2805), - [aux_sym_match_token1] = ACTIONS(2805), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2805), - [aux_sym_address_family_token1] = ACTIONS(2805), - [aux_sym_batch_mode_token1] = ACTIONS(2805), - [aux_sym_bind_address_token1] = ACTIONS(2805), - [aux_sym_bind_interface_token1] = ACTIONS(2805), - [aux_sym_canonical_domains_token1] = ACTIONS(2805), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2805), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2805), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2805), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2805), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2805), - [aux_sym_certificate_file_token1] = ACTIONS(2805), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2805), - [aux_sym_check_host_ip_token1] = ACTIONS(2805), - [aux_sym_ciphers_token1] = ACTIONS(2805), - [aux_sym_cipher_token1] = ACTIONS(2807), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2805), - [aux_sym_compression_token1] = ACTIONS(2805), - [aux_sym_connection_attempts_token1] = ACTIONS(2805), - [aux_sym_connect_timeout_token1] = ACTIONS(2805), - [aux_sym_control_master_token1] = ACTIONS(2805), - [aux_sym_control_path_token1] = ACTIONS(2805), - [aux_sym_control_persist_token1] = ACTIONS(2805), - [aux_sym_dynamic_forward_token1] = ACTIONS(2805), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2805), - [aux_sym_escape_char_token1] = ACTIONS(2805), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2805), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2805), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2805), - [aux_sym_forward_agent_token1] = ACTIONS(2805), - [aux_sym_forward_x11_token1] = ACTIONS(2807), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2805), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2805), - [aux_sym_gateway_ports_token1] = ACTIONS(2805), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2805), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2805), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2805), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2805), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2805), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2805), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2805), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2805), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2805), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2805), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2805), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2805), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2805), - [aux_sym_host_key_alias_token1] = ACTIONS(2805), - [aux_sym_hostname_token1] = ACTIONS(2805), - [aux_sym_identities_only_token1] = ACTIONS(2805), - [aux_sym_identity_agent_token1] = ACTIONS(2805), - [aux_sym_identity_file_token1] = ACTIONS(2805), - [aux_sym_ignore_unknown_token1] = ACTIONS(2805), - [aux_sym_include_token1] = ACTIONS(2805), - [aux_sym_ip_qos_token1] = ACTIONS(2805), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2805), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2805), - [aux_sym_kex_algorithms_token1] = ACTIONS(2805), - [aux_sym_known_hosts_command_token1] = ACTIONS(2805), - [aux_sym_local_command_token1] = ACTIONS(2805), - [aux_sym_local_forward_token1] = ACTIONS(2805), - [aux_sym_log_level_token1] = ACTIONS(2805), - [aux_sym_log_verbose_token1] = ACTIONS(2805), - [aux_sym_macs_token1] = ACTIONS(2805), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2805), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2805), - [aux_sym_password_authentication_token1] = ACTIONS(2805), - [aux_sym_permit_local_command_token1] = ACTIONS(2805), - [aux_sym_permit_remote_open_token1] = ACTIONS(2805), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2805), - [aux_sym_port_token1] = ACTIONS(2805), - [aux_sym_preferred_authentications_token1] = ACTIONS(2805), - [aux_sym_protocol_token1] = ACTIONS(2805), - [aux_sym_proxy_command_token1] = ACTIONS(2805), - [aux_sym_proxy_jump_token1] = ACTIONS(2805), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2805), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2805), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2805), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2805), - [aux_sym_rekey_limit_token1] = ACTIONS(2805), - [aux_sym_remote_command_token1] = ACTIONS(2805), - [aux_sym_remote_forward_token1] = ACTIONS(2805), - [aux_sym_request_tty_token1] = ACTIONS(2805), - [aux_sym_required_rsa_size_token1] = ACTIONS(2805), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2805), - [aux_sym_security_key_provider_token1] = ACTIONS(2805), - [aux_sym_send_env_token1] = ACTIONS(2805), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2805), - [aux_sym_server_alive_interval_token1] = ACTIONS(2805), - [aux_sym_session_type_token1] = ACTIONS(2805), - [aux_sym_set_env_token1] = ACTIONS(2805), - [aux_sym_stdin_null_token1] = ACTIONS(2805), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2805), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2805), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2805), - [aux_sym_syslog_facility_token1] = ACTIONS(2805), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2805), - [aux_sym_keep_alive_token1] = ACTIONS(2805), - [aux_sym_tunnel_token1] = ACTIONS(2807), - [aux_sym_tunnel_device_token1] = ACTIONS(2805), - [aux_sym_update_host_keys_token1] = ACTIONS(2805), - [aux_sym_use_keychain_token1] = ACTIONS(2805), - [aux_sym_use_roaming_token1] = ACTIONS(2805), - [aux_sym_user_token1] = ACTIONS(2807), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2805), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2805), - [aux_sym_visual_host_key_token1] = ACTIONS(2805), - [aux_sym_xauth_location_token1] = ACTIONS(2805), + [ts_builtin_sym_end] = ACTIONS(2812), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2814), + [anon_sym_DQUOTE] = ACTIONS(2812), + [aux_sym_match_token1] = ACTIONS(2812), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2812), + [aux_sym_address_family_token1] = ACTIONS(2812), + [aux_sym_batch_mode_token1] = ACTIONS(2812), + [aux_sym_bind_address_token1] = ACTIONS(2812), + [aux_sym_bind_interface_token1] = ACTIONS(2812), + [aux_sym_canonical_domains_token1] = ACTIONS(2812), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2812), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2812), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2812), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2812), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2812), + [aux_sym_certificate_file_token1] = ACTIONS(2812), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2812), + [aux_sym_check_host_ip_token1] = ACTIONS(2812), + [aux_sym_ciphers_token1] = ACTIONS(2812), + [aux_sym_cipher_token1] = ACTIONS(2814), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2812), + [aux_sym_compression_token1] = ACTIONS(2812), + [aux_sym_connection_attempts_token1] = ACTIONS(2812), + [aux_sym_connect_timeout_token1] = ACTIONS(2812), + [aux_sym_control_master_token1] = ACTIONS(2812), + [aux_sym_control_path_token1] = ACTIONS(2812), + [aux_sym_control_persist_token1] = ACTIONS(2812), + [aux_sym_dynamic_forward_token1] = ACTIONS(2812), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2812), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2812), + [aux_sym_escape_char_token1] = ACTIONS(2812), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2812), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2812), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2812), + [aux_sym_forward_agent_token1] = ACTIONS(2812), + [aux_sym_forward_x11_token1] = ACTIONS(2814), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2812), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2812), + [aux_sym_gateway_ports_token1] = ACTIONS(2812), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2812), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2812), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2812), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2812), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2812), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2812), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2812), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2812), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2812), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2812), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2812), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2812), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2812), + [aux_sym_host_key_alias_token1] = ACTIONS(2812), + [aux_sym_hostname_token1] = ACTIONS(2812), + [aux_sym_identities_only_token1] = ACTIONS(2812), + [aux_sym_identity_agent_token1] = ACTIONS(2812), + [aux_sym_identity_file_token1] = ACTIONS(2812), + [aux_sym_ignore_unknown_token1] = ACTIONS(2812), + [aux_sym_include_token1] = ACTIONS(2812), + [aux_sym_ip_qos_token1] = ACTIONS(2812), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2812), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2812), + [aux_sym_kex_algorithms_token1] = ACTIONS(2812), + [aux_sym_known_hosts_command_token1] = ACTIONS(2812), + [aux_sym_local_command_token1] = ACTIONS(2812), + [aux_sym_local_forward_token1] = ACTIONS(2812), + [aux_sym_log_level_token1] = ACTIONS(2812), + [aux_sym_log_verbose_token1] = ACTIONS(2812), + [aux_sym_macs_token1] = ACTIONS(2812), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2812), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2812), + [aux_sym_password_authentication_token1] = ACTIONS(2812), + [aux_sym_permit_local_command_token1] = ACTIONS(2812), + [aux_sym_permit_remote_open_token1] = ACTIONS(2812), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2812), + [aux_sym_port_token1] = ACTIONS(2812), + [aux_sym_preferred_authentications_token1] = ACTIONS(2812), + [aux_sym_protocol_token1] = ACTIONS(2812), + [aux_sym_proxy_command_token1] = ACTIONS(2812), + [aux_sym_proxy_jump_token1] = ACTIONS(2812), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2812), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2812), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2812), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2812), + [aux_sym_rekey_limit_token1] = ACTIONS(2812), + [aux_sym_remote_command_token1] = ACTIONS(2812), + [aux_sym_remote_forward_token1] = ACTIONS(2812), + [aux_sym_request_tty_token1] = ACTIONS(2812), + [aux_sym_required_rsa_size_token1] = ACTIONS(2812), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2812), + [aux_sym_security_key_provider_token1] = ACTIONS(2812), + [aux_sym_send_env_token1] = ACTIONS(2812), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2812), + [aux_sym_server_alive_interval_token1] = ACTIONS(2812), + [aux_sym_session_type_token1] = ACTIONS(2812), + [aux_sym_set_env_token1] = ACTIONS(2812), + [aux_sym_stdin_null_token1] = ACTIONS(2812), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2812), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2812), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2812), + [aux_sym_syslog_facility_token1] = ACTIONS(2812), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2812), + [aux_sym_keep_alive_token1] = ACTIONS(2812), + [aux_sym_tunnel_token1] = ACTIONS(2814), + [aux_sym_tunnel_device_token1] = ACTIONS(2812), + [aux_sym_update_host_keys_token1] = ACTIONS(2812), + [aux_sym_use_keychain_token1] = ACTIONS(2812), + [aux_sym_use_roaming_token1] = ACTIONS(2812), + [aux_sym_user_token1] = ACTIONS(2814), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2812), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2812), + [aux_sym_visual_host_key_token1] = ACTIONS(2812), + [aux_sym_xauth_location_token1] = ACTIONS(2812), }, [410] = { - [ts_builtin_sym_end] = ACTIONS(2809), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2811), - [anon_sym_DQUOTE] = ACTIONS(2813), - [aux_sym_match_token1] = ACTIONS(2809), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2809), - [aux_sym_address_family_token1] = ACTIONS(2809), - [aux_sym_batch_mode_token1] = ACTIONS(2809), - [aux_sym_bind_address_token1] = ACTIONS(2809), - [aux_sym_bind_interface_token1] = ACTIONS(2809), - [aux_sym_canonical_domains_token1] = ACTIONS(2809), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2809), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2809), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2809), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2809), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2809), - [aux_sym_certificate_file_token1] = ACTIONS(2809), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2809), - [aux_sym_check_host_ip_token1] = ACTIONS(2809), - [aux_sym_ciphers_token1] = ACTIONS(2809), - [aux_sym_cipher_token1] = ACTIONS(2811), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2809), - [aux_sym_compression_token1] = ACTIONS(2809), - [aux_sym_connection_attempts_token1] = ACTIONS(2809), - [aux_sym_connect_timeout_token1] = ACTIONS(2809), - [aux_sym_control_master_token1] = ACTIONS(2809), - [aux_sym_control_path_token1] = ACTIONS(2809), - [aux_sym_control_persist_token1] = ACTIONS(2809), - [aux_sym_dynamic_forward_token1] = ACTIONS(2809), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2809), - [aux_sym_escape_char_token1] = ACTIONS(2809), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2809), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2809), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2809), - [aux_sym_forward_agent_token1] = ACTIONS(2809), - [aux_sym_forward_x11_token1] = ACTIONS(2811), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2809), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2809), - [aux_sym_gateway_ports_token1] = ACTIONS(2809), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2809), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2809), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2809), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2809), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2809), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2809), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2809), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2809), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2809), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2809), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2809), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2809), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2809), - [aux_sym_host_key_alias_token1] = ACTIONS(2809), - [aux_sym_hostname_token1] = ACTIONS(2809), - [aux_sym_identities_only_token1] = ACTIONS(2809), - [aux_sym_identity_agent_token1] = ACTIONS(2809), - [aux_sym_identity_file_token1] = ACTIONS(2809), - [aux_sym_ignore_unknown_token1] = ACTIONS(2809), - [aux_sym_include_token1] = ACTIONS(2809), - [aux_sym_ip_qos_token1] = ACTIONS(2809), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2809), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2809), - [aux_sym_kex_algorithms_token1] = ACTIONS(2809), - [aux_sym_known_hosts_command_token1] = ACTIONS(2809), - [aux_sym_local_command_token1] = ACTIONS(2809), - [aux_sym_local_forward_token1] = ACTIONS(2809), - [aux_sym_log_level_token1] = ACTIONS(2809), - [aux_sym_log_verbose_token1] = ACTIONS(2809), - [aux_sym_macs_token1] = ACTIONS(2809), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2809), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2809), - [aux_sym_password_authentication_token1] = ACTIONS(2809), - [aux_sym_permit_local_command_token1] = ACTIONS(2809), - [aux_sym_permit_remote_open_token1] = ACTIONS(2809), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2809), - [aux_sym_port_token1] = ACTIONS(2809), - [aux_sym_preferred_authentications_token1] = ACTIONS(2809), - [aux_sym_protocol_token1] = ACTIONS(2809), - [aux_sym_proxy_command_token1] = ACTIONS(2809), - [aux_sym_proxy_jump_token1] = ACTIONS(2809), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2809), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2809), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2809), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2809), - [aux_sym_rekey_limit_token1] = ACTIONS(2809), - [aux_sym_remote_command_token1] = ACTIONS(2809), - [aux_sym_remote_forward_token1] = ACTIONS(2809), - [aux_sym_request_tty_token1] = ACTIONS(2809), - [aux_sym_required_rsa_size_token1] = ACTIONS(2809), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2809), - [aux_sym_security_key_provider_token1] = ACTIONS(2809), - [aux_sym_send_env_token1] = ACTIONS(2809), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2809), - [aux_sym_server_alive_interval_token1] = ACTIONS(2809), - [aux_sym_session_type_token1] = ACTIONS(2809), - [aux_sym_set_env_token1] = ACTIONS(2809), - [aux_sym_stdin_null_token1] = ACTIONS(2809), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2809), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2809), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2809), - [aux_sym_syslog_facility_token1] = ACTIONS(2809), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2809), - [aux_sym_keep_alive_token1] = ACTIONS(2809), - [aux_sym_tunnel_token1] = ACTIONS(2811), - [aux_sym_tunnel_device_token1] = ACTIONS(2809), - [aux_sym_update_host_keys_token1] = ACTIONS(2809), - [aux_sym_use_keychain_token1] = ACTIONS(2809), - [aux_sym_use_roaming_token1] = ACTIONS(2809), - [aux_sym_user_token1] = ACTIONS(2811), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2809), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2809), - [aux_sym_visual_host_key_token1] = ACTIONS(2809), - [aux_sym_xauth_location_token1] = ACTIONS(2809), + [ts_builtin_sym_end] = ACTIONS(2816), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2818), + [anon_sym_DQUOTE] = ACTIONS(2820), + [aux_sym_match_token1] = ACTIONS(2816), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2816), + [aux_sym_address_family_token1] = ACTIONS(2816), + [aux_sym_batch_mode_token1] = ACTIONS(2816), + [aux_sym_bind_address_token1] = ACTIONS(2816), + [aux_sym_bind_interface_token1] = ACTIONS(2816), + [aux_sym_canonical_domains_token1] = ACTIONS(2816), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2816), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2816), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2816), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2816), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2816), + [aux_sym_certificate_file_token1] = ACTIONS(2816), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2816), + [aux_sym_check_host_ip_token1] = ACTIONS(2816), + [aux_sym_ciphers_token1] = ACTIONS(2816), + [aux_sym_cipher_token1] = ACTIONS(2818), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2816), + [aux_sym_compression_token1] = ACTIONS(2816), + [aux_sym_connection_attempts_token1] = ACTIONS(2816), + [aux_sym_connect_timeout_token1] = ACTIONS(2816), + [aux_sym_control_master_token1] = ACTIONS(2816), + [aux_sym_control_path_token1] = ACTIONS(2816), + [aux_sym_control_persist_token1] = ACTIONS(2816), + [aux_sym_dynamic_forward_token1] = ACTIONS(2816), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2816), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2816), + [aux_sym_escape_char_token1] = ACTIONS(2816), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2816), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2816), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2816), + [aux_sym_forward_agent_token1] = ACTIONS(2816), + [aux_sym_forward_x11_token1] = ACTIONS(2818), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2816), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2816), + [aux_sym_gateway_ports_token1] = ACTIONS(2816), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2816), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2816), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2816), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2816), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2816), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2816), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2816), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2816), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2816), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2816), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2816), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2816), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2816), + [aux_sym_host_key_alias_token1] = ACTIONS(2816), + [aux_sym_hostname_token1] = ACTIONS(2816), + [aux_sym_identities_only_token1] = ACTIONS(2816), + [aux_sym_identity_agent_token1] = ACTIONS(2816), + [aux_sym_identity_file_token1] = ACTIONS(2816), + [aux_sym_ignore_unknown_token1] = ACTIONS(2816), + [aux_sym_include_token1] = ACTIONS(2816), + [aux_sym_ip_qos_token1] = ACTIONS(2816), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2816), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2816), + [aux_sym_kex_algorithms_token1] = ACTIONS(2816), + [aux_sym_known_hosts_command_token1] = ACTIONS(2816), + [aux_sym_local_command_token1] = ACTIONS(2816), + [aux_sym_local_forward_token1] = ACTIONS(2816), + [aux_sym_log_level_token1] = ACTIONS(2816), + [aux_sym_log_verbose_token1] = ACTIONS(2816), + [aux_sym_macs_token1] = ACTIONS(2816), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2816), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2816), + [aux_sym_password_authentication_token1] = ACTIONS(2816), + [aux_sym_permit_local_command_token1] = ACTIONS(2816), + [aux_sym_permit_remote_open_token1] = ACTIONS(2816), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2816), + [aux_sym_port_token1] = ACTIONS(2816), + [aux_sym_preferred_authentications_token1] = ACTIONS(2816), + [aux_sym_protocol_token1] = ACTIONS(2816), + [aux_sym_proxy_command_token1] = ACTIONS(2816), + [aux_sym_proxy_jump_token1] = ACTIONS(2816), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2816), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2816), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2816), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2816), + [aux_sym_rekey_limit_token1] = ACTIONS(2816), + [aux_sym_remote_command_token1] = ACTIONS(2816), + [aux_sym_remote_forward_token1] = ACTIONS(2816), + [aux_sym_request_tty_token1] = ACTIONS(2816), + [aux_sym_required_rsa_size_token1] = ACTIONS(2816), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2816), + [aux_sym_security_key_provider_token1] = ACTIONS(2816), + [aux_sym_send_env_token1] = ACTIONS(2816), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2816), + [aux_sym_server_alive_interval_token1] = ACTIONS(2816), + [aux_sym_session_type_token1] = ACTIONS(2816), + [aux_sym_set_env_token1] = ACTIONS(2816), + [aux_sym_stdin_null_token1] = ACTIONS(2816), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2816), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2816), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2816), + [aux_sym_syslog_facility_token1] = ACTIONS(2816), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2816), + [aux_sym_keep_alive_token1] = ACTIONS(2816), + [aux_sym_tunnel_token1] = ACTIONS(2818), + [aux_sym_tunnel_device_token1] = ACTIONS(2816), + [aux_sym_update_host_keys_token1] = ACTIONS(2816), + [aux_sym_use_keychain_token1] = ACTIONS(2816), + [aux_sym_use_roaming_token1] = ACTIONS(2816), + [aux_sym_user_token1] = ACTIONS(2818), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2816), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2816), + [aux_sym_visual_host_key_token1] = ACTIONS(2816), + [aux_sym_xauth_location_token1] = ACTIONS(2816), }, [411] = { - [ts_builtin_sym_end] = ACTIONS(2815), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2817), - [anon_sym_DQUOTE] = ACTIONS(2815), - [aux_sym_match_token1] = ACTIONS(2815), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2815), - [aux_sym_address_family_token1] = ACTIONS(2815), - [aux_sym_batch_mode_token1] = ACTIONS(2815), - [aux_sym_bind_address_token1] = ACTIONS(2815), - [aux_sym_bind_interface_token1] = ACTIONS(2815), - [aux_sym_canonical_domains_token1] = ACTIONS(2815), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2815), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2815), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2815), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2815), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2815), - [aux_sym_certificate_file_token1] = ACTIONS(2815), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2815), - [aux_sym_check_host_ip_token1] = ACTIONS(2815), - [aux_sym_ciphers_token1] = ACTIONS(2815), - [aux_sym_cipher_token1] = ACTIONS(2817), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2815), - [aux_sym_compression_token1] = ACTIONS(2815), - [aux_sym_connection_attempts_token1] = ACTIONS(2815), - [aux_sym_connect_timeout_token1] = ACTIONS(2815), - [aux_sym_control_master_token1] = ACTIONS(2815), - [aux_sym_control_path_token1] = ACTIONS(2815), - [aux_sym_control_persist_token1] = ACTIONS(2815), - [aux_sym_dynamic_forward_token1] = ACTIONS(2815), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2815), - [aux_sym_escape_char_token1] = ACTIONS(2815), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2815), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2815), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2815), - [aux_sym_forward_agent_token1] = ACTIONS(2815), - [aux_sym_forward_x11_token1] = ACTIONS(2817), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2815), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2815), - [aux_sym_gateway_ports_token1] = ACTIONS(2815), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2815), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2815), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2815), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2815), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2815), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2815), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2815), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2815), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2815), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2815), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2815), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2815), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2815), - [aux_sym_host_key_alias_token1] = ACTIONS(2815), - [aux_sym_hostname_token1] = ACTIONS(2815), - [aux_sym_identities_only_token1] = ACTIONS(2815), - [aux_sym_identity_agent_token1] = ACTIONS(2815), - [aux_sym_identity_file_token1] = ACTIONS(2815), - [aux_sym_ignore_unknown_token1] = ACTIONS(2815), - [aux_sym_include_token1] = ACTIONS(2815), - [aux_sym_ip_qos_token1] = ACTIONS(2815), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2815), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2815), - [aux_sym_kex_algorithms_token1] = ACTIONS(2815), - [aux_sym_known_hosts_command_token1] = ACTIONS(2815), - [aux_sym_local_command_token1] = ACTIONS(2815), - [aux_sym_local_forward_token1] = ACTIONS(2815), - [aux_sym_log_level_token1] = ACTIONS(2815), - [aux_sym_log_verbose_token1] = ACTIONS(2815), - [aux_sym_macs_token1] = ACTIONS(2815), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2815), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2815), - [aux_sym_password_authentication_token1] = ACTIONS(2815), - [aux_sym_permit_local_command_token1] = ACTIONS(2815), - [aux_sym_permit_remote_open_token1] = ACTIONS(2815), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2815), - [aux_sym_port_token1] = ACTIONS(2815), - [aux_sym_preferred_authentications_token1] = ACTIONS(2815), - [aux_sym_protocol_token1] = ACTIONS(2815), - [aux_sym_proxy_command_token1] = ACTIONS(2815), - [aux_sym_proxy_jump_token1] = ACTIONS(2815), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2815), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2815), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2815), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2815), - [aux_sym_rekey_limit_token1] = ACTIONS(2815), - [aux_sym_remote_command_token1] = ACTIONS(2815), - [aux_sym_remote_forward_token1] = ACTIONS(2815), - [aux_sym_request_tty_token1] = ACTIONS(2815), - [aux_sym_required_rsa_size_token1] = ACTIONS(2815), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2815), - [aux_sym_security_key_provider_token1] = ACTIONS(2815), - [aux_sym_send_env_token1] = ACTIONS(2815), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2815), - [aux_sym_server_alive_interval_token1] = ACTIONS(2815), - [aux_sym_session_type_token1] = ACTIONS(2815), - [aux_sym_set_env_token1] = ACTIONS(2815), - [aux_sym_stdin_null_token1] = ACTIONS(2815), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2815), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2815), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2815), - [aux_sym_syslog_facility_token1] = ACTIONS(2815), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2815), - [aux_sym_keep_alive_token1] = ACTIONS(2815), - [aux_sym_tunnel_token1] = ACTIONS(2817), - [aux_sym_tunnel_device_token1] = ACTIONS(2815), - [aux_sym_update_host_keys_token1] = ACTIONS(2815), - [aux_sym_use_keychain_token1] = ACTIONS(2815), - [aux_sym_use_roaming_token1] = ACTIONS(2815), - [aux_sym_user_token1] = ACTIONS(2817), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2815), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2815), - [aux_sym_visual_host_key_token1] = ACTIONS(2815), - [aux_sym_xauth_location_token1] = ACTIONS(2815), + [ts_builtin_sym_end] = ACTIONS(2822), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2824), + [anon_sym_DQUOTE] = ACTIONS(2822), + [aux_sym_match_token1] = ACTIONS(2822), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2822), + [aux_sym_address_family_token1] = ACTIONS(2822), + [aux_sym_batch_mode_token1] = ACTIONS(2822), + [aux_sym_bind_address_token1] = ACTIONS(2822), + [aux_sym_bind_interface_token1] = ACTIONS(2822), + [aux_sym_canonical_domains_token1] = ACTIONS(2822), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2822), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2822), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2822), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2822), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2822), + [aux_sym_certificate_file_token1] = ACTIONS(2822), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2822), + [aux_sym_check_host_ip_token1] = ACTIONS(2822), + [aux_sym_ciphers_token1] = ACTIONS(2822), + [aux_sym_cipher_token1] = ACTIONS(2824), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2822), + [aux_sym_compression_token1] = ACTIONS(2822), + [aux_sym_connection_attempts_token1] = ACTIONS(2822), + [aux_sym_connect_timeout_token1] = ACTIONS(2822), + [aux_sym_control_master_token1] = ACTIONS(2822), + [aux_sym_control_path_token1] = ACTIONS(2822), + [aux_sym_control_persist_token1] = ACTIONS(2822), + [aux_sym_dynamic_forward_token1] = ACTIONS(2822), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2822), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2822), + [aux_sym_escape_char_token1] = ACTIONS(2822), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2822), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2822), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2822), + [aux_sym_forward_agent_token1] = ACTIONS(2822), + [aux_sym_forward_x11_token1] = ACTIONS(2824), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2822), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2822), + [aux_sym_gateway_ports_token1] = ACTIONS(2822), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2822), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2822), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2822), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2822), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2822), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2822), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2822), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2822), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2822), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2822), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2822), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2822), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2822), + [aux_sym_host_key_alias_token1] = ACTIONS(2822), + [aux_sym_hostname_token1] = ACTIONS(2822), + [aux_sym_identities_only_token1] = ACTIONS(2822), + [aux_sym_identity_agent_token1] = ACTIONS(2822), + [aux_sym_identity_file_token1] = ACTIONS(2822), + [aux_sym_ignore_unknown_token1] = ACTIONS(2822), + [aux_sym_include_token1] = ACTIONS(2822), + [aux_sym_ip_qos_token1] = ACTIONS(2822), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2822), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2822), + [aux_sym_kex_algorithms_token1] = ACTIONS(2822), + [aux_sym_known_hosts_command_token1] = ACTIONS(2822), + [aux_sym_local_command_token1] = ACTIONS(2822), + [aux_sym_local_forward_token1] = ACTIONS(2822), + [aux_sym_log_level_token1] = ACTIONS(2822), + [aux_sym_log_verbose_token1] = ACTIONS(2822), + [aux_sym_macs_token1] = ACTIONS(2822), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2822), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2822), + [aux_sym_password_authentication_token1] = ACTIONS(2822), + [aux_sym_permit_local_command_token1] = ACTIONS(2822), + [aux_sym_permit_remote_open_token1] = ACTIONS(2822), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2822), + [aux_sym_port_token1] = ACTIONS(2822), + [aux_sym_preferred_authentications_token1] = ACTIONS(2822), + [aux_sym_protocol_token1] = ACTIONS(2822), + [aux_sym_proxy_command_token1] = ACTIONS(2822), + [aux_sym_proxy_jump_token1] = ACTIONS(2822), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2822), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2822), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2822), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2822), + [aux_sym_rekey_limit_token1] = ACTIONS(2822), + [aux_sym_remote_command_token1] = ACTIONS(2822), + [aux_sym_remote_forward_token1] = ACTIONS(2822), + [aux_sym_request_tty_token1] = ACTIONS(2822), + [aux_sym_required_rsa_size_token1] = ACTIONS(2822), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2822), + [aux_sym_security_key_provider_token1] = ACTIONS(2822), + [aux_sym_send_env_token1] = ACTIONS(2822), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2822), + [aux_sym_server_alive_interval_token1] = ACTIONS(2822), + [aux_sym_session_type_token1] = ACTIONS(2822), + [aux_sym_set_env_token1] = ACTIONS(2822), + [aux_sym_stdin_null_token1] = ACTIONS(2822), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2822), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2822), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2822), + [aux_sym_syslog_facility_token1] = ACTIONS(2822), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2822), + [aux_sym_keep_alive_token1] = ACTIONS(2822), + [aux_sym_tunnel_token1] = ACTIONS(2824), + [aux_sym_tunnel_device_token1] = ACTIONS(2822), + [aux_sym_update_host_keys_token1] = ACTIONS(2822), + [aux_sym_use_keychain_token1] = ACTIONS(2822), + [aux_sym_use_roaming_token1] = ACTIONS(2822), + [aux_sym_user_token1] = ACTIONS(2824), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2822), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2822), + [aux_sym_visual_host_key_token1] = ACTIONS(2822), + [aux_sym_xauth_location_token1] = ACTIONS(2822), }, [412] = { - [ts_builtin_sym_end] = ACTIONS(2819), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2821), - [anon_sym_DQUOTE] = ACTIONS(2823), - [aux_sym_match_token1] = ACTIONS(2819), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2819), - [aux_sym_address_family_token1] = ACTIONS(2819), - [aux_sym_batch_mode_token1] = ACTIONS(2819), - [aux_sym_bind_address_token1] = ACTIONS(2819), - [aux_sym_bind_interface_token1] = ACTIONS(2819), - [aux_sym_canonical_domains_token1] = ACTIONS(2819), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2819), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2819), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2819), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2819), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2819), - [aux_sym_certificate_file_token1] = ACTIONS(2819), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2819), - [aux_sym_check_host_ip_token1] = ACTIONS(2819), - [aux_sym_ciphers_token1] = ACTIONS(2819), - [aux_sym_cipher_token1] = ACTIONS(2821), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2819), - [aux_sym_compression_token1] = ACTIONS(2819), - [aux_sym_connection_attempts_token1] = ACTIONS(2819), - [aux_sym_connect_timeout_token1] = ACTIONS(2819), - [aux_sym_control_master_token1] = ACTIONS(2819), - [aux_sym_control_path_token1] = ACTIONS(2819), - [aux_sym_control_persist_token1] = ACTIONS(2819), - [aux_sym_dynamic_forward_token1] = ACTIONS(2819), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2819), - [aux_sym_escape_char_token1] = ACTIONS(2819), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2819), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2819), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2819), - [aux_sym_forward_agent_token1] = ACTIONS(2819), - [aux_sym_forward_x11_token1] = ACTIONS(2821), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2819), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2819), - [aux_sym_gateway_ports_token1] = ACTIONS(2819), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2819), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2819), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2819), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2819), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2819), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2819), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2819), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2819), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2819), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2819), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2819), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2819), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2819), - [aux_sym_host_key_alias_token1] = ACTIONS(2819), - [aux_sym_hostname_token1] = ACTIONS(2819), - [aux_sym_identities_only_token1] = ACTIONS(2819), - [aux_sym_identity_agent_token1] = ACTIONS(2819), - [aux_sym_identity_file_token1] = ACTIONS(2819), - [aux_sym_ignore_unknown_token1] = ACTIONS(2819), - [aux_sym_include_token1] = ACTIONS(2819), - [aux_sym_ip_qos_token1] = ACTIONS(2819), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2819), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2819), - [aux_sym_kex_algorithms_token1] = ACTIONS(2819), - [aux_sym_known_hosts_command_token1] = ACTIONS(2819), - [aux_sym_local_command_token1] = ACTIONS(2819), - [aux_sym_local_forward_token1] = ACTIONS(2819), - [aux_sym_log_level_token1] = ACTIONS(2819), - [aux_sym_log_verbose_token1] = ACTIONS(2819), - [aux_sym_macs_token1] = ACTIONS(2819), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2819), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2819), - [aux_sym_password_authentication_token1] = ACTIONS(2819), - [aux_sym_permit_local_command_token1] = ACTIONS(2819), - [aux_sym_permit_remote_open_token1] = ACTIONS(2819), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2819), - [aux_sym_port_token1] = ACTIONS(2819), - [aux_sym_preferred_authentications_token1] = ACTIONS(2819), - [aux_sym_protocol_token1] = ACTIONS(2819), - [aux_sym_proxy_command_token1] = ACTIONS(2819), - [aux_sym_proxy_jump_token1] = ACTIONS(2819), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2819), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2819), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2819), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2819), - [aux_sym_rekey_limit_token1] = ACTIONS(2819), - [aux_sym_remote_command_token1] = ACTIONS(2819), - [aux_sym_remote_forward_token1] = ACTIONS(2819), - [aux_sym_request_tty_token1] = ACTIONS(2819), - [aux_sym_required_rsa_size_token1] = ACTIONS(2819), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2819), - [aux_sym_security_key_provider_token1] = ACTIONS(2819), - [aux_sym_send_env_token1] = ACTIONS(2819), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2819), - [aux_sym_server_alive_interval_token1] = ACTIONS(2819), - [aux_sym_session_type_token1] = ACTIONS(2819), - [aux_sym_set_env_token1] = ACTIONS(2819), - [aux_sym_stdin_null_token1] = ACTIONS(2819), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2819), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2819), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2819), - [aux_sym_syslog_facility_token1] = ACTIONS(2819), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2819), - [aux_sym_keep_alive_token1] = ACTIONS(2819), - [aux_sym_tunnel_token1] = ACTIONS(2821), - [aux_sym_tunnel_device_token1] = ACTIONS(2819), - [aux_sym_update_host_keys_token1] = ACTIONS(2819), - [aux_sym_use_keychain_token1] = ACTIONS(2819), - [aux_sym_use_roaming_token1] = ACTIONS(2819), - [aux_sym_user_token1] = ACTIONS(2821), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2819), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2819), - [aux_sym_visual_host_key_token1] = ACTIONS(2819), - [aux_sym_xauth_location_token1] = ACTIONS(2819), + [ts_builtin_sym_end] = ACTIONS(2826), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2828), + [anon_sym_DQUOTE] = ACTIONS(2830), + [aux_sym_match_token1] = ACTIONS(2826), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2826), + [aux_sym_address_family_token1] = ACTIONS(2826), + [aux_sym_batch_mode_token1] = ACTIONS(2826), + [aux_sym_bind_address_token1] = ACTIONS(2826), + [aux_sym_bind_interface_token1] = ACTIONS(2826), + [aux_sym_canonical_domains_token1] = ACTIONS(2826), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2826), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2826), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2826), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2826), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2826), + [aux_sym_certificate_file_token1] = ACTIONS(2826), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2826), + [aux_sym_check_host_ip_token1] = ACTIONS(2826), + [aux_sym_ciphers_token1] = ACTIONS(2826), + [aux_sym_cipher_token1] = ACTIONS(2828), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2826), + [aux_sym_compression_token1] = ACTIONS(2826), + [aux_sym_connection_attempts_token1] = ACTIONS(2826), + [aux_sym_connect_timeout_token1] = ACTIONS(2826), + [aux_sym_control_master_token1] = ACTIONS(2826), + [aux_sym_control_path_token1] = ACTIONS(2826), + [aux_sym_control_persist_token1] = ACTIONS(2826), + [aux_sym_dynamic_forward_token1] = ACTIONS(2826), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2826), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2826), + [aux_sym_escape_char_token1] = ACTIONS(2826), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2826), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2826), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2826), + [aux_sym_forward_agent_token1] = ACTIONS(2826), + [aux_sym_forward_x11_token1] = ACTIONS(2828), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2826), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2826), + [aux_sym_gateway_ports_token1] = ACTIONS(2826), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2826), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2826), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2826), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2826), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2826), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2826), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2826), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2826), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2826), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2826), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2826), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2826), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2826), + [aux_sym_host_key_alias_token1] = ACTIONS(2826), + [aux_sym_hostname_token1] = ACTIONS(2826), + [aux_sym_identities_only_token1] = ACTIONS(2826), + [aux_sym_identity_agent_token1] = ACTIONS(2826), + [aux_sym_identity_file_token1] = ACTIONS(2826), + [aux_sym_ignore_unknown_token1] = ACTIONS(2826), + [aux_sym_include_token1] = ACTIONS(2826), + [aux_sym_ip_qos_token1] = ACTIONS(2826), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2826), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2826), + [aux_sym_kex_algorithms_token1] = ACTIONS(2826), + [aux_sym_known_hosts_command_token1] = ACTIONS(2826), + [aux_sym_local_command_token1] = ACTIONS(2826), + [aux_sym_local_forward_token1] = ACTIONS(2826), + [aux_sym_log_level_token1] = ACTIONS(2826), + [aux_sym_log_verbose_token1] = ACTIONS(2826), + [aux_sym_macs_token1] = ACTIONS(2826), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2826), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2826), + [aux_sym_password_authentication_token1] = ACTIONS(2826), + [aux_sym_permit_local_command_token1] = ACTIONS(2826), + [aux_sym_permit_remote_open_token1] = ACTIONS(2826), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2826), + [aux_sym_port_token1] = ACTIONS(2826), + [aux_sym_preferred_authentications_token1] = ACTIONS(2826), + [aux_sym_protocol_token1] = ACTIONS(2826), + [aux_sym_proxy_command_token1] = ACTIONS(2826), + [aux_sym_proxy_jump_token1] = ACTIONS(2826), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2826), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2826), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2826), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2826), + [aux_sym_rekey_limit_token1] = ACTIONS(2826), + [aux_sym_remote_command_token1] = ACTIONS(2826), + [aux_sym_remote_forward_token1] = ACTIONS(2826), + [aux_sym_request_tty_token1] = ACTIONS(2826), + [aux_sym_required_rsa_size_token1] = ACTIONS(2826), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2826), + [aux_sym_security_key_provider_token1] = ACTIONS(2826), + [aux_sym_send_env_token1] = ACTIONS(2826), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2826), + [aux_sym_server_alive_interval_token1] = ACTIONS(2826), + [aux_sym_session_type_token1] = ACTIONS(2826), + [aux_sym_set_env_token1] = ACTIONS(2826), + [aux_sym_stdin_null_token1] = ACTIONS(2826), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2826), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2826), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2826), + [aux_sym_syslog_facility_token1] = ACTIONS(2826), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2826), + [aux_sym_keep_alive_token1] = ACTIONS(2826), + [aux_sym_tunnel_token1] = ACTIONS(2828), + [aux_sym_tunnel_device_token1] = ACTIONS(2826), + [aux_sym_update_host_keys_token1] = ACTIONS(2826), + [aux_sym_use_keychain_token1] = ACTIONS(2826), + [aux_sym_use_roaming_token1] = ACTIONS(2826), + [aux_sym_user_token1] = ACTIONS(2828), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2826), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2826), + [aux_sym_visual_host_key_token1] = ACTIONS(2826), + [aux_sym_xauth_location_token1] = ACTIONS(2826), }, [413] = { - [ts_builtin_sym_end] = ACTIONS(2825), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2827), - [anon_sym_DQUOTE] = ACTIONS(2825), - [aux_sym_match_token1] = ACTIONS(2825), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2825), - [aux_sym_address_family_token1] = ACTIONS(2825), - [aux_sym_batch_mode_token1] = ACTIONS(2825), - [aux_sym_bind_address_token1] = ACTIONS(2825), - [aux_sym_bind_interface_token1] = ACTIONS(2825), - [aux_sym_canonical_domains_token1] = ACTIONS(2825), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2825), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2825), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2825), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2825), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2825), - [aux_sym_certificate_file_token1] = ACTIONS(2825), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2825), - [aux_sym_check_host_ip_token1] = ACTIONS(2825), - [aux_sym_ciphers_token1] = ACTIONS(2825), - [aux_sym_cipher_token1] = ACTIONS(2827), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2825), - [aux_sym_compression_token1] = ACTIONS(2825), - [aux_sym_connection_attempts_token1] = ACTIONS(2825), - [aux_sym_connect_timeout_token1] = ACTIONS(2825), - [aux_sym_control_master_token1] = ACTIONS(2825), - [aux_sym_control_path_token1] = ACTIONS(2825), - [aux_sym_control_persist_token1] = ACTIONS(2825), - [aux_sym_dynamic_forward_token1] = ACTIONS(2825), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2825), - [aux_sym_escape_char_token1] = ACTIONS(2825), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2825), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2825), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2825), - [aux_sym_forward_agent_token1] = ACTIONS(2825), - [aux_sym_forward_x11_token1] = ACTIONS(2827), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2825), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2825), - [aux_sym_gateway_ports_token1] = ACTIONS(2825), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2825), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2825), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2825), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2825), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2825), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2825), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2825), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2825), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2825), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2825), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2825), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2825), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2825), - [aux_sym_host_key_alias_token1] = ACTIONS(2825), - [aux_sym_hostname_token1] = ACTIONS(2825), - [aux_sym_identities_only_token1] = ACTIONS(2825), - [aux_sym_identity_agent_token1] = ACTIONS(2825), - [aux_sym_identity_file_token1] = ACTIONS(2825), - [aux_sym_ignore_unknown_token1] = ACTIONS(2825), - [aux_sym_include_token1] = ACTIONS(2825), - [aux_sym_ip_qos_token1] = ACTIONS(2825), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2825), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2825), - [aux_sym_kex_algorithms_token1] = ACTIONS(2825), - [aux_sym_known_hosts_command_token1] = ACTIONS(2825), - [aux_sym_local_command_token1] = ACTIONS(2825), - [aux_sym_local_forward_token1] = ACTIONS(2825), - [aux_sym_log_level_token1] = ACTIONS(2825), - [aux_sym_log_verbose_token1] = ACTIONS(2825), - [aux_sym_macs_token1] = ACTIONS(2825), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2825), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2825), - [aux_sym_password_authentication_token1] = ACTIONS(2825), - [aux_sym_permit_local_command_token1] = ACTIONS(2825), - [aux_sym_permit_remote_open_token1] = ACTIONS(2825), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2825), - [aux_sym_port_token1] = ACTIONS(2825), - [aux_sym_preferred_authentications_token1] = ACTIONS(2825), - [aux_sym_protocol_token1] = ACTIONS(2825), - [aux_sym_proxy_command_token1] = ACTIONS(2825), - [aux_sym_proxy_jump_token1] = ACTIONS(2825), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2825), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2825), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2825), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2825), - [aux_sym_rekey_limit_token1] = ACTIONS(2825), - [aux_sym_remote_command_token1] = ACTIONS(2825), - [aux_sym_remote_forward_token1] = ACTIONS(2825), - [aux_sym_request_tty_token1] = ACTIONS(2825), - [aux_sym_required_rsa_size_token1] = ACTIONS(2825), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2825), - [aux_sym_security_key_provider_token1] = ACTIONS(2825), - [aux_sym_send_env_token1] = ACTIONS(2825), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2825), - [aux_sym_server_alive_interval_token1] = ACTIONS(2825), - [aux_sym_session_type_token1] = ACTIONS(2825), - [aux_sym_set_env_token1] = ACTIONS(2825), - [aux_sym_stdin_null_token1] = ACTIONS(2825), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2825), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2825), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2825), - [aux_sym_syslog_facility_token1] = ACTIONS(2825), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2825), - [aux_sym_keep_alive_token1] = ACTIONS(2825), - [aux_sym_tunnel_token1] = ACTIONS(2827), - [aux_sym_tunnel_device_token1] = ACTIONS(2825), - [aux_sym_update_host_keys_token1] = ACTIONS(2825), - [aux_sym_use_keychain_token1] = ACTIONS(2825), - [aux_sym_use_roaming_token1] = ACTIONS(2825), - [aux_sym_user_token1] = ACTIONS(2827), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2825), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2825), - [aux_sym_visual_host_key_token1] = ACTIONS(2825), - [aux_sym_xauth_location_token1] = ACTIONS(2825), + [ts_builtin_sym_end] = ACTIONS(2832), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2834), + [anon_sym_DQUOTE] = ACTIONS(2836), + [aux_sym_match_token1] = ACTIONS(2832), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2832), + [aux_sym_address_family_token1] = ACTIONS(2832), + [aux_sym_batch_mode_token1] = ACTIONS(2832), + [aux_sym_bind_address_token1] = ACTIONS(2832), + [aux_sym_bind_interface_token1] = ACTIONS(2832), + [aux_sym_canonical_domains_token1] = ACTIONS(2832), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2832), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2832), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2832), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2832), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2832), + [aux_sym_certificate_file_token1] = ACTIONS(2832), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2832), + [aux_sym_check_host_ip_token1] = ACTIONS(2832), + [aux_sym_ciphers_token1] = ACTIONS(2832), + [aux_sym_cipher_token1] = ACTIONS(2834), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2832), + [aux_sym_compression_token1] = ACTIONS(2832), + [aux_sym_connection_attempts_token1] = ACTIONS(2832), + [aux_sym_connect_timeout_token1] = ACTIONS(2832), + [aux_sym_control_master_token1] = ACTIONS(2832), + [aux_sym_control_path_token1] = ACTIONS(2832), + [aux_sym_control_persist_token1] = ACTIONS(2832), + [aux_sym_dynamic_forward_token1] = ACTIONS(2832), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2832), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2832), + [aux_sym_escape_char_token1] = ACTIONS(2832), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2832), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2832), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2832), + [aux_sym_forward_agent_token1] = ACTIONS(2832), + [aux_sym_forward_x11_token1] = ACTIONS(2834), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2832), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2832), + [aux_sym_gateway_ports_token1] = ACTIONS(2832), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2832), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2832), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2832), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2832), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2832), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2832), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2832), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2832), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2832), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2832), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2832), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2832), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2832), + [aux_sym_host_key_alias_token1] = ACTIONS(2832), + [aux_sym_hostname_token1] = ACTIONS(2832), + [aux_sym_identities_only_token1] = ACTIONS(2832), + [aux_sym_identity_agent_token1] = ACTIONS(2832), + [aux_sym_identity_file_token1] = ACTIONS(2832), + [aux_sym_ignore_unknown_token1] = ACTIONS(2832), + [aux_sym_include_token1] = ACTIONS(2832), + [aux_sym_ip_qos_token1] = ACTIONS(2832), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2832), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2832), + [aux_sym_kex_algorithms_token1] = ACTIONS(2832), + [aux_sym_known_hosts_command_token1] = ACTIONS(2832), + [aux_sym_local_command_token1] = ACTIONS(2832), + [aux_sym_local_forward_token1] = ACTIONS(2832), + [aux_sym_log_level_token1] = ACTIONS(2832), + [aux_sym_log_verbose_token1] = ACTIONS(2832), + [aux_sym_macs_token1] = ACTIONS(2832), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2832), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2832), + [aux_sym_password_authentication_token1] = ACTIONS(2832), + [aux_sym_permit_local_command_token1] = ACTIONS(2832), + [aux_sym_permit_remote_open_token1] = ACTIONS(2832), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2832), + [aux_sym_port_token1] = ACTIONS(2832), + [aux_sym_preferred_authentications_token1] = ACTIONS(2832), + [aux_sym_protocol_token1] = ACTIONS(2832), + [aux_sym_proxy_command_token1] = ACTIONS(2832), + [aux_sym_proxy_jump_token1] = ACTIONS(2832), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2832), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2832), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2832), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2832), + [aux_sym_rekey_limit_token1] = ACTIONS(2832), + [aux_sym_remote_command_token1] = ACTIONS(2832), + [aux_sym_remote_forward_token1] = ACTIONS(2832), + [aux_sym_request_tty_token1] = ACTIONS(2832), + [aux_sym_required_rsa_size_token1] = ACTIONS(2832), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2832), + [aux_sym_security_key_provider_token1] = ACTIONS(2832), + [aux_sym_send_env_token1] = ACTIONS(2832), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2832), + [aux_sym_server_alive_interval_token1] = ACTIONS(2832), + [aux_sym_session_type_token1] = ACTIONS(2832), + [aux_sym_set_env_token1] = ACTIONS(2832), + [aux_sym_stdin_null_token1] = ACTIONS(2832), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2832), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2832), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2832), + [aux_sym_syslog_facility_token1] = ACTIONS(2832), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2832), + [aux_sym_keep_alive_token1] = ACTIONS(2832), + [aux_sym_tunnel_token1] = ACTIONS(2834), + [aux_sym_tunnel_device_token1] = ACTIONS(2832), + [aux_sym_update_host_keys_token1] = ACTIONS(2832), + [aux_sym_use_keychain_token1] = ACTIONS(2832), + [aux_sym_use_roaming_token1] = ACTIONS(2832), + [aux_sym_user_token1] = ACTIONS(2834), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2832), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2832), + [aux_sym_visual_host_key_token1] = ACTIONS(2832), + [aux_sym_xauth_location_token1] = ACTIONS(2832), }, [414] = { - [ts_builtin_sym_end] = ACTIONS(2829), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2833), - [aux_sym_match_token1] = ACTIONS(2829), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2829), - [aux_sym_address_family_token1] = ACTIONS(2829), - [aux_sym_batch_mode_token1] = ACTIONS(2829), - [aux_sym_bind_address_token1] = ACTIONS(2829), - [aux_sym_bind_interface_token1] = ACTIONS(2829), - [aux_sym_canonical_domains_token1] = ACTIONS(2829), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2829), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2829), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2829), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2829), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2829), - [aux_sym_certificate_file_token1] = ACTIONS(2829), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2829), - [aux_sym_check_host_ip_token1] = ACTIONS(2829), - [aux_sym_ciphers_token1] = ACTIONS(2829), - [aux_sym_cipher_token1] = ACTIONS(2831), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2829), - [aux_sym_compression_token1] = ACTIONS(2829), - [aux_sym_connection_attempts_token1] = ACTIONS(2829), - [aux_sym_connect_timeout_token1] = ACTIONS(2829), - [aux_sym_control_master_token1] = ACTIONS(2829), - [aux_sym_control_path_token1] = ACTIONS(2829), - [aux_sym_control_persist_token1] = ACTIONS(2829), - [aux_sym_dynamic_forward_token1] = ACTIONS(2829), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2829), - [aux_sym_escape_char_token1] = ACTIONS(2829), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2829), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2829), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2829), - [aux_sym_forward_agent_token1] = ACTIONS(2829), - [aux_sym_forward_x11_token1] = ACTIONS(2831), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2829), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2829), - [aux_sym_gateway_ports_token1] = ACTIONS(2829), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2829), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2829), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2829), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2829), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2829), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2829), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2829), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2829), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2829), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2829), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2829), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2829), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2829), - [aux_sym_host_key_alias_token1] = ACTIONS(2829), - [aux_sym_hostname_token1] = ACTIONS(2829), - [aux_sym_identities_only_token1] = ACTIONS(2829), - [aux_sym_identity_agent_token1] = ACTIONS(2829), - [aux_sym_identity_file_token1] = ACTIONS(2829), - [aux_sym_ignore_unknown_token1] = ACTIONS(2829), - [aux_sym_include_token1] = ACTIONS(2829), - [aux_sym_ip_qos_token1] = ACTIONS(2829), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2829), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2829), - [aux_sym_kex_algorithms_token1] = ACTIONS(2829), - [aux_sym_known_hosts_command_token1] = ACTIONS(2829), - [aux_sym_local_command_token1] = ACTIONS(2829), - [aux_sym_local_forward_token1] = ACTIONS(2829), - [aux_sym_log_level_token1] = ACTIONS(2829), - [aux_sym_log_verbose_token1] = ACTIONS(2829), - [aux_sym_macs_token1] = ACTIONS(2829), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2829), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2829), - [aux_sym_password_authentication_token1] = ACTIONS(2829), - [aux_sym_permit_local_command_token1] = ACTIONS(2829), - [aux_sym_permit_remote_open_token1] = ACTIONS(2829), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2829), - [aux_sym_port_token1] = ACTIONS(2829), - [aux_sym_preferred_authentications_token1] = ACTIONS(2829), - [aux_sym_protocol_token1] = ACTIONS(2829), - [aux_sym_proxy_command_token1] = ACTIONS(2829), - [aux_sym_proxy_jump_token1] = ACTIONS(2829), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2829), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2829), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2829), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2829), - [aux_sym_rekey_limit_token1] = ACTIONS(2829), - [aux_sym_remote_command_token1] = ACTIONS(2829), - [aux_sym_remote_forward_token1] = ACTIONS(2829), - [aux_sym_request_tty_token1] = ACTIONS(2829), - [aux_sym_required_rsa_size_token1] = ACTIONS(2829), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2829), - [aux_sym_security_key_provider_token1] = ACTIONS(2829), - [aux_sym_send_env_token1] = ACTIONS(2829), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2829), - [aux_sym_server_alive_interval_token1] = ACTIONS(2829), - [aux_sym_session_type_token1] = ACTIONS(2829), - [aux_sym_set_env_token1] = ACTIONS(2829), - [aux_sym_stdin_null_token1] = ACTIONS(2829), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2829), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2829), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2829), - [aux_sym_syslog_facility_token1] = ACTIONS(2829), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2829), - [aux_sym_keep_alive_token1] = ACTIONS(2829), - [aux_sym_tunnel_token1] = ACTIONS(2831), - [aux_sym_tunnel_device_token1] = ACTIONS(2829), - [aux_sym_update_host_keys_token1] = ACTIONS(2829), - [aux_sym_use_keychain_token1] = ACTIONS(2829), - [aux_sym_use_roaming_token1] = ACTIONS(2829), - [aux_sym_user_token1] = ACTIONS(2831), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2829), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2829), - [aux_sym_visual_host_key_token1] = ACTIONS(2829), - [aux_sym_xauth_location_token1] = ACTIONS(2829), + [ts_builtin_sym_end] = ACTIONS(2838), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2840), + [anon_sym_DQUOTE] = ACTIONS(2838), + [aux_sym_match_token1] = ACTIONS(2838), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2838), + [aux_sym_address_family_token1] = ACTIONS(2838), + [aux_sym_batch_mode_token1] = ACTIONS(2838), + [aux_sym_bind_address_token1] = ACTIONS(2838), + [aux_sym_bind_interface_token1] = ACTIONS(2838), + [aux_sym_canonical_domains_token1] = ACTIONS(2838), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2838), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2838), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2838), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2838), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2838), + [aux_sym_certificate_file_token1] = ACTIONS(2838), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2838), + [aux_sym_check_host_ip_token1] = ACTIONS(2838), + [aux_sym_ciphers_token1] = ACTIONS(2838), + [aux_sym_cipher_token1] = ACTIONS(2840), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2838), + [aux_sym_compression_token1] = ACTIONS(2838), + [aux_sym_connection_attempts_token1] = ACTIONS(2838), + [aux_sym_connect_timeout_token1] = ACTIONS(2838), + [aux_sym_control_master_token1] = ACTIONS(2838), + [aux_sym_control_path_token1] = ACTIONS(2838), + [aux_sym_control_persist_token1] = ACTIONS(2838), + [aux_sym_dynamic_forward_token1] = ACTIONS(2838), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2838), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2838), + [aux_sym_escape_char_token1] = ACTIONS(2838), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2838), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2838), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2838), + [aux_sym_forward_agent_token1] = ACTIONS(2838), + [aux_sym_forward_x11_token1] = ACTIONS(2840), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2838), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2838), + [aux_sym_gateway_ports_token1] = ACTIONS(2838), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2838), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2838), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2838), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2838), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2838), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2838), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2838), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2838), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2838), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2838), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2838), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2838), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2838), + [aux_sym_host_key_alias_token1] = ACTIONS(2838), + [aux_sym_hostname_token1] = ACTIONS(2838), + [aux_sym_identities_only_token1] = ACTIONS(2838), + [aux_sym_identity_agent_token1] = ACTIONS(2838), + [aux_sym_identity_file_token1] = ACTIONS(2838), + [aux_sym_ignore_unknown_token1] = ACTIONS(2838), + [aux_sym_include_token1] = ACTIONS(2838), + [aux_sym_ip_qos_token1] = ACTIONS(2838), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2838), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2838), + [aux_sym_kex_algorithms_token1] = ACTIONS(2838), + [aux_sym_known_hosts_command_token1] = ACTIONS(2838), + [aux_sym_local_command_token1] = ACTIONS(2838), + [aux_sym_local_forward_token1] = ACTIONS(2838), + [aux_sym_log_level_token1] = ACTIONS(2838), + [aux_sym_log_verbose_token1] = ACTIONS(2838), + [aux_sym_macs_token1] = ACTIONS(2838), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2838), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2838), + [aux_sym_password_authentication_token1] = ACTIONS(2838), + [aux_sym_permit_local_command_token1] = ACTIONS(2838), + [aux_sym_permit_remote_open_token1] = ACTIONS(2838), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2838), + [aux_sym_port_token1] = ACTIONS(2838), + [aux_sym_preferred_authentications_token1] = ACTIONS(2838), + [aux_sym_protocol_token1] = ACTIONS(2838), + [aux_sym_proxy_command_token1] = ACTIONS(2838), + [aux_sym_proxy_jump_token1] = ACTIONS(2838), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2838), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2838), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2838), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2838), + [aux_sym_rekey_limit_token1] = ACTIONS(2838), + [aux_sym_remote_command_token1] = ACTIONS(2838), + [aux_sym_remote_forward_token1] = ACTIONS(2838), + [aux_sym_request_tty_token1] = ACTIONS(2838), + [aux_sym_required_rsa_size_token1] = ACTIONS(2838), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2838), + [aux_sym_security_key_provider_token1] = ACTIONS(2838), + [aux_sym_send_env_token1] = ACTIONS(2838), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2838), + [aux_sym_server_alive_interval_token1] = ACTIONS(2838), + [aux_sym_session_type_token1] = ACTIONS(2838), + [aux_sym_set_env_token1] = ACTIONS(2838), + [aux_sym_stdin_null_token1] = ACTIONS(2838), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2838), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2838), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2838), + [aux_sym_syslog_facility_token1] = ACTIONS(2838), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2838), + [aux_sym_keep_alive_token1] = ACTIONS(2838), + [aux_sym_tunnel_token1] = ACTIONS(2840), + [aux_sym_tunnel_device_token1] = ACTIONS(2838), + [aux_sym_update_host_keys_token1] = ACTIONS(2838), + [aux_sym_use_keychain_token1] = ACTIONS(2838), + [aux_sym_use_roaming_token1] = ACTIONS(2838), + [aux_sym_user_token1] = ACTIONS(2840), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2838), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2838), + [aux_sym_visual_host_key_token1] = ACTIONS(2838), + [aux_sym_xauth_location_token1] = ACTIONS(2838), }, [415] = { - [ts_builtin_sym_end] = ACTIONS(2835), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2837), - [anon_sym_DQUOTE] = ACTIONS(2839), - [aux_sym_match_token1] = ACTIONS(2835), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2835), - [aux_sym_address_family_token1] = ACTIONS(2835), - [aux_sym_batch_mode_token1] = ACTIONS(2835), - [aux_sym_bind_address_token1] = ACTIONS(2835), - [aux_sym_bind_interface_token1] = ACTIONS(2835), - [aux_sym_canonical_domains_token1] = ACTIONS(2835), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2835), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2835), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2835), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2835), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2835), - [aux_sym_certificate_file_token1] = ACTIONS(2835), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2835), - [aux_sym_check_host_ip_token1] = ACTIONS(2835), - [aux_sym_ciphers_token1] = ACTIONS(2835), - [aux_sym_cipher_token1] = ACTIONS(2837), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2835), - [aux_sym_compression_token1] = ACTIONS(2835), - [aux_sym_connection_attempts_token1] = ACTIONS(2835), - [aux_sym_connect_timeout_token1] = ACTIONS(2835), - [aux_sym_control_master_token1] = ACTIONS(2835), - [aux_sym_control_path_token1] = ACTIONS(2835), - [aux_sym_control_persist_token1] = ACTIONS(2835), - [aux_sym_dynamic_forward_token1] = ACTIONS(2835), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2835), - [aux_sym_escape_char_token1] = ACTIONS(2835), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2835), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2835), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2835), - [aux_sym_forward_agent_token1] = ACTIONS(2835), - [aux_sym_forward_x11_token1] = ACTIONS(2837), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2835), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2835), - [aux_sym_gateway_ports_token1] = ACTIONS(2835), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2835), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2835), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2835), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2835), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2835), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2835), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2835), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2835), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2835), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2835), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2835), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2835), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2835), - [aux_sym_host_key_alias_token1] = ACTIONS(2835), - [aux_sym_hostname_token1] = ACTIONS(2835), - [aux_sym_identities_only_token1] = ACTIONS(2835), - [aux_sym_identity_agent_token1] = ACTIONS(2835), - [aux_sym_identity_file_token1] = ACTIONS(2835), - [aux_sym_ignore_unknown_token1] = ACTIONS(2835), - [aux_sym_include_token1] = ACTIONS(2835), - [aux_sym_ip_qos_token1] = ACTIONS(2835), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2835), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2835), - [aux_sym_kex_algorithms_token1] = ACTIONS(2835), - [aux_sym_known_hosts_command_token1] = ACTIONS(2835), - [aux_sym_local_command_token1] = ACTIONS(2835), - [aux_sym_local_forward_token1] = ACTIONS(2835), - [aux_sym_log_level_token1] = ACTIONS(2835), - [aux_sym_log_verbose_token1] = ACTIONS(2835), - [aux_sym_macs_token1] = ACTIONS(2835), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2835), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2835), - [aux_sym_password_authentication_token1] = ACTIONS(2835), - [aux_sym_permit_local_command_token1] = ACTIONS(2835), - [aux_sym_permit_remote_open_token1] = ACTIONS(2835), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2835), - [aux_sym_port_token1] = ACTIONS(2835), - [aux_sym_preferred_authentications_token1] = ACTIONS(2835), - [aux_sym_protocol_token1] = ACTIONS(2835), - [aux_sym_proxy_command_token1] = ACTIONS(2835), - [aux_sym_proxy_jump_token1] = ACTIONS(2835), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2835), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2835), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2835), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2835), - [aux_sym_rekey_limit_token1] = ACTIONS(2835), - [aux_sym_remote_command_token1] = ACTIONS(2835), - [aux_sym_remote_forward_token1] = ACTIONS(2835), - [aux_sym_request_tty_token1] = ACTIONS(2835), - [aux_sym_required_rsa_size_token1] = ACTIONS(2835), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2835), - [aux_sym_security_key_provider_token1] = ACTIONS(2835), - [aux_sym_send_env_token1] = ACTIONS(2835), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2835), - [aux_sym_server_alive_interval_token1] = ACTIONS(2835), - [aux_sym_session_type_token1] = ACTIONS(2835), - [aux_sym_set_env_token1] = ACTIONS(2835), - [aux_sym_stdin_null_token1] = ACTIONS(2835), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2835), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2835), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2835), - [aux_sym_syslog_facility_token1] = ACTIONS(2835), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2835), - [aux_sym_keep_alive_token1] = ACTIONS(2835), - [aux_sym_tunnel_token1] = ACTIONS(2837), - [aux_sym_tunnel_device_token1] = ACTIONS(2835), - [aux_sym_update_host_keys_token1] = ACTIONS(2835), - [aux_sym_use_keychain_token1] = ACTIONS(2835), - [aux_sym_use_roaming_token1] = ACTIONS(2835), - [aux_sym_user_token1] = ACTIONS(2837), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2835), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2835), - [aux_sym_visual_host_key_token1] = ACTIONS(2835), - [aux_sym_xauth_location_token1] = ACTIONS(2835), + [ts_builtin_sym_end] = ACTIONS(2842), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2844), + [anon_sym_DQUOTE] = ACTIONS(2842), + [aux_sym_match_token1] = ACTIONS(2842), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2842), + [aux_sym_address_family_token1] = ACTIONS(2842), + [aux_sym_batch_mode_token1] = ACTIONS(2842), + [aux_sym_bind_address_token1] = ACTIONS(2842), + [aux_sym_bind_interface_token1] = ACTIONS(2842), + [aux_sym_canonical_domains_token1] = ACTIONS(2842), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2842), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2842), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2842), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2842), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2842), + [aux_sym_certificate_file_token1] = ACTIONS(2842), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2842), + [aux_sym_check_host_ip_token1] = ACTIONS(2842), + [aux_sym_ciphers_token1] = ACTIONS(2842), + [aux_sym_cipher_token1] = ACTIONS(2844), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2842), + [aux_sym_compression_token1] = ACTIONS(2842), + [aux_sym_connection_attempts_token1] = ACTIONS(2842), + [aux_sym_connect_timeout_token1] = ACTIONS(2842), + [aux_sym_control_master_token1] = ACTIONS(2842), + [aux_sym_control_path_token1] = ACTIONS(2842), + [aux_sym_control_persist_token1] = ACTIONS(2842), + [aux_sym_dynamic_forward_token1] = ACTIONS(2842), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2842), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2842), + [aux_sym_escape_char_token1] = ACTIONS(2842), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2842), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2842), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2842), + [aux_sym_forward_agent_token1] = ACTIONS(2842), + [aux_sym_forward_x11_token1] = ACTIONS(2844), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2842), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2842), + [aux_sym_gateway_ports_token1] = ACTIONS(2842), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2842), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2842), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2842), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2842), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2842), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2842), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2842), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2842), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2842), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2842), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2842), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2842), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2842), + [aux_sym_host_key_alias_token1] = ACTIONS(2842), + [aux_sym_hostname_token1] = ACTIONS(2842), + [aux_sym_identities_only_token1] = ACTIONS(2842), + [aux_sym_identity_agent_token1] = ACTIONS(2842), + [aux_sym_identity_file_token1] = ACTIONS(2842), + [aux_sym_ignore_unknown_token1] = ACTIONS(2842), + [aux_sym_include_token1] = ACTIONS(2842), + [aux_sym_ip_qos_token1] = ACTIONS(2842), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2842), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2842), + [aux_sym_kex_algorithms_token1] = ACTIONS(2842), + [aux_sym_known_hosts_command_token1] = ACTIONS(2842), + [aux_sym_local_command_token1] = ACTIONS(2842), + [aux_sym_local_forward_token1] = ACTIONS(2842), + [aux_sym_log_level_token1] = ACTIONS(2842), + [aux_sym_log_verbose_token1] = ACTIONS(2842), + [aux_sym_macs_token1] = ACTIONS(2842), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2842), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2842), + [aux_sym_password_authentication_token1] = ACTIONS(2842), + [aux_sym_permit_local_command_token1] = ACTIONS(2842), + [aux_sym_permit_remote_open_token1] = ACTIONS(2842), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2842), + [aux_sym_port_token1] = ACTIONS(2842), + [aux_sym_preferred_authentications_token1] = ACTIONS(2842), + [aux_sym_protocol_token1] = ACTIONS(2842), + [aux_sym_proxy_command_token1] = ACTIONS(2842), + [aux_sym_proxy_jump_token1] = ACTIONS(2842), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2842), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2842), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2842), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2842), + [aux_sym_rekey_limit_token1] = ACTIONS(2842), + [aux_sym_remote_command_token1] = ACTIONS(2842), + [aux_sym_remote_forward_token1] = ACTIONS(2842), + [aux_sym_request_tty_token1] = ACTIONS(2842), + [aux_sym_required_rsa_size_token1] = ACTIONS(2842), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2842), + [aux_sym_security_key_provider_token1] = ACTIONS(2842), + [aux_sym_send_env_token1] = ACTIONS(2842), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2842), + [aux_sym_server_alive_interval_token1] = ACTIONS(2842), + [aux_sym_session_type_token1] = ACTIONS(2842), + [aux_sym_set_env_token1] = ACTIONS(2842), + [aux_sym_stdin_null_token1] = ACTIONS(2842), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2842), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2842), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2842), + [aux_sym_syslog_facility_token1] = ACTIONS(2842), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2842), + [aux_sym_keep_alive_token1] = ACTIONS(2842), + [aux_sym_tunnel_token1] = ACTIONS(2844), + [aux_sym_tunnel_device_token1] = ACTIONS(2842), + [aux_sym_update_host_keys_token1] = ACTIONS(2842), + [aux_sym_use_keychain_token1] = ACTIONS(2842), + [aux_sym_use_roaming_token1] = ACTIONS(2842), + [aux_sym_user_token1] = ACTIONS(2844), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2842), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2842), + [aux_sym_visual_host_key_token1] = ACTIONS(2842), + [aux_sym_xauth_location_token1] = ACTIONS(2842), }, [416] = { - [ts_builtin_sym_end] = ACTIONS(2841), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2843), - [anon_sym_DQUOTE] = ACTIONS(2841), - [aux_sym_match_token1] = ACTIONS(2841), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2841), - [aux_sym_address_family_token1] = ACTIONS(2841), - [aux_sym_batch_mode_token1] = ACTIONS(2841), - [aux_sym_bind_address_token1] = ACTIONS(2841), - [aux_sym_bind_interface_token1] = ACTIONS(2841), - [aux_sym_canonical_domains_token1] = ACTIONS(2841), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2841), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2841), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2841), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2841), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2841), - [aux_sym_certificate_file_token1] = ACTIONS(2841), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2841), - [aux_sym_check_host_ip_token1] = ACTIONS(2841), - [aux_sym_ciphers_token1] = ACTIONS(2841), - [aux_sym_cipher_token1] = ACTIONS(2843), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2841), - [aux_sym_compression_token1] = ACTIONS(2841), - [aux_sym_connection_attempts_token1] = ACTIONS(2841), - [aux_sym_connect_timeout_token1] = ACTIONS(2841), - [aux_sym_control_master_token1] = ACTIONS(2841), - [aux_sym_control_path_token1] = ACTIONS(2841), - [aux_sym_control_persist_token1] = ACTIONS(2841), - [aux_sym_dynamic_forward_token1] = ACTIONS(2841), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2841), - [aux_sym_escape_char_token1] = ACTIONS(2841), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2841), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2841), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2841), - [aux_sym_forward_agent_token1] = ACTIONS(2841), - [aux_sym_forward_x11_token1] = ACTIONS(2843), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2841), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2841), - [aux_sym_gateway_ports_token1] = ACTIONS(2841), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2841), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2841), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2841), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2841), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2841), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2841), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2841), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2841), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2841), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2841), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2841), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2841), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2841), - [aux_sym_host_key_alias_token1] = ACTIONS(2841), - [aux_sym_hostname_token1] = ACTIONS(2841), - [aux_sym_identities_only_token1] = ACTIONS(2841), - [aux_sym_identity_agent_token1] = ACTIONS(2841), - [aux_sym_identity_file_token1] = ACTIONS(2841), - [aux_sym_ignore_unknown_token1] = ACTIONS(2841), - [aux_sym_include_token1] = ACTIONS(2841), - [aux_sym_ip_qos_token1] = ACTIONS(2841), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2841), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2841), - [aux_sym_kex_algorithms_token1] = ACTIONS(2841), - [aux_sym_known_hosts_command_token1] = ACTIONS(2841), - [aux_sym_local_command_token1] = ACTIONS(2841), - [aux_sym_local_forward_token1] = ACTIONS(2841), - [aux_sym_log_level_token1] = ACTIONS(2841), - [aux_sym_log_verbose_token1] = ACTIONS(2841), - [aux_sym_macs_token1] = ACTIONS(2841), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2841), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2841), - [aux_sym_password_authentication_token1] = ACTIONS(2841), - [aux_sym_permit_local_command_token1] = ACTIONS(2841), - [aux_sym_permit_remote_open_token1] = ACTIONS(2841), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2841), - [aux_sym_port_token1] = ACTIONS(2841), - [aux_sym_preferred_authentications_token1] = ACTIONS(2841), - [aux_sym_protocol_token1] = ACTIONS(2841), - [aux_sym_proxy_command_token1] = ACTIONS(2841), - [aux_sym_proxy_jump_token1] = ACTIONS(2841), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2841), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2841), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2841), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2841), - [aux_sym_rekey_limit_token1] = ACTIONS(2841), - [aux_sym_remote_command_token1] = ACTIONS(2841), - [aux_sym_remote_forward_token1] = ACTIONS(2841), - [aux_sym_request_tty_token1] = ACTIONS(2841), - [aux_sym_required_rsa_size_token1] = ACTIONS(2841), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2841), - [aux_sym_security_key_provider_token1] = ACTIONS(2841), - [aux_sym_send_env_token1] = ACTIONS(2841), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2841), - [aux_sym_server_alive_interval_token1] = ACTIONS(2841), - [aux_sym_session_type_token1] = ACTIONS(2841), - [aux_sym_set_env_token1] = ACTIONS(2841), - [aux_sym_stdin_null_token1] = ACTIONS(2841), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2841), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2841), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2841), - [aux_sym_syslog_facility_token1] = ACTIONS(2841), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2841), - [aux_sym_keep_alive_token1] = ACTIONS(2841), - [aux_sym_tunnel_token1] = ACTIONS(2843), - [aux_sym_tunnel_device_token1] = ACTIONS(2841), - [aux_sym_update_host_keys_token1] = ACTIONS(2841), - [aux_sym_use_keychain_token1] = ACTIONS(2841), - [aux_sym_use_roaming_token1] = ACTIONS(2841), - [aux_sym_user_token1] = ACTIONS(2843), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2841), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2841), - [aux_sym_visual_host_key_token1] = ACTIONS(2841), - [aux_sym_xauth_location_token1] = ACTIONS(2841), + [ts_builtin_sym_end] = ACTIONS(2846), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2848), + [anon_sym_DQUOTE] = ACTIONS(2850), + [aux_sym_match_token1] = ACTIONS(2846), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2846), + [aux_sym_address_family_token1] = ACTIONS(2846), + [aux_sym_batch_mode_token1] = ACTIONS(2846), + [aux_sym_bind_address_token1] = ACTIONS(2846), + [aux_sym_bind_interface_token1] = ACTIONS(2846), + [aux_sym_canonical_domains_token1] = ACTIONS(2846), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2846), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2846), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2846), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2846), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2846), + [aux_sym_certificate_file_token1] = ACTIONS(2846), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2846), + [aux_sym_check_host_ip_token1] = ACTIONS(2846), + [aux_sym_ciphers_token1] = ACTIONS(2846), + [aux_sym_cipher_token1] = ACTIONS(2848), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2846), + [aux_sym_compression_token1] = ACTIONS(2846), + [aux_sym_connection_attempts_token1] = ACTIONS(2846), + [aux_sym_connect_timeout_token1] = ACTIONS(2846), + [aux_sym_control_master_token1] = ACTIONS(2846), + [aux_sym_control_path_token1] = ACTIONS(2846), + [aux_sym_control_persist_token1] = ACTIONS(2846), + [aux_sym_dynamic_forward_token1] = ACTIONS(2846), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2846), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2846), + [aux_sym_escape_char_token1] = ACTIONS(2846), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2846), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2846), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2846), + [aux_sym_forward_agent_token1] = ACTIONS(2846), + [aux_sym_forward_x11_token1] = ACTIONS(2848), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2846), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2846), + [aux_sym_gateway_ports_token1] = ACTIONS(2846), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2846), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2846), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2846), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2846), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2846), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2846), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2846), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2846), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2846), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2846), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2846), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2846), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2846), + [aux_sym_host_key_alias_token1] = ACTIONS(2846), + [aux_sym_hostname_token1] = ACTIONS(2846), + [aux_sym_identities_only_token1] = ACTIONS(2846), + [aux_sym_identity_agent_token1] = ACTIONS(2846), + [aux_sym_identity_file_token1] = ACTIONS(2846), + [aux_sym_ignore_unknown_token1] = ACTIONS(2846), + [aux_sym_include_token1] = ACTIONS(2846), + [aux_sym_ip_qos_token1] = ACTIONS(2846), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2846), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2846), + [aux_sym_kex_algorithms_token1] = ACTIONS(2846), + [aux_sym_known_hosts_command_token1] = ACTIONS(2846), + [aux_sym_local_command_token1] = ACTIONS(2846), + [aux_sym_local_forward_token1] = ACTIONS(2846), + [aux_sym_log_level_token1] = ACTIONS(2846), + [aux_sym_log_verbose_token1] = ACTIONS(2846), + [aux_sym_macs_token1] = ACTIONS(2846), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2846), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2846), + [aux_sym_password_authentication_token1] = ACTIONS(2846), + [aux_sym_permit_local_command_token1] = ACTIONS(2846), + [aux_sym_permit_remote_open_token1] = ACTIONS(2846), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2846), + [aux_sym_port_token1] = ACTIONS(2846), + [aux_sym_preferred_authentications_token1] = ACTIONS(2846), + [aux_sym_protocol_token1] = ACTIONS(2846), + [aux_sym_proxy_command_token1] = ACTIONS(2846), + [aux_sym_proxy_jump_token1] = ACTIONS(2846), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2846), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2846), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2846), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2846), + [aux_sym_rekey_limit_token1] = ACTIONS(2846), + [aux_sym_remote_command_token1] = ACTIONS(2846), + [aux_sym_remote_forward_token1] = ACTIONS(2846), + [aux_sym_request_tty_token1] = ACTIONS(2846), + [aux_sym_required_rsa_size_token1] = ACTIONS(2846), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2846), + [aux_sym_security_key_provider_token1] = ACTIONS(2846), + [aux_sym_send_env_token1] = ACTIONS(2846), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2846), + [aux_sym_server_alive_interval_token1] = ACTIONS(2846), + [aux_sym_session_type_token1] = ACTIONS(2846), + [aux_sym_set_env_token1] = ACTIONS(2846), + [aux_sym_stdin_null_token1] = ACTIONS(2846), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2846), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2846), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2846), + [aux_sym_syslog_facility_token1] = ACTIONS(2846), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2846), + [aux_sym_keep_alive_token1] = ACTIONS(2846), + [aux_sym_tunnel_token1] = ACTIONS(2848), + [aux_sym_tunnel_device_token1] = ACTIONS(2846), + [aux_sym_update_host_keys_token1] = ACTIONS(2846), + [aux_sym_use_keychain_token1] = ACTIONS(2846), + [aux_sym_use_roaming_token1] = ACTIONS(2846), + [aux_sym_user_token1] = ACTIONS(2848), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2846), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2846), + [aux_sym_visual_host_key_token1] = ACTIONS(2846), + [aux_sym_xauth_location_token1] = ACTIONS(2846), }, [417] = { - [ts_builtin_sym_end] = ACTIONS(2845), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2847), - [anon_sym_DQUOTE] = ACTIONS(2845), - [aux_sym_match_token1] = ACTIONS(2845), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2845), - [aux_sym_address_family_token1] = ACTIONS(2845), - [aux_sym_batch_mode_token1] = ACTIONS(2845), - [aux_sym_bind_address_token1] = ACTIONS(2845), - [aux_sym_bind_interface_token1] = ACTIONS(2845), - [aux_sym_canonical_domains_token1] = ACTIONS(2845), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2845), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2845), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2845), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2845), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2845), - [aux_sym_certificate_file_token1] = ACTIONS(2845), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2845), - [aux_sym_check_host_ip_token1] = ACTIONS(2845), - [aux_sym_ciphers_token1] = ACTIONS(2845), - [aux_sym_cipher_token1] = ACTIONS(2847), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2845), - [aux_sym_compression_token1] = ACTIONS(2845), - [aux_sym_connection_attempts_token1] = ACTIONS(2845), - [aux_sym_connect_timeout_token1] = ACTIONS(2845), - [aux_sym_control_master_token1] = ACTIONS(2845), - [aux_sym_control_path_token1] = ACTIONS(2845), - [aux_sym_control_persist_token1] = ACTIONS(2845), - [aux_sym_dynamic_forward_token1] = ACTIONS(2845), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2845), - [aux_sym_escape_char_token1] = ACTIONS(2845), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2845), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2845), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2845), - [aux_sym_forward_agent_token1] = ACTIONS(2845), - [aux_sym_forward_x11_token1] = ACTIONS(2847), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2845), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2845), - [aux_sym_gateway_ports_token1] = ACTIONS(2845), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2845), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2845), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2845), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2845), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2845), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2845), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2845), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2845), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2845), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2845), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2845), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2845), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2845), - [aux_sym_host_key_alias_token1] = ACTIONS(2845), - [aux_sym_hostname_token1] = ACTIONS(2845), - [aux_sym_identities_only_token1] = ACTIONS(2845), - [aux_sym_identity_agent_token1] = ACTIONS(2845), - [aux_sym_identity_file_token1] = ACTIONS(2845), - [aux_sym_ignore_unknown_token1] = ACTIONS(2845), - [aux_sym_include_token1] = ACTIONS(2845), - [aux_sym_ip_qos_token1] = ACTIONS(2845), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2845), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2845), - [aux_sym_kex_algorithms_token1] = ACTIONS(2845), - [aux_sym_known_hosts_command_token1] = ACTIONS(2845), - [aux_sym_local_command_token1] = ACTIONS(2845), - [aux_sym_local_forward_token1] = ACTIONS(2845), - [aux_sym_log_level_token1] = ACTIONS(2845), - [aux_sym_log_verbose_token1] = ACTIONS(2845), - [aux_sym_macs_token1] = ACTIONS(2845), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2845), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2845), - [aux_sym_password_authentication_token1] = ACTIONS(2845), - [aux_sym_permit_local_command_token1] = ACTIONS(2845), - [aux_sym_permit_remote_open_token1] = ACTIONS(2845), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2845), - [aux_sym_port_token1] = ACTIONS(2845), - [aux_sym_preferred_authentications_token1] = ACTIONS(2845), - [aux_sym_protocol_token1] = ACTIONS(2845), - [aux_sym_proxy_command_token1] = ACTIONS(2845), - [aux_sym_proxy_jump_token1] = ACTIONS(2845), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2845), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2845), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2845), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2845), - [aux_sym_rekey_limit_token1] = ACTIONS(2845), - [aux_sym_remote_command_token1] = ACTIONS(2845), - [aux_sym_remote_forward_token1] = ACTIONS(2845), - [aux_sym_request_tty_token1] = ACTIONS(2845), - [aux_sym_required_rsa_size_token1] = ACTIONS(2845), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2845), - [aux_sym_security_key_provider_token1] = ACTIONS(2845), - [aux_sym_send_env_token1] = ACTIONS(2845), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2845), - [aux_sym_server_alive_interval_token1] = ACTIONS(2845), - [aux_sym_session_type_token1] = ACTIONS(2845), - [aux_sym_set_env_token1] = ACTIONS(2845), - [aux_sym_stdin_null_token1] = ACTIONS(2845), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2845), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2845), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2845), - [aux_sym_syslog_facility_token1] = ACTIONS(2845), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2845), - [aux_sym_keep_alive_token1] = ACTIONS(2845), - [aux_sym_tunnel_token1] = ACTIONS(2847), - [aux_sym_tunnel_device_token1] = ACTIONS(2845), - [aux_sym_update_host_keys_token1] = ACTIONS(2845), - [aux_sym_use_keychain_token1] = ACTIONS(2845), - [aux_sym_use_roaming_token1] = ACTIONS(2845), - [aux_sym_user_token1] = ACTIONS(2847), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2845), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2845), - [aux_sym_visual_host_key_token1] = ACTIONS(2845), - [aux_sym_xauth_location_token1] = ACTIONS(2845), + [ts_builtin_sym_end] = ACTIONS(2852), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2854), + [anon_sym_DQUOTE] = ACTIONS(2852), + [aux_sym_match_token1] = ACTIONS(2852), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2852), + [aux_sym_address_family_token1] = ACTIONS(2852), + [aux_sym_batch_mode_token1] = ACTIONS(2852), + [aux_sym_bind_address_token1] = ACTIONS(2852), + [aux_sym_bind_interface_token1] = ACTIONS(2852), + [aux_sym_canonical_domains_token1] = ACTIONS(2852), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2852), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2852), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2852), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2852), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2852), + [aux_sym_certificate_file_token1] = ACTIONS(2852), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2852), + [aux_sym_check_host_ip_token1] = ACTIONS(2852), + [aux_sym_ciphers_token1] = ACTIONS(2852), + [aux_sym_cipher_token1] = ACTIONS(2854), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2852), + [aux_sym_compression_token1] = ACTIONS(2852), + [aux_sym_connection_attempts_token1] = ACTIONS(2852), + [aux_sym_connect_timeout_token1] = ACTIONS(2852), + [aux_sym_control_master_token1] = ACTIONS(2852), + [aux_sym_control_path_token1] = ACTIONS(2852), + [aux_sym_control_persist_token1] = ACTIONS(2852), + [aux_sym_dynamic_forward_token1] = ACTIONS(2852), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2852), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2852), + [aux_sym_escape_char_token1] = ACTIONS(2852), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2852), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2852), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2852), + [aux_sym_forward_agent_token1] = ACTIONS(2852), + [aux_sym_forward_x11_token1] = ACTIONS(2854), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2852), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2852), + [aux_sym_gateway_ports_token1] = ACTIONS(2852), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2852), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2852), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2852), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2852), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2852), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2852), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2852), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2852), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2852), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2852), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2852), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2852), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2852), + [aux_sym_host_key_alias_token1] = ACTIONS(2852), + [aux_sym_hostname_token1] = ACTIONS(2852), + [aux_sym_identities_only_token1] = ACTIONS(2852), + [aux_sym_identity_agent_token1] = ACTIONS(2852), + [aux_sym_identity_file_token1] = ACTIONS(2852), + [aux_sym_ignore_unknown_token1] = ACTIONS(2852), + [aux_sym_include_token1] = ACTIONS(2852), + [aux_sym_ip_qos_token1] = ACTIONS(2852), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2852), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2852), + [aux_sym_kex_algorithms_token1] = ACTIONS(2852), + [aux_sym_known_hosts_command_token1] = ACTIONS(2852), + [aux_sym_local_command_token1] = ACTIONS(2852), + [aux_sym_local_forward_token1] = ACTIONS(2852), + [aux_sym_log_level_token1] = ACTIONS(2852), + [aux_sym_log_verbose_token1] = ACTIONS(2852), + [aux_sym_macs_token1] = ACTIONS(2852), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2852), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2852), + [aux_sym_password_authentication_token1] = ACTIONS(2852), + [aux_sym_permit_local_command_token1] = ACTIONS(2852), + [aux_sym_permit_remote_open_token1] = ACTIONS(2852), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2852), + [aux_sym_port_token1] = ACTIONS(2852), + [aux_sym_preferred_authentications_token1] = ACTIONS(2852), + [aux_sym_protocol_token1] = ACTIONS(2852), + [aux_sym_proxy_command_token1] = ACTIONS(2852), + [aux_sym_proxy_jump_token1] = ACTIONS(2852), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2852), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2852), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2852), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2852), + [aux_sym_rekey_limit_token1] = ACTIONS(2852), + [aux_sym_remote_command_token1] = ACTIONS(2852), + [aux_sym_remote_forward_token1] = ACTIONS(2852), + [aux_sym_request_tty_token1] = ACTIONS(2852), + [aux_sym_required_rsa_size_token1] = ACTIONS(2852), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2852), + [aux_sym_security_key_provider_token1] = ACTIONS(2852), + [aux_sym_send_env_token1] = ACTIONS(2852), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2852), + [aux_sym_server_alive_interval_token1] = ACTIONS(2852), + [aux_sym_session_type_token1] = ACTIONS(2852), + [aux_sym_set_env_token1] = ACTIONS(2852), + [aux_sym_stdin_null_token1] = ACTIONS(2852), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2852), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2852), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2852), + [aux_sym_syslog_facility_token1] = ACTIONS(2852), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2852), + [aux_sym_keep_alive_token1] = ACTIONS(2852), + [aux_sym_tunnel_token1] = ACTIONS(2854), + [aux_sym_tunnel_device_token1] = ACTIONS(2852), + [aux_sym_update_host_keys_token1] = ACTIONS(2852), + [aux_sym_use_keychain_token1] = ACTIONS(2852), + [aux_sym_use_roaming_token1] = ACTIONS(2852), + [aux_sym_user_token1] = ACTIONS(2854), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2852), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2852), + [aux_sym_visual_host_key_token1] = ACTIONS(2852), + [aux_sym_xauth_location_token1] = ACTIONS(2852), }, [418] = { - [ts_builtin_sym_end] = ACTIONS(2849), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2851), - [anon_sym_DQUOTE] = ACTIONS(2853), - [aux_sym_match_token1] = ACTIONS(2849), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2849), - [aux_sym_address_family_token1] = ACTIONS(2849), - [aux_sym_batch_mode_token1] = ACTIONS(2849), - [aux_sym_bind_address_token1] = ACTIONS(2849), - [aux_sym_bind_interface_token1] = ACTIONS(2849), - [aux_sym_canonical_domains_token1] = ACTIONS(2849), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2849), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2849), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2849), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2849), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2849), - [aux_sym_certificate_file_token1] = ACTIONS(2849), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2849), - [aux_sym_check_host_ip_token1] = ACTIONS(2849), - [aux_sym_ciphers_token1] = ACTIONS(2849), - [aux_sym_cipher_token1] = ACTIONS(2851), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2849), - [aux_sym_compression_token1] = ACTIONS(2849), - [aux_sym_connection_attempts_token1] = ACTIONS(2849), - [aux_sym_connect_timeout_token1] = ACTIONS(2849), - [aux_sym_control_master_token1] = ACTIONS(2849), - [aux_sym_control_path_token1] = ACTIONS(2849), - [aux_sym_control_persist_token1] = ACTIONS(2849), - [aux_sym_dynamic_forward_token1] = ACTIONS(2849), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2849), - [aux_sym_escape_char_token1] = ACTIONS(2849), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2849), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2849), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2849), - [aux_sym_forward_agent_token1] = ACTIONS(2849), - [aux_sym_forward_x11_token1] = ACTIONS(2851), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2849), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2849), - [aux_sym_gateway_ports_token1] = ACTIONS(2849), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2849), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2849), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2849), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2849), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2849), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2849), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2849), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2849), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2849), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2849), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2849), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2849), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2849), - [aux_sym_host_key_alias_token1] = ACTIONS(2849), - [aux_sym_hostname_token1] = ACTIONS(2849), - [aux_sym_identities_only_token1] = ACTIONS(2849), - [aux_sym_identity_agent_token1] = ACTIONS(2849), - [aux_sym_identity_file_token1] = ACTIONS(2849), - [aux_sym_ignore_unknown_token1] = ACTIONS(2849), - [aux_sym_include_token1] = ACTIONS(2849), - [aux_sym_ip_qos_token1] = ACTIONS(2849), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2849), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2849), - [aux_sym_kex_algorithms_token1] = ACTIONS(2849), - [aux_sym_known_hosts_command_token1] = ACTIONS(2849), - [aux_sym_local_command_token1] = ACTIONS(2849), - [aux_sym_local_forward_token1] = ACTIONS(2849), - [aux_sym_log_level_token1] = ACTIONS(2849), - [aux_sym_log_verbose_token1] = ACTIONS(2849), - [aux_sym_macs_token1] = ACTIONS(2849), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2849), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2849), - [aux_sym_password_authentication_token1] = ACTIONS(2849), - [aux_sym_permit_local_command_token1] = ACTIONS(2849), - [aux_sym_permit_remote_open_token1] = ACTIONS(2849), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2849), - [aux_sym_port_token1] = ACTIONS(2849), - [aux_sym_preferred_authentications_token1] = ACTIONS(2849), - [aux_sym_protocol_token1] = ACTIONS(2849), - [aux_sym_proxy_command_token1] = ACTIONS(2849), - [aux_sym_proxy_jump_token1] = ACTIONS(2849), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2849), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2849), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2849), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2849), - [aux_sym_rekey_limit_token1] = ACTIONS(2849), - [aux_sym_remote_command_token1] = ACTIONS(2849), - [aux_sym_remote_forward_token1] = ACTIONS(2849), - [aux_sym_request_tty_token1] = ACTIONS(2849), - [aux_sym_required_rsa_size_token1] = ACTIONS(2849), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2849), - [aux_sym_security_key_provider_token1] = ACTIONS(2849), - [aux_sym_send_env_token1] = ACTIONS(2849), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2849), - [aux_sym_server_alive_interval_token1] = ACTIONS(2849), - [aux_sym_session_type_token1] = ACTIONS(2849), - [aux_sym_set_env_token1] = ACTIONS(2849), - [aux_sym_stdin_null_token1] = ACTIONS(2849), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2849), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2849), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2849), - [aux_sym_syslog_facility_token1] = ACTIONS(2849), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2849), - [aux_sym_keep_alive_token1] = ACTIONS(2849), - [aux_sym_tunnel_token1] = ACTIONS(2851), - [aux_sym_tunnel_device_token1] = ACTIONS(2849), - [aux_sym_update_host_keys_token1] = ACTIONS(2849), - [aux_sym_use_keychain_token1] = ACTIONS(2849), - [aux_sym_use_roaming_token1] = ACTIONS(2849), - [aux_sym_user_token1] = ACTIONS(2851), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2849), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2849), - [aux_sym_visual_host_key_token1] = ACTIONS(2849), - [aux_sym_xauth_location_token1] = ACTIONS(2849), + [ts_builtin_sym_end] = ACTIONS(2856), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2858), + [anon_sym_DQUOTE] = ACTIONS(2860), + [aux_sym_match_token1] = ACTIONS(2856), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2856), + [aux_sym_address_family_token1] = ACTIONS(2856), + [aux_sym_batch_mode_token1] = ACTIONS(2856), + [aux_sym_bind_address_token1] = ACTIONS(2856), + [aux_sym_bind_interface_token1] = ACTIONS(2856), + [aux_sym_canonical_domains_token1] = ACTIONS(2856), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2856), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2856), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2856), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2856), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2856), + [aux_sym_certificate_file_token1] = ACTIONS(2856), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2856), + [aux_sym_check_host_ip_token1] = ACTIONS(2856), + [aux_sym_ciphers_token1] = ACTIONS(2856), + [aux_sym_cipher_token1] = ACTIONS(2858), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2856), + [aux_sym_compression_token1] = ACTIONS(2856), + [aux_sym_connection_attempts_token1] = ACTIONS(2856), + [aux_sym_connect_timeout_token1] = ACTIONS(2856), + [aux_sym_control_master_token1] = ACTIONS(2856), + [aux_sym_control_path_token1] = ACTIONS(2856), + [aux_sym_control_persist_token1] = ACTIONS(2856), + [aux_sym_dynamic_forward_token1] = ACTIONS(2856), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2856), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2856), + [aux_sym_escape_char_token1] = ACTIONS(2856), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2856), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2856), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2856), + [aux_sym_forward_agent_token1] = ACTIONS(2856), + [aux_sym_forward_x11_token1] = ACTIONS(2858), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2856), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2856), + [aux_sym_gateway_ports_token1] = ACTIONS(2856), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2856), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2856), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2856), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2856), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2856), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2856), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2856), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2856), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2856), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2856), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2856), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2856), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2856), + [aux_sym_host_key_alias_token1] = ACTIONS(2856), + [aux_sym_hostname_token1] = ACTIONS(2856), + [aux_sym_identities_only_token1] = ACTIONS(2856), + [aux_sym_identity_agent_token1] = ACTIONS(2856), + [aux_sym_identity_file_token1] = ACTIONS(2856), + [aux_sym_ignore_unknown_token1] = ACTIONS(2856), + [aux_sym_include_token1] = ACTIONS(2856), + [aux_sym_ip_qos_token1] = ACTIONS(2856), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2856), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2856), + [aux_sym_kex_algorithms_token1] = ACTIONS(2856), + [aux_sym_known_hosts_command_token1] = ACTIONS(2856), + [aux_sym_local_command_token1] = ACTIONS(2856), + [aux_sym_local_forward_token1] = ACTIONS(2856), + [aux_sym_log_level_token1] = ACTIONS(2856), + [aux_sym_log_verbose_token1] = ACTIONS(2856), + [aux_sym_macs_token1] = ACTIONS(2856), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2856), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2856), + [aux_sym_password_authentication_token1] = ACTIONS(2856), + [aux_sym_permit_local_command_token1] = ACTIONS(2856), + [aux_sym_permit_remote_open_token1] = ACTIONS(2856), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2856), + [aux_sym_port_token1] = ACTIONS(2856), + [aux_sym_preferred_authentications_token1] = ACTIONS(2856), + [aux_sym_protocol_token1] = ACTIONS(2856), + [aux_sym_proxy_command_token1] = ACTIONS(2856), + [aux_sym_proxy_jump_token1] = ACTIONS(2856), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2856), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2856), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2856), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2856), + [aux_sym_rekey_limit_token1] = ACTIONS(2856), + [aux_sym_remote_command_token1] = ACTIONS(2856), + [aux_sym_remote_forward_token1] = ACTIONS(2856), + [aux_sym_request_tty_token1] = ACTIONS(2856), + [aux_sym_required_rsa_size_token1] = ACTIONS(2856), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2856), + [aux_sym_security_key_provider_token1] = ACTIONS(2856), + [aux_sym_send_env_token1] = ACTIONS(2856), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2856), + [aux_sym_server_alive_interval_token1] = ACTIONS(2856), + [aux_sym_session_type_token1] = ACTIONS(2856), + [aux_sym_set_env_token1] = ACTIONS(2856), + [aux_sym_stdin_null_token1] = ACTIONS(2856), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2856), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2856), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2856), + [aux_sym_syslog_facility_token1] = ACTIONS(2856), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2856), + [aux_sym_keep_alive_token1] = ACTIONS(2856), + [aux_sym_tunnel_token1] = ACTIONS(2858), + [aux_sym_tunnel_device_token1] = ACTIONS(2856), + [aux_sym_update_host_keys_token1] = ACTIONS(2856), + [aux_sym_use_keychain_token1] = ACTIONS(2856), + [aux_sym_use_roaming_token1] = ACTIONS(2856), + [aux_sym_user_token1] = ACTIONS(2858), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2856), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2856), + [aux_sym_visual_host_key_token1] = ACTIONS(2856), + [aux_sym_xauth_location_token1] = ACTIONS(2856), }, [419] = { - [ts_builtin_sym_end] = ACTIONS(2855), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2857), - [anon_sym_DQUOTE] = ACTIONS(2855), - [aux_sym_match_token1] = ACTIONS(2855), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2855), - [aux_sym_address_family_token1] = ACTIONS(2855), - [aux_sym_batch_mode_token1] = ACTIONS(2855), - [aux_sym_bind_address_token1] = ACTIONS(2855), - [aux_sym_bind_interface_token1] = ACTIONS(2855), - [aux_sym_canonical_domains_token1] = ACTIONS(2855), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2855), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2855), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2855), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2855), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2855), - [aux_sym_certificate_file_token1] = ACTIONS(2855), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2855), - [aux_sym_check_host_ip_token1] = ACTIONS(2855), - [aux_sym_ciphers_token1] = ACTIONS(2855), - [aux_sym_cipher_token1] = ACTIONS(2857), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2855), - [aux_sym_compression_token1] = ACTIONS(2855), - [aux_sym_connection_attempts_token1] = ACTIONS(2855), - [aux_sym_connect_timeout_token1] = ACTIONS(2855), - [aux_sym_control_master_token1] = ACTIONS(2855), - [aux_sym_control_path_token1] = ACTIONS(2855), - [aux_sym_control_persist_token1] = ACTIONS(2855), - [aux_sym_dynamic_forward_token1] = ACTIONS(2855), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2855), - [aux_sym_escape_char_token1] = ACTIONS(2855), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2855), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2855), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2855), - [aux_sym_forward_agent_token1] = ACTIONS(2855), - [aux_sym_forward_x11_token1] = ACTIONS(2857), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2855), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2855), - [aux_sym_gateway_ports_token1] = ACTIONS(2855), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2855), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2855), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2855), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2855), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2855), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2855), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2855), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2855), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2855), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2855), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2855), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2855), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2855), - [aux_sym_host_key_alias_token1] = ACTIONS(2855), - [aux_sym_hostname_token1] = ACTIONS(2855), - [aux_sym_identities_only_token1] = ACTIONS(2855), - [aux_sym_identity_agent_token1] = ACTIONS(2855), - [aux_sym_identity_file_token1] = ACTIONS(2855), - [aux_sym_ignore_unknown_token1] = ACTIONS(2855), - [aux_sym_include_token1] = ACTIONS(2855), - [aux_sym_ip_qos_token1] = ACTIONS(2855), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2855), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2855), - [aux_sym_kex_algorithms_token1] = ACTIONS(2855), - [aux_sym_known_hosts_command_token1] = ACTIONS(2855), - [aux_sym_local_command_token1] = ACTIONS(2855), - [aux_sym_local_forward_token1] = ACTIONS(2855), - [aux_sym_log_level_token1] = ACTIONS(2855), - [aux_sym_log_verbose_token1] = ACTIONS(2855), - [aux_sym_macs_token1] = ACTIONS(2855), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2855), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2855), - [aux_sym_password_authentication_token1] = ACTIONS(2855), - [aux_sym_permit_local_command_token1] = ACTIONS(2855), - [aux_sym_permit_remote_open_token1] = ACTIONS(2855), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2855), - [aux_sym_port_token1] = ACTIONS(2855), - [aux_sym_preferred_authentications_token1] = ACTIONS(2855), - [aux_sym_protocol_token1] = ACTIONS(2855), - [aux_sym_proxy_command_token1] = ACTIONS(2855), - [aux_sym_proxy_jump_token1] = ACTIONS(2855), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2855), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2855), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2855), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2855), - [aux_sym_rekey_limit_token1] = ACTIONS(2855), - [aux_sym_remote_command_token1] = ACTIONS(2855), - [aux_sym_remote_forward_token1] = ACTIONS(2855), - [aux_sym_request_tty_token1] = ACTIONS(2855), - [aux_sym_required_rsa_size_token1] = ACTIONS(2855), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2855), - [aux_sym_security_key_provider_token1] = ACTIONS(2855), - [aux_sym_send_env_token1] = ACTIONS(2855), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2855), - [aux_sym_server_alive_interval_token1] = ACTIONS(2855), - [aux_sym_session_type_token1] = ACTIONS(2855), - [aux_sym_set_env_token1] = ACTIONS(2855), - [aux_sym_stdin_null_token1] = ACTIONS(2855), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2855), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2855), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2855), - [aux_sym_syslog_facility_token1] = ACTIONS(2855), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2855), - [aux_sym_keep_alive_token1] = ACTIONS(2855), - [aux_sym_tunnel_token1] = ACTIONS(2857), - [aux_sym_tunnel_device_token1] = ACTIONS(2855), - [aux_sym_update_host_keys_token1] = ACTIONS(2855), - [aux_sym_use_keychain_token1] = ACTIONS(2855), - [aux_sym_use_roaming_token1] = ACTIONS(2855), - [aux_sym_user_token1] = ACTIONS(2857), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2855), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2855), - [aux_sym_visual_host_key_token1] = ACTIONS(2855), - [aux_sym_xauth_location_token1] = ACTIONS(2855), + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2864), + [anon_sym_DQUOTE] = ACTIONS(2862), + [aux_sym_match_token1] = ACTIONS(2862), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2862), + [aux_sym_address_family_token1] = ACTIONS(2862), + [aux_sym_batch_mode_token1] = ACTIONS(2862), + [aux_sym_bind_address_token1] = ACTIONS(2862), + [aux_sym_bind_interface_token1] = ACTIONS(2862), + [aux_sym_canonical_domains_token1] = ACTIONS(2862), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2862), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2862), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2862), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2862), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2862), + [aux_sym_certificate_file_token1] = ACTIONS(2862), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2862), + [aux_sym_check_host_ip_token1] = ACTIONS(2862), + [aux_sym_ciphers_token1] = ACTIONS(2862), + [aux_sym_cipher_token1] = ACTIONS(2864), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2862), + [aux_sym_compression_token1] = ACTIONS(2862), + [aux_sym_connection_attempts_token1] = ACTIONS(2862), + [aux_sym_connect_timeout_token1] = ACTIONS(2862), + [aux_sym_control_master_token1] = ACTIONS(2862), + [aux_sym_control_path_token1] = ACTIONS(2862), + [aux_sym_control_persist_token1] = ACTIONS(2862), + [aux_sym_dynamic_forward_token1] = ACTIONS(2862), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2862), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2862), + [aux_sym_escape_char_token1] = ACTIONS(2862), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2862), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2862), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2862), + [aux_sym_forward_agent_token1] = ACTIONS(2862), + [aux_sym_forward_x11_token1] = ACTIONS(2864), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2862), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2862), + [aux_sym_gateway_ports_token1] = ACTIONS(2862), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2862), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2862), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2862), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2862), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2862), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2862), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2862), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2862), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2862), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2862), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2862), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2862), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2862), + [aux_sym_host_key_alias_token1] = ACTIONS(2862), + [aux_sym_hostname_token1] = ACTIONS(2862), + [aux_sym_identities_only_token1] = ACTIONS(2862), + [aux_sym_identity_agent_token1] = ACTIONS(2862), + [aux_sym_identity_file_token1] = ACTIONS(2862), + [aux_sym_ignore_unknown_token1] = ACTIONS(2862), + [aux_sym_include_token1] = ACTIONS(2862), + [aux_sym_ip_qos_token1] = ACTIONS(2862), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2862), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2862), + [aux_sym_kex_algorithms_token1] = ACTIONS(2862), + [aux_sym_known_hosts_command_token1] = ACTIONS(2862), + [aux_sym_local_command_token1] = ACTIONS(2862), + [aux_sym_local_forward_token1] = ACTIONS(2862), + [aux_sym_log_level_token1] = ACTIONS(2862), + [aux_sym_log_verbose_token1] = ACTIONS(2862), + [aux_sym_macs_token1] = ACTIONS(2862), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2862), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2862), + [aux_sym_password_authentication_token1] = ACTIONS(2862), + [aux_sym_permit_local_command_token1] = ACTIONS(2862), + [aux_sym_permit_remote_open_token1] = ACTIONS(2862), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2862), + [aux_sym_port_token1] = ACTIONS(2862), + [aux_sym_preferred_authentications_token1] = ACTIONS(2862), + [aux_sym_protocol_token1] = ACTIONS(2862), + [aux_sym_proxy_command_token1] = ACTIONS(2862), + [aux_sym_proxy_jump_token1] = ACTIONS(2862), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2862), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2862), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2862), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2862), + [aux_sym_rekey_limit_token1] = ACTIONS(2862), + [aux_sym_remote_command_token1] = ACTIONS(2862), + [aux_sym_remote_forward_token1] = ACTIONS(2862), + [aux_sym_request_tty_token1] = ACTIONS(2862), + [aux_sym_required_rsa_size_token1] = ACTIONS(2862), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2862), + [aux_sym_security_key_provider_token1] = ACTIONS(2862), + [aux_sym_send_env_token1] = ACTIONS(2862), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2862), + [aux_sym_server_alive_interval_token1] = ACTIONS(2862), + [aux_sym_session_type_token1] = ACTIONS(2862), + [aux_sym_set_env_token1] = ACTIONS(2862), + [aux_sym_stdin_null_token1] = ACTIONS(2862), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2862), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2862), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2862), + [aux_sym_syslog_facility_token1] = ACTIONS(2862), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2862), + [aux_sym_keep_alive_token1] = ACTIONS(2862), + [aux_sym_tunnel_token1] = ACTIONS(2864), + [aux_sym_tunnel_device_token1] = ACTIONS(2862), + [aux_sym_update_host_keys_token1] = ACTIONS(2862), + [aux_sym_use_keychain_token1] = ACTIONS(2862), + [aux_sym_use_roaming_token1] = ACTIONS(2862), + [aux_sym_user_token1] = ACTIONS(2864), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2862), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2862), + [aux_sym_visual_host_key_token1] = ACTIONS(2862), + [aux_sym_xauth_location_token1] = ACTIONS(2862), }, [420] = { - [ts_builtin_sym_end] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2863), - [aux_sym_match_token1] = ACTIONS(2859), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2859), - [aux_sym_address_family_token1] = ACTIONS(2859), - [aux_sym_batch_mode_token1] = ACTIONS(2859), - [aux_sym_bind_address_token1] = ACTIONS(2859), - [aux_sym_bind_interface_token1] = ACTIONS(2859), - [aux_sym_canonical_domains_token1] = ACTIONS(2859), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2859), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2859), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2859), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2859), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2859), - [aux_sym_certificate_file_token1] = ACTIONS(2859), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2859), - [aux_sym_check_host_ip_token1] = ACTIONS(2859), - [aux_sym_ciphers_token1] = ACTIONS(2859), - [aux_sym_cipher_token1] = ACTIONS(2861), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2859), - [aux_sym_compression_token1] = ACTIONS(2859), - [aux_sym_connection_attempts_token1] = ACTIONS(2859), - [aux_sym_connect_timeout_token1] = ACTIONS(2859), - [aux_sym_control_master_token1] = ACTIONS(2859), - [aux_sym_control_path_token1] = ACTIONS(2859), - [aux_sym_control_persist_token1] = ACTIONS(2859), - [aux_sym_dynamic_forward_token1] = ACTIONS(2859), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2859), - [aux_sym_escape_char_token1] = ACTIONS(2859), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2859), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2859), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2859), - [aux_sym_forward_agent_token1] = ACTIONS(2859), - [aux_sym_forward_x11_token1] = ACTIONS(2861), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2859), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2859), - [aux_sym_gateway_ports_token1] = ACTIONS(2859), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2859), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2859), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2859), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2859), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2859), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2859), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2859), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2859), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2859), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2859), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2859), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2859), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2859), - [aux_sym_host_key_alias_token1] = ACTIONS(2859), - [aux_sym_hostname_token1] = ACTIONS(2859), - [aux_sym_identities_only_token1] = ACTIONS(2859), - [aux_sym_identity_agent_token1] = ACTIONS(2859), - [aux_sym_identity_file_token1] = ACTIONS(2859), - [aux_sym_ignore_unknown_token1] = ACTIONS(2859), - [aux_sym_include_token1] = ACTIONS(2859), - [aux_sym_ip_qos_token1] = ACTIONS(2859), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2859), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2859), - [aux_sym_kex_algorithms_token1] = ACTIONS(2859), - [aux_sym_known_hosts_command_token1] = ACTIONS(2859), - [aux_sym_local_command_token1] = ACTIONS(2859), - [aux_sym_local_forward_token1] = ACTIONS(2859), - [aux_sym_log_level_token1] = ACTIONS(2859), - [aux_sym_log_verbose_token1] = ACTIONS(2859), - [aux_sym_macs_token1] = ACTIONS(2859), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2859), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2859), - [aux_sym_password_authentication_token1] = ACTIONS(2859), - [aux_sym_permit_local_command_token1] = ACTIONS(2859), - [aux_sym_permit_remote_open_token1] = ACTIONS(2859), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2859), - [aux_sym_port_token1] = ACTIONS(2859), - [aux_sym_preferred_authentications_token1] = ACTIONS(2859), - [aux_sym_protocol_token1] = ACTIONS(2859), - [aux_sym_proxy_command_token1] = ACTIONS(2859), - [aux_sym_proxy_jump_token1] = ACTIONS(2859), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2859), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2859), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2859), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2859), - [aux_sym_rekey_limit_token1] = ACTIONS(2859), - [aux_sym_remote_command_token1] = ACTIONS(2859), - [aux_sym_remote_forward_token1] = ACTIONS(2859), - [aux_sym_request_tty_token1] = ACTIONS(2859), - [aux_sym_required_rsa_size_token1] = ACTIONS(2859), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2859), - [aux_sym_security_key_provider_token1] = ACTIONS(2859), - [aux_sym_send_env_token1] = ACTIONS(2859), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2859), - [aux_sym_server_alive_interval_token1] = ACTIONS(2859), - [aux_sym_session_type_token1] = ACTIONS(2859), - [aux_sym_set_env_token1] = ACTIONS(2859), - [aux_sym_stdin_null_token1] = ACTIONS(2859), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2859), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2859), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2859), - [aux_sym_syslog_facility_token1] = ACTIONS(2859), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2859), - [aux_sym_keep_alive_token1] = ACTIONS(2859), - [aux_sym_tunnel_token1] = ACTIONS(2861), - [aux_sym_tunnel_device_token1] = ACTIONS(2859), - [aux_sym_update_host_keys_token1] = ACTIONS(2859), - [aux_sym_use_keychain_token1] = ACTIONS(2859), - [aux_sym_use_roaming_token1] = ACTIONS(2859), - [aux_sym_user_token1] = ACTIONS(2861), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2859), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2859), - [aux_sym_visual_host_key_token1] = ACTIONS(2859), - [aux_sym_xauth_location_token1] = ACTIONS(2859), + [ts_builtin_sym_end] = ACTIONS(2866), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2868), + [anon_sym_DQUOTE] = ACTIONS(2870), + [aux_sym_match_token1] = ACTIONS(2866), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2866), + [aux_sym_address_family_token1] = ACTIONS(2866), + [aux_sym_batch_mode_token1] = ACTIONS(2866), + [aux_sym_bind_address_token1] = ACTIONS(2866), + [aux_sym_bind_interface_token1] = ACTIONS(2866), + [aux_sym_canonical_domains_token1] = ACTIONS(2866), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2866), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2866), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2866), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2866), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2866), + [aux_sym_certificate_file_token1] = ACTIONS(2866), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2866), + [aux_sym_check_host_ip_token1] = ACTIONS(2866), + [aux_sym_ciphers_token1] = ACTIONS(2866), + [aux_sym_cipher_token1] = ACTIONS(2868), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2866), + [aux_sym_compression_token1] = ACTIONS(2866), + [aux_sym_connection_attempts_token1] = ACTIONS(2866), + [aux_sym_connect_timeout_token1] = ACTIONS(2866), + [aux_sym_control_master_token1] = ACTIONS(2866), + [aux_sym_control_path_token1] = ACTIONS(2866), + [aux_sym_control_persist_token1] = ACTIONS(2866), + [aux_sym_dynamic_forward_token1] = ACTIONS(2866), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2866), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2866), + [aux_sym_escape_char_token1] = ACTIONS(2866), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2866), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2866), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2866), + [aux_sym_forward_agent_token1] = ACTIONS(2866), + [aux_sym_forward_x11_token1] = ACTIONS(2868), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2866), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2866), + [aux_sym_gateway_ports_token1] = ACTIONS(2866), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2866), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2866), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2866), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2866), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2866), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2866), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2866), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2866), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2866), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2866), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2866), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2866), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2866), + [aux_sym_host_key_alias_token1] = ACTIONS(2866), + [aux_sym_hostname_token1] = ACTIONS(2866), + [aux_sym_identities_only_token1] = ACTIONS(2866), + [aux_sym_identity_agent_token1] = ACTIONS(2866), + [aux_sym_identity_file_token1] = ACTIONS(2866), + [aux_sym_ignore_unknown_token1] = ACTIONS(2866), + [aux_sym_include_token1] = ACTIONS(2866), + [aux_sym_ip_qos_token1] = ACTIONS(2866), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2866), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2866), + [aux_sym_kex_algorithms_token1] = ACTIONS(2866), + [aux_sym_known_hosts_command_token1] = ACTIONS(2866), + [aux_sym_local_command_token1] = ACTIONS(2866), + [aux_sym_local_forward_token1] = ACTIONS(2866), + [aux_sym_log_level_token1] = ACTIONS(2866), + [aux_sym_log_verbose_token1] = ACTIONS(2866), + [aux_sym_macs_token1] = ACTIONS(2866), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2866), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2866), + [aux_sym_password_authentication_token1] = ACTIONS(2866), + [aux_sym_permit_local_command_token1] = ACTIONS(2866), + [aux_sym_permit_remote_open_token1] = ACTIONS(2866), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2866), + [aux_sym_port_token1] = ACTIONS(2866), + [aux_sym_preferred_authentications_token1] = ACTIONS(2866), + [aux_sym_protocol_token1] = ACTIONS(2866), + [aux_sym_proxy_command_token1] = ACTIONS(2866), + [aux_sym_proxy_jump_token1] = ACTIONS(2866), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2866), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2866), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2866), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2866), + [aux_sym_rekey_limit_token1] = ACTIONS(2866), + [aux_sym_remote_command_token1] = ACTIONS(2866), + [aux_sym_remote_forward_token1] = ACTIONS(2866), + [aux_sym_request_tty_token1] = ACTIONS(2866), + [aux_sym_required_rsa_size_token1] = ACTIONS(2866), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2866), + [aux_sym_security_key_provider_token1] = ACTIONS(2866), + [aux_sym_send_env_token1] = ACTIONS(2866), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2866), + [aux_sym_server_alive_interval_token1] = ACTIONS(2866), + [aux_sym_session_type_token1] = ACTIONS(2866), + [aux_sym_set_env_token1] = ACTIONS(2866), + [aux_sym_stdin_null_token1] = ACTIONS(2866), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2866), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2866), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2866), + [aux_sym_syslog_facility_token1] = ACTIONS(2866), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2866), + [aux_sym_keep_alive_token1] = ACTIONS(2866), + [aux_sym_tunnel_token1] = ACTIONS(2868), + [aux_sym_tunnel_device_token1] = ACTIONS(2866), + [aux_sym_update_host_keys_token1] = ACTIONS(2866), + [aux_sym_use_keychain_token1] = ACTIONS(2866), + [aux_sym_use_roaming_token1] = ACTIONS(2866), + [aux_sym_user_token1] = ACTIONS(2868), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2866), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2866), + [aux_sym_visual_host_key_token1] = ACTIONS(2866), + [aux_sym_xauth_location_token1] = ACTIONS(2866), }, [421] = { - [ts_builtin_sym_end] = ACTIONS(2865), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2867), - [anon_sym_DQUOTE] = ACTIONS(2865), - [aux_sym_match_token1] = ACTIONS(2865), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2865), - [aux_sym_address_family_token1] = ACTIONS(2865), - [aux_sym_batch_mode_token1] = ACTIONS(2865), - [aux_sym_bind_address_token1] = ACTIONS(2865), - [aux_sym_bind_interface_token1] = ACTIONS(2865), - [aux_sym_canonical_domains_token1] = ACTIONS(2865), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2865), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2865), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2865), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2865), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2865), - [aux_sym_certificate_file_token1] = ACTIONS(2865), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2865), - [aux_sym_check_host_ip_token1] = ACTIONS(2865), - [aux_sym_ciphers_token1] = ACTIONS(2865), - [aux_sym_cipher_token1] = ACTIONS(2867), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2865), - [aux_sym_compression_token1] = ACTIONS(2865), - [aux_sym_connection_attempts_token1] = ACTIONS(2865), - [aux_sym_connect_timeout_token1] = ACTIONS(2865), - [aux_sym_control_master_token1] = ACTIONS(2865), - [aux_sym_control_path_token1] = ACTIONS(2865), - [aux_sym_control_persist_token1] = ACTIONS(2865), - [aux_sym_dynamic_forward_token1] = ACTIONS(2865), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2865), - [aux_sym_escape_char_token1] = ACTIONS(2865), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2865), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2865), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2865), - [aux_sym_forward_agent_token1] = ACTIONS(2865), - [aux_sym_forward_x11_token1] = ACTIONS(2867), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2865), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2865), - [aux_sym_gateway_ports_token1] = ACTIONS(2865), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2865), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2865), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2865), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2865), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2865), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2865), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2865), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2865), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2865), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2865), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2865), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2865), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2865), - [aux_sym_host_key_alias_token1] = ACTIONS(2865), - [aux_sym_hostname_token1] = ACTIONS(2865), - [aux_sym_identities_only_token1] = ACTIONS(2865), - [aux_sym_identity_agent_token1] = ACTIONS(2865), - [aux_sym_identity_file_token1] = ACTIONS(2865), - [aux_sym_ignore_unknown_token1] = ACTIONS(2865), - [aux_sym_include_token1] = ACTIONS(2865), - [aux_sym_ip_qos_token1] = ACTIONS(2865), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2865), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2865), - [aux_sym_kex_algorithms_token1] = ACTIONS(2865), - [aux_sym_known_hosts_command_token1] = ACTIONS(2865), - [aux_sym_local_command_token1] = ACTIONS(2865), - [aux_sym_local_forward_token1] = ACTIONS(2865), - [aux_sym_log_level_token1] = ACTIONS(2865), - [aux_sym_log_verbose_token1] = ACTIONS(2865), - [aux_sym_macs_token1] = ACTIONS(2865), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2865), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2865), - [aux_sym_password_authentication_token1] = ACTIONS(2865), - [aux_sym_permit_local_command_token1] = ACTIONS(2865), - [aux_sym_permit_remote_open_token1] = ACTIONS(2865), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2865), - [aux_sym_port_token1] = ACTIONS(2865), - [aux_sym_preferred_authentications_token1] = ACTIONS(2865), - [aux_sym_protocol_token1] = ACTIONS(2865), - [aux_sym_proxy_command_token1] = ACTIONS(2865), - [aux_sym_proxy_jump_token1] = ACTIONS(2865), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2865), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2865), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2865), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2865), - [aux_sym_rekey_limit_token1] = ACTIONS(2865), - [aux_sym_remote_command_token1] = ACTIONS(2865), - [aux_sym_remote_forward_token1] = ACTIONS(2865), - [aux_sym_request_tty_token1] = ACTIONS(2865), - [aux_sym_required_rsa_size_token1] = ACTIONS(2865), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2865), - [aux_sym_security_key_provider_token1] = ACTIONS(2865), - [aux_sym_send_env_token1] = ACTIONS(2865), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2865), - [aux_sym_server_alive_interval_token1] = ACTIONS(2865), - [aux_sym_session_type_token1] = ACTIONS(2865), - [aux_sym_set_env_token1] = ACTIONS(2865), - [aux_sym_stdin_null_token1] = ACTIONS(2865), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2865), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2865), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2865), - [aux_sym_syslog_facility_token1] = ACTIONS(2865), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2865), - [aux_sym_keep_alive_token1] = ACTIONS(2865), - [aux_sym_tunnel_token1] = ACTIONS(2867), - [aux_sym_tunnel_device_token1] = ACTIONS(2865), - [aux_sym_update_host_keys_token1] = ACTIONS(2865), - [aux_sym_use_keychain_token1] = ACTIONS(2865), - [aux_sym_use_roaming_token1] = ACTIONS(2865), - [aux_sym_user_token1] = ACTIONS(2867), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2865), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2865), - [aux_sym_visual_host_key_token1] = ACTIONS(2865), - [aux_sym_xauth_location_token1] = ACTIONS(2865), + [ts_builtin_sym_end] = ACTIONS(2872), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2874), + [anon_sym_DQUOTE] = ACTIONS(2876), + [aux_sym_match_token1] = ACTIONS(2872), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2872), + [aux_sym_address_family_token1] = ACTIONS(2872), + [aux_sym_batch_mode_token1] = ACTIONS(2872), + [aux_sym_bind_address_token1] = ACTIONS(2872), + [aux_sym_bind_interface_token1] = ACTIONS(2872), + [aux_sym_canonical_domains_token1] = ACTIONS(2872), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2872), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2872), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2872), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2872), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2872), + [aux_sym_certificate_file_token1] = ACTIONS(2872), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2872), + [aux_sym_check_host_ip_token1] = ACTIONS(2872), + [aux_sym_ciphers_token1] = ACTIONS(2872), + [aux_sym_cipher_token1] = ACTIONS(2874), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2872), + [aux_sym_compression_token1] = ACTIONS(2872), + [aux_sym_connection_attempts_token1] = ACTIONS(2872), + [aux_sym_connect_timeout_token1] = ACTIONS(2872), + [aux_sym_control_master_token1] = ACTIONS(2872), + [aux_sym_control_path_token1] = ACTIONS(2872), + [aux_sym_control_persist_token1] = ACTIONS(2872), + [aux_sym_dynamic_forward_token1] = ACTIONS(2872), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2872), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2872), + [aux_sym_escape_char_token1] = ACTIONS(2872), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2872), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2872), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2872), + [aux_sym_forward_agent_token1] = ACTIONS(2872), + [aux_sym_forward_x11_token1] = ACTIONS(2874), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2872), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2872), + [aux_sym_gateway_ports_token1] = ACTIONS(2872), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2872), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2872), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2872), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2872), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2872), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2872), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2872), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2872), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2872), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2872), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2872), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2872), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2872), + [aux_sym_host_key_alias_token1] = ACTIONS(2872), + [aux_sym_hostname_token1] = ACTIONS(2872), + [aux_sym_identities_only_token1] = ACTIONS(2872), + [aux_sym_identity_agent_token1] = ACTIONS(2872), + [aux_sym_identity_file_token1] = ACTIONS(2872), + [aux_sym_ignore_unknown_token1] = ACTIONS(2872), + [aux_sym_include_token1] = ACTIONS(2872), + [aux_sym_ip_qos_token1] = ACTIONS(2872), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2872), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2872), + [aux_sym_kex_algorithms_token1] = ACTIONS(2872), + [aux_sym_known_hosts_command_token1] = ACTIONS(2872), + [aux_sym_local_command_token1] = ACTIONS(2872), + [aux_sym_local_forward_token1] = ACTIONS(2872), + [aux_sym_log_level_token1] = ACTIONS(2872), + [aux_sym_log_verbose_token1] = ACTIONS(2872), + [aux_sym_macs_token1] = ACTIONS(2872), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2872), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2872), + [aux_sym_password_authentication_token1] = ACTIONS(2872), + [aux_sym_permit_local_command_token1] = ACTIONS(2872), + [aux_sym_permit_remote_open_token1] = ACTIONS(2872), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2872), + [aux_sym_port_token1] = ACTIONS(2872), + [aux_sym_preferred_authentications_token1] = ACTIONS(2872), + [aux_sym_protocol_token1] = ACTIONS(2872), + [aux_sym_proxy_command_token1] = ACTIONS(2872), + [aux_sym_proxy_jump_token1] = ACTIONS(2872), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2872), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2872), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2872), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2872), + [aux_sym_rekey_limit_token1] = ACTIONS(2872), + [aux_sym_remote_command_token1] = ACTIONS(2872), + [aux_sym_remote_forward_token1] = ACTIONS(2872), + [aux_sym_request_tty_token1] = ACTIONS(2872), + [aux_sym_required_rsa_size_token1] = ACTIONS(2872), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2872), + [aux_sym_security_key_provider_token1] = ACTIONS(2872), + [aux_sym_send_env_token1] = ACTIONS(2872), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2872), + [aux_sym_server_alive_interval_token1] = ACTIONS(2872), + [aux_sym_session_type_token1] = ACTIONS(2872), + [aux_sym_set_env_token1] = ACTIONS(2872), + [aux_sym_stdin_null_token1] = ACTIONS(2872), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2872), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2872), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2872), + [aux_sym_syslog_facility_token1] = ACTIONS(2872), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2872), + [aux_sym_keep_alive_token1] = ACTIONS(2872), + [aux_sym_tunnel_token1] = ACTIONS(2874), + [aux_sym_tunnel_device_token1] = ACTIONS(2872), + [aux_sym_update_host_keys_token1] = ACTIONS(2872), + [aux_sym_use_keychain_token1] = ACTIONS(2872), + [aux_sym_use_roaming_token1] = ACTIONS(2872), + [aux_sym_user_token1] = ACTIONS(2874), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2872), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2872), + [aux_sym_visual_host_key_token1] = ACTIONS(2872), + [aux_sym_xauth_location_token1] = ACTIONS(2872), }, [422] = { - [ts_builtin_sym_end] = ACTIONS(2869), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2871), - [anon_sym_DQUOTE] = ACTIONS(2873), - [aux_sym_match_token1] = ACTIONS(2869), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2869), - [aux_sym_address_family_token1] = ACTIONS(2869), - [aux_sym_batch_mode_token1] = ACTIONS(2869), - [aux_sym_bind_address_token1] = ACTIONS(2869), - [aux_sym_bind_interface_token1] = ACTIONS(2869), - [aux_sym_canonical_domains_token1] = ACTIONS(2869), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2869), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2869), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2869), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2869), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2869), - [aux_sym_certificate_file_token1] = ACTIONS(2869), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2869), - [aux_sym_check_host_ip_token1] = ACTIONS(2869), - [aux_sym_ciphers_token1] = ACTIONS(2869), - [aux_sym_cipher_token1] = ACTIONS(2871), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2869), - [aux_sym_compression_token1] = ACTIONS(2869), - [aux_sym_connection_attempts_token1] = ACTIONS(2869), - [aux_sym_connect_timeout_token1] = ACTIONS(2869), - [aux_sym_control_master_token1] = ACTIONS(2869), - [aux_sym_control_path_token1] = ACTIONS(2869), - [aux_sym_control_persist_token1] = ACTIONS(2869), - [aux_sym_dynamic_forward_token1] = ACTIONS(2869), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2869), - [aux_sym_escape_char_token1] = ACTIONS(2869), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2869), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2869), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2869), - [aux_sym_forward_agent_token1] = ACTIONS(2869), - [aux_sym_forward_x11_token1] = ACTIONS(2871), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2869), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2869), - [aux_sym_gateway_ports_token1] = ACTIONS(2869), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2869), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2869), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2869), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2869), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2869), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2869), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2869), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2869), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2869), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2869), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2869), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2869), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2869), - [aux_sym_host_key_alias_token1] = ACTIONS(2869), - [aux_sym_hostname_token1] = ACTIONS(2869), - [aux_sym_identities_only_token1] = ACTIONS(2869), - [aux_sym_identity_agent_token1] = ACTIONS(2869), - [aux_sym_identity_file_token1] = ACTIONS(2869), - [aux_sym_ignore_unknown_token1] = ACTIONS(2869), - [aux_sym_include_token1] = ACTIONS(2869), - [aux_sym_ip_qos_token1] = ACTIONS(2869), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2869), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2869), - [aux_sym_kex_algorithms_token1] = ACTIONS(2869), - [aux_sym_known_hosts_command_token1] = ACTIONS(2869), - [aux_sym_local_command_token1] = ACTIONS(2869), - [aux_sym_local_forward_token1] = ACTIONS(2869), - [aux_sym_log_level_token1] = ACTIONS(2869), - [aux_sym_log_verbose_token1] = ACTIONS(2869), - [aux_sym_macs_token1] = ACTIONS(2869), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2869), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2869), - [aux_sym_password_authentication_token1] = ACTIONS(2869), - [aux_sym_permit_local_command_token1] = ACTIONS(2869), - [aux_sym_permit_remote_open_token1] = ACTIONS(2869), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2869), - [aux_sym_port_token1] = ACTIONS(2869), - [aux_sym_preferred_authentications_token1] = ACTIONS(2869), - [aux_sym_protocol_token1] = ACTIONS(2869), - [aux_sym_proxy_command_token1] = ACTIONS(2869), - [aux_sym_proxy_jump_token1] = ACTIONS(2869), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2869), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2869), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2869), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2869), - [aux_sym_rekey_limit_token1] = ACTIONS(2869), - [aux_sym_remote_command_token1] = ACTIONS(2869), - [aux_sym_remote_forward_token1] = ACTIONS(2869), - [aux_sym_request_tty_token1] = ACTIONS(2869), - [aux_sym_required_rsa_size_token1] = ACTIONS(2869), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2869), - [aux_sym_security_key_provider_token1] = ACTIONS(2869), - [aux_sym_send_env_token1] = ACTIONS(2869), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2869), - [aux_sym_server_alive_interval_token1] = ACTIONS(2869), - [aux_sym_session_type_token1] = ACTIONS(2869), - [aux_sym_set_env_token1] = ACTIONS(2869), - [aux_sym_stdin_null_token1] = ACTIONS(2869), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2869), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2869), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2869), - [aux_sym_syslog_facility_token1] = ACTIONS(2869), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2869), - [aux_sym_keep_alive_token1] = ACTIONS(2869), - [aux_sym_tunnel_token1] = ACTIONS(2871), - [aux_sym_tunnel_device_token1] = ACTIONS(2869), - [aux_sym_update_host_keys_token1] = ACTIONS(2869), - [aux_sym_use_keychain_token1] = ACTIONS(2869), - [aux_sym_use_roaming_token1] = ACTIONS(2869), - [aux_sym_user_token1] = ACTIONS(2871), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2869), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2869), - [aux_sym_visual_host_key_token1] = ACTIONS(2869), - [aux_sym_xauth_location_token1] = ACTIONS(2869), + [ts_builtin_sym_end] = ACTIONS(2878), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2880), + [anon_sym_DQUOTE] = ACTIONS(2878), + [aux_sym_match_token1] = ACTIONS(2878), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2878), + [aux_sym_address_family_token1] = ACTIONS(2878), + [aux_sym_batch_mode_token1] = ACTIONS(2878), + [aux_sym_bind_address_token1] = ACTIONS(2878), + [aux_sym_bind_interface_token1] = ACTIONS(2878), + [aux_sym_canonical_domains_token1] = ACTIONS(2878), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2878), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2878), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2878), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2878), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2878), + [aux_sym_certificate_file_token1] = ACTIONS(2878), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2878), + [aux_sym_check_host_ip_token1] = ACTIONS(2878), + [aux_sym_ciphers_token1] = ACTIONS(2878), + [aux_sym_cipher_token1] = ACTIONS(2880), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2878), + [aux_sym_compression_token1] = ACTIONS(2878), + [aux_sym_connection_attempts_token1] = ACTIONS(2878), + [aux_sym_connect_timeout_token1] = ACTIONS(2878), + [aux_sym_control_master_token1] = ACTIONS(2878), + [aux_sym_control_path_token1] = ACTIONS(2878), + [aux_sym_control_persist_token1] = ACTIONS(2878), + [aux_sym_dynamic_forward_token1] = ACTIONS(2878), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2878), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2878), + [aux_sym_escape_char_token1] = ACTIONS(2878), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2878), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2878), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2878), + [aux_sym_forward_agent_token1] = ACTIONS(2878), + [aux_sym_forward_x11_token1] = ACTIONS(2880), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2878), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2878), + [aux_sym_gateway_ports_token1] = ACTIONS(2878), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2878), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2878), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2878), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2878), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2878), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2878), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2878), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2878), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2878), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2878), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2878), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2878), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2878), + [aux_sym_host_key_alias_token1] = ACTIONS(2878), + [aux_sym_hostname_token1] = ACTIONS(2878), + [aux_sym_identities_only_token1] = ACTIONS(2878), + [aux_sym_identity_agent_token1] = ACTIONS(2878), + [aux_sym_identity_file_token1] = ACTIONS(2878), + [aux_sym_ignore_unknown_token1] = ACTIONS(2878), + [aux_sym_include_token1] = ACTIONS(2878), + [aux_sym_ip_qos_token1] = ACTIONS(2878), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2878), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2878), + [aux_sym_kex_algorithms_token1] = ACTIONS(2878), + [aux_sym_known_hosts_command_token1] = ACTIONS(2878), + [aux_sym_local_command_token1] = ACTIONS(2878), + [aux_sym_local_forward_token1] = ACTIONS(2878), + [aux_sym_log_level_token1] = ACTIONS(2878), + [aux_sym_log_verbose_token1] = ACTIONS(2878), + [aux_sym_macs_token1] = ACTIONS(2878), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2878), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2878), + [aux_sym_password_authentication_token1] = ACTIONS(2878), + [aux_sym_permit_local_command_token1] = ACTIONS(2878), + [aux_sym_permit_remote_open_token1] = ACTIONS(2878), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2878), + [aux_sym_port_token1] = ACTIONS(2878), + [aux_sym_preferred_authentications_token1] = ACTIONS(2878), + [aux_sym_protocol_token1] = ACTIONS(2878), + [aux_sym_proxy_command_token1] = ACTIONS(2878), + [aux_sym_proxy_jump_token1] = ACTIONS(2878), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2878), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2878), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2878), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2878), + [aux_sym_rekey_limit_token1] = ACTIONS(2878), + [aux_sym_remote_command_token1] = ACTIONS(2878), + [aux_sym_remote_forward_token1] = ACTIONS(2878), + [aux_sym_request_tty_token1] = ACTIONS(2878), + [aux_sym_required_rsa_size_token1] = ACTIONS(2878), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2878), + [aux_sym_security_key_provider_token1] = ACTIONS(2878), + [aux_sym_send_env_token1] = ACTIONS(2878), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2878), + [aux_sym_server_alive_interval_token1] = ACTIONS(2878), + [aux_sym_session_type_token1] = ACTIONS(2878), + [aux_sym_set_env_token1] = ACTIONS(2878), + [aux_sym_stdin_null_token1] = ACTIONS(2878), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2878), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2878), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2878), + [aux_sym_syslog_facility_token1] = ACTIONS(2878), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2878), + [aux_sym_keep_alive_token1] = ACTIONS(2878), + [aux_sym_tunnel_token1] = ACTIONS(2880), + [aux_sym_tunnel_device_token1] = ACTIONS(2878), + [aux_sym_update_host_keys_token1] = ACTIONS(2878), + [aux_sym_use_keychain_token1] = ACTIONS(2878), + [aux_sym_use_roaming_token1] = ACTIONS(2878), + [aux_sym_user_token1] = ACTIONS(2880), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2878), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2878), + [aux_sym_visual_host_key_token1] = ACTIONS(2878), + [aux_sym_xauth_location_token1] = ACTIONS(2878), }, [423] = { - [ts_builtin_sym_end] = ACTIONS(2875), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2877), - [anon_sym_DQUOTE] = ACTIONS(2875), - [aux_sym_match_token1] = ACTIONS(2875), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2875), - [aux_sym_address_family_token1] = ACTIONS(2875), - [aux_sym_batch_mode_token1] = ACTIONS(2875), - [aux_sym_bind_address_token1] = ACTIONS(2875), - [aux_sym_bind_interface_token1] = ACTIONS(2875), - [aux_sym_canonical_domains_token1] = ACTIONS(2875), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2875), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2875), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2875), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2875), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2875), - [aux_sym_certificate_file_token1] = ACTIONS(2875), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2875), - [aux_sym_check_host_ip_token1] = ACTIONS(2875), - [aux_sym_ciphers_token1] = ACTIONS(2875), - [aux_sym_cipher_token1] = ACTIONS(2877), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2875), - [aux_sym_compression_token1] = ACTIONS(2875), - [aux_sym_connection_attempts_token1] = ACTIONS(2875), - [aux_sym_connect_timeout_token1] = ACTIONS(2875), - [aux_sym_control_master_token1] = ACTIONS(2875), - [aux_sym_control_path_token1] = ACTIONS(2875), - [aux_sym_control_persist_token1] = ACTIONS(2875), - [aux_sym_dynamic_forward_token1] = ACTIONS(2875), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2875), - [aux_sym_escape_char_token1] = ACTIONS(2875), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2875), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2875), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2875), - [aux_sym_forward_agent_token1] = ACTIONS(2875), - [aux_sym_forward_x11_token1] = ACTIONS(2877), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2875), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2875), - [aux_sym_gateway_ports_token1] = ACTIONS(2875), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2875), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2875), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2875), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2875), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2875), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2875), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2875), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2875), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2875), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2875), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2875), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2875), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2875), - [aux_sym_host_key_alias_token1] = ACTIONS(2875), - [aux_sym_hostname_token1] = ACTIONS(2875), - [aux_sym_identities_only_token1] = ACTIONS(2875), - [aux_sym_identity_agent_token1] = ACTIONS(2875), - [aux_sym_identity_file_token1] = ACTIONS(2875), - [aux_sym_ignore_unknown_token1] = ACTIONS(2875), - [aux_sym_include_token1] = ACTIONS(2875), - [aux_sym_ip_qos_token1] = ACTIONS(2875), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2875), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2875), - [aux_sym_kex_algorithms_token1] = ACTIONS(2875), - [aux_sym_known_hosts_command_token1] = ACTIONS(2875), - [aux_sym_local_command_token1] = ACTIONS(2875), - [aux_sym_local_forward_token1] = ACTIONS(2875), - [aux_sym_log_level_token1] = ACTIONS(2875), - [aux_sym_log_verbose_token1] = ACTIONS(2875), - [aux_sym_macs_token1] = ACTIONS(2875), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2875), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2875), - [aux_sym_password_authentication_token1] = ACTIONS(2875), - [aux_sym_permit_local_command_token1] = ACTIONS(2875), - [aux_sym_permit_remote_open_token1] = ACTIONS(2875), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2875), - [aux_sym_port_token1] = ACTIONS(2875), - [aux_sym_preferred_authentications_token1] = ACTIONS(2875), - [aux_sym_protocol_token1] = ACTIONS(2875), - [aux_sym_proxy_command_token1] = ACTIONS(2875), - [aux_sym_proxy_jump_token1] = ACTIONS(2875), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2875), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2875), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2875), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2875), - [aux_sym_rekey_limit_token1] = ACTIONS(2875), - [aux_sym_remote_command_token1] = ACTIONS(2875), - [aux_sym_remote_forward_token1] = ACTIONS(2875), - [aux_sym_request_tty_token1] = ACTIONS(2875), - [aux_sym_required_rsa_size_token1] = ACTIONS(2875), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2875), - [aux_sym_security_key_provider_token1] = ACTIONS(2875), - [aux_sym_send_env_token1] = ACTIONS(2875), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2875), - [aux_sym_server_alive_interval_token1] = ACTIONS(2875), - [aux_sym_session_type_token1] = ACTIONS(2875), - [aux_sym_set_env_token1] = ACTIONS(2875), - [aux_sym_stdin_null_token1] = ACTIONS(2875), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2875), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2875), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2875), - [aux_sym_syslog_facility_token1] = ACTIONS(2875), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2875), - [aux_sym_keep_alive_token1] = ACTIONS(2875), - [aux_sym_tunnel_token1] = ACTIONS(2877), - [aux_sym_tunnel_device_token1] = ACTIONS(2875), - [aux_sym_update_host_keys_token1] = ACTIONS(2875), - [aux_sym_use_keychain_token1] = ACTIONS(2875), - [aux_sym_use_roaming_token1] = ACTIONS(2875), - [aux_sym_user_token1] = ACTIONS(2877), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2875), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2875), - [aux_sym_visual_host_key_token1] = ACTIONS(2875), - [aux_sym_xauth_location_token1] = ACTIONS(2875), + [ts_builtin_sym_end] = ACTIONS(2882), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2884), + [anon_sym_DQUOTE] = ACTIONS(2882), + [aux_sym_match_token1] = ACTIONS(2882), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2882), + [aux_sym_address_family_token1] = ACTIONS(2882), + [aux_sym_batch_mode_token1] = ACTIONS(2882), + [aux_sym_bind_address_token1] = ACTIONS(2882), + [aux_sym_bind_interface_token1] = ACTIONS(2882), + [aux_sym_canonical_domains_token1] = ACTIONS(2882), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2882), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2882), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2882), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2882), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2882), + [aux_sym_certificate_file_token1] = ACTIONS(2882), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2882), + [aux_sym_check_host_ip_token1] = ACTIONS(2882), + [aux_sym_ciphers_token1] = ACTIONS(2882), + [aux_sym_cipher_token1] = ACTIONS(2884), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2882), + [aux_sym_compression_token1] = ACTIONS(2882), + [aux_sym_connection_attempts_token1] = ACTIONS(2882), + [aux_sym_connect_timeout_token1] = ACTIONS(2882), + [aux_sym_control_master_token1] = ACTIONS(2882), + [aux_sym_control_path_token1] = ACTIONS(2882), + [aux_sym_control_persist_token1] = ACTIONS(2882), + [aux_sym_dynamic_forward_token1] = ACTIONS(2882), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2882), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2882), + [aux_sym_escape_char_token1] = ACTIONS(2882), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2882), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2882), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2882), + [aux_sym_forward_agent_token1] = ACTIONS(2882), + [aux_sym_forward_x11_token1] = ACTIONS(2884), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2882), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2882), + [aux_sym_gateway_ports_token1] = ACTIONS(2882), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2882), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2882), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2882), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2882), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2882), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2882), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2882), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2882), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2882), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2882), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2882), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2882), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2882), + [aux_sym_host_key_alias_token1] = ACTIONS(2882), + [aux_sym_hostname_token1] = ACTIONS(2882), + [aux_sym_identities_only_token1] = ACTIONS(2882), + [aux_sym_identity_agent_token1] = ACTIONS(2882), + [aux_sym_identity_file_token1] = ACTIONS(2882), + [aux_sym_ignore_unknown_token1] = ACTIONS(2882), + [aux_sym_include_token1] = ACTIONS(2882), + [aux_sym_ip_qos_token1] = ACTIONS(2882), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2882), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2882), + [aux_sym_kex_algorithms_token1] = ACTIONS(2882), + [aux_sym_known_hosts_command_token1] = ACTIONS(2882), + [aux_sym_local_command_token1] = ACTIONS(2882), + [aux_sym_local_forward_token1] = ACTIONS(2882), + [aux_sym_log_level_token1] = ACTIONS(2882), + [aux_sym_log_verbose_token1] = ACTIONS(2882), + [aux_sym_macs_token1] = ACTIONS(2882), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2882), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2882), + [aux_sym_password_authentication_token1] = ACTIONS(2882), + [aux_sym_permit_local_command_token1] = ACTIONS(2882), + [aux_sym_permit_remote_open_token1] = ACTIONS(2882), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2882), + [aux_sym_port_token1] = ACTIONS(2882), + [aux_sym_preferred_authentications_token1] = ACTIONS(2882), + [aux_sym_protocol_token1] = ACTIONS(2882), + [aux_sym_proxy_command_token1] = ACTIONS(2882), + [aux_sym_proxy_jump_token1] = ACTIONS(2882), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2882), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2882), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2882), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2882), + [aux_sym_rekey_limit_token1] = ACTIONS(2882), + [aux_sym_remote_command_token1] = ACTIONS(2882), + [aux_sym_remote_forward_token1] = ACTIONS(2882), + [aux_sym_request_tty_token1] = ACTIONS(2882), + [aux_sym_required_rsa_size_token1] = ACTIONS(2882), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2882), + [aux_sym_security_key_provider_token1] = ACTIONS(2882), + [aux_sym_send_env_token1] = ACTIONS(2882), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2882), + [aux_sym_server_alive_interval_token1] = ACTIONS(2882), + [aux_sym_session_type_token1] = ACTIONS(2882), + [aux_sym_set_env_token1] = ACTIONS(2882), + [aux_sym_stdin_null_token1] = ACTIONS(2882), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2882), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2882), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2882), + [aux_sym_syslog_facility_token1] = ACTIONS(2882), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2882), + [aux_sym_keep_alive_token1] = ACTIONS(2882), + [aux_sym_tunnel_token1] = ACTIONS(2884), + [aux_sym_tunnel_device_token1] = ACTIONS(2882), + [aux_sym_update_host_keys_token1] = ACTIONS(2882), + [aux_sym_use_keychain_token1] = ACTIONS(2882), + [aux_sym_use_roaming_token1] = ACTIONS(2882), + [aux_sym_user_token1] = ACTIONS(2884), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2882), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2882), + [aux_sym_visual_host_key_token1] = ACTIONS(2882), + [aux_sym_xauth_location_token1] = ACTIONS(2882), }, [424] = { - [ts_builtin_sym_end] = ACTIONS(2879), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2881), - [anon_sym_DQUOTE] = ACTIONS(2883), - [aux_sym_match_token1] = ACTIONS(2879), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2879), - [aux_sym_address_family_token1] = ACTIONS(2879), - [aux_sym_batch_mode_token1] = ACTIONS(2879), - [aux_sym_bind_address_token1] = ACTIONS(2879), - [aux_sym_bind_interface_token1] = ACTIONS(2879), - [aux_sym_canonical_domains_token1] = ACTIONS(2879), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2879), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2879), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2879), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2879), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2879), - [aux_sym_certificate_file_token1] = ACTIONS(2879), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2879), - [aux_sym_check_host_ip_token1] = ACTIONS(2879), - [aux_sym_ciphers_token1] = ACTIONS(2879), - [aux_sym_cipher_token1] = ACTIONS(2881), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2879), - [aux_sym_compression_token1] = ACTIONS(2879), - [aux_sym_connection_attempts_token1] = ACTIONS(2879), - [aux_sym_connect_timeout_token1] = ACTIONS(2879), - [aux_sym_control_master_token1] = ACTIONS(2879), - [aux_sym_control_path_token1] = ACTIONS(2879), - [aux_sym_control_persist_token1] = ACTIONS(2879), - [aux_sym_dynamic_forward_token1] = ACTIONS(2879), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2879), - [aux_sym_escape_char_token1] = ACTIONS(2879), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2879), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2879), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2879), - [aux_sym_forward_agent_token1] = ACTIONS(2879), - [aux_sym_forward_x11_token1] = ACTIONS(2881), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2879), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2879), - [aux_sym_gateway_ports_token1] = ACTIONS(2879), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2879), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2879), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2879), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2879), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2879), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2879), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2879), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2879), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2879), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2879), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2879), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2879), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2879), - [aux_sym_host_key_alias_token1] = ACTIONS(2879), - [aux_sym_hostname_token1] = ACTIONS(2879), - [aux_sym_identities_only_token1] = ACTIONS(2879), - [aux_sym_identity_agent_token1] = ACTIONS(2879), - [aux_sym_identity_file_token1] = ACTIONS(2879), - [aux_sym_ignore_unknown_token1] = ACTIONS(2879), - [aux_sym_include_token1] = ACTIONS(2879), - [aux_sym_ip_qos_token1] = ACTIONS(2879), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2879), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2879), - [aux_sym_kex_algorithms_token1] = ACTIONS(2879), - [aux_sym_known_hosts_command_token1] = ACTIONS(2879), - [aux_sym_local_command_token1] = ACTIONS(2879), - [aux_sym_local_forward_token1] = ACTIONS(2879), - [aux_sym_log_level_token1] = ACTIONS(2879), - [aux_sym_log_verbose_token1] = ACTIONS(2879), - [aux_sym_macs_token1] = ACTIONS(2879), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2879), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2879), - [aux_sym_password_authentication_token1] = ACTIONS(2879), - [aux_sym_permit_local_command_token1] = ACTIONS(2879), - [aux_sym_permit_remote_open_token1] = ACTIONS(2879), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2879), - [aux_sym_port_token1] = ACTIONS(2879), - [aux_sym_preferred_authentications_token1] = ACTIONS(2879), - [aux_sym_protocol_token1] = ACTIONS(2879), - [aux_sym_proxy_command_token1] = ACTIONS(2879), - [aux_sym_proxy_jump_token1] = ACTIONS(2879), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2879), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2879), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2879), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2879), - [aux_sym_rekey_limit_token1] = ACTIONS(2879), - [aux_sym_remote_command_token1] = ACTIONS(2879), - [aux_sym_remote_forward_token1] = ACTIONS(2879), - [aux_sym_request_tty_token1] = ACTIONS(2879), - [aux_sym_required_rsa_size_token1] = ACTIONS(2879), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2879), - [aux_sym_security_key_provider_token1] = ACTIONS(2879), - [aux_sym_send_env_token1] = ACTIONS(2879), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2879), - [aux_sym_server_alive_interval_token1] = ACTIONS(2879), - [aux_sym_session_type_token1] = ACTIONS(2879), - [aux_sym_set_env_token1] = ACTIONS(2879), - [aux_sym_stdin_null_token1] = ACTIONS(2879), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2879), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2879), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2879), - [aux_sym_syslog_facility_token1] = ACTIONS(2879), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2879), - [aux_sym_keep_alive_token1] = ACTIONS(2879), - [aux_sym_tunnel_token1] = ACTIONS(2881), - [aux_sym_tunnel_device_token1] = ACTIONS(2879), - [aux_sym_update_host_keys_token1] = ACTIONS(2879), - [aux_sym_use_keychain_token1] = ACTIONS(2879), - [aux_sym_use_roaming_token1] = ACTIONS(2879), - [aux_sym_user_token1] = ACTIONS(2881), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2879), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2879), - [aux_sym_visual_host_key_token1] = ACTIONS(2879), - [aux_sym_xauth_location_token1] = ACTIONS(2879), + [ts_builtin_sym_end] = ACTIONS(2886), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2888), + [anon_sym_DQUOTE] = ACTIONS(2890), + [aux_sym_match_token1] = ACTIONS(2886), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2886), + [aux_sym_address_family_token1] = ACTIONS(2886), + [aux_sym_batch_mode_token1] = ACTIONS(2886), + [aux_sym_bind_address_token1] = ACTIONS(2886), + [aux_sym_bind_interface_token1] = ACTIONS(2886), + [aux_sym_canonical_domains_token1] = ACTIONS(2886), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2886), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2886), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2886), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2886), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2886), + [aux_sym_certificate_file_token1] = ACTIONS(2886), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2886), + [aux_sym_check_host_ip_token1] = ACTIONS(2886), + [aux_sym_ciphers_token1] = ACTIONS(2886), + [aux_sym_cipher_token1] = ACTIONS(2888), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2886), + [aux_sym_compression_token1] = ACTIONS(2886), + [aux_sym_connection_attempts_token1] = ACTIONS(2886), + [aux_sym_connect_timeout_token1] = ACTIONS(2886), + [aux_sym_control_master_token1] = ACTIONS(2886), + [aux_sym_control_path_token1] = ACTIONS(2886), + [aux_sym_control_persist_token1] = ACTIONS(2886), + [aux_sym_dynamic_forward_token1] = ACTIONS(2886), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2886), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2886), + [aux_sym_escape_char_token1] = ACTIONS(2886), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2886), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2886), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2886), + [aux_sym_forward_agent_token1] = ACTIONS(2886), + [aux_sym_forward_x11_token1] = ACTIONS(2888), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2886), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2886), + [aux_sym_gateway_ports_token1] = ACTIONS(2886), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2886), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2886), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2886), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2886), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2886), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2886), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2886), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2886), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2886), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2886), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2886), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2886), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2886), + [aux_sym_host_key_alias_token1] = ACTIONS(2886), + [aux_sym_hostname_token1] = ACTIONS(2886), + [aux_sym_identities_only_token1] = ACTIONS(2886), + [aux_sym_identity_agent_token1] = ACTIONS(2886), + [aux_sym_identity_file_token1] = ACTIONS(2886), + [aux_sym_ignore_unknown_token1] = ACTIONS(2886), + [aux_sym_include_token1] = ACTIONS(2886), + [aux_sym_ip_qos_token1] = ACTIONS(2886), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2886), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2886), + [aux_sym_kex_algorithms_token1] = ACTIONS(2886), + [aux_sym_known_hosts_command_token1] = ACTIONS(2886), + [aux_sym_local_command_token1] = ACTIONS(2886), + [aux_sym_local_forward_token1] = ACTIONS(2886), + [aux_sym_log_level_token1] = ACTIONS(2886), + [aux_sym_log_verbose_token1] = ACTIONS(2886), + [aux_sym_macs_token1] = ACTIONS(2886), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2886), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2886), + [aux_sym_password_authentication_token1] = ACTIONS(2886), + [aux_sym_permit_local_command_token1] = ACTIONS(2886), + [aux_sym_permit_remote_open_token1] = ACTIONS(2886), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2886), + [aux_sym_port_token1] = ACTIONS(2886), + [aux_sym_preferred_authentications_token1] = ACTIONS(2886), + [aux_sym_protocol_token1] = ACTIONS(2886), + [aux_sym_proxy_command_token1] = ACTIONS(2886), + [aux_sym_proxy_jump_token1] = ACTIONS(2886), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2886), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2886), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2886), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2886), + [aux_sym_rekey_limit_token1] = ACTIONS(2886), + [aux_sym_remote_command_token1] = ACTIONS(2886), + [aux_sym_remote_forward_token1] = ACTIONS(2886), + [aux_sym_request_tty_token1] = ACTIONS(2886), + [aux_sym_required_rsa_size_token1] = ACTIONS(2886), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2886), + [aux_sym_security_key_provider_token1] = ACTIONS(2886), + [aux_sym_send_env_token1] = ACTIONS(2886), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2886), + [aux_sym_server_alive_interval_token1] = ACTIONS(2886), + [aux_sym_session_type_token1] = ACTIONS(2886), + [aux_sym_set_env_token1] = ACTIONS(2886), + [aux_sym_stdin_null_token1] = ACTIONS(2886), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2886), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2886), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2886), + [aux_sym_syslog_facility_token1] = ACTIONS(2886), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2886), + [aux_sym_keep_alive_token1] = ACTIONS(2886), + [aux_sym_tunnel_token1] = ACTIONS(2888), + [aux_sym_tunnel_device_token1] = ACTIONS(2886), + [aux_sym_update_host_keys_token1] = ACTIONS(2886), + [aux_sym_use_keychain_token1] = ACTIONS(2886), + [aux_sym_use_roaming_token1] = ACTIONS(2886), + [aux_sym_user_token1] = ACTIONS(2888), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2886), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2886), + [aux_sym_visual_host_key_token1] = ACTIONS(2886), + [aux_sym_xauth_location_token1] = ACTIONS(2886), }, [425] = { - [ts_builtin_sym_end] = ACTIONS(2885), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2885), - [aux_sym_match_token1] = ACTIONS(2885), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2885), - [aux_sym_address_family_token1] = ACTIONS(2885), - [aux_sym_batch_mode_token1] = ACTIONS(2885), - [aux_sym_bind_address_token1] = ACTIONS(2885), - [aux_sym_bind_interface_token1] = ACTIONS(2885), - [aux_sym_canonical_domains_token1] = ACTIONS(2885), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2885), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2885), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2885), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2885), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2885), - [aux_sym_certificate_file_token1] = ACTIONS(2885), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2885), - [aux_sym_check_host_ip_token1] = ACTIONS(2885), - [aux_sym_ciphers_token1] = ACTIONS(2885), - [aux_sym_cipher_token1] = ACTIONS(2887), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2885), - [aux_sym_compression_token1] = ACTIONS(2885), - [aux_sym_connection_attempts_token1] = ACTIONS(2885), - [aux_sym_connect_timeout_token1] = ACTIONS(2885), - [aux_sym_control_master_token1] = ACTIONS(2885), - [aux_sym_control_path_token1] = ACTIONS(2885), - [aux_sym_control_persist_token1] = ACTIONS(2885), - [aux_sym_dynamic_forward_token1] = ACTIONS(2885), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2885), - [aux_sym_escape_char_token1] = ACTIONS(2885), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2885), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2885), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2885), - [aux_sym_forward_agent_token1] = ACTIONS(2885), - [aux_sym_forward_x11_token1] = ACTIONS(2887), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2885), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2885), - [aux_sym_gateway_ports_token1] = ACTIONS(2885), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2885), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2885), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2885), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2885), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2885), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2885), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2885), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2885), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2885), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2885), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2885), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2885), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2885), - [aux_sym_host_key_alias_token1] = ACTIONS(2885), - [aux_sym_hostname_token1] = ACTIONS(2885), - [aux_sym_identities_only_token1] = ACTIONS(2885), - [aux_sym_identity_agent_token1] = ACTIONS(2885), - [aux_sym_identity_file_token1] = ACTIONS(2885), - [aux_sym_ignore_unknown_token1] = ACTIONS(2885), - [aux_sym_include_token1] = ACTIONS(2885), - [aux_sym_ip_qos_token1] = ACTIONS(2885), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2885), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2885), - [aux_sym_kex_algorithms_token1] = ACTIONS(2885), - [aux_sym_known_hosts_command_token1] = ACTIONS(2885), - [aux_sym_local_command_token1] = ACTIONS(2885), - [aux_sym_local_forward_token1] = ACTIONS(2885), - [aux_sym_log_level_token1] = ACTIONS(2885), - [aux_sym_log_verbose_token1] = ACTIONS(2885), - [aux_sym_macs_token1] = ACTIONS(2885), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2885), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2885), - [aux_sym_password_authentication_token1] = ACTIONS(2885), - [aux_sym_permit_local_command_token1] = ACTIONS(2885), - [aux_sym_permit_remote_open_token1] = ACTIONS(2885), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2885), - [aux_sym_port_token1] = ACTIONS(2885), - [aux_sym_preferred_authentications_token1] = ACTIONS(2885), - [aux_sym_protocol_token1] = ACTIONS(2885), - [aux_sym_proxy_command_token1] = ACTIONS(2885), - [aux_sym_proxy_jump_token1] = ACTIONS(2885), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2885), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2885), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2885), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2885), - [aux_sym_rekey_limit_token1] = ACTIONS(2885), - [aux_sym_remote_command_token1] = ACTIONS(2885), - [aux_sym_remote_forward_token1] = ACTIONS(2885), - [aux_sym_request_tty_token1] = ACTIONS(2885), - [aux_sym_required_rsa_size_token1] = ACTIONS(2885), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2885), - [aux_sym_security_key_provider_token1] = ACTIONS(2885), - [aux_sym_send_env_token1] = ACTIONS(2885), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2885), - [aux_sym_server_alive_interval_token1] = ACTIONS(2885), - [aux_sym_session_type_token1] = ACTIONS(2885), - [aux_sym_set_env_token1] = ACTIONS(2885), - [aux_sym_stdin_null_token1] = ACTIONS(2885), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2885), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2885), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2885), - [aux_sym_syslog_facility_token1] = ACTIONS(2885), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2885), - [aux_sym_keep_alive_token1] = ACTIONS(2885), - [aux_sym_tunnel_token1] = ACTIONS(2887), - [aux_sym_tunnel_device_token1] = ACTIONS(2885), - [aux_sym_update_host_keys_token1] = ACTIONS(2885), - [aux_sym_use_keychain_token1] = ACTIONS(2885), - [aux_sym_use_roaming_token1] = ACTIONS(2885), - [aux_sym_user_token1] = ACTIONS(2887), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2885), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2885), - [aux_sym_visual_host_key_token1] = ACTIONS(2885), - [aux_sym_xauth_location_token1] = ACTIONS(2885), + [ts_builtin_sym_end] = ACTIONS(2892), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2894), + [anon_sym_DQUOTE] = ACTIONS(2892), + [aux_sym_match_token1] = ACTIONS(2892), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2892), + [aux_sym_address_family_token1] = ACTIONS(2892), + [aux_sym_batch_mode_token1] = ACTIONS(2892), + [aux_sym_bind_address_token1] = ACTIONS(2892), + [aux_sym_bind_interface_token1] = ACTIONS(2892), + [aux_sym_canonical_domains_token1] = ACTIONS(2892), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2892), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2892), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2892), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2892), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2892), + [aux_sym_certificate_file_token1] = ACTIONS(2892), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2892), + [aux_sym_check_host_ip_token1] = ACTIONS(2892), + [aux_sym_ciphers_token1] = ACTIONS(2892), + [aux_sym_cipher_token1] = ACTIONS(2894), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2892), + [aux_sym_compression_token1] = ACTIONS(2892), + [aux_sym_connection_attempts_token1] = ACTIONS(2892), + [aux_sym_connect_timeout_token1] = ACTIONS(2892), + [aux_sym_control_master_token1] = ACTIONS(2892), + [aux_sym_control_path_token1] = ACTIONS(2892), + [aux_sym_control_persist_token1] = ACTIONS(2892), + [aux_sym_dynamic_forward_token1] = ACTIONS(2892), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2892), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2892), + [aux_sym_escape_char_token1] = ACTIONS(2892), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2892), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2892), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2892), + [aux_sym_forward_agent_token1] = ACTIONS(2892), + [aux_sym_forward_x11_token1] = ACTIONS(2894), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2892), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2892), + [aux_sym_gateway_ports_token1] = ACTIONS(2892), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2892), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2892), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2892), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2892), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2892), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2892), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2892), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2892), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2892), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2892), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2892), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2892), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2892), + [aux_sym_host_key_alias_token1] = ACTIONS(2892), + [aux_sym_hostname_token1] = ACTIONS(2892), + [aux_sym_identities_only_token1] = ACTIONS(2892), + [aux_sym_identity_agent_token1] = ACTIONS(2892), + [aux_sym_identity_file_token1] = ACTIONS(2892), + [aux_sym_ignore_unknown_token1] = ACTIONS(2892), + [aux_sym_include_token1] = ACTIONS(2892), + [aux_sym_ip_qos_token1] = ACTIONS(2892), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2892), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2892), + [aux_sym_kex_algorithms_token1] = ACTIONS(2892), + [aux_sym_known_hosts_command_token1] = ACTIONS(2892), + [aux_sym_local_command_token1] = ACTIONS(2892), + [aux_sym_local_forward_token1] = ACTIONS(2892), + [aux_sym_log_level_token1] = ACTIONS(2892), + [aux_sym_log_verbose_token1] = ACTIONS(2892), + [aux_sym_macs_token1] = ACTIONS(2892), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2892), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2892), + [aux_sym_password_authentication_token1] = ACTIONS(2892), + [aux_sym_permit_local_command_token1] = ACTIONS(2892), + [aux_sym_permit_remote_open_token1] = ACTIONS(2892), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2892), + [aux_sym_port_token1] = ACTIONS(2892), + [aux_sym_preferred_authentications_token1] = ACTIONS(2892), + [aux_sym_protocol_token1] = ACTIONS(2892), + [aux_sym_proxy_command_token1] = ACTIONS(2892), + [aux_sym_proxy_jump_token1] = ACTIONS(2892), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2892), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2892), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2892), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2892), + [aux_sym_rekey_limit_token1] = ACTIONS(2892), + [aux_sym_remote_command_token1] = ACTIONS(2892), + [aux_sym_remote_forward_token1] = ACTIONS(2892), + [aux_sym_request_tty_token1] = ACTIONS(2892), + [aux_sym_required_rsa_size_token1] = ACTIONS(2892), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2892), + [aux_sym_security_key_provider_token1] = ACTIONS(2892), + [aux_sym_send_env_token1] = ACTIONS(2892), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2892), + [aux_sym_server_alive_interval_token1] = ACTIONS(2892), + [aux_sym_session_type_token1] = ACTIONS(2892), + [aux_sym_set_env_token1] = ACTIONS(2892), + [aux_sym_stdin_null_token1] = ACTIONS(2892), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2892), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2892), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2892), + [aux_sym_syslog_facility_token1] = ACTIONS(2892), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2892), + [aux_sym_keep_alive_token1] = ACTIONS(2892), + [aux_sym_tunnel_token1] = ACTIONS(2894), + [aux_sym_tunnel_device_token1] = ACTIONS(2892), + [aux_sym_update_host_keys_token1] = ACTIONS(2892), + [aux_sym_use_keychain_token1] = ACTIONS(2892), + [aux_sym_use_roaming_token1] = ACTIONS(2892), + [aux_sym_user_token1] = ACTIONS(2894), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2892), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2892), + [aux_sym_visual_host_key_token1] = ACTIONS(2892), + [aux_sym_xauth_location_token1] = ACTIONS(2892), }, [426] = { - [ts_builtin_sym_end] = ACTIONS(2889), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2891), - [anon_sym_DQUOTE] = ACTIONS(2893), - [aux_sym_match_token1] = ACTIONS(2889), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2889), - [aux_sym_address_family_token1] = ACTIONS(2889), - [aux_sym_batch_mode_token1] = ACTIONS(2889), - [aux_sym_bind_address_token1] = ACTIONS(2889), - [aux_sym_bind_interface_token1] = ACTIONS(2889), - [aux_sym_canonical_domains_token1] = ACTIONS(2889), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2889), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2889), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2889), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2889), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2889), - [aux_sym_certificate_file_token1] = ACTIONS(2889), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2889), - [aux_sym_check_host_ip_token1] = ACTIONS(2889), - [aux_sym_ciphers_token1] = ACTIONS(2889), - [aux_sym_cipher_token1] = ACTIONS(2891), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2889), - [aux_sym_compression_token1] = ACTIONS(2889), - [aux_sym_connection_attempts_token1] = ACTIONS(2889), - [aux_sym_connect_timeout_token1] = ACTIONS(2889), - [aux_sym_control_master_token1] = ACTIONS(2889), - [aux_sym_control_path_token1] = ACTIONS(2889), - [aux_sym_control_persist_token1] = ACTIONS(2889), - [aux_sym_dynamic_forward_token1] = ACTIONS(2889), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2889), - [aux_sym_escape_char_token1] = ACTIONS(2889), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2889), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2889), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2889), - [aux_sym_forward_agent_token1] = ACTIONS(2889), - [aux_sym_forward_x11_token1] = ACTIONS(2891), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2889), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2889), - [aux_sym_gateway_ports_token1] = ACTIONS(2889), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2889), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2889), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2889), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2889), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2889), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2889), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2889), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2889), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2889), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2889), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2889), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2889), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2889), - [aux_sym_host_key_alias_token1] = ACTIONS(2889), - [aux_sym_hostname_token1] = ACTIONS(2889), - [aux_sym_identities_only_token1] = ACTIONS(2889), - [aux_sym_identity_agent_token1] = ACTIONS(2889), - [aux_sym_identity_file_token1] = ACTIONS(2889), - [aux_sym_ignore_unknown_token1] = ACTIONS(2889), - [aux_sym_include_token1] = ACTIONS(2889), - [aux_sym_ip_qos_token1] = ACTIONS(2889), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2889), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2889), - [aux_sym_kex_algorithms_token1] = ACTIONS(2889), - [aux_sym_known_hosts_command_token1] = ACTIONS(2889), - [aux_sym_local_command_token1] = ACTIONS(2889), - [aux_sym_local_forward_token1] = ACTIONS(2889), - [aux_sym_log_level_token1] = ACTIONS(2889), - [aux_sym_log_verbose_token1] = ACTIONS(2889), - [aux_sym_macs_token1] = ACTIONS(2889), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2889), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2889), - [aux_sym_password_authentication_token1] = ACTIONS(2889), - [aux_sym_permit_local_command_token1] = ACTIONS(2889), - [aux_sym_permit_remote_open_token1] = ACTIONS(2889), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2889), - [aux_sym_port_token1] = ACTIONS(2889), - [aux_sym_preferred_authentications_token1] = ACTIONS(2889), - [aux_sym_protocol_token1] = ACTIONS(2889), - [aux_sym_proxy_command_token1] = ACTIONS(2889), - [aux_sym_proxy_jump_token1] = ACTIONS(2889), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2889), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2889), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2889), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2889), - [aux_sym_rekey_limit_token1] = ACTIONS(2889), - [aux_sym_remote_command_token1] = ACTIONS(2889), - [aux_sym_remote_forward_token1] = ACTIONS(2889), - [aux_sym_request_tty_token1] = ACTIONS(2889), - [aux_sym_required_rsa_size_token1] = ACTIONS(2889), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2889), - [aux_sym_security_key_provider_token1] = ACTIONS(2889), - [aux_sym_send_env_token1] = ACTIONS(2889), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2889), - [aux_sym_server_alive_interval_token1] = ACTIONS(2889), - [aux_sym_session_type_token1] = ACTIONS(2889), - [aux_sym_set_env_token1] = ACTIONS(2889), - [aux_sym_stdin_null_token1] = ACTIONS(2889), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2889), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2889), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2889), - [aux_sym_syslog_facility_token1] = ACTIONS(2889), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2889), - [aux_sym_keep_alive_token1] = ACTIONS(2889), - [aux_sym_tunnel_token1] = ACTIONS(2891), - [aux_sym_tunnel_device_token1] = ACTIONS(2889), - [aux_sym_update_host_keys_token1] = ACTIONS(2889), - [aux_sym_use_keychain_token1] = ACTIONS(2889), - [aux_sym_use_roaming_token1] = ACTIONS(2889), - [aux_sym_user_token1] = ACTIONS(2891), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2889), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2889), - [aux_sym_visual_host_key_token1] = ACTIONS(2889), - [aux_sym_xauth_location_token1] = ACTIONS(2889), + [ts_builtin_sym_end] = ACTIONS(2896), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2898), + [anon_sym_DQUOTE] = ACTIONS(2900), + [aux_sym_match_token1] = ACTIONS(2896), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2896), + [aux_sym_address_family_token1] = ACTIONS(2896), + [aux_sym_batch_mode_token1] = ACTIONS(2896), + [aux_sym_bind_address_token1] = ACTIONS(2896), + [aux_sym_bind_interface_token1] = ACTIONS(2896), + [aux_sym_canonical_domains_token1] = ACTIONS(2896), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2896), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2896), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2896), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2896), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2896), + [aux_sym_certificate_file_token1] = ACTIONS(2896), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2896), + [aux_sym_check_host_ip_token1] = ACTIONS(2896), + [aux_sym_ciphers_token1] = ACTIONS(2896), + [aux_sym_cipher_token1] = ACTIONS(2898), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2896), + [aux_sym_compression_token1] = ACTIONS(2896), + [aux_sym_connection_attempts_token1] = ACTIONS(2896), + [aux_sym_connect_timeout_token1] = ACTIONS(2896), + [aux_sym_control_master_token1] = ACTIONS(2896), + [aux_sym_control_path_token1] = ACTIONS(2896), + [aux_sym_control_persist_token1] = ACTIONS(2896), + [aux_sym_dynamic_forward_token1] = ACTIONS(2896), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2896), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2896), + [aux_sym_escape_char_token1] = ACTIONS(2896), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2896), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2896), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2896), + [aux_sym_forward_agent_token1] = ACTIONS(2896), + [aux_sym_forward_x11_token1] = ACTIONS(2898), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2896), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2896), + [aux_sym_gateway_ports_token1] = ACTIONS(2896), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2896), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2896), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2896), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2896), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2896), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2896), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2896), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2896), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2896), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2896), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2896), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2896), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2896), + [aux_sym_host_key_alias_token1] = ACTIONS(2896), + [aux_sym_hostname_token1] = ACTIONS(2896), + [aux_sym_identities_only_token1] = ACTIONS(2896), + [aux_sym_identity_agent_token1] = ACTIONS(2896), + [aux_sym_identity_file_token1] = ACTIONS(2896), + [aux_sym_ignore_unknown_token1] = ACTIONS(2896), + [aux_sym_include_token1] = ACTIONS(2896), + [aux_sym_ip_qos_token1] = ACTIONS(2896), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2896), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2896), + [aux_sym_kex_algorithms_token1] = ACTIONS(2896), + [aux_sym_known_hosts_command_token1] = ACTIONS(2896), + [aux_sym_local_command_token1] = ACTIONS(2896), + [aux_sym_local_forward_token1] = ACTIONS(2896), + [aux_sym_log_level_token1] = ACTIONS(2896), + [aux_sym_log_verbose_token1] = ACTIONS(2896), + [aux_sym_macs_token1] = ACTIONS(2896), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2896), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2896), + [aux_sym_password_authentication_token1] = ACTIONS(2896), + [aux_sym_permit_local_command_token1] = ACTIONS(2896), + [aux_sym_permit_remote_open_token1] = ACTIONS(2896), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2896), + [aux_sym_port_token1] = ACTIONS(2896), + [aux_sym_preferred_authentications_token1] = ACTIONS(2896), + [aux_sym_protocol_token1] = ACTIONS(2896), + [aux_sym_proxy_command_token1] = ACTIONS(2896), + [aux_sym_proxy_jump_token1] = ACTIONS(2896), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2896), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2896), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2896), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2896), + [aux_sym_rekey_limit_token1] = ACTIONS(2896), + [aux_sym_remote_command_token1] = ACTIONS(2896), + [aux_sym_remote_forward_token1] = ACTIONS(2896), + [aux_sym_request_tty_token1] = ACTIONS(2896), + [aux_sym_required_rsa_size_token1] = ACTIONS(2896), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2896), + [aux_sym_security_key_provider_token1] = ACTIONS(2896), + [aux_sym_send_env_token1] = ACTIONS(2896), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2896), + [aux_sym_server_alive_interval_token1] = ACTIONS(2896), + [aux_sym_session_type_token1] = ACTIONS(2896), + [aux_sym_set_env_token1] = ACTIONS(2896), + [aux_sym_stdin_null_token1] = ACTIONS(2896), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2896), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2896), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2896), + [aux_sym_syslog_facility_token1] = ACTIONS(2896), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2896), + [aux_sym_keep_alive_token1] = ACTIONS(2896), + [aux_sym_tunnel_token1] = ACTIONS(2898), + [aux_sym_tunnel_device_token1] = ACTIONS(2896), + [aux_sym_update_host_keys_token1] = ACTIONS(2896), + [aux_sym_use_keychain_token1] = ACTIONS(2896), + [aux_sym_use_roaming_token1] = ACTIONS(2896), + [aux_sym_user_token1] = ACTIONS(2898), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2896), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2896), + [aux_sym_visual_host_key_token1] = ACTIONS(2896), + [aux_sym_xauth_location_token1] = ACTIONS(2896), }, [427] = { - [ts_builtin_sym_end] = ACTIONS(2895), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2897), - [anon_sym_DQUOTE] = ACTIONS(2895), - [aux_sym_match_token1] = ACTIONS(2895), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2895), - [aux_sym_address_family_token1] = ACTIONS(2895), - [aux_sym_batch_mode_token1] = ACTIONS(2895), - [aux_sym_bind_address_token1] = ACTIONS(2895), - [aux_sym_bind_interface_token1] = ACTIONS(2895), - [aux_sym_canonical_domains_token1] = ACTIONS(2895), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2895), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2895), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2895), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2895), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2895), - [aux_sym_certificate_file_token1] = ACTIONS(2895), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2895), - [aux_sym_check_host_ip_token1] = ACTIONS(2895), - [aux_sym_ciphers_token1] = ACTIONS(2895), - [aux_sym_cipher_token1] = ACTIONS(2897), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2895), - [aux_sym_compression_token1] = ACTIONS(2895), - [aux_sym_connection_attempts_token1] = ACTIONS(2895), - [aux_sym_connect_timeout_token1] = ACTIONS(2895), - [aux_sym_control_master_token1] = ACTIONS(2895), - [aux_sym_control_path_token1] = ACTIONS(2895), - [aux_sym_control_persist_token1] = ACTIONS(2895), - [aux_sym_dynamic_forward_token1] = ACTIONS(2895), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2895), - [aux_sym_escape_char_token1] = ACTIONS(2895), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2895), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2895), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2895), - [aux_sym_forward_agent_token1] = ACTIONS(2895), - [aux_sym_forward_x11_token1] = ACTIONS(2897), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2895), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2895), - [aux_sym_gateway_ports_token1] = ACTIONS(2895), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2895), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2895), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2895), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2895), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2895), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2895), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2895), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2895), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2895), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2895), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2895), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2895), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2895), - [aux_sym_host_key_alias_token1] = ACTIONS(2895), - [aux_sym_hostname_token1] = ACTIONS(2895), - [aux_sym_identities_only_token1] = ACTIONS(2895), - [aux_sym_identity_agent_token1] = ACTIONS(2895), - [aux_sym_identity_file_token1] = ACTIONS(2895), - [aux_sym_ignore_unknown_token1] = ACTIONS(2895), - [aux_sym_include_token1] = ACTIONS(2895), - [aux_sym_ip_qos_token1] = ACTIONS(2895), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2895), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2895), - [aux_sym_kex_algorithms_token1] = ACTIONS(2895), - [aux_sym_known_hosts_command_token1] = ACTIONS(2895), - [aux_sym_local_command_token1] = ACTIONS(2895), - [aux_sym_local_forward_token1] = ACTIONS(2895), - [aux_sym_log_level_token1] = ACTIONS(2895), - [aux_sym_log_verbose_token1] = ACTIONS(2895), - [aux_sym_macs_token1] = ACTIONS(2895), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2895), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2895), - [aux_sym_password_authentication_token1] = ACTIONS(2895), - [aux_sym_permit_local_command_token1] = ACTIONS(2895), - [aux_sym_permit_remote_open_token1] = ACTIONS(2895), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2895), - [aux_sym_port_token1] = ACTIONS(2895), - [aux_sym_preferred_authentications_token1] = ACTIONS(2895), - [aux_sym_protocol_token1] = ACTIONS(2895), - [aux_sym_proxy_command_token1] = ACTIONS(2895), - [aux_sym_proxy_jump_token1] = ACTIONS(2895), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2895), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2895), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2895), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2895), - [aux_sym_rekey_limit_token1] = ACTIONS(2895), - [aux_sym_remote_command_token1] = ACTIONS(2895), - [aux_sym_remote_forward_token1] = ACTIONS(2895), - [aux_sym_request_tty_token1] = ACTIONS(2895), - [aux_sym_required_rsa_size_token1] = ACTIONS(2895), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2895), - [aux_sym_security_key_provider_token1] = ACTIONS(2895), - [aux_sym_send_env_token1] = ACTIONS(2895), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2895), - [aux_sym_server_alive_interval_token1] = ACTIONS(2895), - [aux_sym_session_type_token1] = ACTIONS(2895), - [aux_sym_set_env_token1] = ACTIONS(2895), - [aux_sym_stdin_null_token1] = ACTIONS(2895), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2895), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2895), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2895), - [aux_sym_syslog_facility_token1] = ACTIONS(2895), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2895), - [aux_sym_keep_alive_token1] = ACTIONS(2895), - [aux_sym_tunnel_token1] = ACTIONS(2897), - [aux_sym_tunnel_device_token1] = ACTIONS(2895), - [aux_sym_update_host_keys_token1] = ACTIONS(2895), - [aux_sym_use_keychain_token1] = ACTIONS(2895), - [aux_sym_use_roaming_token1] = ACTIONS(2895), - [aux_sym_user_token1] = ACTIONS(2897), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2895), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2895), - [aux_sym_visual_host_key_token1] = ACTIONS(2895), - [aux_sym_xauth_location_token1] = ACTIONS(2895), + [ts_builtin_sym_end] = ACTIONS(2902), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2904), + [anon_sym_DQUOTE] = ACTIONS(2902), + [aux_sym_match_token1] = ACTIONS(2902), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2902), + [aux_sym_address_family_token1] = ACTIONS(2902), + [aux_sym_batch_mode_token1] = ACTIONS(2902), + [aux_sym_bind_address_token1] = ACTIONS(2902), + [aux_sym_bind_interface_token1] = ACTIONS(2902), + [aux_sym_canonical_domains_token1] = ACTIONS(2902), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2902), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2902), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2902), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2902), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2902), + [aux_sym_certificate_file_token1] = ACTIONS(2902), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2902), + [aux_sym_check_host_ip_token1] = ACTIONS(2902), + [aux_sym_ciphers_token1] = ACTIONS(2902), + [aux_sym_cipher_token1] = ACTIONS(2904), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2902), + [aux_sym_compression_token1] = ACTIONS(2902), + [aux_sym_connection_attempts_token1] = ACTIONS(2902), + [aux_sym_connect_timeout_token1] = ACTIONS(2902), + [aux_sym_control_master_token1] = ACTIONS(2902), + [aux_sym_control_path_token1] = ACTIONS(2902), + [aux_sym_control_persist_token1] = ACTIONS(2902), + [aux_sym_dynamic_forward_token1] = ACTIONS(2902), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2902), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2902), + [aux_sym_escape_char_token1] = ACTIONS(2902), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2902), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2902), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2902), + [aux_sym_forward_agent_token1] = ACTIONS(2902), + [aux_sym_forward_x11_token1] = ACTIONS(2904), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2902), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2902), + [aux_sym_gateway_ports_token1] = ACTIONS(2902), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2902), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2902), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2902), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2902), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2902), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2902), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2902), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2902), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2902), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2902), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2902), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2902), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2902), + [aux_sym_host_key_alias_token1] = ACTIONS(2902), + [aux_sym_hostname_token1] = ACTIONS(2902), + [aux_sym_identities_only_token1] = ACTIONS(2902), + [aux_sym_identity_agent_token1] = ACTIONS(2902), + [aux_sym_identity_file_token1] = ACTIONS(2902), + [aux_sym_ignore_unknown_token1] = ACTIONS(2902), + [aux_sym_include_token1] = ACTIONS(2902), + [aux_sym_ip_qos_token1] = ACTIONS(2902), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2902), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2902), + [aux_sym_kex_algorithms_token1] = ACTIONS(2902), + [aux_sym_known_hosts_command_token1] = ACTIONS(2902), + [aux_sym_local_command_token1] = ACTIONS(2902), + [aux_sym_local_forward_token1] = ACTIONS(2902), + [aux_sym_log_level_token1] = ACTIONS(2902), + [aux_sym_log_verbose_token1] = ACTIONS(2902), + [aux_sym_macs_token1] = ACTIONS(2902), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2902), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2902), + [aux_sym_password_authentication_token1] = ACTIONS(2902), + [aux_sym_permit_local_command_token1] = ACTIONS(2902), + [aux_sym_permit_remote_open_token1] = ACTIONS(2902), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2902), + [aux_sym_port_token1] = ACTIONS(2902), + [aux_sym_preferred_authentications_token1] = ACTIONS(2902), + [aux_sym_protocol_token1] = ACTIONS(2902), + [aux_sym_proxy_command_token1] = ACTIONS(2902), + [aux_sym_proxy_jump_token1] = ACTIONS(2902), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2902), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2902), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2902), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2902), + [aux_sym_rekey_limit_token1] = ACTIONS(2902), + [aux_sym_remote_command_token1] = ACTIONS(2902), + [aux_sym_remote_forward_token1] = ACTIONS(2902), + [aux_sym_request_tty_token1] = ACTIONS(2902), + [aux_sym_required_rsa_size_token1] = ACTIONS(2902), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2902), + [aux_sym_security_key_provider_token1] = ACTIONS(2902), + [aux_sym_send_env_token1] = ACTIONS(2902), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2902), + [aux_sym_server_alive_interval_token1] = ACTIONS(2902), + [aux_sym_session_type_token1] = ACTIONS(2902), + [aux_sym_set_env_token1] = ACTIONS(2902), + [aux_sym_stdin_null_token1] = ACTIONS(2902), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2902), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2902), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2902), + [aux_sym_syslog_facility_token1] = ACTIONS(2902), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2902), + [aux_sym_keep_alive_token1] = ACTIONS(2902), + [aux_sym_tunnel_token1] = ACTIONS(2904), + [aux_sym_tunnel_device_token1] = ACTIONS(2902), + [aux_sym_update_host_keys_token1] = ACTIONS(2902), + [aux_sym_use_keychain_token1] = ACTIONS(2902), + [aux_sym_use_roaming_token1] = ACTIONS(2902), + [aux_sym_user_token1] = ACTIONS(2904), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2902), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2902), + [aux_sym_visual_host_key_token1] = ACTIONS(2902), + [aux_sym_xauth_location_token1] = ACTIONS(2902), }, [428] = { - [ts_builtin_sym_end] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2903), - [aux_sym_match_token1] = ACTIONS(2899), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2899), - [aux_sym_address_family_token1] = ACTIONS(2899), - [aux_sym_batch_mode_token1] = ACTIONS(2899), - [aux_sym_bind_address_token1] = ACTIONS(2899), - [aux_sym_bind_interface_token1] = ACTIONS(2899), - [aux_sym_canonical_domains_token1] = ACTIONS(2899), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2899), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2899), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2899), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2899), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2899), - [aux_sym_certificate_file_token1] = ACTIONS(2899), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2899), - [aux_sym_check_host_ip_token1] = ACTIONS(2899), - [aux_sym_ciphers_token1] = ACTIONS(2899), - [aux_sym_cipher_token1] = ACTIONS(2901), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2899), - [aux_sym_compression_token1] = ACTIONS(2899), - [aux_sym_connection_attempts_token1] = ACTIONS(2899), - [aux_sym_connect_timeout_token1] = ACTIONS(2899), - [aux_sym_control_master_token1] = ACTIONS(2899), - [aux_sym_control_path_token1] = ACTIONS(2899), - [aux_sym_control_persist_token1] = ACTIONS(2899), - [aux_sym_dynamic_forward_token1] = ACTIONS(2899), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2899), - [aux_sym_escape_char_token1] = ACTIONS(2899), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2899), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2899), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2899), - [aux_sym_forward_agent_token1] = ACTIONS(2899), - [aux_sym_forward_x11_token1] = ACTIONS(2901), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2899), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2899), - [aux_sym_gateway_ports_token1] = ACTIONS(2899), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2899), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2899), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2899), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2899), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2899), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2899), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2899), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2899), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2899), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2899), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2899), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2899), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2899), - [aux_sym_host_key_alias_token1] = ACTIONS(2899), - [aux_sym_hostname_token1] = ACTIONS(2899), - [aux_sym_identities_only_token1] = ACTIONS(2899), - [aux_sym_identity_agent_token1] = ACTIONS(2899), - [aux_sym_identity_file_token1] = ACTIONS(2899), - [aux_sym_ignore_unknown_token1] = ACTIONS(2899), - [aux_sym_include_token1] = ACTIONS(2899), - [aux_sym_ip_qos_token1] = ACTIONS(2899), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2899), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2899), - [aux_sym_kex_algorithms_token1] = ACTIONS(2899), - [aux_sym_known_hosts_command_token1] = ACTIONS(2899), - [aux_sym_local_command_token1] = ACTIONS(2899), - [aux_sym_local_forward_token1] = ACTIONS(2899), - [aux_sym_log_level_token1] = ACTIONS(2899), - [aux_sym_log_verbose_token1] = ACTIONS(2899), - [aux_sym_macs_token1] = ACTIONS(2899), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2899), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2899), - [aux_sym_password_authentication_token1] = ACTIONS(2899), - [aux_sym_permit_local_command_token1] = ACTIONS(2899), - [aux_sym_permit_remote_open_token1] = ACTIONS(2899), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2899), - [aux_sym_port_token1] = ACTIONS(2899), - [aux_sym_preferred_authentications_token1] = ACTIONS(2899), - [aux_sym_protocol_token1] = ACTIONS(2899), - [aux_sym_proxy_command_token1] = ACTIONS(2899), - [aux_sym_proxy_jump_token1] = ACTIONS(2899), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2899), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2899), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2899), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2899), - [aux_sym_rekey_limit_token1] = ACTIONS(2899), - [aux_sym_remote_command_token1] = ACTIONS(2899), - [aux_sym_remote_forward_token1] = ACTIONS(2899), - [aux_sym_request_tty_token1] = ACTIONS(2899), - [aux_sym_required_rsa_size_token1] = ACTIONS(2899), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2899), - [aux_sym_security_key_provider_token1] = ACTIONS(2899), - [aux_sym_send_env_token1] = ACTIONS(2899), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2899), - [aux_sym_server_alive_interval_token1] = ACTIONS(2899), - [aux_sym_session_type_token1] = ACTIONS(2899), - [aux_sym_set_env_token1] = ACTIONS(2899), - [aux_sym_stdin_null_token1] = ACTIONS(2899), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2899), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2899), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2899), - [aux_sym_syslog_facility_token1] = ACTIONS(2899), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2899), - [aux_sym_keep_alive_token1] = ACTIONS(2899), - [aux_sym_tunnel_token1] = ACTIONS(2901), - [aux_sym_tunnel_device_token1] = ACTIONS(2899), - [aux_sym_update_host_keys_token1] = ACTIONS(2899), - [aux_sym_use_keychain_token1] = ACTIONS(2899), - [aux_sym_use_roaming_token1] = ACTIONS(2899), - [aux_sym_user_token1] = ACTIONS(2901), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2899), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2899), - [aux_sym_visual_host_key_token1] = ACTIONS(2899), - [aux_sym_xauth_location_token1] = ACTIONS(2899), + [ts_builtin_sym_end] = ACTIONS(2906), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2908), + [anon_sym_DQUOTE] = ACTIONS(2910), + [aux_sym_match_token1] = ACTIONS(2906), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2906), + [aux_sym_address_family_token1] = ACTIONS(2906), + [aux_sym_batch_mode_token1] = ACTIONS(2906), + [aux_sym_bind_address_token1] = ACTIONS(2906), + [aux_sym_bind_interface_token1] = ACTIONS(2906), + [aux_sym_canonical_domains_token1] = ACTIONS(2906), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2906), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2906), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2906), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2906), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2906), + [aux_sym_certificate_file_token1] = ACTIONS(2906), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2906), + [aux_sym_check_host_ip_token1] = ACTIONS(2906), + [aux_sym_ciphers_token1] = ACTIONS(2906), + [aux_sym_cipher_token1] = ACTIONS(2908), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2906), + [aux_sym_compression_token1] = ACTIONS(2906), + [aux_sym_connection_attempts_token1] = ACTIONS(2906), + [aux_sym_connect_timeout_token1] = ACTIONS(2906), + [aux_sym_control_master_token1] = ACTIONS(2906), + [aux_sym_control_path_token1] = ACTIONS(2906), + [aux_sym_control_persist_token1] = ACTIONS(2906), + [aux_sym_dynamic_forward_token1] = ACTIONS(2906), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2906), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2906), + [aux_sym_escape_char_token1] = ACTIONS(2906), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2906), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2906), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2906), + [aux_sym_forward_agent_token1] = ACTIONS(2906), + [aux_sym_forward_x11_token1] = ACTIONS(2908), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2906), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2906), + [aux_sym_gateway_ports_token1] = ACTIONS(2906), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2906), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2906), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2906), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2906), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2906), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2906), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2906), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2906), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2906), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2906), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2906), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2906), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2906), + [aux_sym_host_key_alias_token1] = ACTIONS(2906), + [aux_sym_hostname_token1] = ACTIONS(2906), + [aux_sym_identities_only_token1] = ACTIONS(2906), + [aux_sym_identity_agent_token1] = ACTIONS(2906), + [aux_sym_identity_file_token1] = ACTIONS(2906), + [aux_sym_ignore_unknown_token1] = ACTIONS(2906), + [aux_sym_include_token1] = ACTIONS(2906), + [aux_sym_ip_qos_token1] = ACTIONS(2906), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2906), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2906), + [aux_sym_kex_algorithms_token1] = ACTIONS(2906), + [aux_sym_known_hosts_command_token1] = ACTIONS(2906), + [aux_sym_local_command_token1] = ACTIONS(2906), + [aux_sym_local_forward_token1] = ACTIONS(2906), + [aux_sym_log_level_token1] = ACTIONS(2906), + [aux_sym_log_verbose_token1] = ACTIONS(2906), + [aux_sym_macs_token1] = ACTIONS(2906), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2906), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2906), + [aux_sym_password_authentication_token1] = ACTIONS(2906), + [aux_sym_permit_local_command_token1] = ACTIONS(2906), + [aux_sym_permit_remote_open_token1] = ACTIONS(2906), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2906), + [aux_sym_port_token1] = ACTIONS(2906), + [aux_sym_preferred_authentications_token1] = ACTIONS(2906), + [aux_sym_protocol_token1] = ACTIONS(2906), + [aux_sym_proxy_command_token1] = ACTIONS(2906), + [aux_sym_proxy_jump_token1] = ACTIONS(2906), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2906), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2906), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2906), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2906), + [aux_sym_rekey_limit_token1] = ACTIONS(2906), + [aux_sym_remote_command_token1] = ACTIONS(2906), + [aux_sym_remote_forward_token1] = ACTIONS(2906), + [aux_sym_request_tty_token1] = ACTIONS(2906), + [aux_sym_required_rsa_size_token1] = ACTIONS(2906), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2906), + [aux_sym_security_key_provider_token1] = ACTIONS(2906), + [aux_sym_send_env_token1] = ACTIONS(2906), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2906), + [aux_sym_server_alive_interval_token1] = ACTIONS(2906), + [aux_sym_session_type_token1] = ACTIONS(2906), + [aux_sym_set_env_token1] = ACTIONS(2906), + [aux_sym_stdin_null_token1] = ACTIONS(2906), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2906), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2906), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2906), + [aux_sym_syslog_facility_token1] = ACTIONS(2906), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2906), + [aux_sym_keep_alive_token1] = ACTIONS(2906), + [aux_sym_tunnel_token1] = ACTIONS(2908), + [aux_sym_tunnel_device_token1] = ACTIONS(2906), + [aux_sym_update_host_keys_token1] = ACTIONS(2906), + [aux_sym_use_keychain_token1] = ACTIONS(2906), + [aux_sym_use_roaming_token1] = ACTIONS(2906), + [aux_sym_user_token1] = ACTIONS(2908), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2906), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2906), + [aux_sym_visual_host_key_token1] = ACTIONS(2906), + [aux_sym_xauth_location_token1] = ACTIONS(2906), }, [429] = { - [ts_builtin_sym_end] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2907), - [anon_sym_DQUOTE] = ACTIONS(2905), - [aux_sym_match_token1] = ACTIONS(2905), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2905), - [aux_sym_address_family_token1] = ACTIONS(2905), - [aux_sym_batch_mode_token1] = ACTIONS(2905), - [aux_sym_bind_address_token1] = ACTIONS(2905), - [aux_sym_bind_interface_token1] = ACTIONS(2905), - [aux_sym_canonical_domains_token1] = ACTIONS(2905), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2905), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2905), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2905), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2905), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2905), - [aux_sym_certificate_file_token1] = ACTIONS(2905), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2905), - [aux_sym_check_host_ip_token1] = ACTIONS(2905), - [aux_sym_ciphers_token1] = ACTIONS(2905), - [aux_sym_cipher_token1] = ACTIONS(2907), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2905), - [aux_sym_compression_token1] = ACTIONS(2905), - [aux_sym_connection_attempts_token1] = ACTIONS(2905), - [aux_sym_connect_timeout_token1] = ACTIONS(2905), - [aux_sym_control_master_token1] = ACTIONS(2905), - [aux_sym_control_path_token1] = ACTIONS(2905), - [aux_sym_control_persist_token1] = ACTIONS(2905), - [aux_sym_dynamic_forward_token1] = ACTIONS(2905), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2905), - [aux_sym_escape_char_token1] = ACTIONS(2905), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2905), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2905), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2905), - [aux_sym_forward_agent_token1] = ACTIONS(2905), - [aux_sym_forward_x11_token1] = ACTIONS(2907), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2905), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2905), - [aux_sym_gateway_ports_token1] = ACTIONS(2905), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2905), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2905), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2905), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2905), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2905), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2905), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2905), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2905), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2905), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2905), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2905), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2905), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2905), - [aux_sym_host_key_alias_token1] = ACTIONS(2905), - [aux_sym_hostname_token1] = ACTIONS(2905), - [aux_sym_identities_only_token1] = ACTIONS(2905), - [aux_sym_identity_agent_token1] = ACTIONS(2905), - [aux_sym_identity_file_token1] = ACTIONS(2905), - [aux_sym_ignore_unknown_token1] = ACTIONS(2905), - [aux_sym_include_token1] = ACTIONS(2905), - [aux_sym_ip_qos_token1] = ACTIONS(2905), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2905), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2905), - [aux_sym_kex_algorithms_token1] = ACTIONS(2905), - [aux_sym_known_hosts_command_token1] = ACTIONS(2905), - [aux_sym_local_command_token1] = ACTIONS(2905), - [aux_sym_local_forward_token1] = ACTIONS(2905), - [aux_sym_log_level_token1] = ACTIONS(2905), - [aux_sym_log_verbose_token1] = ACTIONS(2905), - [aux_sym_macs_token1] = ACTIONS(2905), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2905), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2905), - [aux_sym_password_authentication_token1] = ACTIONS(2905), - [aux_sym_permit_local_command_token1] = ACTIONS(2905), - [aux_sym_permit_remote_open_token1] = ACTIONS(2905), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2905), - [aux_sym_port_token1] = ACTIONS(2905), - [aux_sym_preferred_authentications_token1] = ACTIONS(2905), - [aux_sym_protocol_token1] = ACTIONS(2905), - [aux_sym_proxy_command_token1] = ACTIONS(2905), - [aux_sym_proxy_jump_token1] = ACTIONS(2905), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2905), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2905), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2905), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2905), - [aux_sym_rekey_limit_token1] = ACTIONS(2905), - [aux_sym_remote_command_token1] = ACTIONS(2905), - [aux_sym_remote_forward_token1] = ACTIONS(2905), - [aux_sym_request_tty_token1] = ACTIONS(2905), - [aux_sym_required_rsa_size_token1] = ACTIONS(2905), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2905), - [aux_sym_security_key_provider_token1] = ACTIONS(2905), - [aux_sym_send_env_token1] = ACTIONS(2905), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2905), - [aux_sym_server_alive_interval_token1] = ACTIONS(2905), - [aux_sym_session_type_token1] = ACTIONS(2905), - [aux_sym_set_env_token1] = ACTIONS(2905), - [aux_sym_stdin_null_token1] = ACTIONS(2905), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2905), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2905), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2905), - [aux_sym_syslog_facility_token1] = ACTIONS(2905), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2905), - [aux_sym_keep_alive_token1] = ACTIONS(2905), - [aux_sym_tunnel_token1] = ACTIONS(2907), - [aux_sym_tunnel_device_token1] = ACTIONS(2905), - [aux_sym_update_host_keys_token1] = ACTIONS(2905), - [aux_sym_use_keychain_token1] = ACTIONS(2905), - [aux_sym_use_roaming_token1] = ACTIONS(2905), - [aux_sym_user_token1] = ACTIONS(2907), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2905), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2905), - [aux_sym_visual_host_key_token1] = ACTIONS(2905), - [aux_sym_xauth_location_token1] = ACTIONS(2905), + [ts_builtin_sym_end] = ACTIONS(2912), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(2912), + [aux_sym_match_token1] = ACTIONS(2912), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2912), + [aux_sym_address_family_token1] = ACTIONS(2912), + [aux_sym_batch_mode_token1] = ACTIONS(2912), + [aux_sym_bind_address_token1] = ACTIONS(2912), + [aux_sym_bind_interface_token1] = ACTIONS(2912), + [aux_sym_canonical_domains_token1] = ACTIONS(2912), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2912), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2912), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2912), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2912), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2912), + [aux_sym_certificate_file_token1] = ACTIONS(2912), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2912), + [aux_sym_check_host_ip_token1] = ACTIONS(2912), + [aux_sym_ciphers_token1] = ACTIONS(2912), + [aux_sym_cipher_token1] = ACTIONS(2914), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2912), + [aux_sym_compression_token1] = ACTIONS(2912), + [aux_sym_connection_attempts_token1] = ACTIONS(2912), + [aux_sym_connect_timeout_token1] = ACTIONS(2912), + [aux_sym_control_master_token1] = ACTIONS(2912), + [aux_sym_control_path_token1] = ACTIONS(2912), + [aux_sym_control_persist_token1] = ACTIONS(2912), + [aux_sym_dynamic_forward_token1] = ACTIONS(2912), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2912), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2912), + [aux_sym_escape_char_token1] = ACTIONS(2912), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2912), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2912), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2912), + [aux_sym_forward_agent_token1] = ACTIONS(2912), + [aux_sym_forward_x11_token1] = ACTIONS(2914), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2912), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2912), + [aux_sym_gateway_ports_token1] = ACTIONS(2912), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2912), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2912), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2912), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2912), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2912), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2912), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2912), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2912), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2912), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2912), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2912), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2912), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2912), + [aux_sym_host_key_alias_token1] = ACTIONS(2912), + [aux_sym_hostname_token1] = ACTIONS(2912), + [aux_sym_identities_only_token1] = ACTIONS(2912), + [aux_sym_identity_agent_token1] = ACTIONS(2912), + [aux_sym_identity_file_token1] = ACTIONS(2912), + [aux_sym_ignore_unknown_token1] = ACTIONS(2912), + [aux_sym_include_token1] = ACTIONS(2912), + [aux_sym_ip_qos_token1] = ACTIONS(2912), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2912), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2912), + [aux_sym_kex_algorithms_token1] = ACTIONS(2912), + [aux_sym_known_hosts_command_token1] = ACTIONS(2912), + [aux_sym_local_command_token1] = ACTIONS(2912), + [aux_sym_local_forward_token1] = ACTIONS(2912), + [aux_sym_log_level_token1] = ACTIONS(2912), + [aux_sym_log_verbose_token1] = ACTIONS(2912), + [aux_sym_macs_token1] = ACTIONS(2912), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2912), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2912), + [aux_sym_password_authentication_token1] = ACTIONS(2912), + [aux_sym_permit_local_command_token1] = ACTIONS(2912), + [aux_sym_permit_remote_open_token1] = ACTIONS(2912), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2912), + [aux_sym_port_token1] = ACTIONS(2912), + [aux_sym_preferred_authentications_token1] = ACTIONS(2912), + [aux_sym_protocol_token1] = ACTIONS(2912), + [aux_sym_proxy_command_token1] = ACTIONS(2912), + [aux_sym_proxy_jump_token1] = ACTIONS(2912), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2912), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2912), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2912), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2912), + [aux_sym_rekey_limit_token1] = ACTIONS(2912), + [aux_sym_remote_command_token1] = ACTIONS(2912), + [aux_sym_remote_forward_token1] = ACTIONS(2912), + [aux_sym_request_tty_token1] = ACTIONS(2912), + [aux_sym_required_rsa_size_token1] = ACTIONS(2912), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2912), + [aux_sym_security_key_provider_token1] = ACTIONS(2912), + [aux_sym_send_env_token1] = ACTIONS(2912), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2912), + [aux_sym_server_alive_interval_token1] = ACTIONS(2912), + [aux_sym_session_type_token1] = ACTIONS(2912), + [aux_sym_set_env_token1] = ACTIONS(2912), + [aux_sym_stdin_null_token1] = ACTIONS(2912), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2912), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2912), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2912), + [aux_sym_syslog_facility_token1] = ACTIONS(2912), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2912), + [aux_sym_keep_alive_token1] = ACTIONS(2912), + [aux_sym_tunnel_token1] = ACTIONS(2914), + [aux_sym_tunnel_device_token1] = ACTIONS(2912), + [aux_sym_update_host_keys_token1] = ACTIONS(2912), + [aux_sym_use_keychain_token1] = ACTIONS(2912), + [aux_sym_use_roaming_token1] = ACTIONS(2912), + [aux_sym_user_token1] = ACTIONS(2914), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2912), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2912), + [aux_sym_visual_host_key_token1] = ACTIONS(2912), + [aux_sym_xauth_location_token1] = ACTIONS(2912), }, [430] = { - [ts_builtin_sym_end] = ACTIONS(2909), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2911), - [anon_sym_DQUOTE] = ACTIONS(2913), - [aux_sym_match_token1] = ACTIONS(2909), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2909), - [aux_sym_address_family_token1] = ACTIONS(2909), - [aux_sym_batch_mode_token1] = ACTIONS(2909), - [aux_sym_bind_address_token1] = ACTIONS(2909), - [aux_sym_bind_interface_token1] = ACTIONS(2909), - [aux_sym_canonical_domains_token1] = ACTIONS(2909), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2909), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2909), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2909), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2909), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2909), - [aux_sym_certificate_file_token1] = ACTIONS(2909), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2909), - [aux_sym_check_host_ip_token1] = ACTIONS(2909), - [aux_sym_ciphers_token1] = ACTIONS(2909), - [aux_sym_cipher_token1] = ACTIONS(2911), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2909), - [aux_sym_compression_token1] = ACTIONS(2909), - [aux_sym_connection_attempts_token1] = ACTIONS(2909), - [aux_sym_connect_timeout_token1] = ACTIONS(2909), - [aux_sym_control_master_token1] = ACTIONS(2909), - [aux_sym_control_path_token1] = ACTIONS(2909), - [aux_sym_control_persist_token1] = ACTIONS(2909), - [aux_sym_dynamic_forward_token1] = ACTIONS(2909), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2909), - [aux_sym_escape_char_token1] = ACTIONS(2909), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2909), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2909), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2909), - [aux_sym_forward_agent_token1] = ACTIONS(2909), - [aux_sym_forward_x11_token1] = ACTIONS(2911), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2909), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2909), - [aux_sym_gateway_ports_token1] = ACTIONS(2909), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2909), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2909), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2909), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2909), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2909), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2909), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2909), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2909), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2909), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2909), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2909), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2909), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2909), - [aux_sym_host_key_alias_token1] = ACTIONS(2909), - [aux_sym_hostname_token1] = ACTIONS(2909), - [aux_sym_identities_only_token1] = ACTIONS(2909), - [aux_sym_identity_agent_token1] = ACTIONS(2909), - [aux_sym_identity_file_token1] = ACTIONS(2909), - [aux_sym_ignore_unknown_token1] = ACTIONS(2909), - [aux_sym_include_token1] = ACTIONS(2909), - [aux_sym_ip_qos_token1] = ACTIONS(2909), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2909), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2909), - [aux_sym_kex_algorithms_token1] = ACTIONS(2909), - [aux_sym_known_hosts_command_token1] = ACTIONS(2909), - [aux_sym_local_command_token1] = ACTIONS(2909), - [aux_sym_local_forward_token1] = ACTIONS(2909), - [aux_sym_log_level_token1] = ACTIONS(2909), - [aux_sym_log_verbose_token1] = ACTIONS(2909), - [aux_sym_macs_token1] = ACTIONS(2909), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2909), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2909), - [aux_sym_password_authentication_token1] = ACTIONS(2909), - [aux_sym_permit_local_command_token1] = ACTIONS(2909), - [aux_sym_permit_remote_open_token1] = ACTIONS(2909), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2909), - [aux_sym_port_token1] = ACTIONS(2909), - [aux_sym_preferred_authentications_token1] = ACTIONS(2909), - [aux_sym_protocol_token1] = ACTIONS(2909), - [aux_sym_proxy_command_token1] = ACTIONS(2909), - [aux_sym_proxy_jump_token1] = ACTIONS(2909), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2909), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2909), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2909), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2909), - [aux_sym_rekey_limit_token1] = ACTIONS(2909), - [aux_sym_remote_command_token1] = ACTIONS(2909), - [aux_sym_remote_forward_token1] = ACTIONS(2909), - [aux_sym_request_tty_token1] = ACTIONS(2909), - [aux_sym_required_rsa_size_token1] = ACTIONS(2909), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2909), - [aux_sym_security_key_provider_token1] = ACTIONS(2909), - [aux_sym_send_env_token1] = ACTIONS(2909), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2909), - [aux_sym_server_alive_interval_token1] = ACTIONS(2909), - [aux_sym_session_type_token1] = ACTIONS(2909), - [aux_sym_set_env_token1] = ACTIONS(2909), - [aux_sym_stdin_null_token1] = ACTIONS(2909), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2909), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2909), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2909), - [aux_sym_syslog_facility_token1] = ACTIONS(2909), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2909), - [aux_sym_keep_alive_token1] = ACTIONS(2909), - [aux_sym_tunnel_token1] = ACTIONS(2911), - [aux_sym_tunnel_device_token1] = ACTIONS(2909), - [aux_sym_update_host_keys_token1] = ACTIONS(2909), - [aux_sym_use_keychain_token1] = ACTIONS(2909), - [aux_sym_use_roaming_token1] = ACTIONS(2909), - [aux_sym_user_token1] = ACTIONS(2911), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2909), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2909), - [aux_sym_visual_host_key_token1] = ACTIONS(2909), - [aux_sym_xauth_location_token1] = ACTIONS(2909), + [ts_builtin_sym_end] = ACTIONS(2916), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2918), + [anon_sym_DQUOTE] = ACTIONS(2920), + [aux_sym_match_token1] = ACTIONS(2916), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2916), + [aux_sym_address_family_token1] = ACTIONS(2916), + [aux_sym_batch_mode_token1] = ACTIONS(2916), + [aux_sym_bind_address_token1] = ACTIONS(2916), + [aux_sym_bind_interface_token1] = ACTIONS(2916), + [aux_sym_canonical_domains_token1] = ACTIONS(2916), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2916), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2916), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2916), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2916), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2916), + [aux_sym_certificate_file_token1] = ACTIONS(2916), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2916), + [aux_sym_check_host_ip_token1] = ACTIONS(2916), + [aux_sym_ciphers_token1] = ACTIONS(2916), + [aux_sym_cipher_token1] = ACTIONS(2918), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2916), + [aux_sym_compression_token1] = ACTIONS(2916), + [aux_sym_connection_attempts_token1] = ACTIONS(2916), + [aux_sym_connect_timeout_token1] = ACTIONS(2916), + [aux_sym_control_master_token1] = ACTIONS(2916), + [aux_sym_control_path_token1] = ACTIONS(2916), + [aux_sym_control_persist_token1] = ACTIONS(2916), + [aux_sym_dynamic_forward_token1] = ACTIONS(2916), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2916), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2916), + [aux_sym_escape_char_token1] = ACTIONS(2916), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2916), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2916), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2916), + [aux_sym_forward_agent_token1] = ACTIONS(2916), + [aux_sym_forward_x11_token1] = ACTIONS(2918), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2916), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2916), + [aux_sym_gateway_ports_token1] = ACTIONS(2916), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2916), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2916), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2916), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2916), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2916), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2916), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2916), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2916), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2916), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2916), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2916), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2916), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2916), + [aux_sym_host_key_alias_token1] = ACTIONS(2916), + [aux_sym_hostname_token1] = ACTIONS(2916), + [aux_sym_identities_only_token1] = ACTIONS(2916), + [aux_sym_identity_agent_token1] = ACTIONS(2916), + [aux_sym_identity_file_token1] = ACTIONS(2916), + [aux_sym_ignore_unknown_token1] = ACTIONS(2916), + [aux_sym_include_token1] = ACTIONS(2916), + [aux_sym_ip_qos_token1] = ACTIONS(2916), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2916), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2916), + [aux_sym_kex_algorithms_token1] = ACTIONS(2916), + [aux_sym_known_hosts_command_token1] = ACTIONS(2916), + [aux_sym_local_command_token1] = ACTIONS(2916), + [aux_sym_local_forward_token1] = ACTIONS(2916), + [aux_sym_log_level_token1] = ACTIONS(2916), + [aux_sym_log_verbose_token1] = ACTIONS(2916), + [aux_sym_macs_token1] = ACTIONS(2916), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2916), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2916), + [aux_sym_password_authentication_token1] = ACTIONS(2916), + [aux_sym_permit_local_command_token1] = ACTIONS(2916), + [aux_sym_permit_remote_open_token1] = ACTIONS(2916), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2916), + [aux_sym_port_token1] = ACTIONS(2916), + [aux_sym_preferred_authentications_token1] = ACTIONS(2916), + [aux_sym_protocol_token1] = ACTIONS(2916), + [aux_sym_proxy_command_token1] = ACTIONS(2916), + [aux_sym_proxy_jump_token1] = ACTIONS(2916), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2916), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2916), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2916), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2916), + [aux_sym_rekey_limit_token1] = ACTIONS(2916), + [aux_sym_remote_command_token1] = ACTIONS(2916), + [aux_sym_remote_forward_token1] = ACTIONS(2916), + [aux_sym_request_tty_token1] = ACTIONS(2916), + [aux_sym_required_rsa_size_token1] = ACTIONS(2916), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2916), + [aux_sym_security_key_provider_token1] = ACTIONS(2916), + [aux_sym_send_env_token1] = ACTIONS(2916), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2916), + [aux_sym_server_alive_interval_token1] = ACTIONS(2916), + [aux_sym_session_type_token1] = ACTIONS(2916), + [aux_sym_set_env_token1] = ACTIONS(2916), + [aux_sym_stdin_null_token1] = ACTIONS(2916), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2916), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2916), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2916), + [aux_sym_syslog_facility_token1] = ACTIONS(2916), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2916), + [aux_sym_keep_alive_token1] = ACTIONS(2916), + [aux_sym_tunnel_token1] = ACTIONS(2918), + [aux_sym_tunnel_device_token1] = ACTIONS(2916), + [aux_sym_update_host_keys_token1] = ACTIONS(2916), + [aux_sym_use_keychain_token1] = ACTIONS(2916), + [aux_sym_use_roaming_token1] = ACTIONS(2916), + [aux_sym_user_token1] = ACTIONS(2918), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2916), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2916), + [aux_sym_visual_host_key_token1] = ACTIONS(2916), + [aux_sym_xauth_location_token1] = ACTIONS(2916), }, [431] = { - [ts_builtin_sym_end] = ACTIONS(2915), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2919), - [aux_sym_match_token1] = ACTIONS(2915), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2915), - [aux_sym_address_family_token1] = ACTIONS(2915), - [aux_sym_batch_mode_token1] = ACTIONS(2915), - [aux_sym_bind_address_token1] = ACTIONS(2915), - [aux_sym_bind_interface_token1] = ACTIONS(2915), - [aux_sym_canonical_domains_token1] = ACTIONS(2915), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2915), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2915), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2915), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2915), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2915), - [aux_sym_certificate_file_token1] = ACTIONS(2915), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2915), - [aux_sym_check_host_ip_token1] = ACTIONS(2915), - [aux_sym_ciphers_token1] = ACTIONS(2915), - [aux_sym_cipher_token1] = ACTIONS(2917), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2915), - [aux_sym_compression_token1] = ACTIONS(2915), - [aux_sym_connection_attempts_token1] = ACTIONS(2915), - [aux_sym_connect_timeout_token1] = ACTIONS(2915), - [aux_sym_control_master_token1] = ACTIONS(2915), - [aux_sym_control_path_token1] = ACTIONS(2915), - [aux_sym_control_persist_token1] = ACTIONS(2915), - [aux_sym_dynamic_forward_token1] = ACTIONS(2915), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2915), - [aux_sym_escape_char_token1] = ACTIONS(2915), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2915), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2915), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2915), - [aux_sym_forward_agent_token1] = ACTIONS(2915), - [aux_sym_forward_x11_token1] = ACTIONS(2917), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2915), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2915), - [aux_sym_gateway_ports_token1] = ACTIONS(2915), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2915), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2915), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2915), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2915), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2915), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2915), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2915), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2915), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2915), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2915), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2915), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2915), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2915), - [aux_sym_host_key_alias_token1] = ACTIONS(2915), - [aux_sym_hostname_token1] = ACTIONS(2915), - [aux_sym_identities_only_token1] = ACTIONS(2915), - [aux_sym_identity_agent_token1] = ACTIONS(2915), - [aux_sym_identity_file_token1] = ACTIONS(2915), - [aux_sym_ignore_unknown_token1] = ACTIONS(2915), - [aux_sym_include_token1] = ACTIONS(2915), - [aux_sym_ip_qos_token1] = ACTIONS(2915), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2915), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2915), - [aux_sym_kex_algorithms_token1] = ACTIONS(2915), - [aux_sym_known_hosts_command_token1] = ACTIONS(2915), - [aux_sym_local_command_token1] = ACTIONS(2915), - [aux_sym_local_forward_token1] = ACTIONS(2915), - [aux_sym_log_level_token1] = ACTIONS(2915), - [aux_sym_log_verbose_token1] = ACTIONS(2915), - [aux_sym_macs_token1] = ACTIONS(2915), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2915), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2915), - [aux_sym_password_authentication_token1] = ACTIONS(2915), - [aux_sym_permit_local_command_token1] = ACTIONS(2915), - [aux_sym_permit_remote_open_token1] = ACTIONS(2915), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2915), - [aux_sym_port_token1] = ACTIONS(2915), - [aux_sym_preferred_authentications_token1] = ACTIONS(2915), - [aux_sym_protocol_token1] = ACTIONS(2915), - [aux_sym_proxy_command_token1] = ACTIONS(2915), - [aux_sym_proxy_jump_token1] = ACTIONS(2915), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2915), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2915), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2915), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2915), - [aux_sym_rekey_limit_token1] = ACTIONS(2915), - [aux_sym_remote_command_token1] = ACTIONS(2915), - [aux_sym_remote_forward_token1] = ACTIONS(2915), - [aux_sym_request_tty_token1] = ACTIONS(2915), - [aux_sym_required_rsa_size_token1] = ACTIONS(2915), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2915), - [aux_sym_security_key_provider_token1] = ACTIONS(2915), - [aux_sym_send_env_token1] = ACTIONS(2915), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2915), - [aux_sym_server_alive_interval_token1] = ACTIONS(2915), - [aux_sym_session_type_token1] = ACTIONS(2915), - [aux_sym_set_env_token1] = ACTIONS(2915), - [aux_sym_stdin_null_token1] = ACTIONS(2915), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2915), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2915), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2915), - [aux_sym_syslog_facility_token1] = ACTIONS(2915), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2915), - [aux_sym_keep_alive_token1] = ACTIONS(2915), - [aux_sym_tunnel_token1] = ACTIONS(2917), - [aux_sym_tunnel_device_token1] = ACTIONS(2915), - [aux_sym_update_host_keys_token1] = ACTIONS(2915), - [aux_sym_use_keychain_token1] = ACTIONS(2915), - [aux_sym_use_roaming_token1] = ACTIONS(2915), - [aux_sym_user_token1] = ACTIONS(2917), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2915), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2915), - [aux_sym_visual_host_key_token1] = ACTIONS(2915), - [aux_sym_xauth_location_token1] = ACTIONS(2915), + [ts_builtin_sym_end] = ACTIONS(2922), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2924), + [anon_sym_DQUOTE] = ACTIONS(2922), + [aux_sym_match_token1] = ACTIONS(2922), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2922), + [aux_sym_address_family_token1] = ACTIONS(2922), + [aux_sym_batch_mode_token1] = ACTIONS(2922), + [aux_sym_bind_address_token1] = ACTIONS(2922), + [aux_sym_bind_interface_token1] = ACTIONS(2922), + [aux_sym_canonical_domains_token1] = ACTIONS(2922), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2922), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2922), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2922), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2922), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2922), + [aux_sym_certificate_file_token1] = ACTIONS(2922), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2922), + [aux_sym_check_host_ip_token1] = ACTIONS(2922), + [aux_sym_ciphers_token1] = ACTIONS(2922), + [aux_sym_cipher_token1] = ACTIONS(2924), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2922), + [aux_sym_compression_token1] = ACTIONS(2922), + [aux_sym_connection_attempts_token1] = ACTIONS(2922), + [aux_sym_connect_timeout_token1] = ACTIONS(2922), + [aux_sym_control_master_token1] = ACTIONS(2922), + [aux_sym_control_path_token1] = ACTIONS(2922), + [aux_sym_control_persist_token1] = ACTIONS(2922), + [aux_sym_dynamic_forward_token1] = ACTIONS(2922), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2922), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2922), + [aux_sym_escape_char_token1] = ACTIONS(2922), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2922), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2922), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2922), + [aux_sym_forward_agent_token1] = ACTIONS(2922), + [aux_sym_forward_x11_token1] = ACTIONS(2924), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2922), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2922), + [aux_sym_gateway_ports_token1] = ACTIONS(2922), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2922), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2922), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2922), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2922), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2922), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2922), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2922), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2922), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2922), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2922), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2922), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2922), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2922), + [aux_sym_host_key_alias_token1] = ACTIONS(2922), + [aux_sym_hostname_token1] = ACTIONS(2922), + [aux_sym_identities_only_token1] = ACTIONS(2922), + [aux_sym_identity_agent_token1] = ACTIONS(2922), + [aux_sym_identity_file_token1] = ACTIONS(2922), + [aux_sym_ignore_unknown_token1] = ACTIONS(2922), + [aux_sym_include_token1] = ACTIONS(2922), + [aux_sym_ip_qos_token1] = ACTIONS(2922), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2922), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2922), + [aux_sym_kex_algorithms_token1] = ACTIONS(2922), + [aux_sym_known_hosts_command_token1] = ACTIONS(2922), + [aux_sym_local_command_token1] = ACTIONS(2922), + [aux_sym_local_forward_token1] = ACTIONS(2922), + [aux_sym_log_level_token1] = ACTIONS(2922), + [aux_sym_log_verbose_token1] = ACTIONS(2922), + [aux_sym_macs_token1] = ACTIONS(2922), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2922), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2922), + [aux_sym_password_authentication_token1] = ACTIONS(2922), + [aux_sym_permit_local_command_token1] = ACTIONS(2922), + [aux_sym_permit_remote_open_token1] = ACTIONS(2922), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2922), + [aux_sym_port_token1] = ACTIONS(2922), + [aux_sym_preferred_authentications_token1] = ACTIONS(2922), + [aux_sym_protocol_token1] = ACTIONS(2922), + [aux_sym_proxy_command_token1] = ACTIONS(2922), + [aux_sym_proxy_jump_token1] = ACTIONS(2922), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2922), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2922), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2922), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2922), + [aux_sym_rekey_limit_token1] = ACTIONS(2922), + [aux_sym_remote_command_token1] = ACTIONS(2922), + [aux_sym_remote_forward_token1] = ACTIONS(2922), + [aux_sym_request_tty_token1] = ACTIONS(2922), + [aux_sym_required_rsa_size_token1] = ACTIONS(2922), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2922), + [aux_sym_security_key_provider_token1] = ACTIONS(2922), + [aux_sym_send_env_token1] = ACTIONS(2922), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2922), + [aux_sym_server_alive_interval_token1] = ACTIONS(2922), + [aux_sym_session_type_token1] = ACTIONS(2922), + [aux_sym_set_env_token1] = ACTIONS(2922), + [aux_sym_stdin_null_token1] = ACTIONS(2922), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2922), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2922), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2922), + [aux_sym_syslog_facility_token1] = ACTIONS(2922), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2922), + [aux_sym_keep_alive_token1] = ACTIONS(2922), + [aux_sym_tunnel_token1] = ACTIONS(2924), + [aux_sym_tunnel_device_token1] = ACTIONS(2922), + [aux_sym_update_host_keys_token1] = ACTIONS(2922), + [aux_sym_use_keychain_token1] = ACTIONS(2922), + [aux_sym_use_roaming_token1] = ACTIONS(2922), + [aux_sym_user_token1] = ACTIONS(2924), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2922), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2922), + [aux_sym_visual_host_key_token1] = ACTIONS(2922), + [aux_sym_xauth_location_token1] = ACTIONS(2922), }, [432] = { - [ts_builtin_sym_end] = ACTIONS(2921), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2923), - [anon_sym_DQUOTE] = ACTIONS(2921), - [aux_sym_match_token1] = ACTIONS(2921), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2921), - [aux_sym_address_family_token1] = ACTIONS(2921), - [aux_sym_batch_mode_token1] = ACTIONS(2921), - [aux_sym_bind_address_token1] = ACTIONS(2921), - [aux_sym_bind_interface_token1] = ACTIONS(2921), - [aux_sym_canonical_domains_token1] = ACTIONS(2921), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2921), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2921), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2921), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2921), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2921), - [aux_sym_certificate_file_token1] = ACTIONS(2921), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2921), - [aux_sym_check_host_ip_token1] = ACTIONS(2921), - [aux_sym_ciphers_token1] = ACTIONS(2921), - [aux_sym_cipher_token1] = ACTIONS(2923), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2921), - [aux_sym_compression_token1] = ACTIONS(2921), - [aux_sym_connection_attempts_token1] = ACTIONS(2921), - [aux_sym_connect_timeout_token1] = ACTIONS(2921), - [aux_sym_control_master_token1] = ACTIONS(2921), - [aux_sym_control_path_token1] = ACTIONS(2921), - [aux_sym_control_persist_token1] = ACTIONS(2921), - [aux_sym_dynamic_forward_token1] = ACTIONS(2921), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2921), - [aux_sym_escape_char_token1] = ACTIONS(2921), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2921), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2921), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2921), - [aux_sym_forward_agent_token1] = ACTIONS(2921), - [aux_sym_forward_x11_token1] = ACTIONS(2923), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2921), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2921), - [aux_sym_gateway_ports_token1] = ACTIONS(2921), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2921), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2921), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2921), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2921), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2921), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2921), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2921), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2921), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2921), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2921), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2921), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2921), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2921), - [aux_sym_host_key_alias_token1] = ACTIONS(2921), - [aux_sym_hostname_token1] = ACTIONS(2921), - [aux_sym_identities_only_token1] = ACTIONS(2921), - [aux_sym_identity_agent_token1] = ACTIONS(2921), - [aux_sym_identity_file_token1] = ACTIONS(2921), - [aux_sym_ignore_unknown_token1] = ACTIONS(2921), - [aux_sym_include_token1] = ACTIONS(2921), - [aux_sym_ip_qos_token1] = ACTIONS(2921), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2921), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2921), - [aux_sym_kex_algorithms_token1] = ACTIONS(2921), - [aux_sym_known_hosts_command_token1] = ACTIONS(2921), - [aux_sym_local_command_token1] = ACTIONS(2921), - [aux_sym_local_forward_token1] = ACTIONS(2921), - [aux_sym_log_level_token1] = ACTIONS(2921), - [aux_sym_log_verbose_token1] = ACTIONS(2921), - [aux_sym_macs_token1] = ACTIONS(2921), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2921), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2921), - [aux_sym_password_authentication_token1] = ACTIONS(2921), - [aux_sym_permit_local_command_token1] = ACTIONS(2921), - [aux_sym_permit_remote_open_token1] = ACTIONS(2921), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2921), - [aux_sym_port_token1] = ACTIONS(2921), - [aux_sym_preferred_authentications_token1] = ACTIONS(2921), - [aux_sym_protocol_token1] = ACTIONS(2921), - [aux_sym_proxy_command_token1] = ACTIONS(2921), - [aux_sym_proxy_jump_token1] = ACTIONS(2921), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2921), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2921), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2921), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2921), - [aux_sym_rekey_limit_token1] = ACTIONS(2921), - [aux_sym_remote_command_token1] = ACTIONS(2921), - [aux_sym_remote_forward_token1] = ACTIONS(2921), - [aux_sym_request_tty_token1] = ACTIONS(2921), - [aux_sym_required_rsa_size_token1] = ACTIONS(2921), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2921), - [aux_sym_security_key_provider_token1] = ACTIONS(2921), - [aux_sym_send_env_token1] = ACTIONS(2921), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2921), - [aux_sym_server_alive_interval_token1] = ACTIONS(2921), - [aux_sym_session_type_token1] = ACTIONS(2921), - [aux_sym_set_env_token1] = ACTIONS(2921), - [aux_sym_stdin_null_token1] = ACTIONS(2921), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2921), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2921), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2921), - [aux_sym_syslog_facility_token1] = ACTIONS(2921), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2921), - [aux_sym_keep_alive_token1] = ACTIONS(2921), - [aux_sym_tunnel_token1] = ACTIONS(2923), - [aux_sym_tunnel_device_token1] = ACTIONS(2921), - [aux_sym_update_host_keys_token1] = ACTIONS(2921), - [aux_sym_use_keychain_token1] = ACTIONS(2921), - [aux_sym_use_roaming_token1] = ACTIONS(2921), - [aux_sym_user_token1] = ACTIONS(2923), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2921), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2921), - [aux_sym_visual_host_key_token1] = ACTIONS(2921), - [aux_sym_xauth_location_token1] = ACTIONS(2921), + [ts_builtin_sym_end] = ACTIONS(2926), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2930), + [aux_sym_match_token1] = ACTIONS(2926), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2926), + [aux_sym_address_family_token1] = ACTIONS(2926), + [aux_sym_batch_mode_token1] = ACTIONS(2926), + [aux_sym_bind_address_token1] = ACTIONS(2926), + [aux_sym_bind_interface_token1] = ACTIONS(2926), + [aux_sym_canonical_domains_token1] = ACTIONS(2926), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2926), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2926), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2926), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2926), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2926), + [aux_sym_certificate_file_token1] = ACTIONS(2926), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2926), + [aux_sym_check_host_ip_token1] = ACTIONS(2926), + [aux_sym_ciphers_token1] = ACTIONS(2926), + [aux_sym_cipher_token1] = ACTIONS(2928), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2926), + [aux_sym_compression_token1] = ACTIONS(2926), + [aux_sym_connection_attempts_token1] = ACTIONS(2926), + [aux_sym_connect_timeout_token1] = ACTIONS(2926), + [aux_sym_control_master_token1] = ACTIONS(2926), + [aux_sym_control_path_token1] = ACTIONS(2926), + [aux_sym_control_persist_token1] = ACTIONS(2926), + [aux_sym_dynamic_forward_token1] = ACTIONS(2926), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2926), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2926), + [aux_sym_escape_char_token1] = ACTIONS(2926), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2926), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2926), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2926), + [aux_sym_forward_agent_token1] = ACTIONS(2926), + [aux_sym_forward_x11_token1] = ACTIONS(2928), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2926), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2926), + [aux_sym_gateway_ports_token1] = ACTIONS(2926), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2926), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2926), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2926), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2926), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2926), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2926), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2926), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2926), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2926), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2926), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2926), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2926), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2926), + [aux_sym_host_key_alias_token1] = ACTIONS(2926), + [aux_sym_hostname_token1] = ACTIONS(2926), + [aux_sym_identities_only_token1] = ACTIONS(2926), + [aux_sym_identity_agent_token1] = ACTIONS(2926), + [aux_sym_identity_file_token1] = ACTIONS(2926), + [aux_sym_ignore_unknown_token1] = ACTIONS(2926), + [aux_sym_include_token1] = ACTIONS(2926), + [aux_sym_ip_qos_token1] = ACTIONS(2926), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2926), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2926), + [aux_sym_kex_algorithms_token1] = ACTIONS(2926), + [aux_sym_known_hosts_command_token1] = ACTIONS(2926), + [aux_sym_local_command_token1] = ACTIONS(2926), + [aux_sym_local_forward_token1] = ACTIONS(2926), + [aux_sym_log_level_token1] = ACTIONS(2926), + [aux_sym_log_verbose_token1] = ACTIONS(2926), + [aux_sym_macs_token1] = ACTIONS(2926), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2926), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2926), + [aux_sym_password_authentication_token1] = ACTIONS(2926), + [aux_sym_permit_local_command_token1] = ACTIONS(2926), + [aux_sym_permit_remote_open_token1] = ACTIONS(2926), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2926), + [aux_sym_port_token1] = ACTIONS(2926), + [aux_sym_preferred_authentications_token1] = ACTIONS(2926), + [aux_sym_protocol_token1] = ACTIONS(2926), + [aux_sym_proxy_command_token1] = ACTIONS(2926), + [aux_sym_proxy_jump_token1] = ACTIONS(2926), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2926), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2926), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2926), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2926), + [aux_sym_rekey_limit_token1] = ACTIONS(2926), + [aux_sym_remote_command_token1] = ACTIONS(2926), + [aux_sym_remote_forward_token1] = ACTIONS(2926), + [aux_sym_request_tty_token1] = ACTIONS(2926), + [aux_sym_required_rsa_size_token1] = ACTIONS(2926), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2926), + [aux_sym_security_key_provider_token1] = ACTIONS(2926), + [aux_sym_send_env_token1] = ACTIONS(2926), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2926), + [aux_sym_server_alive_interval_token1] = ACTIONS(2926), + [aux_sym_session_type_token1] = ACTIONS(2926), + [aux_sym_set_env_token1] = ACTIONS(2926), + [aux_sym_stdin_null_token1] = ACTIONS(2926), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2926), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2926), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2926), + [aux_sym_syslog_facility_token1] = ACTIONS(2926), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2926), + [aux_sym_keep_alive_token1] = ACTIONS(2926), + [aux_sym_tunnel_token1] = ACTIONS(2928), + [aux_sym_tunnel_device_token1] = ACTIONS(2926), + [aux_sym_update_host_keys_token1] = ACTIONS(2926), + [aux_sym_use_keychain_token1] = ACTIONS(2926), + [aux_sym_use_roaming_token1] = ACTIONS(2926), + [aux_sym_user_token1] = ACTIONS(2928), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2926), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2926), + [aux_sym_visual_host_key_token1] = ACTIONS(2926), + [aux_sym_xauth_location_token1] = ACTIONS(2926), }, [433] = { - [ts_builtin_sym_end] = ACTIONS(2925), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2927), - [anon_sym_DQUOTE] = ACTIONS(2925), - [aux_sym_match_token1] = ACTIONS(2925), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2925), - [aux_sym_address_family_token1] = ACTIONS(2925), - [aux_sym_batch_mode_token1] = ACTIONS(2925), - [aux_sym_bind_address_token1] = ACTIONS(2925), - [aux_sym_bind_interface_token1] = ACTIONS(2925), - [aux_sym_canonical_domains_token1] = ACTIONS(2925), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2925), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2925), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2925), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2925), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2925), - [aux_sym_certificate_file_token1] = ACTIONS(2925), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2925), - [aux_sym_check_host_ip_token1] = ACTIONS(2925), - [aux_sym_ciphers_token1] = ACTIONS(2925), - [aux_sym_cipher_token1] = ACTIONS(2927), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2925), - [aux_sym_compression_token1] = ACTIONS(2925), - [aux_sym_connection_attempts_token1] = ACTIONS(2925), - [aux_sym_connect_timeout_token1] = ACTIONS(2925), - [aux_sym_control_master_token1] = ACTIONS(2925), - [aux_sym_control_path_token1] = ACTIONS(2925), - [aux_sym_control_persist_token1] = ACTIONS(2925), - [aux_sym_dynamic_forward_token1] = ACTIONS(2925), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2925), - [aux_sym_escape_char_token1] = ACTIONS(2925), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2925), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2925), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2925), - [aux_sym_forward_agent_token1] = ACTIONS(2925), - [aux_sym_forward_x11_token1] = ACTIONS(2927), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2925), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2925), - [aux_sym_gateway_ports_token1] = ACTIONS(2925), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2925), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2925), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2925), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2925), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2925), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2925), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2925), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2925), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2925), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2925), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2925), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2925), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2925), - [aux_sym_host_key_alias_token1] = ACTIONS(2925), - [aux_sym_hostname_token1] = ACTIONS(2925), - [aux_sym_identities_only_token1] = ACTIONS(2925), - [aux_sym_identity_agent_token1] = ACTIONS(2925), - [aux_sym_identity_file_token1] = ACTIONS(2925), - [aux_sym_ignore_unknown_token1] = ACTIONS(2925), - [aux_sym_include_token1] = ACTIONS(2925), - [aux_sym_ip_qos_token1] = ACTIONS(2925), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2925), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2925), - [aux_sym_kex_algorithms_token1] = ACTIONS(2925), - [aux_sym_known_hosts_command_token1] = ACTIONS(2925), - [aux_sym_local_command_token1] = ACTIONS(2925), - [aux_sym_local_forward_token1] = ACTIONS(2925), - [aux_sym_log_level_token1] = ACTIONS(2925), - [aux_sym_log_verbose_token1] = ACTIONS(2925), - [aux_sym_macs_token1] = ACTIONS(2925), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2925), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2925), - [aux_sym_password_authentication_token1] = ACTIONS(2925), - [aux_sym_permit_local_command_token1] = ACTIONS(2925), - [aux_sym_permit_remote_open_token1] = ACTIONS(2925), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2925), - [aux_sym_port_token1] = ACTIONS(2925), - [aux_sym_preferred_authentications_token1] = ACTIONS(2925), - [aux_sym_protocol_token1] = ACTIONS(2925), - [aux_sym_proxy_command_token1] = ACTIONS(2925), - [aux_sym_proxy_jump_token1] = ACTIONS(2925), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2925), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2925), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2925), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2925), - [aux_sym_rekey_limit_token1] = ACTIONS(2925), - [aux_sym_remote_command_token1] = ACTIONS(2925), - [aux_sym_remote_forward_token1] = ACTIONS(2925), - [aux_sym_request_tty_token1] = ACTIONS(2925), - [aux_sym_required_rsa_size_token1] = ACTIONS(2925), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2925), - [aux_sym_security_key_provider_token1] = ACTIONS(2925), - [aux_sym_send_env_token1] = ACTIONS(2925), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2925), - [aux_sym_server_alive_interval_token1] = ACTIONS(2925), - [aux_sym_session_type_token1] = ACTIONS(2925), - [aux_sym_set_env_token1] = ACTIONS(2925), - [aux_sym_stdin_null_token1] = ACTIONS(2925), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2925), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2925), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2925), - [aux_sym_syslog_facility_token1] = ACTIONS(2925), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2925), - [aux_sym_keep_alive_token1] = ACTIONS(2925), - [aux_sym_tunnel_token1] = ACTIONS(2927), - [aux_sym_tunnel_device_token1] = ACTIONS(2925), - [aux_sym_update_host_keys_token1] = ACTIONS(2925), - [aux_sym_use_keychain_token1] = ACTIONS(2925), - [aux_sym_use_roaming_token1] = ACTIONS(2925), - [aux_sym_user_token1] = ACTIONS(2927), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2925), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2925), - [aux_sym_visual_host_key_token1] = ACTIONS(2925), - [aux_sym_xauth_location_token1] = ACTIONS(2925), + [ts_builtin_sym_end] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2934), + [anon_sym_DQUOTE] = ACTIONS(2932), + [aux_sym_match_token1] = ACTIONS(2932), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2932), + [aux_sym_address_family_token1] = ACTIONS(2932), + [aux_sym_batch_mode_token1] = ACTIONS(2932), + [aux_sym_bind_address_token1] = ACTIONS(2932), + [aux_sym_bind_interface_token1] = ACTIONS(2932), + [aux_sym_canonical_domains_token1] = ACTIONS(2932), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2932), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2932), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2932), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2932), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2932), + [aux_sym_certificate_file_token1] = ACTIONS(2932), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2932), + [aux_sym_check_host_ip_token1] = ACTIONS(2932), + [aux_sym_ciphers_token1] = ACTIONS(2932), + [aux_sym_cipher_token1] = ACTIONS(2934), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2932), + [aux_sym_compression_token1] = ACTIONS(2932), + [aux_sym_connection_attempts_token1] = ACTIONS(2932), + [aux_sym_connect_timeout_token1] = ACTIONS(2932), + [aux_sym_control_master_token1] = ACTIONS(2932), + [aux_sym_control_path_token1] = ACTIONS(2932), + [aux_sym_control_persist_token1] = ACTIONS(2932), + [aux_sym_dynamic_forward_token1] = ACTIONS(2932), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2932), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2932), + [aux_sym_escape_char_token1] = ACTIONS(2932), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2932), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2932), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2932), + [aux_sym_forward_agent_token1] = ACTIONS(2932), + [aux_sym_forward_x11_token1] = ACTIONS(2934), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2932), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2932), + [aux_sym_gateway_ports_token1] = ACTIONS(2932), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2932), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2932), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2932), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2932), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2932), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2932), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2932), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2932), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2932), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2932), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2932), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2932), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2932), + [aux_sym_host_key_alias_token1] = ACTIONS(2932), + [aux_sym_hostname_token1] = ACTIONS(2932), + [aux_sym_identities_only_token1] = ACTIONS(2932), + [aux_sym_identity_agent_token1] = ACTIONS(2932), + [aux_sym_identity_file_token1] = ACTIONS(2932), + [aux_sym_ignore_unknown_token1] = ACTIONS(2932), + [aux_sym_include_token1] = ACTIONS(2932), + [aux_sym_ip_qos_token1] = ACTIONS(2932), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2932), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2932), + [aux_sym_kex_algorithms_token1] = ACTIONS(2932), + [aux_sym_known_hosts_command_token1] = ACTIONS(2932), + [aux_sym_local_command_token1] = ACTIONS(2932), + [aux_sym_local_forward_token1] = ACTIONS(2932), + [aux_sym_log_level_token1] = ACTIONS(2932), + [aux_sym_log_verbose_token1] = ACTIONS(2932), + [aux_sym_macs_token1] = ACTIONS(2932), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2932), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2932), + [aux_sym_password_authentication_token1] = ACTIONS(2932), + [aux_sym_permit_local_command_token1] = ACTIONS(2932), + [aux_sym_permit_remote_open_token1] = ACTIONS(2932), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2932), + [aux_sym_port_token1] = ACTIONS(2932), + [aux_sym_preferred_authentications_token1] = ACTIONS(2932), + [aux_sym_protocol_token1] = ACTIONS(2932), + [aux_sym_proxy_command_token1] = ACTIONS(2932), + [aux_sym_proxy_jump_token1] = ACTIONS(2932), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2932), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2932), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2932), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2932), + [aux_sym_rekey_limit_token1] = ACTIONS(2932), + [aux_sym_remote_command_token1] = ACTIONS(2932), + [aux_sym_remote_forward_token1] = ACTIONS(2932), + [aux_sym_request_tty_token1] = ACTIONS(2932), + [aux_sym_required_rsa_size_token1] = ACTIONS(2932), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2932), + [aux_sym_security_key_provider_token1] = ACTIONS(2932), + [aux_sym_send_env_token1] = ACTIONS(2932), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2932), + [aux_sym_server_alive_interval_token1] = ACTIONS(2932), + [aux_sym_session_type_token1] = ACTIONS(2932), + [aux_sym_set_env_token1] = ACTIONS(2932), + [aux_sym_stdin_null_token1] = ACTIONS(2932), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2932), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2932), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2932), + [aux_sym_syslog_facility_token1] = ACTIONS(2932), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2932), + [aux_sym_keep_alive_token1] = ACTIONS(2932), + [aux_sym_tunnel_token1] = ACTIONS(2934), + [aux_sym_tunnel_device_token1] = ACTIONS(2932), + [aux_sym_update_host_keys_token1] = ACTIONS(2932), + [aux_sym_use_keychain_token1] = ACTIONS(2932), + [aux_sym_use_roaming_token1] = ACTIONS(2932), + [aux_sym_user_token1] = ACTIONS(2934), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2932), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2932), + [aux_sym_visual_host_key_token1] = ACTIONS(2932), + [aux_sym_xauth_location_token1] = ACTIONS(2932), }, [434] = { - [ts_builtin_sym_end] = ACTIONS(2929), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2931), - [anon_sym_DQUOTE] = ACTIONS(2933), - [aux_sym_match_token1] = ACTIONS(2929), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2929), - [aux_sym_address_family_token1] = ACTIONS(2929), - [aux_sym_batch_mode_token1] = ACTIONS(2929), - [aux_sym_bind_address_token1] = ACTIONS(2929), - [aux_sym_bind_interface_token1] = ACTIONS(2929), - [aux_sym_canonical_domains_token1] = ACTIONS(2929), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2929), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2929), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2929), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2929), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2929), - [aux_sym_certificate_file_token1] = ACTIONS(2929), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2929), - [aux_sym_check_host_ip_token1] = ACTIONS(2929), - [aux_sym_ciphers_token1] = ACTIONS(2929), - [aux_sym_cipher_token1] = ACTIONS(2931), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2929), - [aux_sym_compression_token1] = ACTIONS(2929), - [aux_sym_connection_attempts_token1] = ACTIONS(2929), - [aux_sym_connect_timeout_token1] = ACTIONS(2929), - [aux_sym_control_master_token1] = ACTIONS(2929), - [aux_sym_control_path_token1] = ACTIONS(2929), - [aux_sym_control_persist_token1] = ACTIONS(2929), - [aux_sym_dynamic_forward_token1] = ACTIONS(2929), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2929), - [aux_sym_escape_char_token1] = ACTIONS(2929), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2929), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2929), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2929), - [aux_sym_forward_agent_token1] = ACTIONS(2929), - [aux_sym_forward_x11_token1] = ACTIONS(2931), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2929), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2929), - [aux_sym_gateway_ports_token1] = ACTIONS(2929), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2929), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2929), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2929), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2929), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2929), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2929), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2929), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2929), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2929), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2929), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2929), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2929), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2929), - [aux_sym_host_key_alias_token1] = ACTIONS(2929), - [aux_sym_hostname_token1] = ACTIONS(2929), - [aux_sym_identities_only_token1] = ACTIONS(2929), - [aux_sym_identity_agent_token1] = ACTIONS(2929), - [aux_sym_identity_file_token1] = ACTIONS(2929), - [aux_sym_ignore_unknown_token1] = ACTIONS(2929), - [aux_sym_include_token1] = ACTIONS(2929), - [aux_sym_ip_qos_token1] = ACTIONS(2929), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2929), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2929), - [aux_sym_kex_algorithms_token1] = ACTIONS(2929), - [aux_sym_known_hosts_command_token1] = ACTIONS(2929), - [aux_sym_local_command_token1] = ACTIONS(2929), - [aux_sym_local_forward_token1] = ACTIONS(2929), - [aux_sym_log_level_token1] = ACTIONS(2929), - [aux_sym_log_verbose_token1] = ACTIONS(2929), - [aux_sym_macs_token1] = ACTIONS(2929), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2929), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2929), - [aux_sym_password_authentication_token1] = ACTIONS(2929), - [aux_sym_permit_local_command_token1] = ACTIONS(2929), - [aux_sym_permit_remote_open_token1] = ACTIONS(2929), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2929), - [aux_sym_port_token1] = ACTIONS(2929), - [aux_sym_preferred_authentications_token1] = ACTIONS(2929), - [aux_sym_protocol_token1] = ACTIONS(2929), - [aux_sym_proxy_command_token1] = ACTIONS(2929), - [aux_sym_proxy_jump_token1] = ACTIONS(2929), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2929), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2929), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2929), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2929), - [aux_sym_rekey_limit_token1] = ACTIONS(2929), - [aux_sym_remote_command_token1] = ACTIONS(2929), - [aux_sym_remote_forward_token1] = ACTIONS(2929), - [aux_sym_request_tty_token1] = ACTIONS(2929), - [aux_sym_required_rsa_size_token1] = ACTIONS(2929), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2929), - [aux_sym_security_key_provider_token1] = ACTIONS(2929), - [aux_sym_send_env_token1] = ACTIONS(2929), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2929), - [aux_sym_server_alive_interval_token1] = ACTIONS(2929), - [aux_sym_session_type_token1] = ACTIONS(2929), - [aux_sym_set_env_token1] = ACTIONS(2929), - [aux_sym_stdin_null_token1] = ACTIONS(2929), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2929), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2929), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2929), - [aux_sym_syslog_facility_token1] = ACTIONS(2929), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2929), - [aux_sym_keep_alive_token1] = ACTIONS(2929), - [aux_sym_tunnel_token1] = ACTIONS(2931), - [aux_sym_tunnel_device_token1] = ACTIONS(2929), - [aux_sym_update_host_keys_token1] = ACTIONS(2929), - [aux_sym_use_keychain_token1] = ACTIONS(2929), - [aux_sym_use_roaming_token1] = ACTIONS(2929), - [aux_sym_user_token1] = ACTIONS(2931), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2929), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2929), - [aux_sym_visual_host_key_token1] = ACTIONS(2929), - [aux_sym_xauth_location_token1] = ACTIONS(2929), + [ts_builtin_sym_end] = ACTIONS(2936), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2938), + [anon_sym_DQUOTE] = ACTIONS(2940), + [aux_sym_match_token1] = ACTIONS(2936), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2936), + [aux_sym_address_family_token1] = ACTIONS(2936), + [aux_sym_batch_mode_token1] = ACTIONS(2936), + [aux_sym_bind_address_token1] = ACTIONS(2936), + [aux_sym_bind_interface_token1] = ACTIONS(2936), + [aux_sym_canonical_domains_token1] = ACTIONS(2936), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2936), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2936), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2936), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2936), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2936), + [aux_sym_certificate_file_token1] = ACTIONS(2936), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2936), + [aux_sym_check_host_ip_token1] = ACTIONS(2936), + [aux_sym_ciphers_token1] = ACTIONS(2936), + [aux_sym_cipher_token1] = ACTIONS(2938), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2936), + [aux_sym_compression_token1] = ACTIONS(2936), + [aux_sym_connection_attempts_token1] = ACTIONS(2936), + [aux_sym_connect_timeout_token1] = ACTIONS(2936), + [aux_sym_control_master_token1] = ACTIONS(2936), + [aux_sym_control_path_token1] = ACTIONS(2936), + [aux_sym_control_persist_token1] = ACTIONS(2936), + [aux_sym_dynamic_forward_token1] = ACTIONS(2936), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2936), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2936), + [aux_sym_escape_char_token1] = ACTIONS(2936), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2936), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2936), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2936), + [aux_sym_forward_agent_token1] = ACTIONS(2936), + [aux_sym_forward_x11_token1] = ACTIONS(2938), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2936), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2936), + [aux_sym_gateway_ports_token1] = ACTIONS(2936), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2936), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2936), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2936), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2936), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2936), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2936), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2936), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2936), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2936), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2936), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2936), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2936), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2936), + [aux_sym_host_key_alias_token1] = ACTIONS(2936), + [aux_sym_hostname_token1] = ACTIONS(2936), + [aux_sym_identities_only_token1] = ACTIONS(2936), + [aux_sym_identity_agent_token1] = ACTIONS(2936), + [aux_sym_identity_file_token1] = ACTIONS(2936), + [aux_sym_ignore_unknown_token1] = ACTIONS(2936), + [aux_sym_include_token1] = ACTIONS(2936), + [aux_sym_ip_qos_token1] = ACTIONS(2936), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2936), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2936), + [aux_sym_kex_algorithms_token1] = ACTIONS(2936), + [aux_sym_known_hosts_command_token1] = ACTIONS(2936), + [aux_sym_local_command_token1] = ACTIONS(2936), + [aux_sym_local_forward_token1] = ACTIONS(2936), + [aux_sym_log_level_token1] = ACTIONS(2936), + [aux_sym_log_verbose_token1] = ACTIONS(2936), + [aux_sym_macs_token1] = ACTIONS(2936), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2936), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2936), + [aux_sym_password_authentication_token1] = ACTIONS(2936), + [aux_sym_permit_local_command_token1] = ACTIONS(2936), + [aux_sym_permit_remote_open_token1] = ACTIONS(2936), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2936), + [aux_sym_port_token1] = ACTIONS(2936), + [aux_sym_preferred_authentications_token1] = ACTIONS(2936), + [aux_sym_protocol_token1] = ACTIONS(2936), + [aux_sym_proxy_command_token1] = ACTIONS(2936), + [aux_sym_proxy_jump_token1] = ACTIONS(2936), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2936), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2936), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2936), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2936), + [aux_sym_rekey_limit_token1] = ACTIONS(2936), + [aux_sym_remote_command_token1] = ACTIONS(2936), + [aux_sym_remote_forward_token1] = ACTIONS(2936), + [aux_sym_request_tty_token1] = ACTIONS(2936), + [aux_sym_required_rsa_size_token1] = ACTIONS(2936), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2936), + [aux_sym_security_key_provider_token1] = ACTIONS(2936), + [aux_sym_send_env_token1] = ACTIONS(2936), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2936), + [aux_sym_server_alive_interval_token1] = ACTIONS(2936), + [aux_sym_session_type_token1] = ACTIONS(2936), + [aux_sym_set_env_token1] = ACTIONS(2936), + [aux_sym_stdin_null_token1] = ACTIONS(2936), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2936), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2936), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2936), + [aux_sym_syslog_facility_token1] = ACTIONS(2936), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2936), + [aux_sym_keep_alive_token1] = ACTIONS(2936), + [aux_sym_tunnel_token1] = ACTIONS(2938), + [aux_sym_tunnel_device_token1] = ACTIONS(2936), + [aux_sym_update_host_keys_token1] = ACTIONS(2936), + [aux_sym_use_keychain_token1] = ACTIONS(2936), + [aux_sym_use_roaming_token1] = ACTIONS(2936), + [aux_sym_user_token1] = ACTIONS(2938), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2936), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2936), + [aux_sym_visual_host_key_token1] = ACTIONS(2936), + [aux_sym_xauth_location_token1] = ACTIONS(2936), }, [435] = { - [ts_builtin_sym_end] = ACTIONS(2935), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2935), - [aux_sym_match_token1] = ACTIONS(2935), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2935), - [aux_sym_address_family_token1] = ACTIONS(2935), - [aux_sym_batch_mode_token1] = ACTIONS(2935), - [aux_sym_bind_address_token1] = ACTIONS(2935), - [aux_sym_bind_interface_token1] = ACTIONS(2935), - [aux_sym_canonical_domains_token1] = ACTIONS(2935), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2935), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2935), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2935), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2935), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2935), - [aux_sym_certificate_file_token1] = ACTIONS(2935), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2935), - [aux_sym_check_host_ip_token1] = ACTIONS(2935), - [aux_sym_ciphers_token1] = ACTIONS(2935), - [aux_sym_cipher_token1] = ACTIONS(2937), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2935), - [aux_sym_compression_token1] = ACTIONS(2935), - [aux_sym_connection_attempts_token1] = ACTIONS(2935), - [aux_sym_connect_timeout_token1] = ACTIONS(2935), - [aux_sym_control_master_token1] = ACTIONS(2935), - [aux_sym_control_path_token1] = ACTIONS(2935), - [aux_sym_control_persist_token1] = ACTIONS(2935), - [aux_sym_dynamic_forward_token1] = ACTIONS(2935), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2935), - [aux_sym_escape_char_token1] = ACTIONS(2935), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2935), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2935), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2935), - [aux_sym_forward_agent_token1] = ACTIONS(2935), - [aux_sym_forward_x11_token1] = ACTIONS(2937), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2935), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2935), - [aux_sym_gateway_ports_token1] = ACTIONS(2935), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2935), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2935), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2935), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2935), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2935), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2935), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2935), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2935), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2935), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2935), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2935), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2935), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2935), - [aux_sym_host_key_alias_token1] = ACTIONS(2935), - [aux_sym_hostname_token1] = ACTIONS(2935), - [aux_sym_identities_only_token1] = ACTIONS(2935), - [aux_sym_identity_agent_token1] = ACTIONS(2935), - [aux_sym_identity_file_token1] = ACTIONS(2935), - [aux_sym_ignore_unknown_token1] = ACTIONS(2935), - [aux_sym_include_token1] = ACTIONS(2935), - [aux_sym_ip_qos_token1] = ACTIONS(2935), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2935), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2935), - [aux_sym_kex_algorithms_token1] = ACTIONS(2935), - [aux_sym_known_hosts_command_token1] = ACTIONS(2935), - [aux_sym_local_command_token1] = ACTIONS(2935), - [aux_sym_local_forward_token1] = ACTIONS(2935), - [aux_sym_log_level_token1] = ACTIONS(2935), - [aux_sym_log_verbose_token1] = ACTIONS(2935), - [aux_sym_macs_token1] = ACTIONS(2935), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2935), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2935), - [aux_sym_password_authentication_token1] = ACTIONS(2935), - [aux_sym_permit_local_command_token1] = ACTIONS(2935), - [aux_sym_permit_remote_open_token1] = ACTIONS(2935), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2935), - [aux_sym_port_token1] = ACTIONS(2935), - [aux_sym_preferred_authentications_token1] = ACTIONS(2935), - [aux_sym_protocol_token1] = ACTIONS(2935), - [aux_sym_proxy_command_token1] = ACTIONS(2935), - [aux_sym_proxy_jump_token1] = ACTIONS(2935), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2935), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2935), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2935), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2935), - [aux_sym_rekey_limit_token1] = ACTIONS(2935), - [aux_sym_remote_command_token1] = ACTIONS(2935), - [aux_sym_remote_forward_token1] = ACTIONS(2935), - [aux_sym_request_tty_token1] = ACTIONS(2935), - [aux_sym_required_rsa_size_token1] = ACTIONS(2935), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2935), - [aux_sym_security_key_provider_token1] = ACTIONS(2935), - [aux_sym_send_env_token1] = ACTIONS(2935), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2935), - [aux_sym_server_alive_interval_token1] = ACTIONS(2935), - [aux_sym_session_type_token1] = ACTIONS(2935), - [aux_sym_set_env_token1] = ACTIONS(2935), - [aux_sym_stdin_null_token1] = ACTIONS(2935), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2935), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2935), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2935), - [aux_sym_syslog_facility_token1] = ACTIONS(2935), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2935), - [aux_sym_keep_alive_token1] = ACTIONS(2935), - [aux_sym_tunnel_token1] = ACTIONS(2937), - [aux_sym_tunnel_device_token1] = ACTIONS(2935), - [aux_sym_update_host_keys_token1] = ACTIONS(2935), - [aux_sym_use_keychain_token1] = ACTIONS(2935), - [aux_sym_use_roaming_token1] = ACTIONS(2935), - [aux_sym_user_token1] = ACTIONS(2937), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2935), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2935), - [aux_sym_visual_host_key_token1] = ACTIONS(2935), - [aux_sym_xauth_location_token1] = ACTIONS(2935), + [ts_builtin_sym_end] = ACTIONS(2942), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2942), + [aux_sym_match_token1] = ACTIONS(2942), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2942), + [aux_sym_address_family_token1] = ACTIONS(2942), + [aux_sym_batch_mode_token1] = ACTIONS(2942), + [aux_sym_bind_address_token1] = ACTIONS(2942), + [aux_sym_bind_interface_token1] = ACTIONS(2942), + [aux_sym_canonical_domains_token1] = ACTIONS(2942), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2942), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2942), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2942), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2942), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2942), + [aux_sym_certificate_file_token1] = ACTIONS(2942), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2942), + [aux_sym_check_host_ip_token1] = ACTIONS(2942), + [aux_sym_ciphers_token1] = ACTIONS(2942), + [aux_sym_cipher_token1] = ACTIONS(2944), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2942), + [aux_sym_compression_token1] = ACTIONS(2942), + [aux_sym_connection_attempts_token1] = ACTIONS(2942), + [aux_sym_connect_timeout_token1] = ACTIONS(2942), + [aux_sym_control_master_token1] = ACTIONS(2942), + [aux_sym_control_path_token1] = ACTIONS(2942), + [aux_sym_control_persist_token1] = ACTIONS(2942), + [aux_sym_dynamic_forward_token1] = ACTIONS(2942), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2942), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2942), + [aux_sym_escape_char_token1] = ACTIONS(2942), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2942), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2942), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2942), + [aux_sym_forward_agent_token1] = ACTIONS(2942), + [aux_sym_forward_x11_token1] = ACTIONS(2944), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2942), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2942), + [aux_sym_gateway_ports_token1] = ACTIONS(2942), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2942), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2942), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2942), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2942), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2942), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2942), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2942), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2942), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2942), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2942), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2942), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2942), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2942), + [aux_sym_host_key_alias_token1] = ACTIONS(2942), + [aux_sym_hostname_token1] = ACTIONS(2942), + [aux_sym_identities_only_token1] = ACTIONS(2942), + [aux_sym_identity_agent_token1] = ACTIONS(2942), + [aux_sym_identity_file_token1] = ACTIONS(2942), + [aux_sym_ignore_unknown_token1] = ACTIONS(2942), + [aux_sym_include_token1] = ACTIONS(2942), + [aux_sym_ip_qos_token1] = ACTIONS(2942), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2942), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2942), + [aux_sym_kex_algorithms_token1] = ACTIONS(2942), + [aux_sym_known_hosts_command_token1] = ACTIONS(2942), + [aux_sym_local_command_token1] = ACTIONS(2942), + [aux_sym_local_forward_token1] = ACTIONS(2942), + [aux_sym_log_level_token1] = ACTIONS(2942), + [aux_sym_log_verbose_token1] = ACTIONS(2942), + [aux_sym_macs_token1] = ACTIONS(2942), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2942), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2942), + [aux_sym_password_authentication_token1] = ACTIONS(2942), + [aux_sym_permit_local_command_token1] = ACTIONS(2942), + [aux_sym_permit_remote_open_token1] = ACTIONS(2942), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2942), + [aux_sym_port_token1] = ACTIONS(2942), + [aux_sym_preferred_authentications_token1] = ACTIONS(2942), + [aux_sym_protocol_token1] = ACTIONS(2942), + [aux_sym_proxy_command_token1] = ACTIONS(2942), + [aux_sym_proxy_jump_token1] = ACTIONS(2942), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2942), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2942), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2942), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2942), + [aux_sym_rekey_limit_token1] = ACTIONS(2942), + [aux_sym_remote_command_token1] = ACTIONS(2942), + [aux_sym_remote_forward_token1] = ACTIONS(2942), + [aux_sym_request_tty_token1] = ACTIONS(2942), + [aux_sym_required_rsa_size_token1] = ACTIONS(2942), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2942), + [aux_sym_security_key_provider_token1] = ACTIONS(2942), + [aux_sym_send_env_token1] = ACTIONS(2942), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2942), + [aux_sym_server_alive_interval_token1] = ACTIONS(2942), + [aux_sym_session_type_token1] = ACTIONS(2942), + [aux_sym_set_env_token1] = ACTIONS(2942), + [aux_sym_stdin_null_token1] = ACTIONS(2942), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2942), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2942), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2942), + [aux_sym_syslog_facility_token1] = ACTIONS(2942), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2942), + [aux_sym_keep_alive_token1] = ACTIONS(2942), + [aux_sym_tunnel_token1] = ACTIONS(2944), + [aux_sym_tunnel_device_token1] = ACTIONS(2942), + [aux_sym_update_host_keys_token1] = ACTIONS(2942), + [aux_sym_use_keychain_token1] = ACTIONS(2942), + [aux_sym_use_roaming_token1] = ACTIONS(2942), + [aux_sym_user_token1] = ACTIONS(2944), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2942), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2942), + [aux_sym_visual_host_key_token1] = ACTIONS(2942), + [aux_sym_xauth_location_token1] = ACTIONS(2942), }, [436] = { - [ts_builtin_sym_end] = ACTIONS(2939), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2941), - [anon_sym_DQUOTE] = ACTIONS(2943), - [aux_sym_match_token1] = ACTIONS(2939), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2939), - [aux_sym_address_family_token1] = ACTIONS(2939), - [aux_sym_batch_mode_token1] = ACTIONS(2939), - [aux_sym_bind_address_token1] = ACTIONS(2939), - [aux_sym_bind_interface_token1] = ACTIONS(2939), - [aux_sym_canonical_domains_token1] = ACTIONS(2939), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2939), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2939), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2939), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2939), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2939), - [aux_sym_certificate_file_token1] = ACTIONS(2939), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2939), - [aux_sym_check_host_ip_token1] = ACTIONS(2939), - [aux_sym_ciphers_token1] = ACTIONS(2939), - [aux_sym_cipher_token1] = ACTIONS(2941), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2939), - [aux_sym_compression_token1] = ACTIONS(2939), - [aux_sym_connection_attempts_token1] = ACTIONS(2939), - [aux_sym_connect_timeout_token1] = ACTIONS(2939), - [aux_sym_control_master_token1] = ACTIONS(2939), - [aux_sym_control_path_token1] = ACTIONS(2939), - [aux_sym_control_persist_token1] = ACTIONS(2939), - [aux_sym_dynamic_forward_token1] = ACTIONS(2939), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2939), - [aux_sym_escape_char_token1] = ACTIONS(2939), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2939), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2939), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2939), - [aux_sym_forward_agent_token1] = ACTIONS(2939), - [aux_sym_forward_x11_token1] = ACTIONS(2941), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2939), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2939), - [aux_sym_gateway_ports_token1] = ACTIONS(2939), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2939), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2939), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2939), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2939), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2939), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2939), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2939), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2939), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2939), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2939), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2939), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2939), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2939), - [aux_sym_host_key_alias_token1] = ACTIONS(2939), - [aux_sym_hostname_token1] = ACTIONS(2939), - [aux_sym_identities_only_token1] = ACTIONS(2939), - [aux_sym_identity_agent_token1] = ACTIONS(2939), - [aux_sym_identity_file_token1] = ACTIONS(2939), - [aux_sym_ignore_unknown_token1] = ACTIONS(2939), - [aux_sym_include_token1] = ACTIONS(2939), - [aux_sym_ip_qos_token1] = ACTIONS(2939), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2939), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2939), - [aux_sym_kex_algorithms_token1] = ACTIONS(2939), - [aux_sym_known_hosts_command_token1] = ACTIONS(2939), - [aux_sym_local_command_token1] = ACTIONS(2939), - [aux_sym_local_forward_token1] = ACTIONS(2939), - [aux_sym_log_level_token1] = ACTIONS(2939), - [aux_sym_log_verbose_token1] = ACTIONS(2939), - [aux_sym_macs_token1] = ACTIONS(2939), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2939), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2939), - [aux_sym_password_authentication_token1] = ACTIONS(2939), - [aux_sym_permit_local_command_token1] = ACTIONS(2939), - [aux_sym_permit_remote_open_token1] = ACTIONS(2939), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2939), - [aux_sym_port_token1] = ACTIONS(2939), - [aux_sym_preferred_authentications_token1] = ACTIONS(2939), - [aux_sym_protocol_token1] = ACTIONS(2939), - [aux_sym_proxy_command_token1] = ACTIONS(2939), - [aux_sym_proxy_jump_token1] = ACTIONS(2939), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2939), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2939), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2939), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2939), - [aux_sym_rekey_limit_token1] = ACTIONS(2939), - [aux_sym_remote_command_token1] = ACTIONS(2939), - [aux_sym_remote_forward_token1] = ACTIONS(2939), - [aux_sym_request_tty_token1] = ACTIONS(2939), - [aux_sym_required_rsa_size_token1] = ACTIONS(2939), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2939), - [aux_sym_security_key_provider_token1] = ACTIONS(2939), - [aux_sym_send_env_token1] = ACTIONS(2939), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2939), - [aux_sym_server_alive_interval_token1] = ACTIONS(2939), - [aux_sym_session_type_token1] = ACTIONS(2939), - [aux_sym_set_env_token1] = ACTIONS(2939), - [aux_sym_stdin_null_token1] = ACTIONS(2939), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2939), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2939), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2939), - [aux_sym_syslog_facility_token1] = ACTIONS(2939), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2939), - [aux_sym_keep_alive_token1] = ACTIONS(2939), - [aux_sym_tunnel_token1] = ACTIONS(2941), - [aux_sym_tunnel_device_token1] = ACTIONS(2939), - [aux_sym_update_host_keys_token1] = ACTIONS(2939), - [aux_sym_use_keychain_token1] = ACTIONS(2939), - [aux_sym_use_roaming_token1] = ACTIONS(2939), - [aux_sym_user_token1] = ACTIONS(2941), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2939), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2939), - [aux_sym_visual_host_key_token1] = ACTIONS(2939), - [aux_sym_xauth_location_token1] = ACTIONS(2939), + [ts_builtin_sym_end] = ACTIONS(2946), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2948), + [anon_sym_DQUOTE] = ACTIONS(2950), + [aux_sym_match_token1] = ACTIONS(2946), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2946), + [aux_sym_address_family_token1] = ACTIONS(2946), + [aux_sym_batch_mode_token1] = ACTIONS(2946), + [aux_sym_bind_address_token1] = ACTIONS(2946), + [aux_sym_bind_interface_token1] = ACTIONS(2946), + [aux_sym_canonical_domains_token1] = ACTIONS(2946), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2946), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2946), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2946), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2946), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2946), + [aux_sym_certificate_file_token1] = ACTIONS(2946), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2946), + [aux_sym_check_host_ip_token1] = ACTIONS(2946), + [aux_sym_ciphers_token1] = ACTIONS(2946), + [aux_sym_cipher_token1] = ACTIONS(2948), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2946), + [aux_sym_compression_token1] = ACTIONS(2946), + [aux_sym_connection_attempts_token1] = ACTIONS(2946), + [aux_sym_connect_timeout_token1] = ACTIONS(2946), + [aux_sym_control_master_token1] = ACTIONS(2946), + [aux_sym_control_path_token1] = ACTIONS(2946), + [aux_sym_control_persist_token1] = ACTIONS(2946), + [aux_sym_dynamic_forward_token1] = ACTIONS(2946), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2946), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2946), + [aux_sym_escape_char_token1] = ACTIONS(2946), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2946), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2946), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2946), + [aux_sym_forward_agent_token1] = ACTIONS(2946), + [aux_sym_forward_x11_token1] = ACTIONS(2948), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2946), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2946), + [aux_sym_gateway_ports_token1] = ACTIONS(2946), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2946), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2946), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2946), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2946), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2946), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2946), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2946), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2946), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2946), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2946), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2946), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2946), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2946), + [aux_sym_host_key_alias_token1] = ACTIONS(2946), + [aux_sym_hostname_token1] = ACTIONS(2946), + [aux_sym_identities_only_token1] = ACTIONS(2946), + [aux_sym_identity_agent_token1] = ACTIONS(2946), + [aux_sym_identity_file_token1] = ACTIONS(2946), + [aux_sym_ignore_unknown_token1] = ACTIONS(2946), + [aux_sym_include_token1] = ACTIONS(2946), + [aux_sym_ip_qos_token1] = ACTIONS(2946), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2946), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2946), + [aux_sym_kex_algorithms_token1] = ACTIONS(2946), + [aux_sym_known_hosts_command_token1] = ACTIONS(2946), + [aux_sym_local_command_token1] = ACTIONS(2946), + [aux_sym_local_forward_token1] = ACTIONS(2946), + [aux_sym_log_level_token1] = ACTIONS(2946), + [aux_sym_log_verbose_token1] = ACTIONS(2946), + [aux_sym_macs_token1] = ACTIONS(2946), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2946), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2946), + [aux_sym_password_authentication_token1] = ACTIONS(2946), + [aux_sym_permit_local_command_token1] = ACTIONS(2946), + [aux_sym_permit_remote_open_token1] = ACTIONS(2946), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2946), + [aux_sym_port_token1] = ACTIONS(2946), + [aux_sym_preferred_authentications_token1] = ACTIONS(2946), + [aux_sym_protocol_token1] = ACTIONS(2946), + [aux_sym_proxy_command_token1] = ACTIONS(2946), + [aux_sym_proxy_jump_token1] = ACTIONS(2946), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2946), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2946), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2946), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2946), + [aux_sym_rekey_limit_token1] = ACTIONS(2946), + [aux_sym_remote_command_token1] = ACTIONS(2946), + [aux_sym_remote_forward_token1] = ACTIONS(2946), + [aux_sym_request_tty_token1] = ACTIONS(2946), + [aux_sym_required_rsa_size_token1] = ACTIONS(2946), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2946), + [aux_sym_security_key_provider_token1] = ACTIONS(2946), + [aux_sym_send_env_token1] = ACTIONS(2946), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2946), + [aux_sym_server_alive_interval_token1] = ACTIONS(2946), + [aux_sym_session_type_token1] = ACTIONS(2946), + [aux_sym_set_env_token1] = ACTIONS(2946), + [aux_sym_stdin_null_token1] = ACTIONS(2946), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2946), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2946), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2946), + [aux_sym_syslog_facility_token1] = ACTIONS(2946), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2946), + [aux_sym_keep_alive_token1] = ACTIONS(2946), + [aux_sym_tunnel_token1] = ACTIONS(2948), + [aux_sym_tunnel_device_token1] = ACTIONS(2946), + [aux_sym_update_host_keys_token1] = ACTIONS(2946), + [aux_sym_use_keychain_token1] = ACTIONS(2946), + [aux_sym_use_roaming_token1] = ACTIONS(2946), + [aux_sym_user_token1] = ACTIONS(2948), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2946), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2946), + [aux_sym_visual_host_key_token1] = ACTIONS(2946), + [aux_sym_xauth_location_token1] = ACTIONS(2946), }, [437] = { - [ts_builtin_sym_end] = ACTIONS(2945), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2947), - [anon_sym_DQUOTE] = ACTIONS(2945), - [aux_sym_match_token1] = ACTIONS(2945), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2945), - [aux_sym_address_family_token1] = ACTIONS(2945), - [aux_sym_batch_mode_token1] = ACTIONS(2945), - [aux_sym_bind_address_token1] = ACTIONS(2945), - [aux_sym_bind_interface_token1] = ACTIONS(2945), - [aux_sym_canonical_domains_token1] = ACTIONS(2945), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2945), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2945), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2945), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2945), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2945), - [aux_sym_certificate_file_token1] = ACTIONS(2945), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2945), - [aux_sym_check_host_ip_token1] = ACTIONS(2945), - [aux_sym_ciphers_token1] = ACTIONS(2945), - [aux_sym_cipher_token1] = ACTIONS(2947), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2945), - [aux_sym_compression_token1] = ACTIONS(2945), - [aux_sym_connection_attempts_token1] = ACTIONS(2945), - [aux_sym_connect_timeout_token1] = ACTIONS(2945), - [aux_sym_control_master_token1] = ACTIONS(2945), - [aux_sym_control_path_token1] = ACTIONS(2945), - [aux_sym_control_persist_token1] = ACTIONS(2945), - [aux_sym_dynamic_forward_token1] = ACTIONS(2945), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2945), - [aux_sym_escape_char_token1] = ACTIONS(2945), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2945), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2945), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2945), - [aux_sym_forward_agent_token1] = ACTIONS(2945), - [aux_sym_forward_x11_token1] = ACTIONS(2947), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2945), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2945), - [aux_sym_gateway_ports_token1] = ACTIONS(2945), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2945), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2945), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2945), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2945), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2945), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2945), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2945), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2945), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2945), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2945), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2945), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2945), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2945), - [aux_sym_host_key_alias_token1] = ACTIONS(2945), - [aux_sym_hostname_token1] = ACTIONS(2945), - [aux_sym_identities_only_token1] = ACTIONS(2945), - [aux_sym_identity_agent_token1] = ACTIONS(2945), - [aux_sym_identity_file_token1] = ACTIONS(2945), - [aux_sym_ignore_unknown_token1] = ACTIONS(2945), - [aux_sym_include_token1] = ACTIONS(2945), - [aux_sym_ip_qos_token1] = ACTIONS(2945), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2945), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2945), - [aux_sym_kex_algorithms_token1] = ACTIONS(2945), - [aux_sym_known_hosts_command_token1] = ACTIONS(2945), - [aux_sym_local_command_token1] = ACTIONS(2945), - [aux_sym_local_forward_token1] = ACTIONS(2945), - [aux_sym_log_level_token1] = ACTIONS(2945), - [aux_sym_log_verbose_token1] = ACTIONS(2945), - [aux_sym_macs_token1] = ACTIONS(2945), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2945), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2945), - [aux_sym_password_authentication_token1] = ACTIONS(2945), - [aux_sym_permit_local_command_token1] = ACTIONS(2945), - [aux_sym_permit_remote_open_token1] = ACTIONS(2945), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2945), - [aux_sym_port_token1] = ACTIONS(2945), - [aux_sym_preferred_authentications_token1] = ACTIONS(2945), - [aux_sym_protocol_token1] = ACTIONS(2945), - [aux_sym_proxy_command_token1] = ACTIONS(2945), - [aux_sym_proxy_jump_token1] = ACTIONS(2945), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2945), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2945), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2945), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2945), - [aux_sym_rekey_limit_token1] = ACTIONS(2945), - [aux_sym_remote_command_token1] = ACTIONS(2945), - [aux_sym_remote_forward_token1] = ACTIONS(2945), - [aux_sym_request_tty_token1] = ACTIONS(2945), - [aux_sym_required_rsa_size_token1] = ACTIONS(2945), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2945), - [aux_sym_security_key_provider_token1] = ACTIONS(2945), - [aux_sym_send_env_token1] = ACTIONS(2945), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2945), - [aux_sym_server_alive_interval_token1] = ACTIONS(2945), - [aux_sym_session_type_token1] = ACTIONS(2945), - [aux_sym_set_env_token1] = ACTIONS(2945), - [aux_sym_stdin_null_token1] = ACTIONS(2945), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2945), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2945), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2945), - [aux_sym_syslog_facility_token1] = ACTIONS(2945), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2945), - [aux_sym_keep_alive_token1] = ACTIONS(2945), - [aux_sym_tunnel_token1] = ACTIONS(2947), - [aux_sym_tunnel_device_token1] = ACTIONS(2945), - [aux_sym_update_host_keys_token1] = ACTIONS(2945), - [aux_sym_use_keychain_token1] = ACTIONS(2945), - [aux_sym_use_roaming_token1] = ACTIONS(2945), - [aux_sym_user_token1] = ACTIONS(2947), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2945), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2945), - [aux_sym_visual_host_key_token1] = ACTIONS(2945), - [aux_sym_xauth_location_token1] = ACTIONS(2945), + [ts_builtin_sym_end] = ACTIONS(2952), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2954), + [anon_sym_DQUOTE] = ACTIONS(2956), + [aux_sym_match_token1] = ACTIONS(2952), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2952), + [aux_sym_address_family_token1] = ACTIONS(2952), + [aux_sym_batch_mode_token1] = ACTIONS(2952), + [aux_sym_bind_address_token1] = ACTIONS(2952), + [aux_sym_bind_interface_token1] = ACTIONS(2952), + [aux_sym_canonical_domains_token1] = ACTIONS(2952), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2952), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2952), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2952), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2952), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2952), + [aux_sym_certificate_file_token1] = ACTIONS(2952), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2952), + [aux_sym_check_host_ip_token1] = ACTIONS(2952), + [aux_sym_ciphers_token1] = ACTIONS(2952), + [aux_sym_cipher_token1] = ACTIONS(2954), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2952), + [aux_sym_compression_token1] = ACTIONS(2952), + [aux_sym_connection_attempts_token1] = ACTIONS(2952), + [aux_sym_connect_timeout_token1] = ACTIONS(2952), + [aux_sym_control_master_token1] = ACTIONS(2952), + [aux_sym_control_path_token1] = ACTIONS(2952), + [aux_sym_control_persist_token1] = ACTIONS(2952), + [aux_sym_dynamic_forward_token1] = ACTIONS(2952), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2952), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2952), + [aux_sym_escape_char_token1] = ACTIONS(2952), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2952), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2952), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2952), + [aux_sym_forward_agent_token1] = ACTIONS(2952), + [aux_sym_forward_x11_token1] = ACTIONS(2954), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2952), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2952), + [aux_sym_gateway_ports_token1] = ACTIONS(2952), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2952), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2952), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2952), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2952), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2952), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2952), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2952), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2952), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2952), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2952), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2952), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2952), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2952), + [aux_sym_host_key_alias_token1] = ACTIONS(2952), + [aux_sym_hostname_token1] = ACTIONS(2952), + [aux_sym_identities_only_token1] = ACTIONS(2952), + [aux_sym_identity_agent_token1] = ACTIONS(2952), + [aux_sym_identity_file_token1] = ACTIONS(2952), + [aux_sym_ignore_unknown_token1] = ACTIONS(2952), + [aux_sym_include_token1] = ACTIONS(2952), + [aux_sym_ip_qos_token1] = ACTIONS(2952), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2952), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2952), + [aux_sym_kex_algorithms_token1] = ACTIONS(2952), + [aux_sym_known_hosts_command_token1] = ACTIONS(2952), + [aux_sym_local_command_token1] = ACTIONS(2952), + [aux_sym_local_forward_token1] = ACTIONS(2952), + [aux_sym_log_level_token1] = ACTIONS(2952), + [aux_sym_log_verbose_token1] = ACTIONS(2952), + [aux_sym_macs_token1] = ACTIONS(2952), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2952), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2952), + [aux_sym_password_authentication_token1] = ACTIONS(2952), + [aux_sym_permit_local_command_token1] = ACTIONS(2952), + [aux_sym_permit_remote_open_token1] = ACTIONS(2952), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2952), + [aux_sym_port_token1] = ACTIONS(2952), + [aux_sym_preferred_authentications_token1] = ACTIONS(2952), + [aux_sym_protocol_token1] = ACTIONS(2952), + [aux_sym_proxy_command_token1] = ACTIONS(2952), + [aux_sym_proxy_jump_token1] = ACTIONS(2952), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2952), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2952), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2952), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2952), + [aux_sym_rekey_limit_token1] = ACTIONS(2952), + [aux_sym_remote_command_token1] = ACTIONS(2952), + [aux_sym_remote_forward_token1] = ACTIONS(2952), + [aux_sym_request_tty_token1] = ACTIONS(2952), + [aux_sym_required_rsa_size_token1] = ACTIONS(2952), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2952), + [aux_sym_security_key_provider_token1] = ACTIONS(2952), + [aux_sym_send_env_token1] = ACTIONS(2952), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2952), + [aux_sym_server_alive_interval_token1] = ACTIONS(2952), + [aux_sym_session_type_token1] = ACTIONS(2952), + [aux_sym_set_env_token1] = ACTIONS(2952), + [aux_sym_stdin_null_token1] = ACTIONS(2952), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2952), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2952), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2952), + [aux_sym_syslog_facility_token1] = ACTIONS(2952), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2952), + [aux_sym_keep_alive_token1] = ACTIONS(2952), + [aux_sym_tunnel_token1] = ACTIONS(2954), + [aux_sym_tunnel_device_token1] = ACTIONS(2952), + [aux_sym_update_host_keys_token1] = ACTIONS(2952), + [aux_sym_use_keychain_token1] = ACTIONS(2952), + [aux_sym_use_roaming_token1] = ACTIONS(2952), + [aux_sym_user_token1] = ACTIONS(2954), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2952), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2952), + [aux_sym_visual_host_key_token1] = ACTIONS(2952), + [aux_sym_xauth_location_token1] = ACTIONS(2952), }, [438] = { - [ts_builtin_sym_end] = ACTIONS(2949), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2951), - [anon_sym_DQUOTE] = ACTIONS(2953), - [aux_sym_match_token1] = ACTIONS(2949), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2949), - [aux_sym_address_family_token1] = ACTIONS(2949), - [aux_sym_batch_mode_token1] = ACTIONS(2949), - [aux_sym_bind_address_token1] = ACTIONS(2949), - [aux_sym_bind_interface_token1] = ACTIONS(2949), - [aux_sym_canonical_domains_token1] = ACTIONS(2949), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2949), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2949), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2949), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2949), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2949), - [aux_sym_certificate_file_token1] = ACTIONS(2949), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2949), - [aux_sym_check_host_ip_token1] = ACTIONS(2949), - [aux_sym_ciphers_token1] = ACTIONS(2949), - [aux_sym_cipher_token1] = ACTIONS(2951), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2949), - [aux_sym_compression_token1] = ACTIONS(2949), - [aux_sym_connection_attempts_token1] = ACTIONS(2949), - [aux_sym_connect_timeout_token1] = ACTIONS(2949), - [aux_sym_control_master_token1] = ACTIONS(2949), - [aux_sym_control_path_token1] = ACTIONS(2949), - [aux_sym_control_persist_token1] = ACTIONS(2949), - [aux_sym_dynamic_forward_token1] = ACTIONS(2949), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2949), - [aux_sym_escape_char_token1] = ACTIONS(2949), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2949), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2949), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2949), - [aux_sym_forward_agent_token1] = ACTIONS(2949), - [aux_sym_forward_x11_token1] = ACTIONS(2951), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2949), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2949), - [aux_sym_gateway_ports_token1] = ACTIONS(2949), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2949), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2949), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2949), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2949), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2949), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2949), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2949), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2949), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2949), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2949), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2949), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2949), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2949), - [aux_sym_host_key_alias_token1] = ACTIONS(2949), - [aux_sym_hostname_token1] = ACTIONS(2949), - [aux_sym_identities_only_token1] = ACTIONS(2949), - [aux_sym_identity_agent_token1] = ACTIONS(2949), - [aux_sym_identity_file_token1] = ACTIONS(2949), - [aux_sym_ignore_unknown_token1] = ACTIONS(2949), - [aux_sym_include_token1] = ACTIONS(2949), - [aux_sym_ip_qos_token1] = ACTIONS(2949), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2949), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2949), - [aux_sym_kex_algorithms_token1] = ACTIONS(2949), - [aux_sym_known_hosts_command_token1] = ACTIONS(2949), - [aux_sym_local_command_token1] = ACTIONS(2949), - [aux_sym_local_forward_token1] = ACTIONS(2949), - [aux_sym_log_level_token1] = ACTIONS(2949), - [aux_sym_log_verbose_token1] = ACTIONS(2949), - [aux_sym_macs_token1] = ACTIONS(2949), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2949), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2949), - [aux_sym_password_authentication_token1] = ACTIONS(2949), - [aux_sym_permit_local_command_token1] = ACTIONS(2949), - [aux_sym_permit_remote_open_token1] = ACTIONS(2949), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2949), - [aux_sym_port_token1] = ACTIONS(2949), - [aux_sym_preferred_authentications_token1] = ACTIONS(2949), - [aux_sym_protocol_token1] = ACTIONS(2949), - [aux_sym_proxy_command_token1] = ACTIONS(2949), - [aux_sym_proxy_jump_token1] = ACTIONS(2949), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2949), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2949), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2949), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2949), - [aux_sym_rekey_limit_token1] = ACTIONS(2949), - [aux_sym_remote_command_token1] = ACTIONS(2949), - [aux_sym_remote_forward_token1] = ACTIONS(2949), - [aux_sym_request_tty_token1] = ACTIONS(2949), - [aux_sym_required_rsa_size_token1] = ACTIONS(2949), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2949), - [aux_sym_security_key_provider_token1] = ACTIONS(2949), - [aux_sym_send_env_token1] = ACTIONS(2949), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2949), - [aux_sym_server_alive_interval_token1] = ACTIONS(2949), - [aux_sym_session_type_token1] = ACTIONS(2949), - [aux_sym_set_env_token1] = ACTIONS(2949), - [aux_sym_stdin_null_token1] = ACTIONS(2949), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2949), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2949), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2949), - [aux_sym_syslog_facility_token1] = ACTIONS(2949), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2949), - [aux_sym_keep_alive_token1] = ACTIONS(2949), - [aux_sym_tunnel_token1] = ACTIONS(2951), - [aux_sym_tunnel_device_token1] = ACTIONS(2949), - [aux_sym_update_host_keys_token1] = ACTIONS(2949), - [aux_sym_use_keychain_token1] = ACTIONS(2949), - [aux_sym_use_roaming_token1] = ACTIONS(2949), - [aux_sym_user_token1] = ACTIONS(2951), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2949), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2949), - [aux_sym_visual_host_key_token1] = ACTIONS(2949), - [aux_sym_xauth_location_token1] = ACTIONS(2949), + [ts_builtin_sym_end] = ACTIONS(2958), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2960), + [anon_sym_DQUOTE] = ACTIONS(2958), + [aux_sym_match_token1] = ACTIONS(2958), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2958), + [aux_sym_address_family_token1] = ACTIONS(2958), + [aux_sym_batch_mode_token1] = ACTIONS(2958), + [aux_sym_bind_address_token1] = ACTIONS(2958), + [aux_sym_bind_interface_token1] = ACTIONS(2958), + [aux_sym_canonical_domains_token1] = ACTIONS(2958), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2958), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2958), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2958), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2958), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2958), + [aux_sym_certificate_file_token1] = ACTIONS(2958), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2958), + [aux_sym_check_host_ip_token1] = ACTIONS(2958), + [aux_sym_ciphers_token1] = ACTIONS(2958), + [aux_sym_cipher_token1] = ACTIONS(2960), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2958), + [aux_sym_compression_token1] = ACTIONS(2958), + [aux_sym_connection_attempts_token1] = ACTIONS(2958), + [aux_sym_connect_timeout_token1] = ACTIONS(2958), + [aux_sym_control_master_token1] = ACTIONS(2958), + [aux_sym_control_path_token1] = ACTIONS(2958), + [aux_sym_control_persist_token1] = ACTIONS(2958), + [aux_sym_dynamic_forward_token1] = ACTIONS(2958), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2958), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2958), + [aux_sym_escape_char_token1] = ACTIONS(2958), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2958), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2958), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2958), + [aux_sym_forward_agent_token1] = ACTIONS(2958), + [aux_sym_forward_x11_token1] = ACTIONS(2960), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2958), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2958), + [aux_sym_gateway_ports_token1] = ACTIONS(2958), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2958), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2958), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2958), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2958), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2958), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2958), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2958), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2958), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2958), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2958), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2958), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2958), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2958), + [aux_sym_host_key_alias_token1] = ACTIONS(2958), + [aux_sym_hostname_token1] = ACTIONS(2958), + [aux_sym_identities_only_token1] = ACTIONS(2958), + [aux_sym_identity_agent_token1] = ACTIONS(2958), + [aux_sym_identity_file_token1] = ACTIONS(2958), + [aux_sym_ignore_unknown_token1] = ACTIONS(2958), + [aux_sym_include_token1] = ACTIONS(2958), + [aux_sym_ip_qos_token1] = ACTIONS(2958), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2958), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2958), + [aux_sym_kex_algorithms_token1] = ACTIONS(2958), + [aux_sym_known_hosts_command_token1] = ACTIONS(2958), + [aux_sym_local_command_token1] = ACTIONS(2958), + [aux_sym_local_forward_token1] = ACTIONS(2958), + [aux_sym_log_level_token1] = ACTIONS(2958), + [aux_sym_log_verbose_token1] = ACTIONS(2958), + [aux_sym_macs_token1] = ACTIONS(2958), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2958), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2958), + [aux_sym_password_authentication_token1] = ACTIONS(2958), + [aux_sym_permit_local_command_token1] = ACTIONS(2958), + [aux_sym_permit_remote_open_token1] = ACTIONS(2958), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2958), + [aux_sym_port_token1] = ACTIONS(2958), + [aux_sym_preferred_authentications_token1] = ACTIONS(2958), + [aux_sym_protocol_token1] = ACTIONS(2958), + [aux_sym_proxy_command_token1] = ACTIONS(2958), + [aux_sym_proxy_jump_token1] = ACTIONS(2958), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2958), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2958), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2958), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2958), + [aux_sym_rekey_limit_token1] = ACTIONS(2958), + [aux_sym_remote_command_token1] = ACTIONS(2958), + [aux_sym_remote_forward_token1] = ACTIONS(2958), + [aux_sym_request_tty_token1] = ACTIONS(2958), + [aux_sym_required_rsa_size_token1] = ACTIONS(2958), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2958), + [aux_sym_security_key_provider_token1] = ACTIONS(2958), + [aux_sym_send_env_token1] = ACTIONS(2958), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2958), + [aux_sym_server_alive_interval_token1] = ACTIONS(2958), + [aux_sym_session_type_token1] = ACTIONS(2958), + [aux_sym_set_env_token1] = ACTIONS(2958), + [aux_sym_stdin_null_token1] = ACTIONS(2958), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2958), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2958), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2958), + [aux_sym_syslog_facility_token1] = ACTIONS(2958), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2958), + [aux_sym_keep_alive_token1] = ACTIONS(2958), + [aux_sym_tunnel_token1] = ACTIONS(2960), + [aux_sym_tunnel_device_token1] = ACTIONS(2958), + [aux_sym_update_host_keys_token1] = ACTIONS(2958), + [aux_sym_use_keychain_token1] = ACTIONS(2958), + [aux_sym_use_roaming_token1] = ACTIONS(2958), + [aux_sym_user_token1] = ACTIONS(2960), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2958), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2958), + [aux_sym_visual_host_key_token1] = ACTIONS(2958), + [aux_sym_xauth_location_token1] = ACTIONS(2958), }, [439] = { - [ts_builtin_sym_end] = ACTIONS(2955), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2957), - [anon_sym_DQUOTE] = ACTIONS(2955), - [aux_sym_match_token1] = ACTIONS(2955), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2955), - [aux_sym_address_family_token1] = ACTIONS(2955), - [aux_sym_batch_mode_token1] = ACTIONS(2955), - [aux_sym_bind_address_token1] = ACTIONS(2955), - [aux_sym_bind_interface_token1] = ACTIONS(2955), - [aux_sym_canonical_domains_token1] = ACTIONS(2955), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2955), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2955), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2955), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2955), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2955), - [aux_sym_certificate_file_token1] = ACTIONS(2955), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2955), - [aux_sym_check_host_ip_token1] = ACTIONS(2955), - [aux_sym_ciphers_token1] = ACTIONS(2955), - [aux_sym_cipher_token1] = ACTIONS(2957), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2955), - [aux_sym_compression_token1] = ACTIONS(2955), - [aux_sym_connection_attempts_token1] = ACTIONS(2955), - [aux_sym_connect_timeout_token1] = ACTIONS(2955), - [aux_sym_control_master_token1] = ACTIONS(2955), - [aux_sym_control_path_token1] = ACTIONS(2955), - [aux_sym_control_persist_token1] = ACTIONS(2955), - [aux_sym_dynamic_forward_token1] = ACTIONS(2955), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2955), - [aux_sym_escape_char_token1] = ACTIONS(2955), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2955), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2955), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2955), - [aux_sym_forward_agent_token1] = ACTIONS(2955), - [aux_sym_forward_x11_token1] = ACTIONS(2957), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2955), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2955), - [aux_sym_gateway_ports_token1] = ACTIONS(2955), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2955), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2955), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2955), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2955), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2955), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2955), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2955), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2955), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2955), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2955), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2955), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2955), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2955), - [aux_sym_host_key_alias_token1] = ACTIONS(2955), - [aux_sym_hostname_token1] = ACTIONS(2955), - [aux_sym_identities_only_token1] = ACTIONS(2955), - [aux_sym_identity_agent_token1] = ACTIONS(2955), - [aux_sym_identity_file_token1] = ACTIONS(2955), - [aux_sym_ignore_unknown_token1] = ACTIONS(2955), - [aux_sym_include_token1] = ACTIONS(2955), - [aux_sym_ip_qos_token1] = ACTIONS(2955), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2955), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2955), - [aux_sym_kex_algorithms_token1] = ACTIONS(2955), - [aux_sym_known_hosts_command_token1] = ACTIONS(2955), - [aux_sym_local_command_token1] = ACTIONS(2955), - [aux_sym_local_forward_token1] = ACTIONS(2955), - [aux_sym_log_level_token1] = ACTIONS(2955), - [aux_sym_log_verbose_token1] = ACTIONS(2955), - [aux_sym_macs_token1] = ACTIONS(2955), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2955), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2955), - [aux_sym_password_authentication_token1] = ACTIONS(2955), - [aux_sym_permit_local_command_token1] = ACTIONS(2955), - [aux_sym_permit_remote_open_token1] = ACTIONS(2955), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2955), - [aux_sym_port_token1] = ACTIONS(2955), - [aux_sym_preferred_authentications_token1] = ACTIONS(2955), - [aux_sym_protocol_token1] = ACTIONS(2955), - [aux_sym_proxy_command_token1] = ACTIONS(2955), - [aux_sym_proxy_jump_token1] = ACTIONS(2955), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2955), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2955), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2955), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2955), - [aux_sym_rekey_limit_token1] = ACTIONS(2955), - [aux_sym_remote_command_token1] = ACTIONS(2955), - [aux_sym_remote_forward_token1] = ACTIONS(2955), - [aux_sym_request_tty_token1] = ACTIONS(2955), - [aux_sym_required_rsa_size_token1] = ACTIONS(2955), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2955), - [aux_sym_security_key_provider_token1] = ACTIONS(2955), - [aux_sym_send_env_token1] = ACTIONS(2955), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2955), - [aux_sym_server_alive_interval_token1] = ACTIONS(2955), - [aux_sym_session_type_token1] = ACTIONS(2955), - [aux_sym_set_env_token1] = ACTIONS(2955), - [aux_sym_stdin_null_token1] = ACTIONS(2955), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2955), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2955), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2955), - [aux_sym_syslog_facility_token1] = ACTIONS(2955), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2955), - [aux_sym_keep_alive_token1] = ACTIONS(2955), - [aux_sym_tunnel_token1] = ACTIONS(2957), - [aux_sym_tunnel_device_token1] = ACTIONS(2955), - [aux_sym_update_host_keys_token1] = ACTIONS(2955), - [aux_sym_use_keychain_token1] = ACTIONS(2955), - [aux_sym_use_roaming_token1] = ACTIONS(2955), - [aux_sym_user_token1] = ACTIONS(2957), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2955), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2955), - [aux_sym_visual_host_key_token1] = ACTIONS(2955), - [aux_sym_xauth_location_token1] = ACTIONS(2955), + [ts_builtin_sym_end] = ACTIONS(2962), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2962), + [aux_sym_match_token1] = ACTIONS(2962), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2962), + [aux_sym_address_family_token1] = ACTIONS(2962), + [aux_sym_batch_mode_token1] = ACTIONS(2962), + [aux_sym_bind_address_token1] = ACTIONS(2962), + [aux_sym_bind_interface_token1] = ACTIONS(2962), + [aux_sym_canonical_domains_token1] = ACTIONS(2962), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2962), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2962), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2962), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2962), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2962), + [aux_sym_certificate_file_token1] = ACTIONS(2962), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2962), + [aux_sym_check_host_ip_token1] = ACTIONS(2962), + [aux_sym_ciphers_token1] = ACTIONS(2962), + [aux_sym_cipher_token1] = ACTIONS(2964), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2962), + [aux_sym_compression_token1] = ACTIONS(2962), + [aux_sym_connection_attempts_token1] = ACTIONS(2962), + [aux_sym_connect_timeout_token1] = ACTIONS(2962), + [aux_sym_control_master_token1] = ACTIONS(2962), + [aux_sym_control_path_token1] = ACTIONS(2962), + [aux_sym_control_persist_token1] = ACTIONS(2962), + [aux_sym_dynamic_forward_token1] = ACTIONS(2962), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2962), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2962), + [aux_sym_escape_char_token1] = ACTIONS(2962), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2962), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2962), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2962), + [aux_sym_forward_agent_token1] = ACTIONS(2962), + [aux_sym_forward_x11_token1] = ACTIONS(2964), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2962), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2962), + [aux_sym_gateway_ports_token1] = ACTIONS(2962), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2962), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2962), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2962), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2962), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2962), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2962), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2962), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2962), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2962), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2962), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2962), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2962), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2962), + [aux_sym_host_key_alias_token1] = ACTIONS(2962), + [aux_sym_hostname_token1] = ACTIONS(2962), + [aux_sym_identities_only_token1] = ACTIONS(2962), + [aux_sym_identity_agent_token1] = ACTIONS(2962), + [aux_sym_identity_file_token1] = ACTIONS(2962), + [aux_sym_ignore_unknown_token1] = ACTIONS(2962), + [aux_sym_include_token1] = ACTIONS(2962), + [aux_sym_ip_qos_token1] = ACTIONS(2962), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2962), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2962), + [aux_sym_kex_algorithms_token1] = ACTIONS(2962), + [aux_sym_known_hosts_command_token1] = ACTIONS(2962), + [aux_sym_local_command_token1] = ACTIONS(2962), + [aux_sym_local_forward_token1] = ACTIONS(2962), + [aux_sym_log_level_token1] = ACTIONS(2962), + [aux_sym_log_verbose_token1] = ACTIONS(2962), + [aux_sym_macs_token1] = ACTIONS(2962), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2962), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2962), + [aux_sym_password_authentication_token1] = ACTIONS(2962), + [aux_sym_permit_local_command_token1] = ACTIONS(2962), + [aux_sym_permit_remote_open_token1] = ACTIONS(2962), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2962), + [aux_sym_port_token1] = ACTIONS(2962), + [aux_sym_preferred_authentications_token1] = ACTIONS(2962), + [aux_sym_protocol_token1] = ACTIONS(2962), + [aux_sym_proxy_command_token1] = ACTIONS(2962), + [aux_sym_proxy_jump_token1] = ACTIONS(2962), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2962), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2962), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2962), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2962), + [aux_sym_rekey_limit_token1] = ACTIONS(2962), + [aux_sym_remote_command_token1] = ACTIONS(2962), + [aux_sym_remote_forward_token1] = ACTIONS(2962), + [aux_sym_request_tty_token1] = ACTIONS(2962), + [aux_sym_required_rsa_size_token1] = ACTIONS(2962), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2962), + [aux_sym_security_key_provider_token1] = ACTIONS(2962), + [aux_sym_send_env_token1] = ACTIONS(2962), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2962), + [aux_sym_server_alive_interval_token1] = ACTIONS(2962), + [aux_sym_session_type_token1] = ACTIONS(2962), + [aux_sym_set_env_token1] = ACTIONS(2962), + [aux_sym_stdin_null_token1] = ACTIONS(2962), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2962), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2962), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2962), + [aux_sym_syslog_facility_token1] = ACTIONS(2962), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2962), + [aux_sym_keep_alive_token1] = ACTIONS(2962), + [aux_sym_tunnel_token1] = ACTIONS(2964), + [aux_sym_tunnel_device_token1] = ACTIONS(2962), + [aux_sym_update_host_keys_token1] = ACTIONS(2962), + [aux_sym_use_keychain_token1] = ACTIONS(2962), + [aux_sym_use_roaming_token1] = ACTIONS(2962), + [aux_sym_user_token1] = ACTIONS(2964), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2962), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2962), + [aux_sym_visual_host_key_token1] = ACTIONS(2962), + [aux_sym_xauth_location_token1] = ACTIONS(2962), }, [440] = { - [ts_builtin_sym_end] = ACTIONS(2959), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2961), - [anon_sym_DQUOTE] = ACTIONS(2963), - [aux_sym_match_token1] = ACTIONS(2959), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2959), - [aux_sym_address_family_token1] = ACTIONS(2959), - [aux_sym_batch_mode_token1] = ACTIONS(2959), - [aux_sym_bind_address_token1] = ACTIONS(2959), - [aux_sym_bind_interface_token1] = ACTIONS(2959), - [aux_sym_canonical_domains_token1] = ACTIONS(2959), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2959), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2959), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2959), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2959), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2959), - [aux_sym_certificate_file_token1] = ACTIONS(2959), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2959), - [aux_sym_check_host_ip_token1] = ACTIONS(2959), - [aux_sym_ciphers_token1] = ACTIONS(2959), - [aux_sym_cipher_token1] = ACTIONS(2961), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2959), - [aux_sym_compression_token1] = ACTIONS(2959), - [aux_sym_connection_attempts_token1] = ACTIONS(2959), - [aux_sym_connect_timeout_token1] = ACTIONS(2959), - [aux_sym_control_master_token1] = ACTIONS(2959), - [aux_sym_control_path_token1] = ACTIONS(2959), - [aux_sym_control_persist_token1] = ACTIONS(2959), - [aux_sym_dynamic_forward_token1] = ACTIONS(2959), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2959), - [aux_sym_escape_char_token1] = ACTIONS(2959), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2959), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2959), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2959), - [aux_sym_forward_agent_token1] = ACTIONS(2959), - [aux_sym_forward_x11_token1] = ACTIONS(2961), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2959), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2959), - [aux_sym_gateway_ports_token1] = ACTIONS(2959), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2959), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2959), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2959), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2959), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2959), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2959), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2959), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2959), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2959), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2959), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2959), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2959), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2959), - [aux_sym_host_key_alias_token1] = ACTIONS(2959), - [aux_sym_hostname_token1] = ACTIONS(2959), - [aux_sym_identities_only_token1] = ACTIONS(2959), - [aux_sym_identity_agent_token1] = ACTIONS(2959), - [aux_sym_identity_file_token1] = ACTIONS(2959), - [aux_sym_ignore_unknown_token1] = ACTIONS(2959), - [aux_sym_include_token1] = ACTIONS(2959), - [aux_sym_ip_qos_token1] = ACTIONS(2959), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2959), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2959), - [aux_sym_kex_algorithms_token1] = ACTIONS(2959), - [aux_sym_known_hosts_command_token1] = ACTIONS(2959), - [aux_sym_local_command_token1] = ACTIONS(2959), - [aux_sym_local_forward_token1] = ACTIONS(2959), - [aux_sym_log_level_token1] = ACTIONS(2959), - [aux_sym_log_verbose_token1] = ACTIONS(2959), - [aux_sym_macs_token1] = ACTIONS(2959), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2959), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2959), - [aux_sym_password_authentication_token1] = ACTIONS(2959), - [aux_sym_permit_local_command_token1] = ACTIONS(2959), - [aux_sym_permit_remote_open_token1] = ACTIONS(2959), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2959), - [aux_sym_port_token1] = ACTIONS(2959), - [aux_sym_preferred_authentications_token1] = ACTIONS(2959), - [aux_sym_protocol_token1] = ACTIONS(2959), - [aux_sym_proxy_command_token1] = ACTIONS(2959), - [aux_sym_proxy_jump_token1] = ACTIONS(2959), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2959), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2959), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2959), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2959), - [aux_sym_rekey_limit_token1] = ACTIONS(2959), - [aux_sym_remote_command_token1] = ACTIONS(2959), - [aux_sym_remote_forward_token1] = ACTIONS(2959), - [aux_sym_request_tty_token1] = ACTIONS(2959), - [aux_sym_required_rsa_size_token1] = ACTIONS(2959), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2959), - [aux_sym_security_key_provider_token1] = ACTIONS(2959), - [aux_sym_send_env_token1] = ACTIONS(2959), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2959), - [aux_sym_server_alive_interval_token1] = ACTIONS(2959), - [aux_sym_session_type_token1] = ACTIONS(2959), - [aux_sym_set_env_token1] = ACTIONS(2959), - [aux_sym_stdin_null_token1] = ACTIONS(2959), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2959), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2959), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2959), - [aux_sym_syslog_facility_token1] = ACTIONS(2959), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2959), - [aux_sym_keep_alive_token1] = ACTIONS(2959), - [aux_sym_tunnel_token1] = ACTIONS(2961), - [aux_sym_tunnel_device_token1] = ACTIONS(2959), - [aux_sym_update_host_keys_token1] = ACTIONS(2959), - [aux_sym_use_keychain_token1] = ACTIONS(2959), - [aux_sym_use_roaming_token1] = ACTIONS(2959), - [aux_sym_user_token1] = ACTIONS(2961), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2959), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2959), - [aux_sym_visual_host_key_token1] = ACTIONS(2959), - [aux_sym_xauth_location_token1] = ACTIONS(2959), + [ts_builtin_sym_end] = ACTIONS(2966), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2968), + [anon_sym_DQUOTE] = ACTIONS(2970), + [aux_sym_match_token1] = ACTIONS(2966), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2966), + [aux_sym_address_family_token1] = ACTIONS(2966), + [aux_sym_batch_mode_token1] = ACTIONS(2966), + [aux_sym_bind_address_token1] = ACTIONS(2966), + [aux_sym_bind_interface_token1] = ACTIONS(2966), + [aux_sym_canonical_domains_token1] = ACTIONS(2966), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2966), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2966), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2966), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2966), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2966), + [aux_sym_certificate_file_token1] = ACTIONS(2966), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2966), + [aux_sym_check_host_ip_token1] = ACTIONS(2966), + [aux_sym_ciphers_token1] = ACTIONS(2966), + [aux_sym_cipher_token1] = ACTIONS(2968), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2966), + [aux_sym_compression_token1] = ACTIONS(2966), + [aux_sym_connection_attempts_token1] = ACTIONS(2966), + [aux_sym_connect_timeout_token1] = ACTIONS(2966), + [aux_sym_control_master_token1] = ACTIONS(2966), + [aux_sym_control_path_token1] = ACTIONS(2966), + [aux_sym_control_persist_token1] = ACTIONS(2966), + [aux_sym_dynamic_forward_token1] = ACTIONS(2966), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2966), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2966), + [aux_sym_escape_char_token1] = ACTIONS(2966), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2966), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2966), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2966), + [aux_sym_forward_agent_token1] = ACTIONS(2966), + [aux_sym_forward_x11_token1] = ACTIONS(2968), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2966), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2966), + [aux_sym_gateway_ports_token1] = ACTIONS(2966), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2966), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2966), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2966), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2966), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2966), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2966), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2966), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2966), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2966), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2966), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2966), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2966), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2966), + [aux_sym_host_key_alias_token1] = ACTIONS(2966), + [aux_sym_hostname_token1] = ACTIONS(2966), + [aux_sym_identities_only_token1] = ACTIONS(2966), + [aux_sym_identity_agent_token1] = ACTIONS(2966), + [aux_sym_identity_file_token1] = ACTIONS(2966), + [aux_sym_ignore_unknown_token1] = ACTIONS(2966), + [aux_sym_include_token1] = ACTIONS(2966), + [aux_sym_ip_qos_token1] = ACTIONS(2966), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2966), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2966), + [aux_sym_kex_algorithms_token1] = ACTIONS(2966), + [aux_sym_known_hosts_command_token1] = ACTIONS(2966), + [aux_sym_local_command_token1] = ACTIONS(2966), + [aux_sym_local_forward_token1] = ACTIONS(2966), + [aux_sym_log_level_token1] = ACTIONS(2966), + [aux_sym_log_verbose_token1] = ACTIONS(2966), + [aux_sym_macs_token1] = ACTIONS(2966), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2966), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2966), + [aux_sym_password_authentication_token1] = ACTIONS(2966), + [aux_sym_permit_local_command_token1] = ACTIONS(2966), + [aux_sym_permit_remote_open_token1] = ACTIONS(2966), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2966), + [aux_sym_port_token1] = ACTIONS(2966), + [aux_sym_preferred_authentications_token1] = ACTIONS(2966), + [aux_sym_protocol_token1] = ACTIONS(2966), + [aux_sym_proxy_command_token1] = ACTIONS(2966), + [aux_sym_proxy_jump_token1] = ACTIONS(2966), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2966), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2966), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2966), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2966), + [aux_sym_rekey_limit_token1] = ACTIONS(2966), + [aux_sym_remote_command_token1] = ACTIONS(2966), + [aux_sym_remote_forward_token1] = ACTIONS(2966), + [aux_sym_request_tty_token1] = ACTIONS(2966), + [aux_sym_required_rsa_size_token1] = ACTIONS(2966), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2966), + [aux_sym_security_key_provider_token1] = ACTIONS(2966), + [aux_sym_send_env_token1] = ACTIONS(2966), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2966), + [aux_sym_server_alive_interval_token1] = ACTIONS(2966), + [aux_sym_session_type_token1] = ACTIONS(2966), + [aux_sym_set_env_token1] = ACTIONS(2966), + [aux_sym_stdin_null_token1] = ACTIONS(2966), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2966), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2966), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2966), + [aux_sym_syslog_facility_token1] = ACTIONS(2966), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2966), + [aux_sym_keep_alive_token1] = ACTIONS(2966), + [aux_sym_tunnel_token1] = ACTIONS(2968), + [aux_sym_tunnel_device_token1] = ACTIONS(2966), + [aux_sym_update_host_keys_token1] = ACTIONS(2966), + [aux_sym_use_keychain_token1] = ACTIONS(2966), + [aux_sym_use_roaming_token1] = ACTIONS(2966), + [aux_sym_user_token1] = ACTIONS(2968), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2966), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2966), + [aux_sym_visual_host_key_token1] = ACTIONS(2966), + [aux_sym_xauth_location_token1] = ACTIONS(2966), }, [441] = { - [ts_builtin_sym_end] = ACTIONS(2965), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2965), - [aux_sym_match_token1] = ACTIONS(2965), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2965), - [aux_sym_address_family_token1] = ACTIONS(2965), - [aux_sym_batch_mode_token1] = ACTIONS(2965), - [aux_sym_bind_address_token1] = ACTIONS(2965), - [aux_sym_bind_interface_token1] = ACTIONS(2965), - [aux_sym_canonical_domains_token1] = ACTIONS(2965), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2965), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2965), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2965), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2965), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2965), - [aux_sym_certificate_file_token1] = ACTIONS(2965), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2965), - [aux_sym_check_host_ip_token1] = ACTIONS(2965), - [aux_sym_ciphers_token1] = ACTIONS(2965), - [aux_sym_cipher_token1] = ACTIONS(2967), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2965), - [aux_sym_compression_token1] = ACTIONS(2965), - [aux_sym_connection_attempts_token1] = ACTIONS(2965), - [aux_sym_connect_timeout_token1] = ACTIONS(2965), - [aux_sym_control_master_token1] = ACTIONS(2965), - [aux_sym_control_path_token1] = ACTIONS(2965), - [aux_sym_control_persist_token1] = ACTIONS(2965), - [aux_sym_dynamic_forward_token1] = ACTIONS(2965), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2965), - [aux_sym_escape_char_token1] = ACTIONS(2965), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2965), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2965), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2965), - [aux_sym_forward_agent_token1] = ACTIONS(2965), - [aux_sym_forward_x11_token1] = ACTIONS(2967), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2965), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2965), - [aux_sym_gateway_ports_token1] = ACTIONS(2965), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2965), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2965), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2965), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2965), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2965), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2965), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2965), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2965), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2965), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2965), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2965), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2965), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2965), - [aux_sym_host_key_alias_token1] = ACTIONS(2965), - [aux_sym_hostname_token1] = ACTIONS(2965), - [aux_sym_identities_only_token1] = ACTIONS(2965), - [aux_sym_identity_agent_token1] = ACTIONS(2965), - [aux_sym_identity_file_token1] = ACTIONS(2965), - [aux_sym_ignore_unknown_token1] = ACTIONS(2965), - [aux_sym_include_token1] = ACTIONS(2965), - [aux_sym_ip_qos_token1] = ACTIONS(2965), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2965), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2965), - [aux_sym_kex_algorithms_token1] = ACTIONS(2965), - [aux_sym_known_hosts_command_token1] = ACTIONS(2965), - [aux_sym_local_command_token1] = ACTIONS(2965), - [aux_sym_local_forward_token1] = ACTIONS(2965), - [aux_sym_log_level_token1] = ACTIONS(2965), - [aux_sym_log_verbose_token1] = ACTIONS(2965), - [aux_sym_macs_token1] = ACTIONS(2965), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2965), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2965), - [aux_sym_password_authentication_token1] = ACTIONS(2965), - [aux_sym_permit_local_command_token1] = ACTIONS(2965), - [aux_sym_permit_remote_open_token1] = ACTIONS(2965), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2965), - [aux_sym_port_token1] = ACTIONS(2965), - [aux_sym_preferred_authentications_token1] = ACTIONS(2965), - [aux_sym_protocol_token1] = ACTIONS(2965), - [aux_sym_proxy_command_token1] = ACTIONS(2965), - [aux_sym_proxy_jump_token1] = ACTIONS(2965), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2965), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2965), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2965), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2965), - [aux_sym_rekey_limit_token1] = ACTIONS(2965), - [aux_sym_remote_command_token1] = ACTIONS(2965), - [aux_sym_remote_forward_token1] = ACTIONS(2965), - [aux_sym_request_tty_token1] = ACTIONS(2965), - [aux_sym_required_rsa_size_token1] = ACTIONS(2965), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2965), - [aux_sym_security_key_provider_token1] = ACTIONS(2965), - [aux_sym_send_env_token1] = ACTIONS(2965), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2965), - [aux_sym_server_alive_interval_token1] = ACTIONS(2965), - [aux_sym_session_type_token1] = ACTIONS(2965), - [aux_sym_set_env_token1] = ACTIONS(2965), - [aux_sym_stdin_null_token1] = ACTIONS(2965), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2965), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2965), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2965), - [aux_sym_syslog_facility_token1] = ACTIONS(2965), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2965), - [aux_sym_keep_alive_token1] = ACTIONS(2965), - [aux_sym_tunnel_token1] = ACTIONS(2967), - [aux_sym_tunnel_device_token1] = ACTIONS(2965), - [aux_sym_update_host_keys_token1] = ACTIONS(2965), - [aux_sym_use_keychain_token1] = ACTIONS(2965), - [aux_sym_use_roaming_token1] = ACTIONS(2965), - [aux_sym_user_token1] = ACTIONS(2967), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2965), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2965), - [aux_sym_visual_host_key_token1] = ACTIONS(2965), - [aux_sym_xauth_location_token1] = ACTIONS(2965), + [ts_builtin_sym_end] = ACTIONS(2972), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2974), + [anon_sym_DQUOTE] = ACTIONS(2972), + [aux_sym_match_token1] = ACTIONS(2972), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2972), + [aux_sym_address_family_token1] = ACTIONS(2972), + [aux_sym_batch_mode_token1] = ACTIONS(2972), + [aux_sym_bind_address_token1] = ACTIONS(2972), + [aux_sym_bind_interface_token1] = ACTIONS(2972), + [aux_sym_canonical_domains_token1] = ACTIONS(2972), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2972), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2972), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2972), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2972), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2972), + [aux_sym_certificate_file_token1] = ACTIONS(2972), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2972), + [aux_sym_check_host_ip_token1] = ACTIONS(2972), + [aux_sym_ciphers_token1] = ACTIONS(2972), + [aux_sym_cipher_token1] = ACTIONS(2974), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2972), + [aux_sym_compression_token1] = ACTIONS(2972), + [aux_sym_connection_attempts_token1] = ACTIONS(2972), + [aux_sym_connect_timeout_token1] = ACTIONS(2972), + [aux_sym_control_master_token1] = ACTIONS(2972), + [aux_sym_control_path_token1] = ACTIONS(2972), + [aux_sym_control_persist_token1] = ACTIONS(2972), + [aux_sym_dynamic_forward_token1] = ACTIONS(2972), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2972), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2972), + [aux_sym_escape_char_token1] = ACTIONS(2972), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2972), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2972), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2972), + [aux_sym_forward_agent_token1] = ACTIONS(2972), + [aux_sym_forward_x11_token1] = ACTIONS(2974), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2972), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2972), + [aux_sym_gateway_ports_token1] = ACTIONS(2972), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2972), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2972), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2972), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2972), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2972), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2972), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2972), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2972), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2972), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2972), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2972), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2972), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2972), + [aux_sym_host_key_alias_token1] = ACTIONS(2972), + [aux_sym_hostname_token1] = ACTIONS(2972), + [aux_sym_identities_only_token1] = ACTIONS(2972), + [aux_sym_identity_agent_token1] = ACTIONS(2972), + [aux_sym_identity_file_token1] = ACTIONS(2972), + [aux_sym_ignore_unknown_token1] = ACTIONS(2972), + [aux_sym_include_token1] = ACTIONS(2972), + [aux_sym_ip_qos_token1] = ACTIONS(2972), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2972), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2972), + [aux_sym_kex_algorithms_token1] = ACTIONS(2972), + [aux_sym_known_hosts_command_token1] = ACTIONS(2972), + [aux_sym_local_command_token1] = ACTIONS(2972), + [aux_sym_local_forward_token1] = ACTIONS(2972), + [aux_sym_log_level_token1] = ACTIONS(2972), + [aux_sym_log_verbose_token1] = ACTIONS(2972), + [aux_sym_macs_token1] = ACTIONS(2972), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2972), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2972), + [aux_sym_password_authentication_token1] = ACTIONS(2972), + [aux_sym_permit_local_command_token1] = ACTIONS(2972), + [aux_sym_permit_remote_open_token1] = ACTIONS(2972), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2972), + [aux_sym_port_token1] = ACTIONS(2972), + [aux_sym_preferred_authentications_token1] = ACTIONS(2972), + [aux_sym_protocol_token1] = ACTIONS(2972), + [aux_sym_proxy_command_token1] = ACTIONS(2972), + [aux_sym_proxy_jump_token1] = ACTIONS(2972), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2972), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2972), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2972), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2972), + [aux_sym_rekey_limit_token1] = ACTIONS(2972), + [aux_sym_remote_command_token1] = ACTIONS(2972), + [aux_sym_remote_forward_token1] = ACTIONS(2972), + [aux_sym_request_tty_token1] = ACTIONS(2972), + [aux_sym_required_rsa_size_token1] = ACTIONS(2972), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2972), + [aux_sym_security_key_provider_token1] = ACTIONS(2972), + [aux_sym_send_env_token1] = ACTIONS(2972), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2972), + [aux_sym_server_alive_interval_token1] = ACTIONS(2972), + [aux_sym_session_type_token1] = ACTIONS(2972), + [aux_sym_set_env_token1] = ACTIONS(2972), + [aux_sym_stdin_null_token1] = ACTIONS(2972), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2972), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2972), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2972), + [aux_sym_syslog_facility_token1] = ACTIONS(2972), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2972), + [aux_sym_keep_alive_token1] = ACTIONS(2972), + [aux_sym_tunnel_token1] = ACTIONS(2974), + [aux_sym_tunnel_device_token1] = ACTIONS(2972), + [aux_sym_update_host_keys_token1] = ACTIONS(2972), + [aux_sym_use_keychain_token1] = ACTIONS(2972), + [aux_sym_use_roaming_token1] = ACTIONS(2972), + [aux_sym_user_token1] = ACTIONS(2974), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2972), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2972), + [aux_sym_visual_host_key_token1] = ACTIONS(2972), + [aux_sym_xauth_location_token1] = ACTIONS(2972), }, [442] = { - [ts_builtin_sym_end] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2973), - [aux_sym_match_token1] = ACTIONS(2969), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2969), - [aux_sym_address_family_token1] = ACTIONS(2969), - [aux_sym_batch_mode_token1] = ACTIONS(2969), - [aux_sym_bind_address_token1] = ACTIONS(2969), - [aux_sym_bind_interface_token1] = ACTIONS(2969), - [aux_sym_canonical_domains_token1] = ACTIONS(2969), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2969), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2969), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2969), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2969), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2969), - [aux_sym_certificate_file_token1] = ACTIONS(2969), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2969), - [aux_sym_check_host_ip_token1] = ACTIONS(2969), - [aux_sym_ciphers_token1] = ACTIONS(2969), - [aux_sym_cipher_token1] = ACTIONS(2971), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2969), - [aux_sym_compression_token1] = ACTIONS(2969), - [aux_sym_connection_attempts_token1] = ACTIONS(2969), - [aux_sym_connect_timeout_token1] = ACTIONS(2969), - [aux_sym_control_master_token1] = ACTIONS(2969), - [aux_sym_control_path_token1] = ACTIONS(2969), - [aux_sym_control_persist_token1] = ACTIONS(2969), - [aux_sym_dynamic_forward_token1] = ACTIONS(2969), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2969), - [aux_sym_escape_char_token1] = ACTIONS(2969), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2969), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2969), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2969), - [aux_sym_forward_agent_token1] = ACTIONS(2969), - [aux_sym_forward_x11_token1] = ACTIONS(2971), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2969), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2969), - [aux_sym_gateway_ports_token1] = ACTIONS(2969), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2969), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2969), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2969), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2969), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2969), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2969), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2969), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2969), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2969), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2969), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2969), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2969), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2969), - [aux_sym_host_key_alias_token1] = ACTIONS(2969), - [aux_sym_hostname_token1] = ACTIONS(2969), - [aux_sym_identities_only_token1] = ACTIONS(2969), - [aux_sym_identity_agent_token1] = ACTIONS(2969), - [aux_sym_identity_file_token1] = ACTIONS(2969), - [aux_sym_ignore_unknown_token1] = ACTIONS(2969), - [aux_sym_include_token1] = ACTIONS(2969), - [aux_sym_ip_qos_token1] = ACTIONS(2969), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2969), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2969), - [aux_sym_kex_algorithms_token1] = ACTIONS(2969), - [aux_sym_known_hosts_command_token1] = ACTIONS(2969), - [aux_sym_local_command_token1] = ACTIONS(2969), - [aux_sym_local_forward_token1] = ACTIONS(2969), - [aux_sym_log_level_token1] = ACTIONS(2969), - [aux_sym_log_verbose_token1] = ACTIONS(2969), - [aux_sym_macs_token1] = ACTIONS(2969), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2969), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2969), - [aux_sym_password_authentication_token1] = ACTIONS(2969), - [aux_sym_permit_local_command_token1] = ACTIONS(2969), - [aux_sym_permit_remote_open_token1] = ACTIONS(2969), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2969), - [aux_sym_port_token1] = ACTIONS(2969), - [aux_sym_preferred_authentications_token1] = ACTIONS(2969), - [aux_sym_protocol_token1] = ACTIONS(2969), - [aux_sym_proxy_command_token1] = ACTIONS(2969), - [aux_sym_proxy_jump_token1] = ACTIONS(2969), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2969), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2969), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2969), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2969), - [aux_sym_rekey_limit_token1] = ACTIONS(2969), - [aux_sym_remote_command_token1] = ACTIONS(2969), - [aux_sym_remote_forward_token1] = ACTIONS(2969), - [aux_sym_request_tty_token1] = ACTIONS(2969), - [aux_sym_required_rsa_size_token1] = ACTIONS(2969), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2969), - [aux_sym_security_key_provider_token1] = ACTIONS(2969), - [aux_sym_send_env_token1] = ACTIONS(2969), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2969), - [aux_sym_server_alive_interval_token1] = ACTIONS(2969), - [aux_sym_session_type_token1] = ACTIONS(2969), - [aux_sym_set_env_token1] = ACTIONS(2969), - [aux_sym_stdin_null_token1] = ACTIONS(2969), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2969), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2969), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2969), - [aux_sym_syslog_facility_token1] = ACTIONS(2969), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2969), - [aux_sym_keep_alive_token1] = ACTIONS(2969), - [aux_sym_tunnel_token1] = ACTIONS(2971), - [aux_sym_tunnel_device_token1] = ACTIONS(2969), - [aux_sym_update_host_keys_token1] = ACTIONS(2969), - [aux_sym_use_keychain_token1] = ACTIONS(2969), - [aux_sym_use_roaming_token1] = ACTIONS(2969), - [aux_sym_user_token1] = ACTIONS(2971), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2969), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2969), - [aux_sym_visual_host_key_token1] = ACTIONS(2969), - [aux_sym_xauth_location_token1] = ACTIONS(2969), + [ts_builtin_sym_end] = ACTIONS(2976), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2978), + [anon_sym_DQUOTE] = ACTIONS(2980), + [aux_sym_match_token1] = ACTIONS(2976), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2976), + [aux_sym_address_family_token1] = ACTIONS(2976), + [aux_sym_batch_mode_token1] = ACTIONS(2976), + [aux_sym_bind_address_token1] = ACTIONS(2976), + [aux_sym_bind_interface_token1] = ACTIONS(2976), + [aux_sym_canonical_domains_token1] = ACTIONS(2976), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2976), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2976), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2976), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2976), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2976), + [aux_sym_certificate_file_token1] = ACTIONS(2976), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2976), + [aux_sym_check_host_ip_token1] = ACTIONS(2976), + [aux_sym_ciphers_token1] = ACTIONS(2976), + [aux_sym_cipher_token1] = ACTIONS(2978), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2976), + [aux_sym_compression_token1] = ACTIONS(2976), + [aux_sym_connection_attempts_token1] = ACTIONS(2976), + [aux_sym_connect_timeout_token1] = ACTIONS(2976), + [aux_sym_control_master_token1] = ACTIONS(2976), + [aux_sym_control_path_token1] = ACTIONS(2976), + [aux_sym_control_persist_token1] = ACTIONS(2976), + [aux_sym_dynamic_forward_token1] = ACTIONS(2976), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2976), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2976), + [aux_sym_escape_char_token1] = ACTIONS(2976), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2976), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2976), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2976), + [aux_sym_forward_agent_token1] = ACTIONS(2976), + [aux_sym_forward_x11_token1] = ACTIONS(2978), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2976), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2976), + [aux_sym_gateway_ports_token1] = ACTIONS(2976), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2976), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2976), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2976), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2976), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2976), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2976), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2976), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2976), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2976), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2976), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2976), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2976), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2976), + [aux_sym_host_key_alias_token1] = ACTIONS(2976), + [aux_sym_hostname_token1] = ACTIONS(2976), + [aux_sym_identities_only_token1] = ACTIONS(2976), + [aux_sym_identity_agent_token1] = ACTIONS(2976), + [aux_sym_identity_file_token1] = ACTIONS(2976), + [aux_sym_ignore_unknown_token1] = ACTIONS(2976), + [aux_sym_include_token1] = ACTIONS(2976), + [aux_sym_ip_qos_token1] = ACTIONS(2976), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2976), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2976), + [aux_sym_kex_algorithms_token1] = ACTIONS(2976), + [aux_sym_known_hosts_command_token1] = ACTIONS(2976), + [aux_sym_local_command_token1] = ACTIONS(2976), + [aux_sym_local_forward_token1] = ACTIONS(2976), + [aux_sym_log_level_token1] = ACTIONS(2976), + [aux_sym_log_verbose_token1] = ACTIONS(2976), + [aux_sym_macs_token1] = ACTIONS(2976), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2976), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2976), + [aux_sym_password_authentication_token1] = ACTIONS(2976), + [aux_sym_permit_local_command_token1] = ACTIONS(2976), + [aux_sym_permit_remote_open_token1] = ACTIONS(2976), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2976), + [aux_sym_port_token1] = ACTIONS(2976), + [aux_sym_preferred_authentications_token1] = ACTIONS(2976), + [aux_sym_protocol_token1] = ACTIONS(2976), + [aux_sym_proxy_command_token1] = ACTIONS(2976), + [aux_sym_proxy_jump_token1] = ACTIONS(2976), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2976), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2976), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2976), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2976), + [aux_sym_rekey_limit_token1] = ACTIONS(2976), + [aux_sym_remote_command_token1] = ACTIONS(2976), + [aux_sym_remote_forward_token1] = ACTIONS(2976), + [aux_sym_request_tty_token1] = ACTIONS(2976), + [aux_sym_required_rsa_size_token1] = ACTIONS(2976), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2976), + [aux_sym_security_key_provider_token1] = ACTIONS(2976), + [aux_sym_send_env_token1] = ACTIONS(2976), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2976), + [aux_sym_server_alive_interval_token1] = ACTIONS(2976), + [aux_sym_session_type_token1] = ACTIONS(2976), + [aux_sym_set_env_token1] = ACTIONS(2976), + [aux_sym_stdin_null_token1] = ACTIONS(2976), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2976), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2976), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2976), + [aux_sym_syslog_facility_token1] = ACTIONS(2976), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2976), + [aux_sym_keep_alive_token1] = ACTIONS(2976), + [aux_sym_tunnel_token1] = ACTIONS(2978), + [aux_sym_tunnel_device_token1] = ACTIONS(2976), + [aux_sym_update_host_keys_token1] = ACTIONS(2976), + [aux_sym_use_keychain_token1] = ACTIONS(2976), + [aux_sym_use_roaming_token1] = ACTIONS(2976), + [aux_sym_user_token1] = ACTIONS(2978), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2976), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2976), + [aux_sym_visual_host_key_token1] = ACTIONS(2976), + [aux_sym_xauth_location_token1] = ACTIONS(2976), }, [443] = { - [ts_builtin_sym_end] = ACTIONS(2975), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2975), - [aux_sym_match_token1] = ACTIONS(2975), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2975), - [aux_sym_address_family_token1] = ACTIONS(2975), - [aux_sym_batch_mode_token1] = ACTIONS(2975), - [aux_sym_bind_address_token1] = ACTIONS(2975), - [aux_sym_bind_interface_token1] = ACTIONS(2975), - [aux_sym_canonical_domains_token1] = ACTIONS(2975), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2975), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2975), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2975), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2975), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2975), - [aux_sym_certificate_file_token1] = ACTIONS(2975), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2975), - [aux_sym_check_host_ip_token1] = ACTIONS(2975), - [aux_sym_ciphers_token1] = ACTIONS(2975), - [aux_sym_cipher_token1] = ACTIONS(2977), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2975), - [aux_sym_compression_token1] = ACTIONS(2975), - [aux_sym_connection_attempts_token1] = ACTIONS(2975), - [aux_sym_connect_timeout_token1] = ACTIONS(2975), - [aux_sym_control_master_token1] = ACTIONS(2975), - [aux_sym_control_path_token1] = ACTIONS(2975), - [aux_sym_control_persist_token1] = ACTIONS(2975), - [aux_sym_dynamic_forward_token1] = ACTIONS(2975), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2975), - [aux_sym_escape_char_token1] = ACTIONS(2975), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2975), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2975), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2975), - [aux_sym_forward_agent_token1] = ACTIONS(2975), - [aux_sym_forward_x11_token1] = ACTIONS(2977), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2975), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2975), - [aux_sym_gateway_ports_token1] = ACTIONS(2975), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2975), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2975), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2975), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2975), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2975), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2975), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2975), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2975), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2975), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2975), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2975), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2975), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2975), - [aux_sym_host_key_alias_token1] = ACTIONS(2975), - [aux_sym_hostname_token1] = ACTIONS(2975), - [aux_sym_identities_only_token1] = ACTIONS(2975), - [aux_sym_identity_agent_token1] = ACTIONS(2975), - [aux_sym_identity_file_token1] = ACTIONS(2975), - [aux_sym_ignore_unknown_token1] = ACTIONS(2975), - [aux_sym_include_token1] = ACTIONS(2975), - [aux_sym_ip_qos_token1] = ACTIONS(2975), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2975), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2975), - [aux_sym_kex_algorithms_token1] = ACTIONS(2975), - [aux_sym_known_hosts_command_token1] = ACTIONS(2975), - [aux_sym_local_command_token1] = ACTIONS(2975), - [aux_sym_local_forward_token1] = ACTIONS(2975), - [aux_sym_log_level_token1] = ACTIONS(2975), - [aux_sym_log_verbose_token1] = ACTIONS(2975), - [aux_sym_macs_token1] = ACTIONS(2975), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2975), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2975), - [aux_sym_password_authentication_token1] = ACTIONS(2975), - [aux_sym_permit_local_command_token1] = ACTIONS(2975), - [aux_sym_permit_remote_open_token1] = ACTIONS(2975), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2975), - [aux_sym_port_token1] = ACTIONS(2975), - [aux_sym_preferred_authentications_token1] = ACTIONS(2975), - [aux_sym_protocol_token1] = ACTIONS(2975), - [aux_sym_proxy_command_token1] = ACTIONS(2975), - [aux_sym_proxy_jump_token1] = ACTIONS(2975), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2975), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2975), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2975), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2975), - [aux_sym_rekey_limit_token1] = ACTIONS(2975), - [aux_sym_remote_command_token1] = ACTIONS(2975), - [aux_sym_remote_forward_token1] = ACTIONS(2975), - [aux_sym_request_tty_token1] = ACTIONS(2975), - [aux_sym_required_rsa_size_token1] = ACTIONS(2975), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2975), - [aux_sym_security_key_provider_token1] = ACTIONS(2975), - [aux_sym_send_env_token1] = ACTIONS(2975), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2975), - [aux_sym_server_alive_interval_token1] = ACTIONS(2975), - [aux_sym_session_type_token1] = ACTIONS(2975), - [aux_sym_set_env_token1] = ACTIONS(2975), - [aux_sym_stdin_null_token1] = ACTIONS(2975), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2975), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2975), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2975), - [aux_sym_syslog_facility_token1] = ACTIONS(2975), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2975), - [aux_sym_keep_alive_token1] = ACTIONS(2975), - [aux_sym_tunnel_token1] = ACTIONS(2977), - [aux_sym_tunnel_device_token1] = ACTIONS(2975), - [aux_sym_update_host_keys_token1] = ACTIONS(2975), - [aux_sym_use_keychain_token1] = ACTIONS(2975), - [aux_sym_use_roaming_token1] = ACTIONS(2975), - [aux_sym_user_token1] = ACTIONS(2977), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2975), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2975), - [aux_sym_visual_host_key_token1] = ACTIONS(2975), - [aux_sym_xauth_location_token1] = ACTIONS(2975), + [ts_builtin_sym_end] = ACTIONS(2982), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2984), + [anon_sym_DQUOTE] = ACTIONS(2982), + [aux_sym_match_token1] = ACTIONS(2982), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2982), + [aux_sym_address_family_token1] = ACTIONS(2982), + [aux_sym_batch_mode_token1] = ACTIONS(2982), + [aux_sym_bind_address_token1] = ACTIONS(2982), + [aux_sym_bind_interface_token1] = ACTIONS(2982), + [aux_sym_canonical_domains_token1] = ACTIONS(2982), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2982), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2982), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2982), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2982), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2982), + [aux_sym_certificate_file_token1] = ACTIONS(2982), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2982), + [aux_sym_check_host_ip_token1] = ACTIONS(2982), + [aux_sym_ciphers_token1] = ACTIONS(2982), + [aux_sym_cipher_token1] = ACTIONS(2984), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2982), + [aux_sym_compression_token1] = ACTIONS(2982), + [aux_sym_connection_attempts_token1] = ACTIONS(2982), + [aux_sym_connect_timeout_token1] = ACTIONS(2982), + [aux_sym_control_master_token1] = ACTIONS(2982), + [aux_sym_control_path_token1] = ACTIONS(2982), + [aux_sym_control_persist_token1] = ACTIONS(2982), + [aux_sym_dynamic_forward_token1] = ACTIONS(2982), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2982), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2982), + [aux_sym_escape_char_token1] = ACTIONS(2982), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2982), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2982), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2982), + [aux_sym_forward_agent_token1] = ACTIONS(2982), + [aux_sym_forward_x11_token1] = ACTIONS(2984), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2982), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2982), + [aux_sym_gateway_ports_token1] = ACTIONS(2982), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2982), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2982), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2982), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2982), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2982), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2982), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2982), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2982), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2982), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2982), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2982), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2982), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2982), + [aux_sym_host_key_alias_token1] = ACTIONS(2982), + [aux_sym_hostname_token1] = ACTIONS(2982), + [aux_sym_identities_only_token1] = ACTIONS(2982), + [aux_sym_identity_agent_token1] = ACTIONS(2982), + [aux_sym_identity_file_token1] = ACTIONS(2982), + [aux_sym_ignore_unknown_token1] = ACTIONS(2982), + [aux_sym_include_token1] = ACTIONS(2982), + [aux_sym_ip_qos_token1] = ACTIONS(2982), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2982), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2982), + [aux_sym_kex_algorithms_token1] = ACTIONS(2982), + [aux_sym_known_hosts_command_token1] = ACTIONS(2982), + [aux_sym_local_command_token1] = ACTIONS(2982), + [aux_sym_local_forward_token1] = ACTIONS(2982), + [aux_sym_log_level_token1] = ACTIONS(2982), + [aux_sym_log_verbose_token1] = ACTIONS(2982), + [aux_sym_macs_token1] = ACTIONS(2982), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2982), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2982), + [aux_sym_password_authentication_token1] = ACTIONS(2982), + [aux_sym_permit_local_command_token1] = ACTIONS(2982), + [aux_sym_permit_remote_open_token1] = ACTIONS(2982), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2982), + [aux_sym_port_token1] = ACTIONS(2982), + [aux_sym_preferred_authentications_token1] = ACTIONS(2982), + [aux_sym_protocol_token1] = ACTIONS(2982), + [aux_sym_proxy_command_token1] = ACTIONS(2982), + [aux_sym_proxy_jump_token1] = ACTIONS(2982), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2982), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2982), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2982), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2982), + [aux_sym_rekey_limit_token1] = ACTIONS(2982), + [aux_sym_remote_command_token1] = ACTIONS(2982), + [aux_sym_remote_forward_token1] = ACTIONS(2982), + [aux_sym_request_tty_token1] = ACTIONS(2982), + [aux_sym_required_rsa_size_token1] = ACTIONS(2982), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2982), + [aux_sym_security_key_provider_token1] = ACTIONS(2982), + [aux_sym_send_env_token1] = ACTIONS(2982), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2982), + [aux_sym_server_alive_interval_token1] = ACTIONS(2982), + [aux_sym_session_type_token1] = ACTIONS(2982), + [aux_sym_set_env_token1] = ACTIONS(2982), + [aux_sym_stdin_null_token1] = ACTIONS(2982), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2982), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2982), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2982), + [aux_sym_syslog_facility_token1] = ACTIONS(2982), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2982), + [aux_sym_keep_alive_token1] = ACTIONS(2982), + [aux_sym_tunnel_token1] = ACTIONS(2984), + [aux_sym_tunnel_device_token1] = ACTIONS(2982), + [aux_sym_update_host_keys_token1] = ACTIONS(2982), + [aux_sym_use_keychain_token1] = ACTIONS(2982), + [aux_sym_use_roaming_token1] = ACTIONS(2982), + [aux_sym_user_token1] = ACTIONS(2984), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2982), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2982), + [aux_sym_visual_host_key_token1] = ACTIONS(2982), + [aux_sym_xauth_location_token1] = ACTIONS(2982), }, [444] = { - [ts_builtin_sym_end] = ACTIONS(2979), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2981), - [anon_sym_DQUOTE] = ACTIONS(2983), - [aux_sym_match_token1] = ACTIONS(2979), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2979), - [aux_sym_address_family_token1] = ACTIONS(2979), - [aux_sym_batch_mode_token1] = ACTIONS(2979), - [aux_sym_bind_address_token1] = ACTIONS(2979), - [aux_sym_bind_interface_token1] = ACTIONS(2979), - [aux_sym_canonical_domains_token1] = ACTIONS(2979), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2979), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2979), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2979), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2979), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2979), - [aux_sym_certificate_file_token1] = ACTIONS(2979), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2979), - [aux_sym_check_host_ip_token1] = ACTIONS(2979), - [aux_sym_ciphers_token1] = ACTIONS(2979), - [aux_sym_cipher_token1] = ACTIONS(2981), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2979), - [aux_sym_compression_token1] = ACTIONS(2979), - [aux_sym_connection_attempts_token1] = ACTIONS(2979), - [aux_sym_connect_timeout_token1] = ACTIONS(2979), - [aux_sym_control_master_token1] = ACTIONS(2979), - [aux_sym_control_path_token1] = ACTIONS(2979), - [aux_sym_control_persist_token1] = ACTIONS(2979), - [aux_sym_dynamic_forward_token1] = ACTIONS(2979), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2979), - [aux_sym_escape_char_token1] = ACTIONS(2979), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2979), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2979), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2979), - [aux_sym_forward_agent_token1] = ACTIONS(2979), - [aux_sym_forward_x11_token1] = ACTIONS(2981), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2979), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2979), - [aux_sym_gateway_ports_token1] = ACTIONS(2979), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2979), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2979), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2979), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2979), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2979), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2979), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2979), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2979), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2979), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2979), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2979), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2979), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2979), - [aux_sym_host_key_alias_token1] = ACTIONS(2979), - [aux_sym_hostname_token1] = ACTIONS(2979), - [aux_sym_identities_only_token1] = ACTIONS(2979), - [aux_sym_identity_agent_token1] = ACTIONS(2979), - [aux_sym_identity_file_token1] = ACTIONS(2979), - [aux_sym_ignore_unknown_token1] = ACTIONS(2979), - [aux_sym_include_token1] = ACTIONS(2979), - [aux_sym_ip_qos_token1] = ACTIONS(2979), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2979), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2979), - [aux_sym_kex_algorithms_token1] = ACTIONS(2979), - [aux_sym_known_hosts_command_token1] = ACTIONS(2979), - [aux_sym_local_command_token1] = ACTIONS(2979), - [aux_sym_local_forward_token1] = ACTIONS(2979), - [aux_sym_log_level_token1] = ACTIONS(2979), - [aux_sym_log_verbose_token1] = ACTIONS(2979), - [aux_sym_macs_token1] = ACTIONS(2979), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2979), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2979), - [aux_sym_password_authentication_token1] = ACTIONS(2979), - [aux_sym_permit_local_command_token1] = ACTIONS(2979), - [aux_sym_permit_remote_open_token1] = ACTIONS(2979), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2979), - [aux_sym_port_token1] = ACTIONS(2979), - [aux_sym_preferred_authentications_token1] = ACTIONS(2979), - [aux_sym_protocol_token1] = ACTIONS(2979), - [aux_sym_proxy_command_token1] = ACTIONS(2979), - [aux_sym_proxy_jump_token1] = ACTIONS(2979), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2979), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2979), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2979), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2979), - [aux_sym_rekey_limit_token1] = ACTIONS(2979), - [aux_sym_remote_command_token1] = ACTIONS(2979), - [aux_sym_remote_forward_token1] = ACTIONS(2979), - [aux_sym_request_tty_token1] = ACTIONS(2979), - [aux_sym_required_rsa_size_token1] = ACTIONS(2979), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2979), - [aux_sym_security_key_provider_token1] = ACTIONS(2979), - [aux_sym_send_env_token1] = ACTIONS(2979), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2979), - [aux_sym_server_alive_interval_token1] = ACTIONS(2979), - [aux_sym_session_type_token1] = ACTIONS(2979), - [aux_sym_set_env_token1] = ACTIONS(2979), - [aux_sym_stdin_null_token1] = ACTIONS(2979), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2979), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2979), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2979), - [aux_sym_syslog_facility_token1] = ACTIONS(2979), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2979), - [aux_sym_keep_alive_token1] = ACTIONS(2979), - [aux_sym_tunnel_token1] = ACTIONS(2981), - [aux_sym_tunnel_device_token1] = ACTIONS(2979), - [aux_sym_update_host_keys_token1] = ACTIONS(2979), - [aux_sym_use_keychain_token1] = ACTIONS(2979), - [aux_sym_use_roaming_token1] = ACTIONS(2979), - [aux_sym_user_token1] = ACTIONS(2981), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2979), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2979), - [aux_sym_visual_host_key_token1] = ACTIONS(2979), - [aux_sym_xauth_location_token1] = ACTIONS(2979), + [ts_builtin_sym_end] = ACTIONS(2986), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2990), + [aux_sym_match_token1] = ACTIONS(2986), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2986), + [aux_sym_address_family_token1] = ACTIONS(2986), + [aux_sym_batch_mode_token1] = ACTIONS(2986), + [aux_sym_bind_address_token1] = ACTIONS(2986), + [aux_sym_bind_interface_token1] = ACTIONS(2986), + [aux_sym_canonical_domains_token1] = ACTIONS(2986), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2986), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2986), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2986), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2986), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2986), + [aux_sym_certificate_file_token1] = ACTIONS(2986), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2986), + [aux_sym_check_host_ip_token1] = ACTIONS(2986), + [aux_sym_ciphers_token1] = ACTIONS(2986), + [aux_sym_cipher_token1] = ACTIONS(2988), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2986), + [aux_sym_compression_token1] = ACTIONS(2986), + [aux_sym_connection_attempts_token1] = ACTIONS(2986), + [aux_sym_connect_timeout_token1] = ACTIONS(2986), + [aux_sym_control_master_token1] = ACTIONS(2986), + [aux_sym_control_path_token1] = ACTIONS(2986), + [aux_sym_control_persist_token1] = ACTIONS(2986), + [aux_sym_dynamic_forward_token1] = ACTIONS(2986), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2986), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2986), + [aux_sym_escape_char_token1] = ACTIONS(2986), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2986), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2986), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2986), + [aux_sym_forward_agent_token1] = ACTIONS(2986), + [aux_sym_forward_x11_token1] = ACTIONS(2988), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2986), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2986), + [aux_sym_gateway_ports_token1] = ACTIONS(2986), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2986), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2986), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2986), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2986), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2986), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2986), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2986), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2986), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2986), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2986), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2986), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2986), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2986), + [aux_sym_host_key_alias_token1] = ACTIONS(2986), + [aux_sym_hostname_token1] = ACTIONS(2986), + [aux_sym_identities_only_token1] = ACTIONS(2986), + [aux_sym_identity_agent_token1] = ACTIONS(2986), + [aux_sym_identity_file_token1] = ACTIONS(2986), + [aux_sym_ignore_unknown_token1] = ACTIONS(2986), + [aux_sym_include_token1] = ACTIONS(2986), + [aux_sym_ip_qos_token1] = ACTIONS(2986), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2986), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2986), + [aux_sym_kex_algorithms_token1] = ACTIONS(2986), + [aux_sym_known_hosts_command_token1] = ACTIONS(2986), + [aux_sym_local_command_token1] = ACTIONS(2986), + [aux_sym_local_forward_token1] = ACTIONS(2986), + [aux_sym_log_level_token1] = ACTIONS(2986), + [aux_sym_log_verbose_token1] = ACTIONS(2986), + [aux_sym_macs_token1] = ACTIONS(2986), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2986), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2986), + [aux_sym_password_authentication_token1] = ACTIONS(2986), + [aux_sym_permit_local_command_token1] = ACTIONS(2986), + [aux_sym_permit_remote_open_token1] = ACTIONS(2986), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2986), + [aux_sym_port_token1] = ACTIONS(2986), + [aux_sym_preferred_authentications_token1] = ACTIONS(2986), + [aux_sym_protocol_token1] = ACTIONS(2986), + [aux_sym_proxy_command_token1] = ACTIONS(2986), + [aux_sym_proxy_jump_token1] = ACTIONS(2986), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2986), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2986), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2986), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2986), + [aux_sym_rekey_limit_token1] = ACTIONS(2986), + [aux_sym_remote_command_token1] = ACTIONS(2986), + [aux_sym_remote_forward_token1] = ACTIONS(2986), + [aux_sym_request_tty_token1] = ACTIONS(2986), + [aux_sym_required_rsa_size_token1] = ACTIONS(2986), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2986), + [aux_sym_security_key_provider_token1] = ACTIONS(2986), + [aux_sym_send_env_token1] = ACTIONS(2986), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2986), + [aux_sym_server_alive_interval_token1] = ACTIONS(2986), + [aux_sym_session_type_token1] = ACTIONS(2986), + [aux_sym_set_env_token1] = ACTIONS(2986), + [aux_sym_stdin_null_token1] = ACTIONS(2986), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2986), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2986), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2986), + [aux_sym_syslog_facility_token1] = ACTIONS(2986), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2986), + [aux_sym_keep_alive_token1] = ACTIONS(2986), + [aux_sym_tunnel_token1] = ACTIONS(2988), + [aux_sym_tunnel_device_token1] = ACTIONS(2986), + [aux_sym_update_host_keys_token1] = ACTIONS(2986), + [aux_sym_use_keychain_token1] = ACTIONS(2986), + [aux_sym_use_roaming_token1] = ACTIONS(2986), + [aux_sym_user_token1] = ACTIONS(2988), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2986), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2986), + [aux_sym_visual_host_key_token1] = ACTIONS(2986), + [aux_sym_xauth_location_token1] = ACTIONS(2986), }, [445] = { - [ts_builtin_sym_end] = ACTIONS(2985), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2987), - [anon_sym_DQUOTE] = ACTIONS(2985), - [aux_sym_match_token1] = ACTIONS(2985), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2985), - [aux_sym_address_family_token1] = ACTIONS(2985), - [aux_sym_batch_mode_token1] = ACTIONS(2985), - [aux_sym_bind_address_token1] = ACTIONS(2985), - [aux_sym_bind_interface_token1] = ACTIONS(2985), - [aux_sym_canonical_domains_token1] = ACTIONS(2985), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2985), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2985), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2985), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2985), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2985), - [aux_sym_certificate_file_token1] = ACTIONS(2985), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2985), - [aux_sym_check_host_ip_token1] = ACTIONS(2985), - [aux_sym_ciphers_token1] = ACTIONS(2985), - [aux_sym_cipher_token1] = ACTIONS(2987), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2985), - [aux_sym_compression_token1] = ACTIONS(2985), - [aux_sym_connection_attempts_token1] = ACTIONS(2985), - [aux_sym_connect_timeout_token1] = ACTIONS(2985), - [aux_sym_control_master_token1] = ACTIONS(2985), - [aux_sym_control_path_token1] = ACTIONS(2985), - [aux_sym_control_persist_token1] = ACTIONS(2985), - [aux_sym_dynamic_forward_token1] = ACTIONS(2985), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2985), - [aux_sym_escape_char_token1] = ACTIONS(2985), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2985), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2985), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2985), - [aux_sym_forward_agent_token1] = ACTIONS(2985), - [aux_sym_forward_x11_token1] = ACTIONS(2987), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2985), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2985), - [aux_sym_gateway_ports_token1] = ACTIONS(2985), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2985), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2985), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2985), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2985), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2985), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2985), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2985), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2985), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2985), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2985), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2985), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2985), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2985), - [aux_sym_host_key_alias_token1] = ACTIONS(2985), - [aux_sym_hostname_token1] = ACTIONS(2985), - [aux_sym_identities_only_token1] = ACTIONS(2985), - [aux_sym_identity_agent_token1] = ACTIONS(2985), - [aux_sym_identity_file_token1] = ACTIONS(2985), - [aux_sym_ignore_unknown_token1] = ACTIONS(2985), - [aux_sym_include_token1] = ACTIONS(2985), - [aux_sym_ip_qos_token1] = ACTIONS(2985), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2985), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2985), - [aux_sym_kex_algorithms_token1] = ACTIONS(2985), - [aux_sym_known_hosts_command_token1] = ACTIONS(2985), - [aux_sym_local_command_token1] = ACTIONS(2985), - [aux_sym_local_forward_token1] = ACTIONS(2985), - [aux_sym_log_level_token1] = ACTIONS(2985), - [aux_sym_log_verbose_token1] = ACTIONS(2985), - [aux_sym_macs_token1] = ACTIONS(2985), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2985), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2985), - [aux_sym_password_authentication_token1] = ACTIONS(2985), - [aux_sym_permit_local_command_token1] = ACTIONS(2985), - [aux_sym_permit_remote_open_token1] = ACTIONS(2985), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2985), - [aux_sym_port_token1] = ACTIONS(2985), - [aux_sym_preferred_authentications_token1] = ACTIONS(2985), - [aux_sym_protocol_token1] = ACTIONS(2985), - [aux_sym_proxy_command_token1] = ACTIONS(2985), - [aux_sym_proxy_jump_token1] = ACTIONS(2985), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2985), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2985), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2985), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2985), - [aux_sym_rekey_limit_token1] = ACTIONS(2985), - [aux_sym_remote_command_token1] = ACTIONS(2985), - [aux_sym_remote_forward_token1] = ACTIONS(2985), - [aux_sym_request_tty_token1] = ACTIONS(2985), - [aux_sym_required_rsa_size_token1] = ACTIONS(2985), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2985), - [aux_sym_security_key_provider_token1] = ACTIONS(2985), - [aux_sym_send_env_token1] = ACTIONS(2985), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2985), - [aux_sym_server_alive_interval_token1] = ACTIONS(2985), - [aux_sym_session_type_token1] = ACTIONS(2985), - [aux_sym_set_env_token1] = ACTIONS(2985), - [aux_sym_stdin_null_token1] = ACTIONS(2985), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2985), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2985), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2985), - [aux_sym_syslog_facility_token1] = ACTIONS(2985), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2985), - [aux_sym_keep_alive_token1] = ACTIONS(2985), - [aux_sym_tunnel_token1] = ACTIONS(2987), - [aux_sym_tunnel_device_token1] = ACTIONS(2985), - [aux_sym_update_host_keys_token1] = ACTIONS(2985), - [aux_sym_use_keychain_token1] = ACTIONS(2985), - [aux_sym_use_roaming_token1] = ACTIONS(2985), - [aux_sym_user_token1] = ACTIONS(2987), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2985), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2985), - [aux_sym_visual_host_key_token1] = ACTIONS(2985), - [aux_sym_xauth_location_token1] = ACTIONS(2985), + [ts_builtin_sym_end] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2994), + [anon_sym_DQUOTE] = ACTIONS(2992), + [aux_sym_match_token1] = ACTIONS(2992), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2992), + [aux_sym_address_family_token1] = ACTIONS(2992), + [aux_sym_batch_mode_token1] = ACTIONS(2992), + [aux_sym_bind_address_token1] = ACTIONS(2992), + [aux_sym_bind_interface_token1] = ACTIONS(2992), + [aux_sym_canonical_domains_token1] = ACTIONS(2992), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2992), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2992), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2992), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2992), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2992), + [aux_sym_certificate_file_token1] = ACTIONS(2992), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2992), + [aux_sym_check_host_ip_token1] = ACTIONS(2992), + [aux_sym_ciphers_token1] = ACTIONS(2992), + [aux_sym_cipher_token1] = ACTIONS(2994), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2992), + [aux_sym_compression_token1] = ACTIONS(2992), + [aux_sym_connection_attempts_token1] = ACTIONS(2992), + [aux_sym_connect_timeout_token1] = ACTIONS(2992), + [aux_sym_control_master_token1] = ACTIONS(2992), + [aux_sym_control_path_token1] = ACTIONS(2992), + [aux_sym_control_persist_token1] = ACTIONS(2992), + [aux_sym_dynamic_forward_token1] = ACTIONS(2992), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2992), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2992), + [aux_sym_escape_char_token1] = ACTIONS(2992), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2992), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2992), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2992), + [aux_sym_forward_agent_token1] = ACTIONS(2992), + [aux_sym_forward_x11_token1] = ACTIONS(2994), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2992), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2992), + [aux_sym_gateway_ports_token1] = ACTIONS(2992), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2992), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2992), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2992), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2992), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2992), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2992), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2992), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2992), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2992), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2992), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2992), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2992), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2992), + [aux_sym_host_key_alias_token1] = ACTIONS(2992), + [aux_sym_hostname_token1] = ACTIONS(2992), + [aux_sym_identities_only_token1] = ACTIONS(2992), + [aux_sym_identity_agent_token1] = ACTIONS(2992), + [aux_sym_identity_file_token1] = ACTIONS(2992), + [aux_sym_ignore_unknown_token1] = ACTIONS(2992), + [aux_sym_include_token1] = ACTIONS(2992), + [aux_sym_ip_qos_token1] = ACTIONS(2992), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2992), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2992), + [aux_sym_kex_algorithms_token1] = ACTIONS(2992), + [aux_sym_known_hosts_command_token1] = ACTIONS(2992), + [aux_sym_local_command_token1] = ACTIONS(2992), + [aux_sym_local_forward_token1] = ACTIONS(2992), + [aux_sym_log_level_token1] = ACTIONS(2992), + [aux_sym_log_verbose_token1] = ACTIONS(2992), + [aux_sym_macs_token1] = ACTIONS(2992), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2992), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2992), + [aux_sym_password_authentication_token1] = ACTIONS(2992), + [aux_sym_permit_local_command_token1] = ACTIONS(2992), + [aux_sym_permit_remote_open_token1] = ACTIONS(2992), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2992), + [aux_sym_port_token1] = ACTIONS(2992), + [aux_sym_preferred_authentications_token1] = ACTIONS(2992), + [aux_sym_protocol_token1] = ACTIONS(2992), + [aux_sym_proxy_command_token1] = ACTIONS(2992), + [aux_sym_proxy_jump_token1] = ACTIONS(2992), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2992), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2992), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2992), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2992), + [aux_sym_rekey_limit_token1] = ACTIONS(2992), + [aux_sym_remote_command_token1] = ACTIONS(2992), + [aux_sym_remote_forward_token1] = ACTIONS(2992), + [aux_sym_request_tty_token1] = ACTIONS(2992), + [aux_sym_required_rsa_size_token1] = ACTIONS(2992), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2992), + [aux_sym_security_key_provider_token1] = ACTIONS(2992), + [aux_sym_send_env_token1] = ACTIONS(2992), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2992), + [aux_sym_server_alive_interval_token1] = ACTIONS(2992), + [aux_sym_session_type_token1] = ACTIONS(2992), + [aux_sym_set_env_token1] = ACTIONS(2992), + [aux_sym_stdin_null_token1] = ACTIONS(2992), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2992), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2992), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2992), + [aux_sym_syslog_facility_token1] = ACTIONS(2992), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2992), + [aux_sym_keep_alive_token1] = ACTIONS(2992), + [aux_sym_tunnel_token1] = ACTIONS(2994), + [aux_sym_tunnel_device_token1] = ACTIONS(2992), + [aux_sym_update_host_keys_token1] = ACTIONS(2992), + [aux_sym_use_keychain_token1] = ACTIONS(2992), + [aux_sym_use_roaming_token1] = ACTIONS(2992), + [aux_sym_user_token1] = ACTIONS(2994), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2992), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2992), + [aux_sym_visual_host_key_token1] = ACTIONS(2992), + [aux_sym_xauth_location_token1] = ACTIONS(2992), }, [446] = { - [ts_builtin_sym_end] = ACTIONS(1233), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1235), - [aux_sym_match_token1] = ACTIONS(1233), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1233), - [aux_sym_address_family_token1] = ACTIONS(1233), - [aux_sym_batch_mode_token1] = ACTIONS(1233), - [aux_sym_bind_address_token1] = ACTIONS(1233), - [aux_sym_bind_interface_token1] = ACTIONS(1233), - [aux_sym_canonical_domains_token1] = ACTIONS(1233), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1233), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1233), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1233), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1233), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1233), - [aux_sym_certificate_file_token1] = ACTIONS(1233), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1233), - [aux_sym_check_host_ip_token1] = ACTIONS(1233), - [aux_sym_ciphers_token1] = ACTIONS(1233), - [aux_sym_cipher_token1] = ACTIONS(1235), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1233), - [aux_sym_compression_token1] = ACTIONS(1233), - [aux_sym_connection_attempts_token1] = ACTIONS(1233), - [aux_sym_connect_timeout_token1] = ACTIONS(1233), - [aux_sym_control_master_token1] = ACTIONS(1233), - [aux_sym_control_path_token1] = ACTIONS(1233), - [aux_sym_control_persist_token1] = ACTIONS(1233), - [aux_sym_dynamic_forward_token1] = ACTIONS(1233), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1233), - [aux_sym_escape_char_token1] = ACTIONS(1233), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1233), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1233), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1233), - [aux_sym_forward_agent_token1] = ACTIONS(1233), - [aux_sym_forward_x11_token1] = ACTIONS(1235), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1233), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1233), - [aux_sym_gateway_ports_token1] = ACTIONS(1233), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1233), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1233), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1233), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1233), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1233), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1233), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1233), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1233), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1233), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1233), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1233), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1233), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1233), - [aux_sym_host_key_alias_token1] = ACTIONS(1233), - [aux_sym_hostname_token1] = ACTIONS(1233), - [aux_sym_identities_only_token1] = ACTIONS(1233), - [aux_sym_identity_agent_token1] = ACTIONS(1233), - [aux_sym_identity_file_token1] = ACTIONS(1233), - [aux_sym_ignore_unknown_token1] = ACTIONS(1233), - [aux_sym_include_token1] = ACTIONS(1233), - [aux_sym_ip_qos_token1] = ACTIONS(1233), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1233), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1233), - [aux_sym_kex_algorithms_token1] = ACTIONS(1233), - [aux_sym_known_hosts_command_token1] = ACTIONS(1233), - [aux_sym_local_command_token1] = ACTIONS(1233), - [aux_sym_local_forward_token1] = ACTIONS(1233), - [aux_sym_log_level_token1] = ACTIONS(1233), - [aux_sym_log_verbose_token1] = ACTIONS(1233), - [aux_sym_macs_token1] = ACTIONS(1233), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1233), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1233), - [aux_sym_password_authentication_token1] = ACTIONS(1233), - [aux_sym_permit_local_command_token1] = ACTIONS(1233), - [aux_sym_permit_remote_open_token1] = ACTIONS(1233), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1233), - [aux_sym_port_token1] = ACTIONS(1233), - [aux_sym_preferred_authentications_token1] = ACTIONS(1233), - [aux_sym_protocol_token1] = ACTIONS(1233), - [aux_sym_proxy_command_token1] = ACTIONS(1233), - [aux_sym_proxy_jump_token1] = ACTIONS(1233), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1233), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1233), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1233), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1233), - [aux_sym_rekey_limit_token1] = ACTIONS(1233), - [aux_sym_remote_command_token1] = ACTIONS(1233), - [aux_sym_remote_forward_token1] = ACTIONS(1233), - [aux_sym_request_tty_token1] = ACTIONS(1233), - [aux_sym_required_rsa_size_token1] = ACTIONS(1233), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1233), - [aux_sym_security_key_provider_token1] = ACTIONS(1233), - [aux_sym_send_env_token1] = ACTIONS(1233), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1233), - [aux_sym_server_alive_interval_token1] = ACTIONS(1233), - [aux_sym_session_type_token1] = ACTIONS(1233), - [aux_sym_set_env_token1] = ACTIONS(1233), - [aux_sym_stdin_null_token1] = ACTIONS(1233), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1233), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1233), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1233), - [aux_sym_syslog_facility_token1] = ACTIONS(1233), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1233), - [aux_sym_keep_alive_token1] = ACTIONS(1233), - [aux_sym_tunnel_token1] = ACTIONS(1235), - [aux_sym_tunnel_device_token1] = ACTIONS(1233), - [aux_sym_update_host_keys_token1] = ACTIONS(1233), - [aux_sym_use_keychain_token1] = ACTIONS(1233), - [aux_sym_use_roaming_token1] = ACTIONS(1233), - [aux_sym_user_token1] = ACTIONS(1235), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1233), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1233), - [aux_sym_visual_host_key_token1] = ACTIONS(1233), - [aux_sym_xauth_location_token1] = ACTIONS(1233), + [ts_builtin_sym_end] = ACTIONS(2996), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(3000), + [aux_sym_match_token1] = ACTIONS(2996), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2996), + [aux_sym_address_family_token1] = ACTIONS(2996), + [aux_sym_batch_mode_token1] = ACTIONS(2996), + [aux_sym_bind_address_token1] = ACTIONS(2996), + [aux_sym_bind_interface_token1] = ACTIONS(2996), + [aux_sym_canonical_domains_token1] = ACTIONS(2996), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2996), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2996), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2996), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2996), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2996), + [aux_sym_certificate_file_token1] = ACTIONS(2996), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2996), + [aux_sym_check_host_ip_token1] = ACTIONS(2996), + [aux_sym_ciphers_token1] = ACTIONS(2996), + [aux_sym_cipher_token1] = ACTIONS(2998), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2996), + [aux_sym_compression_token1] = ACTIONS(2996), + [aux_sym_connection_attempts_token1] = ACTIONS(2996), + [aux_sym_connect_timeout_token1] = ACTIONS(2996), + [aux_sym_control_master_token1] = ACTIONS(2996), + [aux_sym_control_path_token1] = ACTIONS(2996), + [aux_sym_control_persist_token1] = ACTIONS(2996), + [aux_sym_dynamic_forward_token1] = ACTIONS(2996), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2996), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2996), + [aux_sym_escape_char_token1] = ACTIONS(2996), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2996), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2996), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2996), + [aux_sym_forward_agent_token1] = ACTIONS(2996), + [aux_sym_forward_x11_token1] = ACTIONS(2998), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2996), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2996), + [aux_sym_gateway_ports_token1] = ACTIONS(2996), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2996), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2996), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2996), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2996), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2996), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2996), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2996), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2996), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2996), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2996), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2996), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2996), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2996), + [aux_sym_host_key_alias_token1] = ACTIONS(2996), + [aux_sym_hostname_token1] = ACTIONS(2996), + [aux_sym_identities_only_token1] = ACTIONS(2996), + [aux_sym_identity_agent_token1] = ACTIONS(2996), + [aux_sym_identity_file_token1] = ACTIONS(2996), + [aux_sym_ignore_unknown_token1] = ACTIONS(2996), + [aux_sym_include_token1] = ACTIONS(2996), + [aux_sym_ip_qos_token1] = ACTIONS(2996), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2996), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2996), + [aux_sym_kex_algorithms_token1] = ACTIONS(2996), + [aux_sym_known_hosts_command_token1] = ACTIONS(2996), + [aux_sym_local_command_token1] = ACTIONS(2996), + [aux_sym_local_forward_token1] = ACTIONS(2996), + [aux_sym_log_level_token1] = ACTIONS(2996), + [aux_sym_log_verbose_token1] = ACTIONS(2996), + [aux_sym_macs_token1] = ACTIONS(2996), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2996), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2996), + [aux_sym_password_authentication_token1] = ACTIONS(2996), + [aux_sym_permit_local_command_token1] = ACTIONS(2996), + [aux_sym_permit_remote_open_token1] = ACTIONS(2996), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2996), + [aux_sym_port_token1] = ACTIONS(2996), + [aux_sym_preferred_authentications_token1] = ACTIONS(2996), + [aux_sym_protocol_token1] = ACTIONS(2996), + [aux_sym_proxy_command_token1] = ACTIONS(2996), + [aux_sym_proxy_jump_token1] = ACTIONS(2996), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2996), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2996), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2996), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2996), + [aux_sym_rekey_limit_token1] = ACTIONS(2996), + [aux_sym_remote_command_token1] = ACTIONS(2996), + [aux_sym_remote_forward_token1] = ACTIONS(2996), + [aux_sym_request_tty_token1] = ACTIONS(2996), + [aux_sym_required_rsa_size_token1] = ACTIONS(2996), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2996), + [aux_sym_security_key_provider_token1] = ACTIONS(2996), + [aux_sym_send_env_token1] = ACTIONS(2996), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2996), + [aux_sym_server_alive_interval_token1] = ACTIONS(2996), + [aux_sym_session_type_token1] = ACTIONS(2996), + [aux_sym_set_env_token1] = ACTIONS(2996), + [aux_sym_stdin_null_token1] = ACTIONS(2996), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2996), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2996), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2996), + [aux_sym_syslog_facility_token1] = ACTIONS(2996), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2996), + [aux_sym_keep_alive_token1] = ACTIONS(2996), + [aux_sym_tunnel_token1] = ACTIONS(2998), + [aux_sym_tunnel_device_token1] = ACTIONS(2996), + [aux_sym_update_host_keys_token1] = ACTIONS(2996), + [aux_sym_use_keychain_token1] = ACTIONS(2996), + [aux_sym_use_roaming_token1] = ACTIONS(2996), + [aux_sym_user_token1] = ACTIONS(2998), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2996), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2996), + [aux_sym_visual_host_key_token1] = ACTIONS(2996), + [aux_sym_xauth_location_token1] = ACTIONS(2996), }, [447] = { - [ts_builtin_sym_end] = ACTIONS(897), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(899), - [aux_sym_match_token1] = ACTIONS(897), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(897), - [aux_sym_address_family_token1] = ACTIONS(897), - [aux_sym_batch_mode_token1] = ACTIONS(897), - [aux_sym_bind_address_token1] = ACTIONS(897), - [aux_sym_bind_interface_token1] = ACTIONS(897), - [aux_sym_canonical_domains_token1] = ACTIONS(897), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(897), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(897), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(897), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(897), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(897), - [aux_sym_certificate_file_token1] = ACTIONS(897), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(897), - [aux_sym_check_host_ip_token1] = ACTIONS(897), - [aux_sym_ciphers_token1] = ACTIONS(897), - [aux_sym_cipher_token1] = ACTIONS(899), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(897), - [aux_sym_compression_token1] = ACTIONS(897), - [aux_sym_connection_attempts_token1] = ACTIONS(897), - [aux_sym_connect_timeout_token1] = ACTIONS(897), - [aux_sym_control_master_token1] = ACTIONS(897), - [aux_sym_control_path_token1] = ACTIONS(897), - [aux_sym_control_persist_token1] = ACTIONS(897), - [aux_sym_dynamic_forward_token1] = ACTIONS(897), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(897), - [aux_sym_escape_char_token1] = ACTIONS(897), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(897), - [aux_sym_fingerprint_hash_token1] = ACTIONS(897), - [aux_sym_fork_after_authentication_token1] = ACTIONS(897), - [aux_sym_forward_agent_token1] = ACTIONS(897), - [aux_sym_forward_x11_token1] = ACTIONS(899), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(897), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(897), - [aux_sym_gateway_ports_token1] = ACTIONS(897), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(897), - [aux_sym_gssapi_authentication_token1] = ACTIONS(897), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(897), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(897), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(897), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(897), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(897), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(897), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(897), - [aux_sym_hash_known_hosts_token1] = ACTIONS(897), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(897), - [aux_sym_hostbased_authentication_token1] = ACTIONS(897), - [aux_sym_host_key_algorithms_token1] = ACTIONS(897), - [aux_sym_host_key_alias_token1] = ACTIONS(897), - [aux_sym_hostname_token1] = ACTIONS(897), - [aux_sym_identities_only_token1] = ACTIONS(897), - [aux_sym_identity_agent_token1] = ACTIONS(897), - [aux_sym_identity_file_token1] = ACTIONS(897), - [aux_sym_ignore_unknown_token1] = ACTIONS(897), - [aux_sym_include_token1] = ACTIONS(897), - [aux_sym_ip_qos_token1] = ACTIONS(897), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(897), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(897), - [aux_sym_kex_algorithms_token1] = ACTIONS(897), - [aux_sym_known_hosts_command_token1] = ACTIONS(897), - [aux_sym_local_command_token1] = ACTIONS(897), - [aux_sym_local_forward_token1] = ACTIONS(897), - [aux_sym_log_level_token1] = ACTIONS(897), - [aux_sym_log_verbose_token1] = ACTIONS(897), - [aux_sym_macs_token1] = ACTIONS(897), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(897), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(897), - [aux_sym_password_authentication_token1] = ACTIONS(897), - [aux_sym_permit_local_command_token1] = ACTIONS(897), - [aux_sym_permit_remote_open_token1] = ACTIONS(897), - [aux_sym_pkcs11_provider_token1] = ACTIONS(897), - [aux_sym_port_token1] = ACTIONS(897), - [aux_sym_preferred_authentications_token1] = ACTIONS(897), - [aux_sym_protocol_token1] = ACTIONS(897), - [aux_sym_proxy_command_token1] = ACTIONS(897), - [aux_sym_proxy_jump_token1] = ACTIONS(897), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(897), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(897), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(897), - [aux_sym_pubkey_authentication_token1] = ACTIONS(897), - [aux_sym_rekey_limit_token1] = ACTIONS(897), - [aux_sym_remote_command_token1] = ACTIONS(897), - [aux_sym_remote_forward_token1] = ACTIONS(897), - [aux_sym_request_tty_token1] = ACTIONS(897), - [aux_sym_required_rsa_size_token1] = ACTIONS(897), - [aux_sym_revoked_host_keys_token1] = ACTIONS(897), - [aux_sym_security_key_provider_token1] = ACTIONS(897), - [aux_sym_send_env_token1] = ACTIONS(897), - [aux_sym_server_alive_count_max_token1] = ACTIONS(897), - [aux_sym_server_alive_interval_token1] = ACTIONS(897), - [aux_sym_session_type_token1] = ACTIONS(897), - [aux_sym_set_env_token1] = ACTIONS(897), - [aux_sym_stdin_null_token1] = ACTIONS(897), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(897), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(897), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(897), - [aux_sym_syslog_facility_token1] = ACTIONS(897), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(897), - [aux_sym_keep_alive_token1] = ACTIONS(897), - [aux_sym_tunnel_token1] = ACTIONS(899), - [aux_sym_tunnel_device_token1] = ACTIONS(897), - [aux_sym_update_host_keys_token1] = ACTIONS(897), - [aux_sym_use_keychain_token1] = ACTIONS(897), - [aux_sym_use_roaming_token1] = ACTIONS(897), - [aux_sym_user_token1] = ACTIONS(899), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(897), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(897), - [aux_sym_visual_host_key_token1] = ACTIONS(897), - [aux_sym_xauth_location_token1] = ACTIONS(897), + [ts_builtin_sym_end] = ACTIONS(3002), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3004), + [anon_sym_DQUOTE] = ACTIONS(3002), + [aux_sym_match_token1] = ACTIONS(3002), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3002), + [aux_sym_address_family_token1] = ACTIONS(3002), + [aux_sym_batch_mode_token1] = ACTIONS(3002), + [aux_sym_bind_address_token1] = ACTIONS(3002), + [aux_sym_bind_interface_token1] = ACTIONS(3002), + [aux_sym_canonical_domains_token1] = ACTIONS(3002), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3002), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3002), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3002), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3002), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3002), + [aux_sym_certificate_file_token1] = ACTIONS(3002), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3002), + [aux_sym_check_host_ip_token1] = ACTIONS(3002), + [aux_sym_ciphers_token1] = ACTIONS(3002), + [aux_sym_cipher_token1] = ACTIONS(3004), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3002), + [aux_sym_compression_token1] = ACTIONS(3002), + [aux_sym_connection_attempts_token1] = ACTIONS(3002), + [aux_sym_connect_timeout_token1] = ACTIONS(3002), + [aux_sym_control_master_token1] = ACTIONS(3002), + [aux_sym_control_path_token1] = ACTIONS(3002), + [aux_sym_control_persist_token1] = ACTIONS(3002), + [aux_sym_dynamic_forward_token1] = ACTIONS(3002), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3002), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3002), + [aux_sym_escape_char_token1] = ACTIONS(3002), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3002), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3002), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3002), + [aux_sym_forward_agent_token1] = ACTIONS(3002), + [aux_sym_forward_x11_token1] = ACTIONS(3004), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3002), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3002), + [aux_sym_gateway_ports_token1] = ACTIONS(3002), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3002), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3002), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3002), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3002), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3002), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3002), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3002), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3002), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3002), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3002), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3002), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3002), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3002), + [aux_sym_host_key_alias_token1] = ACTIONS(3002), + [aux_sym_hostname_token1] = ACTIONS(3002), + [aux_sym_identities_only_token1] = ACTIONS(3002), + [aux_sym_identity_agent_token1] = ACTIONS(3002), + [aux_sym_identity_file_token1] = ACTIONS(3002), + [aux_sym_ignore_unknown_token1] = ACTIONS(3002), + [aux_sym_include_token1] = ACTIONS(3002), + [aux_sym_ip_qos_token1] = ACTIONS(3002), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3002), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3002), + [aux_sym_kex_algorithms_token1] = ACTIONS(3002), + [aux_sym_known_hosts_command_token1] = ACTIONS(3002), + [aux_sym_local_command_token1] = ACTIONS(3002), + [aux_sym_local_forward_token1] = ACTIONS(3002), + [aux_sym_log_level_token1] = ACTIONS(3002), + [aux_sym_log_verbose_token1] = ACTIONS(3002), + [aux_sym_macs_token1] = ACTIONS(3002), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3002), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3002), + [aux_sym_password_authentication_token1] = ACTIONS(3002), + [aux_sym_permit_local_command_token1] = ACTIONS(3002), + [aux_sym_permit_remote_open_token1] = ACTIONS(3002), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3002), + [aux_sym_port_token1] = ACTIONS(3002), + [aux_sym_preferred_authentications_token1] = ACTIONS(3002), + [aux_sym_protocol_token1] = ACTIONS(3002), + [aux_sym_proxy_command_token1] = ACTIONS(3002), + [aux_sym_proxy_jump_token1] = ACTIONS(3002), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3002), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3002), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3002), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3002), + [aux_sym_rekey_limit_token1] = ACTIONS(3002), + [aux_sym_remote_command_token1] = ACTIONS(3002), + [aux_sym_remote_forward_token1] = ACTIONS(3002), + [aux_sym_request_tty_token1] = ACTIONS(3002), + [aux_sym_required_rsa_size_token1] = ACTIONS(3002), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3002), + [aux_sym_security_key_provider_token1] = ACTIONS(3002), + [aux_sym_send_env_token1] = ACTIONS(3002), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3002), + [aux_sym_server_alive_interval_token1] = ACTIONS(3002), + [aux_sym_session_type_token1] = ACTIONS(3002), + [aux_sym_set_env_token1] = ACTIONS(3002), + [aux_sym_stdin_null_token1] = ACTIONS(3002), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3002), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3002), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3002), + [aux_sym_syslog_facility_token1] = ACTIONS(3002), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3002), + [aux_sym_keep_alive_token1] = ACTIONS(3002), + [aux_sym_tunnel_token1] = ACTIONS(3004), + [aux_sym_tunnel_device_token1] = ACTIONS(3002), + [aux_sym_update_host_keys_token1] = ACTIONS(3002), + [aux_sym_use_keychain_token1] = ACTIONS(3002), + [aux_sym_use_roaming_token1] = ACTIONS(3002), + [aux_sym_user_token1] = ACTIONS(3004), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3002), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3002), + [aux_sym_visual_host_key_token1] = ACTIONS(3002), + [aux_sym_xauth_location_token1] = ACTIONS(3002), }, [448] = { - [ts_builtin_sym_end] = ACTIONS(2989), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2991), - [aux_sym_match_token1] = ACTIONS(2989), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2989), - [aux_sym_address_family_token1] = ACTIONS(2989), - [aux_sym_batch_mode_token1] = ACTIONS(2989), - [aux_sym_bind_address_token1] = ACTIONS(2989), - [aux_sym_bind_interface_token1] = ACTIONS(2989), - [aux_sym_canonical_domains_token1] = ACTIONS(2989), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2989), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2989), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2989), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2989), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2989), - [aux_sym_certificate_file_token1] = ACTIONS(2989), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2989), - [aux_sym_check_host_ip_token1] = ACTIONS(2989), - [aux_sym_ciphers_token1] = ACTIONS(2989), - [aux_sym_cipher_token1] = ACTIONS(2991), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2989), - [aux_sym_compression_token1] = ACTIONS(2989), - [aux_sym_connection_attempts_token1] = ACTIONS(2989), - [aux_sym_connect_timeout_token1] = ACTIONS(2989), - [aux_sym_control_master_token1] = ACTIONS(2989), - [aux_sym_control_path_token1] = ACTIONS(2989), - [aux_sym_control_persist_token1] = ACTIONS(2989), - [aux_sym_dynamic_forward_token1] = ACTIONS(2989), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2989), - [aux_sym_escape_char_token1] = ACTIONS(2989), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2989), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2989), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2989), - [aux_sym_forward_agent_token1] = ACTIONS(2989), - [aux_sym_forward_x11_token1] = ACTIONS(2991), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2989), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2989), - [aux_sym_gateway_ports_token1] = ACTIONS(2989), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2989), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2989), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2989), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2989), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2989), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2989), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2989), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2989), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2989), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2989), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2989), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2989), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2989), - [aux_sym_host_key_alias_token1] = ACTIONS(2989), - [aux_sym_hostname_token1] = ACTIONS(2989), - [aux_sym_identities_only_token1] = ACTIONS(2989), - [aux_sym_identity_agent_token1] = ACTIONS(2989), - [aux_sym_identity_file_token1] = ACTIONS(2989), - [aux_sym_ignore_unknown_token1] = ACTIONS(2989), - [aux_sym_include_token1] = ACTIONS(2989), - [aux_sym_ip_qos_token1] = ACTIONS(2989), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2989), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2989), - [aux_sym_kex_algorithms_token1] = ACTIONS(2989), - [aux_sym_known_hosts_command_token1] = ACTIONS(2989), - [aux_sym_local_command_token1] = ACTIONS(2989), - [aux_sym_local_forward_token1] = ACTIONS(2989), - [aux_sym_log_level_token1] = ACTIONS(2989), - [aux_sym_log_verbose_token1] = ACTIONS(2989), - [aux_sym_macs_token1] = ACTIONS(2989), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2989), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2989), - [aux_sym_password_authentication_token1] = ACTIONS(2989), - [aux_sym_permit_local_command_token1] = ACTIONS(2989), - [aux_sym_permit_remote_open_token1] = ACTIONS(2989), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2989), - [aux_sym_port_token1] = ACTIONS(2989), - [aux_sym_preferred_authentications_token1] = ACTIONS(2989), - [aux_sym_protocol_token1] = ACTIONS(2989), - [aux_sym_proxy_command_token1] = ACTIONS(2989), - [aux_sym_proxy_jump_token1] = ACTIONS(2989), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2989), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2989), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2989), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2989), - [aux_sym_rekey_limit_token1] = ACTIONS(2989), - [aux_sym_remote_command_token1] = ACTIONS(2989), - [aux_sym_remote_forward_token1] = ACTIONS(2989), - [aux_sym_request_tty_token1] = ACTIONS(2989), - [aux_sym_required_rsa_size_token1] = ACTIONS(2989), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2989), - [aux_sym_security_key_provider_token1] = ACTIONS(2989), - [aux_sym_send_env_token1] = ACTIONS(2989), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2989), - [aux_sym_server_alive_interval_token1] = ACTIONS(2989), - [aux_sym_session_type_token1] = ACTIONS(2989), - [aux_sym_set_env_token1] = ACTIONS(2989), - [aux_sym_stdin_null_token1] = ACTIONS(2989), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2989), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2989), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2989), - [aux_sym_syslog_facility_token1] = ACTIONS(2989), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2989), - [aux_sym_keep_alive_token1] = ACTIONS(2989), - [aux_sym_tunnel_token1] = ACTIONS(2991), - [aux_sym_tunnel_device_token1] = ACTIONS(2989), - [aux_sym_update_host_keys_token1] = ACTIONS(2989), - [aux_sym_use_keychain_token1] = ACTIONS(2989), - [aux_sym_use_roaming_token1] = ACTIONS(2989), - [aux_sym_user_token1] = ACTIONS(2991), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2989), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2989), - [aux_sym_visual_host_key_token1] = ACTIONS(2989), - [aux_sym_xauth_location_token1] = ACTIONS(2989), + [ts_builtin_sym_end] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(3010), + [aux_sym_match_token1] = ACTIONS(3006), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3006), + [aux_sym_address_family_token1] = ACTIONS(3006), + [aux_sym_batch_mode_token1] = ACTIONS(3006), + [aux_sym_bind_address_token1] = ACTIONS(3006), + [aux_sym_bind_interface_token1] = ACTIONS(3006), + [aux_sym_canonical_domains_token1] = ACTIONS(3006), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3006), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3006), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3006), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3006), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3006), + [aux_sym_certificate_file_token1] = ACTIONS(3006), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3006), + [aux_sym_check_host_ip_token1] = ACTIONS(3006), + [aux_sym_ciphers_token1] = ACTIONS(3006), + [aux_sym_cipher_token1] = ACTIONS(3008), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3006), + [aux_sym_compression_token1] = ACTIONS(3006), + [aux_sym_connection_attempts_token1] = ACTIONS(3006), + [aux_sym_connect_timeout_token1] = ACTIONS(3006), + [aux_sym_control_master_token1] = ACTIONS(3006), + [aux_sym_control_path_token1] = ACTIONS(3006), + [aux_sym_control_persist_token1] = ACTIONS(3006), + [aux_sym_dynamic_forward_token1] = ACTIONS(3006), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3006), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3006), + [aux_sym_escape_char_token1] = ACTIONS(3006), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3006), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3006), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3006), + [aux_sym_forward_agent_token1] = ACTIONS(3006), + [aux_sym_forward_x11_token1] = ACTIONS(3008), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3006), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3006), + [aux_sym_gateway_ports_token1] = ACTIONS(3006), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3006), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3006), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3006), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3006), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3006), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3006), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3006), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3006), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3006), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3006), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3006), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3006), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3006), + [aux_sym_host_key_alias_token1] = ACTIONS(3006), + [aux_sym_hostname_token1] = ACTIONS(3006), + [aux_sym_identities_only_token1] = ACTIONS(3006), + [aux_sym_identity_agent_token1] = ACTIONS(3006), + [aux_sym_identity_file_token1] = ACTIONS(3006), + [aux_sym_ignore_unknown_token1] = ACTIONS(3006), + [aux_sym_include_token1] = ACTIONS(3006), + [aux_sym_ip_qos_token1] = ACTIONS(3006), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3006), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3006), + [aux_sym_kex_algorithms_token1] = ACTIONS(3006), + [aux_sym_known_hosts_command_token1] = ACTIONS(3006), + [aux_sym_local_command_token1] = ACTIONS(3006), + [aux_sym_local_forward_token1] = ACTIONS(3006), + [aux_sym_log_level_token1] = ACTIONS(3006), + [aux_sym_log_verbose_token1] = ACTIONS(3006), + [aux_sym_macs_token1] = ACTIONS(3006), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3006), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3006), + [aux_sym_password_authentication_token1] = ACTIONS(3006), + [aux_sym_permit_local_command_token1] = ACTIONS(3006), + [aux_sym_permit_remote_open_token1] = ACTIONS(3006), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3006), + [aux_sym_port_token1] = ACTIONS(3006), + [aux_sym_preferred_authentications_token1] = ACTIONS(3006), + [aux_sym_protocol_token1] = ACTIONS(3006), + [aux_sym_proxy_command_token1] = ACTIONS(3006), + [aux_sym_proxy_jump_token1] = ACTIONS(3006), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3006), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3006), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3006), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3006), + [aux_sym_rekey_limit_token1] = ACTIONS(3006), + [aux_sym_remote_command_token1] = ACTIONS(3006), + [aux_sym_remote_forward_token1] = ACTIONS(3006), + [aux_sym_request_tty_token1] = ACTIONS(3006), + [aux_sym_required_rsa_size_token1] = ACTIONS(3006), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3006), + [aux_sym_security_key_provider_token1] = ACTIONS(3006), + [aux_sym_send_env_token1] = ACTIONS(3006), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3006), + [aux_sym_server_alive_interval_token1] = ACTIONS(3006), + [aux_sym_session_type_token1] = ACTIONS(3006), + [aux_sym_set_env_token1] = ACTIONS(3006), + [aux_sym_stdin_null_token1] = ACTIONS(3006), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3006), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3006), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3006), + [aux_sym_syslog_facility_token1] = ACTIONS(3006), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3006), + [aux_sym_keep_alive_token1] = ACTIONS(3006), + [aux_sym_tunnel_token1] = ACTIONS(3008), + [aux_sym_tunnel_device_token1] = ACTIONS(3006), + [aux_sym_update_host_keys_token1] = ACTIONS(3006), + [aux_sym_use_keychain_token1] = ACTIONS(3006), + [aux_sym_use_roaming_token1] = ACTIONS(3006), + [aux_sym_user_token1] = ACTIONS(3008), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3006), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3006), + [aux_sym_visual_host_key_token1] = ACTIONS(3006), + [aux_sym_xauth_location_token1] = ACTIONS(3006), }, [449] = { - [ts_builtin_sym_end] = ACTIONS(2993), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2995), - [aux_sym_match_token1] = ACTIONS(2993), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2993), - [aux_sym_address_family_token1] = ACTIONS(2993), - [aux_sym_batch_mode_token1] = ACTIONS(2993), - [aux_sym_bind_address_token1] = ACTIONS(2993), - [aux_sym_bind_interface_token1] = ACTIONS(2993), - [aux_sym_canonical_domains_token1] = ACTIONS(2993), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2993), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2993), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2993), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2993), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2993), - [aux_sym_certificate_file_token1] = ACTIONS(2993), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2993), - [aux_sym_check_host_ip_token1] = ACTIONS(2993), - [aux_sym_ciphers_token1] = ACTIONS(2993), - [aux_sym_cipher_token1] = ACTIONS(2995), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2993), - [aux_sym_compression_token1] = ACTIONS(2993), - [aux_sym_connection_attempts_token1] = ACTIONS(2993), - [aux_sym_connect_timeout_token1] = ACTIONS(2993), - [aux_sym_control_master_token1] = ACTIONS(2993), - [aux_sym_control_path_token1] = ACTIONS(2993), - [aux_sym_control_persist_token1] = ACTIONS(2993), - [aux_sym_dynamic_forward_token1] = ACTIONS(2993), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2993), - [aux_sym_escape_char_token1] = ACTIONS(2993), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2993), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2993), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2993), - [aux_sym_forward_agent_token1] = ACTIONS(2993), - [aux_sym_forward_x11_token1] = ACTIONS(2995), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2993), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2993), - [aux_sym_gateway_ports_token1] = ACTIONS(2993), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2993), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2993), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2993), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2993), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2993), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2993), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2993), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2993), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2993), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2993), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2993), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2993), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2993), - [aux_sym_host_key_alias_token1] = ACTIONS(2993), - [aux_sym_hostname_token1] = ACTIONS(2993), - [aux_sym_identities_only_token1] = ACTIONS(2993), - [aux_sym_identity_agent_token1] = ACTIONS(2993), - [aux_sym_identity_file_token1] = ACTIONS(2993), - [aux_sym_ignore_unknown_token1] = ACTIONS(2993), - [aux_sym_include_token1] = ACTIONS(2993), - [aux_sym_ip_qos_token1] = ACTIONS(2993), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2993), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2993), - [aux_sym_kex_algorithms_token1] = ACTIONS(2993), - [aux_sym_known_hosts_command_token1] = ACTIONS(2993), - [aux_sym_local_command_token1] = ACTIONS(2993), - [aux_sym_local_forward_token1] = ACTIONS(2993), - [aux_sym_log_level_token1] = ACTIONS(2993), - [aux_sym_log_verbose_token1] = ACTIONS(2993), - [aux_sym_macs_token1] = ACTIONS(2993), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2993), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2993), - [aux_sym_password_authentication_token1] = ACTIONS(2993), - [aux_sym_permit_local_command_token1] = ACTIONS(2993), - [aux_sym_permit_remote_open_token1] = ACTIONS(2993), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2993), - [aux_sym_port_token1] = ACTIONS(2993), - [aux_sym_preferred_authentications_token1] = ACTIONS(2993), - [aux_sym_protocol_token1] = ACTIONS(2993), - [aux_sym_proxy_command_token1] = ACTIONS(2993), - [aux_sym_proxy_jump_token1] = ACTIONS(2993), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2993), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2993), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2993), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2993), - [aux_sym_rekey_limit_token1] = ACTIONS(2993), - [aux_sym_remote_command_token1] = ACTIONS(2993), - [aux_sym_remote_forward_token1] = ACTIONS(2993), - [aux_sym_request_tty_token1] = ACTIONS(2993), - [aux_sym_required_rsa_size_token1] = ACTIONS(2993), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2993), - [aux_sym_security_key_provider_token1] = ACTIONS(2993), - [aux_sym_send_env_token1] = ACTIONS(2993), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2993), - [aux_sym_server_alive_interval_token1] = ACTIONS(2993), - [aux_sym_session_type_token1] = ACTIONS(2993), - [aux_sym_set_env_token1] = ACTIONS(2993), - [aux_sym_stdin_null_token1] = ACTIONS(2993), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2993), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2993), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2993), - [aux_sym_syslog_facility_token1] = ACTIONS(2993), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2993), - [aux_sym_keep_alive_token1] = ACTIONS(2993), - [aux_sym_tunnel_token1] = ACTIONS(2995), - [aux_sym_tunnel_device_token1] = ACTIONS(2993), - [aux_sym_update_host_keys_token1] = ACTIONS(2993), - [aux_sym_use_keychain_token1] = ACTIONS(2993), - [aux_sym_use_roaming_token1] = ACTIONS(2993), - [aux_sym_user_token1] = ACTIONS(2995), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2993), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2993), - [aux_sym_visual_host_key_token1] = ACTIONS(2993), - [aux_sym_xauth_location_token1] = ACTIONS(2993), + [ts_builtin_sym_end] = ACTIONS(3012), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3014), + [anon_sym_DQUOTE] = ACTIONS(3012), + [aux_sym_match_token1] = ACTIONS(3012), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3012), + [aux_sym_address_family_token1] = ACTIONS(3012), + [aux_sym_batch_mode_token1] = ACTIONS(3012), + [aux_sym_bind_address_token1] = ACTIONS(3012), + [aux_sym_bind_interface_token1] = ACTIONS(3012), + [aux_sym_canonical_domains_token1] = ACTIONS(3012), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3012), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3012), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3012), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3012), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3012), + [aux_sym_certificate_file_token1] = ACTIONS(3012), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3012), + [aux_sym_check_host_ip_token1] = ACTIONS(3012), + [aux_sym_ciphers_token1] = ACTIONS(3012), + [aux_sym_cipher_token1] = ACTIONS(3014), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3012), + [aux_sym_compression_token1] = ACTIONS(3012), + [aux_sym_connection_attempts_token1] = ACTIONS(3012), + [aux_sym_connect_timeout_token1] = ACTIONS(3012), + [aux_sym_control_master_token1] = ACTIONS(3012), + [aux_sym_control_path_token1] = ACTIONS(3012), + [aux_sym_control_persist_token1] = ACTIONS(3012), + [aux_sym_dynamic_forward_token1] = ACTIONS(3012), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3012), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3012), + [aux_sym_escape_char_token1] = ACTIONS(3012), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3012), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3012), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3012), + [aux_sym_forward_agent_token1] = ACTIONS(3012), + [aux_sym_forward_x11_token1] = ACTIONS(3014), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3012), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3012), + [aux_sym_gateway_ports_token1] = ACTIONS(3012), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3012), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3012), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3012), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3012), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3012), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3012), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3012), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3012), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3012), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3012), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3012), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3012), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3012), + [aux_sym_host_key_alias_token1] = ACTIONS(3012), + [aux_sym_hostname_token1] = ACTIONS(3012), + [aux_sym_identities_only_token1] = ACTIONS(3012), + [aux_sym_identity_agent_token1] = ACTIONS(3012), + [aux_sym_identity_file_token1] = ACTIONS(3012), + [aux_sym_ignore_unknown_token1] = ACTIONS(3012), + [aux_sym_include_token1] = ACTIONS(3012), + [aux_sym_ip_qos_token1] = ACTIONS(3012), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3012), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3012), + [aux_sym_kex_algorithms_token1] = ACTIONS(3012), + [aux_sym_known_hosts_command_token1] = ACTIONS(3012), + [aux_sym_local_command_token1] = ACTIONS(3012), + [aux_sym_local_forward_token1] = ACTIONS(3012), + [aux_sym_log_level_token1] = ACTIONS(3012), + [aux_sym_log_verbose_token1] = ACTIONS(3012), + [aux_sym_macs_token1] = ACTIONS(3012), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3012), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3012), + [aux_sym_password_authentication_token1] = ACTIONS(3012), + [aux_sym_permit_local_command_token1] = ACTIONS(3012), + [aux_sym_permit_remote_open_token1] = ACTIONS(3012), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3012), + [aux_sym_port_token1] = ACTIONS(3012), + [aux_sym_preferred_authentications_token1] = ACTIONS(3012), + [aux_sym_protocol_token1] = ACTIONS(3012), + [aux_sym_proxy_command_token1] = ACTIONS(3012), + [aux_sym_proxy_jump_token1] = ACTIONS(3012), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3012), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3012), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3012), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3012), + [aux_sym_rekey_limit_token1] = ACTIONS(3012), + [aux_sym_remote_command_token1] = ACTIONS(3012), + [aux_sym_remote_forward_token1] = ACTIONS(3012), + [aux_sym_request_tty_token1] = ACTIONS(3012), + [aux_sym_required_rsa_size_token1] = ACTIONS(3012), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3012), + [aux_sym_security_key_provider_token1] = ACTIONS(3012), + [aux_sym_send_env_token1] = ACTIONS(3012), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3012), + [aux_sym_server_alive_interval_token1] = ACTIONS(3012), + [aux_sym_session_type_token1] = ACTIONS(3012), + [aux_sym_set_env_token1] = ACTIONS(3012), + [aux_sym_stdin_null_token1] = ACTIONS(3012), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3012), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3012), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3012), + [aux_sym_syslog_facility_token1] = ACTIONS(3012), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3012), + [aux_sym_keep_alive_token1] = ACTIONS(3012), + [aux_sym_tunnel_token1] = ACTIONS(3014), + [aux_sym_tunnel_device_token1] = ACTIONS(3012), + [aux_sym_update_host_keys_token1] = ACTIONS(3012), + [aux_sym_use_keychain_token1] = ACTIONS(3012), + [aux_sym_use_roaming_token1] = ACTIONS(3012), + [aux_sym_user_token1] = ACTIONS(3014), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3012), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3012), + [aux_sym_visual_host_key_token1] = ACTIONS(3012), + [aux_sym_xauth_location_token1] = ACTIONS(3012), }, [450] = { - [ts_builtin_sym_end] = ACTIONS(2997), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2999), - [aux_sym_match_token1] = ACTIONS(2997), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2997), - [aux_sym_address_family_token1] = ACTIONS(2997), - [aux_sym_batch_mode_token1] = ACTIONS(2997), - [aux_sym_bind_address_token1] = ACTIONS(2997), - [aux_sym_bind_interface_token1] = ACTIONS(2997), - [aux_sym_canonical_domains_token1] = ACTIONS(2997), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2997), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2997), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2997), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2997), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2997), - [aux_sym_certificate_file_token1] = ACTIONS(2997), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2997), - [aux_sym_check_host_ip_token1] = ACTIONS(2997), - [aux_sym_ciphers_token1] = ACTIONS(2997), - [aux_sym_cipher_token1] = ACTIONS(2999), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2997), - [aux_sym_compression_token1] = ACTIONS(2997), - [aux_sym_connection_attempts_token1] = ACTIONS(2997), - [aux_sym_connect_timeout_token1] = ACTIONS(2997), - [aux_sym_control_master_token1] = ACTIONS(2997), - [aux_sym_control_path_token1] = ACTIONS(2997), - [aux_sym_control_persist_token1] = ACTIONS(2997), - [aux_sym_dynamic_forward_token1] = ACTIONS(2997), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2997), - [aux_sym_escape_char_token1] = ACTIONS(2997), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2997), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2997), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2997), - [aux_sym_forward_agent_token1] = ACTIONS(2997), - [aux_sym_forward_x11_token1] = ACTIONS(2999), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2997), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2997), - [aux_sym_gateway_ports_token1] = ACTIONS(2997), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2997), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2997), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2997), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2997), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2997), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2997), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2997), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2997), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2997), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2997), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2997), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2997), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2997), - [aux_sym_host_key_alias_token1] = ACTIONS(2997), - [aux_sym_hostname_token1] = ACTIONS(2997), - [aux_sym_identities_only_token1] = ACTIONS(2997), - [aux_sym_identity_agent_token1] = ACTIONS(2997), - [aux_sym_identity_file_token1] = ACTIONS(2997), - [aux_sym_ignore_unknown_token1] = ACTIONS(2997), - [aux_sym_include_token1] = ACTIONS(2997), - [aux_sym_ip_qos_token1] = ACTIONS(2997), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2997), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2997), - [aux_sym_kex_algorithms_token1] = ACTIONS(2997), - [aux_sym_known_hosts_command_token1] = ACTIONS(2997), - [aux_sym_local_command_token1] = ACTIONS(2997), - [aux_sym_local_forward_token1] = ACTIONS(2997), - [aux_sym_log_level_token1] = ACTIONS(2997), - [aux_sym_log_verbose_token1] = ACTIONS(2997), - [aux_sym_macs_token1] = ACTIONS(2997), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2997), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2997), - [aux_sym_password_authentication_token1] = ACTIONS(2997), - [aux_sym_permit_local_command_token1] = ACTIONS(2997), - [aux_sym_permit_remote_open_token1] = ACTIONS(2997), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2997), - [aux_sym_port_token1] = ACTIONS(2997), - [aux_sym_preferred_authentications_token1] = ACTIONS(2997), - [aux_sym_protocol_token1] = ACTIONS(2997), - [aux_sym_proxy_command_token1] = ACTIONS(2997), - [aux_sym_proxy_jump_token1] = ACTIONS(2997), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2997), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2997), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2997), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2997), - [aux_sym_rekey_limit_token1] = ACTIONS(2997), - [aux_sym_remote_command_token1] = ACTIONS(2997), - [aux_sym_remote_forward_token1] = ACTIONS(2997), - [aux_sym_request_tty_token1] = ACTIONS(2997), - [aux_sym_required_rsa_size_token1] = ACTIONS(2997), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2997), - [aux_sym_security_key_provider_token1] = ACTIONS(2997), - [aux_sym_send_env_token1] = ACTIONS(2997), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2997), - [aux_sym_server_alive_interval_token1] = ACTIONS(2997), - [aux_sym_session_type_token1] = ACTIONS(2997), - [aux_sym_set_env_token1] = ACTIONS(2997), - [aux_sym_stdin_null_token1] = ACTIONS(2997), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2997), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2997), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2997), - [aux_sym_syslog_facility_token1] = ACTIONS(2997), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2997), - [aux_sym_keep_alive_token1] = ACTIONS(2997), - [aux_sym_tunnel_token1] = ACTIONS(2999), - [aux_sym_tunnel_device_token1] = ACTIONS(2997), - [aux_sym_update_host_keys_token1] = ACTIONS(2997), - [aux_sym_use_keychain_token1] = ACTIONS(2997), - [aux_sym_use_roaming_token1] = ACTIONS(2997), - [aux_sym_user_token1] = ACTIONS(2999), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2997), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2997), - [aux_sym_visual_host_key_token1] = ACTIONS(2997), - [aux_sym_xauth_location_token1] = ACTIONS(2997), + [ts_builtin_sym_end] = ACTIONS(1244), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1246), + [aux_sym_match_token1] = ACTIONS(1244), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1244), + [aux_sym_address_family_token1] = ACTIONS(1244), + [aux_sym_batch_mode_token1] = ACTIONS(1244), + [aux_sym_bind_address_token1] = ACTIONS(1244), + [aux_sym_bind_interface_token1] = ACTIONS(1244), + [aux_sym_canonical_domains_token1] = ACTIONS(1244), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1244), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1244), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1244), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1244), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1244), + [aux_sym_certificate_file_token1] = ACTIONS(1244), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1244), + [aux_sym_check_host_ip_token1] = ACTIONS(1244), + [aux_sym_ciphers_token1] = ACTIONS(1244), + [aux_sym_cipher_token1] = ACTIONS(1246), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1244), + [aux_sym_compression_token1] = ACTIONS(1244), + [aux_sym_connection_attempts_token1] = ACTIONS(1244), + [aux_sym_connect_timeout_token1] = ACTIONS(1244), + [aux_sym_control_master_token1] = ACTIONS(1244), + [aux_sym_control_path_token1] = ACTIONS(1244), + [aux_sym_control_persist_token1] = ACTIONS(1244), + [aux_sym_dynamic_forward_token1] = ACTIONS(1244), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1244), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1244), + [aux_sym_escape_char_token1] = ACTIONS(1244), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1244), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1244), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1244), + [aux_sym_forward_agent_token1] = ACTIONS(1244), + [aux_sym_forward_x11_token1] = ACTIONS(1246), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1244), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1244), + [aux_sym_gateway_ports_token1] = ACTIONS(1244), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1244), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1244), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1244), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1244), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1244), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1244), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1244), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1244), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1244), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1244), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1244), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1244), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1244), + [aux_sym_host_key_alias_token1] = ACTIONS(1244), + [aux_sym_hostname_token1] = ACTIONS(1244), + [aux_sym_identities_only_token1] = ACTIONS(1244), + [aux_sym_identity_agent_token1] = ACTIONS(1244), + [aux_sym_identity_file_token1] = ACTIONS(1244), + [aux_sym_ignore_unknown_token1] = ACTIONS(1244), + [aux_sym_include_token1] = ACTIONS(1244), + [aux_sym_ip_qos_token1] = ACTIONS(1244), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1244), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1244), + [aux_sym_kex_algorithms_token1] = ACTIONS(1244), + [aux_sym_known_hosts_command_token1] = ACTIONS(1244), + [aux_sym_local_command_token1] = ACTIONS(1244), + [aux_sym_local_forward_token1] = ACTIONS(1244), + [aux_sym_log_level_token1] = ACTIONS(1244), + [aux_sym_log_verbose_token1] = ACTIONS(1244), + [aux_sym_macs_token1] = ACTIONS(1244), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1244), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1244), + [aux_sym_password_authentication_token1] = ACTIONS(1244), + [aux_sym_permit_local_command_token1] = ACTIONS(1244), + [aux_sym_permit_remote_open_token1] = ACTIONS(1244), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1244), + [aux_sym_port_token1] = ACTIONS(1244), + [aux_sym_preferred_authentications_token1] = ACTIONS(1244), + [aux_sym_protocol_token1] = ACTIONS(1244), + [aux_sym_proxy_command_token1] = ACTIONS(1244), + [aux_sym_proxy_jump_token1] = ACTIONS(1244), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1244), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1244), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1244), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1244), + [aux_sym_rekey_limit_token1] = ACTIONS(1244), + [aux_sym_remote_command_token1] = ACTIONS(1244), + [aux_sym_remote_forward_token1] = ACTIONS(1244), + [aux_sym_request_tty_token1] = ACTIONS(1244), + [aux_sym_required_rsa_size_token1] = ACTIONS(1244), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1244), + [aux_sym_security_key_provider_token1] = ACTIONS(1244), + [aux_sym_send_env_token1] = ACTIONS(1244), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1244), + [aux_sym_server_alive_interval_token1] = ACTIONS(1244), + [aux_sym_session_type_token1] = ACTIONS(1244), + [aux_sym_set_env_token1] = ACTIONS(1244), + [aux_sym_stdin_null_token1] = ACTIONS(1244), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1244), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1244), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1244), + [aux_sym_syslog_facility_token1] = ACTIONS(1244), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1244), + [aux_sym_keep_alive_token1] = ACTIONS(1244), + [aux_sym_tunnel_token1] = ACTIONS(1246), + [aux_sym_tunnel_device_token1] = ACTIONS(1244), + [aux_sym_update_host_keys_token1] = ACTIONS(1244), + [aux_sym_use_keychain_token1] = ACTIONS(1244), + [aux_sym_use_roaming_token1] = ACTIONS(1244), + [aux_sym_user_token1] = ACTIONS(1246), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1244), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1244), + [aux_sym_visual_host_key_token1] = ACTIONS(1244), + [aux_sym_xauth_location_token1] = ACTIONS(1244), }, [451] = { - [ts_builtin_sym_end] = ACTIONS(3001), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3003), - [aux_sym_match_token1] = ACTIONS(3001), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3001), - [aux_sym_address_family_token1] = ACTIONS(3001), - [aux_sym_batch_mode_token1] = ACTIONS(3001), - [aux_sym_bind_address_token1] = ACTIONS(3001), - [aux_sym_bind_interface_token1] = ACTIONS(3001), - [aux_sym_canonical_domains_token1] = ACTIONS(3001), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3001), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3001), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3001), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3001), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3001), - [aux_sym_certificate_file_token1] = ACTIONS(3001), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3001), - [aux_sym_check_host_ip_token1] = ACTIONS(3001), - [aux_sym_ciphers_token1] = ACTIONS(3001), - [aux_sym_cipher_token1] = ACTIONS(3003), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3001), - [aux_sym_compression_token1] = ACTIONS(3001), - [aux_sym_connection_attempts_token1] = ACTIONS(3001), - [aux_sym_connect_timeout_token1] = ACTIONS(3001), - [aux_sym_control_master_token1] = ACTIONS(3001), - [aux_sym_control_path_token1] = ACTIONS(3001), - [aux_sym_control_persist_token1] = ACTIONS(3001), - [aux_sym_dynamic_forward_token1] = ACTIONS(3001), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3001), - [aux_sym_escape_char_token1] = ACTIONS(3001), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3001), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3001), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3001), - [aux_sym_forward_agent_token1] = ACTIONS(3001), - [aux_sym_forward_x11_token1] = ACTIONS(3003), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3001), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3001), - [aux_sym_gateway_ports_token1] = ACTIONS(3001), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3001), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3001), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3001), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3001), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3001), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3001), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3001), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3001), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3001), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3001), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3001), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3001), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3001), - [aux_sym_host_key_alias_token1] = ACTIONS(3001), - [aux_sym_hostname_token1] = ACTIONS(3001), - [aux_sym_identities_only_token1] = ACTIONS(3001), - [aux_sym_identity_agent_token1] = ACTIONS(3001), - [aux_sym_identity_file_token1] = ACTIONS(3001), - [aux_sym_ignore_unknown_token1] = ACTIONS(3001), - [aux_sym_include_token1] = ACTIONS(3001), - [aux_sym_ip_qos_token1] = ACTIONS(3001), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3001), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3001), - [aux_sym_kex_algorithms_token1] = ACTIONS(3001), - [aux_sym_known_hosts_command_token1] = ACTIONS(3001), - [aux_sym_local_command_token1] = ACTIONS(3001), - [aux_sym_local_forward_token1] = ACTIONS(3001), - [aux_sym_log_level_token1] = ACTIONS(3001), - [aux_sym_log_verbose_token1] = ACTIONS(3001), - [aux_sym_macs_token1] = ACTIONS(3001), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3001), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3001), - [aux_sym_password_authentication_token1] = ACTIONS(3001), - [aux_sym_permit_local_command_token1] = ACTIONS(3001), - [aux_sym_permit_remote_open_token1] = ACTIONS(3001), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3001), - [aux_sym_port_token1] = ACTIONS(3001), - [aux_sym_preferred_authentications_token1] = ACTIONS(3001), - [aux_sym_protocol_token1] = ACTIONS(3001), - [aux_sym_proxy_command_token1] = ACTIONS(3001), - [aux_sym_proxy_jump_token1] = ACTIONS(3001), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3001), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3001), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3001), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3001), - [aux_sym_rekey_limit_token1] = ACTIONS(3001), - [aux_sym_remote_command_token1] = ACTIONS(3001), - [aux_sym_remote_forward_token1] = ACTIONS(3001), - [aux_sym_request_tty_token1] = ACTIONS(3001), - [aux_sym_required_rsa_size_token1] = ACTIONS(3001), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3001), - [aux_sym_security_key_provider_token1] = ACTIONS(3001), - [aux_sym_send_env_token1] = ACTIONS(3001), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3001), - [aux_sym_server_alive_interval_token1] = ACTIONS(3001), - [aux_sym_session_type_token1] = ACTIONS(3001), - [aux_sym_set_env_token1] = ACTIONS(3001), - [aux_sym_stdin_null_token1] = ACTIONS(3001), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3001), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3001), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3001), - [aux_sym_syslog_facility_token1] = ACTIONS(3001), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3001), - [aux_sym_keep_alive_token1] = ACTIONS(3001), - [aux_sym_tunnel_token1] = ACTIONS(3003), - [aux_sym_tunnel_device_token1] = ACTIONS(3001), - [aux_sym_update_host_keys_token1] = ACTIONS(3001), - [aux_sym_use_keychain_token1] = ACTIONS(3001), - [aux_sym_use_roaming_token1] = ACTIONS(3001), - [aux_sym_user_token1] = ACTIONS(3003), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3001), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3001), - [aux_sym_visual_host_key_token1] = ACTIONS(3001), - [aux_sym_xauth_location_token1] = ACTIONS(3001), + [ts_builtin_sym_end] = ACTIONS(878), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(880), + [aux_sym_match_token1] = ACTIONS(878), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(878), + [aux_sym_address_family_token1] = ACTIONS(878), + [aux_sym_batch_mode_token1] = ACTIONS(878), + [aux_sym_bind_address_token1] = ACTIONS(878), + [aux_sym_bind_interface_token1] = ACTIONS(878), + [aux_sym_canonical_domains_token1] = ACTIONS(878), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(878), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(878), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(878), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(878), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(878), + [aux_sym_certificate_file_token1] = ACTIONS(878), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(878), + [aux_sym_check_host_ip_token1] = ACTIONS(878), + [aux_sym_ciphers_token1] = ACTIONS(878), + [aux_sym_cipher_token1] = ACTIONS(880), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(878), + [aux_sym_compression_token1] = ACTIONS(878), + [aux_sym_connection_attempts_token1] = ACTIONS(878), + [aux_sym_connect_timeout_token1] = ACTIONS(878), + [aux_sym_control_master_token1] = ACTIONS(878), + [aux_sym_control_path_token1] = ACTIONS(878), + [aux_sym_control_persist_token1] = ACTIONS(878), + [aux_sym_dynamic_forward_token1] = ACTIONS(878), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(878), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(878), + [aux_sym_escape_char_token1] = ACTIONS(878), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(878), + [aux_sym_fingerprint_hash_token1] = ACTIONS(878), + [aux_sym_fork_after_authentication_token1] = ACTIONS(878), + [aux_sym_forward_agent_token1] = ACTIONS(878), + [aux_sym_forward_x11_token1] = ACTIONS(880), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(878), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(878), + [aux_sym_gateway_ports_token1] = ACTIONS(878), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(878), + [aux_sym_gssapi_authentication_token1] = ACTIONS(878), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(878), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(878), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(878), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(878), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(878), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(878), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(878), + [aux_sym_hash_known_hosts_token1] = ACTIONS(878), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(878), + [aux_sym_hostbased_authentication_token1] = ACTIONS(878), + [aux_sym_host_key_algorithms_token1] = ACTIONS(878), + [aux_sym_host_key_alias_token1] = ACTIONS(878), + [aux_sym_hostname_token1] = ACTIONS(878), + [aux_sym_identities_only_token1] = ACTIONS(878), + [aux_sym_identity_agent_token1] = ACTIONS(878), + [aux_sym_identity_file_token1] = ACTIONS(878), + [aux_sym_ignore_unknown_token1] = ACTIONS(878), + [aux_sym_include_token1] = ACTIONS(878), + [aux_sym_ip_qos_token1] = ACTIONS(878), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(878), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(878), + [aux_sym_kex_algorithms_token1] = ACTIONS(878), + [aux_sym_known_hosts_command_token1] = ACTIONS(878), + [aux_sym_local_command_token1] = ACTIONS(878), + [aux_sym_local_forward_token1] = ACTIONS(878), + [aux_sym_log_level_token1] = ACTIONS(878), + [aux_sym_log_verbose_token1] = ACTIONS(878), + [aux_sym_macs_token1] = ACTIONS(878), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(878), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(878), + [aux_sym_password_authentication_token1] = ACTIONS(878), + [aux_sym_permit_local_command_token1] = ACTIONS(878), + [aux_sym_permit_remote_open_token1] = ACTIONS(878), + [aux_sym_pkcs11_provider_token1] = ACTIONS(878), + [aux_sym_port_token1] = ACTIONS(878), + [aux_sym_preferred_authentications_token1] = ACTIONS(878), + [aux_sym_protocol_token1] = ACTIONS(878), + [aux_sym_proxy_command_token1] = ACTIONS(878), + [aux_sym_proxy_jump_token1] = ACTIONS(878), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(878), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(878), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(878), + [aux_sym_pubkey_authentication_token1] = ACTIONS(878), + [aux_sym_rekey_limit_token1] = ACTIONS(878), + [aux_sym_remote_command_token1] = ACTIONS(878), + [aux_sym_remote_forward_token1] = ACTIONS(878), + [aux_sym_request_tty_token1] = ACTIONS(878), + [aux_sym_required_rsa_size_token1] = ACTIONS(878), + [aux_sym_revoked_host_keys_token1] = ACTIONS(878), + [aux_sym_security_key_provider_token1] = ACTIONS(878), + [aux_sym_send_env_token1] = ACTIONS(878), + [aux_sym_server_alive_count_max_token1] = ACTIONS(878), + [aux_sym_server_alive_interval_token1] = ACTIONS(878), + [aux_sym_session_type_token1] = ACTIONS(878), + [aux_sym_set_env_token1] = ACTIONS(878), + [aux_sym_stdin_null_token1] = ACTIONS(878), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(878), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(878), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(878), + [aux_sym_syslog_facility_token1] = ACTIONS(878), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(878), + [aux_sym_keep_alive_token1] = ACTIONS(878), + [aux_sym_tunnel_token1] = ACTIONS(880), + [aux_sym_tunnel_device_token1] = ACTIONS(878), + [aux_sym_update_host_keys_token1] = ACTIONS(878), + [aux_sym_use_keychain_token1] = ACTIONS(878), + [aux_sym_use_roaming_token1] = ACTIONS(878), + [aux_sym_user_token1] = ACTIONS(880), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(878), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(878), + [aux_sym_visual_host_key_token1] = ACTIONS(878), + [aux_sym_xauth_location_token1] = ACTIONS(878), }, [452] = { - [ts_builtin_sym_end] = ACTIONS(1629), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1631), - [aux_sym_match_token1] = ACTIONS(1629), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1629), - [aux_sym_address_family_token1] = ACTIONS(1629), - [aux_sym_batch_mode_token1] = ACTIONS(1629), - [aux_sym_bind_address_token1] = ACTIONS(1629), - [aux_sym_bind_interface_token1] = ACTIONS(1629), - [aux_sym_canonical_domains_token1] = ACTIONS(1629), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1629), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1629), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1629), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1629), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1629), - [aux_sym_certificate_file_token1] = ACTIONS(1629), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1629), - [aux_sym_check_host_ip_token1] = ACTIONS(1629), - [aux_sym_ciphers_token1] = ACTIONS(1629), - [aux_sym_cipher_token1] = ACTIONS(1631), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1629), - [aux_sym_compression_token1] = ACTIONS(1629), - [aux_sym_connection_attempts_token1] = ACTIONS(1629), - [aux_sym_connect_timeout_token1] = ACTIONS(1629), - [aux_sym_control_master_token1] = ACTIONS(1629), - [aux_sym_control_path_token1] = ACTIONS(1629), - [aux_sym_control_persist_token1] = ACTIONS(1629), - [aux_sym_dynamic_forward_token1] = ACTIONS(1629), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1629), - [aux_sym_escape_char_token1] = ACTIONS(1629), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1629), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1629), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1629), - [aux_sym_forward_agent_token1] = ACTIONS(1629), - [aux_sym_forward_x11_token1] = ACTIONS(1631), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1629), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1629), - [aux_sym_gateway_ports_token1] = ACTIONS(1629), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1629), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1629), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1629), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1629), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1629), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1629), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1629), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1629), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1629), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1629), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1629), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1629), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1629), - [aux_sym_host_key_alias_token1] = ACTIONS(1629), - [aux_sym_hostname_token1] = ACTIONS(1629), - [aux_sym_identities_only_token1] = ACTIONS(1629), - [aux_sym_identity_agent_token1] = ACTIONS(1629), - [aux_sym_identity_file_token1] = ACTIONS(1629), - [aux_sym_ignore_unknown_token1] = ACTIONS(1629), - [aux_sym_include_token1] = ACTIONS(1629), - [aux_sym_ip_qos_token1] = ACTIONS(1629), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1629), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1629), - [aux_sym_kex_algorithms_token1] = ACTIONS(1629), - [aux_sym_known_hosts_command_token1] = ACTIONS(1629), - [aux_sym_local_command_token1] = ACTIONS(1629), - [aux_sym_local_forward_token1] = ACTIONS(1629), - [aux_sym_log_level_token1] = ACTIONS(1629), - [aux_sym_log_verbose_token1] = ACTIONS(1629), - [aux_sym_macs_token1] = ACTIONS(1629), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1629), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1629), - [aux_sym_password_authentication_token1] = ACTIONS(1629), - [aux_sym_permit_local_command_token1] = ACTIONS(1629), - [aux_sym_permit_remote_open_token1] = ACTIONS(1629), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1629), - [aux_sym_port_token1] = ACTIONS(1629), - [aux_sym_preferred_authentications_token1] = ACTIONS(1629), - [aux_sym_protocol_token1] = ACTIONS(1629), - [aux_sym_proxy_command_token1] = ACTIONS(1629), - [aux_sym_proxy_jump_token1] = ACTIONS(1629), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1629), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1629), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1629), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1629), - [aux_sym_rekey_limit_token1] = ACTIONS(1629), - [aux_sym_remote_command_token1] = ACTIONS(1629), - [aux_sym_remote_forward_token1] = ACTIONS(1629), - [aux_sym_request_tty_token1] = ACTIONS(1629), - [aux_sym_required_rsa_size_token1] = ACTIONS(1629), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1629), - [aux_sym_security_key_provider_token1] = ACTIONS(1629), - [aux_sym_send_env_token1] = ACTIONS(1629), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1629), - [aux_sym_server_alive_interval_token1] = ACTIONS(1629), - [aux_sym_session_type_token1] = ACTIONS(1629), - [aux_sym_set_env_token1] = ACTIONS(1629), - [aux_sym_stdin_null_token1] = ACTIONS(1629), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1629), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1629), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1629), - [aux_sym_syslog_facility_token1] = ACTIONS(1629), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1629), - [aux_sym_keep_alive_token1] = ACTIONS(1629), - [aux_sym_tunnel_token1] = ACTIONS(1631), - [aux_sym_tunnel_device_token1] = ACTIONS(1629), - [aux_sym_update_host_keys_token1] = ACTIONS(1629), - [aux_sym_use_keychain_token1] = ACTIONS(1629), - [aux_sym_use_roaming_token1] = ACTIONS(1629), - [aux_sym_user_token1] = ACTIONS(1631), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1629), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1629), - [aux_sym_visual_host_key_token1] = ACTIONS(1629), - [aux_sym_xauth_location_token1] = ACTIONS(1629), + [ts_builtin_sym_end] = ACTIONS(3016), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3018), + [aux_sym_match_token1] = ACTIONS(3016), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3016), + [aux_sym_address_family_token1] = ACTIONS(3016), + [aux_sym_batch_mode_token1] = ACTIONS(3016), + [aux_sym_bind_address_token1] = ACTIONS(3016), + [aux_sym_bind_interface_token1] = ACTIONS(3016), + [aux_sym_canonical_domains_token1] = ACTIONS(3016), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3016), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3016), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3016), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3016), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3016), + [aux_sym_certificate_file_token1] = ACTIONS(3016), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3016), + [aux_sym_check_host_ip_token1] = ACTIONS(3016), + [aux_sym_ciphers_token1] = ACTIONS(3016), + [aux_sym_cipher_token1] = ACTIONS(3018), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3016), + [aux_sym_compression_token1] = ACTIONS(3016), + [aux_sym_connection_attempts_token1] = ACTIONS(3016), + [aux_sym_connect_timeout_token1] = ACTIONS(3016), + [aux_sym_control_master_token1] = ACTIONS(3016), + [aux_sym_control_path_token1] = ACTIONS(3016), + [aux_sym_control_persist_token1] = ACTIONS(3016), + [aux_sym_dynamic_forward_token1] = ACTIONS(3016), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3016), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3016), + [aux_sym_escape_char_token1] = ACTIONS(3016), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3016), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3016), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3016), + [aux_sym_forward_agent_token1] = ACTIONS(3016), + [aux_sym_forward_x11_token1] = ACTIONS(3018), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3016), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3016), + [aux_sym_gateway_ports_token1] = ACTIONS(3016), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3016), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3016), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3016), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3016), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3016), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3016), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3016), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3016), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3016), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3016), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3016), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3016), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3016), + [aux_sym_host_key_alias_token1] = ACTIONS(3016), + [aux_sym_hostname_token1] = ACTIONS(3016), + [aux_sym_identities_only_token1] = ACTIONS(3016), + [aux_sym_identity_agent_token1] = ACTIONS(3016), + [aux_sym_identity_file_token1] = ACTIONS(3016), + [aux_sym_ignore_unknown_token1] = ACTIONS(3016), + [aux_sym_include_token1] = ACTIONS(3016), + [aux_sym_ip_qos_token1] = ACTIONS(3016), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3016), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3016), + [aux_sym_kex_algorithms_token1] = ACTIONS(3016), + [aux_sym_known_hosts_command_token1] = ACTIONS(3016), + [aux_sym_local_command_token1] = ACTIONS(3016), + [aux_sym_local_forward_token1] = ACTIONS(3016), + [aux_sym_log_level_token1] = ACTIONS(3016), + [aux_sym_log_verbose_token1] = ACTIONS(3016), + [aux_sym_macs_token1] = ACTIONS(3016), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3016), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3016), + [aux_sym_password_authentication_token1] = ACTIONS(3016), + [aux_sym_permit_local_command_token1] = ACTIONS(3016), + [aux_sym_permit_remote_open_token1] = ACTIONS(3016), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3016), + [aux_sym_port_token1] = ACTIONS(3016), + [aux_sym_preferred_authentications_token1] = ACTIONS(3016), + [aux_sym_protocol_token1] = ACTIONS(3016), + [aux_sym_proxy_command_token1] = ACTIONS(3016), + [aux_sym_proxy_jump_token1] = ACTIONS(3016), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3016), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3016), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3016), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3016), + [aux_sym_rekey_limit_token1] = ACTIONS(3016), + [aux_sym_remote_command_token1] = ACTIONS(3016), + [aux_sym_remote_forward_token1] = ACTIONS(3016), + [aux_sym_request_tty_token1] = ACTIONS(3016), + [aux_sym_required_rsa_size_token1] = ACTIONS(3016), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3016), + [aux_sym_security_key_provider_token1] = ACTIONS(3016), + [aux_sym_send_env_token1] = ACTIONS(3016), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3016), + [aux_sym_server_alive_interval_token1] = ACTIONS(3016), + [aux_sym_session_type_token1] = ACTIONS(3016), + [aux_sym_set_env_token1] = ACTIONS(3016), + [aux_sym_stdin_null_token1] = ACTIONS(3016), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3016), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3016), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3016), + [aux_sym_syslog_facility_token1] = ACTIONS(3016), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3016), + [aux_sym_keep_alive_token1] = ACTIONS(3016), + [aux_sym_tunnel_token1] = ACTIONS(3018), + [aux_sym_tunnel_device_token1] = ACTIONS(3016), + [aux_sym_update_host_keys_token1] = ACTIONS(3016), + [aux_sym_use_keychain_token1] = ACTIONS(3016), + [aux_sym_use_roaming_token1] = ACTIONS(3016), + [aux_sym_user_token1] = ACTIONS(3018), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3016), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3016), + [aux_sym_visual_host_key_token1] = ACTIONS(3016), + [aux_sym_xauth_location_token1] = ACTIONS(3016), }, [453] = { - [ts_builtin_sym_end] = ACTIONS(1563), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1565), - [aux_sym_match_token1] = ACTIONS(1563), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1563), - [aux_sym_address_family_token1] = ACTIONS(1563), - [aux_sym_batch_mode_token1] = ACTIONS(1563), - [aux_sym_bind_address_token1] = ACTIONS(1563), - [aux_sym_bind_interface_token1] = ACTIONS(1563), - [aux_sym_canonical_domains_token1] = ACTIONS(1563), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1563), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1563), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1563), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1563), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1563), - [aux_sym_certificate_file_token1] = ACTIONS(1563), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1563), - [aux_sym_check_host_ip_token1] = ACTIONS(1563), - [aux_sym_ciphers_token1] = ACTIONS(1563), - [aux_sym_cipher_token1] = ACTIONS(1565), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1563), - [aux_sym_compression_token1] = ACTIONS(1563), - [aux_sym_connection_attempts_token1] = ACTIONS(1563), - [aux_sym_connect_timeout_token1] = ACTIONS(1563), - [aux_sym_control_master_token1] = ACTIONS(1563), - [aux_sym_control_path_token1] = ACTIONS(1563), - [aux_sym_control_persist_token1] = ACTIONS(1563), - [aux_sym_dynamic_forward_token1] = ACTIONS(1563), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1563), - [aux_sym_escape_char_token1] = ACTIONS(1563), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1563), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1563), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1563), - [aux_sym_forward_agent_token1] = ACTIONS(1563), - [aux_sym_forward_x11_token1] = ACTIONS(1565), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1563), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1563), - [aux_sym_gateway_ports_token1] = ACTIONS(1563), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1563), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1563), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1563), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1563), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1563), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1563), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1563), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1563), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1563), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1563), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1563), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1563), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1563), - [aux_sym_host_key_alias_token1] = ACTIONS(1563), - [aux_sym_hostname_token1] = ACTIONS(1563), - [aux_sym_identities_only_token1] = ACTIONS(1563), - [aux_sym_identity_agent_token1] = ACTIONS(1563), - [aux_sym_identity_file_token1] = ACTIONS(1563), - [aux_sym_ignore_unknown_token1] = ACTIONS(1563), - [aux_sym_include_token1] = ACTIONS(1563), - [aux_sym_ip_qos_token1] = ACTIONS(1563), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1563), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1563), - [aux_sym_kex_algorithms_token1] = ACTIONS(1563), - [aux_sym_known_hosts_command_token1] = ACTIONS(1563), - [aux_sym_local_command_token1] = ACTIONS(1563), - [aux_sym_local_forward_token1] = ACTIONS(1563), - [aux_sym_log_level_token1] = ACTIONS(1563), - [aux_sym_log_verbose_token1] = ACTIONS(1563), - [aux_sym_macs_token1] = ACTIONS(1563), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1563), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1563), - [aux_sym_password_authentication_token1] = ACTIONS(1563), - [aux_sym_permit_local_command_token1] = ACTIONS(1563), - [aux_sym_permit_remote_open_token1] = ACTIONS(1563), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1563), - [aux_sym_port_token1] = ACTIONS(1563), - [aux_sym_preferred_authentications_token1] = ACTIONS(1563), - [aux_sym_protocol_token1] = ACTIONS(1563), - [aux_sym_proxy_command_token1] = ACTIONS(1563), - [aux_sym_proxy_jump_token1] = ACTIONS(1563), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1563), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1563), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1563), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1563), - [aux_sym_rekey_limit_token1] = ACTIONS(1563), - [aux_sym_remote_command_token1] = ACTIONS(1563), - [aux_sym_remote_forward_token1] = ACTIONS(1563), - [aux_sym_request_tty_token1] = ACTIONS(1563), - [aux_sym_required_rsa_size_token1] = ACTIONS(1563), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1563), - [aux_sym_security_key_provider_token1] = ACTIONS(1563), - [aux_sym_send_env_token1] = ACTIONS(1563), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1563), - [aux_sym_server_alive_interval_token1] = ACTIONS(1563), - [aux_sym_session_type_token1] = ACTIONS(1563), - [aux_sym_set_env_token1] = ACTIONS(1563), - [aux_sym_stdin_null_token1] = ACTIONS(1563), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1563), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1563), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1563), - [aux_sym_syslog_facility_token1] = ACTIONS(1563), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1563), - [aux_sym_keep_alive_token1] = ACTIONS(1563), - [aux_sym_tunnel_token1] = ACTIONS(1565), - [aux_sym_tunnel_device_token1] = ACTIONS(1563), - [aux_sym_update_host_keys_token1] = ACTIONS(1563), - [aux_sym_use_keychain_token1] = ACTIONS(1563), - [aux_sym_use_roaming_token1] = ACTIONS(1563), - [aux_sym_user_token1] = ACTIONS(1565), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1563), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1563), - [aux_sym_visual_host_key_token1] = ACTIONS(1563), - [aux_sym_xauth_location_token1] = ACTIONS(1563), + [ts_builtin_sym_end] = ACTIONS(3020), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3022), + [aux_sym_match_token1] = ACTIONS(3020), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3020), + [aux_sym_address_family_token1] = ACTIONS(3020), + [aux_sym_batch_mode_token1] = ACTIONS(3020), + [aux_sym_bind_address_token1] = ACTIONS(3020), + [aux_sym_bind_interface_token1] = ACTIONS(3020), + [aux_sym_canonical_domains_token1] = ACTIONS(3020), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3020), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3020), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3020), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3020), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3020), + [aux_sym_certificate_file_token1] = ACTIONS(3020), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3020), + [aux_sym_check_host_ip_token1] = ACTIONS(3020), + [aux_sym_ciphers_token1] = ACTIONS(3020), + [aux_sym_cipher_token1] = ACTIONS(3022), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3020), + [aux_sym_compression_token1] = ACTIONS(3020), + [aux_sym_connection_attempts_token1] = ACTIONS(3020), + [aux_sym_connect_timeout_token1] = ACTIONS(3020), + [aux_sym_control_master_token1] = ACTIONS(3020), + [aux_sym_control_path_token1] = ACTIONS(3020), + [aux_sym_control_persist_token1] = ACTIONS(3020), + [aux_sym_dynamic_forward_token1] = ACTIONS(3020), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3020), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3020), + [aux_sym_escape_char_token1] = ACTIONS(3020), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3020), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3020), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3020), + [aux_sym_forward_agent_token1] = ACTIONS(3020), + [aux_sym_forward_x11_token1] = ACTIONS(3022), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3020), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3020), + [aux_sym_gateway_ports_token1] = ACTIONS(3020), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3020), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3020), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3020), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3020), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3020), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3020), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3020), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3020), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3020), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3020), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3020), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3020), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3020), + [aux_sym_host_key_alias_token1] = ACTIONS(3020), + [aux_sym_hostname_token1] = ACTIONS(3020), + [aux_sym_identities_only_token1] = ACTIONS(3020), + [aux_sym_identity_agent_token1] = ACTIONS(3020), + [aux_sym_identity_file_token1] = ACTIONS(3020), + [aux_sym_ignore_unknown_token1] = ACTIONS(3020), + [aux_sym_include_token1] = ACTIONS(3020), + [aux_sym_ip_qos_token1] = ACTIONS(3020), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3020), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3020), + [aux_sym_kex_algorithms_token1] = ACTIONS(3020), + [aux_sym_known_hosts_command_token1] = ACTIONS(3020), + [aux_sym_local_command_token1] = ACTIONS(3020), + [aux_sym_local_forward_token1] = ACTIONS(3020), + [aux_sym_log_level_token1] = ACTIONS(3020), + [aux_sym_log_verbose_token1] = ACTIONS(3020), + [aux_sym_macs_token1] = ACTIONS(3020), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3020), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3020), + [aux_sym_password_authentication_token1] = ACTIONS(3020), + [aux_sym_permit_local_command_token1] = ACTIONS(3020), + [aux_sym_permit_remote_open_token1] = ACTIONS(3020), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3020), + [aux_sym_port_token1] = ACTIONS(3020), + [aux_sym_preferred_authentications_token1] = ACTIONS(3020), + [aux_sym_protocol_token1] = ACTIONS(3020), + [aux_sym_proxy_command_token1] = ACTIONS(3020), + [aux_sym_proxy_jump_token1] = ACTIONS(3020), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3020), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3020), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3020), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3020), + [aux_sym_rekey_limit_token1] = ACTIONS(3020), + [aux_sym_remote_command_token1] = ACTIONS(3020), + [aux_sym_remote_forward_token1] = ACTIONS(3020), + [aux_sym_request_tty_token1] = ACTIONS(3020), + [aux_sym_required_rsa_size_token1] = ACTIONS(3020), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3020), + [aux_sym_security_key_provider_token1] = ACTIONS(3020), + [aux_sym_send_env_token1] = ACTIONS(3020), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3020), + [aux_sym_server_alive_interval_token1] = ACTIONS(3020), + [aux_sym_session_type_token1] = ACTIONS(3020), + [aux_sym_set_env_token1] = ACTIONS(3020), + [aux_sym_stdin_null_token1] = ACTIONS(3020), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3020), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3020), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3020), + [aux_sym_syslog_facility_token1] = ACTIONS(3020), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3020), + [aux_sym_keep_alive_token1] = ACTIONS(3020), + [aux_sym_tunnel_token1] = ACTIONS(3022), + [aux_sym_tunnel_device_token1] = ACTIONS(3020), + [aux_sym_update_host_keys_token1] = ACTIONS(3020), + [aux_sym_use_keychain_token1] = ACTIONS(3020), + [aux_sym_use_roaming_token1] = ACTIONS(3020), + [aux_sym_user_token1] = ACTIONS(3022), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3020), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3020), + [aux_sym_visual_host_key_token1] = ACTIONS(3020), + [aux_sym_xauth_location_token1] = ACTIONS(3020), }, [454] = { - [ts_builtin_sym_end] = ACTIONS(3005), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3007), - [aux_sym_match_token1] = ACTIONS(3005), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3005), - [aux_sym_address_family_token1] = ACTIONS(3005), - [aux_sym_batch_mode_token1] = ACTIONS(3005), - [aux_sym_bind_address_token1] = ACTIONS(3005), - [aux_sym_bind_interface_token1] = ACTIONS(3005), - [aux_sym_canonical_domains_token1] = ACTIONS(3005), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3005), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3005), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3005), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3005), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3005), - [aux_sym_certificate_file_token1] = ACTIONS(3005), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3005), - [aux_sym_check_host_ip_token1] = ACTIONS(3005), - [aux_sym_ciphers_token1] = ACTIONS(3005), - [aux_sym_cipher_token1] = ACTIONS(3007), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3005), - [aux_sym_compression_token1] = ACTIONS(3005), - [aux_sym_connection_attempts_token1] = ACTIONS(3005), - [aux_sym_connect_timeout_token1] = ACTIONS(3005), - [aux_sym_control_master_token1] = ACTIONS(3005), - [aux_sym_control_path_token1] = ACTIONS(3005), - [aux_sym_control_persist_token1] = ACTIONS(3005), - [aux_sym_dynamic_forward_token1] = ACTIONS(3005), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3005), - [aux_sym_escape_char_token1] = ACTIONS(3005), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3005), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3005), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3005), - [aux_sym_forward_agent_token1] = ACTIONS(3005), - [aux_sym_forward_x11_token1] = ACTIONS(3007), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3005), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3005), - [aux_sym_gateway_ports_token1] = ACTIONS(3005), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3005), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3005), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3005), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3005), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3005), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3005), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3005), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3005), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3005), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3005), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3005), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3005), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3005), - [aux_sym_host_key_alias_token1] = ACTIONS(3005), - [aux_sym_hostname_token1] = ACTIONS(3005), - [aux_sym_identities_only_token1] = ACTIONS(3005), - [aux_sym_identity_agent_token1] = ACTIONS(3005), - [aux_sym_identity_file_token1] = ACTIONS(3005), - [aux_sym_ignore_unknown_token1] = ACTIONS(3005), - [aux_sym_include_token1] = ACTIONS(3005), - [aux_sym_ip_qos_token1] = ACTIONS(3005), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3005), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3005), - [aux_sym_kex_algorithms_token1] = ACTIONS(3005), - [aux_sym_known_hosts_command_token1] = ACTIONS(3005), - [aux_sym_local_command_token1] = ACTIONS(3005), - [aux_sym_local_forward_token1] = ACTIONS(3005), - [aux_sym_log_level_token1] = ACTIONS(3005), - [aux_sym_log_verbose_token1] = ACTIONS(3005), - [aux_sym_macs_token1] = ACTIONS(3005), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3005), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3005), - [aux_sym_password_authentication_token1] = ACTIONS(3005), - [aux_sym_permit_local_command_token1] = ACTIONS(3005), - [aux_sym_permit_remote_open_token1] = ACTIONS(3005), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3005), - [aux_sym_port_token1] = ACTIONS(3005), - [aux_sym_preferred_authentications_token1] = ACTIONS(3005), - [aux_sym_protocol_token1] = ACTIONS(3005), - [aux_sym_proxy_command_token1] = ACTIONS(3005), - [aux_sym_proxy_jump_token1] = ACTIONS(3005), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3005), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3005), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3005), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3005), - [aux_sym_rekey_limit_token1] = ACTIONS(3005), - [aux_sym_remote_command_token1] = ACTIONS(3005), - [aux_sym_remote_forward_token1] = ACTIONS(3005), - [aux_sym_request_tty_token1] = ACTIONS(3005), - [aux_sym_required_rsa_size_token1] = ACTIONS(3005), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3005), - [aux_sym_security_key_provider_token1] = ACTIONS(3005), - [aux_sym_send_env_token1] = ACTIONS(3005), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3005), - [aux_sym_server_alive_interval_token1] = ACTIONS(3005), - [aux_sym_session_type_token1] = ACTIONS(3005), - [aux_sym_set_env_token1] = ACTIONS(3005), - [aux_sym_stdin_null_token1] = ACTIONS(3005), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3005), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3005), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3005), - [aux_sym_syslog_facility_token1] = ACTIONS(3005), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3005), - [aux_sym_keep_alive_token1] = ACTIONS(3005), - [aux_sym_tunnel_token1] = ACTIONS(3007), - [aux_sym_tunnel_device_token1] = ACTIONS(3005), - [aux_sym_update_host_keys_token1] = ACTIONS(3005), - [aux_sym_use_keychain_token1] = ACTIONS(3005), - [aux_sym_use_roaming_token1] = ACTIONS(3005), - [aux_sym_user_token1] = ACTIONS(3007), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3005), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3005), - [aux_sym_visual_host_key_token1] = ACTIONS(3005), - [aux_sym_xauth_location_token1] = ACTIONS(3005), + [ts_builtin_sym_end] = ACTIONS(3024), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3026), + [aux_sym_match_token1] = ACTIONS(3024), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3024), + [aux_sym_address_family_token1] = ACTIONS(3024), + [aux_sym_batch_mode_token1] = ACTIONS(3024), + [aux_sym_bind_address_token1] = ACTIONS(3024), + [aux_sym_bind_interface_token1] = ACTIONS(3024), + [aux_sym_canonical_domains_token1] = ACTIONS(3024), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3024), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3024), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3024), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3024), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3024), + [aux_sym_certificate_file_token1] = ACTIONS(3024), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3024), + [aux_sym_check_host_ip_token1] = ACTIONS(3024), + [aux_sym_ciphers_token1] = ACTIONS(3024), + [aux_sym_cipher_token1] = ACTIONS(3026), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3024), + [aux_sym_compression_token1] = ACTIONS(3024), + [aux_sym_connection_attempts_token1] = ACTIONS(3024), + [aux_sym_connect_timeout_token1] = ACTIONS(3024), + [aux_sym_control_master_token1] = ACTIONS(3024), + [aux_sym_control_path_token1] = ACTIONS(3024), + [aux_sym_control_persist_token1] = ACTIONS(3024), + [aux_sym_dynamic_forward_token1] = ACTIONS(3024), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3024), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3024), + [aux_sym_escape_char_token1] = ACTIONS(3024), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3024), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3024), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3024), + [aux_sym_forward_agent_token1] = ACTIONS(3024), + [aux_sym_forward_x11_token1] = ACTIONS(3026), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3024), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3024), + [aux_sym_gateway_ports_token1] = ACTIONS(3024), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3024), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3024), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3024), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3024), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3024), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3024), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3024), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3024), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3024), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3024), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3024), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3024), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3024), + [aux_sym_host_key_alias_token1] = ACTIONS(3024), + [aux_sym_hostname_token1] = ACTIONS(3024), + [aux_sym_identities_only_token1] = ACTIONS(3024), + [aux_sym_identity_agent_token1] = ACTIONS(3024), + [aux_sym_identity_file_token1] = ACTIONS(3024), + [aux_sym_ignore_unknown_token1] = ACTIONS(3024), + [aux_sym_include_token1] = ACTIONS(3024), + [aux_sym_ip_qos_token1] = ACTIONS(3024), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3024), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3024), + [aux_sym_kex_algorithms_token1] = ACTIONS(3024), + [aux_sym_known_hosts_command_token1] = ACTIONS(3024), + [aux_sym_local_command_token1] = ACTIONS(3024), + [aux_sym_local_forward_token1] = ACTIONS(3024), + [aux_sym_log_level_token1] = ACTIONS(3024), + [aux_sym_log_verbose_token1] = ACTIONS(3024), + [aux_sym_macs_token1] = ACTIONS(3024), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3024), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3024), + [aux_sym_password_authentication_token1] = ACTIONS(3024), + [aux_sym_permit_local_command_token1] = ACTIONS(3024), + [aux_sym_permit_remote_open_token1] = ACTIONS(3024), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3024), + [aux_sym_port_token1] = ACTIONS(3024), + [aux_sym_preferred_authentications_token1] = ACTIONS(3024), + [aux_sym_protocol_token1] = ACTIONS(3024), + [aux_sym_proxy_command_token1] = ACTIONS(3024), + [aux_sym_proxy_jump_token1] = ACTIONS(3024), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3024), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3024), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3024), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3024), + [aux_sym_rekey_limit_token1] = ACTIONS(3024), + [aux_sym_remote_command_token1] = ACTIONS(3024), + [aux_sym_remote_forward_token1] = ACTIONS(3024), + [aux_sym_request_tty_token1] = ACTIONS(3024), + [aux_sym_required_rsa_size_token1] = ACTIONS(3024), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3024), + [aux_sym_security_key_provider_token1] = ACTIONS(3024), + [aux_sym_send_env_token1] = ACTIONS(3024), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3024), + [aux_sym_server_alive_interval_token1] = ACTIONS(3024), + [aux_sym_session_type_token1] = ACTIONS(3024), + [aux_sym_set_env_token1] = ACTIONS(3024), + [aux_sym_stdin_null_token1] = ACTIONS(3024), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3024), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3024), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3024), + [aux_sym_syslog_facility_token1] = ACTIONS(3024), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3024), + [aux_sym_keep_alive_token1] = ACTIONS(3024), + [aux_sym_tunnel_token1] = ACTIONS(3026), + [aux_sym_tunnel_device_token1] = ACTIONS(3024), + [aux_sym_update_host_keys_token1] = ACTIONS(3024), + [aux_sym_use_keychain_token1] = ACTIONS(3024), + [aux_sym_use_roaming_token1] = ACTIONS(3024), + [aux_sym_user_token1] = ACTIONS(3026), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3024), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3024), + [aux_sym_visual_host_key_token1] = ACTIONS(3024), + [aux_sym_xauth_location_token1] = ACTIONS(3024), }, [455] = { - [ts_builtin_sym_end] = ACTIONS(3009), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3011), - [aux_sym_match_token1] = ACTIONS(3009), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3009), - [aux_sym_address_family_token1] = ACTIONS(3009), - [aux_sym_batch_mode_token1] = ACTIONS(3009), - [aux_sym_bind_address_token1] = ACTIONS(3009), - [aux_sym_bind_interface_token1] = ACTIONS(3009), - [aux_sym_canonical_domains_token1] = ACTIONS(3009), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3009), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3009), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3009), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3009), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3009), - [aux_sym_certificate_file_token1] = ACTIONS(3009), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3009), - [aux_sym_check_host_ip_token1] = ACTIONS(3009), - [aux_sym_ciphers_token1] = ACTIONS(3009), - [aux_sym_cipher_token1] = ACTIONS(3011), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3009), - [aux_sym_compression_token1] = ACTIONS(3009), - [aux_sym_connection_attempts_token1] = ACTIONS(3009), - [aux_sym_connect_timeout_token1] = ACTIONS(3009), - [aux_sym_control_master_token1] = ACTIONS(3009), - [aux_sym_control_path_token1] = ACTIONS(3009), - [aux_sym_control_persist_token1] = ACTIONS(3009), - [aux_sym_dynamic_forward_token1] = ACTIONS(3009), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3009), - [aux_sym_escape_char_token1] = ACTIONS(3009), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3009), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3009), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3009), - [aux_sym_forward_agent_token1] = ACTIONS(3009), - [aux_sym_forward_x11_token1] = ACTIONS(3011), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3009), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3009), - [aux_sym_gateway_ports_token1] = ACTIONS(3009), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3009), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3009), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3009), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3009), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3009), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3009), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3009), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3009), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3009), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3009), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3009), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3009), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3009), - [aux_sym_host_key_alias_token1] = ACTIONS(3009), - [aux_sym_hostname_token1] = ACTIONS(3009), - [aux_sym_identities_only_token1] = ACTIONS(3009), - [aux_sym_identity_agent_token1] = ACTIONS(3009), - [aux_sym_identity_file_token1] = ACTIONS(3009), - [aux_sym_ignore_unknown_token1] = ACTIONS(3009), - [aux_sym_include_token1] = ACTIONS(3009), - [aux_sym_ip_qos_token1] = ACTIONS(3009), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3009), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3009), - [aux_sym_kex_algorithms_token1] = ACTIONS(3009), - [aux_sym_known_hosts_command_token1] = ACTIONS(3009), - [aux_sym_local_command_token1] = ACTIONS(3009), - [aux_sym_local_forward_token1] = ACTIONS(3009), - [aux_sym_log_level_token1] = ACTIONS(3009), - [aux_sym_log_verbose_token1] = ACTIONS(3009), - [aux_sym_macs_token1] = ACTIONS(3009), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3009), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3009), - [aux_sym_password_authentication_token1] = ACTIONS(3009), - [aux_sym_permit_local_command_token1] = ACTIONS(3009), - [aux_sym_permit_remote_open_token1] = ACTIONS(3009), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3009), - [aux_sym_port_token1] = ACTIONS(3009), - [aux_sym_preferred_authentications_token1] = ACTIONS(3009), - [aux_sym_protocol_token1] = ACTIONS(3009), - [aux_sym_proxy_command_token1] = ACTIONS(3009), - [aux_sym_proxy_jump_token1] = ACTIONS(3009), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3009), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3009), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3009), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3009), - [aux_sym_rekey_limit_token1] = ACTIONS(3009), - [aux_sym_remote_command_token1] = ACTIONS(3009), - [aux_sym_remote_forward_token1] = ACTIONS(3009), - [aux_sym_request_tty_token1] = ACTIONS(3009), - [aux_sym_required_rsa_size_token1] = ACTIONS(3009), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3009), - [aux_sym_security_key_provider_token1] = ACTIONS(3009), - [aux_sym_send_env_token1] = ACTIONS(3009), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3009), - [aux_sym_server_alive_interval_token1] = ACTIONS(3009), - [aux_sym_session_type_token1] = ACTIONS(3009), - [aux_sym_set_env_token1] = ACTIONS(3009), - [aux_sym_stdin_null_token1] = ACTIONS(3009), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3009), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3009), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3009), - [aux_sym_syslog_facility_token1] = ACTIONS(3009), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3009), - [aux_sym_keep_alive_token1] = ACTIONS(3009), - [aux_sym_tunnel_token1] = ACTIONS(3011), - [aux_sym_tunnel_device_token1] = ACTIONS(3009), - [aux_sym_update_host_keys_token1] = ACTIONS(3009), - [aux_sym_use_keychain_token1] = ACTIONS(3009), - [aux_sym_use_roaming_token1] = ACTIONS(3009), - [aux_sym_user_token1] = ACTIONS(3011), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3009), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3009), - [aux_sym_visual_host_key_token1] = ACTIONS(3009), - [aux_sym_xauth_location_token1] = ACTIONS(3009), + [ts_builtin_sym_end] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3030), + [aux_sym_match_token1] = ACTIONS(3028), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3028), + [aux_sym_address_family_token1] = ACTIONS(3028), + [aux_sym_batch_mode_token1] = ACTIONS(3028), + [aux_sym_bind_address_token1] = ACTIONS(3028), + [aux_sym_bind_interface_token1] = ACTIONS(3028), + [aux_sym_canonical_domains_token1] = ACTIONS(3028), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3028), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3028), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3028), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3028), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3028), + [aux_sym_certificate_file_token1] = ACTIONS(3028), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3028), + [aux_sym_check_host_ip_token1] = ACTIONS(3028), + [aux_sym_ciphers_token1] = ACTIONS(3028), + [aux_sym_cipher_token1] = ACTIONS(3030), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3028), + [aux_sym_compression_token1] = ACTIONS(3028), + [aux_sym_connection_attempts_token1] = ACTIONS(3028), + [aux_sym_connect_timeout_token1] = ACTIONS(3028), + [aux_sym_control_master_token1] = ACTIONS(3028), + [aux_sym_control_path_token1] = ACTIONS(3028), + [aux_sym_control_persist_token1] = ACTIONS(3028), + [aux_sym_dynamic_forward_token1] = ACTIONS(3028), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3028), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3028), + [aux_sym_escape_char_token1] = ACTIONS(3028), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3028), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3028), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3028), + [aux_sym_forward_agent_token1] = ACTIONS(3028), + [aux_sym_forward_x11_token1] = ACTIONS(3030), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3028), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3028), + [aux_sym_gateway_ports_token1] = ACTIONS(3028), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3028), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3028), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3028), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3028), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3028), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3028), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3028), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3028), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3028), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3028), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3028), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3028), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3028), + [aux_sym_host_key_alias_token1] = ACTIONS(3028), + [aux_sym_hostname_token1] = ACTIONS(3028), + [aux_sym_identities_only_token1] = ACTIONS(3028), + [aux_sym_identity_agent_token1] = ACTIONS(3028), + [aux_sym_identity_file_token1] = ACTIONS(3028), + [aux_sym_ignore_unknown_token1] = ACTIONS(3028), + [aux_sym_include_token1] = ACTIONS(3028), + [aux_sym_ip_qos_token1] = ACTIONS(3028), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3028), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3028), + [aux_sym_kex_algorithms_token1] = ACTIONS(3028), + [aux_sym_known_hosts_command_token1] = ACTIONS(3028), + [aux_sym_local_command_token1] = ACTIONS(3028), + [aux_sym_local_forward_token1] = ACTIONS(3028), + [aux_sym_log_level_token1] = ACTIONS(3028), + [aux_sym_log_verbose_token1] = ACTIONS(3028), + [aux_sym_macs_token1] = ACTIONS(3028), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3028), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3028), + [aux_sym_password_authentication_token1] = ACTIONS(3028), + [aux_sym_permit_local_command_token1] = ACTIONS(3028), + [aux_sym_permit_remote_open_token1] = ACTIONS(3028), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3028), + [aux_sym_port_token1] = ACTIONS(3028), + [aux_sym_preferred_authentications_token1] = ACTIONS(3028), + [aux_sym_protocol_token1] = ACTIONS(3028), + [aux_sym_proxy_command_token1] = ACTIONS(3028), + [aux_sym_proxy_jump_token1] = ACTIONS(3028), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3028), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3028), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3028), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3028), + [aux_sym_rekey_limit_token1] = ACTIONS(3028), + [aux_sym_remote_command_token1] = ACTIONS(3028), + [aux_sym_remote_forward_token1] = ACTIONS(3028), + [aux_sym_request_tty_token1] = ACTIONS(3028), + [aux_sym_required_rsa_size_token1] = ACTIONS(3028), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3028), + [aux_sym_security_key_provider_token1] = ACTIONS(3028), + [aux_sym_send_env_token1] = ACTIONS(3028), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3028), + [aux_sym_server_alive_interval_token1] = ACTIONS(3028), + [aux_sym_session_type_token1] = ACTIONS(3028), + [aux_sym_set_env_token1] = ACTIONS(3028), + [aux_sym_stdin_null_token1] = ACTIONS(3028), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3028), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3028), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3028), + [aux_sym_syslog_facility_token1] = ACTIONS(3028), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3028), + [aux_sym_keep_alive_token1] = ACTIONS(3028), + [aux_sym_tunnel_token1] = ACTIONS(3030), + [aux_sym_tunnel_device_token1] = ACTIONS(3028), + [aux_sym_update_host_keys_token1] = ACTIONS(3028), + [aux_sym_use_keychain_token1] = ACTIONS(3028), + [aux_sym_use_roaming_token1] = ACTIONS(3028), + [aux_sym_user_token1] = ACTIONS(3030), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3028), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3028), + [aux_sym_visual_host_key_token1] = ACTIONS(3028), + [aux_sym_xauth_location_token1] = ACTIONS(3028), }, [456] = { - [ts_builtin_sym_end] = ACTIONS(3013), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3015), - [aux_sym_match_token1] = ACTIONS(3013), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3013), - [aux_sym_address_family_token1] = ACTIONS(3013), - [aux_sym_batch_mode_token1] = ACTIONS(3013), - [aux_sym_bind_address_token1] = ACTIONS(3013), - [aux_sym_bind_interface_token1] = ACTIONS(3013), - [aux_sym_canonical_domains_token1] = ACTIONS(3013), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3013), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3013), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3013), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3013), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3013), - [aux_sym_certificate_file_token1] = ACTIONS(3013), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3013), - [aux_sym_check_host_ip_token1] = ACTIONS(3013), - [aux_sym_ciphers_token1] = ACTIONS(3013), - [aux_sym_cipher_token1] = ACTIONS(3015), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3013), - [aux_sym_compression_token1] = ACTIONS(3013), - [aux_sym_connection_attempts_token1] = ACTIONS(3013), - [aux_sym_connect_timeout_token1] = ACTIONS(3013), - [aux_sym_control_master_token1] = ACTIONS(3013), - [aux_sym_control_path_token1] = ACTIONS(3013), - [aux_sym_control_persist_token1] = ACTIONS(3013), - [aux_sym_dynamic_forward_token1] = ACTIONS(3013), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3013), - [aux_sym_escape_char_token1] = ACTIONS(3013), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3013), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3013), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3013), - [aux_sym_forward_agent_token1] = ACTIONS(3013), - [aux_sym_forward_x11_token1] = ACTIONS(3015), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3013), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3013), - [aux_sym_gateway_ports_token1] = ACTIONS(3013), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3013), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3013), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3013), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3013), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3013), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3013), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3013), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3013), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3013), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3013), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3013), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3013), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3013), - [aux_sym_host_key_alias_token1] = ACTIONS(3013), - [aux_sym_hostname_token1] = ACTIONS(3013), - [aux_sym_identities_only_token1] = ACTIONS(3013), - [aux_sym_identity_agent_token1] = ACTIONS(3013), - [aux_sym_identity_file_token1] = ACTIONS(3013), - [aux_sym_ignore_unknown_token1] = ACTIONS(3013), - [aux_sym_include_token1] = ACTIONS(3013), - [aux_sym_ip_qos_token1] = ACTIONS(3013), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3013), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3013), - [aux_sym_kex_algorithms_token1] = ACTIONS(3013), - [aux_sym_known_hosts_command_token1] = ACTIONS(3013), - [aux_sym_local_command_token1] = ACTIONS(3013), - [aux_sym_local_forward_token1] = ACTIONS(3013), - [aux_sym_log_level_token1] = ACTIONS(3013), - [aux_sym_log_verbose_token1] = ACTIONS(3013), - [aux_sym_macs_token1] = ACTIONS(3013), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3013), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3013), - [aux_sym_password_authentication_token1] = ACTIONS(3013), - [aux_sym_permit_local_command_token1] = ACTIONS(3013), - [aux_sym_permit_remote_open_token1] = ACTIONS(3013), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3013), - [aux_sym_port_token1] = ACTIONS(3013), - [aux_sym_preferred_authentications_token1] = ACTIONS(3013), - [aux_sym_protocol_token1] = ACTIONS(3013), - [aux_sym_proxy_command_token1] = ACTIONS(3013), - [aux_sym_proxy_jump_token1] = ACTIONS(3013), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3013), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3013), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3013), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3013), - [aux_sym_rekey_limit_token1] = ACTIONS(3013), - [aux_sym_remote_command_token1] = ACTIONS(3013), - [aux_sym_remote_forward_token1] = ACTIONS(3013), - [aux_sym_request_tty_token1] = ACTIONS(3013), - [aux_sym_required_rsa_size_token1] = ACTIONS(3013), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3013), - [aux_sym_security_key_provider_token1] = ACTIONS(3013), - [aux_sym_send_env_token1] = ACTIONS(3013), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3013), - [aux_sym_server_alive_interval_token1] = ACTIONS(3013), - [aux_sym_session_type_token1] = ACTIONS(3013), - [aux_sym_set_env_token1] = ACTIONS(3013), - [aux_sym_stdin_null_token1] = ACTIONS(3013), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3013), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3013), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3013), - [aux_sym_syslog_facility_token1] = ACTIONS(3013), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3013), - [aux_sym_keep_alive_token1] = ACTIONS(3013), - [aux_sym_tunnel_token1] = ACTIONS(3015), - [aux_sym_tunnel_device_token1] = ACTIONS(3013), - [aux_sym_update_host_keys_token1] = ACTIONS(3013), - [aux_sym_use_keychain_token1] = ACTIONS(3013), - [aux_sym_use_roaming_token1] = ACTIONS(3013), - [aux_sym_user_token1] = ACTIONS(3015), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3013), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3013), - [aux_sym_visual_host_key_token1] = ACTIONS(3013), - [aux_sym_xauth_location_token1] = ACTIONS(3013), + [ts_builtin_sym_end] = ACTIONS(3032), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3034), + [aux_sym_match_token1] = ACTIONS(3032), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3032), + [aux_sym_address_family_token1] = ACTIONS(3032), + [aux_sym_batch_mode_token1] = ACTIONS(3032), + [aux_sym_bind_address_token1] = ACTIONS(3032), + [aux_sym_bind_interface_token1] = ACTIONS(3032), + [aux_sym_canonical_domains_token1] = ACTIONS(3032), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3032), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3032), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3032), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3032), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3032), + [aux_sym_certificate_file_token1] = ACTIONS(3032), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3032), + [aux_sym_check_host_ip_token1] = ACTIONS(3032), + [aux_sym_ciphers_token1] = ACTIONS(3032), + [aux_sym_cipher_token1] = ACTIONS(3034), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3032), + [aux_sym_compression_token1] = ACTIONS(3032), + [aux_sym_connection_attempts_token1] = ACTIONS(3032), + [aux_sym_connect_timeout_token1] = ACTIONS(3032), + [aux_sym_control_master_token1] = ACTIONS(3032), + [aux_sym_control_path_token1] = ACTIONS(3032), + [aux_sym_control_persist_token1] = ACTIONS(3032), + [aux_sym_dynamic_forward_token1] = ACTIONS(3032), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3032), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3032), + [aux_sym_escape_char_token1] = ACTIONS(3032), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3032), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3032), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3032), + [aux_sym_forward_agent_token1] = ACTIONS(3032), + [aux_sym_forward_x11_token1] = ACTIONS(3034), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3032), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3032), + [aux_sym_gateway_ports_token1] = ACTIONS(3032), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3032), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3032), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3032), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3032), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3032), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3032), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3032), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3032), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3032), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3032), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3032), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3032), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3032), + [aux_sym_host_key_alias_token1] = ACTIONS(3032), + [aux_sym_hostname_token1] = ACTIONS(3032), + [aux_sym_identities_only_token1] = ACTIONS(3032), + [aux_sym_identity_agent_token1] = ACTIONS(3032), + [aux_sym_identity_file_token1] = ACTIONS(3032), + [aux_sym_ignore_unknown_token1] = ACTIONS(3032), + [aux_sym_include_token1] = ACTIONS(3032), + [aux_sym_ip_qos_token1] = ACTIONS(3032), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3032), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3032), + [aux_sym_kex_algorithms_token1] = ACTIONS(3032), + [aux_sym_known_hosts_command_token1] = ACTIONS(3032), + [aux_sym_local_command_token1] = ACTIONS(3032), + [aux_sym_local_forward_token1] = ACTIONS(3032), + [aux_sym_log_level_token1] = ACTIONS(3032), + [aux_sym_log_verbose_token1] = ACTIONS(3032), + [aux_sym_macs_token1] = ACTIONS(3032), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3032), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3032), + [aux_sym_password_authentication_token1] = ACTIONS(3032), + [aux_sym_permit_local_command_token1] = ACTIONS(3032), + [aux_sym_permit_remote_open_token1] = ACTIONS(3032), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3032), + [aux_sym_port_token1] = ACTIONS(3032), + [aux_sym_preferred_authentications_token1] = ACTIONS(3032), + [aux_sym_protocol_token1] = ACTIONS(3032), + [aux_sym_proxy_command_token1] = ACTIONS(3032), + [aux_sym_proxy_jump_token1] = ACTIONS(3032), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3032), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3032), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3032), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3032), + [aux_sym_rekey_limit_token1] = ACTIONS(3032), + [aux_sym_remote_command_token1] = ACTIONS(3032), + [aux_sym_remote_forward_token1] = ACTIONS(3032), + [aux_sym_request_tty_token1] = ACTIONS(3032), + [aux_sym_required_rsa_size_token1] = ACTIONS(3032), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3032), + [aux_sym_security_key_provider_token1] = ACTIONS(3032), + [aux_sym_send_env_token1] = ACTIONS(3032), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3032), + [aux_sym_server_alive_interval_token1] = ACTIONS(3032), + [aux_sym_session_type_token1] = ACTIONS(3032), + [aux_sym_set_env_token1] = ACTIONS(3032), + [aux_sym_stdin_null_token1] = ACTIONS(3032), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3032), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3032), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3032), + [aux_sym_syslog_facility_token1] = ACTIONS(3032), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3032), + [aux_sym_keep_alive_token1] = ACTIONS(3032), + [aux_sym_tunnel_token1] = ACTIONS(3034), + [aux_sym_tunnel_device_token1] = ACTIONS(3032), + [aux_sym_update_host_keys_token1] = ACTIONS(3032), + [aux_sym_use_keychain_token1] = ACTIONS(3032), + [aux_sym_use_roaming_token1] = ACTIONS(3032), + [aux_sym_user_token1] = ACTIONS(3034), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3032), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3032), + [aux_sym_visual_host_key_token1] = ACTIONS(3032), + [aux_sym_xauth_location_token1] = ACTIONS(3032), }, [457] = { - [ts_builtin_sym_end] = ACTIONS(3017), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3019), - [aux_sym_match_token1] = ACTIONS(3017), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3017), - [aux_sym_address_family_token1] = ACTIONS(3017), - [aux_sym_batch_mode_token1] = ACTIONS(3017), - [aux_sym_bind_address_token1] = ACTIONS(3017), - [aux_sym_bind_interface_token1] = ACTIONS(3017), - [aux_sym_canonical_domains_token1] = ACTIONS(3017), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3017), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3017), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3017), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3017), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3017), - [aux_sym_certificate_file_token1] = ACTIONS(3017), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3017), - [aux_sym_check_host_ip_token1] = ACTIONS(3017), - [aux_sym_ciphers_token1] = ACTIONS(3017), - [aux_sym_cipher_token1] = ACTIONS(3019), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3017), - [aux_sym_compression_token1] = ACTIONS(3017), - [aux_sym_connection_attempts_token1] = ACTIONS(3017), - [aux_sym_connect_timeout_token1] = ACTIONS(3017), - [aux_sym_control_master_token1] = ACTIONS(3017), - [aux_sym_control_path_token1] = ACTIONS(3017), - [aux_sym_control_persist_token1] = ACTIONS(3017), - [aux_sym_dynamic_forward_token1] = ACTIONS(3017), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3017), - [aux_sym_escape_char_token1] = ACTIONS(3017), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3017), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3017), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3017), - [aux_sym_forward_agent_token1] = ACTIONS(3017), - [aux_sym_forward_x11_token1] = ACTIONS(3019), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3017), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3017), - [aux_sym_gateway_ports_token1] = ACTIONS(3017), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3017), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3017), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3017), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3017), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3017), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3017), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3017), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3017), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3017), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3017), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3017), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3017), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3017), - [aux_sym_host_key_alias_token1] = ACTIONS(3017), - [aux_sym_hostname_token1] = ACTIONS(3017), - [aux_sym_identities_only_token1] = ACTIONS(3017), - [aux_sym_identity_agent_token1] = ACTIONS(3017), - [aux_sym_identity_file_token1] = ACTIONS(3017), - [aux_sym_ignore_unknown_token1] = ACTIONS(3017), - [aux_sym_include_token1] = ACTIONS(3017), - [aux_sym_ip_qos_token1] = ACTIONS(3017), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3017), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3017), - [aux_sym_kex_algorithms_token1] = ACTIONS(3017), - [aux_sym_known_hosts_command_token1] = ACTIONS(3017), - [aux_sym_local_command_token1] = ACTIONS(3017), - [aux_sym_local_forward_token1] = ACTIONS(3017), - [aux_sym_log_level_token1] = ACTIONS(3017), - [aux_sym_log_verbose_token1] = ACTIONS(3017), - [aux_sym_macs_token1] = ACTIONS(3017), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3017), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3017), - [aux_sym_password_authentication_token1] = ACTIONS(3017), - [aux_sym_permit_local_command_token1] = ACTIONS(3017), - [aux_sym_permit_remote_open_token1] = ACTIONS(3017), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3017), - [aux_sym_port_token1] = ACTIONS(3017), - [aux_sym_preferred_authentications_token1] = ACTIONS(3017), - [aux_sym_protocol_token1] = ACTIONS(3017), - [aux_sym_proxy_command_token1] = ACTIONS(3017), - [aux_sym_proxy_jump_token1] = ACTIONS(3017), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3017), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3017), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3017), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3017), - [aux_sym_rekey_limit_token1] = ACTIONS(3017), - [aux_sym_remote_command_token1] = ACTIONS(3017), - [aux_sym_remote_forward_token1] = ACTIONS(3017), - [aux_sym_request_tty_token1] = ACTIONS(3017), - [aux_sym_required_rsa_size_token1] = ACTIONS(3017), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3017), - [aux_sym_security_key_provider_token1] = ACTIONS(3017), - [aux_sym_send_env_token1] = ACTIONS(3017), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3017), - [aux_sym_server_alive_interval_token1] = ACTIONS(3017), - [aux_sym_session_type_token1] = ACTIONS(3017), - [aux_sym_set_env_token1] = ACTIONS(3017), - [aux_sym_stdin_null_token1] = ACTIONS(3017), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3017), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3017), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3017), - [aux_sym_syslog_facility_token1] = ACTIONS(3017), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3017), - [aux_sym_keep_alive_token1] = ACTIONS(3017), - [aux_sym_tunnel_token1] = ACTIONS(3019), - [aux_sym_tunnel_device_token1] = ACTIONS(3017), - [aux_sym_update_host_keys_token1] = ACTIONS(3017), - [aux_sym_use_keychain_token1] = ACTIONS(3017), - [aux_sym_use_roaming_token1] = ACTIONS(3017), - [aux_sym_user_token1] = ACTIONS(3019), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3017), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3017), - [aux_sym_visual_host_key_token1] = ACTIONS(3017), - [aux_sym_xauth_location_token1] = ACTIONS(3017), + [ts_builtin_sym_end] = ACTIONS(3036), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3038), + [aux_sym_match_token1] = ACTIONS(3036), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3036), + [aux_sym_address_family_token1] = ACTIONS(3036), + [aux_sym_batch_mode_token1] = ACTIONS(3036), + [aux_sym_bind_address_token1] = ACTIONS(3036), + [aux_sym_bind_interface_token1] = ACTIONS(3036), + [aux_sym_canonical_domains_token1] = ACTIONS(3036), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3036), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3036), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3036), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3036), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3036), + [aux_sym_certificate_file_token1] = ACTIONS(3036), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3036), + [aux_sym_check_host_ip_token1] = ACTIONS(3036), + [aux_sym_ciphers_token1] = ACTIONS(3036), + [aux_sym_cipher_token1] = ACTIONS(3038), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3036), + [aux_sym_compression_token1] = ACTIONS(3036), + [aux_sym_connection_attempts_token1] = ACTIONS(3036), + [aux_sym_connect_timeout_token1] = ACTIONS(3036), + [aux_sym_control_master_token1] = ACTIONS(3036), + [aux_sym_control_path_token1] = ACTIONS(3036), + [aux_sym_control_persist_token1] = ACTIONS(3036), + [aux_sym_dynamic_forward_token1] = ACTIONS(3036), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3036), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3036), + [aux_sym_escape_char_token1] = ACTIONS(3036), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3036), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3036), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3036), + [aux_sym_forward_agent_token1] = ACTIONS(3036), + [aux_sym_forward_x11_token1] = ACTIONS(3038), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3036), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3036), + [aux_sym_gateway_ports_token1] = ACTIONS(3036), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3036), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3036), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3036), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3036), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3036), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3036), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3036), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3036), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3036), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3036), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3036), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3036), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3036), + [aux_sym_host_key_alias_token1] = ACTIONS(3036), + [aux_sym_hostname_token1] = ACTIONS(3036), + [aux_sym_identities_only_token1] = ACTIONS(3036), + [aux_sym_identity_agent_token1] = ACTIONS(3036), + [aux_sym_identity_file_token1] = ACTIONS(3036), + [aux_sym_ignore_unknown_token1] = ACTIONS(3036), + [aux_sym_include_token1] = ACTIONS(3036), + [aux_sym_ip_qos_token1] = ACTIONS(3036), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3036), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3036), + [aux_sym_kex_algorithms_token1] = ACTIONS(3036), + [aux_sym_known_hosts_command_token1] = ACTIONS(3036), + [aux_sym_local_command_token1] = ACTIONS(3036), + [aux_sym_local_forward_token1] = ACTIONS(3036), + [aux_sym_log_level_token1] = ACTIONS(3036), + [aux_sym_log_verbose_token1] = ACTIONS(3036), + [aux_sym_macs_token1] = ACTIONS(3036), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3036), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3036), + [aux_sym_password_authentication_token1] = ACTIONS(3036), + [aux_sym_permit_local_command_token1] = ACTIONS(3036), + [aux_sym_permit_remote_open_token1] = ACTIONS(3036), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3036), + [aux_sym_port_token1] = ACTIONS(3036), + [aux_sym_preferred_authentications_token1] = ACTIONS(3036), + [aux_sym_protocol_token1] = ACTIONS(3036), + [aux_sym_proxy_command_token1] = ACTIONS(3036), + [aux_sym_proxy_jump_token1] = ACTIONS(3036), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3036), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3036), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3036), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3036), + [aux_sym_rekey_limit_token1] = ACTIONS(3036), + [aux_sym_remote_command_token1] = ACTIONS(3036), + [aux_sym_remote_forward_token1] = ACTIONS(3036), + [aux_sym_request_tty_token1] = ACTIONS(3036), + [aux_sym_required_rsa_size_token1] = ACTIONS(3036), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3036), + [aux_sym_security_key_provider_token1] = ACTIONS(3036), + [aux_sym_send_env_token1] = ACTIONS(3036), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3036), + [aux_sym_server_alive_interval_token1] = ACTIONS(3036), + [aux_sym_session_type_token1] = ACTIONS(3036), + [aux_sym_set_env_token1] = ACTIONS(3036), + [aux_sym_stdin_null_token1] = ACTIONS(3036), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3036), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3036), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3036), + [aux_sym_syslog_facility_token1] = ACTIONS(3036), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3036), + [aux_sym_keep_alive_token1] = ACTIONS(3036), + [aux_sym_tunnel_token1] = ACTIONS(3038), + [aux_sym_tunnel_device_token1] = ACTIONS(3036), + [aux_sym_update_host_keys_token1] = ACTIONS(3036), + [aux_sym_use_keychain_token1] = ACTIONS(3036), + [aux_sym_use_roaming_token1] = ACTIONS(3036), + [aux_sym_user_token1] = ACTIONS(3038), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3036), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3036), + [aux_sym_visual_host_key_token1] = ACTIONS(3036), + [aux_sym_xauth_location_token1] = ACTIONS(3036), }, [458] = { - [ts_builtin_sym_end] = ACTIONS(3021), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3023), - [aux_sym_match_token1] = ACTIONS(3021), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3021), - [aux_sym_address_family_token1] = ACTIONS(3021), - [aux_sym_batch_mode_token1] = ACTIONS(3021), - [aux_sym_bind_address_token1] = ACTIONS(3021), - [aux_sym_bind_interface_token1] = ACTIONS(3021), - [aux_sym_canonical_domains_token1] = ACTIONS(3021), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3021), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3021), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3021), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3021), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3021), - [aux_sym_certificate_file_token1] = ACTIONS(3021), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3021), - [aux_sym_check_host_ip_token1] = ACTIONS(3021), - [aux_sym_ciphers_token1] = ACTIONS(3021), - [aux_sym_cipher_token1] = ACTIONS(3023), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3021), - [aux_sym_compression_token1] = ACTIONS(3021), - [aux_sym_connection_attempts_token1] = ACTIONS(3021), - [aux_sym_connect_timeout_token1] = ACTIONS(3021), - [aux_sym_control_master_token1] = ACTIONS(3021), - [aux_sym_control_path_token1] = ACTIONS(3021), - [aux_sym_control_persist_token1] = ACTIONS(3021), - [aux_sym_dynamic_forward_token1] = ACTIONS(3021), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3021), - [aux_sym_escape_char_token1] = ACTIONS(3021), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3021), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3021), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3021), - [aux_sym_forward_agent_token1] = ACTIONS(3021), - [aux_sym_forward_x11_token1] = ACTIONS(3023), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3021), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3021), - [aux_sym_gateway_ports_token1] = ACTIONS(3021), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3021), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3021), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3021), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3021), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3021), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3021), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3021), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3021), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3021), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3021), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3021), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3021), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3021), - [aux_sym_host_key_alias_token1] = ACTIONS(3021), - [aux_sym_hostname_token1] = ACTIONS(3021), - [aux_sym_identities_only_token1] = ACTIONS(3021), - [aux_sym_identity_agent_token1] = ACTIONS(3021), - [aux_sym_identity_file_token1] = ACTIONS(3021), - [aux_sym_ignore_unknown_token1] = ACTIONS(3021), - [aux_sym_include_token1] = ACTIONS(3021), - [aux_sym_ip_qos_token1] = ACTIONS(3021), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3021), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3021), - [aux_sym_kex_algorithms_token1] = ACTIONS(3021), - [aux_sym_known_hosts_command_token1] = ACTIONS(3021), - [aux_sym_local_command_token1] = ACTIONS(3021), - [aux_sym_local_forward_token1] = ACTIONS(3021), - [aux_sym_log_level_token1] = ACTIONS(3021), - [aux_sym_log_verbose_token1] = ACTIONS(3021), - [aux_sym_macs_token1] = ACTIONS(3021), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3021), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3021), - [aux_sym_password_authentication_token1] = ACTIONS(3021), - [aux_sym_permit_local_command_token1] = ACTIONS(3021), - [aux_sym_permit_remote_open_token1] = ACTIONS(3021), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3021), - [aux_sym_port_token1] = ACTIONS(3021), - [aux_sym_preferred_authentications_token1] = ACTIONS(3021), - [aux_sym_protocol_token1] = ACTIONS(3021), - [aux_sym_proxy_command_token1] = ACTIONS(3021), - [aux_sym_proxy_jump_token1] = ACTIONS(3021), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3021), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3021), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3021), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3021), - [aux_sym_rekey_limit_token1] = ACTIONS(3021), - [aux_sym_remote_command_token1] = ACTIONS(3021), - [aux_sym_remote_forward_token1] = ACTIONS(3021), - [aux_sym_request_tty_token1] = ACTIONS(3021), - [aux_sym_required_rsa_size_token1] = ACTIONS(3021), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3021), - [aux_sym_security_key_provider_token1] = ACTIONS(3021), - [aux_sym_send_env_token1] = ACTIONS(3021), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3021), - [aux_sym_server_alive_interval_token1] = ACTIONS(3021), - [aux_sym_session_type_token1] = ACTIONS(3021), - [aux_sym_set_env_token1] = ACTIONS(3021), - [aux_sym_stdin_null_token1] = ACTIONS(3021), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3021), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3021), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3021), - [aux_sym_syslog_facility_token1] = ACTIONS(3021), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3021), - [aux_sym_keep_alive_token1] = ACTIONS(3021), - [aux_sym_tunnel_token1] = ACTIONS(3023), - [aux_sym_tunnel_device_token1] = ACTIONS(3021), - [aux_sym_update_host_keys_token1] = ACTIONS(3021), - [aux_sym_use_keychain_token1] = ACTIONS(3021), - [aux_sym_use_roaming_token1] = ACTIONS(3021), - [aux_sym_user_token1] = ACTIONS(3023), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3021), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3021), - [aux_sym_visual_host_key_token1] = ACTIONS(3021), - [aux_sym_xauth_location_token1] = ACTIONS(3021), + [ts_builtin_sym_end] = ACTIONS(1022), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1024), + [aux_sym_match_token1] = ACTIONS(1022), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1022), + [aux_sym_address_family_token1] = ACTIONS(1022), + [aux_sym_batch_mode_token1] = ACTIONS(1022), + [aux_sym_bind_address_token1] = ACTIONS(1022), + [aux_sym_bind_interface_token1] = ACTIONS(1022), + [aux_sym_canonical_domains_token1] = ACTIONS(1022), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1022), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1022), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1022), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1022), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1022), + [aux_sym_certificate_file_token1] = ACTIONS(1022), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1022), + [aux_sym_check_host_ip_token1] = ACTIONS(1022), + [aux_sym_ciphers_token1] = ACTIONS(1022), + [aux_sym_cipher_token1] = ACTIONS(1024), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1022), + [aux_sym_compression_token1] = ACTIONS(1022), + [aux_sym_connection_attempts_token1] = ACTIONS(1022), + [aux_sym_connect_timeout_token1] = ACTIONS(1022), + [aux_sym_control_master_token1] = ACTIONS(1022), + [aux_sym_control_path_token1] = ACTIONS(1022), + [aux_sym_control_persist_token1] = ACTIONS(1022), + [aux_sym_dynamic_forward_token1] = ACTIONS(1022), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1022), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1022), + [aux_sym_escape_char_token1] = ACTIONS(1022), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1022), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1022), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1022), + [aux_sym_forward_agent_token1] = ACTIONS(1022), + [aux_sym_forward_x11_token1] = ACTIONS(1024), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1022), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1022), + [aux_sym_gateway_ports_token1] = ACTIONS(1022), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1022), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1022), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1022), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1022), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1022), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1022), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1022), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1022), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1022), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1022), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1022), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1022), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1022), + [aux_sym_host_key_alias_token1] = ACTIONS(1022), + [aux_sym_hostname_token1] = ACTIONS(1022), + [aux_sym_identities_only_token1] = ACTIONS(1022), + [aux_sym_identity_agent_token1] = ACTIONS(1022), + [aux_sym_identity_file_token1] = ACTIONS(1022), + [aux_sym_ignore_unknown_token1] = ACTIONS(1022), + [aux_sym_include_token1] = ACTIONS(1022), + [aux_sym_ip_qos_token1] = ACTIONS(1022), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1022), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1022), + [aux_sym_kex_algorithms_token1] = ACTIONS(1022), + [aux_sym_known_hosts_command_token1] = ACTIONS(1022), + [aux_sym_local_command_token1] = ACTIONS(1022), + [aux_sym_local_forward_token1] = ACTIONS(1022), + [aux_sym_log_level_token1] = ACTIONS(1022), + [aux_sym_log_verbose_token1] = ACTIONS(1022), + [aux_sym_macs_token1] = ACTIONS(1022), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1022), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1022), + [aux_sym_password_authentication_token1] = ACTIONS(1022), + [aux_sym_permit_local_command_token1] = ACTIONS(1022), + [aux_sym_permit_remote_open_token1] = ACTIONS(1022), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1022), + [aux_sym_port_token1] = ACTIONS(1022), + [aux_sym_preferred_authentications_token1] = ACTIONS(1022), + [aux_sym_protocol_token1] = ACTIONS(1022), + [aux_sym_proxy_command_token1] = ACTIONS(1022), + [aux_sym_proxy_jump_token1] = ACTIONS(1022), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1022), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1022), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1022), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1022), + [aux_sym_rekey_limit_token1] = ACTIONS(1022), + [aux_sym_remote_command_token1] = ACTIONS(1022), + [aux_sym_remote_forward_token1] = ACTIONS(1022), + [aux_sym_request_tty_token1] = ACTIONS(1022), + [aux_sym_required_rsa_size_token1] = ACTIONS(1022), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1022), + [aux_sym_security_key_provider_token1] = ACTIONS(1022), + [aux_sym_send_env_token1] = ACTIONS(1022), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1022), + [aux_sym_server_alive_interval_token1] = ACTIONS(1022), + [aux_sym_session_type_token1] = ACTIONS(1022), + [aux_sym_set_env_token1] = ACTIONS(1022), + [aux_sym_stdin_null_token1] = ACTIONS(1022), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1022), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1022), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1022), + [aux_sym_syslog_facility_token1] = ACTIONS(1022), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1022), + [aux_sym_keep_alive_token1] = ACTIONS(1022), + [aux_sym_tunnel_token1] = ACTIONS(1024), + [aux_sym_tunnel_device_token1] = ACTIONS(1022), + [aux_sym_update_host_keys_token1] = ACTIONS(1022), + [aux_sym_use_keychain_token1] = ACTIONS(1022), + [aux_sym_use_roaming_token1] = ACTIONS(1022), + [aux_sym_user_token1] = ACTIONS(1024), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1022), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1022), + [aux_sym_visual_host_key_token1] = ACTIONS(1022), + [aux_sym_xauth_location_token1] = ACTIONS(1022), }, [459] = { - [ts_builtin_sym_end] = ACTIONS(3025), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3027), - [aux_sym_match_token1] = ACTIONS(3025), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3025), - [aux_sym_address_family_token1] = ACTIONS(3025), - [aux_sym_batch_mode_token1] = ACTIONS(3025), - [aux_sym_bind_address_token1] = ACTIONS(3025), - [aux_sym_bind_interface_token1] = ACTIONS(3025), - [aux_sym_canonical_domains_token1] = ACTIONS(3025), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3025), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3025), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3025), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3025), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3025), - [aux_sym_certificate_file_token1] = ACTIONS(3025), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3025), - [aux_sym_check_host_ip_token1] = ACTIONS(3025), - [aux_sym_ciphers_token1] = ACTIONS(3025), - [aux_sym_cipher_token1] = ACTIONS(3027), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3025), - [aux_sym_compression_token1] = ACTIONS(3025), - [aux_sym_connection_attempts_token1] = ACTIONS(3025), - [aux_sym_connect_timeout_token1] = ACTIONS(3025), - [aux_sym_control_master_token1] = ACTIONS(3025), - [aux_sym_control_path_token1] = ACTIONS(3025), - [aux_sym_control_persist_token1] = ACTIONS(3025), - [aux_sym_dynamic_forward_token1] = ACTIONS(3025), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3025), - [aux_sym_escape_char_token1] = ACTIONS(3025), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3025), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3025), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3025), - [aux_sym_forward_agent_token1] = ACTIONS(3025), - [aux_sym_forward_x11_token1] = ACTIONS(3027), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3025), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3025), - [aux_sym_gateway_ports_token1] = ACTIONS(3025), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3025), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3025), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3025), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3025), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3025), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3025), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3025), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3025), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3025), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3025), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3025), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3025), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3025), - [aux_sym_host_key_alias_token1] = ACTIONS(3025), - [aux_sym_hostname_token1] = ACTIONS(3025), - [aux_sym_identities_only_token1] = ACTIONS(3025), - [aux_sym_identity_agent_token1] = ACTIONS(3025), - [aux_sym_identity_file_token1] = ACTIONS(3025), - [aux_sym_ignore_unknown_token1] = ACTIONS(3025), - [aux_sym_include_token1] = ACTIONS(3025), - [aux_sym_ip_qos_token1] = ACTIONS(3025), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3025), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3025), - [aux_sym_kex_algorithms_token1] = ACTIONS(3025), - [aux_sym_known_hosts_command_token1] = ACTIONS(3025), - [aux_sym_local_command_token1] = ACTIONS(3025), - [aux_sym_local_forward_token1] = ACTIONS(3025), - [aux_sym_log_level_token1] = ACTIONS(3025), - [aux_sym_log_verbose_token1] = ACTIONS(3025), - [aux_sym_macs_token1] = ACTIONS(3025), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3025), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3025), - [aux_sym_password_authentication_token1] = ACTIONS(3025), - [aux_sym_permit_local_command_token1] = ACTIONS(3025), - [aux_sym_permit_remote_open_token1] = ACTIONS(3025), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3025), - [aux_sym_port_token1] = ACTIONS(3025), - [aux_sym_preferred_authentications_token1] = ACTIONS(3025), - [aux_sym_protocol_token1] = ACTIONS(3025), - [aux_sym_proxy_command_token1] = ACTIONS(3025), - [aux_sym_proxy_jump_token1] = ACTIONS(3025), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3025), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3025), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3025), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3025), - [aux_sym_rekey_limit_token1] = ACTIONS(3025), - [aux_sym_remote_command_token1] = ACTIONS(3025), - [aux_sym_remote_forward_token1] = ACTIONS(3025), - [aux_sym_request_tty_token1] = ACTIONS(3025), - [aux_sym_required_rsa_size_token1] = ACTIONS(3025), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3025), - [aux_sym_security_key_provider_token1] = ACTIONS(3025), - [aux_sym_send_env_token1] = ACTIONS(3025), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3025), - [aux_sym_server_alive_interval_token1] = ACTIONS(3025), - [aux_sym_session_type_token1] = ACTIONS(3025), - [aux_sym_set_env_token1] = ACTIONS(3025), - [aux_sym_stdin_null_token1] = ACTIONS(3025), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3025), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3025), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3025), - [aux_sym_syslog_facility_token1] = ACTIONS(3025), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3025), - [aux_sym_keep_alive_token1] = ACTIONS(3025), - [aux_sym_tunnel_token1] = ACTIONS(3027), - [aux_sym_tunnel_device_token1] = ACTIONS(3025), - [aux_sym_update_host_keys_token1] = ACTIONS(3025), - [aux_sym_use_keychain_token1] = ACTIONS(3025), - [aux_sym_use_roaming_token1] = ACTIONS(3025), - [aux_sym_user_token1] = ACTIONS(3027), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3025), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3025), - [aux_sym_visual_host_key_token1] = ACTIONS(3025), - [aux_sym_xauth_location_token1] = ACTIONS(3025), + [ts_builtin_sym_end] = ACTIONS(1130), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1132), + [aux_sym_match_token1] = ACTIONS(1130), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1130), + [aux_sym_address_family_token1] = ACTIONS(1130), + [aux_sym_batch_mode_token1] = ACTIONS(1130), + [aux_sym_bind_address_token1] = ACTIONS(1130), + [aux_sym_bind_interface_token1] = ACTIONS(1130), + [aux_sym_canonical_domains_token1] = ACTIONS(1130), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1130), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1130), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1130), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1130), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1130), + [aux_sym_certificate_file_token1] = ACTIONS(1130), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1130), + [aux_sym_check_host_ip_token1] = ACTIONS(1130), + [aux_sym_ciphers_token1] = ACTIONS(1130), + [aux_sym_cipher_token1] = ACTIONS(1132), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1130), + [aux_sym_compression_token1] = ACTIONS(1130), + [aux_sym_connection_attempts_token1] = ACTIONS(1130), + [aux_sym_connect_timeout_token1] = ACTIONS(1130), + [aux_sym_control_master_token1] = ACTIONS(1130), + [aux_sym_control_path_token1] = ACTIONS(1130), + [aux_sym_control_persist_token1] = ACTIONS(1130), + [aux_sym_dynamic_forward_token1] = ACTIONS(1130), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1130), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1130), + [aux_sym_escape_char_token1] = ACTIONS(1130), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1130), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1130), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1130), + [aux_sym_forward_agent_token1] = ACTIONS(1130), + [aux_sym_forward_x11_token1] = ACTIONS(1132), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1130), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1130), + [aux_sym_gateway_ports_token1] = ACTIONS(1130), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1130), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1130), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1130), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1130), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1130), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1130), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1130), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1130), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1130), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1130), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1130), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1130), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1130), + [aux_sym_host_key_alias_token1] = ACTIONS(1130), + [aux_sym_hostname_token1] = ACTIONS(1130), + [aux_sym_identities_only_token1] = ACTIONS(1130), + [aux_sym_identity_agent_token1] = ACTIONS(1130), + [aux_sym_identity_file_token1] = ACTIONS(1130), + [aux_sym_ignore_unknown_token1] = ACTIONS(1130), + [aux_sym_include_token1] = ACTIONS(1130), + [aux_sym_ip_qos_token1] = ACTIONS(1130), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1130), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1130), + [aux_sym_kex_algorithms_token1] = ACTIONS(1130), + [aux_sym_known_hosts_command_token1] = ACTIONS(1130), + [aux_sym_local_command_token1] = ACTIONS(1130), + [aux_sym_local_forward_token1] = ACTIONS(1130), + [aux_sym_log_level_token1] = ACTIONS(1130), + [aux_sym_log_verbose_token1] = ACTIONS(1130), + [aux_sym_macs_token1] = ACTIONS(1130), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1130), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1130), + [aux_sym_password_authentication_token1] = ACTIONS(1130), + [aux_sym_permit_local_command_token1] = ACTIONS(1130), + [aux_sym_permit_remote_open_token1] = ACTIONS(1130), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1130), + [aux_sym_port_token1] = ACTIONS(1130), + [aux_sym_preferred_authentications_token1] = ACTIONS(1130), + [aux_sym_protocol_token1] = ACTIONS(1130), + [aux_sym_proxy_command_token1] = ACTIONS(1130), + [aux_sym_proxy_jump_token1] = ACTIONS(1130), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1130), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1130), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1130), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1130), + [aux_sym_rekey_limit_token1] = ACTIONS(1130), + [aux_sym_remote_command_token1] = ACTIONS(1130), + [aux_sym_remote_forward_token1] = ACTIONS(1130), + [aux_sym_request_tty_token1] = ACTIONS(1130), + [aux_sym_required_rsa_size_token1] = ACTIONS(1130), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1130), + [aux_sym_security_key_provider_token1] = ACTIONS(1130), + [aux_sym_send_env_token1] = ACTIONS(1130), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1130), + [aux_sym_server_alive_interval_token1] = ACTIONS(1130), + [aux_sym_session_type_token1] = ACTIONS(1130), + [aux_sym_set_env_token1] = ACTIONS(1130), + [aux_sym_stdin_null_token1] = ACTIONS(1130), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1130), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1130), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1130), + [aux_sym_syslog_facility_token1] = ACTIONS(1130), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1130), + [aux_sym_keep_alive_token1] = ACTIONS(1130), + [aux_sym_tunnel_token1] = ACTIONS(1132), + [aux_sym_tunnel_device_token1] = ACTIONS(1130), + [aux_sym_update_host_keys_token1] = ACTIONS(1130), + [aux_sym_use_keychain_token1] = ACTIONS(1130), + [aux_sym_use_roaming_token1] = ACTIONS(1130), + [aux_sym_user_token1] = ACTIONS(1132), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1130), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1130), + [aux_sym_visual_host_key_token1] = ACTIONS(1130), + [aux_sym_xauth_location_token1] = ACTIONS(1130), }, [460] = { - [ts_builtin_sym_end] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3031), - [aux_sym_match_token1] = ACTIONS(3029), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3029), - [aux_sym_address_family_token1] = ACTIONS(3029), - [aux_sym_batch_mode_token1] = ACTIONS(3029), - [aux_sym_bind_address_token1] = ACTIONS(3029), - [aux_sym_bind_interface_token1] = ACTIONS(3029), - [aux_sym_canonical_domains_token1] = ACTIONS(3029), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3029), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3029), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3029), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3029), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3029), - [aux_sym_certificate_file_token1] = ACTIONS(3029), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3029), - [aux_sym_check_host_ip_token1] = ACTIONS(3029), - [aux_sym_ciphers_token1] = ACTIONS(3029), - [aux_sym_cipher_token1] = ACTIONS(3031), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3029), - [aux_sym_compression_token1] = ACTIONS(3029), - [aux_sym_connection_attempts_token1] = ACTIONS(3029), - [aux_sym_connect_timeout_token1] = ACTIONS(3029), - [aux_sym_control_master_token1] = ACTIONS(3029), - [aux_sym_control_path_token1] = ACTIONS(3029), - [aux_sym_control_persist_token1] = ACTIONS(3029), - [aux_sym_dynamic_forward_token1] = ACTIONS(3029), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3029), - [aux_sym_escape_char_token1] = ACTIONS(3029), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3029), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3029), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3029), - [aux_sym_forward_agent_token1] = ACTIONS(3029), - [aux_sym_forward_x11_token1] = ACTIONS(3031), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3029), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3029), - [aux_sym_gateway_ports_token1] = ACTIONS(3029), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3029), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3029), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3029), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3029), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3029), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3029), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3029), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3029), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3029), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3029), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3029), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3029), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3029), - [aux_sym_host_key_alias_token1] = ACTIONS(3029), - [aux_sym_hostname_token1] = ACTIONS(3029), - [aux_sym_identities_only_token1] = ACTIONS(3029), - [aux_sym_identity_agent_token1] = ACTIONS(3029), - [aux_sym_identity_file_token1] = ACTIONS(3029), - [aux_sym_ignore_unknown_token1] = ACTIONS(3029), - [aux_sym_include_token1] = ACTIONS(3029), - [aux_sym_ip_qos_token1] = ACTIONS(3029), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3029), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3029), - [aux_sym_kex_algorithms_token1] = ACTIONS(3029), - [aux_sym_known_hosts_command_token1] = ACTIONS(3029), - [aux_sym_local_command_token1] = ACTIONS(3029), - [aux_sym_local_forward_token1] = ACTIONS(3029), - [aux_sym_log_level_token1] = ACTIONS(3029), - [aux_sym_log_verbose_token1] = ACTIONS(3029), - [aux_sym_macs_token1] = ACTIONS(3029), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3029), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3029), - [aux_sym_password_authentication_token1] = ACTIONS(3029), - [aux_sym_permit_local_command_token1] = ACTIONS(3029), - [aux_sym_permit_remote_open_token1] = ACTIONS(3029), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3029), - [aux_sym_port_token1] = ACTIONS(3029), - [aux_sym_preferred_authentications_token1] = ACTIONS(3029), - [aux_sym_protocol_token1] = ACTIONS(3029), - [aux_sym_proxy_command_token1] = ACTIONS(3029), - [aux_sym_proxy_jump_token1] = ACTIONS(3029), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3029), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3029), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3029), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3029), - [aux_sym_rekey_limit_token1] = ACTIONS(3029), - [aux_sym_remote_command_token1] = ACTIONS(3029), - [aux_sym_remote_forward_token1] = ACTIONS(3029), - [aux_sym_request_tty_token1] = ACTIONS(3029), - [aux_sym_required_rsa_size_token1] = ACTIONS(3029), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3029), - [aux_sym_security_key_provider_token1] = ACTIONS(3029), - [aux_sym_send_env_token1] = ACTIONS(3029), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3029), - [aux_sym_server_alive_interval_token1] = ACTIONS(3029), - [aux_sym_session_type_token1] = ACTIONS(3029), - [aux_sym_set_env_token1] = ACTIONS(3029), - [aux_sym_stdin_null_token1] = ACTIONS(3029), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3029), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3029), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3029), - [aux_sym_syslog_facility_token1] = ACTIONS(3029), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3029), - [aux_sym_keep_alive_token1] = ACTIONS(3029), - [aux_sym_tunnel_token1] = ACTIONS(3031), - [aux_sym_tunnel_device_token1] = ACTIONS(3029), - [aux_sym_update_host_keys_token1] = ACTIONS(3029), - [aux_sym_use_keychain_token1] = ACTIONS(3029), - [aux_sym_use_roaming_token1] = ACTIONS(3029), - [aux_sym_user_token1] = ACTIONS(3031), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3029), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3029), - [aux_sym_visual_host_key_token1] = ACTIONS(3029), - [aux_sym_xauth_location_token1] = ACTIONS(3029), + [ts_builtin_sym_end] = ACTIONS(3040), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3042), + [aux_sym_match_token1] = ACTIONS(3040), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3040), + [aux_sym_address_family_token1] = ACTIONS(3040), + [aux_sym_batch_mode_token1] = ACTIONS(3040), + [aux_sym_bind_address_token1] = ACTIONS(3040), + [aux_sym_bind_interface_token1] = ACTIONS(3040), + [aux_sym_canonical_domains_token1] = ACTIONS(3040), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3040), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3040), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3040), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3040), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3040), + [aux_sym_certificate_file_token1] = ACTIONS(3040), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3040), + [aux_sym_check_host_ip_token1] = ACTIONS(3040), + [aux_sym_ciphers_token1] = ACTIONS(3040), + [aux_sym_cipher_token1] = ACTIONS(3042), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3040), + [aux_sym_compression_token1] = ACTIONS(3040), + [aux_sym_connection_attempts_token1] = ACTIONS(3040), + [aux_sym_connect_timeout_token1] = ACTIONS(3040), + [aux_sym_control_master_token1] = ACTIONS(3040), + [aux_sym_control_path_token1] = ACTIONS(3040), + [aux_sym_control_persist_token1] = ACTIONS(3040), + [aux_sym_dynamic_forward_token1] = ACTIONS(3040), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3040), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3040), + [aux_sym_escape_char_token1] = ACTIONS(3040), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3040), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3040), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3040), + [aux_sym_forward_agent_token1] = ACTIONS(3040), + [aux_sym_forward_x11_token1] = ACTIONS(3042), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3040), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3040), + [aux_sym_gateway_ports_token1] = ACTIONS(3040), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3040), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3040), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3040), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3040), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3040), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3040), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3040), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3040), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3040), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3040), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3040), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3040), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3040), + [aux_sym_host_key_alias_token1] = ACTIONS(3040), + [aux_sym_hostname_token1] = ACTIONS(3040), + [aux_sym_identities_only_token1] = ACTIONS(3040), + [aux_sym_identity_agent_token1] = ACTIONS(3040), + [aux_sym_identity_file_token1] = ACTIONS(3040), + [aux_sym_ignore_unknown_token1] = ACTIONS(3040), + [aux_sym_include_token1] = ACTIONS(3040), + [aux_sym_ip_qos_token1] = ACTIONS(3040), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3040), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3040), + [aux_sym_kex_algorithms_token1] = ACTIONS(3040), + [aux_sym_known_hosts_command_token1] = ACTIONS(3040), + [aux_sym_local_command_token1] = ACTIONS(3040), + [aux_sym_local_forward_token1] = ACTIONS(3040), + [aux_sym_log_level_token1] = ACTIONS(3040), + [aux_sym_log_verbose_token1] = ACTIONS(3040), + [aux_sym_macs_token1] = ACTIONS(3040), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3040), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3040), + [aux_sym_password_authentication_token1] = ACTIONS(3040), + [aux_sym_permit_local_command_token1] = ACTIONS(3040), + [aux_sym_permit_remote_open_token1] = ACTIONS(3040), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3040), + [aux_sym_port_token1] = ACTIONS(3040), + [aux_sym_preferred_authentications_token1] = ACTIONS(3040), + [aux_sym_protocol_token1] = ACTIONS(3040), + [aux_sym_proxy_command_token1] = ACTIONS(3040), + [aux_sym_proxy_jump_token1] = ACTIONS(3040), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3040), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3040), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3040), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3040), + [aux_sym_rekey_limit_token1] = ACTIONS(3040), + [aux_sym_remote_command_token1] = ACTIONS(3040), + [aux_sym_remote_forward_token1] = ACTIONS(3040), + [aux_sym_request_tty_token1] = ACTIONS(3040), + [aux_sym_required_rsa_size_token1] = ACTIONS(3040), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3040), + [aux_sym_security_key_provider_token1] = ACTIONS(3040), + [aux_sym_send_env_token1] = ACTIONS(3040), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3040), + [aux_sym_server_alive_interval_token1] = ACTIONS(3040), + [aux_sym_session_type_token1] = ACTIONS(3040), + [aux_sym_set_env_token1] = ACTIONS(3040), + [aux_sym_stdin_null_token1] = ACTIONS(3040), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3040), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3040), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3040), + [aux_sym_syslog_facility_token1] = ACTIONS(3040), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3040), + [aux_sym_keep_alive_token1] = ACTIONS(3040), + [aux_sym_tunnel_token1] = ACTIONS(3042), + [aux_sym_tunnel_device_token1] = ACTIONS(3040), + [aux_sym_update_host_keys_token1] = ACTIONS(3040), + [aux_sym_use_keychain_token1] = ACTIONS(3040), + [aux_sym_use_roaming_token1] = ACTIONS(3040), + [aux_sym_user_token1] = ACTIONS(3042), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3040), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3040), + [aux_sym_visual_host_key_token1] = ACTIONS(3040), + [aux_sym_xauth_location_token1] = ACTIONS(3040), }, [461] = { - [ts_builtin_sym_end] = ACTIONS(3033), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3035), - [aux_sym_match_token1] = ACTIONS(3033), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3033), - [aux_sym_address_family_token1] = ACTIONS(3033), - [aux_sym_batch_mode_token1] = ACTIONS(3033), - [aux_sym_bind_address_token1] = ACTIONS(3033), - [aux_sym_bind_interface_token1] = ACTIONS(3033), - [aux_sym_canonical_domains_token1] = ACTIONS(3033), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3033), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3033), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3033), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3033), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3033), - [aux_sym_certificate_file_token1] = ACTIONS(3033), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3033), - [aux_sym_check_host_ip_token1] = ACTIONS(3033), - [aux_sym_ciphers_token1] = ACTIONS(3033), - [aux_sym_cipher_token1] = ACTIONS(3035), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3033), - [aux_sym_compression_token1] = ACTIONS(3033), - [aux_sym_connection_attempts_token1] = ACTIONS(3033), - [aux_sym_connect_timeout_token1] = ACTIONS(3033), - [aux_sym_control_master_token1] = ACTIONS(3033), - [aux_sym_control_path_token1] = ACTIONS(3033), - [aux_sym_control_persist_token1] = ACTIONS(3033), - [aux_sym_dynamic_forward_token1] = ACTIONS(3033), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3033), - [aux_sym_escape_char_token1] = ACTIONS(3033), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3033), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3033), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3033), - [aux_sym_forward_agent_token1] = ACTIONS(3033), - [aux_sym_forward_x11_token1] = ACTIONS(3035), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3033), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3033), - [aux_sym_gateway_ports_token1] = ACTIONS(3033), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3033), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3033), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3033), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3033), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3033), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3033), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3033), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3033), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3033), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3033), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3033), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3033), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3033), - [aux_sym_host_key_alias_token1] = ACTIONS(3033), - [aux_sym_hostname_token1] = ACTIONS(3033), - [aux_sym_identities_only_token1] = ACTIONS(3033), - [aux_sym_identity_agent_token1] = ACTIONS(3033), - [aux_sym_identity_file_token1] = ACTIONS(3033), - [aux_sym_ignore_unknown_token1] = ACTIONS(3033), - [aux_sym_include_token1] = ACTIONS(3033), - [aux_sym_ip_qos_token1] = ACTIONS(3033), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3033), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3033), - [aux_sym_kex_algorithms_token1] = ACTIONS(3033), - [aux_sym_known_hosts_command_token1] = ACTIONS(3033), - [aux_sym_local_command_token1] = ACTIONS(3033), - [aux_sym_local_forward_token1] = ACTIONS(3033), - [aux_sym_log_level_token1] = ACTIONS(3033), - [aux_sym_log_verbose_token1] = ACTIONS(3033), - [aux_sym_macs_token1] = ACTIONS(3033), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3033), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3033), - [aux_sym_password_authentication_token1] = ACTIONS(3033), - [aux_sym_permit_local_command_token1] = ACTIONS(3033), - [aux_sym_permit_remote_open_token1] = ACTIONS(3033), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3033), - [aux_sym_port_token1] = ACTIONS(3033), - [aux_sym_preferred_authentications_token1] = ACTIONS(3033), - [aux_sym_protocol_token1] = ACTIONS(3033), - [aux_sym_proxy_command_token1] = ACTIONS(3033), - [aux_sym_proxy_jump_token1] = ACTIONS(3033), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3033), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3033), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3033), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3033), - [aux_sym_rekey_limit_token1] = ACTIONS(3033), - [aux_sym_remote_command_token1] = ACTIONS(3033), - [aux_sym_remote_forward_token1] = ACTIONS(3033), - [aux_sym_request_tty_token1] = ACTIONS(3033), - [aux_sym_required_rsa_size_token1] = ACTIONS(3033), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3033), - [aux_sym_security_key_provider_token1] = ACTIONS(3033), - [aux_sym_send_env_token1] = ACTIONS(3033), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3033), - [aux_sym_server_alive_interval_token1] = ACTIONS(3033), - [aux_sym_session_type_token1] = ACTIONS(3033), - [aux_sym_set_env_token1] = ACTIONS(3033), - [aux_sym_stdin_null_token1] = ACTIONS(3033), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3033), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3033), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3033), - [aux_sym_syslog_facility_token1] = ACTIONS(3033), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3033), - [aux_sym_keep_alive_token1] = ACTIONS(3033), - [aux_sym_tunnel_token1] = ACTIONS(3035), - [aux_sym_tunnel_device_token1] = ACTIONS(3033), - [aux_sym_update_host_keys_token1] = ACTIONS(3033), - [aux_sym_use_keychain_token1] = ACTIONS(3033), - [aux_sym_use_roaming_token1] = ACTIONS(3033), - [aux_sym_user_token1] = ACTIONS(3035), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3033), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3033), - [aux_sym_visual_host_key_token1] = ACTIONS(3033), - [aux_sym_xauth_location_token1] = ACTIONS(3033), + [ts_builtin_sym_end] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1072), + [aux_sym_match_token1] = ACTIONS(1070), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1070), + [aux_sym_address_family_token1] = ACTIONS(1070), + [aux_sym_batch_mode_token1] = ACTIONS(1070), + [aux_sym_bind_address_token1] = ACTIONS(1070), + [aux_sym_bind_interface_token1] = ACTIONS(1070), + [aux_sym_canonical_domains_token1] = ACTIONS(1070), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1070), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1070), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1070), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1070), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1070), + [aux_sym_certificate_file_token1] = ACTIONS(1070), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1070), + [aux_sym_check_host_ip_token1] = ACTIONS(1070), + [aux_sym_ciphers_token1] = ACTIONS(1070), + [aux_sym_cipher_token1] = ACTIONS(1072), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1070), + [aux_sym_compression_token1] = ACTIONS(1070), + [aux_sym_connection_attempts_token1] = ACTIONS(1070), + [aux_sym_connect_timeout_token1] = ACTIONS(1070), + [aux_sym_control_master_token1] = ACTIONS(1070), + [aux_sym_control_path_token1] = ACTIONS(1070), + [aux_sym_control_persist_token1] = ACTIONS(1070), + [aux_sym_dynamic_forward_token1] = ACTIONS(1070), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1070), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1070), + [aux_sym_escape_char_token1] = ACTIONS(1070), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1070), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1070), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1070), + [aux_sym_forward_agent_token1] = ACTIONS(1070), + [aux_sym_forward_x11_token1] = ACTIONS(1072), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1070), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1070), + [aux_sym_gateway_ports_token1] = ACTIONS(1070), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1070), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1070), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1070), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1070), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1070), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1070), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1070), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1070), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1070), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1070), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1070), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1070), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1070), + [aux_sym_host_key_alias_token1] = ACTIONS(1070), + [aux_sym_hostname_token1] = ACTIONS(1070), + [aux_sym_identities_only_token1] = ACTIONS(1070), + [aux_sym_identity_agent_token1] = ACTIONS(1070), + [aux_sym_identity_file_token1] = ACTIONS(1070), + [aux_sym_ignore_unknown_token1] = ACTIONS(1070), + [aux_sym_include_token1] = ACTIONS(1070), + [aux_sym_ip_qos_token1] = ACTIONS(1070), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1070), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1070), + [aux_sym_kex_algorithms_token1] = ACTIONS(1070), + [aux_sym_known_hosts_command_token1] = ACTIONS(1070), + [aux_sym_local_command_token1] = ACTIONS(1070), + [aux_sym_local_forward_token1] = ACTIONS(1070), + [aux_sym_log_level_token1] = ACTIONS(1070), + [aux_sym_log_verbose_token1] = ACTIONS(1070), + [aux_sym_macs_token1] = ACTIONS(1070), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1070), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1070), + [aux_sym_password_authentication_token1] = ACTIONS(1070), + [aux_sym_permit_local_command_token1] = ACTIONS(1070), + [aux_sym_permit_remote_open_token1] = ACTIONS(1070), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1070), + [aux_sym_port_token1] = ACTIONS(1070), + [aux_sym_preferred_authentications_token1] = ACTIONS(1070), + [aux_sym_protocol_token1] = ACTIONS(1070), + [aux_sym_proxy_command_token1] = ACTIONS(1070), + [aux_sym_proxy_jump_token1] = ACTIONS(1070), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1070), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1070), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1070), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1070), + [aux_sym_rekey_limit_token1] = ACTIONS(1070), + [aux_sym_remote_command_token1] = ACTIONS(1070), + [aux_sym_remote_forward_token1] = ACTIONS(1070), + [aux_sym_request_tty_token1] = ACTIONS(1070), + [aux_sym_required_rsa_size_token1] = ACTIONS(1070), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1070), + [aux_sym_security_key_provider_token1] = ACTIONS(1070), + [aux_sym_send_env_token1] = ACTIONS(1070), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1070), + [aux_sym_server_alive_interval_token1] = ACTIONS(1070), + [aux_sym_session_type_token1] = ACTIONS(1070), + [aux_sym_set_env_token1] = ACTIONS(1070), + [aux_sym_stdin_null_token1] = ACTIONS(1070), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1070), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1070), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1070), + [aux_sym_syslog_facility_token1] = ACTIONS(1070), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1070), + [aux_sym_keep_alive_token1] = ACTIONS(1070), + [aux_sym_tunnel_token1] = ACTIONS(1072), + [aux_sym_tunnel_device_token1] = ACTIONS(1070), + [aux_sym_update_host_keys_token1] = ACTIONS(1070), + [aux_sym_use_keychain_token1] = ACTIONS(1070), + [aux_sym_use_roaming_token1] = ACTIONS(1070), + [aux_sym_user_token1] = ACTIONS(1072), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1070), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1070), + [aux_sym_visual_host_key_token1] = ACTIONS(1070), + [aux_sym_xauth_location_token1] = ACTIONS(1070), }, [462] = { - [ts_builtin_sym_end] = ACTIONS(3037), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3039), - [aux_sym_match_token1] = ACTIONS(3037), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3037), - [aux_sym_address_family_token1] = ACTIONS(3037), - [aux_sym_batch_mode_token1] = ACTIONS(3037), - [aux_sym_bind_address_token1] = ACTIONS(3037), - [aux_sym_bind_interface_token1] = ACTIONS(3037), - [aux_sym_canonical_domains_token1] = ACTIONS(3037), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3037), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3037), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3037), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3037), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3037), - [aux_sym_certificate_file_token1] = ACTIONS(3037), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3037), - [aux_sym_check_host_ip_token1] = ACTIONS(3037), - [aux_sym_ciphers_token1] = ACTIONS(3037), - [aux_sym_cipher_token1] = ACTIONS(3039), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3037), - [aux_sym_compression_token1] = ACTIONS(3037), - [aux_sym_connection_attempts_token1] = ACTIONS(3037), - [aux_sym_connect_timeout_token1] = ACTIONS(3037), - [aux_sym_control_master_token1] = ACTIONS(3037), - [aux_sym_control_path_token1] = ACTIONS(3037), - [aux_sym_control_persist_token1] = ACTIONS(3037), - [aux_sym_dynamic_forward_token1] = ACTIONS(3037), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3037), - [aux_sym_escape_char_token1] = ACTIONS(3037), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3037), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3037), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3037), - [aux_sym_forward_agent_token1] = ACTIONS(3037), - [aux_sym_forward_x11_token1] = ACTIONS(3039), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3037), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3037), - [aux_sym_gateway_ports_token1] = ACTIONS(3037), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3037), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3037), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3037), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3037), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3037), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3037), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3037), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3037), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3037), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3037), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3037), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3037), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3037), - [aux_sym_host_key_alias_token1] = ACTIONS(3037), - [aux_sym_hostname_token1] = ACTIONS(3037), - [aux_sym_identities_only_token1] = ACTIONS(3037), - [aux_sym_identity_agent_token1] = ACTIONS(3037), - [aux_sym_identity_file_token1] = ACTIONS(3037), - [aux_sym_ignore_unknown_token1] = ACTIONS(3037), - [aux_sym_include_token1] = ACTIONS(3037), - [aux_sym_ip_qos_token1] = ACTIONS(3037), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3037), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3037), - [aux_sym_kex_algorithms_token1] = ACTIONS(3037), - [aux_sym_known_hosts_command_token1] = ACTIONS(3037), - [aux_sym_local_command_token1] = ACTIONS(3037), - [aux_sym_local_forward_token1] = ACTIONS(3037), - [aux_sym_log_level_token1] = ACTIONS(3037), - [aux_sym_log_verbose_token1] = ACTIONS(3037), - [aux_sym_macs_token1] = ACTIONS(3037), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3037), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3037), - [aux_sym_password_authentication_token1] = ACTIONS(3037), - [aux_sym_permit_local_command_token1] = ACTIONS(3037), - [aux_sym_permit_remote_open_token1] = ACTIONS(3037), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3037), - [aux_sym_port_token1] = ACTIONS(3037), - [aux_sym_preferred_authentications_token1] = ACTIONS(3037), - [aux_sym_protocol_token1] = ACTIONS(3037), - [aux_sym_proxy_command_token1] = ACTIONS(3037), - [aux_sym_proxy_jump_token1] = ACTIONS(3037), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3037), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3037), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3037), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3037), - [aux_sym_rekey_limit_token1] = ACTIONS(3037), - [aux_sym_remote_command_token1] = ACTIONS(3037), - [aux_sym_remote_forward_token1] = ACTIONS(3037), - [aux_sym_request_tty_token1] = ACTIONS(3037), - [aux_sym_required_rsa_size_token1] = ACTIONS(3037), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3037), - [aux_sym_security_key_provider_token1] = ACTIONS(3037), - [aux_sym_send_env_token1] = ACTIONS(3037), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3037), - [aux_sym_server_alive_interval_token1] = ACTIONS(3037), - [aux_sym_session_type_token1] = ACTIONS(3037), - [aux_sym_set_env_token1] = ACTIONS(3037), - [aux_sym_stdin_null_token1] = ACTIONS(3037), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3037), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3037), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3037), - [aux_sym_syslog_facility_token1] = ACTIONS(3037), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3037), - [aux_sym_keep_alive_token1] = ACTIONS(3037), - [aux_sym_tunnel_token1] = ACTIONS(3039), - [aux_sym_tunnel_device_token1] = ACTIONS(3037), - [aux_sym_update_host_keys_token1] = ACTIONS(3037), - [aux_sym_use_keychain_token1] = ACTIONS(3037), - [aux_sym_use_roaming_token1] = ACTIONS(3037), - [aux_sym_user_token1] = ACTIONS(3039), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3037), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3037), - [aux_sym_visual_host_key_token1] = ACTIONS(3037), - [aux_sym_xauth_location_token1] = ACTIONS(3037), + [ts_builtin_sym_end] = ACTIONS(1136), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1138), + [aux_sym_match_token1] = ACTIONS(1136), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1136), + [aux_sym_address_family_token1] = ACTIONS(1136), + [aux_sym_batch_mode_token1] = ACTIONS(1136), + [aux_sym_bind_address_token1] = ACTIONS(1136), + [aux_sym_bind_interface_token1] = ACTIONS(1136), + [aux_sym_canonical_domains_token1] = ACTIONS(1136), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1136), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1136), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1136), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1136), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1136), + [aux_sym_certificate_file_token1] = ACTIONS(1136), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1136), + [aux_sym_check_host_ip_token1] = ACTIONS(1136), + [aux_sym_ciphers_token1] = ACTIONS(1136), + [aux_sym_cipher_token1] = ACTIONS(1138), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1136), + [aux_sym_compression_token1] = ACTIONS(1136), + [aux_sym_connection_attempts_token1] = ACTIONS(1136), + [aux_sym_connect_timeout_token1] = ACTIONS(1136), + [aux_sym_control_master_token1] = ACTIONS(1136), + [aux_sym_control_path_token1] = ACTIONS(1136), + [aux_sym_control_persist_token1] = ACTIONS(1136), + [aux_sym_dynamic_forward_token1] = ACTIONS(1136), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1136), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1136), + [aux_sym_escape_char_token1] = ACTIONS(1136), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1136), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1136), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1136), + [aux_sym_forward_agent_token1] = ACTIONS(1136), + [aux_sym_forward_x11_token1] = ACTIONS(1138), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1136), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1136), + [aux_sym_gateway_ports_token1] = ACTIONS(1136), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1136), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1136), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1136), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1136), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1136), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1136), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1136), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1136), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1136), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1136), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1136), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1136), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1136), + [aux_sym_host_key_alias_token1] = ACTIONS(1136), + [aux_sym_hostname_token1] = ACTIONS(1136), + [aux_sym_identities_only_token1] = ACTIONS(1136), + [aux_sym_identity_agent_token1] = ACTIONS(1136), + [aux_sym_identity_file_token1] = ACTIONS(1136), + [aux_sym_ignore_unknown_token1] = ACTIONS(1136), + [aux_sym_include_token1] = ACTIONS(1136), + [aux_sym_ip_qos_token1] = ACTIONS(1136), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1136), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1136), + [aux_sym_kex_algorithms_token1] = ACTIONS(1136), + [aux_sym_known_hosts_command_token1] = ACTIONS(1136), + [aux_sym_local_command_token1] = ACTIONS(1136), + [aux_sym_local_forward_token1] = ACTIONS(1136), + [aux_sym_log_level_token1] = ACTIONS(1136), + [aux_sym_log_verbose_token1] = ACTIONS(1136), + [aux_sym_macs_token1] = ACTIONS(1136), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1136), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1136), + [aux_sym_password_authentication_token1] = ACTIONS(1136), + [aux_sym_permit_local_command_token1] = ACTIONS(1136), + [aux_sym_permit_remote_open_token1] = ACTIONS(1136), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1136), + [aux_sym_port_token1] = ACTIONS(1136), + [aux_sym_preferred_authentications_token1] = ACTIONS(1136), + [aux_sym_protocol_token1] = ACTIONS(1136), + [aux_sym_proxy_command_token1] = ACTIONS(1136), + [aux_sym_proxy_jump_token1] = ACTIONS(1136), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1136), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1136), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1136), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1136), + [aux_sym_rekey_limit_token1] = ACTIONS(1136), + [aux_sym_remote_command_token1] = ACTIONS(1136), + [aux_sym_remote_forward_token1] = ACTIONS(1136), + [aux_sym_request_tty_token1] = ACTIONS(1136), + [aux_sym_required_rsa_size_token1] = ACTIONS(1136), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1136), + [aux_sym_security_key_provider_token1] = ACTIONS(1136), + [aux_sym_send_env_token1] = ACTIONS(1136), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1136), + [aux_sym_server_alive_interval_token1] = ACTIONS(1136), + [aux_sym_session_type_token1] = ACTIONS(1136), + [aux_sym_set_env_token1] = ACTIONS(1136), + [aux_sym_stdin_null_token1] = ACTIONS(1136), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1136), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1136), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1136), + [aux_sym_syslog_facility_token1] = ACTIONS(1136), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1136), + [aux_sym_keep_alive_token1] = ACTIONS(1136), + [aux_sym_tunnel_token1] = ACTIONS(1138), + [aux_sym_tunnel_device_token1] = ACTIONS(1136), + [aux_sym_update_host_keys_token1] = ACTIONS(1136), + [aux_sym_use_keychain_token1] = ACTIONS(1136), + [aux_sym_use_roaming_token1] = ACTIONS(1136), + [aux_sym_user_token1] = ACTIONS(1138), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1136), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1136), + [aux_sym_visual_host_key_token1] = ACTIONS(1136), + [aux_sym_xauth_location_token1] = ACTIONS(1136), }, [463] = { - [ts_builtin_sym_end] = ACTIONS(3041), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3043), - [aux_sym_match_token1] = ACTIONS(3041), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3041), - [aux_sym_address_family_token1] = ACTIONS(3041), - [aux_sym_batch_mode_token1] = ACTIONS(3041), - [aux_sym_bind_address_token1] = ACTIONS(3041), - [aux_sym_bind_interface_token1] = ACTIONS(3041), - [aux_sym_canonical_domains_token1] = ACTIONS(3041), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3041), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3041), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3041), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3041), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3041), - [aux_sym_certificate_file_token1] = ACTIONS(3041), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3041), - [aux_sym_check_host_ip_token1] = ACTIONS(3041), - [aux_sym_ciphers_token1] = ACTIONS(3041), - [aux_sym_cipher_token1] = ACTIONS(3043), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3041), - [aux_sym_compression_token1] = ACTIONS(3041), - [aux_sym_connection_attempts_token1] = ACTIONS(3041), - [aux_sym_connect_timeout_token1] = ACTIONS(3041), - [aux_sym_control_master_token1] = ACTIONS(3041), - [aux_sym_control_path_token1] = ACTIONS(3041), - [aux_sym_control_persist_token1] = ACTIONS(3041), - [aux_sym_dynamic_forward_token1] = ACTIONS(3041), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3041), - [aux_sym_escape_char_token1] = ACTIONS(3041), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3041), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3041), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3041), - [aux_sym_forward_agent_token1] = ACTIONS(3041), - [aux_sym_forward_x11_token1] = ACTIONS(3043), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3041), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3041), - [aux_sym_gateway_ports_token1] = ACTIONS(3041), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3041), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3041), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3041), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3041), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3041), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3041), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3041), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3041), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3041), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3041), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3041), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3041), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3041), - [aux_sym_host_key_alias_token1] = ACTIONS(3041), - [aux_sym_hostname_token1] = ACTIONS(3041), - [aux_sym_identities_only_token1] = ACTIONS(3041), - [aux_sym_identity_agent_token1] = ACTIONS(3041), - [aux_sym_identity_file_token1] = ACTIONS(3041), - [aux_sym_ignore_unknown_token1] = ACTIONS(3041), - [aux_sym_include_token1] = ACTIONS(3041), - [aux_sym_ip_qos_token1] = ACTIONS(3041), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3041), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3041), - [aux_sym_kex_algorithms_token1] = ACTIONS(3041), - [aux_sym_known_hosts_command_token1] = ACTIONS(3041), - [aux_sym_local_command_token1] = ACTIONS(3041), - [aux_sym_local_forward_token1] = ACTIONS(3041), - [aux_sym_log_level_token1] = ACTIONS(3041), - [aux_sym_log_verbose_token1] = ACTIONS(3041), - [aux_sym_macs_token1] = ACTIONS(3041), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3041), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3041), - [aux_sym_password_authentication_token1] = ACTIONS(3041), - [aux_sym_permit_local_command_token1] = ACTIONS(3041), - [aux_sym_permit_remote_open_token1] = ACTIONS(3041), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3041), - [aux_sym_port_token1] = ACTIONS(3041), - [aux_sym_preferred_authentications_token1] = ACTIONS(3041), - [aux_sym_protocol_token1] = ACTIONS(3041), - [aux_sym_proxy_command_token1] = ACTIONS(3041), - [aux_sym_proxy_jump_token1] = ACTIONS(3041), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3041), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3041), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3041), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3041), - [aux_sym_rekey_limit_token1] = ACTIONS(3041), - [aux_sym_remote_command_token1] = ACTIONS(3041), - [aux_sym_remote_forward_token1] = ACTIONS(3041), - [aux_sym_request_tty_token1] = ACTIONS(3041), - [aux_sym_required_rsa_size_token1] = ACTIONS(3041), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3041), - [aux_sym_security_key_provider_token1] = ACTIONS(3041), - [aux_sym_send_env_token1] = ACTIONS(3041), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3041), - [aux_sym_server_alive_interval_token1] = ACTIONS(3041), - [aux_sym_session_type_token1] = ACTIONS(3041), - [aux_sym_set_env_token1] = ACTIONS(3041), - [aux_sym_stdin_null_token1] = ACTIONS(3041), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3041), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3041), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3041), - [aux_sym_syslog_facility_token1] = ACTIONS(3041), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3041), - [aux_sym_keep_alive_token1] = ACTIONS(3041), - [aux_sym_tunnel_token1] = ACTIONS(3043), - [aux_sym_tunnel_device_token1] = ACTIONS(3041), - [aux_sym_update_host_keys_token1] = ACTIONS(3041), - [aux_sym_use_keychain_token1] = ACTIONS(3041), - [aux_sym_use_roaming_token1] = ACTIONS(3041), - [aux_sym_user_token1] = ACTIONS(3043), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3041), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3041), - [aux_sym_visual_host_key_token1] = ACTIONS(3041), - [aux_sym_xauth_location_token1] = ACTIONS(3041), + [ts_builtin_sym_end] = ACTIONS(3044), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3046), + [aux_sym_match_token1] = ACTIONS(3044), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3044), + [aux_sym_address_family_token1] = ACTIONS(3044), + [aux_sym_batch_mode_token1] = ACTIONS(3044), + [aux_sym_bind_address_token1] = ACTIONS(3044), + [aux_sym_bind_interface_token1] = ACTIONS(3044), + [aux_sym_canonical_domains_token1] = ACTIONS(3044), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3044), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3044), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3044), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3044), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3044), + [aux_sym_certificate_file_token1] = ACTIONS(3044), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3044), + [aux_sym_check_host_ip_token1] = ACTIONS(3044), + [aux_sym_ciphers_token1] = ACTIONS(3044), + [aux_sym_cipher_token1] = ACTIONS(3046), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3044), + [aux_sym_compression_token1] = ACTIONS(3044), + [aux_sym_connection_attempts_token1] = ACTIONS(3044), + [aux_sym_connect_timeout_token1] = ACTIONS(3044), + [aux_sym_control_master_token1] = ACTIONS(3044), + [aux_sym_control_path_token1] = ACTIONS(3044), + [aux_sym_control_persist_token1] = ACTIONS(3044), + [aux_sym_dynamic_forward_token1] = ACTIONS(3044), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3044), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3044), + [aux_sym_escape_char_token1] = ACTIONS(3044), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3044), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3044), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3044), + [aux_sym_forward_agent_token1] = ACTIONS(3044), + [aux_sym_forward_x11_token1] = ACTIONS(3046), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3044), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3044), + [aux_sym_gateway_ports_token1] = ACTIONS(3044), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3044), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3044), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3044), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3044), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3044), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3044), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3044), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3044), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3044), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3044), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3044), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3044), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3044), + [aux_sym_host_key_alias_token1] = ACTIONS(3044), + [aux_sym_hostname_token1] = ACTIONS(3044), + [aux_sym_identities_only_token1] = ACTIONS(3044), + [aux_sym_identity_agent_token1] = ACTIONS(3044), + [aux_sym_identity_file_token1] = ACTIONS(3044), + [aux_sym_ignore_unknown_token1] = ACTIONS(3044), + [aux_sym_include_token1] = ACTIONS(3044), + [aux_sym_ip_qos_token1] = ACTIONS(3044), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3044), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3044), + [aux_sym_kex_algorithms_token1] = ACTIONS(3044), + [aux_sym_known_hosts_command_token1] = ACTIONS(3044), + [aux_sym_local_command_token1] = ACTIONS(3044), + [aux_sym_local_forward_token1] = ACTIONS(3044), + [aux_sym_log_level_token1] = ACTIONS(3044), + [aux_sym_log_verbose_token1] = ACTIONS(3044), + [aux_sym_macs_token1] = ACTIONS(3044), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3044), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3044), + [aux_sym_password_authentication_token1] = ACTIONS(3044), + [aux_sym_permit_local_command_token1] = ACTIONS(3044), + [aux_sym_permit_remote_open_token1] = ACTIONS(3044), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3044), + [aux_sym_port_token1] = ACTIONS(3044), + [aux_sym_preferred_authentications_token1] = ACTIONS(3044), + [aux_sym_protocol_token1] = ACTIONS(3044), + [aux_sym_proxy_command_token1] = ACTIONS(3044), + [aux_sym_proxy_jump_token1] = ACTIONS(3044), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3044), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3044), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3044), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3044), + [aux_sym_rekey_limit_token1] = ACTIONS(3044), + [aux_sym_remote_command_token1] = ACTIONS(3044), + [aux_sym_remote_forward_token1] = ACTIONS(3044), + [aux_sym_request_tty_token1] = ACTIONS(3044), + [aux_sym_required_rsa_size_token1] = ACTIONS(3044), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3044), + [aux_sym_security_key_provider_token1] = ACTIONS(3044), + [aux_sym_send_env_token1] = ACTIONS(3044), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3044), + [aux_sym_server_alive_interval_token1] = ACTIONS(3044), + [aux_sym_session_type_token1] = ACTIONS(3044), + [aux_sym_set_env_token1] = ACTIONS(3044), + [aux_sym_stdin_null_token1] = ACTIONS(3044), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3044), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3044), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3044), + [aux_sym_syslog_facility_token1] = ACTIONS(3044), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3044), + [aux_sym_keep_alive_token1] = ACTIONS(3044), + [aux_sym_tunnel_token1] = ACTIONS(3046), + [aux_sym_tunnel_device_token1] = ACTIONS(3044), + [aux_sym_update_host_keys_token1] = ACTIONS(3044), + [aux_sym_use_keychain_token1] = ACTIONS(3044), + [aux_sym_use_roaming_token1] = ACTIONS(3044), + [aux_sym_user_token1] = ACTIONS(3046), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3044), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3044), + [aux_sym_visual_host_key_token1] = ACTIONS(3044), + [aux_sym_xauth_location_token1] = ACTIONS(3044), }, [464] = { - [ts_builtin_sym_end] = ACTIONS(3045), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3047), - [aux_sym_match_token1] = ACTIONS(3045), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3045), - [aux_sym_address_family_token1] = ACTIONS(3045), - [aux_sym_batch_mode_token1] = ACTIONS(3045), - [aux_sym_bind_address_token1] = ACTIONS(3045), - [aux_sym_bind_interface_token1] = ACTIONS(3045), - [aux_sym_canonical_domains_token1] = ACTIONS(3045), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3045), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3045), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3045), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3045), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3045), - [aux_sym_certificate_file_token1] = ACTIONS(3045), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3045), - [aux_sym_check_host_ip_token1] = ACTIONS(3045), - [aux_sym_ciphers_token1] = ACTIONS(3045), - [aux_sym_cipher_token1] = ACTIONS(3047), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3045), - [aux_sym_compression_token1] = ACTIONS(3045), - [aux_sym_connection_attempts_token1] = ACTIONS(3045), - [aux_sym_connect_timeout_token1] = ACTIONS(3045), - [aux_sym_control_master_token1] = ACTIONS(3045), - [aux_sym_control_path_token1] = ACTIONS(3045), - [aux_sym_control_persist_token1] = ACTIONS(3045), - [aux_sym_dynamic_forward_token1] = ACTIONS(3045), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3045), - [aux_sym_escape_char_token1] = ACTIONS(3045), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3045), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3045), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3045), - [aux_sym_forward_agent_token1] = ACTIONS(3045), - [aux_sym_forward_x11_token1] = ACTIONS(3047), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3045), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3045), - [aux_sym_gateway_ports_token1] = ACTIONS(3045), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3045), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3045), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3045), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3045), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3045), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3045), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3045), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3045), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3045), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3045), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3045), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3045), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3045), - [aux_sym_host_key_alias_token1] = ACTIONS(3045), - [aux_sym_hostname_token1] = ACTIONS(3045), - [aux_sym_identities_only_token1] = ACTIONS(3045), - [aux_sym_identity_agent_token1] = ACTIONS(3045), - [aux_sym_identity_file_token1] = ACTIONS(3045), - [aux_sym_ignore_unknown_token1] = ACTIONS(3045), - [aux_sym_include_token1] = ACTIONS(3045), - [aux_sym_ip_qos_token1] = ACTIONS(3045), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3045), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3045), - [aux_sym_kex_algorithms_token1] = ACTIONS(3045), - [aux_sym_known_hosts_command_token1] = ACTIONS(3045), - [aux_sym_local_command_token1] = ACTIONS(3045), - [aux_sym_local_forward_token1] = ACTIONS(3045), - [aux_sym_log_level_token1] = ACTIONS(3045), - [aux_sym_log_verbose_token1] = ACTIONS(3045), - [aux_sym_macs_token1] = ACTIONS(3045), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3045), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3045), - [aux_sym_password_authentication_token1] = ACTIONS(3045), - [aux_sym_permit_local_command_token1] = ACTIONS(3045), - [aux_sym_permit_remote_open_token1] = ACTIONS(3045), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3045), - [aux_sym_port_token1] = ACTIONS(3045), - [aux_sym_preferred_authentications_token1] = ACTIONS(3045), - [aux_sym_protocol_token1] = ACTIONS(3045), - [aux_sym_proxy_command_token1] = ACTIONS(3045), - [aux_sym_proxy_jump_token1] = ACTIONS(3045), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3045), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3045), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3045), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3045), - [aux_sym_rekey_limit_token1] = ACTIONS(3045), - [aux_sym_remote_command_token1] = ACTIONS(3045), - [aux_sym_remote_forward_token1] = ACTIONS(3045), - [aux_sym_request_tty_token1] = ACTIONS(3045), - [aux_sym_required_rsa_size_token1] = ACTIONS(3045), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3045), - [aux_sym_security_key_provider_token1] = ACTIONS(3045), - [aux_sym_send_env_token1] = ACTIONS(3045), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3045), - [aux_sym_server_alive_interval_token1] = ACTIONS(3045), - [aux_sym_session_type_token1] = ACTIONS(3045), - [aux_sym_set_env_token1] = ACTIONS(3045), - [aux_sym_stdin_null_token1] = ACTIONS(3045), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3045), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3045), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3045), - [aux_sym_syslog_facility_token1] = ACTIONS(3045), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3045), - [aux_sym_keep_alive_token1] = ACTIONS(3045), - [aux_sym_tunnel_token1] = ACTIONS(3047), - [aux_sym_tunnel_device_token1] = ACTIONS(3045), - [aux_sym_update_host_keys_token1] = ACTIONS(3045), - [aux_sym_use_keychain_token1] = ACTIONS(3045), - [aux_sym_use_roaming_token1] = ACTIONS(3045), - [aux_sym_user_token1] = ACTIONS(3047), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3045), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3045), - [aux_sym_visual_host_key_token1] = ACTIONS(3045), - [aux_sym_xauth_location_token1] = ACTIONS(3045), + [ts_builtin_sym_end] = ACTIONS(1040), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1042), + [aux_sym_match_token1] = ACTIONS(1040), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1040), + [aux_sym_address_family_token1] = ACTIONS(1040), + [aux_sym_batch_mode_token1] = ACTIONS(1040), + [aux_sym_bind_address_token1] = ACTIONS(1040), + [aux_sym_bind_interface_token1] = ACTIONS(1040), + [aux_sym_canonical_domains_token1] = ACTIONS(1040), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1040), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1040), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1040), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1040), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1040), + [aux_sym_certificate_file_token1] = ACTIONS(1040), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1040), + [aux_sym_check_host_ip_token1] = ACTIONS(1040), + [aux_sym_ciphers_token1] = ACTIONS(1040), + [aux_sym_cipher_token1] = ACTIONS(1042), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1040), + [aux_sym_compression_token1] = ACTIONS(1040), + [aux_sym_connection_attempts_token1] = ACTIONS(1040), + [aux_sym_connect_timeout_token1] = ACTIONS(1040), + [aux_sym_control_master_token1] = ACTIONS(1040), + [aux_sym_control_path_token1] = ACTIONS(1040), + [aux_sym_control_persist_token1] = ACTIONS(1040), + [aux_sym_dynamic_forward_token1] = ACTIONS(1040), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1040), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1040), + [aux_sym_escape_char_token1] = ACTIONS(1040), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1040), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1040), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1040), + [aux_sym_forward_agent_token1] = ACTIONS(1040), + [aux_sym_forward_x11_token1] = ACTIONS(1042), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1040), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1040), + [aux_sym_gateway_ports_token1] = ACTIONS(1040), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1040), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1040), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1040), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1040), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1040), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1040), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1040), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1040), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1040), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1040), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1040), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1040), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1040), + [aux_sym_host_key_alias_token1] = ACTIONS(1040), + [aux_sym_hostname_token1] = ACTIONS(1040), + [aux_sym_identities_only_token1] = ACTIONS(1040), + [aux_sym_identity_agent_token1] = ACTIONS(1040), + [aux_sym_identity_file_token1] = ACTIONS(1040), + [aux_sym_ignore_unknown_token1] = ACTIONS(1040), + [aux_sym_include_token1] = ACTIONS(1040), + [aux_sym_ip_qos_token1] = ACTIONS(1040), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1040), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1040), + [aux_sym_kex_algorithms_token1] = ACTIONS(1040), + [aux_sym_known_hosts_command_token1] = ACTIONS(1040), + [aux_sym_local_command_token1] = ACTIONS(1040), + [aux_sym_local_forward_token1] = ACTIONS(1040), + [aux_sym_log_level_token1] = ACTIONS(1040), + [aux_sym_log_verbose_token1] = ACTIONS(1040), + [aux_sym_macs_token1] = ACTIONS(1040), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1040), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1040), + [aux_sym_password_authentication_token1] = ACTIONS(1040), + [aux_sym_permit_local_command_token1] = ACTIONS(1040), + [aux_sym_permit_remote_open_token1] = ACTIONS(1040), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1040), + [aux_sym_port_token1] = ACTIONS(1040), + [aux_sym_preferred_authentications_token1] = ACTIONS(1040), + [aux_sym_protocol_token1] = ACTIONS(1040), + [aux_sym_proxy_command_token1] = ACTIONS(1040), + [aux_sym_proxy_jump_token1] = ACTIONS(1040), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1040), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1040), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1040), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1040), + [aux_sym_rekey_limit_token1] = ACTIONS(1040), + [aux_sym_remote_command_token1] = ACTIONS(1040), + [aux_sym_remote_forward_token1] = ACTIONS(1040), + [aux_sym_request_tty_token1] = ACTIONS(1040), + [aux_sym_required_rsa_size_token1] = ACTIONS(1040), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1040), + [aux_sym_security_key_provider_token1] = ACTIONS(1040), + [aux_sym_send_env_token1] = ACTIONS(1040), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1040), + [aux_sym_server_alive_interval_token1] = ACTIONS(1040), + [aux_sym_session_type_token1] = ACTIONS(1040), + [aux_sym_set_env_token1] = ACTIONS(1040), + [aux_sym_stdin_null_token1] = ACTIONS(1040), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1040), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1040), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1040), + [aux_sym_syslog_facility_token1] = ACTIONS(1040), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1040), + [aux_sym_keep_alive_token1] = ACTIONS(1040), + [aux_sym_tunnel_token1] = ACTIONS(1042), + [aux_sym_tunnel_device_token1] = ACTIONS(1040), + [aux_sym_update_host_keys_token1] = ACTIONS(1040), + [aux_sym_use_keychain_token1] = ACTIONS(1040), + [aux_sym_use_roaming_token1] = ACTIONS(1040), + [aux_sym_user_token1] = ACTIONS(1042), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1040), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1040), + [aux_sym_visual_host_key_token1] = ACTIONS(1040), + [aux_sym_xauth_location_token1] = ACTIONS(1040), }, [465] = { - [ts_builtin_sym_end] = ACTIONS(3049), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3051), - [aux_sym_match_token1] = ACTIONS(3049), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3049), - [aux_sym_address_family_token1] = ACTIONS(3049), - [aux_sym_batch_mode_token1] = ACTIONS(3049), - [aux_sym_bind_address_token1] = ACTIONS(3049), - [aux_sym_bind_interface_token1] = ACTIONS(3049), - [aux_sym_canonical_domains_token1] = ACTIONS(3049), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3049), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3049), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3049), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3049), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3049), - [aux_sym_certificate_file_token1] = ACTIONS(3049), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3049), - [aux_sym_check_host_ip_token1] = ACTIONS(3049), - [aux_sym_ciphers_token1] = ACTIONS(3049), - [aux_sym_cipher_token1] = ACTIONS(3051), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3049), - [aux_sym_compression_token1] = ACTIONS(3049), - [aux_sym_connection_attempts_token1] = ACTIONS(3049), - [aux_sym_connect_timeout_token1] = ACTIONS(3049), - [aux_sym_control_master_token1] = ACTIONS(3049), - [aux_sym_control_path_token1] = ACTIONS(3049), - [aux_sym_control_persist_token1] = ACTIONS(3049), - [aux_sym_dynamic_forward_token1] = ACTIONS(3049), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3049), - [aux_sym_escape_char_token1] = ACTIONS(3049), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3049), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3049), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3049), - [aux_sym_forward_agent_token1] = ACTIONS(3049), - [aux_sym_forward_x11_token1] = ACTIONS(3051), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3049), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3049), - [aux_sym_gateway_ports_token1] = ACTIONS(3049), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3049), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3049), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3049), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3049), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3049), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3049), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3049), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3049), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3049), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3049), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3049), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3049), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3049), - [aux_sym_host_key_alias_token1] = ACTIONS(3049), - [aux_sym_hostname_token1] = ACTIONS(3049), - [aux_sym_identities_only_token1] = ACTIONS(3049), - [aux_sym_identity_agent_token1] = ACTIONS(3049), - [aux_sym_identity_file_token1] = ACTIONS(3049), - [aux_sym_ignore_unknown_token1] = ACTIONS(3049), - [aux_sym_include_token1] = ACTIONS(3049), - [aux_sym_ip_qos_token1] = ACTIONS(3049), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3049), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3049), - [aux_sym_kex_algorithms_token1] = ACTIONS(3049), - [aux_sym_known_hosts_command_token1] = ACTIONS(3049), - [aux_sym_local_command_token1] = ACTIONS(3049), - [aux_sym_local_forward_token1] = ACTIONS(3049), - [aux_sym_log_level_token1] = ACTIONS(3049), - [aux_sym_log_verbose_token1] = ACTIONS(3049), - [aux_sym_macs_token1] = ACTIONS(3049), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3049), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3049), - [aux_sym_password_authentication_token1] = ACTIONS(3049), - [aux_sym_permit_local_command_token1] = ACTIONS(3049), - [aux_sym_permit_remote_open_token1] = ACTIONS(3049), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3049), - [aux_sym_port_token1] = ACTIONS(3049), - [aux_sym_preferred_authentications_token1] = ACTIONS(3049), - [aux_sym_protocol_token1] = ACTIONS(3049), - [aux_sym_proxy_command_token1] = ACTIONS(3049), - [aux_sym_proxy_jump_token1] = ACTIONS(3049), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3049), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3049), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3049), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3049), - [aux_sym_rekey_limit_token1] = ACTIONS(3049), - [aux_sym_remote_command_token1] = ACTIONS(3049), - [aux_sym_remote_forward_token1] = ACTIONS(3049), - [aux_sym_request_tty_token1] = ACTIONS(3049), - [aux_sym_required_rsa_size_token1] = ACTIONS(3049), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3049), - [aux_sym_security_key_provider_token1] = ACTIONS(3049), - [aux_sym_send_env_token1] = ACTIONS(3049), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3049), - [aux_sym_server_alive_interval_token1] = ACTIONS(3049), - [aux_sym_session_type_token1] = ACTIONS(3049), - [aux_sym_set_env_token1] = ACTIONS(3049), - [aux_sym_stdin_null_token1] = ACTIONS(3049), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3049), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3049), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3049), - [aux_sym_syslog_facility_token1] = ACTIONS(3049), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3049), - [aux_sym_keep_alive_token1] = ACTIONS(3049), - [aux_sym_tunnel_token1] = ACTIONS(3051), - [aux_sym_tunnel_device_token1] = ACTIONS(3049), - [aux_sym_update_host_keys_token1] = ACTIONS(3049), - [aux_sym_use_keychain_token1] = ACTIONS(3049), - [aux_sym_use_roaming_token1] = ACTIONS(3049), - [aux_sym_user_token1] = ACTIONS(3051), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3049), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3049), - [aux_sym_visual_host_key_token1] = ACTIONS(3049), - [aux_sym_xauth_location_token1] = ACTIONS(3049), + [ts_builtin_sym_end] = ACTIONS(1142), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1144), + [aux_sym_match_token1] = ACTIONS(1142), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1142), + [aux_sym_address_family_token1] = ACTIONS(1142), + [aux_sym_batch_mode_token1] = ACTIONS(1142), + [aux_sym_bind_address_token1] = ACTIONS(1142), + [aux_sym_bind_interface_token1] = ACTIONS(1142), + [aux_sym_canonical_domains_token1] = ACTIONS(1142), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1142), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1142), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1142), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1142), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1142), + [aux_sym_certificate_file_token1] = ACTIONS(1142), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1142), + [aux_sym_check_host_ip_token1] = ACTIONS(1142), + [aux_sym_ciphers_token1] = ACTIONS(1142), + [aux_sym_cipher_token1] = ACTIONS(1144), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1142), + [aux_sym_compression_token1] = ACTIONS(1142), + [aux_sym_connection_attempts_token1] = ACTIONS(1142), + [aux_sym_connect_timeout_token1] = ACTIONS(1142), + [aux_sym_control_master_token1] = ACTIONS(1142), + [aux_sym_control_path_token1] = ACTIONS(1142), + [aux_sym_control_persist_token1] = ACTIONS(1142), + [aux_sym_dynamic_forward_token1] = ACTIONS(1142), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1142), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1142), + [aux_sym_escape_char_token1] = ACTIONS(1142), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1142), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1142), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1142), + [aux_sym_forward_agent_token1] = ACTIONS(1142), + [aux_sym_forward_x11_token1] = ACTIONS(1144), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1142), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1142), + [aux_sym_gateway_ports_token1] = ACTIONS(1142), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1142), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1142), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1142), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1142), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1142), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1142), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1142), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1142), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1142), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1142), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1142), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1142), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1142), + [aux_sym_host_key_alias_token1] = ACTIONS(1142), + [aux_sym_hostname_token1] = ACTIONS(1142), + [aux_sym_identities_only_token1] = ACTIONS(1142), + [aux_sym_identity_agent_token1] = ACTIONS(1142), + [aux_sym_identity_file_token1] = ACTIONS(1142), + [aux_sym_ignore_unknown_token1] = ACTIONS(1142), + [aux_sym_include_token1] = ACTIONS(1142), + [aux_sym_ip_qos_token1] = ACTIONS(1142), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1142), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1142), + [aux_sym_kex_algorithms_token1] = ACTIONS(1142), + [aux_sym_known_hosts_command_token1] = ACTIONS(1142), + [aux_sym_local_command_token1] = ACTIONS(1142), + [aux_sym_local_forward_token1] = ACTIONS(1142), + [aux_sym_log_level_token1] = ACTIONS(1142), + [aux_sym_log_verbose_token1] = ACTIONS(1142), + [aux_sym_macs_token1] = ACTIONS(1142), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1142), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1142), + [aux_sym_password_authentication_token1] = ACTIONS(1142), + [aux_sym_permit_local_command_token1] = ACTIONS(1142), + [aux_sym_permit_remote_open_token1] = ACTIONS(1142), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1142), + [aux_sym_port_token1] = ACTIONS(1142), + [aux_sym_preferred_authentications_token1] = ACTIONS(1142), + [aux_sym_protocol_token1] = ACTIONS(1142), + [aux_sym_proxy_command_token1] = ACTIONS(1142), + [aux_sym_proxy_jump_token1] = ACTIONS(1142), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1142), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1142), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1142), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1142), + [aux_sym_rekey_limit_token1] = ACTIONS(1142), + [aux_sym_remote_command_token1] = ACTIONS(1142), + [aux_sym_remote_forward_token1] = ACTIONS(1142), + [aux_sym_request_tty_token1] = ACTIONS(1142), + [aux_sym_required_rsa_size_token1] = ACTIONS(1142), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1142), + [aux_sym_security_key_provider_token1] = ACTIONS(1142), + [aux_sym_send_env_token1] = ACTIONS(1142), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1142), + [aux_sym_server_alive_interval_token1] = ACTIONS(1142), + [aux_sym_session_type_token1] = ACTIONS(1142), + [aux_sym_set_env_token1] = ACTIONS(1142), + [aux_sym_stdin_null_token1] = ACTIONS(1142), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1142), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1142), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1142), + [aux_sym_syslog_facility_token1] = ACTIONS(1142), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1142), + [aux_sym_keep_alive_token1] = ACTIONS(1142), + [aux_sym_tunnel_token1] = ACTIONS(1144), + [aux_sym_tunnel_device_token1] = ACTIONS(1142), + [aux_sym_update_host_keys_token1] = ACTIONS(1142), + [aux_sym_use_keychain_token1] = ACTIONS(1142), + [aux_sym_use_roaming_token1] = ACTIONS(1142), + [aux_sym_user_token1] = ACTIONS(1144), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1142), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1142), + [aux_sym_visual_host_key_token1] = ACTIONS(1142), + [aux_sym_xauth_location_token1] = ACTIONS(1142), }, [466] = { - [ts_builtin_sym_end] = ACTIONS(3053), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3055), - [aux_sym_match_token1] = ACTIONS(3053), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3053), - [aux_sym_address_family_token1] = ACTIONS(3053), - [aux_sym_batch_mode_token1] = ACTIONS(3053), - [aux_sym_bind_address_token1] = ACTIONS(3053), - [aux_sym_bind_interface_token1] = ACTIONS(3053), - [aux_sym_canonical_domains_token1] = ACTIONS(3053), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3053), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3053), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3053), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3053), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3053), - [aux_sym_certificate_file_token1] = ACTIONS(3053), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3053), - [aux_sym_check_host_ip_token1] = ACTIONS(3053), - [aux_sym_ciphers_token1] = ACTIONS(3053), - [aux_sym_cipher_token1] = ACTIONS(3055), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3053), - [aux_sym_compression_token1] = ACTIONS(3053), - [aux_sym_connection_attempts_token1] = ACTIONS(3053), - [aux_sym_connect_timeout_token1] = ACTIONS(3053), - [aux_sym_control_master_token1] = ACTIONS(3053), - [aux_sym_control_path_token1] = ACTIONS(3053), - [aux_sym_control_persist_token1] = ACTIONS(3053), - [aux_sym_dynamic_forward_token1] = ACTIONS(3053), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3053), - [aux_sym_escape_char_token1] = ACTIONS(3053), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3053), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3053), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3053), - [aux_sym_forward_agent_token1] = ACTIONS(3053), - [aux_sym_forward_x11_token1] = ACTIONS(3055), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3053), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3053), - [aux_sym_gateway_ports_token1] = ACTIONS(3053), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3053), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3053), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3053), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3053), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3053), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3053), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3053), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3053), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3053), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3053), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3053), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3053), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3053), - [aux_sym_host_key_alias_token1] = ACTIONS(3053), - [aux_sym_hostname_token1] = ACTIONS(3053), - [aux_sym_identities_only_token1] = ACTIONS(3053), - [aux_sym_identity_agent_token1] = ACTIONS(3053), - [aux_sym_identity_file_token1] = ACTIONS(3053), - [aux_sym_ignore_unknown_token1] = ACTIONS(3053), - [aux_sym_include_token1] = ACTIONS(3053), - [aux_sym_ip_qos_token1] = ACTIONS(3053), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3053), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3053), - [aux_sym_kex_algorithms_token1] = ACTIONS(3053), - [aux_sym_known_hosts_command_token1] = ACTIONS(3053), - [aux_sym_local_command_token1] = ACTIONS(3053), - [aux_sym_local_forward_token1] = ACTIONS(3053), - [aux_sym_log_level_token1] = ACTIONS(3053), - [aux_sym_log_verbose_token1] = ACTIONS(3053), - [aux_sym_macs_token1] = ACTIONS(3053), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3053), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3053), - [aux_sym_password_authentication_token1] = ACTIONS(3053), - [aux_sym_permit_local_command_token1] = ACTIONS(3053), - [aux_sym_permit_remote_open_token1] = ACTIONS(3053), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3053), - [aux_sym_port_token1] = ACTIONS(3053), - [aux_sym_preferred_authentications_token1] = ACTIONS(3053), - [aux_sym_protocol_token1] = ACTIONS(3053), - [aux_sym_proxy_command_token1] = ACTIONS(3053), - [aux_sym_proxy_jump_token1] = ACTIONS(3053), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3053), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3053), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3053), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3053), - [aux_sym_rekey_limit_token1] = ACTIONS(3053), - [aux_sym_remote_command_token1] = ACTIONS(3053), - [aux_sym_remote_forward_token1] = ACTIONS(3053), - [aux_sym_request_tty_token1] = ACTIONS(3053), - [aux_sym_required_rsa_size_token1] = ACTIONS(3053), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3053), - [aux_sym_security_key_provider_token1] = ACTIONS(3053), - [aux_sym_send_env_token1] = ACTIONS(3053), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3053), - [aux_sym_server_alive_interval_token1] = ACTIONS(3053), - [aux_sym_session_type_token1] = ACTIONS(3053), - [aux_sym_set_env_token1] = ACTIONS(3053), - [aux_sym_stdin_null_token1] = ACTIONS(3053), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3053), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3053), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3053), - [aux_sym_syslog_facility_token1] = ACTIONS(3053), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3053), - [aux_sym_keep_alive_token1] = ACTIONS(3053), - [aux_sym_tunnel_token1] = ACTIONS(3055), - [aux_sym_tunnel_device_token1] = ACTIONS(3053), - [aux_sym_update_host_keys_token1] = ACTIONS(3053), - [aux_sym_use_keychain_token1] = ACTIONS(3053), - [aux_sym_use_roaming_token1] = ACTIONS(3053), - [aux_sym_user_token1] = ACTIONS(3055), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3053), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3053), - [aux_sym_visual_host_key_token1] = ACTIONS(3053), - [aux_sym_xauth_location_token1] = ACTIONS(3053), + [ts_builtin_sym_end] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3050), + [aux_sym_match_token1] = ACTIONS(3048), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3048), + [aux_sym_address_family_token1] = ACTIONS(3048), + [aux_sym_batch_mode_token1] = ACTIONS(3048), + [aux_sym_bind_address_token1] = ACTIONS(3048), + [aux_sym_bind_interface_token1] = ACTIONS(3048), + [aux_sym_canonical_domains_token1] = ACTIONS(3048), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3048), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3048), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3048), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3048), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3048), + [aux_sym_certificate_file_token1] = ACTIONS(3048), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3048), + [aux_sym_check_host_ip_token1] = ACTIONS(3048), + [aux_sym_ciphers_token1] = ACTIONS(3048), + [aux_sym_cipher_token1] = ACTIONS(3050), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3048), + [aux_sym_compression_token1] = ACTIONS(3048), + [aux_sym_connection_attempts_token1] = ACTIONS(3048), + [aux_sym_connect_timeout_token1] = ACTIONS(3048), + [aux_sym_control_master_token1] = ACTIONS(3048), + [aux_sym_control_path_token1] = ACTIONS(3048), + [aux_sym_control_persist_token1] = ACTIONS(3048), + [aux_sym_dynamic_forward_token1] = ACTIONS(3048), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3048), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3048), + [aux_sym_escape_char_token1] = ACTIONS(3048), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3048), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3048), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3048), + [aux_sym_forward_agent_token1] = ACTIONS(3048), + [aux_sym_forward_x11_token1] = ACTIONS(3050), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3048), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3048), + [aux_sym_gateway_ports_token1] = ACTIONS(3048), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3048), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3048), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3048), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3048), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3048), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3048), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3048), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3048), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3048), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3048), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3048), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3048), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3048), + [aux_sym_host_key_alias_token1] = ACTIONS(3048), + [aux_sym_hostname_token1] = ACTIONS(3048), + [aux_sym_identities_only_token1] = ACTIONS(3048), + [aux_sym_identity_agent_token1] = ACTIONS(3048), + [aux_sym_identity_file_token1] = ACTIONS(3048), + [aux_sym_ignore_unknown_token1] = ACTIONS(3048), + [aux_sym_include_token1] = ACTIONS(3048), + [aux_sym_ip_qos_token1] = ACTIONS(3048), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3048), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3048), + [aux_sym_kex_algorithms_token1] = ACTIONS(3048), + [aux_sym_known_hosts_command_token1] = ACTIONS(3048), + [aux_sym_local_command_token1] = ACTIONS(3048), + [aux_sym_local_forward_token1] = ACTIONS(3048), + [aux_sym_log_level_token1] = ACTIONS(3048), + [aux_sym_log_verbose_token1] = ACTIONS(3048), + [aux_sym_macs_token1] = ACTIONS(3048), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3048), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3048), + [aux_sym_password_authentication_token1] = ACTIONS(3048), + [aux_sym_permit_local_command_token1] = ACTIONS(3048), + [aux_sym_permit_remote_open_token1] = ACTIONS(3048), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3048), + [aux_sym_port_token1] = ACTIONS(3048), + [aux_sym_preferred_authentications_token1] = ACTIONS(3048), + [aux_sym_protocol_token1] = ACTIONS(3048), + [aux_sym_proxy_command_token1] = ACTIONS(3048), + [aux_sym_proxy_jump_token1] = ACTIONS(3048), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3048), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3048), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3048), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3048), + [aux_sym_rekey_limit_token1] = ACTIONS(3048), + [aux_sym_remote_command_token1] = ACTIONS(3048), + [aux_sym_remote_forward_token1] = ACTIONS(3048), + [aux_sym_request_tty_token1] = ACTIONS(3048), + [aux_sym_required_rsa_size_token1] = ACTIONS(3048), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3048), + [aux_sym_security_key_provider_token1] = ACTIONS(3048), + [aux_sym_send_env_token1] = ACTIONS(3048), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3048), + [aux_sym_server_alive_interval_token1] = ACTIONS(3048), + [aux_sym_session_type_token1] = ACTIONS(3048), + [aux_sym_set_env_token1] = ACTIONS(3048), + [aux_sym_stdin_null_token1] = ACTIONS(3048), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3048), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3048), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3048), + [aux_sym_syslog_facility_token1] = ACTIONS(3048), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3048), + [aux_sym_keep_alive_token1] = ACTIONS(3048), + [aux_sym_tunnel_token1] = ACTIONS(3050), + [aux_sym_tunnel_device_token1] = ACTIONS(3048), + [aux_sym_update_host_keys_token1] = ACTIONS(3048), + [aux_sym_use_keychain_token1] = ACTIONS(3048), + [aux_sym_use_roaming_token1] = ACTIONS(3048), + [aux_sym_user_token1] = ACTIONS(3050), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3048), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3048), + [aux_sym_visual_host_key_token1] = ACTIONS(3048), + [aux_sym_xauth_location_token1] = ACTIONS(3048), }, [467] = { - [ts_builtin_sym_end] = ACTIONS(3057), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3059), - [aux_sym_match_token1] = ACTIONS(3057), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3057), - [aux_sym_address_family_token1] = ACTIONS(3057), - [aux_sym_batch_mode_token1] = ACTIONS(3057), - [aux_sym_bind_address_token1] = ACTIONS(3057), - [aux_sym_bind_interface_token1] = ACTIONS(3057), - [aux_sym_canonical_domains_token1] = ACTIONS(3057), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3057), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3057), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3057), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3057), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3057), - [aux_sym_certificate_file_token1] = ACTIONS(3057), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3057), - [aux_sym_check_host_ip_token1] = ACTIONS(3057), - [aux_sym_ciphers_token1] = ACTIONS(3057), - [aux_sym_cipher_token1] = ACTIONS(3059), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3057), - [aux_sym_compression_token1] = ACTIONS(3057), - [aux_sym_connection_attempts_token1] = ACTIONS(3057), - [aux_sym_connect_timeout_token1] = ACTIONS(3057), - [aux_sym_control_master_token1] = ACTIONS(3057), - [aux_sym_control_path_token1] = ACTIONS(3057), - [aux_sym_control_persist_token1] = ACTIONS(3057), - [aux_sym_dynamic_forward_token1] = ACTIONS(3057), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3057), - [aux_sym_escape_char_token1] = ACTIONS(3057), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3057), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3057), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3057), - [aux_sym_forward_agent_token1] = ACTIONS(3057), - [aux_sym_forward_x11_token1] = ACTIONS(3059), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3057), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3057), - [aux_sym_gateway_ports_token1] = ACTIONS(3057), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3057), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3057), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3057), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3057), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3057), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3057), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3057), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3057), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3057), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3057), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3057), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3057), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3057), - [aux_sym_host_key_alias_token1] = ACTIONS(3057), - [aux_sym_hostname_token1] = ACTIONS(3057), - [aux_sym_identities_only_token1] = ACTIONS(3057), - [aux_sym_identity_agent_token1] = ACTIONS(3057), - [aux_sym_identity_file_token1] = ACTIONS(3057), - [aux_sym_ignore_unknown_token1] = ACTIONS(3057), - [aux_sym_include_token1] = ACTIONS(3057), - [aux_sym_ip_qos_token1] = ACTIONS(3057), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3057), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3057), - [aux_sym_kex_algorithms_token1] = ACTIONS(3057), - [aux_sym_known_hosts_command_token1] = ACTIONS(3057), - [aux_sym_local_command_token1] = ACTIONS(3057), - [aux_sym_local_forward_token1] = ACTIONS(3057), - [aux_sym_log_level_token1] = ACTIONS(3057), - [aux_sym_log_verbose_token1] = ACTIONS(3057), - [aux_sym_macs_token1] = ACTIONS(3057), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3057), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3057), - [aux_sym_password_authentication_token1] = ACTIONS(3057), - [aux_sym_permit_local_command_token1] = ACTIONS(3057), - [aux_sym_permit_remote_open_token1] = ACTIONS(3057), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3057), - [aux_sym_port_token1] = ACTIONS(3057), - [aux_sym_preferred_authentications_token1] = ACTIONS(3057), - [aux_sym_protocol_token1] = ACTIONS(3057), - [aux_sym_proxy_command_token1] = ACTIONS(3057), - [aux_sym_proxy_jump_token1] = ACTIONS(3057), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3057), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3057), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3057), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3057), - [aux_sym_rekey_limit_token1] = ACTIONS(3057), - [aux_sym_remote_command_token1] = ACTIONS(3057), - [aux_sym_remote_forward_token1] = ACTIONS(3057), - [aux_sym_request_tty_token1] = ACTIONS(3057), - [aux_sym_required_rsa_size_token1] = ACTIONS(3057), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3057), - [aux_sym_security_key_provider_token1] = ACTIONS(3057), - [aux_sym_send_env_token1] = ACTIONS(3057), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3057), - [aux_sym_server_alive_interval_token1] = ACTIONS(3057), - [aux_sym_session_type_token1] = ACTIONS(3057), - [aux_sym_set_env_token1] = ACTIONS(3057), - [aux_sym_stdin_null_token1] = ACTIONS(3057), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3057), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3057), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3057), - [aux_sym_syslog_facility_token1] = ACTIONS(3057), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3057), - [aux_sym_keep_alive_token1] = ACTIONS(3057), - [aux_sym_tunnel_token1] = ACTIONS(3059), - [aux_sym_tunnel_device_token1] = ACTIONS(3057), - [aux_sym_update_host_keys_token1] = ACTIONS(3057), - [aux_sym_use_keychain_token1] = ACTIONS(3057), - [aux_sym_use_roaming_token1] = ACTIONS(3057), - [aux_sym_user_token1] = ACTIONS(3059), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3057), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3057), - [aux_sym_visual_host_key_token1] = ACTIONS(3057), - [aux_sym_xauth_location_token1] = ACTIONS(3057), + [ts_builtin_sym_end] = ACTIONS(3052), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3054), + [aux_sym_match_token1] = ACTIONS(3052), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3052), + [aux_sym_address_family_token1] = ACTIONS(3052), + [aux_sym_batch_mode_token1] = ACTIONS(3052), + [aux_sym_bind_address_token1] = ACTIONS(3052), + [aux_sym_bind_interface_token1] = ACTIONS(3052), + [aux_sym_canonical_domains_token1] = ACTIONS(3052), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3052), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3052), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3052), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3052), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3052), + [aux_sym_certificate_file_token1] = ACTIONS(3052), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3052), + [aux_sym_check_host_ip_token1] = ACTIONS(3052), + [aux_sym_ciphers_token1] = ACTIONS(3052), + [aux_sym_cipher_token1] = ACTIONS(3054), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3052), + [aux_sym_compression_token1] = ACTIONS(3052), + [aux_sym_connection_attempts_token1] = ACTIONS(3052), + [aux_sym_connect_timeout_token1] = ACTIONS(3052), + [aux_sym_control_master_token1] = ACTIONS(3052), + [aux_sym_control_path_token1] = ACTIONS(3052), + [aux_sym_control_persist_token1] = ACTIONS(3052), + [aux_sym_dynamic_forward_token1] = ACTIONS(3052), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3052), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3052), + [aux_sym_escape_char_token1] = ACTIONS(3052), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3052), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3052), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3052), + [aux_sym_forward_agent_token1] = ACTIONS(3052), + [aux_sym_forward_x11_token1] = ACTIONS(3054), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3052), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3052), + [aux_sym_gateway_ports_token1] = ACTIONS(3052), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3052), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3052), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3052), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3052), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3052), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3052), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3052), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3052), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3052), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3052), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3052), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3052), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3052), + [aux_sym_host_key_alias_token1] = ACTIONS(3052), + [aux_sym_hostname_token1] = ACTIONS(3052), + [aux_sym_identities_only_token1] = ACTIONS(3052), + [aux_sym_identity_agent_token1] = ACTIONS(3052), + [aux_sym_identity_file_token1] = ACTIONS(3052), + [aux_sym_ignore_unknown_token1] = ACTIONS(3052), + [aux_sym_include_token1] = ACTIONS(3052), + [aux_sym_ip_qos_token1] = ACTIONS(3052), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3052), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3052), + [aux_sym_kex_algorithms_token1] = ACTIONS(3052), + [aux_sym_known_hosts_command_token1] = ACTIONS(3052), + [aux_sym_local_command_token1] = ACTIONS(3052), + [aux_sym_local_forward_token1] = ACTIONS(3052), + [aux_sym_log_level_token1] = ACTIONS(3052), + [aux_sym_log_verbose_token1] = ACTIONS(3052), + [aux_sym_macs_token1] = ACTIONS(3052), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3052), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3052), + [aux_sym_password_authentication_token1] = ACTIONS(3052), + [aux_sym_permit_local_command_token1] = ACTIONS(3052), + [aux_sym_permit_remote_open_token1] = ACTIONS(3052), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3052), + [aux_sym_port_token1] = ACTIONS(3052), + [aux_sym_preferred_authentications_token1] = ACTIONS(3052), + [aux_sym_protocol_token1] = ACTIONS(3052), + [aux_sym_proxy_command_token1] = ACTIONS(3052), + [aux_sym_proxy_jump_token1] = ACTIONS(3052), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3052), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3052), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3052), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3052), + [aux_sym_rekey_limit_token1] = ACTIONS(3052), + [aux_sym_remote_command_token1] = ACTIONS(3052), + [aux_sym_remote_forward_token1] = ACTIONS(3052), + [aux_sym_request_tty_token1] = ACTIONS(3052), + [aux_sym_required_rsa_size_token1] = ACTIONS(3052), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3052), + [aux_sym_security_key_provider_token1] = ACTIONS(3052), + [aux_sym_send_env_token1] = ACTIONS(3052), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3052), + [aux_sym_server_alive_interval_token1] = ACTIONS(3052), + [aux_sym_session_type_token1] = ACTIONS(3052), + [aux_sym_set_env_token1] = ACTIONS(3052), + [aux_sym_stdin_null_token1] = ACTIONS(3052), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3052), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3052), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3052), + [aux_sym_syslog_facility_token1] = ACTIONS(3052), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3052), + [aux_sym_keep_alive_token1] = ACTIONS(3052), + [aux_sym_tunnel_token1] = ACTIONS(3054), + [aux_sym_tunnel_device_token1] = ACTIONS(3052), + [aux_sym_update_host_keys_token1] = ACTIONS(3052), + [aux_sym_use_keychain_token1] = ACTIONS(3052), + [aux_sym_use_roaming_token1] = ACTIONS(3052), + [aux_sym_user_token1] = ACTIONS(3054), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3052), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3052), + [aux_sym_visual_host_key_token1] = ACTIONS(3052), + [aux_sym_xauth_location_token1] = ACTIONS(3052), }, [468] = { - [ts_builtin_sym_end] = ACTIONS(3061), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3063), - [aux_sym_match_token1] = ACTIONS(3061), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3061), - [aux_sym_address_family_token1] = ACTIONS(3061), - [aux_sym_batch_mode_token1] = ACTIONS(3061), - [aux_sym_bind_address_token1] = ACTIONS(3061), - [aux_sym_bind_interface_token1] = ACTIONS(3061), - [aux_sym_canonical_domains_token1] = ACTIONS(3061), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3061), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3061), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3061), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3061), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3061), - [aux_sym_certificate_file_token1] = ACTIONS(3061), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3061), - [aux_sym_check_host_ip_token1] = ACTIONS(3061), - [aux_sym_ciphers_token1] = ACTIONS(3061), - [aux_sym_cipher_token1] = ACTIONS(3063), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3061), - [aux_sym_compression_token1] = ACTIONS(3061), - [aux_sym_connection_attempts_token1] = ACTIONS(3061), - [aux_sym_connect_timeout_token1] = ACTIONS(3061), - [aux_sym_control_master_token1] = ACTIONS(3061), - [aux_sym_control_path_token1] = ACTIONS(3061), - [aux_sym_control_persist_token1] = ACTIONS(3061), - [aux_sym_dynamic_forward_token1] = ACTIONS(3061), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3061), - [aux_sym_escape_char_token1] = ACTIONS(3061), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3061), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3061), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3061), - [aux_sym_forward_agent_token1] = ACTIONS(3061), - [aux_sym_forward_x11_token1] = ACTIONS(3063), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3061), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3061), - [aux_sym_gateway_ports_token1] = ACTIONS(3061), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3061), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3061), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3061), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3061), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3061), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3061), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3061), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3061), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3061), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3061), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3061), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3061), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3061), - [aux_sym_host_key_alias_token1] = ACTIONS(3061), - [aux_sym_hostname_token1] = ACTIONS(3061), - [aux_sym_identities_only_token1] = ACTIONS(3061), - [aux_sym_identity_agent_token1] = ACTIONS(3061), - [aux_sym_identity_file_token1] = ACTIONS(3061), - [aux_sym_ignore_unknown_token1] = ACTIONS(3061), - [aux_sym_include_token1] = ACTIONS(3061), - [aux_sym_ip_qos_token1] = ACTIONS(3061), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3061), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3061), - [aux_sym_kex_algorithms_token1] = ACTIONS(3061), - [aux_sym_known_hosts_command_token1] = ACTIONS(3061), - [aux_sym_local_command_token1] = ACTIONS(3061), - [aux_sym_local_forward_token1] = ACTIONS(3061), - [aux_sym_log_level_token1] = ACTIONS(3061), - [aux_sym_log_verbose_token1] = ACTIONS(3061), - [aux_sym_macs_token1] = ACTIONS(3061), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3061), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3061), - [aux_sym_password_authentication_token1] = ACTIONS(3061), - [aux_sym_permit_local_command_token1] = ACTIONS(3061), - [aux_sym_permit_remote_open_token1] = ACTIONS(3061), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3061), - [aux_sym_port_token1] = ACTIONS(3061), - [aux_sym_preferred_authentications_token1] = ACTIONS(3061), - [aux_sym_protocol_token1] = ACTIONS(3061), - [aux_sym_proxy_command_token1] = ACTIONS(3061), - [aux_sym_proxy_jump_token1] = ACTIONS(3061), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3061), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3061), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3061), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3061), - [aux_sym_rekey_limit_token1] = ACTIONS(3061), - [aux_sym_remote_command_token1] = ACTIONS(3061), - [aux_sym_remote_forward_token1] = ACTIONS(3061), - [aux_sym_request_tty_token1] = ACTIONS(3061), - [aux_sym_required_rsa_size_token1] = ACTIONS(3061), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3061), - [aux_sym_security_key_provider_token1] = ACTIONS(3061), - [aux_sym_send_env_token1] = ACTIONS(3061), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3061), - [aux_sym_server_alive_interval_token1] = ACTIONS(3061), - [aux_sym_session_type_token1] = ACTIONS(3061), - [aux_sym_set_env_token1] = ACTIONS(3061), - [aux_sym_stdin_null_token1] = ACTIONS(3061), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3061), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3061), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3061), - [aux_sym_syslog_facility_token1] = ACTIONS(3061), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3061), - [aux_sym_keep_alive_token1] = ACTIONS(3061), - [aux_sym_tunnel_token1] = ACTIONS(3063), - [aux_sym_tunnel_device_token1] = ACTIONS(3061), - [aux_sym_update_host_keys_token1] = ACTIONS(3061), - [aux_sym_use_keychain_token1] = ACTIONS(3061), - [aux_sym_use_roaming_token1] = ACTIONS(3061), - [aux_sym_user_token1] = ACTIONS(3063), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3061), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3061), - [aux_sym_visual_host_key_token1] = ACTIONS(3061), - [aux_sym_xauth_location_token1] = ACTIONS(3061), + [ts_builtin_sym_end] = ACTIONS(3056), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3058), + [aux_sym_match_token1] = ACTIONS(3056), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3056), + [aux_sym_address_family_token1] = ACTIONS(3056), + [aux_sym_batch_mode_token1] = ACTIONS(3056), + [aux_sym_bind_address_token1] = ACTIONS(3056), + [aux_sym_bind_interface_token1] = ACTIONS(3056), + [aux_sym_canonical_domains_token1] = ACTIONS(3056), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3056), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3056), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3056), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3056), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3056), + [aux_sym_certificate_file_token1] = ACTIONS(3056), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3056), + [aux_sym_check_host_ip_token1] = ACTIONS(3056), + [aux_sym_ciphers_token1] = ACTIONS(3056), + [aux_sym_cipher_token1] = ACTIONS(3058), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3056), + [aux_sym_compression_token1] = ACTIONS(3056), + [aux_sym_connection_attempts_token1] = ACTIONS(3056), + [aux_sym_connect_timeout_token1] = ACTIONS(3056), + [aux_sym_control_master_token1] = ACTIONS(3056), + [aux_sym_control_path_token1] = ACTIONS(3056), + [aux_sym_control_persist_token1] = ACTIONS(3056), + [aux_sym_dynamic_forward_token1] = ACTIONS(3056), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3056), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3056), + [aux_sym_escape_char_token1] = ACTIONS(3056), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3056), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3056), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3056), + [aux_sym_forward_agent_token1] = ACTIONS(3056), + [aux_sym_forward_x11_token1] = ACTIONS(3058), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3056), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3056), + [aux_sym_gateway_ports_token1] = ACTIONS(3056), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3056), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3056), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3056), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3056), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3056), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3056), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3056), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3056), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3056), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3056), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3056), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3056), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3056), + [aux_sym_host_key_alias_token1] = ACTIONS(3056), + [aux_sym_hostname_token1] = ACTIONS(3056), + [aux_sym_identities_only_token1] = ACTIONS(3056), + [aux_sym_identity_agent_token1] = ACTIONS(3056), + [aux_sym_identity_file_token1] = ACTIONS(3056), + [aux_sym_ignore_unknown_token1] = ACTIONS(3056), + [aux_sym_include_token1] = ACTIONS(3056), + [aux_sym_ip_qos_token1] = ACTIONS(3056), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3056), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3056), + [aux_sym_kex_algorithms_token1] = ACTIONS(3056), + [aux_sym_known_hosts_command_token1] = ACTIONS(3056), + [aux_sym_local_command_token1] = ACTIONS(3056), + [aux_sym_local_forward_token1] = ACTIONS(3056), + [aux_sym_log_level_token1] = ACTIONS(3056), + [aux_sym_log_verbose_token1] = ACTIONS(3056), + [aux_sym_macs_token1] = ACTIONS(3056), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3056), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3056), + [aux_sym_password_authentication_token1] = ACTIONS(3056), + [aux_sym_permit_local_command_token1] = ACTIONS(3056), + [aux_sym_permit_remote_open_token1] = ACTIONS(3056), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3056), + [aux_sym_port_token1] = ACTIONS(3056), + [aux_sym_preferred_authentications_token1] = ACTIONS(3056), + [aux_sym_protocol_token1] = ACTIONS(3056), + [aux_sym_proxy_command_token1] = ACTIONS(3056), + [aux_sym_proxy_jump_token1] = ACTIONS(3056), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3056), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3056), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3056), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3056), + [aux_sym_rekey_limit_token1] = ACTIONS(3056), + [aux_sym_remote_command_token1] = ACTIONS(3056), + [aux_sym_remote_forward_token1] = ACTIONS(3056), + [aux_sym_request_tty_token1] = ACTIONS(3056), + [aux_sym_required_rsa_size_token1] = ACTIONS(3056), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3056), + [aux_sym_security_key_provider_token1] = ACTIONS(3056), + [aux_sym_send_env_token1] = ACTIONS(3056), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3056), + [aux_sym_server_alive_interval_token1] = ACTIONS(3056), + [aux_sym_session_type_token1] = ACTIONS(3056), + [aux_sym_set_env_token1] = ACTIONS(3056), + [aux_sym_stdin_null_token1] = ACTIONS(3056), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3056), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3056), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3056), + [aux_sym_syslog_facility_token1] = ACTIONS(3056), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3056), + [aux_sym_keep_alive_token1] = ACTIONS(3056), + [aux_sym_tunnel_token1] = ACTIONS(3058), + [aux_sym_tunnel_device_token1] = ACTIONS(3056), + [aux_sym_update_host_keys_token1] = ACTIONS(3056), + [aux_sym_use_keychain_token1] = ACTIONS(3056), + [aux_sym_use_roaming_token1] = ACTIONS(3056), + [aux_sym_user_token1] = ACTIONS(3058), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3056), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3056), + [aux_sym_visual_host_key_token1] = ACTIONS(3056), + [aux_sym_xauth_location_token1] = ACTIONS(3056), }, [469] = { - [ts_builtin_sym_end] = ACTIONS(3065), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3067), - [aux_sym_match_token1] = ACTIONS(3065), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3065), - [aux_sym_address_family_token1] = ACTIONS(3065), - [aux_sym_batch_mode_token1] = ACTIONS(3065), - [aux_sym_bind_address_token1] = ACTIONS(3065), - [aux_sym_bind_interface_token1] = ACTIONS(3065), - [aux_sym_canonical_domains_token1] = ACTIONS(3065), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3065), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3065), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3065), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3065), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3065), - [aux_sym_certificate_file_token1] = ACTIONS(3065), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3065), - [aux_sym_check_host_ip_token1] = ACTIONS(3065), - [aux_sym_ciphers_token1] = ACTIONS(3065), - [aux_sym_cipher_token1] = ACTIONS(3067), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3065), - [aux_sym_compression_token1] = ACTIONS(3065), - [aux_sym_connection_attempts_token1] = ACTIONS(3065), - [aux_sym_connect_timeout_token1] = ACTIONS(3065), - [aux_sym_control_master_token1] = ACTIONS(3065), - [aux_sym_control_path_token1] = ACTIONS(3065), - [aux_sym_control_persist_token1] = ACTIONS(3065), - [aux_sym_dynamic_forward_token1] = ACTIONS(3065), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3065), - [aux_sym_escape_char_token1] = ACTIONS(3065), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3065), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3065), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3065), - [aux_sym_forward_agent_token1] = ACTIONS(3065), - [aux_sym_forward_x11_token1] = ACTIONS(3067), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3065), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3065), - [aux_sym_gateway_ports_token1] = ACTIONS(3065), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3065), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3065), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3065), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3065), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3065), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3065), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3065), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3065), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3065), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3065), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3065), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3065), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3065), - [aux_sym_host_key_alias_token1] = ACTIONS(3065), - [aux_sym_hostname_token1] = ACTIONS(3065), - [aux_sym_identities_only_token1] = ACTIONS(3065), - [aux_sym_identity_agent_token1] = ACTIONS(3065), - [aux_sym_identity_file_token1] = ACTIONS(3065), - [aux_sym_ignore_unknown_token1] = ACTIONS(3065), - [aux_sym_include_token1] = ACTIONS(3065), - [aux_sym_ip_qos_token1] = ACTIONS(3065), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3065), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3065), - [aux_sym_kex_algorithms_token1] = ACTIONS(3065), - [aux_sym_known_hosts_command_token1] = ACTIONS(3065), - [aux_sym_local_command_token1] = ACTIONS(3065), - [aux_sym_local_forward_token1] = ACTIONS(3065), - [aux_sym_log_level_token1] = ACTIONS(3065), - [aux_sym_log_verbose_token1] = ACTIONS(3065), - [aux_sym_macs_token1] = ACTIONS(3065), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3065), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3065), - [aux_sym_password_authentication_token1] = ACTIONS(3065), - [aux_sym_permit_local_command_token1] = ACTIONS(3065), - [aux_sym_permit_remote_open_token1] = ACTIONS(3065), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3065), - [aux_sym_port_token1] = ACTIONS(3065), - [aux_sym_preferred_authentications_token1] = ACTIONS(3065), - [aux_sym_protocol_token1] = ACTIONS(3065), - [aux_sym_proxy_command_token1] = ACTIONS(3065), - [aux_sym_proxy_jump_token1] = ACTIONS(3065), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3065), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3065), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3065), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3065), - [aux_sym_rekey_limit_token1] = ACTIONS(3065), - [aux_sym_remote_command_token1] = ACTIONS(3065), - [aux_sym_remote_forward_token1] = ACTIONS(3065), - [aux_sym_request_tty_token1] = ACTIONS(3065), - [aux_sym_required_rsa_size_token1] = ACTIONS(3065), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3065), - [aux_sym_security_key_provider_token1] = ACTIONS(3065), - [aux_sym_send_env_token1] = ACTIONS(3065), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3065), - [aux_sym_server_alive_interval_token1] = ACTIONS(3065), - [aux_sym_session_type_token1] = ACTIONS(3065), - [aux_sym_set_env_token1] = ACTIONS(3065), - [aux_sym_stdin_null_token1] = ACTIONS(3065), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3065), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3065), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3065), - [aux_sym_syslog_facility_token1] = ACTIONS(3065), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3065), - [aux_sym_keep_alive_token1] = ACTIONS(3065), - [aux_sym_tunnel_token1] = ACTIONS(3067), - [aux_sym_tunnel_device_token1] = ACTIONS(3065), - [aux_sym_update_host_keys_token1] = ACTIONS(3065), - [aux_sym_use_keychain_token1] = ACTIONS(3065), - [aux_sym_use_roaming_token1] = ACTIONS(3065), - [aux_sym_user_token1] = ACTIONS(3067), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3065), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3065), - [aux_sym_visual_host_key_token1] = ACTIONS(3065), - [aux_sym_xauth_location_token1] = ACTIONS(3065), + [ts_builtin_sym_end] = ACTIONS(3060), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3062), + [aux_sym_match_token1] = ACTIONS(3060), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3060), + [aux_sym_address_family_token1] = ACTIONS(3060), + [aux_sym_batch_mode_token1] = ACTIONS(3060), + [aux_sym_bind_address_token1] = ACTIONS(3060), + [aux_sym_bind_interface_token1] = ACTIONS(3060), + [aux_sym_canonical_domains_token1] = ACTIONS(3060), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3060), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3060), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3060), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3060), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3060), + [aux_sym_certificate_file_token1] = ACTIONS(3060), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3060), + [aux_sym_check_host_ip_token1] = ACTIONS(3060), + [aux_sym_ciphers_token1] = ACTIONS(3060), + [aux_sym_cipher_token1] = ACTIONS(3062), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3060), + [aux_sym_compression_token1] = ACTIONS(3060), + [aux_sym_connection_attempts_token1] = ACTIONS(3060), + [aux_sym_connect_timeout_token1] = ACTIONS(3060), + [aux_sym_control_master_token1] = ACTIONS(3060), + [aux_sym_control_path_token1] = ACTIONS(3060), + [aux_sym_control_persist_token1] = ACTIONS(3060), + [aux_sym_dynamic_forward_token1] = ACTIONS(3060), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3060), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3060), + [aux_sym_escape_char_token1] = ACTIONS(3060), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3060), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3060), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3060), + [aux_sym_forward_agent_token1] = ACTIONS(3060), + [aux_sym_forward_x11_token1] = ACTIONS(3062), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3060), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3060), + [aux_sym_gateway_ports_token1] = ACTIONS(3060), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3060), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3060), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3060), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3060), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3060), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3060), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3060), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3060), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3060), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3060), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3060), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3060), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3060), + [aux_sym_host_key_alias_token1] = ACTIONS(3060), + [aux_sym_hostname_token1] = ACTIONS(3060), + [aux_sym_identities_only_token1] = ACTIONS(3060), + [aux_sym_identity_agent_token1] = ACTIONS(3060), + [aux_sym_identity_file_token1] = ACTIONS(3060), + [aux_sym_ignore_unknown_token1] = ACTIONS(3060), + [aux_sym_include_token1] = ACTIONS(3060), + [aux_sym_ip_qos_token1] = ACTIONS(3060), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3060), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3060), + [aux_sym_kex_algorithms_token1] = ACTIONS(3060), + [aux_sym_known_hosts_command_token1] = ACTIONS(3060), + [aux_sym_local_command_token1] = ACTIONS(3060), + [aux_sym_local_forward_token1] = ACTIONS(3060), + [aux_sym_log_level_token1] = ACTIONS(3060), + [aux_sym_log_verbose_token1] = ACTIONS(3060), + [aux_sym_macs_token1] = ACTIONS(3060), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3060), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3060), + [aux_sym_password_authentication_token1] = ACTIONS(3060), + [aux_sym_permit_local_command_token1] = ACTIONS(3060), + [aux_sym_permit_remote_open_token1] = ACTIONS(3060), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3060), + [aux_sym_port_token1] = ACTIONS(3060), + [aux_sym_preferred_authentications_token1] = ACTIONS(3060), + [aux_sym_protocol_token1] = ACTIONS(3060), + [aux_sym_proxy_command_token1] = ACTIONS(3060), + [aux_sym_proxy_jump_token1] = ACTIONS(3060), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3060), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3060), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3060), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3060), + [aux_sym_rekey_limit_token1] = ACTIONS(3060), + [aux_sym_remote_command_token1] = ACTIONS(3060), + [aux_sym_remote_forward_token1] = ACTIONS(3060), + [aux_sym_request_tty_token1] = ACTIONS(3060), + [aux_sym_required_rsa_size_token1] = ACTIONS(3060), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3060), + [aux_sym_security_key_provider_token1] = ACTIONS(3060), + [aux_sym_send_env_token1] = ACTIONS(3060), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3060), + [aux_sym_server_alive_interval_token1] = ACTIONS(3060), + [aux_sym_session_type_token1] = ACTIONS(3060), + [aux_sym_set_env_token1] = ACTIONS(3060), + [aux_sym_stdin_null_token1] = ACTIONS(3060), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3060), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3060), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3060), + [aux_sym_syslog_facility_token1] = ACTIONS(3060), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3060), + [aux_sym_keep_alive_token1] = ACTIONS(3060), + [aux_sym_tunnel_token1] = ACTIONS(3062), + [aux_sym_tunnel_device_token1] = ACTIONS(3060), + [aux_sym_update_host_keys_token1] = ACTIONS(3060), + [aux_sym_use_keychain_token1] = ACTIONS(3060), + [aux_sym_use_roaming_token1] = ACTIONS(3060), + [aux_sym_user_token1] = ACTIONS(3062), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3060), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3060), + [aux_sym_visual_host_key_token1] = ACTIONS(3060), + [aux_sym_xauth_location_token1] = ACTIONS(3060), }, [470] = { - [ts_builtin_sym_end] = ACTIONS(3069), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3071), - [aux_sym_match_token1] = ACTIONS(3069), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3069), - [aux_sym_address_family_token1] = ACTIONS(3069), - [aux_sym_batch_mode_token1] = ACTIONS(3069), - [aux_sym_bind_address_token1] = ACTIONS(3069), - [aux_sym_bind_interface_token1] = ACTIONS(3069), - [aux_sym_canonical_domains_token1] = ACTIONS(3069), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3069), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3069), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3069), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3069), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3069), - [aux_sym_certificate_file_token1] = ACTIONS(3069), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3069), - [aux_sym_check_host_ip_token1] = ACTIONS(3069), - [aux_sym_ciphers_token1] = ACTIONS(3069), - [aux_sym_cipher_token1] = ACTIONS(3071), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3069), - [aux_sym_compression_token1] = ACTIONS(3069), - [aux_sym_connection_attempts_token1] = ACTIONS(3069), - [aux_sym_connect_timeout_token1] = ACTIONS(3069), - [aux_sym_control_master_token1] = ACTIONS(3069), - [aux_sym_control_path_token1] = ACTIONS(3069), - [aux_sym_control_persist_token1] = ACTIONS(3069), - [aux_sym_dynamic_forward_token1] = ACTIONS(3069), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3069), - [aux_sym_escape_char_token1] = ACTIONS(3069), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3069), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3069), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3069), - [aux_sym_forward_agent_token1] = ACTIONS(3069), - [aux_sym_forward_x11_token1] = ACTIONS(3071), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3069), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3069), - [aux_sym_gateway_ports_token1] = ACTIONS(3069), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3069), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3069), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3069), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3069), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3069), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3069), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3069), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3069), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3069), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3069), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3069), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3069), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3069), - [aux_sym_host_key_alias_token1] = ACTIONS(3069), - [aux_sym_hostname_token1] = ACTIONS(3069), - [aux_sym_identities_only_token1] = ACTIONS(3069), - [aux_sym_identity_agent_token1] = ACTIONS(3069), - [aux_sym_identity_file_token1] = ACTIONS(3069), - [aux_sym_ignore_unknown_token1] = ACTIONS(3069), - [aux_sym_include_token1] = ACTIONS(3069), - [aux_sym_ip_qos_token1] = ACTIONS(3069), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3069), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3069), - [aux_sym_kex_algorithms_token1] = ACTIONS(3069), - [aux_sym_known_hosts_command_token1] = ACTIONS(3069), - [aux_sym_local_command_token1] = ACTIONS(3069), - [aux_sym_local_forward_token1] = ACTIONS(3069), - [aux_sym_log_level_token1] = ACTIONS(3069), - [aux_sym_log_verbose_token1] = ACTIONS(3069), - [aux_sym_macs_token1] = ACTIONS(3069), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3069), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3069), - [aux_sym_password_authentication_token1] = ACTIONS(3069), - [aux_sym_permit_local_command_token1] = ACTIONS(3069), - [aux_sym_permit_remote_open_token1] = ACTIONS(3069), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3069), - [aux_sym_port_token1] = ACTIONS(3069), - [aux_sym_preferred_authentications_token1] = ACTIONS(3069), - [aux_sym_protocol_token1] = ACTIONS(3069), - [aux_sym_proxy_command_token1] = ACTIONS(3069), - [aux_sym_proxy_jump_token1] = ACTIONS(3069), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3069), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3069), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3069), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3069), - [aux_sym_rekey_limit_token1] = ACTIONS(3069), - [aux_sym_remote_command_token1] = ACTIONS(3069), - [aux_sym_remote_forward_token1] = ACTIONS(3069), - [aux_sym_request_tty_token1] = ACTIONS(3069), - [aux_sym_required_rsa_size_token1] = ACTIONS(3069), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3069), - [aux_sym_security_key_provider_token1] = ACTIONS(3069), - [aux_sym_send_env_token1] = ACTIONS(3069), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3069), - [aux_sym_server_alive_interval_token1] = ACTIONS(3069), - [aux_sym_session_type_token1] = ACTIONS(3069), - [aux_sym_set_env_token1] = ACTIONS(3069), - [aux_sym_stdin_null_token1] = ACTIONS(3069), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3069), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3069), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3069), - [aux_sym_syslog_facility_token1] = ACTIONS(3069), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3069), - [aux_sym_keep_alive_token1] = ACTIONS(3069), - [aux_sym_tunnel_token1] = ACTIONS(3071), - [aux_sym_tunnel_device_token1] = ACTIONS(3069), - [aux_sym_update_host_keys_token1] = ACTIONS(3069), - [aux_sym_use_keychain_token1] = ACTIONS(3069), - [aux_sym_use_roaming_token1] = ACTIONS(3069), - [aux_sym_user_token1] = ACTIONS(3071), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3069), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3069), - [aux_sym_visual_host_key_token1] = ACTIONS(3069), - [aux_sym_xauth_location_token1] = ACTIONS(3069), + [ts_builtin_sym_end] = ACTIONS(3064), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3066), + [aux_sym_match_token1] = ACTIONS(3064), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3064), + [aux_sym_address_family_token1] = ACTIONS(3064), + [aux_sym_batch_mode_token1] = ACTIONS(3064), + [aux_sym_bind_address_token1] = ACTIONS(3064), + [aux_sym_bind_interface_token1] = ACTIONS(3064), + [aux_sym_canonical_domains_token1] = ACTIONS(3064), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3064), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3064), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3064), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3064), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3064), + [aux_sym_certificate_file_token1] = ACTIONS(3064), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3064), + [aux_sym_check_host_ip_token1] = ACTIONS(3064), + [aux_sym_ciphers_token1] = ACTIONS(3064), + [aux_sym_cipher_token1] = ACTIONS(3066), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3064), + [aux_sym_compression_token1] = ACTIONS(3064), + [aux_sym_connection_attempts_token1] = ACTIONS(3064), + [aux_sym_connect_timeout_token1] = ACTIONS(3064), + [aux_sym_control_master_token1] = ACTIONS(3064), + [aux_sym_control_path_token1] = ACTIONS(3064), + [aux_sym_control_persist_token1] = ACTIONS(3064), + [aux_sym_dynamic_forward_token1] = ACTIONS(3064), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3064), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3064), + [aux_sym_escape_char_token1] = ACTIONS(3064), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3064), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3064), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3064), + [aux_sym_forward_agent_token1] = ACTIONS(3064), + [aux_sym_forward_x11_token1] = ACTIONS(3066), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3064), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3064), + [aux_sym_gateway_ports_token1] = ACTIONS(3064), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3064), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3064), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3064), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3064), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3064), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3064), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3064), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3064), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3064), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3064), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3064), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3064), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3064), + [aux_sym_host_key_alias_token1] = ACTIONS(3064), + [aux_sym_hostname_token1] = ACTIONS(3064), + [aux_sym_identities_only_token1] = ACTIONS(3064), + [aux_sym_identity_agent_token1] = ACTIONS(3064), + [aux_sym_identity_file_token1] = ACTIONS(3064), + [aux_sym_ignore_unknown_token1] = ACTIONS(3064), + [aux_sym_include_token1] = ACTIONS(3064), + [aux_sym_ip_qos_token1] = ACTIONS(3064), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3064), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3064), + [aux_sym_kex_algorithms_token1] = ACTIONS(3064), + [aux_sym_known_hosts_command_token1] = ACTIONS(3064), + [aux_sym_local_command_token1] = ACTIONS(3064), + [aux_sym_local_forward_token1] = ACTIONS(3064), + [aux_sym_log_level_token1] = ACTIONS(3064), + [aux_sym_log_verbose_token1] = ACTIONS(3064), + [aux_sym_macs_token1] = ACTIONS(3064), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3064), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3064), + [aux_sym_password_authentication_token1] = ACTIONS(3064), + [aux_sym_permit_local_command_token1] = ACTIONS(3064), + [aux_sym_permit_remote_open_token1] = ACTIONS(3064), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3064), + [aux_sym_port_token1] = ACTIONS(3064), + [aux_sym_preferred_authentications_token1] = ACTIONS(3064), + [aux_sym_protocol_token1] = ACTIONS(3064), + [aux_sym_proxy_command_token1] = ACTIONS(3064), + [aux_sym_proxy_jump_token1] = ACTIONS(3064), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3064), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3064), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3064), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3064), + [aux_sym_rekey_limit_token1] = ACTIONS(3064), + [aux_sym_remote_command_token1] = ACTIONS(3064), + [aux_sym_remote_forward_token1] = ACTIONS(3064), + [aux_sym_request_tty_token1] = ACTIONS(3064), + [aux_sym_required_rsa_size_token1] = ACTIONS(3064), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3064), + [aux_sym_security_key_provider_token1] = ACTIONS(3064), + [aux_sym_send_env_token1] = ACTIONS(3064), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3064), + [aux_sym_server_alive_interval_token1] = ACTIONS(3064), + [aux_sym_session_type_token1] = ACTIONS(3064), + [aux_sym_set_env_token1] = ACTIONS(3064), + [aux_sym_stdin_null_token1] = ACTIONS(3064), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3064), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3064), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3064), + [aux_sym_syslog_facility_token1] = ACTIONS(3064), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3064), + [aux_sym_keep_alive_token1] = ACTIONS(3064), + [aux_sym_tunnel_token1] = ACTIONS(3066), + [aux_sym_tunnel_device_token1] = ACTIONS(3064), + [aux_sym_update_host_keys_token1] = ACTIONS(3064), + [aux_sym_use_keychain_token1] = ACTIONS(3064), + [aux_sym_use_roaming_token1] = ACTIONS(3064), + [aux_sym_user_token1] = ACTIONS(3066), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3064), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3064), + [aux_sym_visual_host_key_token1] = ACTIONS(3064), + [aux_sym_xauth_location_token1] = ACTIONS(3064), }, [471] = { - [ts_builtin_sym_end] = ACTIONS(3073), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3075), - [aux_sym_match_token1] = ACTIONS(3073), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3073), - [aux_sym_address_family_token1] = ACTIONS(3073), - [aux_sym_batch_mode_token1] = ACTIONS(3073), - [aux_sym_bind_address_token1] = ACTIONS(3073), - [aux_sym_bind_interface_token1] = ACTIONS(3073), - [aux_sym_canonical_domains_token1] = ACTIONS(3073), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3073), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3073), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3073), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3073), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3073), - [aux_sym_certificate_file_token1] = ACTIONS(3073), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3073), - [aux_sym_check_host_ip_token1] = ACTIONS(3073), - [aux_sym_ciphers_token1] = ACTIONS(3073), - [aux_sym_cipher_token1] = ACTIONS(3075), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3073), - [aux_sym_compression_token1] = ACTIONS(3073), - [aux_sym_connection_attempts_token1] = ACTIONS(3073), - [aux_sym_connect_timeout_token1] = ACTIONS(3073), - [aux_sym_control_master_token1] = ACTIONS(3073), - [aux_sym_control_path_token1] = ACTIONS(3073), - [aux_sym_control_persist_token1] = ACTIONS(3073), - [aux_sym_dynamic_forward_token1] = ACTIONS(3073), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3073), - [aux_sym_escape_char_token1] = ACTIONS(3073), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3073), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3073), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3073), - [aux_sym_forward_agent_token1] = ACTIONS(3073), - [aux_sym_forward_x11_token1] = ACTIONS(3075), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3073), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3073), - [aux_sym_gateway_ports_token1] = ACTIONS(3073), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3073), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3073), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3073), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3073), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3073), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3073), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3073), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3073), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3073), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3073), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3073), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3073), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3073), - [aux_sym_host_key_alias_token1] = ACTIONS(3073), - [aux_sym_hostname_token1] = ACTIONS(3073), - [aux_sym_identities_only_token1] = ACTIONS(3073), - [aux_sym_identity_agent_token1] = ACTIONS(3073), - [aux_sym_identity_file_token1] = ACTIONS(3073), - [aux_sym_ignore_unknown_token1] = ACTIONS(3073), - [aux_sym_include_token1] = ACTIONS(3073), - [aux_sym_ip_qos_token1] = ACTIONS(3073), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3073), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3073), - [aux_sym_kex_algorithms_token1] = ACTIONS(3073), - [aux_sym_known_hosts_command_token1] = ACTIONS(3073), - [aux_sym_local_command_token1] = ACTIONS(3073), - [aux_sym_local_forward_token1] = ACTIONS(3073), - [aux_sym_log_level_token1] = ACTIONS(3073), - [aux_sym_log_verbose_token1] = ACTIONS(3073), - [aux_sym_macs_token1] = ACTIONS(3073), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3073), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3073), - [aux_sym_password_authentication_token1] = ACTIONS(3073), - [aux_sym_permit_local_command_token1] = ACTIONS(3073), - [aux_sym_permit_remote_open_token1] = ACTIONS(3073), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3073), - [aux_sym_port_token1] = ACTIONS(3073), - [aux_sym_preferred_authentications_token1] = ACTIONS(3073), - [aux_sym_protocol_token1] = ACTIONS(3073), - [aux_sym_proxy_command_token1] = ACTIONS(3073), - [aux_sym_proxy_jump_token1] = ACTIONS(3073), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3073), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3073), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3073), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3073), - [aux_sym_rekey_limit_token1] = ACTIONS(3073), - [aux_sym_remote_command_token1] = ACTIONS(3073), - [aux_sym_remote_forward_token1] = ACTIONS(3073), - [aux_sym_request_tty_token1] = ACTIONS(3073), - [aux_sym_required_rsa_size_token1] = ACTIONS(3073), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3073), - [aux_sym_security_key_provider_token1] = ACTIONS(3073), - [aux_sym_send_env_token1] = ACTIONS(3073), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3073), - [aux_sym_server_alive_interval_token1] = ACTIONS(3073), - [aux_sym_session_type_token1] = ACTIONS(3073), - [aux_sym_set_env_token1] = ACTIONS(3073), - [aux_sym_stdin_null_token1] = ACTIONS(3073), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3073), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3073), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3073), - [aux_sym_syslog_facility_token1] = ACTIONS(3073), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3073), - [aux_sym_keep_alive_token1] = ACTIONS(3073), - [aux_sym_tunnel_token1] = ACTIONS(3075), - [aux_sym_tunnel_device_token1] = ACTIONS(3073), - [aux_sym_update_host_keys_token1] = ACTIONS(3073), - [aux_sym_use_keychain_token1] = ACTIONS(3073), - [aux_sym_use_roaming_token1] = ACTIONS(3073), - [aux_sym_user_token1] = ACTIONS(3075), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3073), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3073), - [aux_sym_visual_host_key_token1] = ACTIONS(3073), - [aux_sym_xauth_location_token1] = ACTIONS(3073), + [ts_builtin_sym_end] = ACTIONS(3068), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3070), + [aux_sym_match_token1] = ACTIONS(3068), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3068), + [aux_sym_address_family_token1] = ACTIONS(3068), + [aux_sym_batch_mode_token1] = ACTIONS(3068), + [aux_sym_bind_address_token1] = ACTIONS(3068), + [aux_sym_bind_interface_token1] = ACTIONS(3068), + [aux_sym_canonical_domains_token1] = ACTIONS(3068), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3068), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3068), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3068), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3068), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3068), + [aux_sym_certificate_file_token1] = ACTIONS(3068), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3068), + [aux_sym_check_host_ip_token1] = ACTIONS(3068), + [aux_sym_ciphers_token1] = ACTIONS(3068), + [aux_sym_cipher_token1] = ACTIONS(3070), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3068), + [aux_sym_compression_token1] = ACTIONS(3068), + [aux_sym_connection_attempts_token1] = ACTIONS(3068), + [aux_sym_connect_timeout_token1] = ACTIONS(3068), + [aux_sym_control_master_token1] = ACTIONS(3068), + [aux_sym_control_path_token1] = ACTIONS(3068), + [aux_sym_control_persist_token1] = ACTIONS(3068), + [aux_sym_dynamic_forward_token1] = ACTIONS(3068), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3068), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3068), + [aux_sym_escape_char_token1] = ACTIONS(3068), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3068), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3068), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3068), + [aux_sym_forward_agent_token1] = ACTIONS(3068), + [aux_sym_forward_x11_token1] = ACTIONS(3070), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3068), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3068), + [aux_sym_gateway_ports_token1] = ACTIONS(3068), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3068), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3068), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3068), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3068), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3068), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3068), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3068), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3068), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3068), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3068), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3068), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3068), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3068), + [aux_sym_host_key_alias_token1] = ACTIONS(3068), + [aux_sym_hostname_token1] = ACTIONS(3068), + [aux_sym_identities_only_token1] = ACTIONS(3068), + [aux_sym_identity_agent_token1] = ACTIONS(3068), + [aux_sym_identity_file_token1] = ACTIONS(3068), + [aux_sym_ignore_unknown_token1] = ACTIONS(3068), + [aux_sym_include_token1] = ACTIONS(3068), + [aux_sym_ip_qos_token1] = ACTIONS(3068), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3068), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3068), + [aux_sym_kex_algorithms_token1] = ACTIONS(3068), + [aux_sym_known_hosts_command_token1] = ACTIONS(3068), + [aux_sym_local_command_token1] = ACTIONS(3068), + [aux_sym_local_forward_token1] = ACTIONS(3068), + [aux_sym_log_level_token1] = ACTIONS(3068), + [aux_sym_log_verbose_token1] = ACTIONS(3068), + [aux_sym_macs_token1] = ACTIONS(3068), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3068), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3068), + [aux_sym_password_authentication_token1] = ACTIONS(3068), + [aux_sym_permit_local_command_token1] = ACTIONS(3068), + [aux_sym_permit_remote_open_token1] = ACTIONS(3068), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3068), + [aux_sym_port_token1] = ACTIONS(3068), + [aux_sym_preferred_authentications_token1] = ACTIONS(3068), + [aux_sym_protocol_token1] = ACTIONS(3068), + [aux_sym_proxy_command_token1] = ACTIONS(3068), + [aux_sym_proxy_jump_token1] = ACTIONS(3068), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3068), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3068), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3068), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3068), + [aux_sym_rekey_limit_token1] = ACTIONS(3068), + [aux_sym_remote_command_token1] = ACTIONS(3068), + [aux_sym_remote_forward_token1] = ACTIONS(3068), + [aux_sym_request_tty_token1] = ACTIONS(3068), + [aux_sym_required_rsa_size_token1] = ACTIONS(3068), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3068), + [aux_sym_security_key_provider_token1] = ACTIONS(3068), + [aux_sym_send_env_token1] = ACTIONS(3068), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3068), + [aux_sym_server_alive_interval_token1] = ACTIONS(3068), + [aux_sym_session_type_token1] = ACTIONS(3068), + [aux_sym_set_env_token1] = ACTIONS(3068), + [aux_sym_stdin_null_token1] = ACTIONS(3068), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3068), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3068), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3068), + [aux_sym_syslog_facility_token1] = ACTIONS(3068), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3068), + [aux_sym_keep_alive_token1] = ACTIONS(3068), + [aux_sym_tunnel_token1] = ACTIONS(3070), + [aux_sym_tunnel_device_token1] = ACTIONS(3068), + [aux_sym_update_host_keys_token1] = ACTIONS(3068), + [aux_sym_use_keychain_token1] = ACTIONS(3068), + [aux_sym_use_roaming_token1] = ACTIONS(3068), + [aux_sym_user_token1] = ACTIONS(3070), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3068), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3068), + [aux_sym_visual_host_key_token1] = ACTIONS(3068), + [aux_sym_xauth_location_token1] = ACTIONS(3068), }, [472] = { - [ts_builtin_sym_end] = ACTIONS(3077), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3079), - [aux_sym_match_token1] = ACTIONS(3077), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3077), - [aux_sym_address_family_token1] = ACTIONS(3077), - [aux_sym_batch_mode_token1] = ACTIONS(3077), - [aux_sym_bind_address_token1] = ACTIONS(3077), - [aux_sym_bind_interface_token1] = ACTIONS(3077), - [aux_sym_canonical_domains_token1] = ACTIONS(3077), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3077), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3077), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3077), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3077), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3077), - [aux_sym_certificate_file_token1] = ACTIONS(3077), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3077), - [aux_sym_check_host_ip_token1] = ACTIONS(3077), - [aux_sym_ciphers_token1] = ACTIONS(3077), - [aux_sym_cipher_token1] = ACTIONS(3079), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3077), - [aux_sym_compression_token1] = ACTIONS(3077), - [aux_sym_connection_attempts_token1] = ACTIONS(3077), - [aux_sym_connect_timeout_token1] = ACTIONS(3077), - [aux_sym_control_master_token1] = ACTIONS(3077), - [aux_sym_control_path_token1] = ACTIONS(3077), - [aux_sym_control_persist_token1] = ACTIONS(3077), - [aux_sym_dynamic_forward_token1] = ACTIONS(3077), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3077), - [aux_sym_escape_char_token1] = ACTIONS(3077), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3077), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3077), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3077), - [aux_sym_forward_agent_token1] = ACTIONS(3077), - [aux_sym_forward_x11_token1] = ACTIONS(3079), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3077), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3077), - [aux_sym_gateway_ports_token1] = ACTIONS(3077), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3077), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3077), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3077), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3077), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3077), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3077), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3077), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3077), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3077), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3077), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3077), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3077), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3077), - [aux_sym_host_key_alias_token1] = ACTIONS(3077), - [aux_sym_hostname_token1] = ACTIONS(3077), - [aux_sym_identities_only_token1] = ACTIONS(3077), - [aux_sym_identity_agent_token1] = ACTIONS(3077), - [aux_sym_identity_file_token1] = ACTIONS(3077), - [aux_sym_ignore_unknown_token1] = ACTIONS(3077), - [aux_sym_include_token1] = ACTIONS(3077), - [aux_sym_ip_qos_token1] = ACTIONS(3077), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3077), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3077), - [aux_sym_kex_algorithms_token1] = ACTIONS(3077), - [aux_sym_known_hosts_command_token1] = ACTIONS(3077), - [aux_sym_local_command_token1] = ACTIONS(3077), - [aux_sym_local_forward_token1] = ACTIONS(3077), - [aux_sym_log_level_token1] = ACTIONS(3077), - [aux_sym_log_verbose_token1] = ACTIONS(3077), - [aux_sym_macs_token1] = ACTIONS(3077), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3077), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3077), - [aux_sym_password_authentication_token1] = ACTIONS(3077), - [aux_sym_permit_local_command_token1] = ACTIONS(3077), - [aux_sym_permit_remote_open_token1] = ACTIONS(3077), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3077), - [aux_sym_port_token1] = ACTIONS(3077), - [aux_sym_preferred_authentications_token1] = ACTIONS(3077), - [aux_sym_protocol_token1] = ACTIONS(3077), - [aux_sym_proxy_command_token1] = ACTIONS(3077), - [aux_sym_proxy_jump_token1] = ACTIONS(3077), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3077), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3077), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3077), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3077), - [aux_sym_rekey_limit_token1] = ACTIONS(3077), - [aux_sym_remote_command_token1] = ACTIONS(3077), - [aux_sym_remote_forward_token1] = ACTIONS(3077), - [aux_sym_request_tty_token1] = ACTIONS(3077), - [aux_sym_required_rsa_size_token1] = ACTIONS(3077), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3077), - [aux_sym_security_key_provider_token1] = ACTIONS(3077), - [aux_sym_send_env_token1] = ACTIONS(3077), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3077), - [aux_sym_server_alive_interval_token1] = ACTIONS(3077), - [aux_sym_session_type_token1] = ACTIONS(3077), - [aux_sym_set_env_token1] = ACTIONS(3077), - [aux_sym_stdin_null_token1] = ACTIONS(3077), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3077), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3077), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3077), - [aux_sym_syslog_facility_token1] = ACTIONS(3077), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3077), - [aux_sym_keep_alive_token1] = ACTIONS(3077), - [aux_sym_tunnel_token1] = ACTIONS(3079), - [aux_sym_tunnel_device_token1] = ACTIONS(3077), - [aux_sym_update_host_keys_token1] = ACTIONS(3077), - [aux_sym_use_keychain_token1] = ACTIONS(3077), - [aux_sym_use_roaming_token1] = ACTIONS(3077), - [aux_sym_user_token1] = ACTIONS(3079), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3077), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3077), - [aux_sym_visual_host_key_token1] = ACTIONS(3077), - [aux_sym_xauth_location_token1] = ACTIONS(3077), + [ts_builtin_sym_end] = ACTIONS(3072), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3074), + [aux_sym_match_token1] = ACTIONS(3072), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3072), + [aux_sym_address_family_token1] = ACTIONS(3072), + [aux_sym_batch_mode_token1] = ACTIONS(3072), + [aux_sym_bind_address_token1] = ACTIONS(3072), + [aux_sym_bind_interface_token1] = ACTIONS(3072), + [aux_sym_canonical_domains_token1] = ACTIONS(3072), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3072), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3072), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3072), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3072), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3072), + [aux_sym_certificate_file_token1] = ACTIONS(3072), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3072), + [aux_sym_check_host_ip_token1] = ACTIONS(3072), + [aux_sym_ciphers_token1] = ACTIONS(3072), + [aux_sym_cipher_token1] = ACTIONS(3074), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3072), + [aux_sym_compression_token1] = ACTIONS(3072), + [aux_sym_connection_attempts_token1] = ACTIONS(3072), + [aux_sym_connect_timeout_token1] = ACTIONS(3072), + [aux_sym_control_master_token1] = ACTIONS(3072), + [aux_sym_control_path_token1] = ACTIONS(3072), + [aux_sym_control_persist_token1] = ACTIONS(3072), + [aux_sym_dynamic_forward_token1] = ACTIONS(3072), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3072), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3072), + [aux_sym_escape_char_token1] = ACTIONS(3072), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3072), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3072), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3072), + [aux_sym_forward_agent_token1] = ACTIONS(3072), + [aux_sym_forward_x11_token1] = ACTIONS(3074), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3072), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3072), + [aux_sym_gateway_ports_token1] = ACTIONS(3072), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3072), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3072), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3072), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3072), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3072), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3072), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3072), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3072), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3072), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3072), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3072), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3072), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3072), + [aux_sym_host_key_alias_token1] = ACTIONS(3072), + [aux_sym_hostname_token1] = ACTIONS(3072), + [aux_sym_identities_only_token1] = ACTIONS(3072), + [aux_sym_identity_agent_token1] = ACTIONS(3072), + [aux_sym_identity_file_token1] = ACTIONS(3072), + [aux_sym_ignore_unknown_token1] = ACTIONS(3072), + [aux_sym_include_token1] = ACTIONS(3072), + [aux_sym_ip_qos_token1] = ACTIONS(3072), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3072), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3072), + [aux_sym_kex_algorithms_token1] = ACTIONS(3072), + [aux_sym_known_hosts_command_token1] = ACTIONS(3072), + [aux_sym_local_command_token1] = ACTIONS(3072), + [aux_sym_local_forward_token1] = ACTIONS(3072), + [aux_sym_log_level_token1] = ACTIONS(3072), + [aux_sym_log_verbose_token1] = ACTIONS(3072), + [aux_sym_macs_token1] = ACTIONS(3072), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3072), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3072), + [aux_sym_password_authentication_token1] = ACTIONS(3072), + [aux_sym_permit_local_command_token1] = ACTIONS(3072), + [aux_sym_permit_remote_open_token1] = ACTIONS(3072), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3072), + [aux_sym_port_token1] = ACTIONS(3072), + [aux_sym_preferred_authentications_token1] = ACTIONS(3072), + [aux_sym_protocol_token1] = ACTIONS(3072), + [aux_sym_proxy_command_token1] = ACTIONS(3072), + [aux_sym_proxy_jump_token1] = ACTIONS(3072), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3072), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3072), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3072), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3072), + [aux_sym_rekey_limit_token1] = ACTIONS(3072), + [aux_sym_remote_command_token1] = ACTIONS(3072), + [aux_sym_remote_forward_token1] = ACTIONS(3072), + [aux_sym_request_tty_token1] = ACTIONS(3072), + [aux_sym_required_rsa_size_token1] = ACTIONS(3072), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3072), + [aux_sym_security_key_provider_token1] = ACTIONS(3072), + [aux_sym_send_env_token1] = ACTIONS(3072), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3072), + [aux_sym_server_alive_interval_token1] = ACTIONS(3072), + [aux_sym_session_type_token1] = ACTIONS(3072), + [aux_sym_set_env_token1] = ACTIONS(3072), + [aux_sym_stdin_null_token1] = ACTIONS(3072), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3072), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3072), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3072), + [aux_sym_syslog_facility_token1] = ACTIONS(3072), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3072), + [aux_sym_keep_alive_token1] = ACTIONS(3072), + [aux_sym_tunnel_token1] = ACTIONS(3074), + [aux_sym_tunnel_device_token1] = ACTIONS(3072), + [aux_sym_update_host_keys_token1] = ACTIONS(3072), + [aux_sym_use_keychain_token1] = ACTIONS(3072), + [aux_sym_use_roaming_token1] = ACTIONS(3072), + [aux_sym_user_token1] = ACTIONS(3074), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3072), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3072), + [aux_sym_visual_host_key_token1] = ACTIONS(3072), + [aux_sym_xauth_location_token1] = ACTIONS(3072), }, [473] = { - [ts_builtin_sym_end] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3083), - [aux_sym_match_token1] = ACTIONS(3081), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3081), - [aux_sym_address_family_token1] = ACTIONS(3081), - [aux_sym_batch_mode_token1] = ACTIONS(3081), - [aux_sym_bind_address_token1] = ACTIONS(3081), - [aux_sym_bind_interface_token1] = ACTIONS(3081), - [aux_sym_canonical_domains_token1] = ACTIONS(3081), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3081), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3081), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3081), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3081), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3081), - [aux_sym_certificate_file_token1] = ACTIONS(3081), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3081), - [aux_sym_check_host_ip_token1] = ACTIONS(3081), - [aux_sym_ciphers_token1] = ACTIONS(3081), - [aux_sym_cipher_token1] = ACTIONS(3083), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3081), - [aux_sym_compression_token1] = ACTIONS(3081), - [aux_sym_connection_attempts_token1] = ACTIONS(3081), - [aux_sym_connect_timeout_token1] = ACTIONS(3081), - [aux_sym_control_master_token1] = ACTIONS(3081), - [aux_sym_control_path_token1] = ACTIONS(3081), - [aux_sym_control_persist_token1] = ACTIONS(3081), - [aux_sym_dynamic_forward_token1] = ACTIONS(3081), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3081), - [aux_sym_escape_char_token1] = ACTIONS(3081), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3081), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3081), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3081), - [aux_sym_forward_agent_token1] = ACTIONS(3081), - [aux_sym_forward_x11_token1] = ACTIONS(3083), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3081), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3081), - [aux_sym_gateway_ports_token1] = ACTIONS(3081), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3081), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3081), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3081), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3081), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3081), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3081), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3081), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3081), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3081), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3081), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3081), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3081), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3081), - [aux_sym_host_key_alias_token1] = ACTIONS(3081), - [aux_sym_hostname_token1] = ACTIONS(3081), - [aux_sym_identities_only_token1] = ACTIONS(3081), - [aux_sym_identity_agent_token1] = ACTIONS(3081), - [aux_sym_identity_file_token1] = ACTIONS(3081), - [aux_sym_ignore_unknown_token1] = ACTIONS(3081), - [aux_sym_include_token1] = ACTIONS(3081), - [aux_sym_ip_qos_token1] = ACTIONS(3081), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3081), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3081), - [aux_sym_kex_algorithms_token1] = ACTIONS(3081), - [aux_sym_known_hosts_command_token1] = ACTIONS(3081), - [aux_sym_local_command_token1] = ACTIONS(3081), - [aux_sym_local_forward_token1] = ACTIONS(3081), - [aux_sym_log_level_token1] = ACTIONS(3081), - [aux_sym_log_verbose_token1] = ACTIONS(3081), - [aux_sym_macs_token1] = ACTIONS(3081), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3081), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3081), - [aux_sym_password_authentication_token1] = ACTIONS(3081), - [aux_sym_permit_local_command_token1] = ACTIONS(3081), - [aux_sym_permit_remote_open_token1] = ACTIONS(3081), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3081), - [aux_sym_port_token1] = ACTIONS(3081), - [aux_sym_preferred_authentications_token1] = ACTIONS(3081), - [aux_sym_protocol_token1] = ACTIONS(3081), - [aux_sym_proxy_command_token1] = ACTIONS(3081), - [aux_sym_proxy_jump_token1] = ACTIONS(3081), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3081), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3081), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3081), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3081), - [aux_sym_rekey_limit_token1] = ACTIONS(3081), - [aux_sym_remote_command_token1] = ACTIONS(3081), - [aux_sym_remote_forward_token1] = ACTIONS(3081), - [aux_sym_request_tty_token1] = ACTIONS(3081), - [aux_sym_required_rsa_size_token1] = ACTIONS(3081), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3081), - [aux_sym_security_key_provider_token1] = ACTIONS(3081), - [aux_sym_send_env_token1] = ACTIONS(3081), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3081), - [aux_sym_server_alive_interval_token1] = ACTIONS(3081), - [aux_sym_session_type_token1] = ACTIONS(3081), - [aux_sym_set_env_token1] = ACTIONS(3081), - [aux_sym_stdin_null_token1] = ACTIONS(3081), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3081), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3081), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3081), - [aux_sym_syslog_facility_token1] = ACTIONS(3081), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3081), - [aux_sym_keep_alive_token1] = ACTIONS(3081), - [aux_sym_tunnel_token1] = ACTIONS(3083), - [aux_sym_tunnel_device_token1] = ACTIONS(3081), - [aux_sym_update_host_keys_token1] = ACTIONS(3081), - [aux_sym_use_keychain_token1] = ACTIONS(3081), - [aux_sym_use_roaming_token1] = ACTIONS(3081), - [aux_sym_user_token1] = ACTIONS(3083), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3081), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3081), - [aux_sym_visual_host_key_token1] = ACTIONS(3081), - [aux_sym_xauth_location_token1] = ACTIONS(3081), + [ts_builtin_sym_end] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3078), + [aux_sym_match_token1] = ACTIONS(3076), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3076), + [aux_sym_address_family_token1] = ACTIONS(3076), + [aux_sym_batch_mode_token1] = ACTIONS(3076), + [aux_sym_bind_address_token1] = ACTIONS(3076), + [aux_sym_bind_interface_token1] = ACTIONS(3076), + [aux_sym_canonical_domains_token1] = ACTIONS(3076), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3076), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3076), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3076), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3076), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3076), + [aux_sym_certificate_file_token1] = ACTIONS(3076), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3076), + [aux_sym_check_host_ip_token1] = ACTIONS(3076), + [aux_sym_ciphers_token1] = ACTIONS(3076), + [aux_sym_cipher_token1] = ACTIONS(3078), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3076), + [aux_sym_compression_token1] = ACTIONS(3076), + [aux_sym_connection_attempts_token1] = ACTIONS(3076), + [aux_sym_connect_timeout_token1] = ACTIONS(3076), + [aux_sym_control_master_token1] = ACTIONS(3076), + [aux_sym_control_path_token1] = ACTIONS(3076), + [aux_sym_control_persist_token1] = ACTIONS(3076), + [aux_sym_dynamic_forward_token1] = ACTIONS(3076), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3076), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3076), + [aux_sym_escape_char_token1] = ACTIONS(3076), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3076), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3076), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3076), + [aux_sym_forward_agent_token1] = ACTIONS(3076), + [aux_sym_forward_x11_token1] = ACTIONS(3078), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3076), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3076), + [aux_sym_gateway_ports_token1] = ACTIONS(3076), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3076), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3076), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3076), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3076), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3076), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3076), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3076), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3076), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3076), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3076), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3076), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3076), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3076), + [aux_sym_host_key_alias_token1] = ACTIONS(3076), + [aux_sym_hostname_token1] = ACTIONS(3076), + [aux_sym_identities_only_token1] = ACTIONS(3076), + [aux_sym_identity_agent_token1] = ACTIONS(3076), + [aux_sym_identity_file_token1] = ACTIONS(3076), + [aux_sym_ignore_unknown_token1] = ACTIONS(3076), + [aux_sym_include_token1] = ACTIONS(3076), + [aux_sym_ip_qos_token1] = ACTIONS(3076), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3076), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3076), + [aux_sym_kex_algorithms_token1] = ACTIONS(3076), + [aux_sym_known_hosts_command_token1] = ACTIONS(3076), + [aux_sym_local_command_token1] = ACTIONS(3076), + [aux_sym_local_forward_token1] = ACTIONS(3076), + [aux_sym_log_level_token1] = ACTIONS(3076), + [aux_sym_log_verbose_token1] = ACTIONS(3076), + [aux_sym_macs_token1] = ACTIONS(3076), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3076), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3076), + [aux_sym_password_authentication_token1] = ACTIONS(3076), + [aux_sym_permit_local_command_token1] = ACTIONS(3076), + [aux_sym_permit_remote_open_token1] = ACTIONS(3076), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3076), + [aux_sym_port_token1] = ACTIONS(3076), + [aux_sym_preferred_authentications_token1] = ACTIONS(3076), + [aux_sym_protocol_token1] = ACTIONS(3076), + [aux_sym_proxy_command_token1] = ACTIONS(3076), + [aux_sym_proxy_jump_token1] = ACTIONS(3076), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3076), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3076), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3076), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3076), + [aux_sym_rekey_limit_token1] = ACTIONS(3076), + [aux_sym_remote_command_token1] = ACTIONS(3076), + [aux_sym_remote_forward_token1] = ACTIONS(3076), + [aux_sym_request_tty_token1] = ACTIONS(3076), + [aux_sym_required_rsa_size_token1] = ACTIONS(3076), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3076), + [aux_sym_security_key_provider_token1] = ACTIONS(3076), + [aux_sym_send_env_token1] = ACTIONS(3076), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3076), + [aux_sym_server_alive_interval_token1] = ACTIONS(3076), + [aux_sym_session_type_token1] = ACTIONS(3076), + [aux_sym_set_env_token1] = ACTIONS(3076), + [aux_sym_stdin_null_token1] = ACTIONS(3076), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3076), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3076), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3076), + [aux_sym_syslog_facility_token1] = ACTIONS(3076), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3076), + [aux_sym_keep_alive_token1] = ACTIONS(3076), + [aux_sym_tunnel_token1] = ACTIONS(3078), + [aux_sym_tunnel_device_token1] = ACTIONS(3076), + [aux_sym_update_host_keys_token1] = ACTIONS(3076), + [aux_sym_use_keychain_token1] = ACTIONS(3076), + [aux_sym_use_roaming_token1] = ACTIONS(3076), + [aux_sym_user_token1] = ACTIONS(3078), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3076), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3076), + [aux_sym_visual_host_key_token1] = ACTIONS(3076), + [aux_sym_xauth_location_token1] = ACTIONS(3076), }, [474] = { - [ts_builtin_sym_end] = ACTIONS(3085), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3087), - [aux_sym_match_token1] = ACTIONS(3085), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3085), - [aux_sym_address_family_token1] = ACTIONS(3085), - [aux_sym_batch_mode_token1] = ACTIONS(3085), - [aux_sym_bind_address_token1] = ACTIONS(3085), - [aux_sym_bind_interface_token1] = ACTIONS(3085), - [aux_sym_canonical_domains_token1] = ACTIONS(3085), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3085), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3085), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3085), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3085), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3085), - [aux_sym_certificate_file_token1] = ACTIONS(3085), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3085), - [aux_sym_check_host_ip_token1] = ACTIONS(3085), - [aux_sym_ciphers_token1] = ACTIONS(3085), - [aux_sym_cipher_token1] = ACTIONS(3087), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3085), - [aux_sym_compression_token1] = ACTIONS(3085), - [aux_sym_connection_attempts_token1] = ACTIONS(3085), - [aux_sym_connect_timeout_token1] = ACTIONS(3085), - [aux_sym_control_master_token1] = ACTIONS(3085), - [aux_sym_control_path_token1] = ACTIONS(3085), - [aux_sym_control_persist_token1] = ACTIONS(3085), - [aux_sym_dynamic_forward_token1] = ACTIONS(3085), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3085), - [aux_sym_escape_char_token1] = ACTIONS(3085), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3085), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3085), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3085), - [aux_sym_forward_agent_token1] = ACTIONS(3085), - [aux_sym_forward_x11_token1] = ACTIONS(3087), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3085), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3085), - [aux_sym_gateway_ports_token1] = ACTIONS(3085), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3085), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3085), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3085), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3085), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3085), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3085), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3085), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3085), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3085), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3085), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3085), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3085), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3085), - [aux_sym_host_key_alias_token1] = ACTIONS(3085), - [aux_sym_hostname_token1] = ACTIONS(3085), - [aux_sym_identities_only_token1] = ACTIONS(3085), - [aux_sym_identity_agent_token1] = ACTIONS(3085), - [aux_sym_identity_file_token1] = ACTIONS(3085), - [aux_sym_ignore_unknown_token1] = ACTIONS(3085), - [aux_sym_include_token1] = ACTIONS(3085), - [aux_sym_ip_qos_token1] = ACTIONS(3085), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3085), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3085), - [aux_sym_kex_algorithms_token1] = ACTIONS(3085), - [aux_sym_known_hosts_command_token1] = ACTIONS(3085), - [aux_sym_local_command_token1] = ACTIONS(3085), - [aux_sym_local_forward_token1] = ACTIONS(3085), - [aux_sym_log_level_token1] = ACTIONS(3085), - [aux_sym_log_verbose_token1] = ACTIONS(3085), - [aux_sym_macs_token1] = ACTIONS(3085), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3085), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3085), - [aux_sym_password_authentication_token1] = ACTIONS(3085), - [aux_sym_permit_local_command_token1] = ACTIONS(3085), - [aux_sym_permit_remote_open_token1] = ACTIONS(3085), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3085), - [aux_sym_port_token1] = ACTIONS(3085), - [aux_sym_preferred_authentications_token1] = ACTIONS(3085), - [aux_sym_protocol_token1] = ACTIONS(3085), - [aux_sym_proxy_command_token1] = ACTIONS(3085), - [aux_sym_proxy_jump_token1] = ACTIONS(3085), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3085), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3085), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3085), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3085), - [aux_sym_rekey_limit_token1] = ACTIONS(3085), - [aux_sym_remote_command_token1] = ACTIONS(3085), - [aux_sym_remote_forward_token1] = ACTIONS(3085), - [aux_sym_request_tty_token1] = ACTIONS(3085), - [aux_sym_required_rsa_size_token1] = ACTIONS(3085), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3085), - [aux_sym_security_key_provider_token1] = ACTIONS(3085), - [aux_sym_send_env_token1] = ACTIONS(3085), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3085), - [aux_sym_server_alive_interval_token1] = ACTIONS(3085), - [aux_sym_session_type_token1] = ACTIONS(3085), - [aux_sym_set_env_token1] = ACTIONS(3085), - [aux_sym_stdin_null_token1] = ACTIONS(3085), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3085), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3085), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3085), - [aux_sym_syslog_facility_token1] = ACTIONS(3085), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3085), - [aux_sym_keep_alive_token1] = ACTIONS(3085), - [aux_sym_tunnel_token1] = ACTIONS(3087), - [aux_sym_tunnel_device_token1] = ACTIONS(3085), - [aux_sym_update_host_keys_token1] = ACTIONS(3085), - [aux_sym_use_keychain_token1] = ACTIONS(3085), - [aux_sym_use_roaming_token1] = ACTIONS(3085), - [aux_sym_user_token1] = ACTIONS(3087), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3085), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3085), - [aux_sym_visual_host_key_token1] = ACTIONS(3085), - [aux_sym_xauth_location_token1] = ACTIONS(3085), + [ts_builtin_sym_end] = ACTIONS(3080), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3082), + [aux_sym_match_token1] = ACTIONS(3080), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3080), + [aux_sym_address_family_token1] = ACTIONS(3080), + [aux_sym_batch_mode_token1] = ACTIONS(3080), + [aux_sym_bind_address_token1] = ACTIONS(3080), + [aux_sym_bind_interface_token1] = ACTIONS(3080), + [aux_sym_canonical_domains_token1] = ACTIONS(3080), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3080), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3080), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3080), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3080), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3080), + [aux_sym_certificate_file_token1] = ACTIONS(3080), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3080), + [aux_sym_check_host_ip_token1] = ACTIONS(3080), + [aux_sym_ciphers_token1] = ACTIONS(3080), + [aux_sym_cipher_token1] = ACTIONS(3082), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3080), + [aux_sym_compression_token1] = ACTIONS(3080), + [aux_sym_connection_attempts_token1] = ACTIONS(3080), + [aux_sym_connect_timeout_token1] = ACTIONS(3080), + [aux_sym_control_master_token1] = ACTIONS(3080), + [aux_sym_control_path_token1] = ACTIONS(3080), + [aux_sym_control_persist_token1] = ACTIONS(3080), + [aux_sym_dynamic_forward_token1] = ACTIONS(3080), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3080), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3080), + [aux_sym_escape_char_token1] = ACTIONS(3080), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3080), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3080), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3080), + [aux_sym_forward_agent_token1] = ACTIONS(3080), + [aux_sym_forward_x11_token1] = ACTIONS(3082), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3080), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3080), + [aux_sym_gateway_ports_token1] = ACTIONS(3080), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3080), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3080), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3080), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3080), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3080), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3080), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3080), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3080), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3080), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3080), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3080), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3080), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3080), + [aux_sym_host_key_alias_token1] = ACTIONS(3080), + [aux_sym_hostname_token1] = ACTIONS(3080), + [aux_sym_identities_only_token1] = ACTIONS(3080), + [aux_sym_identity_agent_token1] = ACTIONS(3080), + [aux_sym_identity_file_token1] = ACTIONS(3080), + [aux_sym_ignore_unknown_token1] = ACTIONS(3080), + [aux_sym_include_token1] = ACTIONS(3080), + [aux_sym_ip_qos_token1] = ACTIONS(3080), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3080), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3080), + [aux_sym_kex_algorithms_token1] = ACTIONS(3080), + [aux_sym_known_hosts_command_token1] = ACTIONS(3080), + [aux_sym_local_command_token1] = ACTIONS(3080), + [aux_sym_local_forward_token1] = ACTIONS(3080), + [aux_sym_log_level_token1] = ACTIONS(3080), + [aux_sym_log_verbose_token1] = ACTIONS(3080), + [aux_sym_macs_token1] = ACTIONS(3080), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3080), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3080), + [aux_sym_password_authentication_token1] = ACTIONS(3080), + [aux_sym_permit_local_command_token1] = ACTIONS(3080), + [aux_sym_permit_remote_open_token1] = ACTIONS(3080), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3080), + [aux_sym_port_token1] = ACTIONS(3080), + [aux_sym_preferred_authentications_token1] = ACTIONS(3080), + [aux_sym_protocol_token1] = ACTIONS(3080), + [aux_sym_proxy_command_token1] = ACTIONS(3080), + [aux_sym_proxy_jump_token1] = ACTIONS(3080), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3080), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3080), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3080), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3080), + [aux_sym_rekey_limit_token1] = ACTIONS(3080), + [aux_sym_remote_command_token1] = ACTIONS(3080), + [aux_sym_remote_forward_token1] = ACTIONS(3080), + [aux_sym_request_tty_token1] = ACTIONS(3080), + [aux_sym_required_rsa_size_token1] = ACTIONS(3080), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3080), + [aux_sym_security_key_provider_token1] = ACTIONS(3080), + [aux_sym_send_env_token1] = ACTIONS(3080), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3080), + [aux_sym_server_alive_interval_token1] = ACTIONS(3080), + [aux_sym_session_type_token1] = ACTIONS(3080), + [aux_sym_set_env_token1] = ACTIONS(3080), + [aux_sym_stdin_null_token1] = ACTIONS(3080), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3080), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3080), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3080), + [aux_sym_syslog_facility_token1] = ACTIONS(3080), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3080), + [aux_sym_keep_alive_token1] = ACTIONS(3080), + [aux_sym_tunnel_token1] = ACTIONS(3082), + [aux_sym_tunnel_device_token1] = ACTIONS(3080), + [aux_sym_update_host_keys_token1] = ACTIONS(3080), + [aux_sym_use_keychain_token1] = ACTIONS(3080), + [aux_sym_use_roaming_token1] = ACTIONS(3080), + [aux_sym_user_token1] = ACTIONS(3082), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3080), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3080), + [aux_sym_visual_host_key_token1] = ACTIONS(3080), + [aux_sym_xauth_location_token1] = ACTIONS(3080), }, [475] = { - [ts_builtin_sym_end] = ACTIONS(3089), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3091), - [aux_sym_match_token1] = ACTIONS(3089), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3089), - [aux_sym_address_family_token1] = ACTIONS(3089), - [aux_sym_batch_mode_token1] = ACTIONS(3089), - [aux_sym_bind_address_token1] = ACTIONS(3089), - [aux_sym_bind_interface_token1] = ACTIONS(3089), - [aux_sym_canonical_domains_token1] = ACTIONS(3089), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3089), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3089), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3089), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3089), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3089), - [aux_sym_certificate_file_token1] = ACTIONS(3089), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3089), - [aux_sym_check_host_ip_token1] = ACTIONS(3089), - [aux_sym_ciphers_token1] = ACTIONS(3089), - [aux_sym_cipher_token1] = ACTIONS(3091), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3089), - [aux_sym_compression_token1] = ACTIONS(3089), - [aux_sym_connection_attempts_token1] = ACTIONS(3089), - [aux_sym_connect_timeout_token1] = ACTIONS(3089), - [aux_sym_control_master_token1] = ACTIONS(3089), - [aux_sym_control_path_token1] = ACTIONS(3089), - [aux_sym_control_persist_token1] = ACTIONS(3089), - [aux_sym_dynamic_forward_token1] = ACTIONS(3089), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3089), - [aux_sym_escape_char_token1] = ACTIONS(3089), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3089), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3089), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3089), - [aux_sym_forward_agent_token1] = ACTIONS(3089), - [aux_sym_forward_x11_token1] = ACTIONS(3091), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3089), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3089), - [aux_sym_gateway_ports_token1] = ACTIONS(3089), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3089), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3089), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3089), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3089), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3089), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3089), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3089), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3089), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3089), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3089), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3089), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3089), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3089), - [aux_sym_host_key_alias_token1] = ACTIONS(3089), - [aux_sym_hostname_token1] = ACTIONS(3089), - [aux_sym_identities_only_token1] = ACTIONS(3089), - [aux_sym_identity_agent_token1] = ACTIONS(3089), - [aux_sym_identity_file_token1] = ACTIONS(3089), - [aux_sym_ignore_unknown_token1] = ACTIONS(3089), - [aux_sym_include_token1] = ACTIONS(3089), - [aux_sym_ip_qos_token1] = ACTIONS(3089), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3089), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3089), - [aux_sym_kex_algorithms_token1] = ACTIONS(3089), - [aux_sym_known_hosts_command_token1] = ACTIONS(3089), - [aux_sym_local_command_token1] = ACTIONS(3089), - [aux_sym_local_forward_token1] = ACTIONS(3089), - [aux_sym_log_level_token1] = ACTIONS(3089), - [aux_sym_log_verbose_token1] = ACTIONS(3089), - [aux_sym_macs_token1] = ACTIONS(3089), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3089), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3089), - [aux_sym_password_authentication_token1] = ACTIONS(3089), - [aux_sym_permit_local_command_token1] = ACTIONS(3089), - [aux_sym_permit_remote_open_token1] = ACTIONS(3089), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3089), - [aux_sym_port_token1] = ACTIONS(3089), - [aux_sym_preferred_authentications_token1] = ACTIONS(3089), - [aux_sym_protocol_token1] = ACTIONS(3089), - [aux_sym_proxy_command_token1] = ACTIONS(3089), - [aux_sym_proxy_jump_token1] = ACTIONS(3089), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3089), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3089), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3089), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3089), - [aux_sym_rekey_limit_token1] = ACTIONS(3089), - [aux_sym_remote_command_token1] = ACTIONS(3089), - [aux_sym_remote_forward_token1] = ACTIONS(3089), - [aux_sym_request_tty_token1] = ACTIONS(3089), - [aux_sym_required_rsa_size_token1] = ACTIONS(3089), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3089), - [aux_sym_security_key_provider_token1] = ACTIONS(3089), - [aux_sym_send_env_token1] = ACTIONS(3089), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3089), - [aux_sym_server_alive_interval_token1] = ACTIONS(3089), - [aux_sym_session_type_token1] = ACTIONS(3089), - [aux_sym_set_env_token1] = ACTIONS(3089), - [aux_sym_stdin_null_token1] = ACTIONS(3089), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3089), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3089), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3089), - [aux_sym_syslog_facility_token1] = ACTIONS(3089), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3089), - [aux_sym_keep_alive_token1] = ACTIONS(3089), - [aux_sym_tunnel_token1] = ACTIONS(3091), - [aux_sym_tunnel_device_token1] = ACTIONS(3089), - [aux_sym_update_host_keys_token1] = ACTIONS(3089), - [aux_sym_use_keychain_token1] = ACTIONS(3089), - [aux_sym_use_roaming_token1] = ACTIONS(3089), - [aux_sym_user_token1] = ACTIONS(3091), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3089), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3089), - [aux_sym_visual_host_key_token1] = ACTIONS(3089), - [aux_sym_xauth_location_token1] = ACTIONS(3089), + [ts_builtin_sym_end] = ACTIONS(3084), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3086), + [aux_sym_match_token1] = ACTIONS(3084), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3084), + [aux_sym_address_family_token1] = ACTIONS(3084), + [aux_sym_batch_mode_token1] = ACTIONS(3084), + [aux_sym_bind_address_token1] = ACTIONS(3084), + [aux_sym_bind_interface_token1] = ACTIONS(3084), + [aux_sym_canonical_domains_token1] = ACTIONS(3084), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3084), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3084), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3084), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3084), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3084), + [aux_sym_certificate_file_token1] = ACTIONS(3084), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3084), + [aux_sym_check_host_ip_token1] = ACTIONS(3084), + [aux_sym_ciphers_token1] = ACTIONS(3084), + [aux_sym_cipher_token1] = ACTIONS(3086), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3084), + [aux_sym_compression_token1] = ACTIONS(3084), + [aux_sym_connection_attempts_token1] = ACTIONS(3084), + [aux_sym_connect_timeout_token1] = ACTIONS(3084), + [aux_sym_control_master_token1] = ACTIONS(3084), + [aux_sym_control_path_token1] = ACTIONS(3084), + [aux_sym_control_persist_token1] = ACTIONS(3084), + [aux_sym_dynamic_forward_token1] = ACTIONS(3084), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3084), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3084), + [aux_sym_escape_char_token1] = ACTIONS(3084), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3084), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3084), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3084), + [aux_sym_forward_agent_token1] = ACTIONS(3084), + [aux_sym_forward_x11_token1] = ACTIONS(3086), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3084), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3084), + [aux_sym_gateway_ports_token1] = ACTIONS(3084), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3084), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3084), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3084), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3084), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3084), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3084), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3084), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3084), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3084), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3084), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3084), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3084), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3084), + [aux_sym_host_key_alias_token1] = ACTIONS(3084), + [aux_sym_hostname_token1] = ACTIONS(3084), + [aux_sym_identities_only_token1] = ACTIONS(3084), + [aux_sym_identity_agent_token1] = ACTIONS(3084), + [aux_sym_identity_file_token1] = ACTIONS(3084), + [aux_sym_ignore_unknown_token1] = ACTIONS(3084), + [aux_sym_include_token1] = ACTIONS(3084), + [aux_sym_ip_qos_token1] = ACTIONS(3084), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3084), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3084), + [aux_sym_kex_algorithms_token1] = ACTIONS(3084), + [aux_sym_known_hosts_command_token1] = ACTIONS(3084), + [aux_sym_local_command_token1] = ACTIONS(3084), + [aux_sym_local_forward_token1] = ACTIONS(3084), + [aux_sym_log_level_token1] = ACTIONS(3084), + [aux_sym_log_verbose_token1] = ACTIONS(3084), + [aux_sym_macs_token1] = ACTIONS(3084), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3084), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3084), + [aux_sym_password_authentication_token1] = ACTIONS(3084), + [aux_sym_permit_local_command_token1] = ACTIONS(3084), + [aux_sym_permit_remote_open_token1] = ACTIONS(3084), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3084), + [aux_sym_port_token1] = ACTIONS(3084), + [aux_sym_preferred_authentications_token1] = ACTIONS(3084), + [aux_sym_protocol_token1] = ACTIONS(3084), + [aux_sym_proxy_command_token1] = ACTIONS(3084), + [aux_sym_proxy_jump_token1] = ACTIONS(3084), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3084), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3084), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3084), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3084), + [aux_sym_rekey_limit_token1] = ACTIONS(3084), + [aux_sym_remote_command_token1] = ACTIONS(3084), + [aux_sym_remote_forward_token1] = ACTIONS(3084), + [aux_sym_request_tty_token1] = ACTIONS(3084), + [aux_sym_required_rsa_size_token1] = ACTIONS(3084), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3084), + [aux_sym_security_key_provider_token1] = ACTIONS(3084), + [aux_sym_send_env_token1] = ACTIONS(3084), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3084), + [aux_sym_server_alive_interval_token1] = ACTIONS(3084), + [aux_sym_session_type_token1] = ACTIONS(3084), + [aux_sym_set_env_token1] = ACTIONS(3084), + [aux_sym_stdin_null_token1] = ACTIONS(3084), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3084), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3084), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3084), + [aux_sym_syslog_facility_token1] = ACTIONS(3084), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3084), + [aux_sym_keep_alive_token1] = ACTIONS(3084), + [aux_sym_tunnel_token1] = ACTIONS(3086), + [aux_sym_tunnel_device_token1] = ACTIONS(3084), + [aux_sym_update_host_keys_token1] = ACTIONS(3084), + [aux_sym_use_keychain_token1] = ACTIONS(3084), + [aux_sym_use_roaming_token1] = ACTIONS(3084), + [aux_sym_user_token1] = ACTIONS(3086), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3084), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3084), + [aux_sym_visual_host_key_token1] = ACTIONS(3084), + [aux_sym_xauth_location_token1] = ACTIONS(3084), }, [476] = { - [ts_builtin_sym_end] = ACTIONS(3093), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3095), - [aux_sym_match_token1] = ACTIONS(3093), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3093), - [aux_sym_address_family_token1] = ACTIONS(3093), - [aux_sym_batch_mode_token1] = ACTIONS(3093), - [aux_sym_bind_address_token1] = ACTIONS(3093), - [aux_sym_bind_interface_token1] = ACTIONS(3093), - [aux_sym_canonical_domains_token1] = ACTIONS(3093), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3093), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3093), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3093), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3093), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3093), - [aux_sym_certificate_file_token1] = ACTIONS(3093), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3093), - [aux_sym_check_host_ip_token1] = ACTIONS(3093), - [aux_sym_ciphers_token1] = ACTIONS(3093), - [aux_sym_cipher_token1] = ACTIONS(3095), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3093), - [aux_sym_compression_token1] = ACTIONS(3093), - [aux_sym_connection_attempts_token1] = ACTIONS(3093), - [aux_sym_connect_timeout_token1] = ACTIONS(3093), - [aux_sym_control_master_token1] = ACTIONS(3093), - [aux_sym_control_path_token1] = ACTIONS(3093), - [aux_sym_control_persist_token1] = ACTIONS(3093), - [aux_sym_dynamic_forward_token1] = ACTIONS(3093), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3093), - [aux_sym_escape_char_token1] = ACTIONS(3093), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3093), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3093), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3093), - [aux_sym_forward_agent_token1] = ACTIONS(3093), - [aux_sym_forward_x11_token1] = ACTIONS(3095), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3093), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3093), - [aux_sym_gateway_ports_token1] = ACTIONS(3093), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3093), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3093), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3093), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3093), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3093), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3093), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3093), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3093), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3093), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3093), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3093), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3093), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3093), - [aux_sym_host_key_alias_token1] = ACTIONS(3093), - [aux_sym_hostname_token1] = ACTIONS(3093), - [aux_sym_identities_only_token1] = ACTIONS(3093), - [aux_sym_identity_agent_token1] = ACTIONS(3093), - [aux_sym_identity_file_token1] = ACTIONS(3093), - [aux_sym_ignore_unknown_token1] = ACTIONS(3093), - [aux_sym_include_token1] = ACTIONS(3093), - [aux_sym_ip_qos_token1] = ACTIONS(3093), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3093), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3093), - [aux_sym_kex_algorithms_token1] = ACTIONS(3093), - [aux_sym_known_hosts_command_token1] = ACTIONS(3093), - [aux_sym_local_command_token1] = ACTIONS(3093), - [aux_sym_local_forward_token1] = ACTIONS(3093), - [aux_sym_log_level_token1] = ACTIONS(3093), - [aux_sym_log_verbose_token1] = ACTIONS(3093), - [aux_sym_macs_token1] = ACTIONS(3093), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3093), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3093), - [aux_sym_password_authentication_token1] = ACTIONS(3093), - [aux_sym_permit_local_command_token1] = ACTIONS(3093), - [aux_sym_permit_remote_open_token1] = ACTIONS(3093), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3093), - [aux_sym_port_token1] = ACTIONS(3093), - [aux_sym_preferred_authentications_token1] = ACTIONS(3093), - [aux_sym_protocol_token1] = ACTIONS(3093), - [aux_sym_proxy_command_token1] = ACTIONS(3093), - [aux_sym_proxy_jump_token1] = ACTIONS(3093), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3093), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3093), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3093), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3093), - [aux_sym_rekey_limit_token1] = ACTIONS(3093), - [aux_sym_remote_command_token1] = ACTIONS(3093), - [aux_sym_remote_forward_token1] = ACTIONS(3093), - [aux_sym_request_tty_token1] = ACTIONS(3093), - [aux_sym_required_rsa_size_token1] = ACTIONS(3093), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3093), - [aux_sym_security_key_provider_token1] = ACTIONS(3093), - [aux_sym_send_env_token1] = ACTIONS(3093), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3093), - [aux_sym_server_alive_interval_token1] = ACTIONS(3093), - [aux_sym_session_type_token1] = ACTIONS(3093), - [aux_sym_set_env_token1] = ACTIONS(3093), - [aux_sym_stdin_null_token1] = ACTIONS(3093), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3093), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3093), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3093), - [aux_sym_syslog_facility_token1] = ACTIONS(3093), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3093), - [aux_sym_keep_alive_token1] = ACTIONS(3093), - [aux_sym_tunnel_token1] = ACTIONS(3095), - [aux_sym_tunnel_device_token1] = ACTIONS(3093), - [aux_sym_update_host_keys_token1] = ACTIONS(3093), - [aux_sym_use_keychain_token1] = ACTIONS(3093), - [aux_sym_use_roaming_token1] = ACTIONS(3093), - [aux_sym_user_token1] = ACTIONS(3095), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3093), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3093), - [aux_sym_visual_host_key_token1] = ACTIONS(3093), - [aux_sym_xauth_location_token1] = ACTIONS(3093), + [ts_builtin_sym_end] = ACTIONS(3088), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3090), + [aux_sym_match_token1] = ACTIONS(3088), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3088), + [aux_sym_address_family_token1] = ACTIONS(3088), + [aux_sym_batch_mode_token1] = ACTIONS(3088), + [aux_sym_bind_address_token1] = ACTIONS(3088), + [aux_sym_bind_interface_token1] = ACTIONS(3088), + [aux_sym_canonical_domains_token1] = ACTIONS(3088), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3088), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3088), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3088), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3088), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3088), + [aux_sym_certificate_file_token1] = ACTIONS(3088), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3088), + [aux_sym_check_host_ip_token1] = ACTIONS(3088), + [aux_sym_ciphers_token1] = ACTIONS(3088), + [aux_sym_cipher_token1] = ACTIONS(3090), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3088), + [aux_sym_compression_token1] = ACTIONS(3088), + [aux_sym_connection_attempts_token1] = ACTIONS(3088), + [aux_sym_connect_timeout_token1] = ACTIONS(3088), + [aux_sym_control_master_token1] = ACTIONS(3088), + [aux_sym_control_path_token1] = ACTIONS(3088), + [aux_sym_control_persist_token1] = ACTIONS(3088), + [aux_sym_dynamic_forward_token1] = ACTIONS(3088), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3088), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3088), + [aux_sym_escape_char_token1] = ACTIONS(3088), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3088), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3088), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3088), + [aux_sym_forward_agent_token1] = ACTIONS(3088), + [aux_sym_forward_x11_token1] = ACTIONS(3090), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3088), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3088), + [aux_sym_gateway_ports_token1] = ACTIONS(3088), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3088), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3088), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3088), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3088), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3088), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3088), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3088), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3088), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3088), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3088), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3088), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3088), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3088), + [aux_sym_host_key_alias_token1] = ACTIONS(3088), + [aux_sym_hostname_token1] = ACTIONS(3088), + [aux_sym_identities_only_token1] = ACTIONS(3088), + [aux_sym_identity_agent_token1] = ACTIONS(3088), + [aux_sym_identity_file_token1] = ACTIONS(3088), + [aux_sym_ignore_unknown_token1] = ACTIONS(3088), + [aux_sym_include_token1] = ACTIONS(3088), + [aux_sym_ip_qos_token1] = ACTIONS(3088), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3088), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3088), + [aux_sym_kex_algorithms_token1] = ACTIONS(3088), + [aux_sym_known_hosts_command_token1] = ACTIONS(3088), + [aux_sym_local_command_token1] = ACTIONS(3088), + [aux_sym_local_forward_token1] = ACTIONS(3088), + [aux_sym_log_level_token1] = ACTIONS(3088), + [aux_sym_log_verbose_token1] = ACTIONS(3088), + [aux_sym_macs_token1] = ACTIONS(3088), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3088), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3088), + [aux_sym_password_authentication_token1] = ACTIONS(3088), + [aux_sym_permit_local_command_token1] = ACTIONS(3088), + [aux_sym_permit_remote_open_token1] = ACTIONS(3088), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3088), + [aux_sym_port_token1] = ACTIONS(3088), + [aux_sym_preferred_authentications_token1] = ACTIONS(3088), + [aux_sym_protocol_token1] = ACTIONS(3088), + [aux_sym_proxy_command_token1] = ACTIONS(3088), + [aux_sym_proxy_jump_token1] = ACTIONS(3088), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3088), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3088), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3088), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3088), + [aux_sym_rekey_limit_token1] = ACTIONS(3088), + [aux_sym_remote_command_token1] = ACTIONS(3088), + [aux_sym_remote_forward_token1] = ACTIONS(3088), + [aux_sym_request_tty_token1] = ACTIONS(3088), + [aux_sym_required_rsa_size_token1] = ACTIONS(3088), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3088), + [aux_sym_security_key_provider_token1] = ACTIONS(3088), + [aux_sym_send_env_token1] = ACTIONS(3088), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3088), + [aux_sym_server_alive_interval_token1] = ACTIONS(3088), + [aux_sym_session_type_token1] = ACTIONS(3088), + [aux_sym_set_env_token1] = ACTIONS(3088), + [aux_sym_stdin_null_token1] = ACTIONS(3088), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3088), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3088), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3088), + [aux_sym_syslog_facility_token1] = ACTIONS(3088), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3088), + [aux_sym_keep_alive_token1] = ACTIONS(3088), + [aux_sym_tunnel_token1] = ACTIONS(3090), + [aux_sym_tunnel_device_token1] = ACTIONS(3088), + [aux_sym_update_host_keys_token1] = ACTIONS(3088), + [aux_sym_use_keychain_token1] = ACTIONS(3088), + [aux_sym_use_roaming_token1] = ACTIONS(3088), + [aux_sym_user_token1] = ACTIONS(3090), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3088), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3088), + [aux_sym_visual_host_key_token1] = ACTIONS(3088), + [aux_sym_xauth_location_token1] = ACTIONS(3088), }, [477] = { - [ts_builtin_sym_end] = ACTIONS(3097), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3099), - [aux_sym_match_token1] = ACTIONS(3097), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3097), - [aux_sym_address_family_token1] = ACTIONS(3097), - [aux_sym_batch_mode_token1] = ACTIONS(3097), - [aux_sym_bind_address_token1] = ACTIONS(3097), - [aux_sym_bind_interface_token1] = ACTIONS(3097), - [aux_sym_canonical_domains_token1] = ACTIONS(3097), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3097), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3097), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3097), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3097), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3097), - [aux_sym_certificate_file_token1] = ACTIONS(3097), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3097), - [aux_sym_check_host_ip_token1] = ACTIONS(3097), - [aux_sym_ciphers_token1] = ACTIONS(3097), - [aux_sym_cipher_token1] = ACTIONS(3099), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3097), - [aux_sym_compression_token1] = ACTIONS(3097), - [aux_sym_connection_attempts_token1] = ACTIONS(3097), - [aux_sym_connect_timeout_token1] = ACTIONS(3097), - [aux_sym_control_master_token1] = ACTIONS(3097), - [aux_sym_control_path_token1] = ACTIONS(3097), - [aux_sym_control_persist_token1] = ACTIONS(3097), - [aux_sym_dynamic_forward_token1] = ACTIONS(3097), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3097), - [aux_sym_escape_char_token1] = ACTIONS(3097), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3097), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3097), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3097), - [aux_sym_forward_agent_token1] = ACTIONS(3097), - [aux_sym_forward_x11_token1] = ACTIONS(3099), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3097), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3097), - [aux_sym_gateway_ports_token1] = ACTIONS(3097), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3097), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3097), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3097), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3097), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3097), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3097), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3097), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3097), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3097), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3097), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3097), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3097), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3097), - [aux_sym_host_key_alias_token1] = ACTIONS(3097), - [aux_sym_hostname_token1] = ACTIONS(3097), - [aux_sym_identities_only_token1] = ACTIONS(3097), - [aux_sym_identity_agent_token1] = ACTIONS(3097), - [aux_sym_identity_file_token1] = ACTIONS(3097), - [aux_sym_ignore_unknown_token1] = ACTIONS(3097), - [aux_sym_include_token1] = ACTIONS(3097), - [aux_sym_ip_qos_token1] = ACTIONS(3097), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3097), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3097), - [aux_sym_kex_algorithms_token1] = ACTIONS(3097), - [aux_sym_known_hosts_command_token1] = ACTIONS(3097), - [aux_sym_local_command_token1] = ACTIONS(3097), - [aux_sym_local_forward_token1] = ACTIONS(3097), - [aux_sym_log_level_token1] = ACTIONS(3097), - [aux_sym_log_verbose_token1] = ACTIONS(3097), - [aux_sym_macs_token1] = ACTIONS(3097), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3097), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3097), - [aux_sym_password_authentication_token1] = ACTIONS(3097), - [aux_sym_permit_local_command_token1] = ACTIONS(3097), - [aux_sym_permit_remote_open_token1] = ACTIONS(3097), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3097), - [aux_sym_port_token1] = ACTIONS(3097), - [aux_sym_preferred_authentications_token1] = ACTIONS(3097), - [aux_sym_protocol_token1] = ACTIONS(3097), - [aux_sym_proxy_command_token1] = ACTIONS(3097), - [aux_sym_proxy_jump_token1] = ACTIONS(3097), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3097), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3097), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3097), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3097), - [aux_sym_rekey_limit_token1] = ACTIONS(3097), - [aux_sym_remote_command_token1] = ACTIONS(3097), - [aux_sym_remote_forward_token1] = ACTIONS(3097), - [aux_sym_request_tty_token1] = ACTIONS(3097), - [aux_sym_required_rsa_size_token1] = ACTIONS(3097), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3097), - [aux_sym_security_key_provider_token1] = ACTIONS(3097), - [aux_sym_send_env_token1] = ACTIONS(3097), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3097), - [aux_sym_server_alive_interval_token1] = ACTIONS(3097), - [aux_sym_session_type_token1] = ACTIONS(3097), - [aux_sym_set_env_token1] = ACTIONS(3097), - [aux_sym_stdin_null_token1] = ACTIONS(3097), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3097), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3097), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3097), - [aux_sym_syslog_facility_token1] = ACTIONS(3097), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3097), - [aux_sym_keep_alive_token1] = ACTIONS(3097), - [aux_sym_tunnel_token1] = ACTIONS(3099), - [aux_sym_tunnel_device_token1] = ACTIONS(3097), - [aux_sym_update_host_keys_token1] = ACTIONS(3097), - [aux_sym_use_keychain_token1] = ACTIONS(3097), - [aux_sym_use_roaming_token1] = ACTIONS(3097), - [aux_sym_user_token1] = ACTIONS(3099), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3097), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3097), - [aux_sym_visual_host_key_token1] = ACTIONS(3097), - [aux_sym_xauth_location_token1] = ACTIONS(3097), + [ts_builtin_sym_end] = ACTIONS(3092), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3094), + [aux_sym_match_token1] = ACTIONS(3092), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3092), + [aux_sym_address_family_token1] = ACTIONS(3092), + [aux_sym_batch_mode_token1] = ACTIONS(3092), + [aux_sym_bind_address_token1] = ACTIONS(3092), + [aux_sym_bind_interface_token1] = ACTIONS(3092), + [aux_sym_canonical_domains_token1] = ACTIONS(3092), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3092), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3092), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3092), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3092), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3092), + [aux_sym_certificate_file_token1] = ACTIONS(3092), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3092), + [aux_sym_check_host_ip_token1] = ACTIONS(3092), + [aux_sym_ciphers_token1] = ACTIONS(3092), + [aux_sym_cipher_token1] = ACTIONS(3094), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3092), + [aux_sym_compression_token1] = ACTIONS(3092), + [aux_sym_connection_attempts_token1] = ACTIONS(3092), + [aux_sym_connect_timeout_token1] = ACTIONS(3092), + [aux_sym_control_master_token1] = ACTIONS(3092), + [aux_sym_control_path_token1] = ACTIONS(3092), + [aux_sym_control_persist_token1] = ACTIONS(3092), + [aux_sym_dynamic_forward_token1] = ACTIONS(3092), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3092), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3092), + [aux_sym_escape_char_token1] = ACTIONS(3092), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3092), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3092), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3092), + [aux_sym_forward_agent_token1] = ACTIONS(3092), + [aux_sym_forward_x11_token1] = ACTIONS(3094), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3092), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3092), + [aux_sym_gateway_ports_token1] = ACTIONS(3092), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3092), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3092), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3092), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3092), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3092), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3092), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3092), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3092), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3092), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3092), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3092), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3092), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3092), + [aux_sym_host_key_alias_token1] = ACTIONS(3092), + [aux_sym_hostname_token1] = ACTIONS(3092), + [aux_sym_identities_only_token1] = ACTIONS(3092), + [aux_sym_identity_agent_token1] = ACTIONS(3092), + [aux_sym_identity_file_token1] = ACTIONS(3092), + [aux_sym_ignore_unknown_token1] = ACTIONS(3092), + [aux_sym_include_token1] = ACTIONS(3092), + [aux_sym_ip_qos_token1] = ACTIONS(3092), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3092), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3092), + [aux_sym_kex_algorithms_token1] = ACTIONS(3092), + [aux_sym_known_hosts_command_token1] = ACTIONS(3092), + [aux_sym_local_command_token1] = ACTIONS(3092), + [aux_sym_local_forward_token1] = ACTIONS(3092), + [aux_sym_log_level_token1] = ACTIONS(3092), + [aux_sym_log_verbose_token1] = ACTIONS(3092), + [aux_sym_macs_token1] = ACTIONS(3092), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3092), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3092), + [aux_sym_password_authentication_token1] = ACTIONS(3092), + [aux_sym_permit_local_command_token1] = ACTIONS(3092), + [aux_sym_permit_remote_open_token1] = ACTIONS(3092), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3092), + [aux_sym_port_token1] = ACTIONS(3092), + [aux_sym_preferred_authentications_token1] = ACTIONS(3092), + [aux_sym_protocol_token1] = ACTIONS(3092), + [aux_sym_proxy_command_token1] = ACTIONS(3092), + [aux_sym_proxy_jump_token1] = ACTIONS(3092), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3092), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3092), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3092), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3092), + [aux_sym_rekey_limit_token1] = ACTIONS(3092), + [aux_sym_remote_command_token1] = ACTIONS(3092), + [aux_sym_remote_forward_token1] = ACTIONS(3092), + [aux_sym_request_tty_token1] = ACTIONS(3092), + [aux_sym_required_rsa_size_token1] = ACTIONS(3092), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3092), + [aux_sym_security_key_provider_token1] = ACTIONS(3092), + [aux_sym_send_env_token1] = ACTIONS(3092), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3092), + [aux_sym_server_alive_interval_token1] = ACTIONS(3092), + [aux_sym_session_type_token1] = ACTIONS(3092), + [aux_sym_set_env_token1] = ACTIONS(3092), + [aux_sym_stdin_null_token1] = ACTIONS(3092), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3092), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3092), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3092), + [aux_sym_syslog_facility_token1] = ACTIONS(3092), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3092), + [aux_sym_keep_alive_token1] = ACTIONS(3092), + [aux_sym_tunnel_token1] = ACTIONS(3094), + [aux_sym_tunnel_device_token1] = ACTIONS(3092), + [aux_sym_update_host_keys_token1] = ACTIONS(3092), + [aux_sym_use_keychain_token1] = ACTIONS(3092), + [aux_sym_use_roaming_token1] = ACTIONS(3092), + [aux_sym_user_token1] = ACTIONS(3094), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3092), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3092), + [aux_sym_visual_host_key_token1] = ACTIONS(3092), + [aux_sym_xauth_location_token1] = ACTIONS(3092), }, [478] = { - [ts_builtin_sym_end] = ACTIONS(3101), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3103), - [aux_sym_match_token1] = ACTIONS(3101), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3101), - [aux_sym_address_family_token1] = ACTIONS(3101), - [aux_sym_batch_mode_token1] = ACTIONS(3101), - [aux_sym_bind_address_token1] = ACTIONS(3101), - [aux_sym_bind_interface_token1] = ACTIONS(3101), - [aux_sym_canonical_domains_token1] = ACTIONS(3101), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3101), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3101), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3101), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3101), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3101), - [aux_sym_certificate_file_token1] = ACTIONS(3101), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3101), - [aux_sym_check_host_ip_token1] = ACTIONS(3101), - [aux_sym_ciphers_token1] = ACTIONS(3101), - [aux_sym_cipher_token1] = ACTIONS(3103), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3101), - [aux_sym_compression_token1] = ACTIONS(3101), - [aux_sym_connection_attempts_token1] = ACTIONS(3101), - [aux_sym_connect_timeout_token1] = ACTIONS(3101), - [aux_sym_control_master_token1] = ACTIONS(3101), - [aux_sym_control_path_token1] = ACTIONS(3101), - [aux_sym_control_persist_token1] = ACTIONS(3101), - [aux_sym_dynamic_forward_token1] = ACTIONS(3101), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3101), - [aux_sym_escape_char_token1] = ACTIONS(3101), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3101), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3101), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3101), - [aux_sym_forward_agent_token1] = ACTIONS(3101), - [aux_sym_forward_x11_token1] = ACTIONS(3103), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3101), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3101), - [aux_sym_gateway_ports_token1] = ACTIONS(3101), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3101), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3101), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3101), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3101), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3101), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3101), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3101), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3101), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3101), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3101), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3101), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3101), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3101), - [aux_sym_host_key_alias_token1] = ACTIONS(3101), - [aux_sym_hostname_token1] = ACTIONS(3101), - [aux_sym_identities_only_token1] = ACTIONS(3101), - [aux_sym_identity_agent_token1] = ACTIONS(3101), - [aux_sym_identity_file_token1] = ACTIONS(3101), - [aux_sym_ignore_unknown_token1] = ACTIONS(3101), - [aux_sym_include_token1] = ACTIONS(3101), - [aux_sym_ip_qos_token1] = ACTIONS(3101), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3101), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3101), - [aux_sym_kex_algorithms_token1] = ACTIONS(3101), - [aux_sym_known_hosts_command_token1] = ACTIONS(3101), - [aux_sym_local_command_token1] = ACTIONS(3101), - [aux_sym_local_forward_token1] = ACTIONS(3101), - [aux_sym_log_level_token1] = ACTIONS(3101), - [aux_sym_log_verbose_token1] = ACTIONS(3101), - [aux_sym_macs_token1] = ACTIONS(3101), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3101), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3101), - [aux_sym_password_authentication_token1] = ACTIONS(3101), - [aux_sym_permit_local_command_token1] = ACTIONS(3101), - [aux_sym_permit_remote_open_token1] = ACTIONS(3101), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3101), - [aux_sym_port_token1] = ACTIONS(3101), - [aux_sym_preferred_authentications_token1] = ACTIONS(3101), - [aux_sym_protocol_token1] = ACTIONS(3101), - [aux_sym_proxy_command_token1] = ACTIONS(3101), - [aux_sym_proxy_jump_token1] = ACTIONS(3101), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3101), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3101), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3101), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3101), - [aux_sym_rekey_limit_token1] = ACTIONS(3101), - [aux_sym_remote_command_token1] = ACTIONS(3101), - [aux_sym_remote_forward_token1] = ACTIONS(3101), - [aux_sym_request_tty_token1] = ACTIONS(3101), - [aux_sym_required_rsa_size_token1] = ACTIONS(3101), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3101), - [aux_sym_security_key_provider_token1] = ACTIONS(3101), - [aux_sym_send_env_token1] = ACTIONS(3101), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3101), - [aux_sym_server_alive_interval_token1] = ACTIONS(3101), - [aux_sym_session_type_token1] = ACTIONS(3101), - [aux_sym_set_env_token1] = ACTIONS(3101), - [aux_sym_stdin_null_token1] = ACTIONS(3101), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3101), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3101), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3101), - [aux_sym_syslog_facility_token1] = ACTIONS(3101), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3101), - [aux_sym_keep_alive_token1] = ACTIONS(3101), - [aux_sym_tunnel_token1] = ACTIONS(3103), - [aux_sym_tunnel_device_token1] = ACTIONS(3101), - [aux_sym_update_host_keys_token1] = ACTIONS(3101), - [aux_sym_use_keychain_token1] = ACTIONS(3101), - [aux_sym_use_roaming_token1] = ACTIONS(3101), - [aux_sym_user_token1] = ACTIONS(3103), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3101), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3101), - [aux_sym_visual_host_key_token1] = ACTIONS(3101), - [aux_sym_xauth_location_token1] = ACTIONS(3101), + [ts_builtin_sym_end] = ACTIONS(3096), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3098), + [aux_sym_match_token1] = ACTIONS(3096), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3096), + [aux_sym_address_family_token1] = ACTIONS(3096), + [aux_sym_batch_mode_token1] = ACTIONS(3096), + [aux_sym_bind_address_token1] = ACTIONS(3096), + [aux_sym_bind_interface_token1] = ACTIONS(3096), + [aux_sym_canonical_domains_token1] = ACTIONS(3096), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3096), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3096), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3096), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3096), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3096), + [aux_sym_certificate_file_token1] = ACTIONS(3096), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3096), + [aux_sym_check_host_ip_token1] = ACTIONS(3096), + [aux_sym_ciphers_token1] = ACTIONS(3096), + [aux_sym_cipher_token1] = ACTIONS(3098), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3096), + [aux_sym_compression_token1] = ACTIONS(3096), + [aux_sym_connection_attempts_token1] = ACTIONS(3096), + [aux_sym_connect_timeout_token1] = ACTIONS(3096), + [aux_sym_control_master_token1] = ACTIONS(3096), + [aux_sym_control_path_token1] = ACTIONS(3096), + [aux_sym_control_persist_token1] = ACTIONS(3096), + [aux_sym_dynamic_forward_token1] = ACTIONS(3096), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3096), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3096), + [aux_sym_escape_char_token1] = ACTIONS(3096), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3096), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3096), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3096), + [aux_sym_forward_agent_token1] = ACTIONS(3096), + [aux_sym_forward_x11_token1] = ACTIONS(3098), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3096), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3096), + [aux_sym_gateway_ports_token1] = ACTIONS(3096), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3096), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3096), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3096), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3096), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3096), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3096), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3096), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3096), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3096), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3096), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3096), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3096), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3096), + [aux_sym_host_key_alias_token1] = ACTIONS(3096), + [aux_sym_hostname_token1] = ACTIONS(3096), + [aux_sym_identities_only_token1] = ACTIONS(3096), + [aux_sym_identity_agent_token1] = ACTIONS(3096), + [aux_sym_identity_file_token1] = ACTIONS(3096), + [aux_sym_ignore_unknown_token1] = ACTIONS(3096), + [aux_sym_include_token1] = ACTIONS(3096), + [aux_sym_ip_qos_token1] = ACTIONS(3096), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3096), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3096), + [aux_sym_kex_algorithms_token1] = ACTIONS(3096), + [aux_sym_known_hosts_command_token1] = ACTIONS(3096), + [aux_sym_local_command_token1] = ACTIONS(3096), + [aux_sym_local_forward_token1] = ACTIONS(3096), + [aux_sym_log_level_token1] = ACTIONS(3096), + [aux_sym_log_verbose_token1] = ACTIONS(3096), + [aux_sym_macs_token1] = ACTIONS(3096), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3096), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3096), + [aux_sym_password_authentication_token1] = ACTIONS(3096), + [aux_sym_permit_local_command_token1] = ACTIONS(3096), + [aux_sym_permit_remote_open_token1] = ACTIONS(3096), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3096), + [aux_sym_port_token1] = ACTIONS(3096), + [aux_sym_preferred_authentications_token1] = ACTIONS(3096), + [aux_sym_protocol_token1] = ACTIONS(3096), + [aux_sym_proxy_command_token1] = ACTIONS(3096), + [aux_sym_proxy_jump_token1] = ACTIONS(3096), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3096), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3096), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3096), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3096), + [aux_sym_rekey_limit_token1] = ACTIONS(3096), + [aux_sym_remote_command_token1] = ACTIONS(3096), + [aux_sym_remote_forward_token1] = ACTIONS(3096), + [aux_sym_request_tty_token1] = ACTIONS(3096), + [aux_sym_required_rsa_size_token1] = ACTIONS(3096), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3096), + [aux_sym_security_key_provider_token1] = ACTIONS(3096), + [aux_sym_send_env_token1] = ACTIONS(3096), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3096), + [aux_sym_server_alive_interval_token1] = ACTIONS(3096), + [aux_sym_session_type_token1] = ACTIONS(3096), + [aux_sym_set_env_token1] = ACTIONS(3096), + [aux_sym_stdin_null_token1] = ACTIONS(3096), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3096), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3096), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3096), + [aux_sym_syslog_facility_token1] = ACTIONS(3096), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3096), + [aux_sym_keep_alive_token1] = ACTIONS(3096), + [aux_sym_tunnel_token1] = ACTIONS(3098), + [aux_sym_tunnel_device_token1] = ACTIONS(3096), + [aux_sym_update_host_keys_token1] = ACTIONS(3096), + [aux_sym_use_keychain_token1] = ACTIONS(3096), + [aux_sym_use_roaming_token1] = ACTIONS(3096), + [aux_sym_user_token1] = ACTIONS(3098), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3096), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3096), + [aux_sym_visual_host_key_token1] = ACTIONS(3096), + [aux_sym_xauth_location_token1] = ACTIONS(3096), }, [479] = { - [ts_builtin_sym_end] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1637), - [aux_sym_match_token1] = ACTIONS(1635), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1635), - [aux_sym_address_family_token1] = ACTIONS(1635), - [aux_sym_batch_mode_token1] = ACTIONS(1635), - [aux_sym_bind_address_token1] = ACTIONS(1635), - [aux_sym_bind_interface_token1] = ACTIONS(1635), - [aux_sym_canonical_domains_token1] = ACTIONS(1635), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1635), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1635), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1635), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1635), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1635), - [aux_sym_certificate_file_token1] = ACTIONS(1635), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1635), - [aux_sym_check_host_ip_token1] = ACTIONS(1635), - [aux_sym_ciphers_token1] = ACTIONS(1635), - [aux_sym_cipher_token1] = ACTIONS(1637), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1635), - [aux_sym_compression_token1] = ACTIONS(1635), - [aux_sym_connection_attempts_token1] = ACTIONS(1635), - [aux_sym_connect_timeout_token1] = ACTIONS(1635), - [aux_sym_control_master_token1] = ACTIONS(1635), - [aux_sym_control_path_token1] = ACTIONS(1635), - [aux_sym_control_persist_token1] = ACTIONS(1635), - [aux_sym_dynamic_forward_token1] = ACTIONS(1635), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1635), - [aux_sym_escape_char_token1] = ACTIONS(1635), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1635), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1635), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1635), - [aux_sym_forward_agent_token1] = ACTIONS(1635), - [aux_sym_forward_x11_token1] = ACTIONS(1637), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1635), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1635), - [aux_sym_gateway_ports_token1] = ACTIONS(1635), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1635), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1635), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1635), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1635), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1635), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1635), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1635), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1635), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1635), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1635), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1635), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1635), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1635), - [aux_sym_host_key_alias_token1] = ACTIONS(1635), - [aux_sym_hostname_token1] = ACTIONS(1635), - [aux_sym_identities_only_token1] = ACTIONS(1635), - [aux_sym_identity_agent_token1] = ACTIONS(1635), - [aux_sym_identity_file_token1] = ACTIONS(1635), - [aux_sym_ignore_unknown_token1] = ACTIONS(1635), - [aux_sym_include_token1] = ACTIONS(1635), - [aux_sym_ip_qos_token1] = ACTIONS(1635), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1635), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1635), - [aux_sym_kex_algorithms_token1] = ACTIONS(1635), - [aux_sym_known_hosts_command_token1] = ACTIONS(1635), - [aux_sym_local_command_token1] = ACTIONS(1635), - [aux_sym_local_forward_token1] = ACTIONS(1635), - [aux_sym_log_level_token1] = ACTIONS(1635), - [aux_sym_log_verbose_token1] = ACTIONS(1635), - [aux_sym_macs_token1] = ACTIONS(1635), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1635), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1635), - [aux_sym_password_authentication_token1] = ACTIONS(1635), - [aux_sym_permit_local_command_token1] = ACTIONS(1635), - [aux_sym_permit_remote_open_token1] = ACTIONS(1635), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1635), - [aux_sym_port_token1] = ACTIONS(1635), - [aux_sym_preferred_authentications_token1] = ACTIONS(1635), - [aux_sym_protocol_token1] = ACTIONS(1635), - [aux_sym_proxy_command_token1] = ACTIONS(1635), - [aux_sym_proxy_jump_token1] = ACTIONS(1635), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1635), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1635), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1635), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1635), - [aux_sym_rekey_limit_token1] = ACTIONS(1635), - [aux_sym_remote_command_token1] = ACTIONS(1635), - [aux_sym_remote_forward_token1] = ACTIONS(1635), - [aux_sym_request_tty_token1] = ACTIONS(1635), - [aux_sym_required_rsa_size_token1] = ACTIONS(1635), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1635), - [aux_sym_security_key_provider_token1] = ACTIONS(1635), - [aux_sym_send_env_token1] = ACTIONS(1635), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1635), - [aux_sym_server_alive_interval_token1] = ACTIONS(1635), - [aux_sym_session_type_token1] = ACTIONS(1635), - [aux_sym_set_env_token1] = ACTIONS(1635), - [aux_sym_stdin_null_token1] = ACTIONS(1635), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1635), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1635), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1635), - [aux_sym_syslog_facility_token1] = ACTIONS(1635), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1635), - [aux_sym_keep_alive_token1] = ACTIONS(1635), - [aux_sym_tunnel_token1] = ACTIONS(1637), - [aux_sym_tunnel_device_token1] = ACTIONS(1635), - [aux_sym_update_host_keys_token1] = ACTIONS(1635), - [aux_sym_use_keychain_token1] = ACTIONS(1635), - [aux_sym_use_roaming_token1] = ACTIONS(1635), - [aux_sym_user_token1] = ACTIONS(1637), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1635), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1635), - [aux_sym_visual_host_key_token1] = ACTIONS(1635), - [aux_sym_xauth_location_token1] = ACTIONS(1635), + [ts_builtin_sym_end] = ACTIONS(3100), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3102), + [aux_sym_match_token1] = ACTIONS(3100), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3100), + [aux_sym_address_family_token1] = ACTIONS(3100), + [aux_sym_batch_mode_token1] = ACTIONS(3100), + [aux_sym_bind_address_token1] = ACTIONS(3100), + [aux_sym_bind_interface_token1] = ACTIONS(3100), + [aux_sym_canonical_domains_token1] = ACTIONS(3100), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3100), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3100), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3100), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3100), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3100), + [aux_sym_certificate_file_token1] = ACTIONS(3100), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3100), + [aux_sym_check_host_ip_token1] = ACTIONS(3100), + [aux_sym_ciphers_token1] = ACTIONS(3100), + [aux_sym_cipher_token1] = ACTIONS(3102), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3100), + [aux_sym_compression_token1] = ACTIONS(3100), + [aux_sym_connection_attempts_token1] = ACTIONS(3100), + [aux_sym_connect_timeout_token1] = ACTIONS(3100), + [aux_sym_control_master_token1] = ACTIONS(3100), + [aux_sym_control_path_token1] = ACTIONS(3100), + [aux_sym_control_persist_token1] = ACTIONS(3100), + [aux_sym_dynamic_forward_token1] = ACTIONS(3100), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3100), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3100), + [aux_sym_escape_char_token1] = ACTIONS(3100), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3100), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3100), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3100), + [aux_sym_forward_agent_token1] = ACTIONS(3100), + [aux_sym_forward_x11_token1] = ACTIONS(3102), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3100), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3100), + [aux_sym_gateway_ports_token1] = ACTIONS(3100), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3100), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3100), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3100), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3100), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3100), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3100), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3100), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3100), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3100), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3100), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3100), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3100), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3100), + [aux_sym_host_key_alias_token1] = ACTIONS(3100), + [aux_sym_hostname_token1] = ACTIONS(3100), + [aux_sym_identities_only_token1] = ACTIONS(3100), + [aux_sym_identity_agent_token1] = ACTIONS(3100), + [aux_sym_identity_file_token1] = ACTIONS(3100), + [aux_sym_ignore_unknown_token1] = ACTIONS(3100), + [aux_sym_include_token1] = ACTIONS(3100), + [aux_sym_ip_qos_token1] = ACTIONS(3100), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3100), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3100), + [aux_sym_kex_algorithms_token1] = ACTIONS(3100), + [aux_sym_known_hosts_command_token1] = ACTIONS(3100), + [aux_sym_local_command_token1] = ACTIONS(3100), + [aux_sym_local_forward_token1] = ACTIONS(3100), + [aux_sym_log_level_token1] = ACTIONS(3100), + [aux_sym_log_verbose_token1] = ACTIONS(3100), + [aux_sym_macs_token1] = ACTIONS(3100), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3100), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3100), + [aux_sym_password_authentication_token1] = ACTIONS(3100), + [aux_sym_permit_local_command_token1] = ACTIONS(3100), + [aux_sym_permit_remote_open_token1] = ACTIONS(3100), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3100), + [aux_sym_port_token1] = ACTIONS(3100), + [aux_sym_preferred_authentications_token1] = ACTIONS(3100), + [aux_sym_protocol_token1] = ACTIONS(3100), + [aux_sym_proxy_command_token1] = ACTIONS(3100), + [aux_sym_proxy_jump_token1] = ACTIONS(3100), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3100), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3100), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3100), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3100), + [aux_sym_rekey_limit_token1] = ACTIONS(3100), + [aux_sym_remote_command_token1] = ACTIONS(3100), + [aux_sym_remote_forward_token1] = ACTIONS(3100), + [aux_sym_request_tty_token1] = ACTIONS(3100), + [aux_sym_required_rsa_size_token1] = ACTIONS(3100), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3100), + [aux_sym_security_key_provider_token1] = ACTIONS(3100), + [aux_sym_send_env_token1] = ACTIONS(3100), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3100), + [aux_sym_server_alive_interval_token1] = ACTIONS(3100), + [aux_sym_session_type_token1] = ACTIONS(3100), + [aux_sym_set_env_token1] = ACTIONS(3100), + [aux_sym_stdin_null_token1] = ACTIONS(3100), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3100), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3100), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3100), + [aux_sym_syslog_facility_token1] = ACTIONS(3100), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3100), + [aux_sym_keep_alive_token1] = ACTIONS(3100), + [aux_sym_tunnel_token1] = ACTIONS(3102), + [aux_sym_tunnel_device_token1] = ACTIONS(3100), + [aux_sym_update_host_keys_token1] = ACTIONS(3100), + [aux_sym_use_keychain_token1] = ACTIONS(3100), + [aux_sym_use_roaming_token1] = ACTIONS(3100), + [aux_sym_user_token1] = ACTIONS(3102), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3100), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3100), + [aux_sym_visual_host_key_token1] = ACTIONS(3100), + [aux_sym_xauth_location_token1] = ACTIONS(3100), }, [480] = { - [ts_builtin_sym_end] = ACTIONS(1605), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1607), - [aux_sym_match_token1] = ACTIONS(1605), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1605), - [aux_sym_address_family_token1] = ACTIONS(1605), - [aux_sym_batch_mode_token1] = ACTIONS(1605), - [aux_sym_bind_address_token1] = ACTIONS(1605), - [aux_sym_bind_interface_token1] = ACTIONS(1605), - [aux_sym_canonical_domains_token1] = ACTIONS(1605), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1605), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1605), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1605), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1605), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1605), - [aux_sym_certificate_file_token1] = ACTIONS(1605), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1605), - [aux_sym_check_host_ip_token1] = ACTIONS(1605), - [aux_sym_ciphers_token1] = ACTIONS(1605), - [aux_sym_cipher_token1] = ACTIONS(1607), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1605), - [aux_sym_compression_token1] = ACTIONS(1605), - [aux_sym_connection_attempts_token1] = ACTIONS(1605), - [aux_sym_connect_timeout_token1] = ACTIONS(1605), - [aux_sym_control_master_token1] = ACTIONS(1605), - [aux_sym_control_path_token1] = ACTIONS(1605), - [aux_sym_control_persist_token1] = ACTIONS(1605), - [aux_sym_dynamic_forward_token1] = ACTIONS(1605), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1605), - [aux_sym_escape_char_token1] = ACTIONS(1605), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1605), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1605), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1605), - [aux_sym_forward_agent_token1] = ACTIONS(1605), - [aux_sym_forward_x11_token1] = ACTIONS(1607), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1605), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1605), - [aux_sym_gateway_ports_token1] = ACTIONS(1605), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1605), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1605), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1605), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1605), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1605), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1605), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1605), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1605), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1605), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1605), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1605), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1605), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1605), - [aux_sym_host_key_alias_token1] = ACTIONS(1605), - [aux_sym_hostname_token1] = ACTIONS(1605), - [aux_sym_identities_only_token1] = ACTIONS(1605), - [aux_sym_identity_agent_token1] = ACTIONS(1605), - [aux_sym_identity_file_token1] = ACTIONS(1605), - [aux_sym_ignore_unknown_token1] = ACTIONS(1605), - [aux_sym_include_token1] = ACTIONS(1605), - [aux_sym_ip_qos_token1] = ACTIONS(1605), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1605), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1605), - [aux_sym_kex_algorithms_token1] = ACTIONS(1605), - [aux_sym_known_hosts_command_token1] = ACTIONS(1605), - [aux_sym_local_command_token1] = ACTIONS(1605), - [aux_sym_local_forward_token1] = ACTIONS(1605), - [aux_sym_log_level_token1] = ACTIONS(1605), - [aux_sym_log_verbose_token1] = ACTIONS(1605), - [aux_sym_macs_token1] = ACTIONS(1605), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1605), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1605), - [aux_sym_password_authentication_token1] = ACTIONS(1605), - [aux_sym_permit_local_command_token1] = ACTIONS(1605), - [aux_sym_permit_remote_open_token1] = ACTIONS(1605), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1605), - [aux_sym_port_token1] = ACTIONS(1605), - [aux_sym_preferred_authentications_token1] = ACTIONS(1605), - [aux_sym_protocol_token1] = ACTIONS(1605), - [aux_sym_proxy_command_token1] = ACTIONS(1605), - [aux_sym_proxy_jump_token1] = ACTIONS(1605), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1605), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1605), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1605), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1605), - [aux_sym_rekey_limit_token1] = ACTIONS(1605), - [aux_sym_remote_command_token1] = ACTIONS(1605), - [aux_sym_remote_forward_token1] = ACTIONS(1605), - [aux_sym_request_tty_token1] = ACTIONS(1605), - [aux_sym_required_rsa_size_token1] = ACTIONS(1605), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1605), - [aux_sym_security_key_provider_token1] = ACTIONS(1605), - [aux_sym_send_env_token1] = ACTIONS(1605), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1605), - [aux_sym_server_alive_interval_token1] = ACTIONS(1605), - [aux_sym_session_type_token1] = ACTIONS(1605), - [aux_sym_set_env_token1] = ACTIONS(1605), - [aux_sym_stdin_null_token1] = ACTIONS(1605), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1605), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1605), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1605), - [aux_sym_syslog_facility_token1] = ACTIONS(1605), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1605), - [aux_sym_keep_alive_token1] = ACTIONS(1605), - [aux_sym_tunnel_token1] = ACTIONS(1607), - [aux_sym_tunnel_device_token1] = ACTIONS(1605), - [aux_sym_update_host_keys_token1] = ACTIONS(1605), - [aux_sym_use_keychain_token1] = ACTIONS(1605), - [aux_sym_use_roaming_token1] = ACTIONS(1605), - [aux_sym_user_token1] = ACTIONS(1607), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1605), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1605), - [aux_sym_visual_host_key_token1] = ACTIONS(1605), - [aux_sym_xauth_location_token1] = ACTIONS(1605), + [ts_builtin_sym_end] = ACTIONS(1076), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1078), + [aux_sym_match_token1] = ACTIONS(1076), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1076), + [aux_sym_address_family_token1] = ACTIONS(1076), + [aux_sym_batch_mode_token1] = ACTIONS(1076), + [aux_sym_bind_address_token1] = ACTIONS(1076), + [aux_sym_bind_interface_token1] = ACTIONS(1076), + [aux_sym_canonical_domains_token1] = ACTIONS(1076), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1076), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1076), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1076), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1076), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1076), + [aux_sym_certificate_file_token1] = ACTIONS(1076), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1076), + [aux_sym_check_host_ip_token1] = ACTIONS(1076), + [aux_sym_ciphers_token1] = ACTIONS(1076), + [aux_sym_cipher_token1] = ACTIONS(1078), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1076), + [aux_sym_compression_token1] = ACTIONS(1076), + [aux_sym_connection_attempts_token1] = ACTIONS(1076), + [aux_sym_connect_timeout_token1] = ACTIONS(1076), + [aux_sym_control_master_token1] = ACTIONS(1076), + [aux_sym_control_path_token1] = ACTIONS(1076), + [aux_sym_control_persist_token1] = ACTIONS(1076), + [aux_sym_dynamic_forward_token1] = ACTIONS(1076), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1076), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1076), + [aux_sym_escape_char_token1] = ACTIONS(1076), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1076), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1076), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1076), + [aux_sym_forward_agent_token1] = ACTIONS(1076), + [aux_sym_forward_x11_token1] = ACTIONS(1078), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1076), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1076), + [aux_sym_gateway_ports_token1] = ACTIONS(1076), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1076), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1076), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1076), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1076), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1076), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1076), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1076), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1076), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1076), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1076), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1076), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1076), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1076), + [aux_sym_host_key_alias_token1] = ACTIONS(1076), + [aux_sym_hostname_token1] = ACTIONS(1076), + [aux_sym_identities_only_token1] = ACTIONS(1076), + [aux_sym_identity_agent_token1] = ACTIONS(1076), + [aux_sym_identity_file_token1] = ACTIONS(1076), + [aux_sym_ignore_unknown_token1] = ACTIONS(1076), + [aux_sym_include_token1] = ACTIONS(1076), + [aux_sym_ip_qos_token1] = ACTIONS(1076), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1076), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1076), + [aux_sym_kex_algorithms_token1] = ACTIONS(1076), + [aux_sym_known_hosts_command_token1] = ACTIONS(1076), + [aux_sym_local_command_token1] = ACTIONS(1076), + [aux_sym_local_forward_token1] = ACTIONS(1076), + [aux_sym_log_level_token1] = ACTIONS(1076), + [aux_sym_log_verbose_token1] = ACTIONS(1076), + [aux_sym_macs_token1] = ACTIONS(1076), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1076), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1076), + [aux_sym_password_authentication_token1] = ACTIONS(1076), + [aux_sym_permit_local_command_token1] = ACTIONS(1076), + [aux_sym_permit_remote_open_token1] = ACTIONS(1076), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1076), + [aux_sym_port_token1] = ACTIONS(1076), + [aux_sym_preferred_authentications_token1] = ACTIONS(1076), + [aux_sym_protocol_token1] = ACTIONS(1076), + [aux_sym_proxy_command_token1] = ACTIONS(1076), + [aux_sym_proxy_jump_token1] = ACTIONS(1076), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1076), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1076), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1076), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1076), + [aux_sym_rekey_limit_token1] = ACTIONS(1076), + [aux_sym_remote_command_token1] = ACTIONS(1076), + [aux_sym_remote_forward_token1] = ACTIONS(1076), + [aux_sym_request_tty_token1] = ACTIONS(1076), + [aux_sym_required_rsa_size_token1] = ACTIONS(1076), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1076), + [aux_sym_security_key_provider_token1] = ACTIONS(1076), + [aux_sym_send_env_token1] = ACTIONS(1076), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1076), + [aux_sym_server_alive_interval_token1] = ACTIONS(1076), + [aux_sym_session_type_token1] = ACTIONS(1076), + [aux_sym_set_env_token1] = ACTIONS(1076), + [aux_sym_stdin_null_token1] = ACTIONS(1076), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1076), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1076), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1076), + [aux_sym_syslog_facility_token1] = ACTIONS(1076), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1076), + [aux_sym_keep_alive_token1] = ACTIONS(1076), + [aux_sym_tunnel_token1] = ACTIONS(1078), + [aux_sym_tunnel_device_token1] = ACTIONS(1076), + [aux_sym_update_host_keys_token1] = ACTIONS(1076), + [aux_sym_use_keychain_token1] = ACTIONS(1076), + [aux_sym_use_roaming_token1] = ACTIONS(1076), + [aux_sym_user_token1] = ACTIONS(1078), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1076), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1076), + [aux_sym_visual_host_key_token1] = ACTIONS(1076), + [aux_sym_xauth_location_token1] = ACTIONS(1076), }, [481] = { - [ts_builtin_sym_end] = ACTIONS(3105), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3107), - [aux_sym_match_token1] = ACTIONS(3105), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3105), - [aux_sym_address_family_token1] = ACTIONS(3105), - [aux_sym_batch_mode_token1] = ACTIONS(3105), - [aux_sym_bind_address_token1] = ACTIONS(3105), - [aux_sym_bind_interface_token1] = ACTIONS(3105), - [aux_sym_canonical_domains_token1] = ACTIONS(3105), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3105), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3105), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3105), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3105), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3105), - [aux_sym_certificate_file_token1] = ACTIONS(3105), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3105), - [aux_sym_check_host_ip_token1] = ACTIONS(3105), - [aux_sym_ciphers_token1] = ACTIONS(3105), - [aux_sym_cipher_token1] = ACTIONS(3107), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3105), - [aux_sym_compression_token1] = ACTIONS(3105), - [aux_sym_connection_attempts_token1] = ACTIONS(3105), - [aux_sym_connect_timeout_token1] = ACTIONS(3105), - [aux_sym_control_master_token1] = ACTIONS(3105), - [aux_sym_control_path_token1] = ACTIONS(3105), - [aux_sym_control_persist_token1] = ACTIONS(3105), - [aux_sym_dynamic_forward_token1] = ACTIONS(3105), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3105), - [aux_sym_escape_char_token1] = ACTIONS(3105), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3105), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3105), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3105), - [aux_sym_forward_agent_token1] = ACTIONS(3105), - [aux_sym_forward_x11_token1] = ACTIONS(3107), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3105), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3105), - [aux_sym_gateway_ports_token1] = ACTIONS(3105), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3105), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3105), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3105), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3105), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3105), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3105), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3105), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3105), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3105), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3105), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3105), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3105), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3105), - [aux_sym_host_key_alias_token1] = ACTIONS(3105), - [aux_sym_hostname_token1] = ACTIONS(3105), - [aux_sym_identities_only_token1] = ACTIONS(3105), - [aux_sym_identity_agent_token1] = ACTIONS(3105), - [aux_sym_identity_file_token1] = ACTIONS(3105), - [aux_sym_ignore_unknown_token1] = ACTIONS(3105), - [aux_sym_include_token1] = ACTIONS(3105), - [aux_sym_ip_qos_token1] = ACTIONS(3105), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3105), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3105), - [aux_sym_kex_algorithms_token1] = ACTIONS(3105), - [aux_sym_known_hosts_command_token1] = ACTIONS(3105), - [aux_sym_local_command_token1] = ACTIONS(3105), - [aux_sym_local_forward_token1] = ACTIONS(3105), - [aux_sym_log_level_token1] = ACTIONS(3105), - [aux_sym_log_verbose_token1] = ACTIONS(3105), - [aux_sym_macs_token1] = ACTIONS(3105), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3105), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3105), - [aux_sym_password_authentication_token1] = ACTIONS(3105), - [aux_sym_permit_local_command_token1] = ACTIONS(3105), - [aux_sym_permit_remote_open_token1] = ACTIONS(3105), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3105), - [aux_sym_port_token1] = ACTIONS(3105), - [aux_sym_preferred_authentications_token1] = ACTIONS(3105), - [aux_sym_protocol_token1] = ACTIONS(3105), - [aux_sym_proxy_command_token1] = ACTIONS(3105), - [aux_sym_proxy_jump_token1] = ACTIONS(3105), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3105), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3105), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3105), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3105), - [aux_sym_rekey_limit_token1] = ACTIONS(3105), - [aux_sym_remote_command_token1] = ACTIONS(3105), - [aux_sym_remote_forward_token1] = ACTIONS(3105), - [aux_sym_request_tty_token1] = ACTIONS(3105), - [aux_sym_required_rsa_size_token1] = ACTIONS(3105), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3105), - [aux_sym_security_key_provider_token1] = ACTIONS(3105), - [aux_sym_send_env_token1] = ACTIONS(3105), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3105), - [aux_sym_server_alive_interval_token1] = ACTIONS(3105), - [aux_sym_session_type_token1] = ACTIONS(3105), - [aux_sym_set_env_token1] = ACTIONS(3105), - [aux_sym_stdin_null_token1] = ACTIONS(3105), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3105), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3105), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3105), - [aux_sym_syslog_facility_token1] = ACTIONS(3105), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3105), - [aux_sym_keep_alive_token1] = ACTIONS(3105), - [aux_sym_tunnel_token1] = ACTIONS(3107), - [aux_sym_tunnel_device_token1] = ACTIONS(3105), - [aux_sym_update_host_keys_token1] = ACTIONS(3105), - [aux_sym_use_keychain_token1] = ACTIONS(3105), - [aux_sym_use_roaming_token1] = ACTIONS(3105), - [aux_sym_user_token1] = ACTIONS(3107), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3105), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3105), - [aux_sym_visual_host_key_token1] = ACTIONS(3105), - [aux_sym_xauth_location_token1] = ACTIONS(3105), + [ts_builtin_sym_end] = ACTIONS(1148), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1150), + [aux_sym_match_token1] = ACTIONS(1148), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1148), + [aux_sym_address_family_token1] = ACTIONS(1148), + [aux_sym_batch_mode_token1] = ACTIONS(1148), + [aux_sym_bind_address_token1] = ACTIONS(1148), + [aux_sym_bind_interface_token1] = ACTIONS(1148), + [aux_sym_canonical_domains_token1] = ACTIONS(1148), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1148), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1148), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1148), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1148), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1148), + [aux_sym_certificate_file_token1] = ACTIONS(1148), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1148), + [aux_sym_check_host_ip_token1] = ACTIONS(1148), + [aux_sym_ciphers_token1] = ACTIONS(1148), + [aux_sym_cipher_token1] = ACTIONS(1150), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1148), + [aux_sym_compression_token1] = ACTIONS(1148), + [aux_sym_connection_attempts_token1] = ACTIONS(1148), + [aux_sym_connect_timeout_token1] = ACTIONS(1148), + [aux_sym_control_master_token1] = ACTIONS(1148), + [aux_sym_control_path_token1] = ACTIONS(1148), + [aux_sym_control_persist_token1] = ACTIONS(1148), + [aux_sym_dynamic_forward_token1] = ACTIONS(1148), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1148), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1148), + [aux_sym_escape_char_token1] = ACTIONS(1148), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1148), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1148), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1148), + [aux_sym_forward_agent_token1] = ACTIONS(1148), + [aux_sym_forward_x11_token1] = ACTIONS(1150), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1148), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1148), + [aux_sym_gateway_ports_token1] = ACTIONS(1148), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1148), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1148), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1148), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1148), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1148), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1148), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1148), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1148), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1148), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1148), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1148), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1148), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1148), + [aux_sym_host_key_alias_token1] = ACTIONS(1148), + [aux_sym_hostname_token1] = ACTIONS(1148), + [aux_sym_identities_only_token1] = ACTIONS(1148), + [aux_sym_identity_agent_token1] = ACTIONS(1148), + [aux_sym_identity_file_token1] = ACTIONS(1148), + [aux_sym_ignore_unknown_token1] = ACTIONS(1148), + [aux_sym_include_token1] = ACTIONS(1148), + [aux_sym_ip_qos_token1] = ACTIONS(1148), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1148), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1148), + [aux_sym_kex_algorithms_token1] = ACTIONS(1148), + [aux_sym_known_hosts_command_token1] = ACTIONS(1148), + [aux_sym_local_command_token1] = ACTIONS(1148), + [aux_sym_local_forward_token1] = ACTIONS(1148), + [aux_sym_log_level_token1] = ACTIONS(1148), + [aux_sym_log_verbose_token1] = ACTIONS(1148), + [aux_sym_macs_token1] = ACTIONS(1148), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1148), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1148), + [aux_sym_password_authentication_token1] = ACTIONS(1148), + [aux_sym_permit_local_command_token1] = ACTIONS(1148), + [aux_sym_permit_remote_open_token1] = ACTIONS(1148), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1148), + [aux_sym_port_token1] = ACTIONS(1148), + [aux_sym_preferred_authentications_token1] = ACTIONS(1148), + [aux_sym_protocol_token1] = ACTIONS(1148), + [aux_sym_proxy_command_token1] = ACTIONS(1148), + [aux_sym_proxy_jump_token1] = ACTIONS(1148), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1148), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1148), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1148), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1148), + [aux_sym_rekey_limit_token1] = ACTIONS(1148), + [aux_sym_remote_command_token1] = ACTIONS(1148), + [aux_sym_remote_forward_token1] = ACTIONS(1148), + [aux_sym_request_tty_token1] = ACTIONS(1148), + [aux_sym_required_rsa_size_token1] = ACTIONS(1148), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1148), + [aux_sym_security_key_provider_token1] = ACTIONS(1148), + [aux_sym_send_env_token1] = ACTIONS(1148), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1148), + [aux_sym_server_alive_interval_token1] = ACTIONS(1148), + [aux_sym_session_type_token1] = ACTIONS(1148), + [aux_sym_set_env_token1] = ACTIONS(1148), + [aux_sym_stdin_null_token1] = ACTIONS(1148), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1148), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1148), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1148), + [aux_sym_syslog_facility_token1] = ACTIONS(1148), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1148), + [aux_sym_keep_alive_token1] = ACTIONS(1148), + [aux_sym_tunnel_token1] = ACTIONS(1150), + [aux_sym_tunnel_device_token1] = ACTIONS(1148), + [aux_sym_update_host_keys_token1] = ACTIONS(1148), + [aux_sym_use_keychain_token1] = ACTIONS(1148), + [aux_sym_use_roaming_token1] = ACTIONS(1148), + [aux_sym_user_token1] = ACTIONS(1150), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1148), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1148), + [aux_sym_visual_host_key_token1] = ACTIONS(1148), + [aux_sym_xauth_location_token1] = ACTIONS(1148), }, [482] = { - [ts_builtin_sym_end] = ACTIONS(3109), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3111), - [aux_sym_match_token1] = ACTIONS(3109), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3109), - [aux_sym_address_family_token1] = ACTIONS(3109), - [aux_sym_batch_mode_token1] = ACTIONS(3109), - [aux_sym_bind_address_token1] = ACTIONS(3109), - [aux_sym_bind_interface_token1] = ACTIONS(3109), - [aux_sym_canonical_domains_token1] = ACTIONS(3109), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3109), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3109), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3109), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3109), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3109), - [aux_sym_certificate_file_token1] = ACTIONS(3109), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3109), - [aux_sym_check_host_ip_token1] = ACTIONS(3109), - [aux_sym_ciphers_token1] = ACTIONS(3109), - [aux_sym_cipher_token1] = ACTIONS(3111), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3109), - [aux_sym_compression_token1] = ACTIONS(3109), - [aux_sym_connection_attempts_token1] = ACTIONS(3109), - [aux_sym_connect_timeout_token1] = ACTIONS(3109), - [aux_sym_control_master_token1] = ACTIONS(3109), - [aux_sym_control_path_token1] = ACTIONS(3109), - [aux_sym_control_persist_token1] = ACTIONS(3109), - [aux_sym_dynamic_forward_token1] = ACTIONS(3109), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3109), - [aux_sym_escape_char_token1] = ACTIONS(3109), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3109), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3109), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3109), - [aux_sym_forward_agent_token1] = ACTIONS(3109), - [aux_sym_forward_x11_token1] = ACTIONS(3111), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3109), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3109), - [aux_sym_gateway_ports_token1] = ACTIONS(3109), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3109), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3109), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3109), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3109), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3109), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3109), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3109), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3109), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3109), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3109), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3109), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3109), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3109), - [aux_sym_host_key_alias_token1] = ACTIONS(3109), - [aux_sym_hostname_token1] = ACTIONS(3109), - [aux_sym_identities_only_token1] = ACTIONS(3109), - [aux_sym_identity_agent_token1] = ACTIONS(3109), - [aux_sym_identity_file_token1] = ACTIONS(3109), - [aux_sym_ignore_unknown_token1] = ACTIONS(3109), - [aux_sym_include_token1] = ACTIONS(3109), - [aux_sym_ip_qos_token1] = ACTIONS(3109), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3109), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3109), - [aux_sym_kex_algorithms_token1] = ACTIONS(3109), - [aux_sym_known_hosts_command_token1] = ACTIONS(3109), - [aux_sym_local_command_token1] = ACTIONS(3109), - [aux_sym_local_forward_token1] = ACTIONS(3109), - [aux_sym_log_level_token1] = ACTIONS(3109), - [aux_sym_log_verbose_token1] = ACTIONS(3109), - [aux_sym_macs_token1] = ACTIONS(3109), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3109), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3109), - [aux_sym_password_authentication_token1] = ACTIONS(3109), - [aux_sym_permit_local_command_token1] = ACTIONS(3109), - [aux_sym_permit_remote_open_token1] = ACTIONS(3109), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3109), - [aux_sym_port_token1] = ACTIONS(3109), - [aux_sym_preferred_authentications_token1] = ACTIONS(3109), - [aux_sym_protocol_token1] = ACTIONS(3109), - [aux_sym_proxy_command_token1] = ACTIONS(3109), - [aux_sym_proxy_jump_token1] = ACTIONS(3109), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3109), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3109), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3109), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3109), - [aux_sym_rekey_limit_token1] = ACTIONS(3109), - [aux_sym_remote_command_token1] = ACTIONS(3109), - [aux_sym_remote_forward_token1] = ACTIONS(3109), - [aux_sym_request_tty_token1] = ACTIONS(3109), - [aux_sym_required_rsa_size_token1] = ACTIONS(3109), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3109), - [aux_sym_security_key_provider_token1] = ACTIONS(3109), - [aux_sym_send_env_token1] = ACTIONS(3109), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3109), - [aux_sym_server_alive_interval_token1] = ACTIONS(3109), - [aux_sym_session_type_token1] = ACTIONS(3109), - [aux_sym_set_env_token1] = ACTIONS(3109), - [aux_sym_stdin_null_token1] = ACTIONS(3109), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3109), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3109), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3109), - [aux_sym_syslog_facility_token1] = ACTIONS(3109), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3109), - [aux_sym_keep_alive_token1] = ACTIONS(3109), - [aux_sym_tunnel_token1] = ACTIONS(3111), - [aux_sym_tunnel_device_token1] = ACTIONS(3109), - [aux_sym_update_host_keys_token1] = ACTIONS(3109), - [aux_sym_use_keychain_token1] = ACTIONS(3109), - [aux_sym_use_roaming_token1] = ACTIONS(3109), - [aux_sym_user_token1] = ACTIONS(3111), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3109), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3109), - [aux_sym_visual_host_key_token1] = ACTIONS(3109), - [aux_sym_xauth_location_token1] = ACTIONS(3109), + [ts_builtin_sym_end] = ACTIONS(3104), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3106), + [aux_sym_match_token1] = ACTIONS(3104), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3104), + [aux_sym_address_family_token1] = ACTIONS(3104), + [aux_sym_batch_mode_token1] = ACTIONS(3104), + [aux_sym_bind_address_token1] = ACTIONS(3104), + [aux_sym_bind_interface_token1] = ACTIONS(3104), + [aux_sym_canonical_domains_token1] = ACTIONS(3104), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3104), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3104), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3104), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3104), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3104), + [aux_sym_certificate_file_token1] = ACTIONS(3104), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3104), + [aux_sym_check_host_ip_token1] = ACTIONS(3104), + [aux_sym_ciphers_token1] = ACTIONS(3104), + [aux_sym_cipher_token1] = ACTIONS(3106), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3104), + [aux_sym_compression_token1] = ACTIONS(3104), + [aux_sym_connection_attempts_token1] = ACTIONS(3104), + [aux_sym_connect_timeout_token1] = ACTIONS(3104), + [aux_sym_control_master_token1] = ACTIONS(3104), + [aux_sym_control_path_token1] = ACTIONS(3104), + [aux_sym_control_persist_token1] = ACTIONS(3104), + [aux_sym_dynamic_forward_token1] = ACTIONS(3104), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3104), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3104), + [aux_sym_escape_char_token1] = ACTIONS(3104), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3104), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3104), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3104), + [aux_sym_forward_agent_token1] = ACTIONS(3104), + [aux_sym_forward_x11_token1] = ACTIONS(3106), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3104), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3104), + [aux_sym_gateway_ports_token1] = ACTIONS(3104), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3104), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3104), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3104), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3104), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3104), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3104), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3104), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3104), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3104), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3104), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3104), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3104), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3104), + [aux_sym_host_key_alias_token1] = ACTIONS(3104), + [aux_sym_hostname_token1] = ACTIONS(3104), + [aux_sym_identities_only_token1] = ACTIONS(3104), + [aux_sym_identity_agent_token1] = ACTIONS(3104), + [aux_sym_identity_file_token1] = ACTIONS(3104), + [aux_sym_ignore_unknown_token1] = ACTIONS(3104), + [aux_sym_include_token1] = ACTIONS(3104), + [aux_sym_ip_qos_token1] = ACTIONS(3104), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3104), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3104), + [aux_sym_kex_algorithms_token1] = ACTIONS(3104), + [aux_sym_known_hosts_command_token1] = ACTIONS(3104), + [aux_sym_local_command_token1] = ACTIONS(3104), + [aux_sym_local_forward_token1] = ACTIONS(3104), + [aux_sym_log_level_token1] = ACTIONS(3104), + [aux_sym_log_verbose_token1] = ACTIONS(3104), + [aux_sym_macs_token1] = ACTIONS(3104), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3104), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3104), + [aux_sym_password_authentication_token1] = ACTIONS(3104), + [aux_sym_permit_local_command_token1] = ACTIONS(3104), + [aux_sym_permit_remote_open_token1] = ACTIONS(3104), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3104), + [aux_sym_port_token1] = ACTIONS(3104), + [aux_sym_preferred_authentications_token1] = ACTIONS(3104), + [aux_sym_protocol_token1] = ACTIONS(3104), + [aux_sym_proxy_command_token1] = ACTIONS(3104), + [aux_sym_proxy_jump_token1] = ACTIONS(3104), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3104), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3104), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3104), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3104), + [aux_sym_rekey_limit_token1] = ACTIONS(3104), + [aux_sym_remote_command_token1] = ACTIONS(3104), + [aux_sym_remote_forward_token1] = ACTIONS(3104), + [aux_sym_request_tty_token1] = ACTIONS(3104), + [aux_sym_required_rsa_size_token1] = ACTIONS(3104), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3104), + [aux_sym_security_key_provider_token1] = ACTIONS(3104), + [aux_sym_send_env_token1] = ACTIONS(3104), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3104), + [aux_sym_server_alive_interval_token1] = ACTIONS(3104), + [aux_sym_session_type_token1] = ACTIONS(3104), + [aux_sym_set_env_token1] = ACTIONS(3104), + [aux_sym_stdin_null_token1] = ACTIONS(3104), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3104), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3104), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3104), + [aux_sym_syslog_facility_token1] = ACTIONS(3104), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3104), + [aux_sym_keep_alive_token1] = ACTIONS(3104), + [aux_sym_tunnel_token1] = ACTIONS(3106), + [aux_sym_tunnel_device_token1] = ACTIONS(3104), + [aux_sym_update_host_keys_token1] = ACTIONS(3104), + [aux_sym_use_keychain_token1] = ACTIONS(3104), + [aux_sym_use_roaming_token1] = ACTIONS(3104), + [aux_sym_user_token1] = ACTIONS(3106), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3104), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3104), + [aux_sym_visual_host_key_token1] = ACTIONS(3104), + [aux_sym_xauth_location_token1] = ACTIONS(3104), }, [483] = { - [ts_builtin_sym_end] = ACTIONS(3113), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3115), - [aux_sym_match_token1] = ACTIONS(3113), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3113), - [aux_sym_address_family_token1] = ACTIONS(3113), - [aux_sym_batch_mode_token1] = ACTIONS(3113), - [aux_sym_bind_address_token1] = ACTIONS(3113), - [aux_sym_bind_interface_token1] = ACTIONS(3113), - [aux_sym_canonical_domains_token1] = ACTIONS(3113), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3113), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3113), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3113), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3113), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3113), - [aux_sym_certificate_file_token1] = ACTIONS(3113), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3113), - [aux_sym_check_host_ip_token1] = ACTIONS(3113), - [aux_sym_ciphers_token1] = ACTIONS(3113), - [aux_sym_cipher_token1] = ACTIONS(3115), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3113), - [aux_sym_compression_token1] = ACTIONS(3113), - [aux_sym_connection_attempts_token1] = ACTIONS(3113), - [aux_sym_connect_timeout_token1] = ACTIONS(3113), - [aux_sym_control_master_token1] = ACTIONS(3113), - [aux_sym_control_path_token1] = ACTIONS(3113), - [aux_sym_control_persist_token1] = ACTIONS(3113), - [aux_sym_dynamic_forward_token1] = ACTIONS(3113), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3113), - [aux_sym_escape_char_token1] = ACTIONS(3113), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3113), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3113), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3113), - [aux_sym_forward_agent_token1] = ACTIONS(3113), - [aux_sym_forward_x11_token1] = ACTIONS(3115), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3113), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3113), - [aux_sym_gateway_ports_token1] = ACTIONS(3113), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3113), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3113), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3113), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3113), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3113), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3113), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3113), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3113), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3113), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3113), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3113), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3113), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3113), - [aux_sym_host_key_alias_token1] = ACTIONS(3113), - [aux_sym_hostname_token1] = ACTIONS(3113), - [aux_sym_identities_only_token1] = ACTIONS(3113), - [aux_sym_identity_agent_token1] = ACTIONS(3113), - [aux_sym_identity_file_token1] = ACTIONS(3113), - [aux_sym_ignore_unknown_token1] = ACTIONS(3113), - [aux_sym_include_token1] = ACTIONS(3113), - [aux_sym_ip_qos_token1] = ACTIONS(3113), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3113), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3113), - [aux_sym_kex_algorithms_token1] = ACTIONS(3113), - [aux_sym_known_hosts_command_token1] = ACTIONS(3113), - [aux_sym_local_command_token1] = ACTIONS(3113), - [aux_sym_local_forward_token1] = ACTIONS(3113), - [aux_sym_log_level_token1] = ACTIONS(3113), - [aux_sym_log_verbose_token1] = ACTIONS(3113), - [aux_sym_macs_token1] = ACTIONS(3113), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3113), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3113), - [aux_sym_password_authentication_token1] = ACTIONS(3113), - [aux_sym_permit_local_command_token1] = ACTIONS(3113), - [aux_sym_permit_remote_open_token1] = ACTIONS(3113), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3113), - [aux_sym_port_token1] = ACTIONS(3113), - [aux_sym_preferred_authentications_token1] = ACTIONS(3113), - [aux_sym_protocol_token1] = ACTIONS(3113), - [aux_sym_proxy_command_token1] = ACTIONS(3113), - [aux_sym_proxy_jump_token1] = ACTIONS(3113), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3113), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3113), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3113), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3113), - [aux_sym_rekey_limit_token1] = ACTIONS(3113), - [aux_sym_remote_command_token1] = ACTIONS(3113), - [aux_sym_remote_forward_token1] = ACTIONS(3113), - [aux_sym_request_tty_token1] = ACTIONS(3113), - [aux_sym_required_rsa_size_token1] = ACTIONS(3113), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3113), - [aux_sym_security_key_provider_token1] = ACTIONS(3113), - [aux_sym_send_env_token1] = ACTIONS(3113), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3113), - [aux_sym_server_alive_interval_token1] = ACTIONS(3113), - [aux_sym_session_type_token1] = ACTIONS(3113), - [aux_sym_set_env_token1] = ACTIONS(3113), - [aux_sym_stdin_null_token1] = ACTIONS(3113), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3113), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3113), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3113), - [aux_sym_syslog_facility_token1] = ACTIONS(3113), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3113), - [aux_sym_keep_alive_token1] = ACTIONS(3113), - [aux_sym_tunnel_token1] = ACTIONS(3115), - [aux_sym_tunnel_device_token1] = ACTIONS(3113), - [aux_sym_update_host_keys_token1] = ACTIONS(3113), - [aux_sym_use_keychain_token1] = ACTIONS(3113), - [aux_sym_use_roaming_token1] = ACTIONS(3113), - [aux_sym_user_token1] = ACTIONS(3115), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3113), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3113), - [aux_sym_visual_host_key_token1] = ACTIONS(3113), - [aux_sym_xauth_location_token1] = ACTIONS(3113), + [ts_builtin_sym_end] = ACTIONS(3108), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3110), + [aux_sym_match_token1] = ACTIONS(3108), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3108), + [aux_sym_address_family_token1] = ACTIONS(3108), + [aux_sym_batch_mode_token1] = ACTIONS(3108), + [aux_sym_bind_address_token1] = ACTIONS(3108), + [aux_sym_bind_interface_token1] = ACTIONS(3108), + [aux_sym_canonical_domains_token1] = ACTIONS(3108), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3108), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3108), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3108), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3108), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3108), + [aux_sym_certificate_file_token1] = ACTIONS(3108), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3108), + [aux_sym_check_host_ip_token1] = ACTIONS(3108), + [aux_sym_ciphers_token1] = ACTIONS(3108), + [aux_sym_cipher_token1] = ACTIONS(3110), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3108), + [aux_sym_compression_token1] = ACTIONS(3108), + [aux_sym_connection_attempts_token1] = ACTIONS(3108), + [aux_sym_connect_timeout_token1] = ACTIONS(3108), + [aux_sym_control_master_token1] = ACTIONS(3108), + [aux_sym_control_path_token1] = ACTIONS(3108), + [aux_sym_control_persist_token1] = ACTIONS(3108), + [aux_sym_dynamic_forward_token1] = ACTIONS(3108), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3108), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3108), + [aux_sym_escape_char_token1] = ACTIONS(3108), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3108), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3108), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3108), + [aux_sym_forward_agent_token1] = ACTIONS(3108), + [aux_sym_forward_x11_token1] = ACTIONS(3110), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3108), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3108), + [aux_sym_gateway_ports_token1] = ACTIONS(3108), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3108), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3108), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3108), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3108), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3108), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3108), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3108), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3108), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3108), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3108), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3108), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3108), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3108), + [aux_sym_host_key_alias_token1] = ACTIONS(3108), + [aux_sym_hostname_token1] = ACTIONS(3108), + [aux_sym_identities_only_token1] = ACTIONS(3108), + [aux_sym_identity_agent_token1] = ACTIONS(3108), + [aux_sym_identity_file_token1] = ACTIONS(3108), + [aux_sym_ignore_unknown_token1] = ACTIONS(3108), + [aux_sym_include_token1] = ACTIONS(3108), + [aux_sym_ip_qos_token1] = ACTIONS(3108), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3108), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3108), + [aux_sym_kex_algorithms_token1] = ACTIONS(3108), + [aux_sym_known_hosts_command_token1] = ACTIONS(3108), + [aux_sym_local_command_token1] = ACTIONS(3108), + [aux_sym_local_forward_token1] = ACTIONS(3108), + [aux_sym_log_level_token1] = ACTIONS(3108), + [aux_sym_log_verbose_token1] = ACTIONS(3108), + [aux_sym_macs_token1] = ACTIONS(3108), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3108), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3108), + [aux_sym_password_authentication_token1] = ACTIONS(3108), + [aux_sym_permit_local_command_token1] = ACTIONS(3108), + [aux_sym_permit_remote_open_token1] = ACTIONS(3108), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3108), + [aux_sym_port_token1] = ACTIONS(3108), + [aux_sym_preferred_authentications_token1] = ACTIONS(3108), + [aux_sym_protocol_token1] = ACTIONS(3108), + [aux_sym_proxy_command_token1] = ACTIONS(3108), + [aux_sym_proxy_jump_token1] = ACTIONS(3108), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3108), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3108), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3108), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3108), + [aux_sym_rekey_limit_token1] = ACTIONS(3108), + [aux_sym_remote_command_token1] = ACTIONS(3108), + [aux_sym_remote_forward_token1] = ACTIONS(3108), + [aux_sym_request_tty_token1] = ACTIONS(3108), + [aux_sym_required_rsa_size_token1] = ACTIONS(3108), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3108), + [aux_sym_security_key_provider_token1] = ACTIONS(3108), + [aux_sym_send_env_token1] = ACTIONS(3108), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3108), + [aux_sym_server_alive_interval_token1] = ACTIONS(3108), + [aux_sym_session_type_token1] = ACTIONS(3108), + [aux_sym_set_env_token1] = ACTIONS(3108), + [aux_sym_stdin_null_token1] = ACTIONS(3108), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3108), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3108), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3108), + [aux_sym_syslog_facility_token1] = ACTIONS(3108), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3108), + [aux_sym_keep_alive_token1] = ACTIONS(3108), + [aux_sym_tunnel_token1] = ACTIONS(3110), + [aux_sym_tunnel_device_token1] = ACTIONS(3108), + [aux_sym_update_host_keys_token1] = ACTIONS(3108), + [aux_sym_use_keychain_token1] = ACTIONS(3108), + [aux_sym_use_roaming_token1] = ACTIONS(3108), + [aux_sym_user_token1] = ACTIONS(3110), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3108), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3108), + [aux_sym_visual_host_key_token1] = ACTIONS(3108), + [aux_sym_xauth_location_token1] = ACTIONS(3108), }, [484] = { - [ts_builtin_sym_end] = ACTIONS(3117), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3119), - [aux_sym_match_token1] = ACTIONS(3117), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3117), - [aux_sym_address_family_token1] = ACTIONS(3117), - [aux_sym_batch_mode_token1] = ACTIONS(3117), - [aux_sym_bind_address_token1] = ACTIONS(3117), - [aux_sym_bind_interface_token1] = ACTIONS(3117), - [aux_sym_canonical_domains_token1] = ACTIONS(3117), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3117), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3117), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3117), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3117), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3117), - [aux_sym_certificate_file_token1] = ACTIONS(3117), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3117), - [aux_sym_check_host_ip_token1] = ACTIONS(3117), - [aux_sym_ciphers_token1] = ACTIONS(3117), - [aux_sym_cipher_token1] = ACTIONS(3119), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3117), - [aux_sym_compression_token1] = ACTIONS(3117), - [aux_sym_connection_attempts_token1] = ACTIONS(3117), - [aux_sym_connect_timeout_token1] = ACTIONS(3117), - [aux_sym_control_master_token1] = ACTIONS(3117), - [aux_sym_control_path_token1] = ACTIONS(3117), - [aux_sym_control_persist_token1] = ACTIONS(3117), - [aux_sym_dynamic_forward_token1] = ACTIONS(3117), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3117), - [aux_sym_escape_char_token1] = ACTIONS(3117), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3117), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3117), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3117), - [aux_sym_forward_agent_token1] = ACTIONS(3117), - [aux_sym_forward_x11_token1] = ACTIONS(3119), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3117), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3117), - [aux_sym_gateway_ports_token1] = ACTIONS(3117), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3117), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3117), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3117), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3117), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3117), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3117), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3117), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3117), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3117), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3117), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3117), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3117), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3117), - [aux_sym_host_key_alias_token1] = ACTIONS(3117), - [aux_sym_hostname_token1] = ACTIONS(3117), - [aux_sym_identities_only_token1] = ACTIONS(3117), - [aux_sym_identity_agent_token1] = ACTIONS(3117), - [aux_sym_identity_file_token1] = ACTIONS(3117), - [aux_sym_ignore_unknown_token1] = ACTIONS(3117), - [aux_sym_include_token1] = ACTIONS(3117), - [aux_sym_ip_qos_token1] = ACTIONS(3117), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3117), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3117), - [aux_sym_kex_algorithms_token1] = ACTIONS(3117), - [aux_sym_known_hosts_command_token1] = ACTIONS(3117), - [aux_sym_local_command_token1] = ACTIONS(3117), - [aux_sym_local_forward_token1] = ACTIONS(3117), - [aux_sym_log_level_token1] = ACTIONS(3117), - [aux_sym_log_verbose_token1] = ACTIONS(3117), - [aux_sym_macs_token1] = ACTIONS(3117), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3117), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3117), - [aux_sym_password_authentication_token1] = ACTIONS(3117), - [aux_sym_permit_local_command_token1] = ACTIONS(3117), - [aux_sym_permit_remote_open_token1] = ACTIONS(3117), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3117), - [aux_sym_port_token1] = ACTIONS(3117), - [aux_sym_preferred_authentications_token1] = ACTIONS(3117), - [aux_sym_protocol_token1] = ACTIONS(3117), - [aux_sym_proxy_command_token1] = ACTIONS(3117), - [aux_sym_proxy_jump_token1] = ACTIONS(3117), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3117), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3117), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3117), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3117), - [aux_sym_rekey_limit_token1] = ACTIONS(3117), - [aux_sym_remote_command_token1] = ACTIONS(3117), - [aux_sym_remote_forward_token1] = ACTIONS(3117), - [aux_sym_request_tty_token1] = ACTIONS(3117), - [aux_sym_required_rsa_size_token1] = ACTIONS(3117), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3117), - [aux_sym_security_key_provider_token1] = ACTIONS(3117), - [aux_sym_send_env_token1] = ACTIONS(3117), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3117), - [aux_sym_server_alive_interval_token1] = ACTIONS(3117), - [aux_sym_session_type_token1] = ACTIONS(3117), - [aux_sym_set_env_token1] = ACTIONS(3117), - [aux_sym_stdin_null_token1] = ACTIONS(3117), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3117), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3117), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3117), - [aux_sym_syslog_facility_token1] = ACTIONS(3117), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3117), - [aux_sym_keep_alive_token1] = ACTIONS(3117), - [aux_sym_tunnel_token1] = ACTIONS(3119), - [aux_sym_tunnel_device_token1] = ACTIONS(3117), - [aux_sym_update_host_keys_token1] = ACTIONS(3117), - [aux_sym_use_keychain_token1] = ACTIONS(3117), - [aux_sym_use_roaming_token1] = ACTIONS(3117), - [aux_sym_user_token1] = ACTIONS(3119), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3117), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3117), - [aux_sym_visual_host_key_token1] = ACTIONS(3117), - [aux_sym_xauth_location_token1] = ACTIONS(3117), + [ts_builtin_sym_end] = ACTIONS(3112), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3114), + [aux_sym_match_token1] = ACTIONS(3112), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3112), + [aux_sym_address_family_token1] = ACTIONS(3112), + [aux_sym_batch_mode_token1] = ACTIONS(3112), + [aux_sym_bind_address_token1] = ACTIONS(3112), + [aux_sym_bind_interface_token1] = ACTIONS(3112), + [aux_sym_canonical_domains_token1] = ACTIONS(3112), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3112), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3112), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3112), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3112), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3112), + [aux_sym_certificate_file_token1] = ACTIONS(3112), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3112), + [aux_sym_check_host_ip_token1] = ACTIONS(3112), + [aux_sym_ciphers_token1] = ACTIONS(3112), + [aux_sym_cipher_token1] = ACTIONS(3114), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3112), + [aux_sym_compression_token1] = ACTIONS(3112), + [aux_sym_connection_attempts_token1] = ACTIONS(3112), + [aux_sym_connect_timeout_token1] = ACTIONS(3112), + [aux_sym_control_master_token1] = ACTIONS(3112), + [aux_sym_control_path_token1] = ACTIONS(3112), + [aux_sym_control_persist_token1] = ACTIONS(3112), + [aux_sym_dynamic_forward_token1] = ACTIONS(3112), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3112), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3112), + [aux_sym_escape_char_token1] = ACTIONS(3112), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3112), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3112), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3112), + [aux_sym_forward_agent_token1] = ACTIONS(3112), + [aux_sym_forward_x11_token1] = ACTIONS(3114), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3112), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3112), + [aux_sym_gateway_ports_token1] = ACTIONS(3112), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3112), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3112), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3112), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3112), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3112), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3112), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3112), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3112), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3112), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3112), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3112), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3112), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3112), + [aux_sym_host_key_alias_token1] = ACTIONS(3112), + [aux_sym_hostname_token1] = ACTIONS(3112), + [aux_sym_identities_only_token1] = ACTIONS(3112), + [aux_sym_identity_agent_token1] = ACTIONS(3112), + [aux_sym_identity_file_token1] = ACTIONS(3112), + [aux_sym_ignore_unknown_token1] = ACTIONS(3112), + [aux_sym_include_token1] = ACTIONS(3112), + [aux_sym_ip_qos_token1] = ACTIONS(3112), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3112), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3112), + [aux_sym_kex_algorithms_token1] = ACTIONS(3112), + [aux_sym_known_hosts_command_token1] = ACTIONS(3112), + [aux_sym_local_command_token1] = ACTIONS(3112), + [aux_sym_local_forward_token1] = ACTIONS(3112), + [aux_sym_log_level_token1] = ACTIONS(3112), + [aux_sym_log_verbose_token1] = ACTIONS(3112), + [aux_sym_macs_token1] = ACTIONS(3112), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3112), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3112), + [aux_sym_password_authentication_token1] = ACTIONS(3112), + [aux_sym_permit_local_command_token1] = ACTIONS(3112), + [aux_sym_permit_remote_open_token1] = ACTIONS(3112), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3112), + [aux_sym_port_token1] = ACTIONS(3112), + [aux_sym_preferred_authentications_token1] = ACTIONS(3112), + [aux_sym_protocol_token1] = ACTIONS(3112), + [aux_sym_proxy_command_token1] = ACTIONS(3112), + [aux_sym_proxy_jump_token1] = ACTIONS(3112), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3112), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3112), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3112), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3112), + [aux_sym_rekey_limit_token1] = ACTIONS(3112), + [aux_sym_remote_command_token1] = ACTIONS(3112), + [aux_sym_remote_forward_token1] = ACTIONS(3112), + [aux_sym_request_tty_token1] = ACTIONS(3112), + [aux_sym_required_rsa_size_token1] = ACTIONS(3112), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3112), + [aux_sym_security_key_provider_token1] = ACTIONS(3112), + [aux_sym_send_env_token1] = ACTIONS(3112), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3112), + [aux_sym_server_alive_interval_token1] = ACTIONS(3112), + [aux_sym_session_type_token1] = ACTIONS(3112), + [aux_sym_set_env_token1] = ACTIONS(3112), + [aux_sym_stdin_null_token1] = ACTIONS(3112), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3112), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3112), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3112), + [aux_sym_syslog_facility_token1] = ACTIONS(3112), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3112), + [aux_sym_keep_alive_token1] = ACTIONS(3112), + [aux_sym_tunnel_token1] = ACTIONS(3114), + [aux_sym_tunnel_device_token1] = ACTIONS(3112), + [aux_sym_update_host_keys_token1] = ACTIONS(3112), + [aux_sym_use_keychain_token1] = ACTIONS(3112), + [aux_sym_use_roaming_token1] = ACTIONS(3112), + [aux_sym_user_token1] = ACTIONS(3114), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3112), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3112), + [aux_sym_visual_host_key_token1] = ACTIONS(3112), + [aux_sym_xauth_location_token1] = ACTIONS(3112), }, [485] = { - [ts_builtin_sym_end] = ACTIONS(3121), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3123), - [aux_sym_match_token1] = ACTIONS(3121), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3121), - [aux_sym_address_family_token1] = ACTIONS(3121), - [aux_sym_batch_mode_token1] = ACTIONS(3121), - [aux_sym_bind_address_token1] = ACTIONS(3121), - [aux_sym_bind_interface_token1] = ACTIONS(3121), - [aux_sym_canonical_domains_token1] = ACTIONS(3121), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3121), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3121), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3121), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3121), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3121), - [aux_sym_certificate_file_token1] = ACTIONS(3121), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3121), - [aux_sym_check_host_ip_token1] = ACTIONS(3121), - [aux_sym_ciphers_token1] = ACTIONS(3121), - [aux_sym_cipher_token1] = ACTIONS(3123), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3121), - [aux_sym_compression_token1] = ACTIONS(3121), - [aux_sym_connection_attempts_token1] = ACTIONS(3121), - [aux_sym_connect_timeout_token1] = ACTIONS(3121), - [aux_sym_control_master_token1] = ACTIONS(3121), - [aux_sym_control_path_token1] = ACTIONS(3121), - [aux_sym_control_persist_token1] = ACTIONS(3121), - [aux_sym_dynamic_forward_token1] = ACTIONS(3121), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3121), - [aux_sym_escape_char_token1] = ACTIONS(3121), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3121), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3121), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3121), - [aux_sym_forward_agent_token1] = ACTIONS(3121), - [aux_sym_forward_x11_token1] = ACTIONS(3123), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3121), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3121), - [aux_sym_gateway_ports_token1] = ACTIONS(3121), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3121), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3121), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3121), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3121), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3121), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3121), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3121), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3121), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3121), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3121), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3121), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3121), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3121), - [aux_sym_host_key_alias_token1] = ACTIONS(3121), - [aux_sym_hostname_token1] = ACTIONS(3121), - [aux_sym_identities_only_token1] = ACTIONS(3121), - [aux_sym_identity_agent_token1] = ACTIONS(3121), - [aux_sym_identity_file_token1] = ACTIONS(3121), - [aux_sym_ignore_unknown_token1] = ACTIONS(3121), - [aux_sym_include_token1] = ACTIONS(3121), - [aux_sym_ip_qos_token1] = ACTIONS(3121), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3121), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3121), - [aux_sym_kex_algorithms_token1] = ACTIONS(3121), - [aux_sym_known_hosts_command_token1] = ACTIONS(3121), - [aux_sym_local_command_token1] = ACTIONS(3121), - [aux_sym_local_forward_token1] = ACTIONS(3121), - [aux_sym_log_level_token1] = ACTIONS(3121), - [aux_sym_log_verbose_token1] = ACTIONS(3121), - [aux_sym_macs_token1] = ACTIONS(3121), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3121), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3121), - [aux_sym_password_authentication_token1] = ACTIONS(3121), - [aux_sym_permit_local_command_token1] = ACTIONS(3121), - [aux_sym_permit_remote_open_token1] = ACTIONS(3121), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3121), - [aux_sym_port_token1] = ACTIONS(3121), - [aux_sym_preferred_authentications_token1] = ACTIONS(3121), - [aux_sym_protocol_token1] = ACTIONS(3121), - [aux_sym_proxy_command_token1] = ACTIONS(3121), - [aux_sym_proxy_jump_token1] = ACTIONS(3121), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3121), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3121), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3121), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3121), - [aux_sym_rekey_limit_token1] = ACTIONS(3121), - [aux_sym_remote_command_token1] = ACTIONS(3121), - [aux_sym_remote_forward_token1] = ACTIONS(3121), - [aux_sym_request_tty_token1] = ACTIONS(3121), - [aux_sym_required_rsa_size_token1] = ACTIONS(3121), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3121), - [aux_sym_security_key_provider_token1] = ACTIONS(3121), - [aux_sym_send_env_token1] = ACTIONS(3121), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3121), - [aux_sym_server_alive_interval_token1] = ACTIONS(3121), - [aux_sym_session_type_token1] = ACTIONS(3121), - [aux_sym_set_env_token1] = ACTIONS(3121), - [aux_sym_stdin_null_token1] = ACTIONS(3121), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3121), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3121), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3121), - [aux_sym_syslog_facility_token1] = ACTIONS(3121), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3121), - [aux_sym_keep_alive_token1] = ACTIONS(3121), - [aux_sym_tunnel_token1] = ACTIONS(3123), - [aux_sym_tunnel_device_token1] = ACTIONS(3121), - [aux_sym_update_host_keys_token1] = ACTIONS(3121), - [aux_sym_use_keychain_token1] = ACTIONS(3121), - [aux_sym_use_roaming_token1] = ACTIONS(3121), - [aux_sym_user_token1] = ACTIONS(3123), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3121), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3121), - [aux_sym_visual_host_key_token1] = ACTIONS(3121), - [aux_sym_xauth_location_token1] = ACTIONS(3121), + [ts_builtin_sym_end] = ACTIONS(1016), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1018), + [aux_sym_match_token1] = ACTIONS(1016), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1016), + [aux_sym_address_family_token1] = ACTIONS(1016), + [aux_sym_batch_mode_token1] = ACTIONS(1016), + [aux_sym_bind_address_token1] = ACTIONS(1016), + [aux_sym_bind_interface_token1] = ACTIONS(1016), + [aux_sym_canonical_domains_token1] = ACTIONS(1016), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1016), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1016), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1016), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1016), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1016), + [aux_sym_certificate_file_token1] = ACTIONS(1016), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1016), + [aux_sym_check_host_ip_token1] = ACTIONS(1016), + [aux_sym_ciphers_token1] = ACTIONS(1016), + [aux_sym_cipher_token1] = ACTIONS(1018), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1016), + [aux_sym_compression_token1] = ACTIONS(1016), + [aux_sym_connection_attempts_token1] = ACTIONS(1016), + [aux_sym_connect_timeout_token1] = ACTIONS(1016), + [aux_sym_control_master_token1] = ACTIONS(1016), + [aux_sym_control_path_token1] = ACTIONS(1016), + [aux_sym_control_persist_token1] = ACTIONS(1016), + [aux_sym_dynamic_forward_token1] = ACTIONS(1016), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1016), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1016), + [aux_sym_escape_char_token1] = ACTIONS(1016), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1016), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1016), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1016), + [aux_sym_forward_agent_token1] = ACTIONS(1016), + [aux_sym_forward_x11_token1] = ACTIONS(1018), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1016), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1016), + [aux_sym_gateway_ports_token1] = ACTIONS(1016), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1016), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1016), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1016), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1016), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1016), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1016), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1016), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1016), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1016), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1016), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1016), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1016), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1016), + [aux_sym_host_key_alias_token1] = ACTIONS(1016), + [aux_sym_hostname_token1] = ACTIONS(1016), + [aux_sym_identities_only_token1] = ACTIONS(1016), + [aux_sym_identity_agent_token1] = ACTIONS(1016), + [aux_sym_identity_file_token1] = ACTIONS(1016), + [aux_sym_ignore_unknown_token1] = ACTIONS(1016), + [aux_sym_include_token1] = ACTIONS(1016), + [aux_sym_ip_qos_token1] = ACTIONS(1016), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1016), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1016), + [aux_sym_kex_algorithms_token1] = ACTIONS(1016), + [aux_sym_known_hosts_command_token1] = ACTIONS(1016), + [aux_sym_local_command_token1] = ACTIONS(1016), + [aux_sym_local_forward_token1] = ACTIONS(1016), + [aux_sym_log_level_token1] = ACTIONS(1016), + [aux_sym_log_verbose_token1] = ACTIONS(1016), + [aux_sym_macs_token1] = ACTIONS(1016), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1016), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1016), + [aux_sym_password_authentication_token1] = ACTIONS(1016), + [aux_sym_permit_local_command_token1] = ACTIONS(1016), + [aux_sym_permit_remote_open_token1] = ACTIONS(1016), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1016), + [aux_sym_port_token1] = ACTIONS(1016), + [aux_sym_preferred_authentications_token1] = ACTIONS(1016), + [aux_sym_protocol_token1] = ACTIONS(1016), + [aux_sym_proxy_command_token1] = ACTIONS(1016), + [aux_sym_proxy_jump_token1] = ACTIONS(1016), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1016), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1016), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1016), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1016), + [aux_sym_rekey_limit_token1] = ACTIONS(1016), + [aux_sym_remote_command_token1] = ACTIONS(1016), + [aux_sym_remote_forward_token1] = ACTIONS(1016), + [aux_sym_request_tty_token1] = ACTIONS(1016), + [aux_sym_required_rsa_size_token1] = ACTIONS(1016), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1016), + [aux_sym_security_key_provider_token1] = ACTIONS(1016), + [aux_sym_send_env_token1] = ACTIONS(1016), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1016), + [aux_sym_server_alive_interval_token1] = ACTIONS(1016), + [aux_sym_session_type_token1] = ACTIONS(1016), + [aux_sym_set_env_token1] = ACTIONS(1016), + [aux_sym_stdin_null_token1] = ACTIONS(1016), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1016), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1016), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1016), + [aux_sym_syslog_facility_token1] = ACTIONS(1016), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1016), + [aux_sym_keep_alive_token1] = ACTIONS(1016), + [aux_sym_tunnel_token1] = ACTIONS(1018), + [aux_sym_tunnel_device_token1] = ACTIONS(1016), + [aux_sym_update_host_keys_token1] = ACTIONS(1016), + [aux_sym_use_keychain_token1] = ACTIONS(1016), + [aux_sym_use_roaming_token1] = ACTIONS(1016), + [aux_sym_user_token1] = ACTIONS(1018), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1016), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1016), + [aux_sym_visual_host_key_token1] = ACTIONS(1016), + [aux_sym_xauth_location_token1] = ACTIONS(1016), }, [486] = { - [ts_builtin_sym_end] = ACTIONS(3125), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3127), - [aux_sym_match_token1] = ACTIONS(3125), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3125), - [aux_sym_address_family_token1] = ACTIONS(3125), - [aux_sym_batch_mode_token1] = ACTIONS(3125), - [aux_sym_bind_address_token1] = ACTIONS(3125), - [aux_sym_bind_interface_token1] = ACTIONS(3125), - [aux_sym_canonical_domains_token1] = ACTIONS(3125), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3125), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3125), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3125), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3125), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3125), - [aux_sym_certificate_file_token1] = ACTIONS(3125), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3125), - [aux_sym_check_host_ip_token1] = ACTIONS(3125), - [aux_sym_ciphers_token1] = ACTIONS(3125), - [aux_sym_cipher_token1] = ACTIONS(3127), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3125), - [aux_sym_compression_token1] = ACTIONS(3125), - [aux_sym_connection_attempts_token1] = ACTIONS(3125), - [aux_sym_connect_timeout_token1] = ACTIONS(3125), - [aux_sym_control_master_token1] = ACTIONS(3125), - [aux_sym_control_path_token1] = ACTIONS(3125), - [aux_sym_control_persist_token1] = ACTIONS(3125), - [aux_sym_dynamic_forward_token1] = ACTIONS(3125), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3125), - [aux_sym_escape_char_token1] = ACTIONS(3125), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3125), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3125), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3125), - [aux_sym_forward_agent_token1] = ACTIONS(3125), - [aux_sym_forward_x11_token1] = ACTIONS(3127), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3125), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3125), - [aux_sym_gateway_ports_token1] = ACTIONS(3125), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3125), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3125), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3125), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3125), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3125), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3125), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3125), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3125), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3125), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3125), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3125), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3125), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3125), - [aux_sym_host_key_alias_token1] = ACTIONS(3125), - [aux_sym_hostname_token1] = ACTIONS(3125), - [aux_sym_identities_only_token1] = ACTIONS(3125), - [aux_sym_identity_agent_token1] = ACTIONS(3125), - [aux_sym_identity_file_token1] = ACTIONS(3125), - [aux_sym_ignore_unknown_token1] = ACTIONS(3125), - [aux_sym_include_token1] = ACTIONS(3125), - [aux_sym_ip_qos_token1] = ACTIONS(3125), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3125), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3125), - [aux_sym_kex_algorithms_token1] = ACTIONS(3125), - [aux_sym_known_hosts_command_token1] = ACTIONS(3125), - [aux_sym_local_command_token1] = ACTIONS(3125), - [aux_sym_local_forward_token1] = ACTIONS(3125), - [aux_sym_log_level_token1] = ACTIONS(3125), - [aux_sym_log_verbose_token1] = ACTIONS(3125), - [aux_sym_macs_token1] = ACTIONS(3125), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3125), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3125), - [aux_sym_password_authentication_token1] = ACTIONS(3125), - [aux_sym_permit_local_command_token1] = ACTIONS(3125), - [aux_sym_permit_remote_open_token1] = ACTIONS(3125), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3125), - [aux_sym_port_token1] = ACTIONS(3125), - [aux_sym_preferred_authentications_token1] = ACTIONS(3125), - [aux_sym_protocol_token1] = ACTIONS(3125), - [aux_sym_proxy_command_token1] = ACTIONS(3125), - [aux_sym_proxy_jump_token1] = ACTIONS(3125), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3125), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3125), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3125), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3125), - [aux_sym_rekey_limit_token1] = ACTIONS(3125), - [aux_sym_remote_command_token1] = ACTIONS(3125), - [aux_sym_remote_forward_token1] = ACTIONS(3125), - [aux_sym_request_tty_token1] = ACTIONS(3125), - [aux_sym_required_rsa_size_token1] = ACTIONS(3125), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3125), - [aux_sym_security_key_provider_token1] = ACTIONS(3125), - [aux_sym_send_env_token1] = ACTIONS(3125), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3125), - [aux_sym_server_alive_interval_token1] = ACTIONS(3125), - [aux_sym_session_type_token1] = ACTIONS(3125), - [aux_sym_set_env_token1] = ACTIONS(3125), - [aux_sym_stdin_null_token1] = ACTIONS(3125), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3125), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3125), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3125), - [aux_sym_syslog_facility_token1] = ACTIONS(3125), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3125), - [aux_sym_keep_alive_token1] = ACTIONS(3125), - [aux_sym_tunnel_token1] = ACTIONS(3127), - [aux_sym_tunnel_device_token1] = ACTIONS(3125), - [aux_sym_update_host_keys_token1] = ACTIONS(3125), - [aux_sym_use_keychain_token1] = ACTIONS(3125), - [aux_sym_use_roaming_token1] = ACTIONS(3125), - [aux_sym_user_token1] = ACTIONS(3127), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3125), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3125), - [aux_sym_visual_host_key_token1] = ACTIONS(3125), - [aux_sym_xauth_location_token1] = ACTIONS(3125), + [ts_builtin_sym_end] = ACTIONS(1154), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1156), + [aux_sym_match_token1] = ACTIONS(1154), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1154), + [aux_sym_address_family_token1] = ACTIONS(1154), + [aux_sym_batch_mode_token1] = ACTIONS(1154), + [aux_sym_bind_address_token1] = ACTIONS(1154), + [aux_sym_bind_interface_token1] = ACTIONS(1154), + [aux_sym_canonical_domains_token1] = ACTIONS(1154), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1154), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1154), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1154), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1154), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1154), + [aux_sym_certificate_file_token1] = ACTIONS(1154), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1154), + [aux_sym_check_host_ip_token1] = ACTIONS(1154), + [aux_sym_ciphers_token1] = ACTIONS(1154), + [aux_sym_cipher_token1] = ACTIONS(1156), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1154), + [aux_sym_compression_token1] = ACTIONS(1154), + [aux_sym_connection_attempts_token1] = ACTIONS(1154), + [aux_sym_connect_timeout_token1] = ACTIONS(1154), + [aux_sym_control_master_token1] = ACTIONS(1154), + [aux_sym_control_path_token1] = ACTIONS(1154), + [aux_sym_control_persist_token1] = ACTIONS(1154), + [aux_sym_dynamic_forward_token1] = ACTIONS(1154), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1154), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1154), + [aux_sym_escape_char_token1] = ACTIONS(1154), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1154), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1154), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1154), + [aux_sym_forward_agent_token1] = ACTIONS(1154), + [aux_sym_forward_x11_token1] = ACTIONS(1156), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1154), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1154), + [aux_sym_gateway_ports_token1] = ACTIONS(1154), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1154), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1154), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1154), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1154), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1154), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1154), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1154), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1154), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1154), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1154), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1154), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1154), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1154), + [aux_sym_host_key_alias_token1] = ACTIONS(1154), + [aux_sym_hostname_token1] = ACTIONS(1154), + [aux_sym_identities_only_token1] = ACTIONS(1154), + [aux_sym_identity_agent_token1] = ACTIONS(1154), + [aux_sym_identity_file_token1] = ACTIONS(1154), + [aux_sym_ignore_unknown_token1] = ACTIONS(1154), + [aux_sym_include_token1] = ACTIONS(1154), + [aux_sym_ip_qos_token1] = ACTIONS(1154), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1154), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1154), + [aux_sym_kex_algorithms_token1] = ACTIONS(1154), + [aux_sym_known_hosts_command_token1] = ACTIONS(1154), + [aux_sym_local_command_token1] = ACTIONS(1154), + [aux_sym_local_forward_token1] = ACTIONS(1154), + [aux_sym_log_level_token1] = ACTIONS(1154), + [aux_sym_log_verbose_token1] = ACTIONS(1154), + [aux_sym_macs_token1] = ACTIONS(1154), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1154), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1154), + [aux_sym_password_authentication_token1] = ACTIONS(1154), + [aux_sym_permit_local_command_token1] = ACTIONS(1154), + [aux_sym_permit_remote_open_token1] = ACTIONS(1154), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1154), + [aux_sym_port_token1] = ACTIONS(1154), + [aux_sym_preferred_authentications_token1] = ACTIONS(1154), + [aux_sym_protocol_token1] = ACTIONS(1154), + [aux_sym_proxy_command_token1] = ACTIONS(1154), + [aux_sym_proxy_jump_token1] = ACTIONS(1154), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1154), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1154), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1154), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1154), + [aux_sym_rekey_limit_token1] = ACTIONS(1154), + [aux_sym_remote_command_token1] = ACTIONS(1154), + [aux_sym_remote_forward_token1] = ACTIONS(1154), + [aux_sym_request_tty_token1] = ACTIONS(1154), + [aux_sym_required_rsa_size_token1] = ACTIONS(1154), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1154), + [aux_sym_security_key_provider_token1] = ACTIONS(1154), + [aux_sym_send_env_token1] = ACTIONS(1154), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1154), + [aux_sym_server_alive_interval_token1] = ACTIONS(1154), + [aux_sym_session_type_token1] = ACTIONS(1154), + [aux_sym_set_env_token1] = ACTIONS(1154), + [aux_sym_stdin_null_token1] = ACTIONS(1154), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1154), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1154), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1154), + [aux_sym_syslog_facility_token1] = ACTIONS(1154), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1154), + [aux_sym_keep_alive_token1] = ACTIONS(1154), + [aux_sym_tunnel_token1] = ACTIONS(1156), + [aux_sym_tunnel_device_token1] = ACTIONS(1154), + [aux_sym_update_host_keys_token1] = ACTIONS(1154), + [aux_sym_use_keychain_token1] = ACTIONS(1154), + [aux_sym_use_roaming_token1] = ACTIONS(1154), + [aux_sym_user_token1] = ACTIONS(1156), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1154), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1154), + [aux_sym_visual_host_key_token1] = ACTIONS(1154), + [aux_sym_xauth_location_token1] = ACTIONS(1154), }, [487] = { - [ts_builtin_sym_end] = ACTIONS(3129), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3131), - [aux_sym_match_token1] = ACTIONS(3129), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3129), - [aux_sym_address_family_token1] = ACTIONS(3129), - [aux_sym_batch_mode_token1] = ACTIONS(3129), - [aux_sym_bind_address_token1] = ACTIONS(3129), - [aux_sym_bind_interface_token1] = ACTIONS(3129), - [aux_sym_canonical_domains_token1] = ACTIONS(3129), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3129), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3129), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3129), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3129), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3129), - [aux_sym_certificate_file_token1] = ACTIONS(3129), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3129), - [aux_sym_check_host_ip_token1] = ACTIONS(3129), - [aux_sym_ciphers_token1] = ACTIONS(3129), - [aux_sym_cipher_token1] = ACTIONS(3131), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3129), - [aux_sym_compression_token1] = ACTIONS(3129), - [aux_sym_connection_attempts_token1] = ACTIONS(3129), - [aux_sym_connect_timeout_token1] = ACTIONS(3129), - [aux_sym_control_master_token1] = ACTIONS(3129), - [aux_sym_control_path_token1] = ACTIONS(3129), - [aux_sym_control_persist_token1] = ACTIONS(3129), - [aux_sym_dynamic_forward_token1] = ACTIONS(3129), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3129), - [aux_sym_escape_char_token1] = ACTIONS(3129), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3129), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3129), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3129), - [aux_sym_forward_agent_token1] = ACTIONS(3129), - [aux_sym_forward_x11_token1] = ACTIONS(3131), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3129), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3129), - [aux_sym_gateway_ports_token1] = ACTIONS(3129), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3129), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3129), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3129), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3129), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3129), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3129), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3129), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3129), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3129), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3129), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3129), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3129), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3129), - [aux_sym_host_key_alias_token1] = ACTIONS(3129), - [aux_sym_hostname_token1] = ACTIONS(3129), - [aux_sym_identities_only_token1] = ACTIONS(3129), - [aux_sym_identity_agent_token1] = ACTIONS(3129), - [aux_sym_identity_file_token1] = ACTIONS(3129), - [aux_sym_ignore_unknown_token1] = ACTIONS(3129), - [aux_sym_include_token1] = ACTIONS(3129), - [aux_sym_ip_qos_token1] = ACTIONS(3129), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3129), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3129), - [aux_sym_kex_algorithms_token1] = ACTIONS(3129), - [aux_sym_known_hosts_command_token1] = ACTIONS(3129), - [aux_sym_local_command_token1] = ACTIONS(3129), - [aux_sym_local_forward_token1] = ACTIONS(3129), - [aux_sym_log_level_token1] = ACTIONS(3129), - [aux_sym_log_verbose_token1] = ACTIONS(3129), - [aux_sym_macs_token1] = ACTIONS(3129), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3129), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3129), - [aux_sym_password_authentication_token1] = ACTIONS(3129), - [aux_sym_permit_local_command_token1] = ACTIONS(3129), - [aux_sym_permit_remote_open_token1] = ACTIONS(3129), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3129), - [aux_sym_port_token1] = ACTIONS(3129), - [aux_sym_preferred_authentications_token1] = ACTIONS(3129), - [aux_sym_protocol_token1] = ACTIONS(3129), - [aux_sym_proxy_command_token1] = ACTIONS(3129), - [aux_sym_proxy_jump_token1] = ACTIONS(3129), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3129), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3129), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3129), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3129), - [aux_sym_rekey_limit_token1] = ACTIONS(3129), - [aux_sym_remote_command_token1] = ACTIONS(3129), - [aux_sym_remote_forward_token1] = ACTIONS(3129), - [aux_sym_request_tty_token1] = ACTIONS(3129), - [aux_sym_required_rsa_size_token1] = ACTIONS(3129), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3129), - [aux_sym_security_key_provider_token1] = ACTIONS(3129), - [aux_sym_send_env_token1] = ACTIONS(3129), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3129), - [aux_sym_server_alive_interval_token1] = ACTIONS(3129), - [aux_sym_session_type_token1] = ACTIONS(3129), - [aux_sym_set_env_token1] = ACTIONS(3129), - [aux_sym_stdin_null_token1] = ACTIONS(3129), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3129), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3129), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3129), - [aux_sym_syslog_facility_token1] = ACTIONS(3129), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3129), - [aux_sym_keep_alive_token1] = ACTIONS(3129), - [aux_sym_tunnel_token1] = ACTIONS(3131), - [aux_sym_tunnel_device_token1] = ACTIONS(3129), - [aux_sym_update_host_keys_token1] = ACTIONS(3129), - [aux_sym_use_keychain_token1] = ACTIONS(3129), - [aux_sym_use_roaming_token1] = ACTIONS(3129), - [aux_sym_user_token1] = ACTIONS(3131), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3129), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3129), - [aux_sym_visual_host_key_token1] = ACTIONS(3129), - [aux_sym_xauth_location_token1] = ACTIONS(3129), + [ts_builtin_sym_end] = ACTIONS(3116), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3118), + [aux_sym_match_token1] = ACTIONS(3116), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3116), + [aux_sym_address_family_token1] = ACTIONS(3116), + [aux_sym_batch_mode_token1] = ACTIONS(3116), + [aux_sym_bind_address_token1] = ACTIONS(3116), + [aux_sym_bind_interface_token1] = ACTIONS(3116), + [aux_sym_canonical_domains_token1] = ACTIONS(3116), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3116), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3116), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3116), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3116), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3116), + [aux_sym_certificate_file_token1] = ACTIONS(3116), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3116), + [aux_sym_check_host_ip_token1] = ACTIONS(3116), + [aux_sym_ciphers_token1] = ACTIONS(3116), + [aux_sym_cipher_token1] = ACTIONS(3118), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3116), + [aux_sym_compression_token1] = ACTIONS(3116), + [aux_sym_connection_attempts_token1] = ACTIONS(3116), + [aux_sym_connect_timeout_token1] = ACTIONS(3116), + [aux_sym_control_master_token1] = ACTIONS(3116), + [aux_sym_control_path_token1] = ACTIONS(3116), + [aux_sym_control_persist_token1] = ACTIONS(3116), + [aux_sym_dynamic_forward_token1] = ACTIONS(3116), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3116), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3116), + [aux_sym_escape_char_token1] = ACTIONS(3116), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3116), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3116), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3116), + [aux_sym_forward_agent_token1] = ACTIONS(3116), + [aux_sym_forward_x11_token1] = ACTIONS(3118), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3116), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3116), + [aux_sym_gateway_ports_token1] = ACTIONS(3116), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3116), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3116), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3116), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3116), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3116), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3116), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3116), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3116), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3116), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3116), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3116), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3116), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3116), + [aux_sym_host_key_alias_token1] = ACTIONS(3116), + [aux_sym_hostname_token1] = ACTIONS(3116), + [aux_sym_identities_only_token1] = ACTIONS(3116), + [aux_sym_identity_agent_token1] = ACTIONS(3116), + [aux_sym_identity_file_token1] = ACTIONS(3116), + [aux_sym_ignore_unknown_token1] = ACTIONS(3116), + [aux_sym_include_token1] = ACTIONS(3116), + [aux_sym_ip_qos_token1] = ACTIONS(3116), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3116), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3116), + [aux_sym_kex_algorithms_token1] = ACTIONS(3116), + [aux_sym_known_hosts_command_token1] = ACTIONS(3116), + [aux_sym_local_command_token1] = ACTIONS(3116), + [aux_sym_local_forward_token1] = ACTIONS(3116), + [aux_sym_log_level_token1] = ACTIONS(3116), + [aux_sym_log_verbose_token1] = ACTIONS(3116), + [aux_sym_macs_token1] = ACTIONS(3116), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3116), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3116), + [aux_sym_password_authentication_token1] = ACTIONS(3116), + [aux_sym_permit_local_command_token1] = ACTIONS(3116), + [aux_sym_permit_remote_open_token1] = ACTIONS(3116), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3116), + [aux_sym_port_token1] = ACTIONS(3116), + [aux_sym_preferred_authentications_token1] = ACTIONS(3116), + [aux_sym_protocol_token1] = ACTIONS(3116), + [aux_sym_proxy_command_token1] = ACTIONS(3116), + [aux_sym_proxy_jump_token1] = ACTIONS(3116), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3116), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3116), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3116), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3116), + [aux_sym_rekey_limit_token1] = ACTIONS(3116), + [aux_sym_remote_command_token1] = ACTIONS(3116), + [aux_sym_remote_forward_token1] = ACTIONS(3116), + [aux_sym_request_tty_token1] = ACTIONS(3116), + [aux_sym_required_rsa_size_token1] = ACTIONS(3116), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3116), + [aux_sym_security_key_provider_token1] = ACTIONS(3116), + [aux_sym_send_env_token1] = ACTIONS(3116), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3116), + [aux_sym_server_alive_interval_token1] = ACTIONS(3116), + [aux_sym_session_type_token1] = ACTIONS(3116), + [aux_sym_set_env_token1] = ACTIONS(3116), + [aux_sym_stdin_null_token1] = ACTIONS(3116), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3116), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3116), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3116), + [aux_sym_syslog_facility_token1] = ACTIONS(3116), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3116), + [aux_sym_keep_alive_token1] = ACTIONS(3116), + [aux_sym_tunnel_token1] = ACTIONS(3118), + [aux_sym_tunnel_device_token1] = ACTIONS(3116), + [aux_sym_update_host_keys_token1] = ACTIONS(3116), + [aux_sym_use_keychain_token1] = ACTIONS(3116), + [aux_sym_use_roaming_token1] = ACTIONS(3116), + [aux_sym_user_token1] = ACTIONS(3118), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3116), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3116), + [aux_sym_visual_host_key_token1] = ACTIONS(3116), + [aux_sym_xauth_location_token1] = ACTIONS(3116), }, [488] = { - [ts_builtin_sym_end] = ACTIONS(3133), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3135), - [aux_sym_match_token1] = ACTIONS(3133), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3133), - [aux_sym_address_family_token1] = ACTIONS(3133), - [aux_sym_batch_mode_token1] = ACTIONS(3133), - [aux_sym_bind_address_token1] = ACTIONS(3133), - [aux_sym_bind_interface_token1] = ACTIONS(3133), - [aux_sym_canonical_domains_token1] = ACTIONS(3133), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3133), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3133), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3133), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3133), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3133), - [aux_sym_certificate_file_token1] = ACTIONS(3133), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3133), - [aux_sym_check_host_ip_token1] = ACTIONS(3133), - [aux_sym_ciphers_token1] = ACTIONS(3133), - [aux_sym_cipher_token1] = ACTIONS(3135), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3133), - [aux_sym_compression_token1] = ACTIONS(3133), - [aux_sym_connection_attempts_token1] = ACTIONS(3133), - [aux_sym_connect_timeout_token1] = ACTIONS(3133), - [aux_sym_control_master_token1] = ACTIONS(3133), - [aux_sym_control_path_token1] = ACTIONS(3133), - [aux_sym_control_persist_token1] = ACTIONS(3133), - [aux_sym_dynamic_forward_token1] = ACTIONS(3133), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3133), - [aux_sym_escape_char_token1] = ACTIONS(3133), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3133), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3133), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3133), - [aux_sym_forward_agent_token1] = ACTIONS(3133), - [aux_sym_forward_x11_token1] = ACTIONS(3135), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3133), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3133), - [aux_sym_gateway_ports_token1] = ACTIONS(3133), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3133), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3133), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3133), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3133), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3133), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3133), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3133), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3133), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3133), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3133), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3133), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3133), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3133), - [aux_sym_host_key_alias_token1] = ACTIONS(3133), - [aux_sym_hostname_token1] = ACTIONS(3133), - [aux_sym_identities_only_token1] = ACTIONS(3133), - [aux_sym_identity_agent_token1] = ACTIONS(3133), - [aux_sym_identity_file_token1] = ACTIONS(3133), - [aux_sym_ignore_unknown_token1] = ACTIONS(3133), - [aux_sym_include_token1] = ACTIONS(3133), - [aux_sym_ip_qos_token1] = ACTIONS(3133), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3133), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3133), - [aux_sym_kex_algorithms_token1] = ACTIONS(3133), - [aux_sym_known_hosts_command_token1] = ACTIONS(3133), - [aux_sym_local_command_token1] = ACTIONS(3133), - [aux_sym_local_forward_token1] = ACTIONS(3133), - [aux_sym_log_level_token1] = ACTIONS(3133), - [aux_sym_log_verbose_token1] = ACTIONS(3133), - [aux_sym_macs_token1] = ACTIONS(3133), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3133), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3133), - [aux_sym_password_authentication_token1] = ACTIONS(3133), - [aux_sym_permit_local_command_token1] = ACTIONS(3133), - [aux_sym_permit_remote_open_token1] = ACTIONS(3133), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3133), - [aux_sym_port_token1] = ACTIONS(3133), - [aux_sym_preferred_authentications_token1] = ACTIONS(3133), - [aux_sym_protocol_token1] = ACTIONS(3133), - [aux_sym_proxy_command_token1] = ACTIONS(3133), - [aux_sym_proxy_jump_token1] = ACTIONS(3133), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3133), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3133), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3133), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3133), - [aux_sym_rekey_limit_token1] = ACTIONS(3133), - [aux_sym_remote_command_token1] = ACTIONS(3133), - [aux_sym_remote_forward_token1] = ACTIONS(3133), - [aux_sym_request_tty_token1] = ACTIONS(3133), - [aux_sym_required_rsa_size_token1] = ACTIONS(3133), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3133), - [aux_sym_security_key_provider_token1] = ACTIONS(3133), - [aux_sym_send_env_token1] = ACTIONS(3133), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3133), - [aux_sym_server_alive_interval_token1] = ACTIONS(3133), - [aux_sym_session_type_token1] = ACTIONS(3133), - [aux_sym_set_env_token1] = ACTIONS(3133), - [aux_sym_stdin_null_token1] = ACTIONS(3133), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3133), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3133), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3133), - [aux_sym_syslog_facility_token1] = ACTIONS(3133), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3133), - [aux_sym_keep_alive_token1] = ACTIONS(3133), - [aux_sym_tunnel_token1] = ACTIONS(3135), - [aux_sym_tunnel_device_token1] = ACTIONS(3133), - [aux_sym_update_host_keys_token1] = ACTIONS(3133), - [aux_sym_use_keychain_token1] = ACTIONS(3133), - [aux_sym_use_roaming_token1] = ACTIONS(3133), - [aux_sym_user_token1] = ACTIONS(3135), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3133), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3133), - [aux_sym_visual_host_key_token1] = ACTIONS(3133), - [aux_sym_xauth_location_token1] = ACTIONS(3133), + [ts_builtin_sym_end] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1084), + [aux_sym_match_token1] = ACTIONS(1082), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1082), + [aux_sym_address_family_token1] = ACTIONS(1082), + [aux_sym_batch_mode_token1] = ACTIONS(1082), + [aux_sym_bind_address_token1] = ACTIONS(1082), + [aux_sym_bind_interface_token1] = ACTIONS(1082), + [aux_sym_canonical_domains_token1] = ACTIONS(1082), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1082), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1082), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1082), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1082), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1082), + [aux_sym_certificate_file_token1] = ACTIONS(1082), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1082), + [aux_sym_check_host_ip_token1] = ACTIONS(1082), + [aux_sym_ciphers_token1] = ACTIONS(1082), + [aux_sym_cipher_token1] = ACTIONS(1084), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1082), + [aux_sym_compression_token1] = ACTIONS(1082), + [aux_sym_connection_attempts_token1] = ACTIONS(1082), + [aux_sym_connect_timeout_token1] = ACTIONS(1082), + [aux_sym_control_master_token1] = ACTIONS(1082), + [aux_sym_control_path_token1] = ACTIONS(1082), + [aux_sym_control_persist_token1] = ACTIONS(1082), + [aux_sym_dynamic_forward_token1] = ACTIONS(1082), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1082), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1082), + [aux_sym_escape_char_token1] = ACTIONS(1082), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1082), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1082), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1082), + [aux_sym_forward_agent_token1] = ACTIONS(1082), + [aux_sym_forward_x11_token1] = ACTIONS(1084), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1082), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1082), + [aux_sym_gateway_ports_token1] = ACTIONS(1082), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1082), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1082), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1082), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1082), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1082), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1082), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1082), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1082), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1082), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1082), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1082), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1082), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1082), + [aux_sym_host_key_alias_token1] = ACTIONS(1082), + [aux_sym_hostname_token1] = ACTIONS(1082), + [aux_sym_identities_only_token1] = ACTIONS(1082), + [aux_sym_identity_agent_token1] = ACTIONS(1082), + [aux_sym_identity_file_token1] = ACTIONS(1082), + [aux_sym_ignore_unknown_token1] = ACTIONS(1082), + [aux_sym_include_token1] = ACTIONS(1082), + [aux_sym_ip_qos_token1] = ACTIONS(1082), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1082), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1082), + [aux_sym_kex_algorithms_token1] = ACTIONS(1082), + [aux_sym_known_hosts_command_token1] = ACTIONS(1082), + [aux_sym_local_command_token1] = ACTIONS(1082), + [aux_sym_local_forward_token1] = ACTIONS(1082), + [aux_sym_log_level_token1] = ACTIONS(1082), + [aux_sym_log_verbose_token1] = ACTIONS(1082), + [aux_sym_macs_token1] = ACTIONS(1082), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1082), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1082), + [aux_sym_password_authentication_token1] = ACTIONS(1082), + [aux_sym_permit_local_command_token1] = ACTIONS(1082), + [aux_sym_permit_remote_open_token1] = ACTIONS(1082), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1082), + [aux_sym_port_token1] = ACTIONS(1082), + [aux_sym_preferred_authentications_token1] = ACTIONS(1082), + [aux_sym_protocol_token1] = ACTIONS(1082), + [aux_sym_proxy_command_token1] = ACTIONS(1082), + [aux_sym_proxy_jump_token1] = ACTIONS(1082), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1082), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1082), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1082), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1082), + [aux_sym_rekey_limit_token1] = ACTIONS(1082), + [aux_sym_remote_command_token1] = ACTIONS(1082), + [aux_sym_remote_forward_token1] = ACTIONS(1082), + [aux_sym_request_tty_token1] = ACTIONS(1082), + [aux_sym_required_rsa_size_token1] = ACTIONS(1082), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1082), + [aux_sym_security_key_provider_token1] = ACTIONS(1082), + [aux_sym_send_env_token1] = ACTIONS(1082), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1082), + [aux_sym_server_alive_interval_token1] = ACTIONS(1082), + [aux_sym_session_type_token1] = ACTIONS(1082), + [aux_sym_set_env_token1] = ACTIONS(1082), + [aux_sym_stdin_null_token1] = ACTIONS(1082), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1082), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1082), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1082), + [aux_sym_syslog_facility_token1] = ACTIONS(1082), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1082), + [aux_sym_keep_alive_token1] = ACTIONS(1082), + [aux_sym_tunnel_token1] = ACTIONS(1084), + [aux_sym_tunnel_device_token1] = ACTIONS(1082), + [aux_sym_update_host_keys_token1] = ACTIONS(1082), + [aux_sym_use_keychain_token1] = ACTIONS(1082), + [aux_sym_use_roaming_token1] = ACTIONS(1082), + [aux_sym_user_token1] = ACTIONS(1084), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1082), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1082), + [aux_sym_visual_host_key_token1] = ACTIONS(1082), + [aux_sym_xauth_location_token1] = ACTIONS(1082), }, [489] = { - [ts_builtin_sym_end] = ACTIONS(3137), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3139), - [aux_sym_match_token1] = ACTIONS(3137), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3137), - [aux_sym_address_family_token1] = ACTIONS(3137), - [aux_sym_batch_mode_token1] = ACTIONS(3137), - [aux_sym_bind_address_token1] = ACTIONS(3137), - [aux_sym_bind_interface_token1] = ACTIONS(3137), - [aux_sym_canonical_domains_token1] = ACTIONS(3137), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3137), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3137), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3137), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3137), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3137), - [aux_sym_certificate_file_token1] = ACTIONS(3137), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3137), - [aux_sym_check_host_ip_token1] = ACTIONS(3137), - [aux_sym_ciphers_token1] = ACTIONS(3137), - [aux_sym_cipher_token1] = ACTIONS(3139), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3137), - [aux_sym_compression_token1] = ACTIONS(3137), - [aux_sym_connection_attempts_token1] = ACTIONS(3137), - [aux_sym_connect_timeout_token1] = ACTIONS(3137), - [aux_sym_control_master_token1] = ACTIONS(3137), - [aux_sym_control_path_token1] = ACTIONS(3137), - [aux_sym_control_persist_token1] = ACTIONS(3137), - [aux_sym_dynamic_forward_token1] = ACTIONS(3137), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3137), - [aux_sym_escape_char_token1] = ACTIONS(3137), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3137), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3137), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3137), - [aux_sym_forward_agent_token1] = ACTIONS(3137), - [aux_sym_forward_x11_token1] = ACTIONS(3139), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3137), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3137), - [aux_sym_gateway_ports_token1] = ACTIONS(3137), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3137), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3137), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3137), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3137), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3137), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3137), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3137), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3137), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3137), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3137), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3137), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3137), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3137), - [aux_sym_host_key_alias_token1] = ACTIONS(3137), - [aux_sym_hostname_token1] = ACTIONS(3137), - [aux_sym_identities_only_token1] = ACTIONS(3137), - [aux_sym_identity_agent_token1] = ACTIONS(3137), - [aux_sym_identity_file_token1] = ACTIONS(3137), - [aux_sym_ignore_unknown_token1] = ACTIONS(3137), - [aux_sym_include_token1] = ACTIONS(3137), - [aux_sym_ip_qos_token1] = ACTIONS(3137), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3137), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3137), - [aux_sym_kex_algorithms_token1] = ACTIONS(3137), - [aux_sym_known_hosts_command_token1] = ACTIONS(3137), - [aux_sym_local_command_token1] = ACTIONS(3137), - [aux_sym_local_forward_token1] = ACTIONS(3137), - [aux_sym_log_level_token1] = ACTIONS(3137), - [aux_sym_log_verbose_token1] = ACTIONS(3137), - [aux_sym_macs_token1] = ACTIONS(3137), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3137), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3137), - [aux_sym_password_authentication_token1] = ACTIONS(3137), - [aux_sym_permit_local_command_token1] = ACTIONS(3137), - [aux_sym_permit_remote_open_token1] = ACTIONS(3137), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3137), - [aux_sym_port_token1] = ACTIONS(3137), - [aux_sym_preferred_authentications_token1] = ACTIONS(3137), - [aux_sym_protocol_token1] = ACTIONS(3137), - [aux_sym_proxy_command_token1] = ACTIONS(3137), - [aux_sym_proxy_jump_token1] = ACTIONS(3137), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3137), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3137), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3137), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3137), - [aux_sym_rekey_limit_token1] = ACTIONS(3137), - [aux_sym_remote_command_token1] = ACTIONS(3137), - [aux_sym_remote_forward_token1] = ACTIONS(3137), - [aux_sym_request_tty_token1] = ACTIONS(3137), - [aux_sym_required_rsa_size_token1] = ACTIONS(3137), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3137), - [aux_sym_security_key_provider_token1] = ACTIONS(3137), - [aux_sym_send_env_token1] = ACTIONS(3137), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3137), - [aux_sym_server_alive_interval_token1] = ACTIONS(3137), - [aux_sym_session_type_token1] = ACTIONS(3137), - [aux_sym_set_env_token1] = ACTIONS(3137), - [aux_sym_stdin_null_token1] = ACTIONS(3137), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3137), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3137), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3137), - [aux_sym_syslog_facility_token1] = ACTIONS(3137), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3137), - [aux_sym_keep_alive_token1] = ACTIONS(3137), - [aux_sym_tunnel_token1] = ACTIONS(3139), - [aux_sym_tunnel_device_token1] = ACTIONS(3137), - [aux_sym_update_host_keys_token1] = ACTIONS(3137), - [aux_sym_use_keychain_token1] = ACTIONS(3137), - [aux_sym_use_roaming_token1] = ACTIONS(3137), - [aux_sym_user_token1] = ACTIONS(3139), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3137), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3137), - [aux_sym_visual_host_key_token1] = ACTIONS(3137), - [aux_sym_xauth_location_token1] = ACTIONS(3137), + [ts_builtin_sym_end] = ACTIONS(1160), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1162), + [aux_sym_match_token1] = ACTIONS(1160), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1160), + [aux_sym_address_family_token1] = ACTIONS(1160), + [aux_sym_batch_mode_token1] = ACTIONS(1160), + [aux_sym_bind_address_token1] = ACTIONS(1160), + [aux_sym_bind_interface_token1] = ACTIONS(1160), + [aux_sym_canonical_domains_token1] = ACTIONS(1160), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1160), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1160), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1160), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1160), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1160), + [aux_sym_certificate_file_token1] = ACTIONS(1160), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1160), + [aux_sym_check_host_ip_token1] = ACTIONS(1160), + [aux_sym_ciphers_token1] = ACTIONS(1160), + [aux_sym_cipher_token1] = ACTIONS(1162), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1160), + [aux_sym_compression_token1] = ACTIONS(1160), + [aux_sym_connection_attempts_token1] = ACTIONS(1160), + [aux_sym_connect_timeout_token1] = ACTIONS(1160), + [aux_sym_control_master_token1] = ACTIONS(1160), + [aux_sym_control_path_token1] = ACTIONS(1160), + [aux_sym_control_persist_token1] = ACTIONS(1160), + [aux_sym_dynamic_forward_token1] = ACTIONS(1160), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1160), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1160), + [aux_sym_escape_char_token1] = ACTIONS(1160), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1160), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1160), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1160), + [aux_sym_forward_agent_token1] = ACTIONS(1160), + [aux_sym_forward_x11_token1] = ACTIONS(1162), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1160), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1160), + [aux_sym_gateway_ports_token1] = ACTIONS(1160), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1160), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1160), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1160), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1160), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1160), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1160), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1160), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1160), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1160), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1160), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1160), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1160), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1160), + [aux_sym_host_key_alias_token1] = ACTIONS(1160), + [aux_sym_hostname_token1] = ACTIONS(1160), + [aux_sym_identities_only_token1] = ACTIONS(1160), + [aux_sym_identity_agent_token1] = ACTIONS(1160), + [aux_sym_identity_file_token1] = ACTIONS(1160), + [aux_sym_ignore_unknown_token1] = ACTIONS(1160), + [aux_sym_include_token1] = ACTIONS(1160), + [aux_sym_ip_qos_token1] = ACTIONS(1160), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1160), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1160), + [aux_sym_kex_algorithms_token1] = ACTIONS(1160), + [aux_sym_known_hosts_command_token1] = ACTIONS(1160), + [aux_sym_local_command_token1] = ACTIONS(1160), + [aux_sym_local_forward_token1] = ACTIONS(1160), + [aux_sym_log_level_token1] = ACTIONS(1160), + [aux_sym_log_verbose_token1] = ACTIONS(1160), + [aux_sym_macs_token1] = ACTIONS(1160), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1160), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1160), + [aux_sym_password_authentication_token1] = ACTIONS(1160), + [aux_sym_permit_local_command_token1] = ACTIONS(1160), + [aux_sym_permit_remote_open_token1] = ACTIONS(1160), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1160), + [aux_sym_port_token1] = ACTIONS(1160), + [aux_sym_preferred_authentications_token1] = ACTIONS(1160), + [aux_sym_protocol_token1] = ACTIONS(1160), + [aux_sym_proxy_command_token1] = ACTIONS(1160), + [aux_sym_proxy_jump_token1] = ACTIONS(1160), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1160), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1160), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1160), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1160), + [aux_sym_rekey_limit_token1] = ACTIONS(1160), + [aux_sym_remote_command_token1] = ACTIONS(1160), + [aux_sym_remote_forward_token1] = ACTIONS(1160), + [aux_sym_request_tty_token1] = ACTIONS(1160), + [aux_sym_required_rsa_size_token1] = ACTIONS(1160), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1160), + [aux_sym_security_key_provider_token1] = ACTIONS(1160), + [aux_sym_send_env_token1] = ACTIONS(1160), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1160), + [aux_sym_server_alive_interval_token1] = ACTIONS(1160), + [aux_sym_session_type_token1] = ACTIONS(1160), + [aux_sym_set_env_token1] = ACTIONS(1160), + [aux_sym_stdin_null_token1] = ACTIONS(1160), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1160), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1160), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1160), + [aux_sym_syslog_facility_token1] = ACTIONS(1160), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1160), + [aux_sym_keep_alive_token1] = ACTIONS(1160), + [aux_sym_tunnel_token1] = ACTIONS(1162), + [aux_sym_tunnel_device_token1] = ACTIONS(1160), + [aux_sym_update_host_keys_token1] = ACTIONS(1160), + [aux_sym_use_keychain_token1] = ACTIONS(1160), + [aux_sym_use_roaming_token1] = ACTIONS(1160), + [aux_sym_user_token1] = ACTIONS(1162), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1160), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1160), + [aux_sym_visual_host_key_token1] = ACTIONS(1160), + [aux_sym_xauth_location_token1] = ACTIONS(1160), }, [490] = { - [ts_builtin_sym_end] = ACTIONS(3141), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3143), - [aux_sym_match_token1] = ACTIONS(3141), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3141), - [aux_sym_address_family_token1] = ACTIONS(3141), - [aux_sym_batch_mode_token1] = ACTIONS(3141), - [aux_sym_bind_address_token1] = ACTIONS(3141), - [aux_sym_bind_interface_token1] = ACTIONS(3141), - [aux_sym_canonical_domains_token1] = ACTIONS(3141), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3141), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3141), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3141), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3141), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3141), - [aux_sym_certificate_file_token1] = ACTIONS(3141), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3141), - [aux_sym_check_host_ip_token1] = ACTIONS(3141), - [aux_sym_ciphers_token1] = ACTIONS(3141), - [aux_sym_cipher_token1] = ACTIONS(3143), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3141), - [aux_sym_compression_token1] = ACTIONS(3141), - [aux_sym_connection_attempts_token1] = ACTIONS(3141), - [aux_sym_connect_timeout_token1] = ACTIONS(3141), - [aux_sym_control_master_token1] = ACTIONS(3141), - [aux_sym_control_path_token1] = ACTIONS(3141), - [aux_sym_control_persist_token1] = ACTIONS(3141), - [aux_sym_dynamic_forward_token1] = ACTIONS(3141), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3141), - [aux_sym_escape_char_token1] = ACTIONS(3141), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3141), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3141), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3141), - [aux_sym_forward_agent_token1] = ACTIONS(3141), - [aux_sym_forward_x11_token1] = ACTIONS(3143), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3141), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3141), - [aux_sym_gateway_ports_token1] = ACTIONS(3141), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3141), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3141), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3141), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3141), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3141), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3141), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3141), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3141), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3141), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3141), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3141), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3141), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3141), - [aux_sym_host_key_alias_token1] = ACTIONS(3141), - [aux_sym_hostname_token1] = ACTIONS(3141), - [aux_sym_identities_only_token1] = ACTIONS(3141), - [aux_sym_identity_agent_token1] = ACTIONS(3141), - [aux_sym_identity_file_token1] = ACTIONS(3141), - [aux_sym_ignore_unknown_token1] = ACTIONS(3141), - [aux_sym_include_token1] = ACTIONS(3141), - [aux_sym_ip_qos_token1] = ACTIONS(3141), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3141), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3141), - [aux_sym_kex_algorithms_token1] = ACTIONS(3141), - [aux_sym_known_hosts_command_token1] = ACTIONS(3141), - [aux_sym_local_command_token1] = ACTIONS(3141), - [aux_sym_local_forward_token1] = ACTIONS(3141), - [aux_sym_log_level_token1] = ACTIONS(3141), - [aux_sym_log_verbose_token1] = ACTIONS(3141), - [aux_sym_macs_token1] = ACTIONS(3141), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3141), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3141), - [aux_sym_password_authentication_token1] = ACTIONS(3141), - [aux_sym_permit_local_command_token1] = ACTIONS(3141), - [aux_sym_permit_remote_open_token1] = ACTIONS(3141), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3141), - [aux_sym_port_token1] = ACTIONS(3141), - [aux_sym_preferred_authentications_token1] = ACTIONS(3141), - [aux_sym_protocol_token1] = ACTIONS(3141), - [aux_sym_proxy_command_token1] = ACTIONS(3141), - [aux_sym_proxy_jump_token1] = ACTIONS(3141), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3141), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3141), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3141), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3141), - [aux_sym_rekey_limit_token1] = ACTIONS(3141), - [aux_sym_remote_command_token1] = ACTIONS(3141), - [aux_sym_remote_forward_token1] = ACTIONS(3141), - [aux_sym_request_tty_token1] = ACTIONS(3141), - [aux_sym_required_rsa_size_token1] = ACTIONS(3141), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3141), - [aux_sym_security_key_provider_token1] = ACTIONS(3141), - [aux_sym_send_env_token1] = ACTIONS(3141), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3141), - [aux_sym_server_alive_interval_token1] = ACTIONS(3141), - [aux_sym_session_type_token1] = ACTIONS(3141), - [aux_sym_set_env_token1] = ACTIONS(3141), - [aux_sym_stdin_null_token1] = ACTIONS(3141), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3141), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3141), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3141), - [aux_sym_syslog_facility_token1] = ACTIONS(3141), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3141), - [aux_sym_keep_alive_token1] = ACTIONS(3141), - [aux_sym_tunnel_token1] = ACTIONS(3143), - [aux_sym_tunnel_device_token1] = ACTIONS(3141), - [aux_sym_update_host_keys_token1] = ACTIONS(3141), - [aux_sym_use_keychain_token1] = ACTIONS(3141), - [aux_sym_use_roaming_token1] = ACTIONS(3141), - [aux_sym_user_token1] = ACTIONS(3143), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3141), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3141), - [aux_sym_visual_host_key_token1] = ACTIONS(3141), - [aux_sym_xauth_location_token1] = ACTIONS(3141), + [ts_builtin_sym_end] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3122), + [aux_sym_match_token1] = ACTIONS(3120), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3120), + [aux_sym_address_family_token1] = ACTIONS(3120), + [aux_sym_batch_mode_token1] = ACTIONS(3120), + [aux_sym_bind_address_token1] = ACTIONS(3120), + [aux_sym_bind_interface_token1] = ACTIONS(3120), + [aux_sym_canonical_domains_token1] = ACTIONS(3120), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3120), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3120), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3120), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3120), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3120), + [aux_sym_certificate_file_token1] = ACTIONS(3120), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3120), + [aux_sym_check_host_ip_token1] = ACTIONS(3120), + [aux_sym_ciphers_token1] = ACTIONS(3120), + [aux_sym_cipher_token1] = ACTIONS(3122), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3120), + [aux_sym_compression_token1] = ACTIONS(3120), + [aux_sym_connection_attempts_token1] = ACTIONS(3120), + [aux_sym_connect_timeout_token1] = ACTIONS(3120), + [aux_sym_control_master_token1] = ACTIONS(3120), + [aux_sym_control_path_token1] = ACTIONS(3120), + [aux_sym_control_persist_token1] = ACTIONS(3120), + [aux_sym_dynamic_forward_token1] = ACTIONS(3120), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3120), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3120), + [aux_sym_escape_char_token1] = ACTIONS(3120), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3120), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3120), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3120), + [aux_sym_forward_agent_token1] = ACTIONS(3120), + [aux_sym_forward_x11_token1] = ACTIONS(3122), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3120), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3120), + [aux_sym_gateway_ports_token1] = ACTIONS(3120), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3120), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3120), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3120), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3120), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3120), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3120), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3120), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3120), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3120), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3120), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3120), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3120), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3120), + [aux_sym_host_key_alias_token1] = ACTIONS(3120), + [aux_sym_hostname_token1] = ACTIONS(3120), + [aux_sym_identities_only_token1] = ACTIONS(3120), + [aux_sym_identity_agent_token1] = ACTIONS(3120), + [aux_sym_identity_file_token1] = ACTIONS(3120), + [aux_sym_ignore_unknown_token1] = ACTIONS(3120), + [aux_sym_include_token1] = ACTIONS(3120), + [aux_sym_ip_qos_token1] = ACTIONS(3120), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3120), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3120), + [aux_sym_kex_algorithms_token1] = ACTIONS(3120), + [aux_sym_known_hosts_command_token1] = ACTIONS(3120), + [aux_sym_local_command_token1] = ACTIONS(3120), + [aux_sym_local_forward_token1] = ACTIONS(3120), + [aux_sym_log_level_token1] = ACTIONS(3120), + [aux_sym_log_verbose_token1] = ACTIONS(3120), + [aux_sym_macs_token1] = ACTIONS(3120), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3120), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3120), + [aux_sym_password_authentication_token1] = ACTIONS(3120), + [aux_sym_permit_local_command_token1] = ACTIONS(3120), + [aux_sym_permit_remote_open_token1] = ACTIONS(3120), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3120), + [aux_sym_port_token1] = ACTIONS(3120), + [aux_sym_preferred_authentications_token1] = ACTIONS(3120), + [aux_sym_protocol_token1] = ACTIONS(3120), + [aux_sym_proxy_command_token1] = ACTIONS(3120), + [aux_sym_proxy_jump_token1] = ACTIONS(3120), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3120), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3120), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3120), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3120), + [aux_sym_rekey_limit_token1] = ACTIONS(3120), + [aux_sym_remote_command_token1] = ACTIONS(3120), + [aux_sym_remote_forward_token1] = ACTIONS(3120), + [aux_sym_request_tty_token1] = ACTIONS(3120), + [aux_sym_required_rsa_size_token1] = ACTIONS(3120), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3120), + [aux_sym_security_key_provider_token1] = ACTIONS(3120), + [aux_sym_send_env_token1] = ACTIONS(3120), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3120), + [aux_sym_server_alive_interval_token1] = ACTIONS(3120), + [aux_sym_session_type_token1] = ACTIONS(3120), + [aux_sym_set_env_token1] = ACTIONS(3120), + [aux_sym_stdin_null_token1] = ACTIONS(3120), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3120), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3120), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3120), + [aux_sym_syslog_facility_token1] = ACTIONS(3120), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3120), + [aux_sym_keep_alive_token1] = ACTIONS(3120), + [aux_sym_tunnel_token1] = ACTIONS(3122), + [aux_sym_tunnel_device_token1] = ACTIONS(3120), + [aux_sym_update_host_keys_token1] = ACTIONS(3120), + [aux_sym_use_keychain_token1] = ACTIONS(3120), + [aux_sym_use_roaming_token1] = ACTIONS(3120), + [aux_sym_user_token1] = ACTIONS(3122), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3120), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3120), + [aux_sym_visual_host_key_token1] = ACTIONS(3120), + [aux_sym_xauth_location_token1] = ACTIONS(3120), }, [491] = { - [ts_builtin_sym_end] = ACTIONS(3145), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3147), - [aux_sym_match_token1] = ACTIONS(3145), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3145), - [aux_sym_address_family_token1] = ACTIONS(3145), - [aux_sym_batch_mode_token1] = ACTIONS(3145), - [aux_sym_bind_address_token1] = ACTIONS(3145), - [aux_sym_bind_interface_token1] = ACTIONS(3145), - [aux_sym_canonical_domains_token1] = ACTIONS(3145), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3145), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3145), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3145), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3145), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3145), - [aux_sym_certificate_file_token1] = ACTIONS(3145), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3145), - [aux_sym_check_host_ip_token1] = ACTIONS(3145), - [aux_sym_ciphers_token1] = ACTIONS(3145), - [aux_sym_cipher_token1] = ACTIONS(3147), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3145), - [aux_sym_compression_token1] = ACTIONS(3145), - [aux_sym_connection_attempts_token1] = ACTIONS(3145), - [aux_sym_connect_timeout_token1] = ACTIONS(3145), - [aux_sym_control_master_token1] = ACTIONS(3145), - [aux_sym_control_path_token1] = ACTIONS(3145), - [aux_sym_control_persist_token1] = ACTIONS(3145), - [aux_sym_dynamic_forward_token1] = ACTIONS(3145), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3145), - [aux_sym_escape_char_token1] = ACTIONS(3145), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3145), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3145), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3145), - [aux_sym_forward_agent_token1] = ACTIONS(3145), - [aux_sym_forward_x11_token1] = ACTIONS(3147), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3145), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3145), - [aux_sym_gateway_ports_token1] = ACTIONS(3145), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3145), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3145), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3145), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3145), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3145), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3145), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3145), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3145), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3145), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3145), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3145), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3145), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3145), - [aux_sym_host_key_alias_token1] = ACTIONS(3145), - [aux_sym_hostname_token1] = ACTIONS(3145), - [aux_sym_identities_only_token1] = ACTIONS(3145), - [aux_sym_identity_agent_token1] = ACTIONS(3145), - [aux_sym_identity_file_token1] = ACTIONS(3145), - [aux_sym_ignore_unknown_token1] = ACTIONS(3145), - [aux_sym_include_token1] = ACTIONS(3145), - [aux_sym_ip_qos_token1] = ACTIONS(3145), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3145), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3145), - [aux_sym_kex_algorithms_token1] = ACTIONS(3145), - [aux_sym_known_hosts_command_token1] = ACTIONS(3145), - [aux_sym_local_command_token1] = ACTIONS(3145), - [aux_sym_local_forward_token1] = ACTIONS(3145), - [aux_sym_log_level_token1] = ACTIONS(3145), - [aux_sym_log_verbose_token1] = ACTIONS(3145), - [aux_sym_macs_token1] = ACTIONS(3145), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3145), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3145), - [aux_sym_password_authentication_token1] = ACTIONS(3145), - [aux_sym_permit_local_command_token1] = ACTIONS(3145), - [aux_sym_permit_remote_open_token1] = ACTIONS(3145), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3145), - [aux_sym_port_token1] = ACTIONS(3145), - [aux_sym_preferred_authentications_token1] = ACTIONS(3145), - [aux_sym_protocol_token1] = ACTIONS(3145), - [aux_sym_proxy_command_token1] = ACTIONS(3145), - [aux_sym_proxy_jump_token1] = ACTIONS(3145), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3145), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3145), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3145), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3145), - [aux_sym_rekey_limit_token1] = ACTIONS(3145), - [aux_sym_remote_command_token1] = ACTIONS(3145), - [aux_sym_remote_forward_token1] = ACTIONS(3145), - [aux_sym_request_tty_token1] = ACTIONS(3145), - [aux_sym_required_rsa_size_token1] = ACTIONS(3145), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3145), - [aux_sym_security_key_provider_token1] = ACTIONS(3145), - [aux_sym_send_env_token1] = ACTIONS(3145), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3145), - [aux_sym_server_alive_interval_token1] = ACTIONS(3145), - [aux_sym_session_type_token1] = ACTIONS(3145), - [aux_sym_set_env_token1] = ACTIONS(3145), - [aux_sym_stdin_null_token1] = ACTIONS(3145), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3145), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3145), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3145), - [aux_sym_syslog_facility_token1] = ACTIONS(3145), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3145), - [aux_sym_keep_alive_token1] = ACTIONS(3145), - [aux_sym_tunnel_token1] = ACTIONS(3147), - [aux_sym_tunnel_device_token1] = ACTIONS(3145), - [aux_sym_update_host_keys_token1] = ACTIONS(3145), - [aux_sym_use_keychain_token1] = ACTIONS(3145), - [aux_sym_use_roaming_token1] = ACTIONS(3145), - [aux_sym_user_token1] = ACTIONS(3147), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3145), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3145), - [aux_sym_visual_host_key_token1] = ACTIONS(3145), - [aux_sym_xauth_location_token1] = ACTIONS(3145), + [ts_builtin_sym_end] = ACTIONS(3124), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3126), + [aux_sym_match_token1] = ACTIONS(3124), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3124), + [aux_sym_address_family_token1] = ACTIONS(3124), + [aux_sym_batch_mode_token1] = ACTIONS(3124), + [aux_sym_bind_address_token1] = ACTIONS(3124), + [aux_sym_bind_interface_token1] = ACTIONS(3124), + [aux_sym_canonical_domains_token1] = ACTIONS(3124), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3124), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3124), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3124), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3124), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3124), + [aux_sym_certificate_file_token1] = ACTIONS(3124), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3124), + [aux_sym_check_host_ip_token1] = ACTIONS(3124), + [aux_sym_ciphers_token1] = ACTIONS(3124), + [aux_sym_cipher_token1] = ACTIONS(3126), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3124), + [aux_sym_compression_token1] = ACTIONS(3124), + [aux_sym_connection_attempts_token1] = ACTIONS(3124), + [aux_sym_connect_timeout_token1] = ACTIONS(3124), + [aux_sym_control_master_token1] = ACTIONS(3124), + [aux_sym_control_path_token1] = ACTIONS(3124), + [aux_sym_control_persist_token1] = ACTIONS(3124), + [aux_sym_dynamic_forward_token1] = ACTIONS(3124), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3124), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3124), + [aux_sym_escape_char_token1] = ACTIONS(3124), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3124), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3124), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3124), + [aux_sym_forward_agent_token1] = ACTIONS(3124), + [aux_sym_forward_x11_token1] = ACTIONS(3126), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3124), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3124), + [aux_sym_gateway_ports_token1] = ACTIONS(3124), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3124), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3124), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3124), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3124), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3124), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3124), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3124), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3124), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3124), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3124), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3124), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3124), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3124), + [aux_sym_host_key_alias_token1] = ACTIONS(3124), + [aux_sym_hostname_token1] = ACTIONS(3124), + [aux_sym_identities_only_token1] = ACTIONS(3124), + [aux_sym_identity_agent_token1] = ACTIONS(3124), + [aux_sym_identity_file_token1] = ACTIONS(3124), + [aux_sym_ignore_unknown_token1] = ACTIONS(3124), + [aux_sym_include_token1] = ACTIONS(3124), + [aux_sym_ip_qos_token1] = ACTIONS(3124), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3124), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3124), + [aux_sym_kex_algorithms_token1] = ACTIONS(3124), + [aux_sym_known_hosts_command_token1] = ACTIONS(3124), + [aux_sym_local_command_token1] = ACTIONS(3124), + [aux_sym_local_forward_token1] = ACTIONS(3124), + [aux_sym_log_level_token1] = ACTIONS(3124), + [aux_sym_log_verbose_token1] = ACTIONS(3124), + [aux_sym_macs_token1] = ACTIONS(3124), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3124), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3124), + [aux_sym_password_authentication_token1] = ACTIONS(3124), + [aux_sym_permit_local_command_token1] = ACTIONS(3124), + [aux_sym_permit_remote_open_token1] = ACTIONS(3124), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3124), + [aux_sym_port_token1] = ACTIONS(3124), + [aux_sym_preferred_authentications_token1] = ACTIONS(3124), + [aux_sym_protocol_token1] = ACTIONS(3124), + [aux_sym_proxy_command_token1] = ACTIONS(3124), + [aux_sym_proxy_jump_token1] = ACTIONS(3124), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3124), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3124), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3124), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3124), + [aux_sym_rekey_limit_token1] = ACTIONS(3124), + [aux_sym_remote_command_token1] = ACTIONS(3124), + [aux_sym_remote_forward_token1] = ACTIONS(3124), + [aux_sym_request_tty_token1] = ACTIONS(3124), + [aux_sym_required_rsa_size_token1] = ACTIONS(3124), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3124), + [aux_sym_security_key_provider_token1] = ACTIONS(3124), + [aux_sym_send_env_token1] = ACTIONS(3124), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3124), + [aux_sym_server_alive_interval_token1] = ACTIONS(3124), + [aux_sym_session_type_token1] = ACTIONS(3124), + [aux_sym_set_env_token1] = ACTIONS(3124), + [aux_sym_stdin_null_token1] = ACTIONS(3124), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3124), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3124), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3124), + [aux_sym_syslog_facility_token1] = ACTIONS(3124), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3124), + [aux_sym_keep_alive_token1] = ACTIONS(3124), + [aux_sym_tunnel_token1] = ACTIONS(3126), + [aux_sym_tunnel_device_token1] = ACTIONS(3124), + [aux_sym_update_host_keys_token1] = ACTIONS(3124), + [aux_sym_use_keychain_token1] = ACTIONS(3124), + [aux_sym_use_roaming_token1] = ACTIONS(3124), + [aux_sym_user_token1] = ACTIONS(3126), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3124), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3124), + [aux_sym_visual_host_key_token1] = ACTIONS(3124), + [aux_sym_xauth_location_token1] = ACTIONS(3124), }, [492] = { - [ts_builtin_sym_end] = ACTIONS(3149), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3151), - [aux_sym_match_token1] = ACTIONS(3149), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3149), - [aux_sym_address_family_token1] = ACTIONS(3149), - [aux_sym_batch_mode_token1] = ACTIONS(3149), - [aux_sym_bind_address_token1] = ACTIONS(3149), - [aux_sym_bind_interface_token1] = ACTIONS(3149), - [aux_sym_canonical_domains_token1] = ACTIONS(3149), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3149), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3149), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3149), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3149), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3149), - [aux_sym_certificate_file_token1] = ACTIONS(3149), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3149), - [aux_sym_check_host_ip_token1] = ACTIONS(3149), - [aux_sym_ciphers_token1] = ACTIONS(3149), - [aux_sym_cipher_token1] = ACTIONS(3151), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3149), - [aux_sym_compression_token1] = ACTIONS(3149), - [aux_sym_connection_attempts_token1] = ACTIONS(3149), - [aux_sym_connect_timeout_token1] = ACTIONS(3149), - [aux_sym_control_master_token1] = ACTIONS(3149), - [aux_sym_control_path_token1] = ACTIONS(3149), - [aux_sym_control_persist_token1] = ACTIONS(3149), - [aux_sym_dynamic_forward_token1] = ACTIONS(3149), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3149), - [aux_sym_escape_char_token1] = ACTIONS(3149), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3149), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3149), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3149), - [aux_sym_forward_agent_token1] = ACTIONS(3149), - [aux_sym_forward_x11_token1] = ACTIONS(3151), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3149), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3149), - [aux_sym_gateway_ports_token1] = ACTIONS(3149), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3149), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3149), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3149), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3149), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3149), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3149), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3149), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3149), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3149), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3149), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3149), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3149), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3149), - [aux_sym_host_key_alias_token1] = ACTIONS(3149), - [aux_sym_hostname_token1] = ACTIONS(3149), - [aux_sym_identities_only_token1] = ACTIONS(3149), - [aux_sym_identity_agent_token1] = ACTIONS(3149), - [aux_sym_identity_file_token1] = ACTIONS(3149), - [aux_sym_ignore_unknown_token1] = ACTIONS(3149), - [aux_sym_include_token1] = ACTIONS(3149), - [aux_sym_ip_qos_token1] = ACTIONS(3149), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3149), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3149), - [aux_sym_kex_algorithms_token1] = ACTIONS(3149), - [aux_sym_known_hosts_command_token1] = ACTIONS(3149), - [aux_sym_local_command_token1] = ACTIONS(3149), - [aux_sym_local_forward_token1] = ACTIONS(3149), - [aux_sym_log_level_token1] = ACTIONS(3149), - [aux_sym_log_verbose_token1] = ACTIONS(3149), - [aux_sym_macs_token1] = ACTIONS(3149), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3149), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3149), - [aux_sym_password_authentication_token1] = ACTIONS(3149), - [aux_sym_permit_local_command_token1] = ACTIONS(3149), - [aux_sym_permit_remote_open_token1] = ACTIONS(3149), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3149), - [aux_sym_port_token1] = ACTIONS(3149), - [aux_sym_preferred_authentications_token1] = ACTIONS(3149), - [aux_sym_protocol_token1] = ACTIONS(3149), - [aux_sym_proxy_command_token1] = ACTIONS(3149), - [aux_sym_proxy_jump_token1] = ACTIONS(3149), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3149), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3149), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3149), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3149), - [aux_sym_rekey_limit_token1] = ACTIONS(3149), - [aux_sym_remote_command_token1] = ACTIONS(3149), - [aux_sym_remote_forward_token1] = ACTIONS(3149), - [aux_sym_request_tty_token1] = ACTIONS(3149), - [aux_sym_required_rsa_size_token1] = ACTIONS(3149), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3149), - [aux_sym_security_key_provider_token1] = ACTIONS(3149), - [aux_sym_send_env_token1] = ACTIONS(3149), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3149), - [aux_sym_server_alive_interval_token1] = ACTIONS(3149), - [aux_sym_session_type_token1] = ACTIONS(3149), - [aux_sym_set_env_token1] = ACTIONS(3149), - [aux_sym_stdin_null_token1] = ACTIONS(3149), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3149), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3149), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3149), - [aux_sym_syslog_facility_token1] = ACTIONS(3149), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3149), - [aux_sym_keep_alive_token1] = ACTIONS(3149), - [aux_sym_tunnel_token1] = ACTIONS(3151), - [aux_sym_tunnel_device_token1] = ACTIONS(3149), - [aux_sym_update_host_keys_token1] = ACTIONS(3149), - [aux_sym_use_keychain_token1] = ACTIONS(3149), - [aux_sym_use_roaming_token1] = ACTIONS(3149), - [aux_sym_user_token1] = ACTIONS(3151), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3149), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3149), - [aux_sym_visual_host_key_token1] = ACTIONS(3149), - [aux_sym_xauth_location_token1] = ACTIONS(3149), + [ts_builtin_sym_end] = ACTIONS(3128), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3130), + [aux_sym_match_token1] = ACTIONS(3128), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3128), + [aux_sym_address_family_token1] = ACTIONS(3128), + [aux_sym_batch_mode_token1] = ACTIONS(3128), + [aux_sym_bind_address_token1] = ACTIONS(3128), + [aux_sym_bind_interface_token1] = ACTIONS(3128), + [aux_sym_canonical_domains_token1] = ACTIONS(3128), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3128), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3128), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3128), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3128), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3128), + [aux_sym_certificate_file_token1] = ACTIONS(3128), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3128), + [aux_sym_check_host_ip_token1] = ACTIONS(3128), + [aux_sym_ciphers_token1] = ACTIONS(3128), + [aux_sym_cipher_token1] = ACTIONS(3130), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3128), + [aux_sym_compression_token1] = ACTIONS(3128), + [aux_sym_connection_attempts_token1] = ACTIONS(3128), + [aux_sym_connect_timeout_token1] = ACTIONS(3128), + [aux_sym_control_master_token1] = ACTIONS(3128), + [aux_sym_control_path_token1] = ACTIONS(3128), + [aux_sym_control_persist_token1] = ACTIONS(3128), + [aux_sym_dynamic_forward_token1] = ACTIONS(3128), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3128), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3128), + [aux_sym_escape_char_token1] = ACTIONS(3128), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3128), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3128), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3128), + [aux_sym_forward_agent_token1] = ACTIONS(3128), + [aux_sym_forward_x11_token1] = ACTIONS(3130), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3128), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3128), + [aux_sym_gateway_ports_token1] = ACTIONS(3128), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3128), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3128), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3128), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3128), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3128), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3128), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3128), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3128), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3128), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3128), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3128), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3128), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3128), + [aux_sym_host_key_alias_token1] = ACTIONS(3128), + [aux_sym_hostname_token1] = ACTIONS(3128), + [aux_sym_identities_only_token1] = ACTIONS(3128), + [aux_sym_identity_agent_token1] = ACTIONS(3128), + [aux_sym_identity_file_token1] = ACTIONS(3128), + [aux_sym_ignore_unknown_token1] = ACTIONS(3128), + [aux_sym_include_token1] = ACTIONS(3128), + [aux_sym_ip_qos_token1] = ACTIONS(3128), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3128), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3128), + [aux_sym_kex_algorithms_token1] = ACTIONS(3128), + [aux_sym_known_hosts_command_token1] = ACTIONS(3128), + [aux_sym_local_command_token1] = ACTIONS(3128), + [aux_sym_local_forward_token1] = ACTIONS(3128), + [aux_sym_log_level_token1] = ACTIONS(3128), + [aux_sym_log_verbose_token1] = ACTIONS(3128), + [aux_sym_macs_token1] = ACTIONS(3128), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3128), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3128), + [aux_sym_password_authentication_token1] = ACTIONS(3128), + [aux_sym_permit_local_command_token1] = ACTIONS(3128), + [aux_sym_permit_remote_open_token1] = ACTIONS(3128), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3128), + [aux_sym_port_token1] = ACTIONS(3128), + [aux_sym_preferred_authentications_token1] = ACTIONS(3128), + [aux_sym_protocol_token1] = ACTIONS(3128), + [aux_sym_proxy_command_token1] = ACTIONS(3128), + [aux_sym_proxy_jump_token1] = ACTIONS(3128), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3128), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3128), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3128), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3128), + [aux_sym_rekey_limit_token1] = ACTIONS(3128), + [aux_sym_remote_command_token1] = ACTIONS(3128), + [aux_sym_remote_forward_token1] = ACTIONS(3128), + [aux_sym_request_tty_token1] = ACTIONS(3128), + [aux_sym_required_rsa_size_token1] = ACTIONS(3128), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3128), + [aux_sym_security_key_provider_token1] = ACTIONS(3128), + [aux_sym_send_env_token1] = ACTIONS(3128), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3128), + [aux_sym_server_alive_interval_token1] = ACTIONS(3128), + [aux_sym_session_type_token1] = ACTIONS(3128), + [aux_sym_set_env_token1] = ACTIONS(3128), + [aux_sym_stdin_null_token1] = ACTIONS(3128), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3128), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3128), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3128), + [aux_sym_syslog_facility_token1] = ACTIONS(3128), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3128), + [aux_sym_keep_alive_token1] = ACTIONS(3128), + [aux_sym_tunnel_token1] = ACTIONS(3130), + [aux_sym_tunnel_device_token1] = ACTIONS(3128), + [aux_sym_update_host_keys_token1] = ACTIONS(3128), + [aux_sym_use_keychain_token1] = ACTIONS(3128), + [aux_sym_use_roaming_token1] = ACTIONS(3128), + [aux_sym_user_token1] = ACTIONS(3130), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3128), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3128), + [aux_sym_visual_host_key_token1] = ACTIONS(3128), + [aux_sym_xauth_location_token1] = ACTIONS(3128), }, [493] = { - [ts_builtin_sym_end] = ACTIONS(3153), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3155), - [aux_sym_match_token1] = ACTIONS(3153), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3153), - [aux_sym_address_family_token1] = ACTIONS(3153), - [aux_sym_batch_mode_token1] = ACTIONS(3153), - [aux_sym_bind_address_token1] = ACTIONS(3153), - [aux_sym_bind_interface_token1] = ACTIONS(3153), - [aux_sym_canonical_domains_token1] = ACTIONS(3153), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3153), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3153), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3153), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3153), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3153), - [aux_sym_certificate_file_token1] = ACTIONS(3153), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3153), - [aux_sym_check_host_ip_token1] = ACTIONS(3153), - [aux_sym_ciphers_token1] = ACTIONS(3153), - [aux_sym_cipher_token1] = ACTIONS(3155), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3153), - [aux_sym_compression_token1] = ACTIONS(3153), - [aux_sym_connection_attempts_token1] = ACTIONS(3153), - [aux_sym_connect_timeout_token1] = ACTIONS(3153), - [aux_sym_control_master_token1] = ACTIONS(3153), - [aux_sym_control_path_token1] = ACTIONS(3153), - [aux_sym_control_persist_token1] = ACTIONS(3153), - [aux_sym_dynamic_forward_token1] = ACTIONS(3153), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3153), - [aux_sym_escape_char_token1] = ACTIONS(3153), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3153), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3153), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3153), - [aux_sym_forward_agent_token1] = ACTIONS(3153), - [aux_sym_forward_x11_token1] = ACTIONS(3155), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3153), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3153), - [aux_sym_gateway_ports_token1] = ACTIONS(3153), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3153), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3153), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3153), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3153), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3153), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3153), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3153), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3153), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3153), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3153), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3153), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3153), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3153), - [aux_sym_host_key_alias_token1] = ACTIONS(3153), - [aux_sym_hostname_token1] = ACTIONS(3153), - [aux_sym_identities_only_token1] = ACTIONS(3153), - [aux_sym_identity_agent_token1] = ACTIONS(3153), - [aux_sym_identity_file_token1] = ACTIONS(3153), - [aux_sym_ignore_unknown_token1] = ACTIONS(3153), - [aux_sym_include_token1] = ACTIONS(3153), - [aux_sym_ip_qos_token1] = ACTIONS(3153), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3153), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3153), - [aux_sym_kex_algorithms_token1] = ACTIONS(3153), - [aux_sym_known_hosts_command_token1] = ACTIONS(3153), - [aux_sym_local_command_token1] = ACTIONS(3153), - [aux_sym_local_forward_token1] = ACTIONS(3153), - [aux_sym_log_level_token1] = ACTIONS(3153), - [aux_sym_log_verbose_token1] = ACTIONS(3153), - [aux_sym_macs_token1] = ACTIONS(3153), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3153), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3153), - [aux_sym_password_authentication_token1] = ACTIONS(3153), - [aux_sym_permit_local_command_token1] = ACTIONS(3153), - [aux_sym_permit_remote_open_token1] = ACTIONS(3153), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3153), - [aux_sym_port_token1] = ACTIONS(3153), - [aux_sym_preferred_authentications_token1] = ACTIONS(3153), - [aux_sym_protocol_token1] = ACTIONS(3153), - [aux_sym_proxy_command_token1] = ACTIONS(3153), - [aux_sym_proxy_jump_token1] = ACTIONS(3153), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3153), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3153), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3153), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3153), - [aux_sym_rekey_limit_token1] = ACTIONS(3153), - [aux_sym_remote_command_token1] = ACTIONS(3153), - [aux_sym_remote_forward_token1] = ACTIONS(3153), - [aux_sym_request_tty_token1] = ACTIONS(3153), - [aux_sym_required_rsa_size_token1] = ACTIONS(3153), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3153), - [aux_sym_security_key_provider_token1] = ACTIONS(3153), - [aux_sym_send_env_token1] = ACTIONS(3153), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3153), - [aux_sym_server_alive_interval_token1] = ACTIONS(3153), - [aux_sym_session_type_token1] = ACTIONS(3153), - [aux_sym_set_env_token1] = ACTIONS(3153), - [aux_sym_stdin_null_token1] = ACTIONS(3153), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3153), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3153), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3153), - [aux_sym_syslog_facility_token1] = ACTIONS(3153), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3153), - [aux_sym_keep_alive_token1] = ACTIONS(3153), - [aux_sym_tunnel_token1] = ACTIONS(3155), - [aux_sym_tunnel_device_token1] = ACTIONS(3153), - [aux_sym_update_host_keys_token1] = ACTIONS(3153), - [aux_sym_use_keychain_token1] = ACTIONS(3153), - [aux_sym_use_roaming_token1] = ACTIONS(3153), - [aux_sym_user_token1] = ACTIONS(3155), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3153), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3153), - [aux_sym_visual_host_key_token1] = ACTIONS(3153), - [aux_sym_xauth_location_token1] = ACTIONS(3153), + [ts_builtin_sym_end] = ACTIONS(3132), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3134), + [aux_sym_match_token1] = ACTIONS(3132), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3132), + [aux_sym_address_family_token1] = ACTIONS(3132), + [aux_sym_batch_mode_token1] = ACTIONS(3132), + [aux_sym_bind_address_token1] = ACTIONS(3132), + [aux_sym_bind_interface_token1] = ACTIONS(3132), + [aux_sym_canonical_domains_token1] = ACTIONS(3132), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3132), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3132), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3132), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3132), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3132), + [aux_sym_certificate_file_token1] = ACTIONS(3132), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3132), + [aux_sym_check_host_ip_token1] = ACTIONS(3132), + [aux_sym_ciphers_token1] = ACTIONS(3132), + [aux_sym_cipher_token1] = ACTIONS(3134), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3132), + [aux_sym_compression_token1] = ACTIONS(3132), + [aux_sym_connection_attempts_token1] = ACTIONS(3132), + [aux_sym_connect_timeout_token1] = ACTIONS(3132), + [aux_sym_control_master_token1] = ACTIONS(3132), + [aux_sym_control_path_token1] = ACTIONS(3132), + [aux_sym_control_persist_token1] = ACTIONS(3132), + [aux_sym_dynamic_forward_token1] = ACTIONS(3132), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3132), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3132), + [aux_sym_escape_char_token1] = ACTIONS(3132), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3132), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3132), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3132), + [aux_sym_forward_agent_token1] = ACTIONS(3132), + [aux_sym_forward_x11_token1] = ACTIONS(3134), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3132), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3132), + [aux_sym_gateway_ports_token1] = ACTIONS(3132), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3132), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3132), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3132), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3132), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3132), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3132), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3132), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3132), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3132), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3132), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3132), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3132), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3132), + [aux_sym_host_key_alias_token1] = ACTIONS(3132), + [aux_sym_hostname_token1] = ACTIONS(3132), + [aux_sym_identities_only_token1] = ACTIONS(3132), + [aux_sym_identity_agent_token1] = ACTIONS(3132), + [aux_sym_identity_file_token1] = ACTIONS(3132), + [aux_sym_ignore_unknown_token1] = ACTIONS(3132), + [aux_sym_include_token1] = ACTIONS(3132), + [aux_sym_ip_qos_token1] = ACTIONS(3132), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3132), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3132), + [aux_sym_kex_algorithms_token1] = ACTIONS(3132), + [aux_sym_known_hosts_command_token1] = ACTIONS(3132), + [aux_sym_local_command_token1] = ACTIONS(3132), + [aux_sym_local_forward_token1] = ACTIONS(3132), + [aux_sym_log_level_token1] = ACTIONS(3132), + [aux_sym_log_verbose_token1] = ACTIONS(3132), + [aux_sym_macs_token1] = ACTIONS(3132), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3132), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3132), + [aux_sym_password_authentication_token1] = ACTIONS(3132), + [aux_sym_permit_local_command_token1] = ACTIONS(3132), + [aux_sym_permit_remote_open_token1] = ACTIONS(3132), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3132), + [aux_sym_port_token1] = ACTIONS(3132), + [aux_sym_preferred_authentications_token1] = ACTIONS(3132), + [aux_sym_protocol_token1] = ACTIONS(3132), + [aux_sym_proxy_command_token1] = ACTIONS(3132), + [aux_sym_proxy_jump_token1] = ACTIONS(3132), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3132), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3132), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3132), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3132), + [aux_sym_rekey_limit_token1] = ACTIONS(3132), + [aux_sym_remote_command_token1] = ACTIONS(3132), + [aux_sym_remote_forward_token1] = ACTIONS(3132), + [aux_sym_request_tty_token1] = ACTIONS(3132), + [aux_sym_required_rsa_size_token1] = ACTIONS(3132), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3132), + [aux_sym_security_key_provider_token1] = ACTIONS(3132), + [aux_sym_send_env_token1] = ACTIONS(3132), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3132), + [aux_sym_server_alive_interval_token1] = ACTIONS(3132), + [aux_sym_session_type_token1] = ACTIONS(3132), + [aux_sym_set_env_token1] = ACTIONS(3132), + [aux_sym_stdin_null_token1] = ACTIONS(3132), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3132), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3132), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3132), + [aux_sym_syslog_facility_token1] = ACTIONS(3132), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3132), + [aux_sym_keep_alive_token1] = ACTIONS(3132), + [aux_sym_tunnel_token1] = ACTIONS(3134), + [aux_sym_tunnel_device_token1] = ACTIONS(3132), + [aux_sym_update_host_keys_token1] = ACTIONS(3132), + [aux_sym_use_keychain_token1] = ACTIONS(3132), + [aux_sym_use_roaming_token1] = ACTIONS(3132), + [aux_sym_user_token1] = ACTIONS(3134), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3132), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3132), + [aux_sym_visual_host_key_token1] = ACTIONS(3132), + [aux_sym_xauth_location_token1] = ACTIONS(3132), }, [494] = { - [ts_builtin_sym_end] = ACTIONS(3157), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3159), - [aux_sym_match_token1] = ACTIONS(3157), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3157), - [aux_sym_address_family_token1] = ACTIONS(3157), - [aux_sym_batch_mode_token1] = ACTIONS(3157), - [aux_sym_bind_address_token1] = ACTIONS(3157), - [aux_sym_bind_interface_token1] = ACTIONS(3157), - [aux_sym_canonical_domains_token1] = ACTIONS(3157), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3157), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3157), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3157), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3157), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3157), - [aux_sym_certificate_file_token1] = ACTIONS(3157), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3157), - [aux_sym_check_host_ip_token1] = ACTIONS(3157), - [aux_sym_ciphers_token1] = ACTIONS(3157), - [aux_sym_cipher_token1] = ACTIONS(3159), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3157), - [aux_sym_compression_token1] = ACTIONS(3157), - [aux_sym_connection_attempts_token1] = ACTIONS(3157), - [aux_sym_connect_timeout_token1] = ACTIONS(3157), - [aux_sym_control_master_token1] = ACTIONS(3157), - [aux_sym_control_path_token1] = ACTIONS(3157), - [aux_sym_control_persist_token1] = ACTIONS(3157), - [aux_sym_dynamic_forward_token1] = ACTIONS(3157), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3157), - [aux_sym_escape_char_token1] = ACTIONS(3157), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3157), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3157), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3157), - [aux_sym_forward_agent_token1] = ACTIONS(3157), - [aux_sym_forward_x11_token1] = ACTIONS(3159), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3157), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3157), - [aux_sym_gateway_ports_token1] = ACTIONS(3157), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3157), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3157), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3157), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3157), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3157), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3157), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3157), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3157), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3157), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3157), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3157), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3157), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3157), - [aux_sym_host_key_alias_token1] = ACTIONS(3157), - [aux_sym_hostname_token1] = ACTIONS(3157), - [aux_sym_identities_only_token1] = ACTIONS(3157), - [aux_sym_identity_agent_token1] = ACTIONS(3157), - [aux_sym_identity_file_token1] = ACTIONS(3157), - [aux_sym_ignore_unknown_token1] = ACTIONS(3157), - [aux_sym_include_token1] = ACTIONS(3157), - [aux_sym_ip_qos_token1] = ACTIONS(3157), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3157), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3157), - [aux_sym_kex_algorithms_token1] = ACTIONS(3157), - [aux_sym_known_hosts_command_token1] = ACTIONS(3157), - [aux_sym_local_command_token1] = ACTIONS(3157), - [aux_sym_local_forward_token1] = ACTIONS(3157), - [aux_sym_log_level_token1] = ACTIONS(3157), - [aux_sym_log_verbose_token1] = ACTIONS(3157), - [aux_sym_macs_token1] = ACTIONS(3157), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3157), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3157), - [aux_sym_password_authentication_token1] = ACTIONS(3157), - [aux_sym_permit_local_command_token1] = ACTIONS(3157), - [aux_sym_permit_remote_open_token1] = ACTIONS(3157), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3157), - [aux_sym_port_token1] = ACTIONS(3157), - [aux_sym_preferred_authentications_token1] = ACTIONS(3157), - [aux_sym_protocol_token1] = ACTIONS(3157), - [aux_sym_proxy_command_token1] = ACTIONS(3157), - [aux_sym_proxy_jump_token1] = ACTIONS(3157), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3157), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3157), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3157), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3157), - [aux_sym_rekey_limit_token1] = ACTIONS(3157), - [aux_sym_remote_command_token1] = ACTIONS(3157), - [aux_sym_remote_forward_token1] = ACTIONS(3157), - [aux_sym_request_tty_token1] = ACTIONS(3157), - [aux_sym_required_rsa_size_token1] = ACTIONS(3157), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3157), - [aux_sym_security_key_provider_token1] = ACTIONS(3157), - [aux_sym_send_env_token1] = ACTIONS(3157), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3157), - [aux_sym_server_alive_interval_token1] = ACTIONS(3157), - [aux_sym_session_type_token1] = ACTIONS(3157), - [aux_sym_set_env_token1] = ACTIONS(3157), - [aux_sym_stdin_null_token1] = ACTIONS(3157), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3157), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3157), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3157), - [aux_sym_syslog_facility_token1] = ACTIONS(3157), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3157), - [aux_sym_keep_alive_token1] = ACTIONS(3157), - [aux_sym_tunnel_token1] = ACTIONS(3159), - [aux_sym_tunnel_device_token1] = ACTIONS(3157), - [aux_sym_update_host_keys_token1] = ACTIONS(3157), - [aux_sym_use_keychain_token1] = ACTIONS(3157), - [aux_sym_use_roaming_token1] = ACTIONS(3157), - [aux_sym_user_token1] = ACTIONS(3159), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3157), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3157), - [aux_sym_visual_host_key_token1] = ACTIONS(3157), - [aux_sym_xauth_location_token1] = ACTIONS(3157), + [ts_builtin_sym_end] = ACTIONS(3136), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3138), + [aux_sym_match_token1] = ACTIONS(3136), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3136), + [aux_sym_address_family_token1] = ACTIONS(3136), + [aux_sym_batch_mode_token1] = ACTIONS(3136), + [aux_sym_bind_address_token1] = ACTIONS(3136), + [aux_sym_bind_interface_token1] = ACTIONS(3136), + [aux_sym_canonical_domains_token1] = ACTIONS(3136), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3136), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3136), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3136), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3136), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3136), + [aux_sym_certificate_file_token1] = ACTIONS(3136), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3136), + [aux_sym_check_host_ip_token1] = ACTIONS(3136), + [aux_sym_ciphers_token1] = ACTIONS(3136), + [aux_sym_cipher_token1] = ACTIONS(3138), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3136), + [aux_sym_compression_token1] = ACTIONS(3136), + [aux_sym_connection_attempts_token1] = ACTIONS(3136), + [aux_sym_connect_timeout_token1] = ACTIONS(3136), + [aux_sym_control_master_token1] = ACTIONS(3136), + [aux_sym_control_path_token1] = ACTIONS(3136), + [aux_sym_control_persist_token1] = ACTIONS(3136), + [aux_sym_dynamic_forward_token1] = ACTIONS(3136), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3136), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3136), + [aux_sym_escape_char_token1] = ACTIONS(3136), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3136), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3136), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3136), + [aux_sym_forward_agent_token1] = ACTIONS(3136), + [aux_sym_forward_x11_token1] = ACTIONS(3138), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3136), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3136), + [aux_sym_gateway_ports_token1] = ACTIONS(3136), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3136), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3136), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3136), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3136), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3136), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3136), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3136), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3136), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3136), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3136), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3136), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3136), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3136), + [aux_sym_host_key_alias_token1] = ACTIONS(3136), + [aux_sym_hostname_token1] = ACTIONS(3136), + [aux_sym_identities_only_token1] = ACTIONS(3136), + [aux_sym_identity_agent_token1] = ACTIONS(3136), + [aux_sym_identity_file_token1] = ACTIONS(3136), + [aux_sym_ignore_unknown_token1] = ACTIONS(3136), + [aux_sym_include_token1] = ACTIONS(3136), + [aux_sym_ip_qos_token1] = ACTIONS(3136), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3136), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3136), + [aux_sym_kex_algorithms_token1] = ACTIONS(3136), + [aux_sym_known_hosts_command_token1] = ACTIONS(3136), + [aux_sym_local_command_token1] = ACTIONS(3136), + [aux_sym_local_forward_token1] = ACTIONS(3136), + [aux_sym_log_level_token1] = ACTIONS(3136), + [aux_sym_log_verbose_token1] = ACTIONS(3136), + [aux_sym_macs_token1] = ACTIONS(3136), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3136), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3136), + [aux_sym_password_authentication_token1] = ACTIONS(3136), + [aux_sym_permit_local_command_token1] = ACTIONS(3136), + [aux_sym_permit_remote_open_token1] = ACTIONS(3136), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3136), + [aux_sym_port_token1] = ACTIONS(3136), + [aux_sym_preferred_authentications_token1] = ACTIONS(3136), + [aux_sym_protocol_token1] = ACTIONS(3136), + [aux_sym_proxy_command_token1] = ACTIONS(3136), + [aux_sym_proxy_jump_token1] = ACTIONS(3136), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3136), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3136), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3136), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3136), + [aux_sym_rekey_limit_token1] = ACTIONS(3136), + [aux_sym_remote_command_token1] = ACTIONS(3136), + [aux_sym_remote_forward_token1] = ACTIONS(3136), + [aux_sym_request_tty_token1] = ACTIONS(3136), + [aux_sym_required_rsa_size_token1] = ACTIONS(3136), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3136), + [aux_sym_security_key_provider_token1] = ACTIONS(3136), + [aux_sym_send_env_token1] = ACTIONS(3136), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3136), + [aux_sym_server_alive_interval_token1] = ACTIONS(3136), + [aux_sym_session_type_token1] = ACTIONS(3136), + [aux_sym_set_env_token1] = ACTIONS(3136), + [aux_sym_stdin_null_token1] = ACTIONS(3136), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3136), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3136), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3136), + [aux_sym_syslog_facility_token1] = ACTIONS(3136), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3136), + [aux_sym_keep_alive_token1] = ACTIONS(3136), + [aux_sym_tunnel_token1] = ACTIONS(3138), + [aux_sym_tunnel_device_token1] = ACTIONS(3136), + [aux_sym_update_host_keys_token1] = ACTIONS(3136), + [aux_sym_use_keychain_token1] = ACTIONS(3136), + [aux_sym_use_roaming_token1] = ACTIONS(3136), + [aux_sym_user_token1] = ACTIONS(3138), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3136), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3136), + [aux_sym_visual_host_key_token1] = ACTIONS(3136), + [aux_sym_xauth_location_token1] = ACTIONS(3136), }, [495] = { - [ts_builtin_sym_end] = ACTIONS(3161), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3163), - [aux_sym_match_token1] = ACTIONS(3161), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3161), - [aux_sym_address_family_token1] = ACTIONS(3161), - [aux_sym_batch_mode_token1] = ACTIONS(3161), - [aux_sym_bind_address_token1] = ACTIONS(3161), - [aux_sym_bind_interface_token1] = ACTIONS(3161), - [aux_sym_canonical_domains_token1] = ACTIONS(3161), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3161), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3161), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3161), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3161), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3161), - [aux_sym_certificate_file_token1] = ACTIONS(3161), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3161), - [aux_sym_check_host_ip_token1] = ACTIONS(3161), - [aux_sym_ciphers_token1] = ACTIONS(3161), - [aux_sym_cipher_token1] = ACTIONS(3163), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3161), - [aux_sym_compression_token1] = ACTIONS(3161), - [aux_sym_connection_attempts_token1] = ACTIONS(3161), - [aux_sym_connect_timeout_token1] = ACTIONS(3161), - [aux_sym_control_master_token1] = ACTIONS(3161), - [aux_sym_control_path_token1] = ACTIONS(3161), - [aux_sym_control_persist_token1] = ACTIONS(3161), - [aux_sym_dynamic_forward_token1] = ACTIONS(3161), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3161), - [aux_sym_escape_char_token1] = ACTIONS(3161), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3161), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3161), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3161), - [aux_sym_forward_agent_token1] = ACTIONS(3161), - [aux_sym_forward_x11_token1] = ACTIONS(3163), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3161), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3161), - [aux_sym_gateway_ports_token1] = ACTIONS(3161), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3161), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3161), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3161), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3161), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3161), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3161), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3161), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3161), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3161), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3161), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3161), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3161), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3161), - [aux_sym_host_key_alias_token1] = ACTIONS(3161), - [aux_sym_hostname_token1] = ACTIONS(3161), - [aux_sym_identities_only_token1] = ACTIONS(3161), - [aux_sym_identity_agent_token1] = ACTIONS(3161), - [aux_sym_identity_file_token1] = ACTIONS(3161), - [aux_sym_ignore_unknown_token1] = ACTIONS(3161), - [aux_sym_include_token1] = ACTIONS(3161), - [aux_sym_ip_qos_token1] = ACTIONS(3161), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3161), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3161), - [aux_sym_kex_algorithms_token1] = ACTIONS(3161), - [aux_sym_known_hosts_command_token1] = ACTIONS(3161), - [aux_sym_local_command_token1] = ACTIONS(3161), - [aux_sym_local_forward_token1] = ACTIONS(3161), - [aux_sym_log_level_token1] = ACTIONS(3161), - [aux_sym_log_verbose_token1] = ACTIONS(3161), - [aux_sym_macs_token1] = ACTIONS(3161), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3161), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3161), - [aux_sym_password_authentication_token1] = ACTIONS(3161), - [aux_sym_permit_local_command_token1] = ACTIONS(3161), - [aux_sym_permit_remote_open_token1] = ACTIONS(3161), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3161), - [aux_sym_port_token1] = ACTIONS(3161), - [aux_sym_preferred_authentications_token1] = ACTIONS(3161), - [aux_sym_protocol_token1] = ACTIONS(3161), - [aux_sym_proxy_command_token1] = ACTIONS(3161), - [aux_sym_proxy_jump_token1] = ACTIONS(3161), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3161), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3161), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3161), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3161), - [aux_sym_rekey_limit_token1] = ACTIONS(3161), - [aux_sym_remote_command_token1] = ACTIONS(3161), - [aux_sym_remote_forward_token1] = ACTIONS(3161), - [aux_sym_request_tty_token1] = ACTIONS(3161), - [aux_sym_required_rsa_size_token1] = ACTIONS(3161), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3161), - [aux_sym_security_key_provider_token1] = ACTIONS(3161), - [aux_sym_send_env_token1] = ACTIONS(3161), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3161), - [aux_sym_server_alive_interval_token1] = ACTIONS(3161), - [aux_sym_session_type_token1] = ACTIONS(3161), - [aux_sym_set_env_token1] = ACTIONS(3161), - [aux_sym_stdin_null_token1] = ACTIONS(3161), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3161), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3161), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3161), - [aux_sym_syslog_facility_token1] = ACTIONS(3161), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3161), - [aux_sym_keep_alive_token1] = ACTIONS(3161), - [aux_sym_tunnel_token1] = ACTIONS(3163), - [aux_sym_tunnel_device_token1] = ACTIONS(3161), - [aux_sym_update_host_keys_token1] = ACTIONS(3161), - [aux_sym_use_keychain_token1] = ACTIONS(3161), - [aux_sym_use_roaming_token1] = ACTIONS(3161), - [aux_sym_user_token1] = ACTIONS(3163), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3161), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3161), - [aux_sym_visual_host_key_token1] = ACTIONS(3161), - [aux_sym_xauth_location_token1] = ACTIONS(3161), + [ts_builtin_sym_end] = ACTIONS(3140), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3142), + [aux_sym_match_token1] = ACTIONS(3140), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3140), + [aux_sym_address_family_token1] = ACTIONS(3140), + [aux_sym_batch_mode_token1] = ACTIONS(3140), + [aux_sym_bind_address_token1] = ACTIONS(3140), + [aux_sym_bind_interface_token1] = ACTIONS(3140), + [aux_sym_canonical_domains_token1] = ACTIONS(3140), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3140), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3140), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3140), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3140), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3140), + [aux_sym_certificate_file_token1] = ACTIONS(3140), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3140), + [aux_sym_check_host_ip_token1] = ACTIONS(3140), + [aux_sym_ciphers_token1] = ACTIONS(3140), + [aux_sym_cipher_token1] = ACTIONS(3142), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3140), + [aux_sym_compression_token1] = ACTIONS(3140), + [aux_sym_connection_attempts_token1] = ACTIONS(3140), + [aux_sym_connect_timeout_token1] = ACTIONS(3140), + [aux_sym_control_master_token1] = ACTIONS(3140), + [aux_sym_control_path_token1] = ACTIONS(3140), + [aux_sym_control_persist_token1] = ACTIONS(3140), + [aux_sym_dynamic_forward_token1] = ACTIONS(3140), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3140), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3140), + [aux_sym_escape_char_token1] = ACTIONS(3140), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3140), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3140), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3140), + [aux_sym_forward_agent_token1] = ACTIONS(3140), + [aux_sym_forward_x11_token1] = ACTIONS(3142), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3140), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3140), + [aux_sym_gateway_ports_token1] = ACTIONS(3140), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3140), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3140), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3140), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3140), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3140), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3140), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3140), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3140), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3140), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3140), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3140), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3140), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3140), + [aux_sym_host_key_alias_token1] = ACTIONS(3140), + [aux_sym_hostname_token1] = ACTIONS(3140), + [aux_sym_identities_only_token1] = ACTIONS(3140), + [aux_sym_identity_agent_token1] = ACTIONS(3140), + [aux_sym_identity_file_token1] = ACTIONS(3140), + [aux_sym_ignore_unknown_token1] = ACTIONS(3140), + [aux_sym_include_token1] = ACTIONS(3140), + [aux_sym_ip_qos_token1] = ACTIONS(3140), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3140), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3140), + [aux_sym_kex_algorithms_token1] = ACTIONS(3140), + [aux_sym_known_hosts_command_token1] = ACTIONS(3140), + [aux_sym_local_command_token1] = ACTIONS(3140), + [aux_sym_local_forward_token1] = ACTIONS(3140), + [aux_sym_log_level_token1] = ACTIONS(3140), + [aux_sym_log_verbose_token1] = ACTIONS(3140), + [aux_sym_macs_token1] = ACTIONS(3140), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3140), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3140), + [aux_sym_password_authentication_token1] = ACTIONS(3140), + [aux_sym_permit_local_command_token1] = ACTIONS(3140), + [aux_sym_permit_remote_open_token1] = ACTIONS(3140), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3140), + [aux_sym_port_token1] = ACTIONS(3140), + [aux_sym_preferred_authentications_token1] = ACTIONS(3140), + [aux_sym_protocol_token1] = ACTIONS(3140), + [aux_sym_proxy_command_token1] = ACTIONS(3140), + [aux_sym_proxy_jump_token1] = ACTIONS(3140), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3140), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3140), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3140), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3140), + [aux_sym_rekey_limit_token1] = ACTIONS(3140), + [aux_sym_remote_command_token1] = ACTIONS(3140), + [aux_sym_remote_forward_token1] = ACTIONS(3140), + [aux_sym_request_tty_token1] = ACTIONS(3140), + [aux_sym_required_rsa_size_token1] = ACTIONS(3140), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3140), + [aux_sym_security_key_provider_token1] = ACTIONS(3140), + [aux_sym_send_env_token1] = ACTIONS(3140), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3140), + [aux_sym_server_alive_interval_token1] = ACTIONS(3140), + [aux_sym_session_type_token1] = ACTIONS(3140), + [aux_sym_set_env_token1] = ACTIONS(3140), + [aux_sym_stdin_null_token1] = ACTIONS(3140), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3140), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3140), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3140), + [aux_sym_syslog_facility_token1] = ACTIONS(3140), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3140), + [aux_sym_keep_alive_token1] = ACTIONS(3140), + [aux_sym_tunnel_token1] = ACTIONS(3142), + [aux_sym_tunnel_device_token1] = ACTIONS(3140), + [aux_sym_update_host_keys_token1] = ACTIONS(3140), + [aux_sym_use_keychain_token1] = ACTIONS(3140), + [aux_sym_use_roaming_token1] = ACTIONS(3140), + [aux_sym_user_token1] = ACTIONS(3142), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3140), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3140), + [aux_sym_visual_host_key_token1] = ACTIONS(3140), + [aux_sym_xauth_location_token1] = ACTIONS(3140), }, [496] = { - [ts_builtin_sym_end] = ACTIONS(3165), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3167), - [aux_sym_match_token1] = ACTIONS(3165), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3165), - [aux_sym_address_family_token1] = ACTIONS(3165), - [aux_sym_batch_mode_token1] = ACTIONS(3165), - [aux_sym_bind_address_token1] = ACTIONS(3165), - [aux_sym_bind_interface_token1] = ACTIONS(3165), - [aux_sym_canonical_domains_token1] = ACTIONS(3165), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3165), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3165), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3165), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3165), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3165), - [aux_sym_certificate_file_token1] = ACTIONS(3165), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3165), - [aux_sym_check_host_ip_token1] = ACTIONS(3165), - [aux_sym_ciphers_token1] = ACTIONS(3165), - [aux_sym_cipher_token1] = ACTIONS(3167), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3165), - [aux_sym_compression_token1] = ACTIONS(3165), - [aux_sym_connection_attempts_token1] = ACTIONS(3165), - [aux_sym_connect_timeout_token1] = ACTIONS(3165), - [aux_sym_control_master_token1] = ACTIONS(3165), - [aux_sym_control_path_token1] = ACTIONS(3165), - [aux_sym_control_persist_token1] = ACTIONS(3165), - [aux_sym_dynamic_forward_token1] = ACTIONS(3165), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3165), - [aux_sym_escape_char_token1] = ACTIONS(3165), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3165), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3165), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3165), - [aux_sym_forward_agent_token1] = ACTIONS(3165), - [aux_sym_forward_x11_token1] = ACTIONS(3167), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3165), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3165), - [aux_sym_gateway_ports_token1] = ACTIONS(3165), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3165), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3165), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3165), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3165), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3165), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3165), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3165), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3165), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3165), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3165), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3165), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3165), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3165), - [aux_sym_host_key_alias_token1] = ACTIONS(3165), - [aux_sym_hostname_token1] = ACTIONS(3165), - [aux_sym_identities_only_token1] = ACTIONS(3165), - [aux_sym_identity_agent_token1] = ACTIONS(3165), - [aux_sym_identity_file_token1] = ACTIONS(3165), - [aux_sym_ignore_unknown_token1] = ACTIONS(3165), - [aux_sym_include_token1] = ACTIONS(3165), - [aux_sym_ip_qos_token1] = ACTIONS(3165), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3165), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3165), - [aux_sym_kex_algorithms_token1] = ACTIONS(3165), - [aux_sym_known_hosts_command_token1] = ACTIONS(3165), - [aux_sym_local_command_token1] = ACTIONS(3165), - [aux_sym_local_forward_token1] = ACTIONS(3165), - [aux_sym_log_level_token1] = ACTIONS(3165), - [aux_sym_log_verbose_token1] = ACTIONS(3165), - [aux_sym_macs_token1] = ACTIONS(3165), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3165), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3165), - [aux_sym_password_authentication_token1] = ACTIONS(3165), - [aux_sym_permit_local_command_token1] = ACTIONS(3165), - [aux_sym_permit_remote_open_token1] = ACTIONS(3165), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3165), - [aux_sym_port_token1] = ACTIONS(3165), - [aux_sym_preferred_authentications_token1] = ACTIONS(3165), - [aux_sym_protocol_token1] = ACTIONS(3165), - [aux_sym_proxy_command_token1] = ACTIONS(3165), - [aux_sym_proxy_jump_token1] = ACTIONS(3165), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3165), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3165), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3165), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3165), - [aux_sym_rekey_limit_token1] = ACTIONS(3165), - [aux_sym_remote_command_token1] = ACTIONS(3165), - [aux_sym_remote_forward_token1] = ACTIONS(3165), - [aux_sym_request_tty_token1] = ACTIONS(3165), - [aux_sym_required_rsa_size_token1] = ACTIONS(3165), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3165), - [aux_sym_security_key_provider_token1] = ACTIONS(3165), - [aux_sym_send_env_token1] = ACTIONS(3165), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3165), - [aux_sym_server_alive_interval_token1] = ACTIONS(3165), - [aux_sym_session_type_token1] = ACTIONS(3165), - [aux_sym_set_env_token1] = ACTIONS(3165), - [aux_sym_stdin_null_token1] = ACTIONS(3165), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3165), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3165), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3165), - [aux_sym_syslog_facility_token1] = ACTIONS(3165), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3165), - [aux_sym_keep_alive_token1] = ACTIONS(3165), - [aux_sym_tunnel_token1] = ACTIONS(3167), - [aux_sym_tunnel_device_token1] = ACTIONS(3165), - [aux_sym_update_host_keys_token1] = ACTIONS(3165), - [aux_sym_use_keychain_token1] = ACTIONS(3165), - [aux_sym_use_roaming_token1] = ACTIONS(3165), - [aux_sym_user_token1] = ACTIONS(3167), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3165), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3165), - [aux_sym_visual_host_key_token1] = ACTIONS(3165), - [aux_sym_xauth_location_token1] = ACTIONS(3165), + [ts_builtin_sym_end] = ACTIONS(1046), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1048), + [aux_sym_match_token1] = ACTIONS(1046), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1046), + [aux_sym_address_family_token1] = ACTIONS(1046), + [aux_sym_batch_mode_token1] = ACTIONS(1046), + [aux_sym_bind_address_token1] = ACTIONS(1046), + [aux_sym_bind_interface_token1] = ACTIONS(1046), + [aux_sym_canonical_domains_token1] = ACTIONS(1046), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1046), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1046), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1046), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1046), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1046), + [aux_sym_certificate_file_token1] = ACTIONS(1046), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1046), + [aux_sym_check_host_ip_token1] = ACTIONS(1046), + [aux_sym_ciphers_token1] = ACTIONS(1046), + [aux_sym_cipher_token1] = ACTIONS(1048), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1046), + [aux_sym_compression_token1] = ACTIONS(1046), + [aux_sym_connection_attempts_token1] = ACTIONS(1046), + [aux_sym_connect_timeout_token1] = ACTIONS(1046), + [aux_sym_control_master_token1] = ACTIONS(1046), + [aux_sym_control_path_token1] = ACTIONS(1046), + [aux_sym_control_persist_token1] = ACTIONS(1046), + [aux_sym_dynamic_forward_token1] = ACTIONS(1046), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1046), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1046), + [aux_sym_escape_char_token1] = ACTIONS(1046), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1046), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1046), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1046), + [aux_sym_forward_agent_token1] = ACTIONS(1046), + [aux_sym_forward_x11_token1] = ACTIONS(1048), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1046), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1046), + [aux_sym_gateway_ports_token1] = ACTIONS(1046), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1046), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1046), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1046), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1046), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1046), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1046), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1046), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1046), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1046), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1046), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1046), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1046), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1046), + [aux_sym_host_key_alias_token1] = ACTIONS(1046), + [aux_sym_hostname_token1] = ACTIONS(1046), + [aux_sym_identities_only_token1] = ACTIONS(1046), + [aux_sym_identity_agent_token1] = ACTIONS(1046), + [aux_sym_identity_file_token1] = ACTIONS(1046), + [aux_sym_ignore_unknown_token1] = ACTIONS(1046), + [aux_sym_include_token1] = ACTIONS(1046), + [aux_sym_ip_qos_token1] = ACTIONS(1046), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1046), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1046), + [aux_sym_kex_algorithms_token1] = ACTIONS(1046), + [aux_sym_known_hosts_command_token1] = ACTIONS(1046), + [aux_sym_local_command_token1] = ACTIONS(1046), + [aux_sym_local_forward_token1] = ACTIONS(1046), + [aux_sym_log_level_token1] = ACTIONS(1046), + [aux_sym_log_verbose_token1] = ACTIONS(1046), + [aux_sym_macs_token1] = ACTIONS(1046), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1046), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1046), + [aux_sym_password_authentication_token1] = ACTIONS(1046), + [aux_sym_permit_local_command_token1] = ACTIONS(1046), + [aux_sym_permit_remote_open_token1] = ACTIONS(1046), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1046), + [aux_sym_port_token1] = ACTIONS(1046), + [aux_sym_preferred_authentications_token1] = ACTIONS(1046), + [aux_sym_protocol_token1] = ACTIONS(1046), + [aux_sym_proxy_command_token1] = ACTIONS(1046), + [aux_sym_proxy_jump_token1] = ACTIONS(1046), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1046), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1046), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1046), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1046), + [aux_sym_rekey_limit_token1] = ACTIONS(1046), + [aux_sym_remote_command_token1] = ACTIONS(1046), + [aux_sym_remote_forward_token1] = ACTIONS(1046), + [aux_sym_request_tty_token1] = ACTIONS(1046), + [aux_sym_required_rsa_size_token1] = ACTIONS(1046), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1046), + [aux_sym_security_key_provider_token1] = ACTIONS(1046), + [aux_sym_send_env_token1] = ACTIONS(1046), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1046), + [aux_sym_server_alive_interval_token1] = ACTIONS(1046), + [aux_sym_session_type_token1] = ACTIONS(1046), + [aux_sym_set_env_token1] = ACTIONS(1046), + [aux_sym_stdin_null_token1] = ACTIONS(1046), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1046), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1046), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1046), + [aux_sym_syslog_facility_token1] = ACTIONS(1046), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1046), + [aux_sym_keep_alive_token1] = ACTIONS(1046), + [aux_sym_tunnel_token1] = ACTIONS(1048), + [aux_sym_tunnel_device_token1] = ACTIONS(1046), + [aux_sym_update_host_keys_token1] = ACTIONS(1046), + [aux_sym_use_keychain_token1] = ACTIONS(1046), + [aux_sym_use_roaming_token1] = ACTIONS(1046), + [aux_sym_user_token1] = ACTIONS(1048), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1046), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1046), + [aux_sym_visual_host_key_token1] = ACTIONS(1046), + [aux_sym_xauth_location_token1] = ACTIONS(1046), }, [497] = { - [ts_builtin_sym_end] = ACTIONS(3169), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3171), - [aux_sym_match_token1] = ACTIONS(3169), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3169), - [aux_sym_address_family_token1] = ACTIONS(3169), - [aux_sym_batch_mode_token1] = ACTIONS(3169), - [aux_sym_bind_address_token1] = ACTIONS(3169), - [aux_sym_bind_interface_token1] = ACTIONS(3169), - [aux_sym_canonical_domains_token1] = ACTIONS(3169), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3169), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3169), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3169), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3169), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3169), - [aux_sym_certificate_file_token1] = ACTIONS(3169), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3169), - [aux_sym_check_host_ip_token1] = ACTIONS(3169), - [aux_sym_ciphers_token1] = ACTIONS(3169), - [aux_sym_cipher_token1] = ACTIONS(3171), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3169), - [aux_sym_compression_token1] = ACTIONS(3169), - [aux_sym_connection_attempts_token1] = ACTIONS(3169), - [aux_sym_connect_timeout_token1] = ACTIONS(3169), - [aux_sym_control_master_token1] = ACTIONS(3169), - [aux_sym_control_path_token1] = ACTIONS(3169), - [aux_sym_control_persist_token1] = ACTIONS(3169), - [aux_sym_dynamic_forward_token1] = ACTIONS(3169), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3169), - [aux_sym_escape_char_token1] = ACTIONS(3169), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3169), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3169), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3169), - [aux_sym_forward_agent_token1] = ACTIONS(3169), - [aux_sym_forward_x11_token1] = ACTIONS(3171), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3169), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3169), - [aux_sym_gateway_ports_token1] = ACTIONS(3169), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3169), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3169), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3169), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3169), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3169), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3169), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3169), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3169), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3169), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3169), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3169), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3169), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3169), - [aux_sym_host_key_alias_token1] = ACTIONS(3169), - [aux_sym_hostname_token1] = ACTIONS(3169), - [aux_sym_identities_only_token1] = ACTIONS(3169), - [aux_sym_identity_agent_token1] = ACTIONS(3169), - [aux_sym_identity_file_token1] = ACTIONS(3169), - [aux_sym_ignore_unknown_token1] = ACTIONS(3169), - [aux_sym_include_token1] = ACTIONS(3169), - [aux_sym_ip_qos_token1] = ACTIONS(3169), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3169), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3169), - [aux_sym_kex_algorithms_token1] = ACTIONS(3169), - [aux_sym_known_hosts_command_token1] = ACTIONS(3169), - [aux_sym_local_command_token1] = ACTIONS(3169), - [aux_sym_local_forward_token1] = ACTIONS(3169), - [aux_sym_log_level_token1] = ACTIONS(3169), - [aux_sym_log_verbose_token1] = ACTIONS(3169), - [aux_sym_macs_token1] = ACTIONS(3169), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3169), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3169), - [aux_sym_password_authentication_token1] = ACTIONS(3169), - [aux_sym_permit_local_command_token1] = ACTIONS(3169), - [aux_sym_permit_remote_open_token1] = ACTIONS(3169), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3169), - [aux_sym_port_token1] = ACTIONS(3169), - [aux_sym_preferred_authentications_token1] = ACTIONS(3169), - [aux_sym_protocol_token1] = ACTIONS(3169), - [aux_sym_proxy_command_token1] = ACTIONS(3169), - [aux_sym_proxy_jump_token1] = ACTIONS(3169), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3169), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3169), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3169), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3169), - [aux_sym_rekey_limit_token1] = ACTIONS(3169), - [aux_sym_remote_command_token1] = ACTIONS(3169), - [aux_sym_remote_forward_token1] = ACTIONS(3169), - [aux_sym_request_tty_token1] = ACTIONS(3169), - [aux_sym_required_rsa_size_token1] = ACTIONS(3169), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3169), - [aux_sym_security_key_provider_token1] = ACTIONS(3169), - [aux_sym_send_env_token1] = ACTIONS(3169), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3169), - [aux_sym_server_alive_interval_token1] = ACTIONS(3169), - [aux_sym_session_type_token1] = ACTIONS(3169), - [aux_sym_set_env_token1] = ACTIONS(3169), - [aux_sym_stdin_null_token1] = ACTIONS(3169), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3169), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3169), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3169), - [aux_sym_syslog_facility_token1] = ACTIONS(3169), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3169), - [aux_sym_keep_alive_token1] = ACTIONS(3169), - [aux_sym_tunnel_token1] = ACTIONS(3171), - [aux_sym_tunnel_device_token1] = ACTIONS(3169), - [aux_sym_update_host_keys_token1] = ACTIONS(3169), - [aux_sym_use_keychain_token1] = ACTIONS(3169), - [aux_sym_use_roaming_token1] = ACTIONS(3169), - [aux_sym_user_token1] = ACTIONS(3171), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3169), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3169), - [aux_sym_visual_host_key_token1] = ACTIONS(3169), - [aux_sym_xauth_location_token1] = ACTIONS(3169), + [ts_builtin_sym_end] = ACTIONS(1166), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1168), + [aux_sym_match_token1] = ACTIONS(1166), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1166), + [aux_sym_address_family_token1] = ACTIONS(1166), + [aux_sym_batch_mode_token1] = ACTIONS(1166), + [aux_sym_bind_address_token1] = ACTIONS(1166), + [aux_sym_bind_interface_token1] = ACTIONS(1166), + [aux_sym_canonical_domains_token1] = ACTIONS(1166), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1166), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1166), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1166), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1166), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1166), + [aux_sym_certificate_file_token1] = ACTIONS(1166), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1166), + [aux_sym_check_host_ip_token1] = ACTIONS(1166), + [aux_sym_ciphers_token1] = ACTIONS(1166), + [aux_sym_cipher_token1] = ACTIONS(1168), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1166), + [aux_sym_compression_token1] = ACTIONS(1166), + [aux_sym_connection_attempts_token1] = ACTIONS(1166), + [aux_sym_connect_timeout_token1] = ACTIONS(1166), + [aux_sym_control_master_token1] = ACTIONS(1166), + [aux_sym_control_path_token1] = ACTIONS(1166), + [aux_sym_control_persist_token1] = ACTIONS(1166), + [aux_sym_dynamic_forward_token1] = ACTIONS(1166), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1166), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1166), + [aux_sym_escape_char_token1] = ACTIONS(1166), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1166), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1166), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1166), + [aux_sym_forward_agent_token1] = ACTIONS(1166), + [aux_sym_forward_x11_token1] = ACTIONS(1168), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1166), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1166), + [aux_sym_gateway_ports_token1] = ACTIONS(1166), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1166), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1166), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1166), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1166), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1166), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1166), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1166), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1166), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1166), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1166), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1166), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1166), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1166), + [aux_sym_host_key_alias_token1] = ACTIONS(1166), + [aux_sym_hostname_token1] = ACTIONS(1166), + [aux_sym_identities_only_token1] = ACTIONS(1166), + [aux_sym_identity_agent_token1] = ACTIONS(1166), + [aux_sym_identity_file_token1] = ACTIONS(1166), + [aux_sym_ignore_unknown_token1] = ACTIONS(1166), + [aux_sym_include_token1] = ACTIONS(1166), + [aux_sym_ip_qos_token1] = ACTIONS(1166), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1166), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1166), + [aux_sym_kex_algorithms_token1] = ACTIONS(1166), + [aux_sym_known_hosts_command_token1] = ACTIONS(1166), + [aux_sym_local_command_token1] = ACTIONS(1166), + [aux_sym_local_forward_token1] = ACTIONS(1166), + [aux_sym_log_level_token1] = ACTIONS(1166), + [aux_sym_log_verbose_token1] = ACTIONS(1166), + [aux_sym_macs_token1] = ACTIONS(1166), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1166), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1166), + [aux_sym_password_authentication_token1] = ACTIONS(1166), + [aux_sym_permit_local_command_token1] = ACTIONS(1166), + [aux_sym_permit_remote_open_token1] = ACTIONS(1166), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1166), + [aux_sym_port_token1] = ACTIONS(1166), + [aux_sym_preferred_authentications_token1] = ACTIONS(1166), + [aux_sym_protocol_token1] = ACTIONS(1166), + [aux_sym_proxy_command_token1] = ACTIONS(1166), + [aux_sym_proxy_jump_token1] = ACTIONS(1166), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1166), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1166), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1166), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1166), + [aux_sym_rekey_limit_token1] = ACTIONS(1166), + [aux_sym_remote_command_token1] = ACTIONS(1166), + [aux_sym_remote_forward_token1] = ACTIONS(1166), + [aux_sym_request_tty_token1] = ACTIONS(1166), + [aux_sym_required_rsa_size_token1] = ACTIONS(1166), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1166), + [aux_sym_security_key_provider_token1] = ACTIONS(1166), + [aux_sym_send_env_token1] = ACTIONS(1166), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1166), + [aux_sym_server_alive_interval_token1] = ACTIONS(1166), + [aux_sym_session_type_token1] = ACTIONS(1166), + [aux_sym_set_env_token1] = ACTIONS(1166), + [aux_sym_stdin_null_token1] = ACTIONS(1166), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1166), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1166), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1166), + [aux_sym_syslog_facility_token1] = ACTIONS(1166), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1166), + [aux_sym_keep_alive_token1] = ACTIONS(1166), + [aux_sym_tunnel_token1] = ACTIONS(1168), + [aux_sym_tunnel_device_token1] = ACTIONS(1166), + [aux_sym_update_host_keys_token1] = ACTIONS(1166), + [aux_sym_use_keychain_token1] = ACTIONS(1166), + [aux_sym_use_roaming_token1] = ACTIONS(1166), + [aux_sym_user_token1] = ACTIONS(1168), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1166), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1166), + [aux_sym_visual_host_key_token1] = ACTIONS(1166), + [aux_sym_xauth_location_token1] = ACTIONS(1166), }, [498] = { - [ts_builtin_sym_end] = ACTIONS(3173), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3175), - [aux_sym_match_token1] = ACTIONS(3173), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3173), - [aux_sym_address_family_token1] = ACTIONS(3173), - [aux_sym_batch_mode_token1] = ACTIONS(3173), - [aux_sym_bind_address_token1] = ACTIONS(3173), - [aux_sym_bind_interface_token1] = ACTIONS(3173), - [aux_sym_canonical_domains_token1] = ACTIONS(3173), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3173), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3173), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3173), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3173), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3173), - [aux_sym_certificate_file_token1] = ACTIONS(3173), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3173), - [aux_sym_check_host_ip_token1] = ACTIONS(3173), - [aux_sym_ciphers_token1] = ACTIONS(3173), - [aux_sym_cipher_token1] = ACTIONS(3175), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3173), - [aux_sym_compression_token1] = ACTIONS(3173), - [aux_sym_connection_attempts_token1] = ACTIONS(3173), - [aux_sym_connect_timeout_token1] = ACTIONS(3173), - [aux_sym_control_master_token1] = ACTIONS(3173), - [aux_sym_control_path_token1] = ACTIONS(3173), - [aux_sym_control_persist_token1] = ACTIONS(3173), - [aux_sym_dynamic_forward_token1] = ACTIONS(3173), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3173), - [aux_sym_escape_char_token1] = ACTIONS(3173), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3173), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3173), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3173), - [aux_sym_forward_agent_token1] = ACTIONS(3173), - [aux_sym_forward_x11_token1] = ACTIONS(3175), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3173), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3173), - [aux_sym_gateway_ports_token1] = ACTIONS(3173), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3173), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3173), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3173), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3173), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3173), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3173), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3173), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3173), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3173), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3173), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3173), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3173), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3173), - [aux_sym_host_key_alias_token1] = ACTIONS(3173), - [aux_sym_hostname_token1] = ACTIONS(3173), - [aux_sym_identities_only_token1] = ACTIONS(3173), - [aux_sym_identity_agent_token1] = ACTIONS(3173), - [aux_sym_identity_file_token1] = ACTIONS(3173), - [aux_sym_ignore_unknown_token1] = ACTIONS(3173), - [aux_sym_include_token1] = ACTIONS(3173), - [aux_sym_ip_qos_token1] = ACTIONS(3173), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3173), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3173), - [aux_sym_kex_algorithms_token1] = ACTIONS(3173), - [aux_sym_known_hosts_command_token1] = ACTIONS(3173), - [aux_sym_local_command_token1] = ACTIONS(3173), - [aux_sym_local_forward_token1] = ACTIONS(3173), - [aux_sym_log_level_token1] = ACTIONS(3173), - [aux_sym_log_verbose_token1] = ACTIONS(3173), - [aux_sym_macs_token1] = ACTIONS(3173), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3173), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3173), - [aux_sym_password_authentication_token1] = ACTIONS(3173), - [aux_sym_permit_local_command_token1] = ACTIONS(3173), - [aux_sym_permit_remote_open_token1] = ACTIONS(3173), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3173), - [aux_sym_port_token1] = ACTIONS(3173), - [aux_sym_preferred_authentications_token1] = ACTIONS(3173), - [aux_sym_protocol_token1] = ACTIONS(3173), - [aux_sym_proxy_command_token1] = ACTIONS(3173), - [aux_sym_proxy_jump_token1] = ACTIONS(3173), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3173), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3173), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3173), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3173), - [aux_sym_rekey_limit_token1] = ACTIONS(3173), - [aux_sym_remote_command_token1] = ACTIONS(3173), - [aux_sym_remote_forward_token1] = ACTIONS(3173), - [aux_sym_request_tty_token1] = ACTIONS(3173), - [aux_sym_required_rsa_size_token1] = ACTIONS(3173), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3173), - [aux_sym_security_key_provider_token1] = ACTIONS(3173), - [aux_sym_send_env_token1] = ACTIONS(3173), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3173), - [aux_sym_server_alive_interval_token1] = ACTIONS(3173), - [aux_sym_session_type_token1] = ACTIONS(3173), - [aux_sym_set_env_token1] = ACTIONS(3173), - [aux_sym_stdin_null_token1] = ACTIONS(3173), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3173), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3173), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3173), - [aux_sym_syslog_facility_token1] = ACTIONS(3173), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3173), - [aux_sym_keep_alive_token1] = ACTIONS(3173), - [aux_sym_tunnel_token1] = ACTIONS(3175), - [aux_sym_tunnel_device_token1] = ACTIONS(3173), - [aux_sym_update_host_keys_token1] = ACTIONS(3173), - [aux_sym_use_keychain_token1] = ACTIONS(3173), - [aux_sym_use_roaming_token1] = ACTIONS(3173), - [aux_sym_user_token1] = ACTIONS(3175), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3173), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3173), - [aux_sym_visual_host_key_token1] = ACTIONS(3173), - [aux_sym_xauth_location_token1] = ACTIONS(3173), + [ts_builtin_sym_end] = ACTIONS(1088), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1090), + [aux_sym_match_token1] = ACTIONS(1088), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1088), + [aux_sym_address_family_token1] = ACTIONS(1088), + [aux_sym_batch_mode_token1] = ACTIONS(1088), + [aux_sym_bind_address_token1] = ACTIONS(1088), + [aux_sym_bind_interface_token1] = ACTIONS(1088), + [aux_sym_canonical_domains_token1] = ACTIONS(1088), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1088), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1088), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1088), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1088), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1088), + [aux_sym_certificate_file_token1] = ACTIONS(1088), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1088), + [aux_sym_check_host_ip_token1] = ACTIONS(1088), + [aux_sym_ciphers_token1] = ACTIONS(1088), + [aux_sym_cipher_token1] = ACTIONS(1090), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1088), + [aux_sym_compression_token1] = ACTIONS(1088), + [aux_sym_connection_attempts_token1] = ACTIONS(1088), + [aux_sym_connect_timeout_token1] = ACTIONS(1088), + [aux_sym_control_master_token1] = ACTIONS(1088), + [aux_sym_control_path_token1] = ACTIONS(1088), + [aux_sym_control_persist_token1] = ACTIONS(1088), + [aux_sym_dynamic_forward_token1] = ACTIONS(1088), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1088), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1088), + [aux_sym_escape_char_token1] = ACTIONS(1088), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1088), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1088), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1088), + [aux_sym_forward_agent_token1] = ACTIONS(1088), + [aux_sym_forward_x11_token1] = ACTIONS(1090), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1088), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1088), + [aux_sym_gateway_ports_token1] = ACTIONS(1088), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1088), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1088), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1088), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1088), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1088), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1088), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1088), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1088), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1088), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1088), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1088), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1088), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1088), + [aux_sym_host_key_alias_token1] = ACTIONS(1088), + [aux_sym_hostname_token1] = ACTIONS(1088), + [aux_sym_identities_only_token1] = ACTIONS(1088), + [aux_sym_identity_agent_token1] = ACTIONS(1088), + [aux_sym_identity_file_token1] = ACTIONS(1088), + [aux_sym_ignore_unknown_token1] = ACTIONS(1088), + [aux_sym_include_token1] = ACTIONS(1088), + [aux_sym_ip_qos_token1] = ACTIONS(1088), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1088), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1088), + [aux_sym_kex_algorithms_token1] = ACTIONS(1088), + [aux_sym_known_hosts_command_token1] = ACTIONS(1088), + [aux_sym_local_command_token1] = ACTIONS(1088), + [aux_sym_local_forward_token1] = ACTIONS(1088), + [aux_sym_log_level_token1] = ACTIONS(1088), + [aux_sym_log_verbose_token1] = ACTIONS(1088), + [aux_sym_macs_token1] = ACTIONS(1088), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1088), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1088), + [aux_sym_password_authentication_token1] = ACTIONS(1088), + [aux_sym_permit_local_command_token1] = ACTIONS(1088), + [aux_sym_permit_remote_open_token1] = ACTIONS(1088), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1088), + [aux_sym_port_token1] = ACTIONS(1088), + [aux_sym_preferred_authentications_token1] = ACTIONS(1088), + [aux_sym_protocol_token1] = ACTIONS(1088), + [aux_sym_proxy_command_token1] = ACTIONS(1088), + [aux_sym_proxy_jump_token1] = ACTIONS(1088), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1088), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1088), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1088), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1088), + [aux_sym_rekey_limit_token1] = ACTIONS(1088), + [aux_sym_remote_command_token1] = ACTIONS(1088), + [aux_sym_remote_forward_token1] = ACTIONS(1088), + [aux_sym_request_tty_token1] = ACTIONS(1088), + [aux_sym_required_rsa_size_token1] = ACTIONS(1088), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1088), + [aux_sym_security_key_provider_token1] = ACTIONS(1088), + [aux_sym_send_env_token1] = ACTIONS(1088), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1088), + [aux_sym_server_alive_interval_token1] = ACTIONS(1088), + [aux_sym_session_type_token1] = ACTIONS(1088), + [aux_sym_set_env_token1] = ACTIONS(1088), + [aux_sym_stdin_null_token1] = ACTIONS(1088), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1088), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1088), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1088), + [aux_sym_syslog_facility_token1] = ACTIONS(1088), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1088), + [aux_sym_keep_alive_token1] = ACTIONS(1088), + [aux_sym_tunnel_token1] = ACTIONS(1090), + [aux_sym_tunnel_device_token1] = ACTIONS(1088), + [aux_sym_update_host_keys_token1] = ACTIONS(1088), + [aux_sym_use_keychain_token1] = ACTIONS(1088), + [aux_sym_use_roaming_token1] = ACTIONS(1088), + [aux_sym_user_token1] = ACTIONS(1090), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1088), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1088), + [aux_sym_visual_host_key_token1] = ACTIONS(1088), + [aux_sym_xauth_location_token1] = ACTIONS(1088), }, [499] = { - [ts_builtin_sym_end] = ACTIONS(3177), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3179), - [aux_sym_match_token1] = ACTIONS(3177), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3177), - [aux_sym_address_family_token1] = ACTIONS(3177), - [aux_sym_batch_mode_token1] = ACTIONS(3177), - [aux_sym_bind_address_token1] = ACTIONS(3177), - [aux_sym_bind_interface_token1] = ACTIONS(3177), - [aux_sym_canonical_domains_token1] = ACTIONS(3177), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3177), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3177), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3177), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3177), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3177), - [aux_sym_certificate_file_token1] = ACTIONS(3177), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3177), - [aux_sym_check_host_ip_token1] = ACTIONS(3177), - [aux_sym_ciphers_token1] = ACTIONS(3177), - [aux_sym_cipher_token1] = ACTIONS(3179), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3177), - [aux_sym_compression_token1] = ACTIONS(3177), - [aux_sym_connection_attempts_token1] = ACTIONS(3177), - [aux_sym_connect_timeout_token1] = ACTIONS(3177), - [aux_sym_control_master_token1] = ACTIONS(3177), - [aux_sym_control_path_token1] = ACTIONS(3177), - [aux_sym_control_persist_token1] = ACTIONS(3177), - [aux_sym_dynamic_forward_token1] = ACTIONS(3177), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3177), - [aux_sym_escape_char_token1] = ACTIONS(3177), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3177), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3177), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3177), - [aux_sym_forward_agent_token1] = ACTIONS(3177), - [aux_sym_forward_x11_token1] = ACTIONS(3179), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3177), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3177), - [aux_sym_gateway_ports_token1] = ACTIONS(3177), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3177), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3177), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3177), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3177), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3177), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3177), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3177), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3177), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3177), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3177), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3177), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3177), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3177), - [aux_sym_host_key_alias_token1] = ACTIONS(3177), - [aux_sym_hostname_token1] = ACTIONS(3177), - [aux_sym_identities_only_token1] = ACTIONS(3177), - [aux_sym_identity_agent_token1] = ACTIONS(3177), - [aux_sym_identity_file_token1] = ACTIONS(3177), - [aux_sym_ignore_unknown_token1] = ACTIONS(3177), - [aux_sym_include_token1] = ACTIONS(3177), - [aux_sym_ip_qos_token1] = ACTIONS(3177), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3177), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3177), - [aux_sym_kex_algorithms_token1] = ACTIONS(3177), - [aux_sym_known_hosts_command_token1] = ACTIONS(3177), - [aux_sym_local_command_token1] = ACTIONS(3177), - [aux_sym_local_forward_token1] = ACTIONS(3177), - [aux_sym_log_level_token1] = ACTIONS(3177), - [aux_sym_log_verbose_token1] = ACTIONS(3177), - [aux_sym_macs_token1] = ACTIONS(3177), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3177), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3177), - [aux_sym_password_authentication_token1] = ACTIONS(3177), - [aux_sym_permit_local_command_token1] = ACTIONS(3177), - [aux_sym_permit_remote_open_token1] = ACTIONS(3177), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3177), - [aux_sym_port_token1] = ACTIONS(3177), - [aux_sym_preferred_authentications_token1] = ACTIONS(3177), - [aux_sym_protocol_token1] = ACTIONS(3177), - [aux_sym_proxy_command_token1] = ACTIONS(3177), - [aux_sym_proxy_jump_token1] = ACTIONS(3177), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3177), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3177), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3177), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3177), - [aux_sym_rekey_limit_token1] = ACTIONS(3177), - [aux_sym_remote_command_token1] = ACTIONS(3177), - [aux_sym_remote_forward_token1] = ACTIONS(3177), - [aux_sym_request_tty_token1] = ACTIONS(3177), - [aux_sym_required_rsa_size_token1] = ACTIONS(3177), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3177), - [aux_sym_security_key_provider_token1] = ACTIONS(3177), - [aux_sym_send_env_token1] = ACTIONS(3177), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3177), - [aux_sym_server_alive_interval_token1] = ACTIONS(3177), - [aux_sym_session_type_token1] = ACTIONS(3177), - [aux_sym_set_env_token1] = ACTIONS(3177), - [aux_sym_stdin_null_token1] = ACTIONS(3177), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3177), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3177), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3177), - [aux_sym_syslog_facility_token1] = ACTIONS(3177), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3177), - [aux_sym_keep_alive_token1] = ACTIONS(3177), - [aux_sym_tunnel_token1] = ACTIONS(3179), - [aux_sym_tunnel_device_token1] = ACTIONS(3177), - [aux_sym_update_host_keys_token1] = ACTIONS(3177), - [aux_sym_use_keychain_token1] = ACTIONS(3177), - [aux_sym_use_roaming_token1] = ACTIONS(3177), - [aux_sym_user_token1] = ACTIONS(3179), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3177), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3177), - [aux_sym_visual_host_key_token1] = ACTIONS(3177), - [aux_sym_xauth_location_token1] = ACTIONS(3177), + [ts_builtin_sym_end] = ACTIONS(1172), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1174), + [aux_sym_match_token1] = ACTIONS(1172), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1172), + [aux_sym_address_family_token1] = ACTIONS(1172), + [aux_sym_batch_mode_token1] = ACTIONS(1172), + [aux_sym_bind_address_token1] = ACTIONS(1172), + [aux_sym_bind_interface_token1] = ACTIONS(1172), + [aux_sym_canonical_domains_token1] = ACTIONS(1172), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1172), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1172), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1172), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1172), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1172), + [aux_sym_certificate_file_token1] = ACTIONS(1172), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1172), + [aux_sym_check_host_ip_token1] = ACTIONS(1172), + [aux_sym_ciphers_token1] = ACTIONS(1172), + [aux_sym_cipher_token1] = ACTIONS(1174), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1172), + [aux_sym_compression_token1] = ACTIONS(1172), + [aux_sym_connection_attempts_token1] = ACTIONS(1172), + [aux_sym_connect_timeout_token1] = ACTIONS(1172), + [aux_sym_control_master_token1] = ACTIONS(1172), + [aux_sym_control_path_token1] = ACTIONS(1172), + [aux_sym_control_persist_token1] = ACTIONS(1172), + [aux_sym_dynamic_forward_token1] = ACTIONS(1172), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1172), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1172), + [aux_sym_escape_char_token1] = ACTIONS(1172), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1172), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1172), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1172), + [aux_sym_forward_agent_token1] = ACTIONS(1172), + [aux_sym_forward_x11_token1] = ACTIONS(1174), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1172), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1172), + [aux_sym_gateway_ports_token1] = ACTIONS(1172), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1172), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1172), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1172), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1172), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1172), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1172), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1172), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1172), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1172), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1172), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1172), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1172), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1172), + [aux_sym_host_key_alias_token1] = ACTIONS(1172), + [aux_sym_hostname_token1] = ACTIONS(1172), + [aux_sym_identities_only_token1] = ACTIONS(1172), + [aux_sym_identity_agent_token1] = ACTIONS(1172), + [aux_sym_identity_file_token1] = ACTIONS(1172), + [aux_sym_ignore_unknown_token1] = ACTIONS(1172), + [aux_sym_include_token1] = ACTIONS(1172), + [aux_sym_ip_qos_token1] = ACTIONS(1172), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1172), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1172), + [aux_sym_kex_algorithms_token1] = ACTIONS(1172), + [aux_sym_known_hosts_command_token1] = ACTIONS(1172), + [aux_sym_local_command_token1] = ACTIONS(1172), + [aux_sym_local_forward_token1] = ACTIONS(1172), + [aux_sym_log_level_token1] = ACTIONS(1172), + [aux_sym_log_verbose_token1] = ACTIONS(1172), + [aux_sym_macs_token1] = ACTIONS(1172), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1172), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1172), + [aux_sym_password_authentication_token1] = ACTIONS(1172), + [aux_sym_permit_local_command_token1] = ACTIONS(1172), + [aux_sym_permit_remote_open_token1] = ACTIONS(1172), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1172), + [aux_sym_port_token1] = ACTIONS(1172), + [aux_sym_preferred_authentications_token1] = ACTIONS(1172), + [aux_sym_protocol_token1] = ACTIONS(1172), + [aux_sym_proxy_command_token1] = ACTIONS(1172), + [aux_sym_proxy_jump_token1] = ACTIONS(1172), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1172), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1172), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1172), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1172), + [aux_sym_rekey_limit_token1] = ACTIONS(1172), + [aux_sym_remote_command_token1] = ACTIONS(1172), + [aux_sym_remote_forward_token1] = ACTIONS(1172), + [aux_sym_request_tty_token1] = ACTIONS(1172), + [aux_sym_required_rsa_size_token1] = ACTIONS(1172), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1172), + [aux_sym_security_key_provider_token1] = ACTIONS(1172), + [aux_sym_send_env_token1] = ACTIONS(1172), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1172), + [aux_sym_server_alive_interval_token1] = ACTIONS(1172), + [aux_sym_session_type_token1] = ACTIONS(1172), + [aux_sym_set_env_token1] = ACTIONS(1172), + [aux_sym_stdin_null_token1] = ACTIONS(1172), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1172), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1172), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1172), + [aux_sym_syslog_facility_token1] = ACTIONS(1172), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1172), + [aux_sym_keep_alive_token1] = ACTIONS(1172), + [aux_sym_tunnel_token1] = ACTIONS(1174), + [aux_sym_tunnel_device_token1] = ACTIONS(1172), + [aux_sym_update_host_keys_token1] = ACTIONS(1172), + [aux_sym_use_keychain_token1] = ACTIONS(1172), + [aux_sym_use_roaming_token1] = ACTIONS(1172), + [aux_sym_user_token1] = ACTIONS(1174), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1172), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1172), + [aux_sym_visual_host_key_token1] = ACTIONS(1172), + [aux_sym_xauth_location_token1] = ACTIONS(1172), }, [500] = { - [ts_builtin_sym_end] = ACTIONS(3181), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3183), - [aux_sym_match_token1] = ACTIONS(3181), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3181), - [aux_sym_address_family_token1] = ACTIONS(3181), - [aux_sym_batch_mode_token1] = ACTIONS(3181), - [aux_sym_bind_address_token1] = ACTIONS(3181), - [aux_sym_bind_interface_token1] = ACTIONS(3181), - [aux_sym_canonical_domains_token1] = ACTIONS(3181), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3181), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3181), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3181), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3181), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3181), - [aux_sym_certificate_file_token1] = ACTIONS(3181), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3181), - [aux_sym_check_host_ip_token1] = ACTIONS(3181), - [aux_sym_ciphers_token1] = ACTIONS(3181), - [aux_sym_cipher_token1] = ACTIONS(3183), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3181), - [aux_sym_compression_token1] = ACTIONS(3181), - [aux_sym_connection_attempts_token1] = ACTIONS(3181), - [aux_sym_connect_timeout_token1] = ACTIONS(3181), - [aux_sym_control_master_token1] = ACTIONS(3181), - [aux_sym_control_path_token1] = ACTIONS(3181), - [aux_sym_control_persist_token1] = ACTIONS(3181), - [aux_sym_dynamic_forward_token1] = ACTIONS(3181), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3181), - [aux_sym_escape_char_token1] = ACTIONS(3181), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3181), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3181), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3181), - [aux_sym_forward_agent_token1] = ACTIONS(3181), - [aux_sym_forward_x11_token1] = ACTIONS(3183), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3181), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3181), - [aux_sym_gateway_ports_token1] = ACTIONS(3181), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3181), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3181), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3181), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3181), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3181), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3181), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3181), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3181), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3181), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3181), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3181), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3181), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3181), - [aux_sym_host_key_alias_token1] = ACTIONS(3181), - [aux_sym_hostname_token1] = ACTIONS(3181), - [aux_sym_identities_only_token1] = ACTIONS(3181), - [aux_sym_identity_agent_token1] = ACTIONS(3181), - [aux_sym_identity_file_token1] = ACTIONS(3181), - [aux_sym_ignore_unknown_token1] = ACTIONS(3181), - [aux_sym_include_token1] = ACTIONS(3181), - [aux_sym_ip_qos_token1] = ACTIONS(3181), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3181), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3181), - [aux_sym_kex_algorithms_token1] = ACTIONS(3181), - [aux_sym_known_hosts_command_token1] = ACTIONS(3181), - [aux_sym_local_command_token1] = ACTIONS(3181), - [aux_sym_local_forward_token1] = ACTIONS(3181), - [aux_sym_log_level_token1] = ACTIONS(3181), - [aux_sym_log_verbose_token1] = ACTIONS(3181), - [aux_sym_macs_token1] = ACTIONS(3181), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3181), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3181), - [aux_sym_password_authentication_token1] = ACTIONS(3181), - [aux_sym_permit_local_command_token1] = ACTIONS(3181), - [aux_sym_permit_remote_open_token1] = ACTIONS(3181), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3181), - [aux_sym_port_token1] = ACTIONS(3181), - [aux_sym_preferred_authentications_token1] = ACTIONS(3181), - [aux_sym_protocol_token1] = ACTIONS(3181), - [aux_sym_proxy_command_token1] = ACTIONS(3181), - [aux_sym_proxy_jump_token1] = ACTIONS(3181), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3181), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3181), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3181), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3181), - [aux_sym_rekey_limit_token1] = ACTIONS(3181), - [aux_sym_remote_command_token1] = ACTIONS(3181), - [aux_sym_remote_forward_token1] = ACTIONS(3181), - [aux_sym_request_tty_token1] = ACTIONS(3181), - [aux_sym_required_rsa_size_token1] = ACTIONS(3181), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3181), - [aux_sym_security_key_provider_token1] = ACTIONS(3181), - [aux_sym_send_env_token1] = ACTIONS(3181), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3181), - [aux_sym_server_alive_interval_token1] = ACTIONS(3181), - [aux_sym_session_type_token1] = ACTIONS(3181), - [aux_sym_set_env_token1] = ACTIONS(3181), - [aux_sym_stdin_null_token1] = ACTIONS(3181), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3181), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3181), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3181), - [aux_sym_syslog_facility_token1] = ACTIONS(3181), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3181), - [aux_sym_keep_alive_token1] = ACTIONS(3181), - [aux_sym_tunnel_token1] = ACTIONS(3183), - [aux_sym_tunnel_device_token1] = ACTIONS(3181), - [aux_sym_update_host_keys_token1] = ACTIONS(3181), - [aux_sym_use_keychain_token1] = ACTIONS(3181), - [aux_sym_use_roaming_token1] = ACTIONS(3181), - [aux_sym_user_token1] = ACTIONS(3183), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3181), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3181), - [aux_sym_visual_host_key_token1] = ACTIONS(3181), - [aux_sym_xauth_location_token1] = ACTIONS(3181), + [ts_builtin_sym_end] = ACTIONS(3144), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3146), + [aux_sym_match_token1] = ACTIONS(3144), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3144), + [aux_sym_address_family_token1] = ACTIONS(3144), + [aux_sym_batch_mode_token1] = ACTIONS(3144), + [aux_sym_bind_address_token1] = ACTIONS(3144), + [aux_sym_bind_interface_token1] = ACTIONS(3144), + [aux_sym_canonical_domains_token1] = ACTIONS(3144), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3144), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3144), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3144), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3144), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3144), + [aux_sym_certificate_file_token1] = ACTIONS(3144), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3144), + [aux_sym_check_host_ip_token1] = ACTIONS(3144), + [aux_sym_ciphers_token1] = ACTIONS(3144), + [aux_sym_cipher_token1] = ACTIONS(3146), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3144), + [aux_sym_compression_token1] = ACTIONS(3144), + [aux_sym_connection_attempts_token1] = ACTIONS(3144), + [aux_sym_connect_timeout_token1] = ACTIONS(3144), + [aux_sym_control_master_token1] = ACTIONS(3144), + [aux_sym_control_path_token1] = ACTIONS(3144), + [aux_sym_control_persist_token1] = ACTIONS(3144), + [aux_sym_dynamic_forward_token1] = ACTIONS(3144), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3144), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3144), + [aux_sym_escape_char_token1] = ACTIONS(3144), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3144), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3144), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3144), + [aux_sym_forward_agent_token1] = ACTIONS(3144), + [aux_sym_forward_x11_token1] = ACTIONS(3146), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3144), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3144), + [aux_sym_gateway_ports_token1] = ACTIONS(3144), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3144), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3144), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3144), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3144), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3144), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3144), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3144), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3144), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3144), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3144), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3144), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3144), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3144), + [aux_sym_host_key_alias_token1] = ACTIONS(3144), + [aux_sym_hostname_token1] = ACTIONS(3144), + [aux_sym_identities_only_token1] = ACTIONS(3144), + [aux_sym_identity_agent_token1] = ACTIONS(3144), + [aux_sym_identity_file_token1] = ACTIONS(3144), + [aux_sym_ignore_unknown_token1] = ACTIONS(3144), + [aux_sym_include_token1] = ACTIONS(3144), + [aux_sym_ip_qos_token1] = ACTIONS(3144), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3144), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3144), + [aux_sym_kex_algorithms_token1] = ACTIONS(3144), + [aux_sym_known_hosts_command_token1] = ACTIONS(3144), + [aux_sym_local_command_token1] = ACTIONS(3144), + [aux_sym_local_forward_token1] = ACTIONS(3144), + [aux_sym_log_level_token1] = ACTIONS(3144), + [aux_sym_log_verbose_token1] = ACTIONS(3144), + [aux_sym_macs_token1] = ACTIONS(3144), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3144), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3144), + [aux_sym_password_authentication_token1] = ACTIONS(3144), + [aux_sym_permit_local_command_token1] = ACTIONS(3144), + [aux_sym_permit_remote_open_token1] = ACTIONS(3144), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3144), + [aux_sym_port_token1] = ACTIONS(3144), + [aux_sym_preferred_authentications_token1] = ACTIONS(3144), + [aux_sym_protocol_token1] = ACTIONS(3144), + [aux_sym_proxy_command_token1] = ACTIONS(3144), + [aux_sym_proxy_jump_token1] = ACTIONS(3144), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3144), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3144), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3144), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3144), + [aux_sym_rekey_limit_token1] = ACTIONS(3144), + [aux_sym_remote_command_token1] = ACTIONS(3144), + [aux_sym_remote_forward_token1] = ACTIONS(3144), + [aux_sym_request_tty_token1] = ACTIONS(3144), + [aux_sym_required_rsa_size_token1] = ACTIONS(3144), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3144), + [aux_sym_security_key_provider_token1] = ACTIONS(3144), + [aux_sym_send_env_token1] = ACTIONS(3144), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3144), + [aux_sym_server_alive_interval_token1] = ACTIONS(3144), + [aux_sym_session_type_token1] = ACTIONS(3144), + [aux_sym_set_env_token1] = ACTIONS(3144), + [aux_sym_stdin_null_token1] = ACTIONS(3144), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3144), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3144), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3144), + [aux_sym_syslog_facility_token1] = ACTIONS(3144), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3144), + [aux_sym_keep_alive_token1] = ACTIONS(3144), + [aux_sym_tunnel_token1] = ACTIONS(3146), + [aux_sym_tunnel_device_token1] = ACTIONS(3144), + [aux_sym_update_host_keys_token1] = ACTIONS(3144), + [aux_sym_use_keychain_token1] = ACTIONS(3144), + [aux_sym_use_roaming_token1] = ACTIONS(3144), + [aux_sym_user_token1] = ACTIONS(3146), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3144), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3144), + [aux_sym_visual_host_key_token1] = ACTIONS(3144), + [aux_sym_xauth_location_token1] = ACTIONS(3144), }, [501] = { - [ts_builtin_sym_end] = ACTIONS(3185), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3187), - [aux_sym_match_token1] = ACTIONS(3185), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3185), - [aux_sym_address_family_token1] = ACTIONS(3185), - [aux_sym_batch_mode_token1] = ACTIONS(3185), - [aux_sym_bind_address_token1] = ACTIONS(3185), - [aux_sym_bind_interface_token1] = ACTIONS(3185), - [aux_sym_canonical_domains_token1] = ACTIONS(3185), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3185), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3185), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3185), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3185), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3185), - [aux_sym_certificate_file_token1] = ACTIONS(3185), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3185), - [aux_sym_check_host_ip_token1] = ACTIONS(3185), - [aux_sym_ciphers_token1] = ACTIONS(3185), - [aux_sym_cipher_token1] = ACTIONS(3187), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3185), - [aux_sym_compression_token1] = ACTIONS(3185), - [aux_sym_connection_attempts_token1] = ACTIONS(3185), - [aux_sym_connect_timeout_token1] = ACTIONS(3185), - [aux_sym_control_master_token1] = ACTIONS(3185), - [aux_sym_control_path_token1] = ACTIONS(3185), - [aux_sym_control_persist_token1] = ACTIONS(3185), - [aux_sym_dynamic_forward_token1] = ACTIONS(3185), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3185), - [aux_sym_escape_char_token1] = ACTIONS(3185), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3185), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3185), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3185), - [aux_sym_forward_agent_token1] = ACTIONS(3185), - [aux_sym_forward_x11_token1] = ACTIONS(3187), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3185), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3185), - [aux_sym_gateway_ports_token1] = ACTIONS(3185), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3185), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3185), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3185), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3185), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3185), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3185), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3185), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3185), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3185), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3185), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3185), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3185), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3185), - [aux_sym_host_key_alias_token1] = ACTIONS(3185), - [aux_sym_hostname_token1] = ACTIONS(3185), - [aux_sym_identities_only_token1] = ACTIONS(3185), - [aux_sym_identity_agent_token1] = ACTIONS(3185), - [aux_sym_identity_file_token1] = ACTIONS(3185), - [aux_sym_ignore_unknown_token1] = ACTIONS(3185), - [aux_sym_include_token1] = ACTIONS(3185), - [aux_sym_ip_qos_token1] = ACTIONS(3185), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3185), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3185), - [aux_sym_kex_algorithms_token1] = ACTIONS(3185), - [aux_sym_known_hosts_command_token1] = ACTIONS(3185), - [aux_sym_local_command_token1] = ACTIONS(3185), - [aux_sym_local_forward_token1] = ACTIONS(3185), - [aux_sym_log_level_token1] = ACTIONS(3185), - [aux_sym_log_verbose_token1] = ACTIONS(3185), - [aux_sym_macs_token1] = ACTIONS(3185), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3185), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3185), - [aux_sym_password_authentication_token1] = ACTIONS(3185), - [aux_sym_permit_local_command_token1] = ACTIONS(3185), - [aux_sym_permit_remote_open_token1] = ACTIONS(3185), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3185), - [aux_sym_port_token1] = ACTIONS(3185), - [aux_sym_preferred_authentications_token1] = ACTIONS(3185), - [aux_sym_protocol_token1] = ACTIONS(3185), - [aux_sym_proxy_command_token1] = ACTIONS(3185), - [aux_sym_proxy_jump_token1] = ACTIONS(3185), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3185), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3185), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3185), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3185), - [aux_sym_rekey_limit_token1] = ACTIONS(3185), - [aux_sym_remote_command_token1] = ACTIONS(3185), - [aux_sym_remote_forward_token1] = ACTIONS(3185), - [aux_sym_request_tty_token1] = ACTIONS(3185), - [aux_sym_required_rsa_size_token1] = ACTIONS(3185), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3185), - [aux_sym_security_key_provider_token1] = ACTIONS(3185), - [aux_sym_send_env_token1] = ACTIONS(3185), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3185), - [aux_sym_server_alive_interval_token1] = ACTIONS(3185), - [aux_sym_session_type_token1] = ACTIONS(3185), - [aux_sym_set_env_token1] = ACTIONS(3185), - [aux_sym_stdin_null_token1] = ACTIONS(3185), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3185), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3185), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3185), - [aux_sym_syslog_facility_token1] = ACTIONS(3185), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3185), - [aux_sym_keep_alive_token1] = ACTIONS(3185), - [aux_sym_tunnel_token1] = ACTIONS(3187), - [aux_sym_tunnel_device_token1] = ACTIONS(3185), - [aux_sym_update_host_keys_token1] = ACTIONS(3185), - [aux_sym_use_keychain_token1] = ACTIONS(3185), - [aux_sym_use_roaming_token1] = ACTIONS(3185), - [aux_sym_user_token1] = ACTIONS(3187), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3185), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3185), - [aux_sym_visual_host_key_token1] = ACTIONS(3185), - [aux_sym_xauth_location_token1] = ACTIONS(3185), + [ts_builtin_sym_end] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3150), + [aux_sym_match_token1] = ACTIONS(3148), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3148), + [aux_sym_address_family_token1] = ACTIONS(3148), + [aux_sym_batch_mode_token1] = ACTIONS(3148), + [aux_sym_bind_address_token1] = ACTIONS(3148), + [aux_sym_bind_interface_token1] = ACTIONS(3148), + [aux_sym_canonical_domains_token1] = ACTIONS(3148), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3148), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3148), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3148), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3148), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3148), + [aux_sym_certificate_file_token1] = ACTIONS(3148), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3148), + [aux_sym_check_host_ip_token1] = ACTIONS(3148), + [aux_sym_ciphers_token1] = ACTIONS(3148), + [aux_sym_cipher_token1] = ACTIONS(3150), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3148), + [aux_sym_compression_token1] = ACTIONS(3148), + [aux_sym_connection_attempts_token1] = ACTIONS(3148), + [aux_sym_connect_timeout_token1] = ACTIONS(3148), + [aux_sym_control_master_token1] = ACTIONS(3148), + [aux_sym_control_path_token1] = ACTIONS(3148), + [aux_sym_control_persist_token1] = ACTIONS(3148), + [aux_sym_dynamic_forward_token1] = ACTIONS(3148), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3148), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3148), + [aux_sym_escape_char_token1] = ACTIONS(3148), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3148), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3148), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3148), + [aux_sym_forward_agent_token1] = ACTIONS(3148), + [aux_sym_forward_x11_token1] = ACTIONS(3150), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3148), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3148), + [aux_sym_gateway_ports_token1] = ACTIONS(3148), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3148), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3148), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3148), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3148), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3148), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3148), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3148), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3148), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3148), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3148), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3148), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3148), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3148), + [aux_sym_host_key_alias_token1] = ACTIONS(3148), + [aux_sym_hostname_token1] = ACTIONS(3148), + [aux_sym_identities_only_token1] = ACTIONS(3148), + [aux_sym_identity_agent_token1] = ACTIONS(3148), + [aux_sym_identity_file_token1] = ACTIONS(3148), + [aux_sym_ignore_unknown_token1] = ACTIONS(3148), + [aux_sym_include_token1] = ACTIONS(3148), + [aux_sym_ip_qos_token1] = ACTIONS(3148), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3148), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3148), + [aux_sym_kex_algorithms_token1] = ACTIONS(3148), + [aux_sym_known_hosts_command_token1] = ACTIONS(3148), + [aux_sym_local_command_token1] = ACTIONS(3148), + [aux_sym_local_forward_token1] = ACTIONS(3148), + [aux_sym_log_level_token1] = ACTIONS(3148), + [aux_sym_log_verbose_token1] = ACTIONS(3148), + [aux_sym_macs_token1] = ACTIONS(3148), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3148), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3148), + [aux_sym_password_authentication_token1] = ACTIONS(3148), + [aux_sym_permit_local_command_token1] = ACTIONS(3148), + [aux_sym_permit_remote_open_token1] = ACTIONS(3148), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3148), + [aux_sym_port_token1] = ACTIONS(3148), + [aux_sym_preferred_authentications_token1] = ACTIONS(3148), + [aux_sym_protocol_token1] = ACTIONS(3148), + [aux_sym_proxy_command_token1] = ACTIONS(3148), + [aux_sym_proxy_jump_token1] = ACTIONS(3148), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3148), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3148), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3148), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3148), + [aux_sym_rekey_limit_token1] = ACTIONS(3148), + [aux_sym_remote_command_token1] = ACTIONS(3148), + [aux_sym_remote_forward_token1] = ACTIONS(3148), + [aux_sym_request_tty_token1] = ACTIONS(3148), + [aux_sym_required_rsa_size_token1] = ACTIONS(3148), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3148), + [aux_sym_security_key_provider_token1] = ACTIONS(3148), + [aux_sym_send_env_token1] = ACTIONS(3148), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3148), + [aux_sym_server_alive_interval_token1] = ACTIONS(3148), + [aux_sym_session_type_token1] = ACTIONS(3148), + [aux_sym_set_env_token1] = ACTIONS(3148), + [aux_sym_stdin_null_token1] = ACTIONS(3148), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3148), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3148), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3148), + [aux_sym_syslog_facility_token1] = ACTIONS(3148), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3148), + [aux_sym_keep_alive_token1] = ACTIONS(3148), + [aux_sym_tunnel_token1] = ACTIONS(3150), + [aux_sym_tunnel_device_token1] = ACTIONS(3148), + [aux_sym_update_host_keys_token1] = ACTIONS(3148), + [aux_sym_use_keychain_token1] = ACTIONS(3148), + [aux_sym_use_roaming_token1] = ACTIONS(3148), + [aux_sym_user_token1] = ACTIONS(3150), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3148), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3148), + [aux_sym_visual_host_key_token1] = ACTIONS(3148), + [aux_sym_xauth_location_token1] = ACTIONS(3148), }, [502] = { - [ts_builtin_sym_end] = ACTIONS(3189), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3191), - [aux_sym_match_token1] = ACTIONS(3189), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3189), - [aux_sym_address_family_token1] = ACTIONS(3189), - [aux_sym_batch_mode_token1] = ACTIONS(3189), - [aux_sym_bind_address_token1] = ACTIONS(3189), - [aux_sym_bind_interface_token1] = ACTIONS(3189), - [aux_sym_canonical_domains_token1] = ACTIONS(3189), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3189), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3189), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3189), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3189), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3189), - [aux_sym_certificate_file_token1] = ACTIONS(3189), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3189), - [aux_sym_check_host_ip_token1] = ACTIONS(3189), - [aux_sym_ciphers_token1] = ACTIONS(3189), - [aux_sym_cipher_token1] = ACTIONS(3191), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3189), - [aux_sym_compression_token1] = ACTIONS(3189), - [aux_sym_connection_attempts_token1] = ACTIONS(3189), - [aux_sym_connect_timeout_token1] = ACTIONS(3189), - [aux_sym_control_master_token1] = ACTIONS(3189), - [aux_sym_control_path_token1] = ACTIONS(3189), - [aux_sym_control_persist_token1] = ACTIONS(3189), - [aux_sym_dynamic_forward_token1] = ACTIONS(3189), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3189), - [aux_sym_escape_char_token1] = ACTIONS(3189), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3189), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3189), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3189), - [aux_sym_forward_agent_token1] = ACTIONS(3189), - [aux_sym_forward_x11_token1] = ACTIONS(3191), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3189), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3189), - [aux_sym_gateway_ports_token1] = ACTIONS(3189), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3189), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3189), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3189), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3189), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3189), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3189), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3189), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3189), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3189), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3189), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3189), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3189), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3189), - [aux_sym_host_key_alias_token1] = ACTIONS(3189), - [aux_sym_hostname_token1] = ACTIONS(3189), - [aux_sym_identities_only_token1] = ACTIONS(3189), - [aux_sym_identity_agent_token1] = ACTIONS(3189), - [aux_sym_identity_file_token1] = ACTIONS(3189), - [aux_sym_ignore_unknown_token1] = ACTIONS(3189), - [aux_sym_include_token1] = ACTIONS(3189), - [aux_sym_ip_qos_token1] = ACTIONS(3189), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3189), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3189), - [aux_sym_kex_algorithms_token1] = ACTIONS(3189), - [aux_sym_known_hosts_command_token1] = ACTIONS(3189), - [aux_sym_local_command_token1] = ACTIONS(3189), - [aux_sym_local_forward_token1] = ACTIONS(3189), - [aux_sym_log_level_token1] = ACTIONS(3189), - [aux_sym_log_verbose_token1] = ACTIONS(3189), - [aux_sym_macs_token1] = ACTIONS(3189), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3189), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3189), - [aux_sym_password_authentication_token1] = ACTIONS(3189), - [aux_sym_permit_local_command_token1] = ACTIONS(3189), - [aux_sym_permit_remote_open_token1] = ACTIONS(3189), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3189), - [aux_sym_port_token1] = ACTIONS(3189), - [aux_sym_preferred_authentications_token1] = ACTIONS(3189), - [aux_sym_protocol_token1] = ACTIONS(3189), - [aux_sym_proxy_command_token1] = ACTIONS(3189), - [aux_sym_proxy_jump_token1] = ACTIONS(3189), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3189), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3189), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3189), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3189), - [aux_sym_rekey_limit_token1] = ACTIONS(3189), - [aux_sym_remote_command_token1] = ACTIONS(3189), - [aux_sym_remote_forward_token1] = ACTIONS(3189), - [aux_sym_request_tty_token1] = ACTIONS(3189), - [aux_sym_required_rsa_size_token1] = ACTIONS(3189), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3189), - [aux_sym_security_key_provider_token1] = ACTIONS(3189), - [aux_sym_send_env_token1] = ACTIONS(3189), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3189), - [aux_sym_server_alive_interval_token1] = ACTIONS(3189), - [aux_sym_session_type_token1] = ACTIONS(3189), - [aux_sym_set_env_token1] = ACTIONS(3189), - [aux_sym_stdin_null_token1] = ACTIONS(3189), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3189), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3189), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3189), - [aux_sym_syslog_facility_token1] = ACTIONS(3189), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3189), - [aux_sym_keep_alive_token1] = ACTIONS(3189), - [aux_sym_tunnel_token1] = ACTIONS(3191), - [aux_sym_tunnel_device_token1] = ACTIONS(3189), - [aux_sym_update_host_keys_token1] = ACTIONS(3189), - [aux_sym_use_keychain_token1] = ACTIONS(3189), - [aux_sym_use_roaming_token1] = ACTIONS(3189), - [aux_sym_user_token1] = ACTIONS(3191), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3189), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3189), - [aux_sym_visual_host_key_token1] = ACTIONS(3189), - [aux_sym_xauth_location_token1] = ACTIONS(3189), + [ts_builtin_sym_end] = ACTIONS(3152), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3154), + [aux_sym_match_token1] = ACTIONS(3152), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3152), + [aux_sym_address_family_token1] = ACTIONS(3152), + [aux_sym_batch_mode_token1] = ACTIONS(3152), + [aux_sym_bind_address_token1] = ACTIONS(3152), + [aux_sym_bind_interface_token1] = ACTIONS(3152), + [aux_sym_canonical_domains_token1] = ACTIONS(3152), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3152), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3152), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3152), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3152), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3152), + [aux_sym_certificate_file_token1] = ACTIONS(3152), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3152), + [aux_sym_check_host_ip_token1] = ACTIONS(3152), + [aux_sym_ciphers_token1] = ACTIONS(3152), + [aux_sym_cipher_token1] = ACTIONS(3154), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3152), + [aux_sym_compression_token1] = ACTIONS(3152), + [aux_sym_connection_attempts_token1] = ACTIONS(3152), + [aux_sym_connect_timeout_token1] = ACTIONS(3152), + [aux_sym_control_master_token1] = ACTIONS(3152), + [aux_sym_control_path_token1] = ACTIONS(3152), + [aux_sym_control_persist_token1] = ACTIONS(3152), + [aux_sym_dynamic_forward_token1] = ACTIONS(3152), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3152), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3152), + [aux_sym_escape_char_token1] = ACTIONS(3152), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3152), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3152), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3152), + [aux_sym_forward_agent_token1] = ACTIONS(3152), + [aux_sym_forward_x11_token1] = ACTIONS(3154), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3152), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3152), + [aux_sym_gateway_ports_token1] = ACTIONS(3152), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3152), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3152), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3152), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3152), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3152), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3152), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3152), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3152), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3152), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3152), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3152), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3152), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3152), + [aux_sym_host_key_alias_token1] = ACTIONS(3152), + [aux_sym_hostname_token1] = ACTIONS(3152), + [aux_sym_identities_only_token1] = ACTIONS(3152), + [aux_sym_identity_agent_token1] = ACTIONS(3152), + [aux_sym_identity_file_token1] = ACTIONS(3152), + [aux_sym_ignore_unknown_token1] = ACTIONS(3152), + [aux_sym_include_token1] = ACTIONS(3152), + [aux_sym_ip_qos_token1] = ACTIONS(3152), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3152), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3152), + [aux_sym_kex_algorithms_token1] = ACTIONS(3152), + [aux_sym_known_hosts_command_token1] = ACTIONS(3152), + [aux_sym_local_command_token1] = ACTIONS(3152), + [aux_sym_local_forward_token1] = ACTIONS(3152), + [aux_sym_log_level_token1] = ACTIONS(3152), + [aux_sym_log_verbose_token1] = ACTIONS(3152), + [aux_sym_macs_token1] = ACTIONS(3152), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3152), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3152), + [aux_sym_password_authentication_token1] = ACTIONS(3152), + [aux_sym_permit_local_command_token1] = ACTIONS(3152), + [aux_sym_permit_remote_open_token1] = ACTIONS(3152), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3152), + [aux_sym_port_token1] = ACTIONS(3152), + [aux_sym_preferred_authentications_token1] = ACTIONS(3152), + [aux_sym_protocol_token1] = ACTIONS(3152), + [aux_sym_proxy_command_token1] = ACTIONS(3152), + [aux_sym_proxy_jump_token1] = ACTIONS(3152), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3152), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3152), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3152), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3152), + [aux_sym_rekey_limit_token1] = ACTIONS(3152), + [aux_sym_remote_command_token1] = ACTIONS(3152), + [aux_sym_remote_forward_token1] = ACTIONS(3152), + [aux_sym_request_tty_token1] = ACTIONS(3152), + [aux_sym_required_rsa_size_token1] = ACTIONS(3152), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3152), + [aux_sym_security_key_provider_token1] = ACTIONS(3152), + [aux_sym_send_env_token1] = ACTIONS(3152), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3152), + [aux_sym_server_alive_interval_token1] = ACTIONS(3152), + [aux_sym_session_type_token1] = ACTIONS(3152), + [aux_sym_set_env_token1] = ACTIONS(3152), + [aux_sym_stdin_null_token1] = ACTIONS(3152), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3152), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3152), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3152), + [aux_sym_syslog_facility_token1] = ACTIONS(3152), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3152), + [aux_sym_keep_alive_token1] = ACTIONS(3152), + [aux_sym_tunnel_token1] = ACTIONS(3154), + [aux_sym_tunnel_device_token1] = ACTIONS(3152), + [aux_sym_update_host_keys_token1] = ACTIONS(3152), + [aux_sym_use_keychain_token1] = ACTIONS(3152), + [aux_sym_use_roaming_token1] = ACTIONS(3152), + [aux_sym_user_token1] = ACTIONS(3154), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3152), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3152), + [aux_sym_visual_host_key_token1] = ACTIONS(3152), + [aux_sym_xauth_location_token1] = ACTIONS(3152), }, [503] = { - [ts_builtin_sym_end] = ACTIONS(3193), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3195), - [aux_sym_match_token1] = ACTIONS(3193), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3193), - [aux_sym_address_family_token1] = ACTIONS(3193), - [aux_sym_batch_mode_token1] = ACTIONS(3193), - [aux_sym_bind_address_token1] = ACTIONS(3193), - [aux_sym_bind_interface_token1] = ACTIONS(3193), - [aux_sym_canonical_domains_token1] = ACTIONS(3193), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3193), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3193), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3193), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3193), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3193), - [aux_sym_certificate_file_token1] = ACTIONS(3193), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3193), - [aux_sym_check_host_ip_token1] = ACTIONS(3193), - [aux_sym_ciphers_token1] = ACTIONS(3193), - [aux_sym_cipher_token1] = ACTIONS(3195), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3193), - [aux_sym_compression_token1] = ACTIONS(3193), - [aux_sym_connection_attempts_token1] = ACTIONS(3193), - [aux_sym_connect_timeout_token1] = ACTIONS(3193), - [aux_sym_control_master_token1] = ACTIONS(3193), - [aux_sym_control_path_token1] = ACTIONS(3193), - [aux_sym_control_persist_token1] = ACTIONS(3193), - [aux_sym_dynamic_forward_token1] = ACTIONS(3193), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3193), - [aux_sym_escape_char_token1] = ACTIONS(3193), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3193), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3193), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3193), - [aux_sym_forward_agent_token1] = ACTIONS(3193), - [aux_sym_forward_x11_token1] = ACTIONS(3195), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3193), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3193), - [aux_sym_gateway_ports_token1] = ACTIONS(3193), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3193), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3193), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3193), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3193), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3193), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3193), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3193), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3193), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3193), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3193), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3193), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3193), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3193), - [aux_sym_host_key_alias_token1] = ACTIONS(3193), - [aux_sym_hostname_token1] = ACTIONS(3193), - [aux_sym_identities_only_token1] = ACTIONS(3193), - [aux_sym_identity_agent_token1] = ACTIONS(3193), - [aux_sym_identity_file_token1] = ACTIONS(3193), - [aux_sym_ignore_unknown_token1] = ACTIONS(3193), - [aux_sym_include_token1] = ACTIONS(3193), - [aux_sym_ip_qos_token1] = ACTIONS(3193), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3193), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3193), - [aux_sym_kex_algorithms_token1] = ACTIONS(3193), - [aux_sym_known_hosts_command_token1] = ACTIONS(3193), - [aux_sym_local_command_token1] = ACTIONS(3193), - [aux_sym_local_forward_token1] = ACTIONS(3193), - [aux_sym_log_level_token1] = ACTIONS(3193), - [aux_sym_log_verbose_token1] = ACTIONS(3193), - [aux_sym_macs_token1] = ACTIONS(3193), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3193), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3193), - [aux_sym_password_authentication_token1] = ACTIONS(3193), - [aux_sym_permit_local_command_token1] = ACTIONS(3193), - [aux_sym_permit_remote_open_token1] = ACTIONS(3193), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3193), - [aux_sym_port_token1] = ACTIONS(3193), - [aux_sym_preferred_authentications_token1] = ACTIONS(3193), - [aux_sym_protocol_token1] = ACTIONS(3193), - [aux_sym_proxy_command_token1] = ACTIONS(3193), - [aux_sym_proxy_jump_token1] = ACTIONS(3193), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3193), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3193), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3193), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3193), - [aux_sym_rekey_limit_token1] = ACTIONS(3193), - [aux_sym_remote_command_token1] = ACTIONS(3193), - [aux_sym_remote_forward_token1] = ACTIONS(3193), - [aux_sym_request_tty_token1] = ACTIONS(3193), - [aux_sym_required_rsa_size_token1] = ACTIONS(3193), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3193), - [aux_sym_security_key_provider_token1] = ACTIONS(3193), - [aux_sym_send_env_token1] = ACTIONS(3193), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3193), - [aux_sym_server_alive_interval_token1] = ACTIONS(3193), - [aux_sym_session_type_token1] = ACTIONS(3193), - [aux_sym_set_env_token1] = ACTIONS(3193), - [aux_sym_stdin_null_token1] = ACTIONS(3193), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3193), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3193), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3193), - [aux_sym_syslog_facility_token1] = ACTIONS(3193), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3193), - [aux_sym_keep_alive_token1] = ACTIONS(3193), - [aux_sym_tunnel_token1] = ACTIONS(3195), - [aux_sym_tunnel_device_token1] = ACTIONS(3193), - [aux_sym_update_host_keys_token1] = ACTIONS(3193), - [aux_sym_use_keychain_token1] = ACTIONS(3193), - [aux_sym_use_roaming_token1] = ACTIONS(3193), - [aux_sym_user_token1] = ACTIONS(3195), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3193), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3193), - [aux_sym_visual_host_key_token1] = ACTIONS(3193), - [aux_sym_xauth_location_token1] = ACTIONS(3193), + [ts_builtin_sym_end] = ACTIONS(3156), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3158), + [aux_sym_match_token1] = ACTIONS(3156), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3156), + [aux_sym_address_family_token1] = ACTIONS(3156), + [aux_sym_batch_mode_token1] = ACTIONS(3156), + [aux_sym_bind_address_token1] = ACTIONS(3156), + [aux_sym_bind_interface_token1] = ACTIONS(3156), + [aux_sym_canonical_domains_token1] = ACTIONS(3156), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3156), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3156), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3156), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3156), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3156), + [aux_sym_certificate_file_token1] = ACTIONS(3156), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3156), + [aux_sym_check_host_ip_token1] = ACTIONS(3156), + [aux_sym_ciphers_token1] = ACTIONS(3156), + [aux_sym_cipher_token1] = ACTIONS(3158), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3156), + [aux_sym_compression_token1] = ACTIONS(3156), + [aux_sym_connection_attempts_token1] = ACTIONS(3156), + [aux_sym_connect_timeout_token1] = ACTIONS(3156), + [aux_sym_control_master_token1] = ACTIONS(3156), + [aux_sym_control_path_token1] = ACTIONS(3156), + [aux_sym_control_persist_token1] = ACTIONS(3156), + [aux_sym_dynamic_forward_token1] = ACTIONS(3156), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3156), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3156), + [aux_sym_escape_char_token1] = ACTIONS(3156), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3156), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3156), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3156), + [aux_sym_forward_agent_token1] = ACTIONS(3156), + [aux_sym_forward_x11_token1] = ACTIONS(3158), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3156), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3156), + [aux_sym_gateway_ports_token1] = ACTIONS(3156), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3156), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3156), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3156), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3156), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3156), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3156), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3156), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3156), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3156), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3156), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3156), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3156), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3156), + [aux_sym_host_key_alias_token1] = ACTIONS(3156), + [aux_sym_hostname_token1] = ACTIONS(3156), + [aux_sym_identities_only_token1] = ACTIONS(3156), + [aux_sym_identity_agent_token1] = ACTIONS(3156), + [aux_sym_identity_file_token1] = ACTIONS(3156), + [aux_sym_ignore_unknown_token1] = ACTIONS(3156), + [aux_sym_include_token1] = ACTIONS(3156), + [aux_sym_ip_qos_token1] = ACTIONS(3156), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3156), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3156), + [aux_sym_kex_algorithms_token1] = ACTIONS(3156), + [aux_sym_known_hosts_command_token1] = ACTIONS(3156), + [aux_sym_local_command_token1] = ACTIONS(3156), + [aux_sym_local_forward_token1] = ACTIONS(3156), + [aux_sym_log_level_token1] = ACTIONS(3156), + [aux_sym_log_verbose_token1] = ACTIONS(3156), + [aux_sym_macs_token1] = ACTIONS(3156), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3156), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3156), + [aux_sym_password_authentication_token1] = ACTIONS(3156), + [aux_sym_permit_local_command_token1] = ACTIONS(3156), + [aux_sym_permit_remote_open_token1] = ACTIONS(3156), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3156), + [aux_sym_port_token1] = ACTIONS(3156), + [aux_sym_preferred_authentications_token1] = ACTIONS(3156), + [aux_sym_protocol_token1] = ACTIONS(3156), + [aux_sym_proxy_command_token1] = ACTIONS(3156), + [aux_sym_proxy_jump_token1] = ACTIONS(3156), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3156), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3156), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3156), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3156), + [aux_sym_rekey_limit_token1] = ACTIONS(3156), + [aux_sym_remote_command_token1] = ACTIONS(3156), + [aux_sym_remote_forward_token1] = ACTIONS(3156), + [aux_sym_request_tty_token1] = ACTIONS(3156), + [aux_sym_required_rsa_size_token1] = ACTIONS(3156), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3156), + [aux_sym_security_key_provider_token1] = ACTIONS(3156), + [aux_sym_send_env_token1] = ACTIONS(3156), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3156), + [aux_sym_server_alive_interval_token1] = ACTIONS(3156), + [aux_sym_session_type_token1] = ACTIONS(3156), + [aux_sym_set_env_token1] = ACTIONS(3156), + [aux_sym_stdin_null_token1] = ACTIONS(3156), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3156), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3156), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3156), + [aux_sym_syslog_facility_token1] = ACTIONS(3156), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3156), + [aux_sym_keep_alive_token1] = ACTIONS(3156), + [aux_sym_tunnel_token1] = ACTIONS(3158), + [aux_sym_tunnel_device_token1] = ACTIONS(3156), + [aux_sym_update_host_keys_token1] = ACTIONS(3156), + [aux_sym_use_keychain_token1] = ACTIONS(3156), + [aux_sym_use_roaming_token1] = ACTIONS(3156), + [aux_sym_user_token1] = ACTIONS(3158), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3156), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3156), + [aux_sym_visual_host_key_token1] = ACTIONS(3156), + [aux_sym_xauth_location_token1] = ACTIONS(3156), }, [504] = { - [ts_builtin_sym_end] = ACTIONS(3197), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3199), - [aux_sym_match_token1] = ACTIONS(3197), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3197), - [aux_sym_address_family_token1] = ACTIONS(3197), - [aux_sym_batch_mode_token1] = ACTIONS(3197), - [aux_sym_bind_address_token1] = ACTIONS(3197), - [aux_sym_bind_interface_token1] = ACTIONS(3197), - [aux_sym_canonical_domains_token1] = ACTIONS(3197), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3197), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3197), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3197), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3197), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3197), - [aux_sym_certificate_file_token1] = ACTIONS(3197), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3197), - [aux_sym_check_host_ip_token1] = ACTIONS(3197), - [aux_sym_ciphers_token1] = ACTIONS(3197), - [aux_sym_cipher_token1] = ACTIONS(3199), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3197), - [aux_sym_compression_token1] = ACTIONS(3197), - [aux_sym_connection_attempts_token1] = ACTIONS(3197), - [aux_sym_connect_timeout_token1] = ACTIONS(3197), - [aux_sym_control_master_token1] = ACTIONS(3197), - [aux_sym_control_path_token1] = ACTIONS(3197), - [aux_sym_control_persist_token1] = ACTIONS(3197), - [aux_sym_dynamic_forward_token1] = ACTIONS(3197), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3197), - [aux_sym_escape_char_token1] = ACTIONS(3197), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3197), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3197), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3197), - [aux_sym_forward_agent_token1] = ACTIONS(3197), - [aux_sym_forward_x11_token1] = ACTIONS(3199), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3197), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3197), - [aux_sym_gateway_ports_token1] = ACTIONS(3197), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3197), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3197), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3197), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3197), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3197), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3197), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3197), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3197), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3197), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3197), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3197), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3197), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3197), - [aux_sym_host_key_alias_token1] = ACTIONS(3197), - [aux_sym_hostname_token1] = ACTIONS(3197), - [aux_sym_identities_only_token1] = ACTIONS(3197), - [aux_sym_identity_agent_token1] = ACTIONS(3197), - [aux_sym_identity_file_token1] = ACTIONS(3197), - [aux_sym_ignore_unknown_token1] = ACTIONS(3197), - [aux_sym_include_token1] = ACTIONS(3197), - [aux_sym_ip_qos_token1] = ACTIONS(3197), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3197), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3197), - [aux_sym_kex_algorithms_token1] = ACTIONS(3197), - [aux_sym_known_hosts_command_token1] = ACTIONS(3197), - [aux_sym_local_command_token1] = ACTIONS(3197), - [aux_sym_local_forward_token1] = ACTIONS(3197), - [aux_sym_log_level_token1] = ACTIONS(3197), - [aux_sym_log_verbose_token1] = ACTIONS(3197), - [aux_sym_macs_token1] = ACTIONS(3197), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3197), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3197), - [aux_sym_password_authentication_token1] = ACTIONS(3197), - [aux_sym_permit_local_command_token1] = ACTIONS(3197), - [aux_sym_permit_remote_open_token1] = ACTIONS(3197), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3197), - [aux_sym_port_token1] = ACTIONS(3197), - [aux_sym_preferred_authentications_token1] = ACTIONS(3197), - [aux_sym_protocol_token1] = ACTIONS(3197), - [aux_sym_proxy_command_token1] = ACTIONS(3197), - [aux_sym_proxy_jump_token1] = ACTIONS(3197), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3197), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3197), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3197), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3197), - [aux_sym_rekey_limit_token1] = ACTIONS(3197), - [aux_sym_remote_command_token1] = ACTIONS(3197), - [aux_sym_remote_forward_token1] = ACTIONS(3197), - [aux_sym_request_tty_token1] = ACTIONS(3197), - [aux_sym_required_rsa_size_token1] = ACTIONS(3197), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3197), - [aux_sym_security_key_provider_token1] = ACTIONS(3197), - [aux_sym_send_env_token1] = ACTIONS(3197), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3197), - [aux_sym_server_alive_interval_token1] = ACTIONS(3197), - [aux_sym_session_type_token1] = ACTIONS(3197), - [aux_sym_set_env_token1] = ACTIONS(3197), - [aux_sym_stdin_null_token1] = ACTIONS(3197), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3197), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3197), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3197), - [aux_sym_syslog_facility_token1] = ACTIONS(3197), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3197), - [aux_sym_keep_alive_token1] = ACTIONS(3197), - [aux_sym_tunnel_token1] = ACTIONS(3199), - [aux_sym_tunnel_device_token1] = ACTIONS(3197), - [aux_sym_update_host_keys_token1] = ACTIONS(3197), - [aux_sym_use_keychain_token1] = ACTIONS(3197), - [aux_sym_use_roaming_token1] = ACTIONS(3197), - [aux_sym_user_token1] = ACTIONS(3199), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3197), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3197), - [aux_sym_visual_host_key_token1] = ACTIONS(3197), - [aux_sym_xauth_location_token1] = ACTIONS(3197), + [ts_builtin_sym_end] = ACTIONS(1028), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1030), + [aux_sym_match_token1] = ACTIONS(1028), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1028), + [aux_sym_address_family_token1] = ACTIONS(1028), + [aux_sym_batch_mode_token1] = ACTIONS(1028), + [aux_sym_bind_address_token1] = ACTIONS(1028), + [aux_sym_bind_interface_token1] = ACTIONS(1028), + [aux_sym_canonical_domains_token1] = ACTIONS(1028), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1028), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1028), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1028), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1028), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1028), + [aux_sym_certificate_file_token1] = ACTIONS(1028), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1028), + [aux_sym_check_host_ip_token1] = ACTIONS(1028), + [aux_sym_ciphers_token1] = ACTIONS(1028), + [aux_sym_cipher_token1] = ACTIONS(1030), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1028), + [aux_sym_compression_token1] = ACTIONS(1028), + [aux_sym_connection_attempts_token1] = ACTIONS(1028), + [aux_sym_connect_timeout_token1] = ACTIONS(1028), + [aux_sym_control_master_token1] = ACTIONS(1028), + [aux_sym_control_path_token1] = ACTIONS(1028), + [aux_sym_control_persist_token1] = ACTIONS(1028), + [aux_sym_dynamic_forward_token1] = ACTIONS(1028), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1028), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1028), + [aux_sym_escape_char_token1] = ACTIONS(1028), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1028), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1028), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1028), + [aux_sym_forward_agent_token1] = ACTIONS(1028), + [aux_sym_forward_x11_token1] = ACTIONS(1030), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1028), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1028), + [aux_sym_gateway_ports_token1] = ACTIONS(1028), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1028), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1028), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1028), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1028), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1028), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1028), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1028), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1028), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1028), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1028), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1028), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1028), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1028), + [aux_sym_host_key_alias_token1] = ACTIONS(1028), + [aux_sym_hostname_token1] = ACTIONS(1028), + [aux_sym_identities_only_token1] = ACTIONS(1028), + [aux_sym_identity_agent_token1] = ACTIONS(1028), + [aux_sym_identity_file_token1] = ACTIONS(1028), + [aux_sym_ignore_unknown_token1] = ACTIONS(1028), + [aux_sym_include_token1] = ACTIONS(1028), + [aux_sym_ip_qos_token1] = ACTIONS(1028), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1028), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1028), + [aux_sym_kex_algorithms_token1] = ACTIONS(1028), + [aux_sym_known_hosts_command_token1] = ACTIONS(1028), + [aux_sym_local_command_token1] = ACTIONS(1028), + [aux_sym_local_forward_token1] = ACTIONS(1028), + [aux_sym_log_level_token1] = ACTIONS(1028), + [aux_sym_log_verbose_token1] = ACTIONS(1028), + [aux_sym_macs_token1] = ACTIONS(1028), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1028), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1028), + [aux_sym_password_authentication_token1] = ACTIONS(1028), + [aux_sym_permit_local_command_token1] = ACTIONS(1028), + [aux_sym_permit_remote_open_token1] = ACTIONS(1028), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1028), + [aux_sym_port_token1] = ACTIONS(1028), + [aux_sym_preferred_authentications_token1] = ACTIONS(1028), + [aux_sym_protocol_token1] = ACTIONS(1028), + [aux_sym_proxy_command_token1] = ACTIONS(1028), + [aux_sym_proxy_jump_token1] = ACTIONS(1028), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1028), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1028), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1028), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1028), + [aux_sym_rekey_limit_token1] = ACTIONS(1028), + [aux_sym_remote_command_token1] = ACTIONS(1028), + [aux_sym_remote_forward_token1] = ACTIONS(1028), + [aux_sym_request_tty_token1] = ACTIONS(1028), + [aux_sym_required_rsa_size_token1] = ACTIONS(1028), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1028), + [aux_sym_security_key_provider_token1] = ACTIONS(1028), + [aux_sym_send_env_token1] = ACTIONS(1028), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1028), + [aux_sym_server_alive_interval_token1] = ACTIONS(1028), + [aux_sym_session_type_token1] = ACTIONS(1028), + [aux_sym_set_env_token1] = ACTIONS(1028), + [aux_sym_stdin_null_token1] = ACTIONS(1028), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1028), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1028), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1028), + [aux_sym_syslog_facility_token1] = ACTIONS(1028), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1028), + [aux_sym_keep_alive_token1] = ACTIONS(1028), + [aux_sym_tunnel_token1] = ACTIONS(1030), + [aux_sym_tunnel_device_token1] = ACTIONS(1028), + [aux_sym_update_host_keys_token1] = ACTIONS(1028), + [aux_sym_use_keychain_token1] = ACTIONS(1028), + [aux_sym_use_roaming_token1] = ACTIONS(1028), + [aux_sym_user_token1] = ACTIONS(1030), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1028), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1028), + [aux_sym_visual_host_key_token1] = ACTIONS(1028), + [aux_sym_xauth_location_token1] = ACTIONS(1028), }, [505] = { - [ts_builtin_sym_end] = ACTIONS(3201), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3203), - [aux_sym_match_token1] = ACTIONS(3201), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3201), - [aux_sym_address_family_token1] = ACTIONS(3201), - [aux_sym_batch_mode_token1] = ACTIONS(3201), - [aux_sym_bind_address_token1] = ACTIONS(3201), - [aux_sym_bind_interface_token1] = ACTIONS(3201), - [aux_sym_canonical_domains_token1] = ACTIONS(3201), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3201), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3201), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3201), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3201), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3201), - [aux_sym_certificate_file_token1] = ACTIONS(3201), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3201), - [aux_sym_check_host_ip_token1] = ACTIONS(3201), - [aux_sym_ciphers_token1] = ACTIONS(3201), - [aux_sym_cipher_token1] = ACTIONS(3203), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3201), - [aux_sym_compression_token1] = ACTIONS(3201), - [aux_sym_connection_attempts_token1] = ACTIONS(3201), - [aux_sym_connect_timeout_token1] = ACTIONS(3201), - [aux_sym_control_master_token1] = ACTIONS(3201), - [aux_sym_control_path_token1] = ACTIONS(3201), - [aux_sym_control_persist_token1] = ACTIONS(3201), - [aux_sym_dynamic_forward_token1] = ACTIONS(3201), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3201), - [aux_sym_escape_char_token1] = ACTIONS(3201), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3201), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3201), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3201), - [aux_sym_forward_agent_token1] = ACTIONS(3201), - [aux_sym_forward_x11_token1] = ACTIONS(3203), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3201), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3201), - [aux_sym_gateway_ports_token1] = ACTIONS(3201), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3201), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3201), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3201), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3201), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3201), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3201), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3201), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3201), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3201), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3201), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3201), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3201), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3201), - [aux_sym_host_key_alias_token1] = ACTIONS(3201), - [aux_sym_hostname_token1] = ACTIONS(3201), - [aux_sym_identities_only_token1] = ACTIONS(3201), - [aux_sym_identity_agent_token1] = ACTIONS(3201), - [aux_sym_identity_file_token1] = ACTIONS(3201), - [aux_sym_ignore_unknown_token1] = ACTIONS(3201), - [aux_sym_include_token1] = ACTIONS(3201), - [aux_sym_ip_qos_token1] = ACTIONS(3201), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3201), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3201), - [aux_sym_kex_algorithms_token1] = ACTIONS(3201), - [aux_sym_known_hosts_command_token1] = ACTIONS(3201), - [aux_sym_local_command_token1] = ACTIONS(3201), - [aux_sym_local_forward_token1] = ACTIONS(3201), - [aux_sym_log_level_token1] = ACTIONS(3201), - [aux_sym_log_verbose_token1] = ACTIONS(3201), - [aux_sym_macs_token1] = ACTIONS(3201), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3201), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3201), - [aux_sym_password_authentication_token1] = ACTIONS(3201), - [aux_sym_permit_local_command_token1] = ACTIONS(3201), - [aux_sym_permit_remote_open_token1] = ACTIONS(3201), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3201), - [aux_sym_port_token1] = ACTIONS(3201), - [aux_sym_preferred_authentications_token1] = ACTIONS(3201), - [aux_sym_protocol_token1] = ACTIONS(3201), - [aux_sym_proxy_command_token1] = ACTIONS(3201), - [aux_sym_proxy_jump_token1] = ACTIONS(3201), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3201), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3201), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3201), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3201), - [aux_sym_rekey_limit_token1] = ACTIONS(3201), - [aux_sym_remote_command_token1] = ACTIONS(3201), - [aux_sym_remote_forward_token1] = ACTIONS(3201), - [aux_sym_request_tty_token1] = ACTIONS(3201), - [aux_sym_required_rsa_size_token1] = ACTIONS(3201), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3201), - [aux_sym_security_key_provider_token1] = ACTIONS(3201), - [aux_sym_send_env_token1] = ACTIONS(3201), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3201), - [aux_sym_server_alive_interval_token1] = ACTIONS(3201), - [aux_sym_session_type_token1] = ACTIONS(3201), - [aux_sym_set_env_token1] = ACTIONS(3201), - [aux_sym_stdin_null_token1] = ACTIONS(3201), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3201), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3201), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3201), - [aux_sym_syslog_facility_token1] = ACTIONS(3201), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3201), - [aux_sym_keep_alive_token1] = ACTIONS(3201), - [aux_sym_tunnel_token1] = ACTIONS(3203), - [aux_sym_tunnel_device_token1] = ACTIONS(3201), - [aux_sym_update_host_keys_token1] = ACTIONS(3201), - [aux_sym_use_keychain_token1] = ACTIONS(3201), - [aux_sym_use_roaming_token1] = ACTIONS(3201), - [aux_sym_user_token1] = ACTIONS(3203), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3201), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3201), - [aux_sym_visual_host_key_token1] = ACTIONS(3201), - [aux_sym_xauth_location_token1] = ACTIONS(3201), + [ts_builtin_sym_end] = ACTIONS(1178), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1180), + [aux_sym_match_token1] = ACTIONS(1178), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1178), + [aux_sym_address_family_token1] = ACTIONS(1178), + [aux_sym_batch_mode_token1] = ACTIONS(1178), + [aux_sym_bind_address_token1] = ACTIONS(1178), + [aux_sym_bind_interface_token1] = ACTIONS(1178), + [aux_sym_canonical_domains_token1] = ACTIONS(1178), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1178), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1178), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1178), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1178), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1178), + [aux_sym_certificate_file_token1] = ACTIONS(1178), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1178), + [aux_sym_check_host_ip_token1] = ACTIONS(1178), + [aux_sym_ciphers_token1] = ACTIONS(1178), + [aux_sym_cipher_token1] = ACTIONS(1180), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1178), + [aux_sym_compression_token1] = ACTIONS(1178), + [aux_sym_connection_attempts_token1] = ACTIONS(1178), + [aux_sym_connect_timeout_token1] = ACTIONS(1178), + [aux_sym_control_master_token1] = ACTIONS(1178), + [aux_sym_control_path_token1] = ACTIONS(1178), + [aux_sym_control_persist_token1] = ACTIONS(1178), + [aux_sym_dynamic_forward_token1] = ACTIONS(1178), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1178), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1178), + [aux_sym_escape_char_token1] = ACTIONS(1178), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1178), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1178), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1178), + [aux_sym_forward_agent_token1] = ACTIONS(1178), + [aux_sym_forward_x11_token1] = ACTIONS(1180), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1178), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1178), + [aux_sym_gateway_ports_token1] = ACTIONS(1178), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1178), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1178), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1178), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1178), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1178), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1178), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1178), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1178), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1178), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1178), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1178), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1178), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1178), + [aux_sym_host_key_alias_token1] = ACTIONS(1178), + [aux_sym_hostname_token1] = ACTIONS(1178), + [aux_sym_identities_only_token1] = ACTIONS(1178), + [aux_sym_identity_agent_token1] = ACTIONS(1178), + [aux_sym_identity_file_token1] = ACTIONS(1178), + [aux_sym_ignore_unknown_token1] = ACTIONS(1178), + [aux_sym_include_token1] = ACTIONS(1178), + [aux_sym_ip_qos_token1] = ACTIONS(1178), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1178), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1178), + [aux_sym_kex_algorithms_token1] = ACTIONS(1178), + [aux_sym_known_hosts_command_token1] = ACTIONS(1178), + [aux_sym_local_command_token1] = ACTIONS(1178), + [aux_sym_local_forward_token1] = ACTIONS(1178), + [aux_sym_log_level_token1] = ACTIONS(1178), + [aux_sym_log_verbose_token1] = ACTIONS(1178), + [aux_sym_macs_token1] = ACTIONS(1178), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1178), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1178), + [aux_sym_password_authentication_token1] = ACTIONS(1178), + [aux_sym_permit_local_command_token1] = ACTIONS(1178), + [aux_sym_permit_remote_open_token1] = ACTIONS(1178), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1178), + [aux_sym_port_token1] = ACTIONS(1178), + [aux_sym_preferred_authentications_token1] = ACTIONS(1178), + [aux_sym_protocol_token1] = ACTIONS(1178), + [aux_sym_proxy_command_token1] = ACTIONS(1178), + [aux_sym_proxy_jump_token1] = ACTIONS(1178), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1178), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1178), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1178), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1178), + [aux_sym_rekey_limit_token1] = ACTIONS(1178), + [aux_sym_remote_command_token1] = ACTIONS(1178), + [aux_sym_remote_forward_token1] = ACTIONS(1178), + [aux_sym_request_tty_token1] = ACTIONS(1178), + [aux_sym_required_rsa_size_token1] = ACTIONS(1178), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1178), + [aux_sym_security_key_provider_token1] = ACTIONS(1178), + [aux_sym_send_env_token1] = ACTIONS(1178), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1178), + [aux_sym_server_alive_interval_token1] = ACTIONS(1178), + [aux_sym_session_type_token1] = ACTIONS(1178), + [aux_sym_set_env_token1] = ACTIONS(1178), + [aux_sym_stdin_null_token1] = ACTIONS(1178), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1178), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1178), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1178), + [aux_sym_syslog_facility_token1] = ACTIONS(1178), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1178), + [aux_sym_keep_alive_token1] = ACTIONS(1178), + [aux_sym_tunnel_token1] = ACTIONS(1180), + [aux_sym_tunnel_device_token1] = ACTIONS(1178), + [aux_sym_update_host_keys_token1] = ACTIONS(1178), + [aux_sym_use_keychain_token1] = ACTIONS(1178), + [aux_sym_use_roaming_token1] = ACTIONS(1178), + [aux_sym_user_token1] = ACTIONS(1180), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1178), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1178), + [aux_sym_visual_host_key_token1] = ACTIONS(1178), + [aux_sym_xauth_location_token1] = ACTIONS(1178), }, [506] = { - [ts_builtin_sym_end] = ACTIONS(3205), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3207), - [aux_sym_match_token1] = ACTIONS(3205), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3205), - [aux_sym_address_family_token1] = ACTIONS(3205), - [aux_sym_batch_mode_token1] = ACTIONS(3205), - [aux_sym_bind_address_token1] = ACTIONS(3205), - [aux_sym_bind_interface_token1] = ACTIONS(3205), - [aux_sym_canonical_domains_token1] = ACTIONS(3205), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3205), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3205), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3205), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3205), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3205), - [aux_sym_certificate_file_token1] = ACTIONS(3205), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3205), - [aux_sym_check_host_ip_token1] = ACTIONS(3205), - [aux_sym_ciphers_token1] = ACTIONS(3205), - [aux_sym_cipher_token1] = ACTIONS(3207), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3205), - [aux_sym_compression_token1] = ACTIONS(3205), - [aux_sym_connection_attempts_token1] = ACTIONS(3205), - [aux_sym_connect_timeout_token1] = ACTIONS(3205), - [aux_sym_control_master_token1] = ACTIONS(3205), - [aux_sym_control_path_token1] = ACTIONS(3205), - [aux_sym_control_persist_token1] = ACTIONS(3205), - [aux_sym_dynamic_forward_token1] = ACTIONS(3205), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3205), - [aux_sym_escape_char_token1] = ACTIONS(3205), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3205), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3205), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3205), - [aux_sym_forward_agent_token1] = ACTIONS(3205), - [aux_sym_forward_x11_token1] = ACTIONS(3207), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3205), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3205), - [aux_sym_gateway_ports_token1] = ACTIONS(3205), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3205), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3205), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3205), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3205), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3205), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3205), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3205), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3205), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3205), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3205), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3205), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3205), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3205), - [aux_sym_host_key_alias_token1] = ACTIONS(3205), - [aux_sym_hostname_token1] = ACTIONS(3205), - [aux_sym_identities_only_token1] = ACTIONS(3205), - [aux_sym_identity_agent_token1] = ACTIONS(3205), - [aux_sym_identity_file_token1] = ACTIONS(3205), - [aux_sym_ignore_unknown_token1] = ACTIONS(3205), - [aux_sym_include_token1] = ACTIONS(3205), - [aux_sym_ip_qos_token1] = ACTIONS(3205), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3205), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3205), - [aux_sym_kex_algorithms_token1] = ACTIONS(3205), - [aux_sym_known_hosts_command_token1] = ACTIONS(3205), - [aux_sym_local_command_token1] = ACTIONS(3205), - [aux_sym_local_forward_token1] = ACTIONS(3205), - [aux_sym_log_level_token1] = ACTIONS(3205), - [aux_sym_log_verbose_token1] = ACTIONS(3205), - [aux_sym_macs_token1] = ACTIONS(3205), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3205), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3205), - [aux_sym_password_authentication_token1] = ACTIONS(3205), - [aux_sym_permit_local_command_token1] = ACTIONS(3205), - [aux_sym_permit_remote_open_token1] = ACTIONS(3205), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3205), - [aux_sym_port_token1] = ACTIONS(3205), - [aux_sym_preferred_authentications_token1] = ACTIONS(3205), - [aux_sym_protocol_token1] = ACTIONS(3205), - [aux_sym_proxy_command_token1] = ACTIONS(3205), - [aux_sym_proxy_jump_token1] = ACTIONS(3205), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3205), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3205), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3205), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3205), - [aux_sym_rekey_limit_token1] = ACTIONS(3205), - [aux_sym_remote_command_token1] = ACTIONS(3205), - [aux_sym_remote_forward_token1] = ACTIONS(3205), - [aux_sym_request_tty_token1] = ACTIONS(3205), - [aux_sym_required_rsa_size_token1] = ACTIONS(3205), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3205), - [aux_sym_security_key_provider_token1] = ACTIONS(3205), - [aux_sym_send_env_token1] = ACTIONS(3205), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3205), - [aux_sym_server_alive_interval_token1] = ACTIONS(3205), - [aux_sym_session_type_token1] = ACTIONS(3205), - [aux_sym_set_env_token1] = ACTIONS(3205), - [aux_sym_stdin_null_token1] = ACTIONS(3205), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3205), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3205), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3205), - [aux_sym_syslog_facility_token1] = ACTIONS(3205), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3205), - [aux_sym_keep_alive_token1] = ACTIONS(3205), - [aux_sym_tunnel_token1] = ACTIONS(3207), - [aux_sym_tunnel_device_token1] = ACTIONS(3205), - [aux_sym_update_host_keys_token1] = ACTIONS(3205), - [aux_sym_use_keychain_token1] = ACTIONS(3205), - [aux_sym_use_roaming_token1] = ACTIONS(3205), - [aux_sym_user_token1] = ACTIONS(3207), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3205), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3205), - [aux_sym_visual_host_key_token1] = ACTIONS(3205), - [aux_sym_xauth_location_token1] = ACTIONS(3205), + [ts_builtin_sym_end] = ACTIONS(1094), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1096), + [aux_sym_match_token1] = ACTIONS(1094), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1094), + [aux_sym_address_family_token1] = ACTIONS(1094), + [aux_sym_batch_mode_token1] = ACTIONS(1094), + [aux_sym_bind_address_token1] = ACTIONS(1094), + [aux_sym_bind_interface_token1] = ACTIONS(1094), + [aux_sym_canonical_domains_token1] = ACTIONS(1094), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1094), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1094), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1094), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1094), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1094), + [aux_sym_certificate_file_token1] = ACTIONS(1094), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1094), + [aux_sym_check_host_ip_token1] = ACTIONS(1094), + [aux_sym_ciphers_token1] = ACTIONS(1094), + [aux_sym_cipher_token1] = ACTIONS(1096), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1094), + [aux_sym_compression_token1] = ACTIONS(1094), + [aux_sym_connection_attempts_token1] = ACTIONS(1094), + [aux_sym_connect_timeout_token1] = ACTIONS(1094), + [aux_sym_control_master_token1] = ACTIONS(1094), + [aux_sym_control_path_token1] = ACTIONS(1094), + [aux_sym_control_persist_token1] = ACTIONS(1094), + [aux_sym_dynamic_forward_token1] = ACTIONS(1094), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1094), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1094), + [aux_sym_escape_char_token1] = ACTIONS(1094), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1094), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1094), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1094), + [aux_sym_forward_agent_token1] = ACTIONS(1094), + [aux_sym_forward_x11_token1] = ACTIONS(1096), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1094), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1094), + [aux_sym_gateway_ports_token1] = ACTIONS(1094), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1094), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1094), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1094), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1094), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1094), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1094), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1094), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1094), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1094), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1094), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1094), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1094), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1094), + [aux_sym_host_key_alias_token1] = ACTIONS(1094), + [aux_sym_hostname_token1] = ACTIONS(1094), + [aux_sym_identities_only_token1] = ACTIONS(1094), + [aux_sym_identity_agent_token1] = ACTIONS(1094), + [aux_sym_identity_file_token1] = ACTIONS(1094), + [aux_sym_ignore_unknown_token1] = ACTIONS(1094), + [aux_sym_include_token1] = ACTIONS(1094), + [aux_sym_ip_qos_token1] = ACTIONS(1094), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1094), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1094), + [aux_sym_kex_algorithms_token1] = ACTIONS(1094), + [aux_sym_known_hosts_command_token1] = ACTIONS(1094), + [aux_sym_local_command_token1] = ACTIONS(1094), + [aux_sym_local_forward_token1] = ACTIONS(1094), + [aux_sym_log_level_token1] = ACTIONS(1094), + [aux_sym_log_verbose_token1] = ACTIONS(1094), + [aux_sym_macs_token1] = ACTIONS(1094), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1094), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1094), + [aux_sym_password_authentication_token1] = ACTIONS(1094), + [aux_sym_permit_local_command_token1] = ACTIONS(1094), + [aux_sym_permit_remote_open_token1] = ACTIONS(1094), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1094), + [aux_sym_port_token1] = ACTIONS(1094), + [aux_sym_preferred_authentications_token1] = ACTIONS(1094), + [aux_sym_protocol_token1] = ACTIONS(1094), + [aux_sym_proxy_command_token1] = ACTIONS(1094), + [aux_sym_proxy_jump_token1] = ACTIONS(1094), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1094), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1094), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1094), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1094), + [aux_sym_rekey_limit_token1] = ACTIONS(1094), + [aux_sym_remote_command_token1] = ACTIONS(1094), + [aux_sym_remote_forward_token1] = ACTIONS(1094), + [aux_sym_request_tty_token1] = ACTIONS(1094), + [aux_sym_required_rsa_size_token1] = ACTIONS(1094), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1094), + [aux_sym_security_key_provider_token1] = ACTIONS(1094), + [aux_sym_send_env_token1] = ACTIONS(1094), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1094), + [aux_sym_server_alive_interval_token1] = ACTIONS(1094), + [aux_sym_session_type_token1] = ACTIONS(1094), + [aux_sym_set_env_token1] = ACTIONS(1094), + [aux_sym_stdin_null_token1] = ACTIONS(1094), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1094), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1094), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1094), + [aux_sym_syslog_facility_token1] = ACTIONS(1094), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1094), + [aux_sym_keep_alive_token1] = ACTIONS(1094), + [aux_sym_tunnel_token1] = ACTIONS(1096), + [aux_sym_tunnel_device_token1] = ACTIONS(1094), + [aux_sym_update_host_keys_token1] = ACTIONS(1094), + [aux_sym_use_keychain_token1] = ACTIONS(1094), + [aux_sym_use_roaming_token1] = ACTIONS(1094), + [aux_sym_user_token1] = ACTIONS(1096), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1094), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1094), + [aux_sym_visual_host_key_token1] = ACTIONS(1094), + [aux_sym_xauth_location_token1] = ACTIONS(1094), }, [507] = { - [ts_builtin_sym_end] = ACTIONS(3209), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3211), - [aux_sym_match_token1] = ACTIONS(3209), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3209), - [aux_sym_address_family_token1] = ACTIONS(3209), - [aux_sym_batch_mode_token1] = ACTIONS(3209), - [aux_sym_bind_address_token1] = ACTIONS(3209), - [aux_sym_bind_interface_token1] = ACTIONS(3209), - [aux_sym_canonical_domains_token1] = ACTIONS(3209), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3209), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3209), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3209), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3209), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3209), - [aux_sym_certificate_file_token1] = ACTIONS(3209), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3209), - [aux_sym_check_host_ip_token1] = ACTIONS(3209), - [aux_sym_ciphers_token1] = ACTIONS(3209), - [aux_sym_cipher_token1] = ACTIONS(3211), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3209), - [aux_sym_compression_token1] = ACTIONS(3209), - [aux_sym_connection_attempts_token1] = ACTIONS(3209), - [aux_sym_connect_timeout_token1] = ACTIONS(3209), - [aux_sym_control_master_token1] = ACTIONS(3209), - [aux_sym_control_path_token1] = ACTIONS(3209), - [aux_sym_control_persist_token1] = ACTIONS(3209), - [aux_sym_dynamic_forward_token1] = ACTIONS(3209), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3209), - [aux_sym_escape_char_token1] = ACTIONS(3209), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3209), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3209), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3209), - [aux_sym_forward_agent_token1] = ACTIONS(3209), - [aux_sym_forward_x11_token1] = ACTIONS(3211), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3209), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3209), - [aux_sym_gateway_ports_token1] = ACTIONS(3209), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3209), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3209), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3209), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3209), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3209), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3209), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3209), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3209), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3209), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3209), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3209), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3209), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3209), - [aux_sym_host_key_alias_token1] = ACTIONS(3209), - [aux_sym_hostname_token1] = ACTIONS(3209), - [aux_sym_identities_only_token1] = ACTIONS(3209), - [aux_sym_identity_agent_token1] = ACTIONS(3209), - [aux_sym_identity_file_token1] = ACTIONS(3209), - [aux_sym_ignore_unknown_token1] = ACTIONS(3209), - [aux_sym_include_token1] = ACTIONS(3209), - [aux_sym_ip_qos_token1] = ACTIONS(3209), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3209), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3209), - [aux_sym_kex_algorithms_token1] = ACTIONS(3209), - [aux_sym_known_hosts_command_token1] = ACTIONS(3209), - [aux_sym_local_command_token1] = ACTIONS(3209), - [aux_sym_local_forward_token1] = ACTIONS(3209), - [aux_sym_log_level_token1] = ACTIONS(3209), - [aux_sym_log_verbose_token1] = ACTIONS(3209), - [aux_sym_macs_token1] = ACTIONS(3209), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3209), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3209), - [aux_sym_password_authentication_token1] = ACTIONS(3209), - [aux_sym_permit_local_command_token1] = ACTIONS(3209), - [aux_sym_permit_remote_open_token1] = ACTIONS(3209), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3209), - [aux_sym_port_token1] = ACTIONS(3209), - [aux_sym_preferred_authentications_token1] = ACTIONS(3209), - [aux_sym_protocol_token1] = ACTIONS(3209), - [aux_sym_proxy_command_token1] = ACTIONS(3209), - [aux_sym_proxy_jump_token1] = ACTIONS(3209), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3209), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3209), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3209), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3209), - [aux_sym_rekey_limit_token1] = ACTIONS(3209), - [aux_sym_remote_command_token1] = ACTIONS(3209), - [aux_sym_remote_forward_token1] = ACTIONS(3209), - [aux_sym_request_tty_token1] = ACTIONS(3209), - [aux_sym_required_rsa_size_token1] = ACTIONS(3209), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3209), - [aux_sym_security_key_provider_token1] = ACTIONS(3209), - [aux_sym_send_env_token1] = ACTIONS(3209), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3209), - [aux_sym_server_alive_interval_token1] = ACTIONS(3209), - [aux_sym_session_type_token1] = ACTIONS(3209), - [aux_sym_set_env_token1] = ACTIONS(3209), - [aux_sym_stdin_null_token1] = ACTIONS(3209), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3209), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3209), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3209), - [aux_sym_syslog_facility_token1] = ACTIONS(3209), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3209), - [aux_sym_keep_alive_token1] = ACTIONS(3209), - [aux_sym_tunnel_token1] = ACTIONS(3211), - [aux_sym_tunnel_device_token1] = ACTIONS(3209), - [aux_sym_update_host_keys_token1] = ACTIONS(3209), - [aux_sym_use_keychain_token1] = ACTIONS(3209), - [aux_sym_use_roaming_token1] = ACTIONS(3209), - [aux_sym_user_token1] = ACTIONS(3211), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3209), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3209), - [aux_sym_visual_host_key_token1] = ACTIONS(3209), - [aux_sym_xauth_location_token1] = ACTIONS(3209), + [ts_builtin_sym_end] = ACTIONS(1184), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1186), + [aux_sym_match_token1] = ACTIONS(1184), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1184), + [aux_sym_address_family_token1] = ACTIONS(1184), + [aux_sym_batch_mode_token1] = ACTIONS(1184), + [aux_sym_bind_address_token1] = ACTIONS(1184), + [aux_sym_bind_interface_token1] = ACTIONS(1184), + [aux_sym_canonical_domains_token1] = ACTIONS(1184), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1184), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1184), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1184), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1184), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1184), + [aux_sym_certificate_file_token1] = ACTIONS(1184), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1184), + [aux_sym_check_host_ip_token1] = ACTIONS(1184), + [aux_sym_ciphers_token1] = ACTIONS(1184), + [aux_sym_cipher_token1] = ACTIONS(1186), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1184), + [aux_sym_compression_token1] = ACTIONS(1184), + [aux_sym_connection_attempts_token1] = ACTIONS(1184), + [aux_sym_connect_timeout_token1] = ACTIONS(1184), + [aux_sym_control_master_token1] = ACTIONS(1184), + [aux_sym_control_path_token1] = ACTIONS(1184), + [aux_sym_control_persist_token1] = ACTIONS(1184), + [aux_sym_dynamic_forward_token1] = ACTIONS(1184), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1184), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1184), + [aux_sym_escape_char_token1] = ACTIONS(1184), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1184), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1184), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1184), + [aux_sym_forward_agent_token1] = ACTIONS(1184), + [aux_sym_forward_x11_token1] = ACTIONS(1186), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1184), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1184), + [aux_sym_gateway_ports_token1] = ACTIONS(1184), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1184), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1184), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1184), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1184), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1184), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1184), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1184), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1184), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1184), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1184), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1184), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1184), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1184), + [aux_sym_host_key_alias_token1] = ACTIONS(1184), + [aux_sym_hostname_token1] = ACTIONS(1184), + [aux_sym_identities_only_token1] = ACTIONS(1184), + [aux_sym_identity_agent_token1] = ACTIONS(1184), + [aux_sym_identity_file_token1] = ACTIONS(1184), + [aux_sym_ignore_unknown_token1] = ACTIONS(1184), + [aux_sym_include_token1] = ACTIONS(1184), + [aux_sym_ip_qos_token1] = ACTIONS(1184), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1184), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1184), + [aux_sym_kex_algorithms_token1] = ACTIONS(1184), + [aux_sym_known_hosts_command_token1] = ACTIONS(1184), + [aux_sym_local_command_token1] = ACTIONS(1184), + [aux_sym_local_forward_token1] = ACTIONS(1184), + [aux_sym_log_level_token1] = ACTIONS(1184), + [aux_sym_log_verbose_token1] = ACTIONS(1184), + [aux_sym_macs_token1] = ACTIONS(1184), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1184), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1184), + [aux_sym_password_authentication_token1] = ACTIONS(1184), + [aux_sym_permit_local_command_token1] = ACTIONS(1184), + [aux_sym_permit_remote_open_token1] = ACTIONS(1184), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1184), + [aux_sym_port_token1] = ACTIONS(1184), + [aux_sym_preferred_authentications_token1] = ACTIONS(1184), + [aux_sym_protocol_token1] = ACTIONS(1184), + [aux_sym_proxy_command_token1] = ACTIONS(1184), + [aux_sym_proxy_jump_token1] = ACTIONS(1184), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1184), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1184), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1184), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1184), + [aux_sym_rekey_limit_token1] = ACTIONS(1184), + [aux_sym_remote_command_token1] = ACTIONS(1184), + [aux_sym_remote_forward_token1] = ACTIONS(1184), + [aux_sym_request_tty_token1] = ACTIONS(1184), + [aux_sym_required_rsa_size_token1] = ACTIONS(1184), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1184), + [aux_sym_security_key_provider_token1] = ACTIONS(1184), + [aux_sym_send_env_token1] = ACTIONS(1184), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1184), + [aux_sym_server_alive_interval_token1] = ACTIONS(1184), + [aux_sym_session_type_token1] = ACTIONS(1184), + [aux_sym_set_env_token1] = ACTIONS(1184), + [aux_sym_stdin_null_token1] = ACTIONS(1184), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1184), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1184), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1184), + [aux_sym_syslog_facility_token1] = ACTIONS(1184), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1184), + [aux_sym_keep_alive_token1] = ACTIONS(1184), + [aux_sym_tunnel_token1] = ACTIONS(1186), + [aux_sym_tunnel_device_token1] = ACTIONS(1184), + [aux_sym_update_host_keys_token1] = ACTIONS(1184), + [aux_sym_use_keychain_token1] = ACTIONS(1184), + [aux_sym_use_roaming_token1] = ACTIONS(1184), + [aux_sym_user_token1] = ACTIONS(1186), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1184), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1184), + [aux_sym_visual_host_key_token1] = ACTIONS(1184), + [aux_sym_xauth_location_token1] = ACTIONS(1184), }, [508] = { - [ts_builtin_sym_end] = ACTIONS(3213), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3215), - [aux_sym_match_token1] = ACTIONS(3213), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3213), - [aux_sym_address_family_token1] = ACTIONS(3213), - [aux_sym_batch_mode_token1] = ACTIONS(3213), - [aux_sym_bind_address_token1] = ACTIONS(3213), - [aux_sym_bind_interface_token1] = ACTIONS(3213), - [aux_sym_canonical_domains_token1] = ACTIONS(3213), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3213), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3213), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3213), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3213), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3213), - [aux_sym_certificate_file_token1] = ACTIONS(3213), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3213), - [aux_sym_check_host_ip_token1] = ACTIONS(3213), - [aux_sym_ciphers_token1] = ACTIONS(3213), - [aux_sym_cipher_token1] = ACTIONS(3215), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3213), - [aux_sym_compression_token1] = ACTIONS(3213), - [aux_sym_connection_attempts_token1] = ACTIONS(3213), - [aux_sym_connect_timeout_token1] = ACTIONS(3213), - [aux_sym_control_master_token1] = ACTIONS(3213), - [aux_sym_control_path_token1] = ACTIONS(3213), - [aux_sym_control_persist_token1] = ACTIONS(3213), - [aux_sym_dynamic_forward_token1] = ACTIONS(3213), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3213), - [aux_sym_escape_char_token1] = ACTIONS(3213), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3213), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3213), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3213), - [aux_sym_forward_agent_token1] = ACTIONS(3213), - [aux_sym_forward_x11_token1] = ACTIONS(3215), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3213), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3213), - [aux_sym_gateway_ports_token1] = ACTIONS(3213), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3213), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3213), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3213), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3213), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3213), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3213), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3213), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3213), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3213), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3213), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3213), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3213), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3213), - [aux_sym_host_key_alias_token1] = ACTIONS(3213), - [aux_sym_hostname_token1] = ACTIONS(3213), - [aux_sym_identities_only_token1] = ACTIONS(3213), - [aux_sym_identity_agent_token1] = ACTIONS(3213), - [aux_sym_identity_file_token1] = ACTIONS(3213), - [aux_sym_ignore_unknown_token1] = ACTIONS(3213), - [aux_sym_include_token1] = ACTIONS(3213), - [aux_sym_ip_qos_token1] = ACTIONS(3213), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3213), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3213), - [aux_sym_kex_algorithms_token1] = ACTIONS(3213), - [aux_sym_known_hosts_command_token1] = ACTIONS(3213), - [aux_sym_local_command_token1] = ACTIONS(3213), - [aux_sym_local_forward_token1] = ACTIONS(3213), - [aux_sym_log_level_token1] = ACTIONS(3213), - [aux_sym_log_verbose_token1] = ACTIONS(3213), - [aux_sym_macs_token1] = ACTIONS(3213), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3213), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3213), - [aux_sym_password_authentication_token1] = ACTIONS(3213), - [aux_sym_permit_local_command_token1] = ACTIONS(3213), - [aux_sym_permit_remote_open_token1] = ACTIONS(3213), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3213), - [aux_sym_port_token1] = ACTIONS(3213), - [aux_sym_preferred_authentications_token1] = ACTIONS(3213), - [aux_sym_protocol_token1] = ACTIONS(3213), - [aux_sym_proxy_command_token1] = ACTIONS(3213), - [aux_sym_proxy_jump_token1] = ACTIONS(3213), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3213), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3213), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3213), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3213), - [aux_sym_rekey_limit_token1] = ACTIONS(3213), - [aux_sym_remote_command_token1] = ACTIONS(3213), - [aux_sym_remote_forward_token1] = ACTIONS(3213), - [aux_sym_request_tty_token1] = ACTIONS(3213), - [aux_sym_required_rsa_size_token1] = ACTIONS(3213), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3213), - [aux_sym_security_key_provider_token1] = ACTIONS(3213), - [aux_sym_send_env_token1] = ACTIONS(3213), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3213), - [aux_sym_server_alive_interval_token1] = ACTIONS(3213), - [aux_sym_session_type_token1] = ACTIONS(3213), - [aux_sym_set_env_token1] = ACTIONS(3213), - [aux_sym_stdin_null_token1] = ACTIONS(3213), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3213), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3213), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3213), - [aux_sym_syslog_facility_token1] = ACTIONS(3213), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3213), - [aux_sym_keep_alive_token1] = ACTIONS(3213), - [aux_sym_tunnel_token1] = ACTIONS(3215), - [aux_sym_tunnel_device_token1] = ACTIONS(3213), - [aux_sym_update_host_keys_token1] = ACTIONS(3213), - [aux_sym_use_keychain_token1] = ACTIONS(3213), - [aux_sym_use_roaming_token1] = ACTIONS(3213), - [aux_sym_user_token1] = ACTIONS(3215), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3213), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3213), - [aux_sym_visual_host_key_token1] = ACTIONS(3213), - [aux_sym_xauth_location_token1] = ACTIONS(3213), + [ts_builtin_sym_end] = ACTIONS(1052), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1054), + [aux_sym_match_token1] = ACTIONS(1052), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1052), + [aux_sym_address_family_token1] = ACTIONS(1052), + [aux_sym_batch_mode_token1] = ACTIONS(1052), + [aux_sym_bind_address_token1] = ACTIONS(1052), + [aux_sym_bind_interface_token1] = ACTIONS(1052), + [aux_sym_canonical_domains_token1] = ACTIONS(1052), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1052), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1052), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1052), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1052), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1052), + [aux_sym_certificate_file_token1] = ACTIONS(1052), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1052), + [aux_sym_check_host_ip_token1] = ACTIONS(1052), + [aux_sym_ciphers_token1] = ACTIONS(1052), + [aux_sym_cipher_token1] = ACTIONS(1054), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1052), + [aux_sym_compression_token1] = ACTIONS(1052), + [aux_sym_connection_attempts_token1] = ACTIONS(1052), + [aux_sym_connect_timeout_token1] = ACTIONS(1052), + [aux_sym_control_master_token1] = ACTIONS(1052), + [aux_sym_control_path_token1] = ACTIONS(1052), + [aux_sym_control_persist_token1] = ACTIONS(1052), + [aux_sym_dynamic_forward_token1] = ACTIONS(1052), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1052), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1052), + [aux_sym_escape_char_token1] = ACTIONS(1052), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1052), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1052), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1052), + [aux_sym_forward_agent_token1] = ACTIONS(1052), + [aux_sym_forward_x11_token1] = ACTIONS(1054), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1052), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1052), + [aux_sym_gateway_ports_token1] = ACTIONS(1052), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1052), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1052), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1052), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1052), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1052), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1052), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1052), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1052), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1052), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1052), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1052), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1052), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1052), + [aux_sym_host_key_alias_token1] = ACTIONS(1052), + [aux_sym_hostname_token1] = ACTIONS(1052), + [aux_sym_identities_only_token1] = ACTIONS(1052), + [aux_sym_identity_agent_token1] = ACTIONS(1052), + [aux_sym_identity_file_token1] = ACTIONS(1052), + [aux_sym_ignore_unknown_token1] = ACTIONS(1052), + [aux_sym_include_token1] = ACTIONS(1052), + [aux_sym_ip_qos_token1] = ACTIONS(1052), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1052), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1052), + [aux_sym_kex_algorithms_token1] = ACTIONS(1052), + [aux_sym_known_hosts_command_token1] = ACTIONS(1052), + [aux_sym_local_command_token1] = ACTIONS(1052), + [aux_sym_local_forward_token1] = ACTIONS(1052), + [aux_sym_log_level_token1] = ACTIONS(1052), + [aux_sym_log_verbose_token1] = ACTIONS(1052), + [aux_sym_macs_token1] = ACTIONS(1052), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1052), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1052), + [aux_sym_password_authentication_token1] = ACTIONS(1052), + [aux_sym_permit_local_command_token1] = ACTIONS(1052), + [aux_sym_permit_remote_open_token1] = ACTIONS(1052), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1052), + [aux_sym_port_token1] = ACTIONS(1052), + [aux_sym_preferred_authentications_token1] = ACTIONS(1052), + [aux_sym_protocol_token1] = ACTIONS(1052), + [aux_sym_proxy_command_token1] = ACTIONS(1052), + [aux_sym_proxy_jump_token1] = ACTIONS(1052), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1052), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1052), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1052), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1052), + [aux_sym_rekey_limit_token1] = ACTIONS(1052), + [aux_sym_remote_command_token1] = ACTIONS(1052), + [aux_sym_remote_forward_token1] = ACTIONS(1052), + [aux_sym_request_tty_token1] = ACTIONS(1052), + [aux_sym_required_rsa_size_token1] = ACTIONS(1052), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1052), + [aux_sym_security_key_provider_token1] = ACTIONS(1052), + [aux_sym_send_env_token1] = ACTIONS(1052), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1052), + [aux_sym_server_alive_interval_token1] = ACTIONS(1052), + [aux_sym_session_type_token1] = ACTIONS(1052), + [aux_sym_set_env_token1] = ACTIONS(1052), + [aux_sym_stdin_null_token1] = ACTIONS(1052), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1052), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1052), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1052), + [aux_sym_syslog_facility_token1] = ACTIONS(1052), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1052), + [aux_sym_keep_alive_token1] = ACTIONS(1052), + [aux_sym_tunnel_token1] = ACTIONS(1054), + [aux_sym_tunnel_device_token1] = ACTIONS(1052), + [aux_sym_update_host_keys_token1] = ACTIONS(1052), + [aux_sym_use_keychain_token1] = ACTIONS(1052), + [aux_sym_use_roaming_token1] = ACTIONS(1052), + [aux_sym_user_token1] = ACTIONS(1054), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1052), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1052), + [aux_sym_visual_host_key_token1] = ACTIONS(1052), + [aux_sym_xauth_location_token1] = ACTIONS(1052), }, [509] = { - [ts_builtin_sym_end] = ACTIONS(3217), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3219), - [aux_sym_match_token1] = ACTIONS(3217), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3217), - [aux_sym_address_family_token1] = ACTIONS(3217), - [aux_sym_batch_mode_token1] = ACTIONS(3217), - [aux_sym_bind_address_token1] = ACTIONS(3217), - [aux_sym_bind_interface_token1] = ACTIONS(3217), - [aux_sym_canonical_domains_token1] = ACTIONS(3217), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3217), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3217), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3217), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3217), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3217), - [aux_sym_certificate_file_token1] = ACTIONS(3217), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3217), - [aux_sym_check_host_ip_token1] = ACTIONS(3217), - [aux_sym_ciphers_token1] = ACTIONS(3217), - [aux_sym_cipher_token1] = ACTIONS(3219), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3217), - [aux_sym_compression_token1] = ACTIONS(3217), - [aux_sym_connection_attempts_token1] = ACTIONS(3217), - [aux_sym_connect_timeout_token1] = ACTIONS(3217), - [aux_sym_control_master_token1] = ACTIONS(3217), - [aux_sym_control_path_token1] = ACTIONS(3217), - [aux_sym_control_persist_token1] = ACTIONS(3217), - [aux_sym_dynamic_forward_token1] = ACTIONS(3217), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3217), - [aux_sym_escape_char_token1] = ACTIONS(3217), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3217), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3217), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3217), - [aux_sym_forward_agent_token1] = ACTIONS(3217), - [aux_sym_forward_x11_token1] = ACTIONS(3219), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3217), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3217), - [aux_sym_gateway_ports_token1] = ACTIONS(3217), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3217), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3217), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3217), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3217), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3217), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3217), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3217), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3217), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3217), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3217), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3217), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3217), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3217), - [aux_sym_host_key_alias_token1] = ACTIONS(3217), - [aux_sym_hostname_token1] = ACTIONS(3217), - [aux_sym_identities_only_token1] = ACTIONS(3217), - [aux_sym_identity_agent_token1] = ACTIONS(3217), - [aux_sym_identity_file_token1] = ACTIONS(3217), - [aux_sym_ignore_unknown_token1] = ACTIONS(3217), - [aux_sym_include_token1] = ACTIONS(3217), - [aux_sym_ip_qos_token1] = ACTIONS(3217), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3217), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3217), - [aux_sym_kex_algorithms_token1] = ACTIONS(3217), - [aux_sym_known_hosts_command_token1] = ACTIONS(3217), - [aux_sym_local_command_token1] = ACTIONS(3217), - [aux_sym_local_forward_token1] = ACTIONS(3217), - [aux_sym_log_level_token1] = ACTIONS(3217), - [aux_sym_log_verbose_token1] = ACTIONS(3217), - [aux_sym_macs_token1] = ACTIONS(3217), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3217), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3217), - [aux_sym_password_authentication_token1] = ACTIONS(3217), - [aux_sym_permit_local_command_token1] = ACTIONS(3217), - [aux_sym_permit_remote_open_token1] = ACTIONS(3217), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3217), - [aux_sym_port_token1] = ACTIONS(3217), - [aux_sym_preferred_authentications_token1] = ACTIONS(3217), - [aux_sym_protocol_token1] = ACTIONS(3217), - [aux_sym_proxy_command_token1] = ACTIONS(3217), - [aux_sym_proxy_jump_token1] = ACTIONS(3217), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3217), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3217), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3217), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3217), - [aux_sym_rekey_limit_token1] = ACTIONS(3217), - [aux_sym_remote_command_token1] = ACTIONS(3217), - [aux_sym_remote_forward_token1] = ACTIONS(3217), - [aux_sym_request_tty_token1] = ACTIONS(3217), - [aux_sym_required_rsa_size_token1] = ACTIONS(3217), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3217), - [aux_sym_security_key_provider_token1] = ACTIONS(3217), - [aux_sym_send_env_token1] = ACTIONS(3217), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3217), - [aux_sym_server_alive_interval_token1] = ACTIONS(3217), - [aux_sym_session_type_token1] = ACTIONS(3217), - [aux_sym_set_env_token1] = ACTIONS(3217), - [aux_sym_stdin_null_token1] = ACTIONS(3217), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3217), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3217), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3217), - [aux_sym_syslog_facility_token1] = ACTIONS(3217), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3217), - [aux_sym_keep_alive_token1] = ACTIONS(3217), - [aux_sym_tunnel_token1] = ACTIONS(3219), - [aux_sym_tunnel_device_token1] = ACTIONS(3217), - [aux_sym_update_host_keys_token1] = ACTIONS(3217), - [aux_sym_use_keychain_token1] = ACTIONS(3217), - [aux_sym_use_roaming_token1] = ACTIONS(3217), - [aux_sym_user_token1] = ACTIONS(3219), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3217), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3217), - [aux_sym_visual_host_key_token1] = ACTIONS(3217), - [aux_sym_xauth_location_token1] = ACTIONS(3217), + [ts_builtin_sym_end] = ACTIONS(1190), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1192), + [aux_sym_match_token1] = ACTIONS(1190), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1190), + [aux_sym_address_family_token1] = ACTIONS(1190), + [aux_sym_batch_mode_token1] = ACTIONS(1190), + [aux_sym_bind_address_token1] = ACTIONS(1190), + [aux_sym_bind_interface_token1] = ACTIONS(1190), + [aux_sym_canonical_domains_token1] = ACTIONS(1190), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1190), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1190), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1190), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1190), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1190), + [aux_sym_certificate_file_token1] = ACTIONS(1190), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1190), + [aux_sym_check_host_ip_token1] = ACTIONS(1190), + [aux_sym_ciphers_token1] = ACTIONS(1190), + [aux_sym_cipher_token1] = ACTIONS(1192), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1190), + [aux_sym_compression_token1] = ACTIONS(1190), + [aux_sym_connection_attempts_token1] = ACTIONS(1190), + [aux_sym_connect_timeout_token1] = ACTIONS(1190), + [aux_sym_control_master_token1] = ACTIONS(1190), + [aux_sym_control_path_token1] = ACTIONS(1190), + [aux_sym_control_persist_token1] = ACTIONS(1190), + [aux_sym_dynamic_forward_token1] = ACTIONS(1190), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1190), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1190), + [aux_sym_escape_char_token1] = ACTIONS(1190), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1190), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1190), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1190), + [aux_sym_forward_agent_token1] = ACTIONS(1190), + [aux_sym_forward_x11_token1] = ACTIONS(1192), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1190), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1190), + [aux_sym_gateway_ports_token1] = ACTIONS(1190), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1190), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1190), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1190), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1190), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1190), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1190), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1190), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1190), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1190), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1190), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1190), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1190), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1190), + [aux_sym_host_key_alias_token1] = ACTIONS(1190), + [aux_sym_hostname_token1] = ACTIONS(1190), + [aux_sym_identities_only_token1] = ACTIONS(1190), + [aux_sym_identity_agent_token1] = ACTIONS(1190), + [aux_sym_identity_file_token1] = ACTIONS(1190), + [aux_sym_ignore_unknown_token1] = ACTIONS(1190), + [aux_sym_include_token1] = ACTIONS(1190), + [aux_sym_ip_qos_token1] = ACTIONS(1190), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1190), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1190), + [aux_sym_kex_algorithms_token1] = ACTIONS(1190), + [aux_sym_known_hosts_command_token1] = ACTIONS(1190), + [aux_sym_local_command_token1] = ACTIONS(1190), + [aux_sym_local_forward_token1] = ACTIONS(1190), + [aux_sym_log_level_token1] = ACTIONS(1190), + [aux_sym_log_verbose_token1] = ACTIONS(1190), + [aux_sym_macs_token1] = ACTIONS(1190), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1190), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1190), + [aux_sym_password_authentication_token1] = ACTIONS(1190), + [aux_sym_permit_local_command_token1] = ACTIONS(1190), + [aux_sym_permit_remote_open_token1] = ACTIONS(1190), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1190), + [aux_sym_port_token1] = ACTIONS(1190), + [aux_sym_preferred_authentications_token1] = ACTIONS(1190), + [aux_sym_protocol_token1] = ACTIONS(1190), + [aux_sym_proxy_command_token1] = ACTIONS(1190), + [aux_sym_proxy_jump_token1] = ACTIONS(1190), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1190), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1190), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1190), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1190), + [aux_sym_rekey_limit_token1] = ACTIONS(1190), + [aux_sym_remote_command_token1] = ACTIONS(1190), + [aux_sym_remote_forward_token1] = ACTIONS(1190), + [aux_sym_request_tty_token1] = ACTIONS(1190), + [aux_sym_required_rsa_size_token1] = ACTIONS(1190), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1190), + [aux_sym_security_key_provider_token1] = ACTIONS(1190), + [aux_sym_send_env_token1] = ACTIONS(1190), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1190), + [aux_sym_server_alive_interval_token1] = ACTIONS(1190), + [aux_sym_session_type_token1] = ACTIONS(1190), + [aux_sym_set_env_token1] = ACTIONS(1190), + [aux_sym_stdin_null_token1] = ACTIONS(1190), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1190), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1190), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1190), + [aux_sym_syslog_facility_token1] = ACTIONS(1190), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1190), + [aux_sym_keep_alive_token1] = ACTIONS(1190), + [aux_sym_tunnel_token1] = ACTIONS(1192), + [aux_sym_tunnel_device_token1] = ACTIONS(1190), + [aux_sym_update_host_keys_token1] = ACTIONS(1190), + [aux_sym_use_keychain_token1] = ACTIONS(1190), + [aux_sym_use_roaming_token1] = ACTIONS(1190), + [aux_sym_user_token1] = ACTIONS(1192), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1190), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1190), + [aux_sym_visual_host_key_token1] = ACTIONS(1190), + [aux_sym_xauth_location_token1] = ACTIONS(1190), }, [510] = { - [ts_builtin_sym_end] = ACTIONS(3221), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3223), - [aux_sym_match_token1] = ACTIONS(3221), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3221), - [aux_sym_address_family_token1] = ACTIONS(3221), - [aux_sym_batch_mode_token1] = ACTIONS(3221), - [aux_sym_bind_address_token1] = ACTIONS(3221), - [aux_sym_bind_interface_token1] = ACTIONS(3221), - [aux_sym_canonical_domains_token1] = ACTIONS(3221), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3221), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3221), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3221), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3221), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3221), - [aux_sym_certificate_file_token1] = ACTIONS(3221), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3221), - [aux_sym_check_host_ip_token1] = ACTIONS(3221), - [aux_sym_ciphers_token1] = ACTIONS(3221), - [aux_sym_cipher_token1] = ACTIONS(3223), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3221), - [aux_sym_compression_token1] = ACTIONS(3221), - [aux_sym_connection_attempts_token1] = ACTIONS(3221), - [aux_sym_connect_timeout_token1] = ACTIONS(3221), - [aux_sym_control_master_token1] = ACTIONS(3221), - [aux_sym_control_path_token1] = ACTIONS(3221), - [aux_sym_control_persist_token1] = ACTIONS(3221), - [aux_sym_dynamic_forward_token1] = ACTIONS(3221), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3221), - [aux_sym_escape_char_token1] = ACTIONS(3221), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3221), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3221), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3221), - [aux_sym_forward_agent_token1] = ACTIONS(3221), - [aux_sym_forward_x11_token1] = ACTIONS(3223), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3221), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3221), - [aux_sym_gateway_ports_token1] = ACTIONS(3221), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3221), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3221), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3221), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3221), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3221), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3221), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3221), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3221), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3221), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3221), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3221), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3221), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3221), - [aux_sym_host_key_alias_token1] = ACTIONS(3221), - [aux_sym_hostname_token1] = ACTIONS(3221), - [aux_sym_identities_only_token1] = ACTIONS(3221), - [aux_sym_identity_agent_token1] = ACTIONS(3221), - [aux_sym_identity_file_token1] = ACTIONS(3221), - [aux_sym_ignore_unknown_token1] = ACTIONS(3221), - [aux_sym_include_token1] = ACTIONS(3221), - [aux_sym_ip_qos_token1] = ACTIONS(3221), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3221), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3221), - [aux_sym_kex_algorithms_token1] = ACTIONS(3221), - [aux_sym_known_hosts_command_token1] = ACTIONS(3221), - [aux_sym_local_command_token1] = ACTIONS(3221), - [aux_sym_local_forward_token1] = ACTIONS(3221), - [aux_sym_log_level_token1] = ACTIONS(3221), - [aux_sym_log_verbose_token1] = ACTIONS(3221), - [aux_sym_macs_token1] = ACTIONS(3221), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3221), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3221), - [aux_sym_password_authentication_token1] = ACTIONS(3221), - [aux_sym_permit_local_command_token1] = ACTIONS(3221), - [aux_sym_permit_remote_open_token1] = ACTIONS(3221), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3221), - [aux_sym_port_token1] = ACTIONS(3221), - [aux_sym_preferred_authentications_token1] = ACTIONS(3221), - [aux_sym_protocol_token1] = ACTIONS(3221), - [aux_sym_proxy_command_token1] = ACTIONS(3221), - [aux_sym_proxy_jump_token1] = ACTIONS(3221), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3221), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3221), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3221), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3221), - [aux_sym_rekey_limit_token1] = ACTIONS(3221), - [aux_sym_remote_command_token1] = ACTIONS(3221), - [aux_sym_remote_forward_token1] = ACTIONS(3221), - [aux_sym_request_tty_token1] = ACTIONS(3221), - [aux_sym_required_rsa_size_token1] = ACTIONS(3221), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3221), - [aux_sym_security_key_provider_token1] = ACTIONS(3221), - [aux_sym_send_env_token1] = ACTIONS(3221), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3221), - [aux_sym_server_alive_interval_token1] = ACTIONS(3221), - [aux_sym_session_type_token1] = ACTIONS(3221), - [aux_sym_set_env_token1] = ACTIONS(3221), - [aux_sym_stdin_null_token1] = ACTIONS(3221), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3221), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3221), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3221), - [aux_sym_syslog_facility_token1] = ACTIONS(3221), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3221), - [aux_sym_keep_alive_token1] = ACTIONS(3221), - [aux_sym_tunnel_token1] = ACTIONS(3223), - [aux_sym_tunnel_device_token1] = ACTIONS(3221), - [aux_sym_update_host_keys_token1] = ACTIONS(3221), - [aux_sym_use_keychain_token1] = ACTIONS(3221), - [aux_sym_use_roaming_token1] = ACTIONS(3221), - [aux_sym_user_token1] = ACTIONS(3223), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3221), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3221), - [aux_sym_visual_host_key_token1] = ACTIONS(3221), - [aux_sym_xauth_location_token1] = ACTIONS(3221), + [ts_builtin_sym_end] = ACTIONS(1100), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1102), + [aux_sym_match_token1] = ACTIONS(1100), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1100), + [aux_sym_address_family_token1] = ACTIONS(1100), + [aux_sym_batch_mode_token1] = ACTIONS(1100), + [aux_sym_bind_address_token1] = ACTIONS(1100), + [aux_sym_bind_interface_token1] = ACTIONS(1100), + [aux_sym_canonical_domains_token1] = ACTIONS(1100), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1100), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1100), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1100), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1100), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1100), + [aux_sym_certificate_file_token1] = ACTIONS(1100), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1100), + [aux_sym_check_host_ip_token1] = ACTIONS(1100), + [aux_sym_ciphers_token1] = ACTIONS(1100), + [aux_sym_cipher_token1] = ACTIONS(1102), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1100), + [aux_sym_compression_token1] = ACTIONS(1100), + [aux_sym_connection_attempts_token1] = ACTIONS(1100), + [aux_sym_connect_timeout_token1] = ACTIONS(1100), + [aux_sym_control_master_token1] = ACTIONS(1100), + [aux_sym_control_path_token1] = ACTIONS(1100), + [aux_sym_control_persist_token1] = ACTIONS(1100), + [aux_sym_dynamic_forward_token1] = ACTIONS(1100), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1100), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1100), + [aux_sym_escape_char_token1] = ACTIONS(1100), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1100), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1100), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1100), + [aux_sym_forward_agent_token1] = ACTIONS(1100), + [aux_sym_forward_x11_token1] = ACTIONS(1102), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1100), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1100), + [aux_sym_gateway_ports_token1] = ACTIONS(1100), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1100), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1100), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1100), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1100), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1100), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1100), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1100), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1100), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1100), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1100), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1100), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1100), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1100), + [aux_sym_host_key_alias_token1] = ACTIONS(1100), + [aux_sym_hostname_token1] = ACTIONS(1100), + [aux_sym_identities_only_token1] = ACTIONS(1100), + [aux_sym_identity_agent_token1] = ACTIONS(1100), + [aux_sym_identity_file_token1] = ACTIONS(1100), + [aux_sym_ignore_unknown_token1] = ACTIONS(1100), + [aux_sym_include_token1] = ACTIONS(1100), + [aux_sym_ip_qos_token1] = ACTIONS(1100), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1100), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1100), + [aux_sym_kex_algorithms_token1] = ACTIONS(1100), + [aux_sym_known_hosts_command_token1] = ACTIONS(1100), + [aux_sym_local_command_token1] = ACTIONS(1100), + [aux_sym_local_forward_token1] = ACTIONS(1100), + [aux_sym_log_level_token1] = ACTIONS(1100), + [aux_sym_log_verbose_token1] = ACTIONS(1100), + [aux_sym_macs_token1] = ACTIONS(1100), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1100), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1100), + [aux_sym_password_authentication_token1] = ACTIONS(1100), + [aux_sym_permit_local_command_token1] = ACTIONS(1100), + [aux_sym_permit_remote_open_token1] = ACTIONS(1100), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1100), + [aux_sym_port_token1] = ACTIONS(1100), + [aux_sym_preferred_authentications_token1] = ACTIONS(1100), + [aux_sym_protocol_token1] = ACTIONS(1100), + [aux_sym_proxy_command_token1] = ACTIONS(1100), + [aux_sym_proxy_jump_token1] = ACTIONS(1100), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1100), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1100), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1100), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1100), + [aux_sym_rekey_limit_token1] = ACTIONS(1100), + [aux_sym_remote_command_token1] = ACTIONS(1100), + [aux_sym_remote_forward_token1] = ACTIONS(1100), + [aux_sym_request_tty_token1] = ACTIONS(1100), + [aux_sym_required_rsa_size_token1] = ACTIONS(1100), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1100), + [aux_sym_security_key_provider_token1] = ACTIONS(1100), + [aux_sym_send_env_token1] = ACTIONS(1100), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1100), + [aux_sym_server_alive_interval_token1] = ACTIONS(1100), + [aux_sym_session_type_token1] = ACTIONS(1100), + [aux_sym_set_env_token1] = ACTIONS(1100), + [aux_sym_stdin_null_token1] = ACTIONS(1100), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1100), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1100), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1100), + [aux_sym_syslog_facility_token1] = ACTIONS(1100), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1100), + [aux_sym_keep_alive_token1] = ACTIONS(1100), + [aux_sym_tunnel_token1] = ACTIONS(1102), + [aux_sym_tunnel_device_token1] = ACTIONS(1100), + [aux_sym_update_host_keys_token1] = ACTIONS(1100), + [aux_sym_use_keychain_token1] = ACTIONS(1100), + [aux_sym_use_roaming_token1] = ACTIONS(1100), + [aux_sym_user_token1] = ACTIONS(1102), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1100), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1100), + [aux_sym_visual_host_key_token1] = ACTIONS(1100), + [aux_sym_xauth_location_token1] = ACTIONS(1100), }, [511] = { - [ts_builtin_sym_end] = ACTIONS(3225), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3227), - [aux_sym_match_token1] = ACTIONS(3225), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3225), - [aux_sym_address_family_token1] = ACTIONS(3225), - [aux_sym_batch_mode_token1] = ACTIONS(3225), - [aux_sym_bind_address_token1] = ACTIONS(3225), - [aux_sym_bind_interface_token1] = ACTIONS(3225), - [aux_sym_canonical_domains_token1] = ACTIONS(3225), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3225), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3225), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3225), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3225), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3225), - [aux_sym_certificate_file_token1] = ACTIONS(3225), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3225), - [aux_sym_check_host_ip_token1] = ACTIONS(3225), - [aux_sym_ciphers_token1] = ACTIONS(3225), - [aux_sym_cipher_token1] = ACTIONS(3227), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3225), - [aux_sym_compression_token1] = ACTIONS(3225), - [aux_sym_connection_attempts_token1] = ACTIONS(3225), - [aux_sym_connect_timeout_token1] = ACTIONS(3225), - [aux_sym_control_master_token1] = ACTIONS(3225), - [aux_sym_control_path_token1] = ACTIONS(3225), - [aux_sym_control_persist_token1] = ACTIONS(3225), - [aux_sym_dynamic_forward_token1] = ACTIONS(3225), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3225), - [aux_sym_escape_char_token1] = ACTIONS(3225), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3225), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3225), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3225), - [aux_sym_forward_agent_token1] = ACTIONS(3225), - [aux_sym_forward_x11_token1] = ACTIONS(3227), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3225), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3225), - [aux_sym_gateway_ports_token1] = ACTIONS(3225), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3225), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3225), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3225), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3225), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3225), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3225), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3225), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3225), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3225), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3225), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3225), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3225), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3225), - [aux_sym_host_key_alias_token1] = ACTIONS(3225), - [aux_sym_hostname_token1] = ACTIONS(3225), - [aux_sym_identities_only_token1] = ACTIONS(3225), - [aux_sym_identity_agent_token1] = ACTIONS(3225), - [aux_sym_identity_file_token1] = ACTIONS(3225), - [aux_sym_ignore_unknown_token1] = ACTIONS(3225), - [aux_sym_include_token1] = ACTIONS(3225), - [aux_sym_ip_qos_token1] = ACTIONS(3225), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3225), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3225), - [aux_sym_kex_algorithms_token1] = ACTIONS(3225), - [aux_sym_known_hosts_command_token1] = ACTIONS(3225), - [aux_sym_local_command_token1] = ACTIONS(3225), - [aux_sym_local_forward_token1] = ACTIONS(3225), - [aux_sym_log_level_token1] = ACTIONS(3225), - [aux_sym_log_verbose_token1] = ACTIONS(3225), - [aux_sym_macs_token1] = ACTIONS(3225), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3225), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3225), - [aux_sym_password_authentication_token1] = ACTIONS(3225), - [aux_sym_permit_local_command_token1] = ACTIONS(3225), - [aux_sym_permit_remote_open_token1] = ACTIONS(3225), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3225), - [aux_sym_port_token1] = ACTIONS(3225), - [aux_sym_preferred_authentications_token1] = ACTIONS(3225), - [aux_sym_protocol_token1] = ACTIONS(3225), - [aux_sym_proxy_command_token1] = ACTIONS(3225), - [aux_sym_proxy_jump_token1] = ACTIONS(3225), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3225), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3225), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3225), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3225), - [aux_sym_rekey_limit_token1] = ACTIONS(3225), - [aux_sym_remote_command_token1] = ACTIONS(3225), - [aux_sym_remote_forward_token1] = ACTIONS(3225), - [aux_sym_request_tty_token1] = ACTIONS(3225), - [aux_sym_required_rsa_size_token1] = ACTIONS(3225), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3225), - [aux_sym_security_key_provider_token1] = ACTIONS(3225), - [aux_sym_send_env_token1] = ACTIONS(3225), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3225), - [aux_sym_server_alive_interval_token1] = ACTIONS(3225), - [aux_sym_session_type_token1] = ACTIONS(3225), - [aux_sym_set_env_token1] = ACTIONS(3225), - [aux_sym_stdin_null_token1] = ACTIONS(3225), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3225), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3225), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3225), - [aux_sym_syslog_facility_token1] = ACTIONS(3225), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3225), - [aux_sym_keep_alive_token1] = ACTIONS(3225), - [aux_sym_tunnel_token1] = ACTIONS(3227), - [aux_sym_tunnel_device_token1] = ACTIONS(3225), - [aux_sym_update_host_keys_token1] = ACTIONS(3225), - [aux_sym_use_keychain_token1] = ACTIONS(3225), - [aux_sym_use_roaming_token1] = ACTIONS(3225), - [aux_sym_user_token1] = ACTIONS(3227), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3225), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3225), - [aux_sym_visual_host_key_token1] = ACTIONS(3225), - [aux_sym_xauth_location_token1] = ACTIONS(3225), + [ts_builtin_sym_end] = ACTIONS(1196), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1198), + [aux_sym_match_token1] = ACTIONS(1196), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1196), + [aux_sym_address_family_token1] = ACTIONS(1196), + [aux_sym_batch_mode_token1] = ACTIONS(1196), + [aux_sym_bind_address_token1] = ACTIONS(1196), + [aux_sym_bind_interface_token1] = ACTIONS(1196), + [aux_sym_canonical_domains_token1] = ACTIONS(1196), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1196), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1196), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1196), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1196), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1196), + [aux_sym_certificate_file_token1] = ACTIONS(1196), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1196), + [aux_sym_check_host_ip_token1] = ACTIONS(1196), + [aux_sym_ciphers_token1] = ACTIONS(1196), + [aux_sym_cipher_token1] = ACTIONS(1198), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1196), + [aux_sym_compression_token1] = ACTIONS(1196), + [aux_sym_connection_attempts_token1] = ACTIONS(1196), + [aux_sym_connect_timeout_token1] = ACTIONS(1196), + [aux_sym_control_master_token1] = ACTIONS(1196), + [aux_sym_control_path_token1] = ACTIONS(1196), + [aux_sym_control_persist_token1] = ACTIONS(1196), + [aux_sym_dynamic_forward_token1] = ACTIONS(1196), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1196), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1196), + [aux_sym_escape_char_token1] = ACTIONS(1196), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1196), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1196), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1196), + [aux_sym_forward_agent_token1] = ACTIONS(1196), + [aux_sym_forward_x11_token1] = ACTIONS(1198), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1196), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1196), + [aux_sym_gateway_ports_token1] = ACTIONS(1196), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1196), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1196), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1196), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1196), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1196), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1196), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1196), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1196), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1196), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1196), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1196), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1196), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1196), + [aux_sym_host_key_alias_token1] = ACTIONS(1196), + [aux_sym_hostname_token1] = ACTIONS(1196), + [aux_sym_identities_only_token1] = ACTIONS(1196), + [aux_sym_identity_agent_token1] = ACTIONS(1196), + [aux_sym_identity_file_token1] = ACTIONS(1196), + [aux_sym_ignore_unknown_token1] = ACTIONS(1196), + [aux_sym_include_token1] = ACTIONS(1196), + [aux_sym_ip_qos_token1] = ACTIONS(1196), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1196), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1196), + [aux_sym_kex_algorithms_token1] = ACTIONS(1196), + [aux_sym_known_hosts_command_token1] = ACTIONS(1196), + [aux_sym_local_command_token1] = ACTIONS(1196), + [aux_sym_local_forward_token1] = ACTIONS(1196), + [aux_sym_log_level_token1] = ACTIONS(1196), + [aux_sym_log_verbose_token1] = ACTIONS(1196), + [aux_sym_macs_token1] = ACTIONS(1196), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1196), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1196), + [aux_sym_password_authentication_token1] = ACTIONS(1196), + [aux_sym_permit_local_command_token1] = ACTIONS(1196), + [aux_sym_permit_remote_open_token1] = ACTIONS(1196), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1196), + [aux_sym_port_token1] = ACTIONS(1196), + [aux_sym_preferred_authentications_token1] = ACTIONS(1196), + [aux_sym_protocol_token1] = ACTIONS(1196), + [aux_sym_proxy_command_token1] = ACTIONS(1196), + [aux_sym_proxy_jump_token1] = ACTIONS(1196), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1196), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1196), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1196), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1196), + [aux_sym_rekey_limit_token1] = ACTIONS(1196), + [aux_sym_remote_command_token1] = ACTIONS(1196), + [aux_sym_remote_forward_token1] = ACTIONS(1196), + [aux_sym_request_tty_token1] = ACTIONS(1196), + [aux_sym_required_rsa_size_token1] = ACTIONS(1196), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1196), + [aux_sym_security_key_provider_token1] = ACTIONS(1196), + [aux_sym_send_env_token1] = ACTIONS(1196), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1196), + [aux_sym_server_alive_interval_token1] = ACTIONS(1196), + [aux_sym_session_type_token1] = ACTIONS(1196), + [aux_sym_set_env_token1] = ACTIONS(1196), + [aux_sym_stdin_null_token1] = ACTIONS(1196), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1196), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1196), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1196), + [aux_sym_syslog_facility_token1] = ACTIONS(1196), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1196), + [aux_sym_keep_alive_token1] = ACTIONS(1196), + [aux_sym_tunnel_token1] = ACTIONS(1198), + [aux_sym_tunnel_device_token1] = ACTIONS(1196), + [aux_sym_update_host_keys_token1] = ACTIONS(1196), + [aux_sym_use_keychain_token1] = ACTIONS(1196), + [aux_sym_use_roaming_token1] = ACTIONS(1196), + [aux_sym_user_token1] = ACTIONS(1198), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1196), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1196), + [aux_sym_visual_host_key_token1] = ACTIONS(1196), + [aux_sym_xauth_location_token1] = ACTIONS(1196), }, [512] = { - [ts_builtin_sym_end] = ACTIONS(3229), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3231), - [aux_sym_match_token1] = ACTIONS(3229), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3229), - [aux_sym_address_family_token1] = ACTIONS(3229), - [aux_sym_batch_mode_token1] = ACTIONS(3229), - [aux_sym_bind_address_token1] = ACTIONS(3229), - [aux_sym_bind_interface_token1] = ACTIONS(3229), - [aux_sym_canonical_domains_token1] = ACTIONS(3229), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3229), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3229), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3229), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3229), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3229), - [aux_sym_certificate_file_token1] = ACTIONS(3229), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3229), - [aux_sym_check_host_ip_token1] = ACTIONS(3229), - [aux_sym_ciphers_token1] = ACTIONS(3229), - [aux_sym_cipher_token1] = ACTIONS(3231), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3229), - [aux_sym_compression_token1] = ACTIONS(3229), - [aux_sym_connection_attempts_token1] = ACTIONS(3229), - [aux_sym_connect_timeout_token1] = ACTIONS(3229), - [aux_sym_control_master_token1] = ACTIONS(3229), - [aux_sym_control_path_token1] = ACTIONS(3229), - [aux_sym_control_persist_token1] = ACTIONS(3229), - [aux_sym_dynamic_forward_token1] = ACTIONS(3229), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3229), - [aux_sym_escape_char_token1] = ACTIONS(3229), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3229), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3229), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3229), - [aux_sym_forward_agent_token1] = ACTIONS(3229), - [aux_sym_forward_x11_token1] = ACTIONS(3231), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3229), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3229), - [aux_sym_gateway_ports_token1] = ACTIONS(3229), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3229), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3229), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3229), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3229), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3229), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3229), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3229), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3229), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3229), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3229), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3229), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3229), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3229), - [aux_sym_host_key_alias_token1] = ACTIONS(3229), - [aux_sym_hostname_token1] = ACTIONS(3229), - [aux_sym_identities_only_token1] = ACTIONS(3229), - [aux_sym_identity_agent_token1] = ACTIONS(3229), - [aux_sym_identity_file_token1] = ACTIONS(3229), - [aux_sym_ignore_unknown_token1] = ACTIONS(3229), - [aux_sym_include_token1] = ACTIONS(3229), - [aux_sym_ip_qos_token1] = ACTIONS(3229), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3229), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3229), - [aux_sym_kex_algorithms_token1] = ACTIONS(3229), - [aux_sym_known_hosts_command_token1] = ACTIONS(3229), - [aux_sym_local_command_token1] = ACTIONS(3229), - [aux_sym_local_forward_token1] = ACTIONS(3229), - [aux_sym_log_level_token1] = ACTIONS(3229), - [aux_sym_log_verbose_token1] = ACTIONS(3229), - [aux_sym_macs_token1] = ACTIONS(3229), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3229), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3229), - [aux_sym_password_authentication_token1] = ACTIONS(3229), - [aux_sym_permit_local_command_token1] = ACTIONS(3229), - [aux_sym_permit_remote_open_token1] = ACTIONS(3229), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3229), - [aux_sym_port_token1] = ACTIONS(3229), - [aux_sym_preferred_authentications_token1] = ACTIONS(3229), - [aux_sym_protocol_token1] = ACTIONS(3229), - [aux_sym_proxy_command_token1] = ACTIONS(3229), - [aux_sym_proxy_jump_token1] = ACTIONS(3229), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3229), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3229), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3229), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3229), - [aux_sym_rekey_limit_token1] = ACTIONS(3229), - [aux_sym_remote_command_token1] = ACTIONS(3229), - [aux_sym_remote_forward_token1] = ACTIONS(3229), - [aux_sym_request_tty_token1] = ACTIONS(3229), - [aux_sym_required_rsa_size_token1] = ACTIONS(3229), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3229), - [aux_sym_security_key_provider_token1] = ACTIONS(3229), - [aux_sym_send_env_token1] = ACTIONS(3229), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3229), - [aux_sym_server_alive_interval_token1] = ACTIONS(3229), - [aux_sym_session_type_token1] = ACTIONS(3229), - [aux_sym_set_env_token1] = ACTIONS(3229), - [aux_sym_stdin_null_token1] = ACTIONS(3229), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3229), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3229), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3229), - [aux_sym_syslog_facility_token1] = ACTIONS(3229), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3229), - [aux_sym_keep_alive_token1] = ACTIONS(3229), - [aux_sym_tunnel_token1] = ACTIONS(3231), - [aux_sym_tunnel_device_token1] = ACTIONS(3229), - [aux_sym_update_host_keys_token1] = ACTIONS(3229), - [aux_sym_use_keychain_token1] = ACTIONS(3229), - [aux_sym_use_roaming_token1] = ACTIONS(3229), - [aux_sym_user_token1] = ACTIONS(3231), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3229), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3229), - [aux_sym_visual_host_key_token1] = ACTIONS(3229), - [aux_sym_xauth_location_token1] = ACTIONS(3229), + [ts_builtin_sym_end] = ACTIONS(1010), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1012), + [aux_sym_match_token1] = ACTIONS(1010), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1010), + [aux_sym_address_family_token1] = ACTIONS(1010), + [aux_sym_batch_mode_token1] = ACTIONS(1010), + [aux_sym_bind_address_token1] = ACTIONS(1010), + [aux_sym_bind_interface_token1] = ACTIONS(1010), + [aux_sym_canonical_domains_token1] = ACTIONS(1010), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1010), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1010), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1010), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1010), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1010), + [aux_sym_certificate_file_token1] = ACTIONS(1010), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1010), + [aux_sym_check_host_ip_token1] = ACTIONS(1010), + [aux_sym_ciphers_token1] = ACTIONS(1010), + [aux_sym_cipher_token1] = ACTIONS(1012), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1010), + [aux_sym_compression_token1] = ACTIONS(1010), + [aux_sym_connection_attempts_token1] = ACTIONS(1010), + [aux_sym_connect_timeout_token1] = ACTIONS(1010), + [aux_sym_control_master_token1] = ACTIONS(1010), + [aux_sym_control_path_token1] = ACTIONS(1010), + [aux_sym_control_persist_token1] = ACTIONS(1010), + [aux_sym_dynamic_forward_token1] = ACTIONS(1010), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1010), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1010), + [aux_sym_escape_char_token1] = ACTIONS(1010), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1010), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1010), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1010), + [aux_sym_forward_agent_token1] = ACTIONS(1010), + [aux_sym_forward_x11_token1] = ACTIONS(1012), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1010), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1010), + [aux_sym_gateway_ports_token1] = ACTIONS(1010), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1010), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1010), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1010), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1010), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1010), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1010), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1010), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1010), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1010), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1010), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1010), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1010), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1010), + [aux_sym_host_key_alias_token1] = ACTIONS(1010), + [aux_sym_hostname_token1] = ACTIONS(1010), + [aux_sym_identities_only_token1] = ACTIONS(1010), + [aux_sym_identity_agent_token1] = ACTIONS(1010), + [aux_sym_identity_file_token1] = ACTIONS(1010), + [aux_sym_ignore_unknown_token1] = ACTIONS(1010), + [aux_sym_include_token1] = ACTIONS(1010), + [aux_sym_ip_qos_token1] = ACTIONS(1010), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1010), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1010), + [aux_sym_kex_algorithms_token1] = ACTIONS(1010), + [aux_sym_known_hosts_command_token1] = ACTIONS(1010), + [aux_sym_local_command_token1] = ACTIONS(1010), + [aux_sym_local_forward_token1] = ACTIONS(1010), + [aux_sym_log_level_token1] = ACTIONS(1010), + [aux_sym_log_verbose_token1] = ACTIONS(1010), + [aux_sym_macs_token1] = ACTIONS(1010), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1010), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1010), + [aux_sym_password_authentication_token1] = ACTIONS(1010), + [aux_sym_permit_local_command_token1] = ACTIONS(1010), + [aux_sym_permit_remote_open_token1] = ACTIONS(1010), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1010), + [aux_sym_port_token1] = ACTIONS(1010), + [aux_sym_preferred_authentications_token1] = ACTIONS(1010), + [aux_sym_protocol_token1] = ACTIONS(1010), + [aux_sym_proxy_command_token1] = ACTIONS(1010), + [aux_sym_proxy_jump_token1] = ACTIONS(1010), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1010), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1010), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1010), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1010), + [aux_sym_rekey_limit_token1] = ACTIONS(1010), + [aux_sym_remote_command_token1] = ACTIONS(1010), + [aux_sym_remote_forward_token1] = ACTIONS(1010), + [aux_sym_request_tty_token1] = ACTIONS(1010), + [aux_sym_required_rsa_size_token1] = ACTIONS(1010), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1010), + [aux_sym_security_key_provider_token1] = ACTIONS(1010), + [aux_sym_send_env_token1] = ACTIONS(1010), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1010), + [aux_sym_server_alive_interval_token1] = ACTIONS(1010), + [aux_sym_session_type_token1] = ACTIONS(1010), + [aux_sym_set_env_token1] = ACTIONS(1010), + [aux_sym_stdin_null_token1] = ACTIONS(1010), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1010), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1010), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1010), + [aux_sym_syslog_facility_token1] = ACTIONS(1010), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1010), + [aux_sym_keep_alive_token1] = ACTIONS(1010), + [aux_sym_tunnel_token1] = ACTIONS(1012), + [aux_sym_tunnel_device_token1] = ACTIONS(1010), + [aux_sym_update_host_keys_token1] = ACTIONS(1010), + [aux_sym_use_keychain_token1] = ACTIONS(1010), + [aux_sym_use_roaming_token1] = ACTIONS(1010), + [aux_sym_user_token1] = ACTIONS(1012), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1010), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1010), + [aux_sym_visual_host_key_token1] = ACTIONS(1010), + [aux_sym_xauth_location_token1] = ACTIONS(1010), }, [513] = { - [ts_builtin_sym_end] = ACTIONS(3233), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3235), - [aux_sym_match_token1] = ACTIONS(3233), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3233), - [aux_sym_address_family_token1] = ACTIONS(3233), - [aux_sym_batch_mode_token1] = ACTIONS(3233), - [aux_sym_bind_address_token1] = ACTIONS(3233), - [aux_sym_bind_interface_token1] = ACTIONS(3233), - [aux_sym_canonical_domains_token1] = ACTIONS(3233), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3233), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3233), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3233), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3233), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3233), - [aux_sym_certificate_file_token1] = ACTIONS(3233), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3233), - [aux_sym_check_host_ip_token1] = ACTIONS(3233), - [aux_sym_ciphers_token1] = ACTIONS(3233), - [aux_sym_cipher_token1] = ACTIONS(3235), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3233), - [aux_sym_compression_token1] = ACTIONS(3233), - [aux_sym_connection_attempts_token1] = ACTIONS(3233), - [aux_sym_connect_timeout_token1] = ACTIONS(3233), - [aux_sym_control_master_token1] = ACTIONS(3233), - [aux_sym_control_path_token1] = ACTIONS(3233), - [aux_sym_control_persist_token1] = ACTIONS(3233), - [aux_sym_dynamic_forward_token1] = ACTIONS(3233), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3233), - [aux_sym_escape_char_token1] = ACTIONS(3233), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3233), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3233), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3233), - [aux_sym_forward_agent_token1] = ACTIONS(3233), - [aux_sym_forward_x11_token1] = ACTIONS(3235), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3233), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3233), - [aux_sym_gateway_ports_token1] = ACTIONS(3233), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3233), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3233), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3233), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3233), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3233), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3233), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3233), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3233), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3233), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3233), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3233), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3233), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3233), - [aux_sym_host_key_alias_token1] = ACTIONS(3233), - [aux_sym_hostname_token1] = ACTIONS(3233), - [aux_sym_identities_only_token1] = ACTIONS(3233), - [aux_sym_identity_agent_token1] = ACTIONS(3233), - [aux_sym_identity_file_token1] = ACTIONS(3233), - [aux_sym_ignore_unknown_token1] = ACTIONS(3233), - [aux_sym_include_token1] = ACTIONS(3233), - [aux_sym_ip_qos_token1] = ACTIONS(3233), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3233), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3233), - [aux_sym_kex_algorithms_token1] = ACTIONS(3233), - [aux_sym_known_hosts_command_token1] = ACTIONS(3233), - [aux_sym_local_command_token1] = ACTIONS(3233), - [aux_sym_local_forward_token1] = ACTIONS(3233), - [aux_sym_log_level_token1] = ACTIONS(3233), - [aux_sym_log_verbose_token1] = ACTIONS(3233), - [aux_sym_macs_token1] = ACTIONS(3233), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3233), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3233), - [aux_sym_password_authentication_token1] = ACTIONS(3233), - [aux_sym_permit_local_command_token1] = ACTIONS(3233), - [aux_sym_permit_remote_open_token1] = ACTIONS(3233), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3233), - [aux_sym_port_token1] = ACTIONS(3233), - [aux_sym_preferred_authentications_token1] = ACTIONS(3233), - [aux_sym_protocol_token1] = ACTIONS(3233), - [aux_sym_proxy_command_token1] = ACTIONS(3233), - [aux_sym_proxy_jump_token1] = ACTIONS(3233), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3233), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3233), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3233), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3233), - [aux_sym_rekey_limit_token1] = ACTIONS(3233), - [aux_sym_remote_command_token1] = ACTIONS(3233), - [aux_sym_remote_forward_token1] = ACTIONS(3233), - [aux_sym_request_tty_token1] = ACTIONS(3233), - [aux_sym_required_rsa_size_token1] = ACTIONS(3233), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3233), - [aux_sym_security_key_provider_token1] = ACTIONS(3233), - [aux_sym_send_env_token1] = ACTIONS(3233), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3233), - [aux_sym_server_alive_interval_token1] = ACTIONS(3233), - [aux_sym_session_type_token1] = ACTIONS(3233), - [aux_sym_set_env_token1] = ACTIONS(3233), - [aux_sym_stdin_null_token1] = ACTIONS(3233), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3233), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3233), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3233), - [aux_sym_syslog_facility_token1] = ACTIONS(3233), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3233), - [aux_sym_keep_alive_token1] = ACTIONS(3233), - [aux_sym_tunnel_token1] = ACTIONS(3235), - [aux_sym_tunnel_device_token1] = ACTIONS(3233), - [aux_sym_update_host_keys_token1] = ACTIONS(3233), - [aux_sym_use_keychain_token1] = ACTIONS(3233), - [aux_sym_use_roaming_token1] = ACTIONS(3233), - [aux_sym_user_token1] = ACTIONS(3235), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3233), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3233), - [aux_sym_visual_host_key_token1] = ACTIONS(3233), - [aux_sym_xauth_location_token1] = ACTIONS(3233), + [ts_builtin_sym_end] = ACTIONS(1202), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1204), + [aux_sym_match_token1] = ACTIONS(1202), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1202), + [aux_sym_address_family_token1] = ACTIONS(1202), + [aux_sym_batch_mode_token1] = ACTIONS(1202), + [aux_sym_bind_address_token1] = ACTIONS(1202), + [aux_sym_bind_interface_token1] = ACTIONS(1202), + [aux_sym_canonical_domains_token1] = ACTIONS(1202), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1202), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1202), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1202), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1202), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1202), + [aux_sym_certificate_file_token1] = ACTIONS(1202), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1202), + [aux_sym_check_host_ip_token1] = ACTIONS(1202), + [aux_sym_ciphers_token1] = ACTIONS(1202), + [aux_sym_cipher_token1] = ACTIONS(1204), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1202), + [aux_sym_compression_token1] = ACTIONS(1202), + [aux_sym_connection_attempts_token1] = ACTIONS(1202), + [aux_sym_connect_timeout_token1] = ACTIONS(1202), + [aux_sym_control_master_token1] = ACTIONS(1202), + [aux_sym_control_path_token1] = ACTIONS(1202), + [aux_sym_control_persist_token1] = ACTIONS(1202), + [aux_sym_dynamic_forward_token1] = ACTIONS(1202), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1202), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1202), + [aux_sym_escape_char_token1] = ACTIONS(1202), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1202), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1202), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1202), + [aux_sym_forward_agent_token1] = ACTIONS(1202), + [aux_sym_forward_x11_token1] = ACTIONS(1204), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1202), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1202), + [aux_sym_gateway_ports_token1] = ACTIONS(1202), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1202), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1202), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1202), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1202), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1202), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1202), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1202), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1202), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1202), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1202), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1202), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1202), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1202), + [aux_sym_host_key_alias_token1] = ACTIONS(1202), + [aux_sym_hostname_token1] = ACTIONS(1202), + [aux_sym_identities_only_token1] = ACTIONS(1202), + [aux_sym_identity_agent_token1] = ACTIONS(1202), + [aux_sym_identity_file_token1] = ACTIONS(1202), + [aux_sym_ignore_unknown_token1] = ACTIONS(1202), + [aux_sym_include_token1] = ACTIONS(1202), + [aux_sym_ip_qos_token1] = ACTIONS(1202), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1202), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1202), + [aux_sym_kex_algorithms_token1] = ACTIONS(1202), + [aux_sym_known_hosts_command_token1] = ACTIONS(1202), + [aux_sym_local_command_token1] = ACTIONS(1202), + [aux_sym_local_forward_token1] = ACTIONS(1202), + [aux_sym_log_level_token1] = ACTIONS(1202), + [aux_sym_log_verbose_token1] = ACTIONS(1202), + [aux_sym_macs_token1] = ACTIONS(1202), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1202), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1202), + [aux_sym_password_authentication_token1] = ACTIONS(1202), + [aux_sym_permit_local_command_token1] = ACTIONS(1202), + [aux_sym_permit_remote_open_token1] = ACTIONS(1202), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1202), + [aux_sym_port_token1] = ACTIONS(1202), + [aux_sym_preferred_authentications_token1] = ACTIONS(1202), + [aux_sym_protocol_token1] = ACTIONS(1202), + [aux_sym_proxy_command_token1] = ACTIONS(1202), + [aux_sym_proxy_jump_token1] = ACTIONS(1202), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1202), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1202), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1202), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1202), + [aux_sym_rekey_limit_token1] = ACTIONS(1202), + [aux_sym_remote_command_token1] = ACTIONS(1202), + [aux_sym_remote_forward_token1] = ACTIONS(1202), + [aux_sym_request_tty_token1] = ACTIONS(1202), + [aux_sym_required_rsa_size_token1] = ACTIONS(1202), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1202), + [aux_sym_security_key_provider_token1] = ACTIONS(1202), + [aux_sym_send_env_token1] = ACTIONS(1202), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1202), + [aux_sym_server_alive_interval_token1] = ACTIONS(1202), + [aux_sym_session_type_token1] = ACTIONS(1202), + [aux_sym_set_env_token1] = ACTIONS(1202), + [aux_sym_stdin_null_token1] = ACTIONS(1202), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1202), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1202), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1202), + [aux_sym_syslog_facility_token1] = ACTIONS(1202), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1202), + [aux_sym_keep_alive_token1] = ACTIONS(1202), + [aux_sym_tunnel_token1] = ACTIONS(1204), + [aux_sym_tunnel_device_token1] = ACTIONS(1202), + [aux_sym_update_host_keys_token1] = ACTIONS(1202), + [aux_sym_use_keychain_token1] = ACTIONS(1202), + [aux_sym_use_roaming_token1] = ACTIONS(1202), + [aux_sym_user_token1] = ACTIONS(1204), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1202), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1202), + [aux_sym_visual_host_key_token1] = ACTIONS(1202), + [aux_sym_xauth_location_token1] = ACTIONS(1202), }, [514] = { - [ts_builtin_sym_end] = ACTIONS(3237), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3239), - [aux_sym_match_token1] = ACTIONS(3237), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3237), - [aux_sym_address_family_token1] = ACTIONS(3237), - [aux_sym_batch_mode_token1] = ACTIONS(3237), - [aux_sym_bind_address_token1] = ACTIONS(3237), - [aux_sym_bind_interface_token1] = ACTIONS(3237), - [aux_sym_canonical_domains_token1] = ACTIONS(3237), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3237), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3237), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3237), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3237), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3237), - [aux_sym_certificate_file_token1] = ACTIONS(3237), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3237), - [aux_sym_check_host_ip_token1] = ACTIONS(3237), - [aux_sym_ciphers_token1] = ACTIONS(3237), - [aux_sym_cipher_token1] = ACTIONS(3239), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3237), - [aux_sym_compression_token1] = ACTIONS(3237), - [aux_sym_connection_attempts_token1] = ACTIONS(3237), - [aux_sym_connect_timeout_token1] = ACTIONS(3237), - [aux_sym_control_master_token1] = ACTIONS(3237), - [aux_sym_control_path_token1] = ACTIONS(3237), - [aux_sym_control_persist_token1] = ACTIONS(3237), - [aux_sym_dynamic_forward_token1] = ACTIONS(3237), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3237), - [aux_sym_escape_char_token1] = ACTIONS(3237), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3237), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3237), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3237), - [aux_sym_forward_agent_token1] = ACTIONS(3237), - [aux_sym_forward_x11_token1] = ACTIONS(3239), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3237), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3237), - [aux_sym_gateway_ports_token1] = ACTIONS(3237), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3237), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3237), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3237), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3237), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3237), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3237), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3237), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3237), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3237), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3237), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3237), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3237), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3237), - [aux_sym_host_key_alias_token1] = ACTIONS(3237), - [aux_sym_hostname_token1] = ACTIONS(3237), - [aux_sym_identities_only_token1] = ACTIONS(3237), - [aux_sym_identity_agent_token1] = ACTIONS(3237), - [aux_sym_identity_file_token1] = ACTIONS(3237), - [aux_sym_ignore_unknown_token1] = ACTIONS(3237), - [aux_sym_include_token1] = ACTIONS(3237), - [aux_sym_ip_qos_token1] = ACTIONS(3237), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3237), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3237), - [aux_sym_kex_algorithms_token1] = ACTIONS(3237), - [aux_sym_known_hosts_command_token1] = ACTIONS(3237), - [aux_sym_local_command_token1] = ACTIONS(3237), - [aux_sym_local_forward_token1] = ACTIONS(3237), - [aux_sym_log_level_token1] = ACTIONS(3237), - [aux_sym_log_verbose_token1] = ACTIONS(3237), - [aux_sym_macs_token1] = ACTIONS(3237), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3237), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3237), - [aux_sym_password_authentication_token1] = ACTIONS(3237), - [aux_sym_permit_local_command_token1] = ACTIONS(3237), - [aux_sym_permit_remote_open_token1] = ACTIONS(3237), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3237), - [aux_sym_port_token1] = ACTIONS(3237), - [aux_sym_preferred_authentications_token1] = ACTIONS(3237), - [aux_sym_protocol_token1] = ACTIONS(3237), - [aux_sym_proxy_command_token1] = ACTIONS(3237), - [aux_sym_proxy_jump_token1] = ACTIONS(3237), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3237), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3237), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3237), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3237), - [aux_sym_rekey_limit_token1] = ACTIONS(3237), - [aux_sym_remote_command_token1] = ACTIONS(3237), - [aux_sym_remote_forward_token1] = ACTIONS(3237), - [aux_sym_request_tty_token1] = ACTIONS(3237), - [aux_sym_required_rsa_size_token1] = ACTIONS(3237), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3237), - [aux_sym_security_key_provider_token1] = ACTIONS(3237), - [aux_sym_send_env_token1] = ACTIONS(3237), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3237), - [aux_sym_server_alive_interval_token1] = ACTIONS(3237), - [aux_sym_session_type_token1] = ACTIONS(3237), - [aux_sym_set_env_token1] = ACTIONS(3237), - [aux_sym_stdin_null_token1] = ACTIONS(3237), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3237), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3237), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3237), - [aux_sym_syslog_facility_token1] = ACTIONS(3237), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3237), - [aux_sym_keep_alive_token1] = ACTIONS(3237), - [aux_sym_tunnel_token1] = ACTIONS(3239), - [aux_sym_tunnel_device_token1] = ACTIONS(3237), - [aux_sym_update_host_keys_token1] = ACTIONS(3237), - [aux_sym_use_keychain_token1] = ACTIONS(3237), - [aux_sym_use_roaming_token1] = ACTIONS(3237), - [aux_sym_user_token1] = ACTIONS(3239), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3237), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3237), - [aux_sym_visual_host_key_token1] = ACTIONS(3237), - [aux_sym_xauth_location_token1] = ACTIONS(3237), + [ts_builtin_sym_end] = ACTIONS(3160), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3162), + [aux_sym_match_token1] = ACTIONS(3160), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3160), + [aux_sym_address_family_token1] = ACTIONS(3160), + [aux_sym_batch_mode_token1] = ACTIONS(3160), + [aux_sym_bind_address_token1] = ACTIONS(3160), + [aux_sym_bind_interface_token1] = ACTIONS(3160), + [aux_sym_canonical_domains_token1] = ACTIONS(3160), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3160), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3160), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3160), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3160), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3160), + [aux_sym_certificate_file_token1] = ACTIONS(3160), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3160), + [aux_sym_check_host_ip_token1] = ACTIONS(3160), + [aux_sym_ciphers_token1] = ACTIONS(3160), + [aux_sym_cipher_token1] = ACTIONS(3162), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3160), + [aux_sym_compression_token1] = ACTIONS(3160), + [aux_sym_connection_attempts_token1] = ACTIONS(3160), + [aux_sym_connect_timeout_token1] = ACTIONS(3160), + [aux_sym_control_master_token1] = ACTIONS(3160), + [aux_sym_control_path_token1] = ACTIONS(3160), + [aux_sym_control_persist_token1] = ACTIONS(3160), + [aux_sym_dynamic_forward_token1] = ACTIONS(3160), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3160), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3160), + [aux_sym_escape_char_token1] = ACTIONS(3160), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3160), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3160), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3160), + [aux_sym_forward_agent_token1] = ACTIONS(3160), + [aux_sym_forward_x11_token1] = ACTIONS(3162), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3160), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3160), + [aux_sym_gateway_ports_token1] = ACTIONS(3160), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3160), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3160), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3160), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3160), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3160), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3160), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3160), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3160), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3160), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3160), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3160), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3160), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3160), + [aux_sym_host_key_alias_token1] = ACTIONS(3160), + [aux_sym_hostname_token1] = ACTIONS(3160), + [aux_sym_identities_only_token1] = ACTIONS(3160), + [aux_sym_identity_agent_token1] = ACTIONS(3160), + [aux_sym_identity_file_token1] = ACTIONS(3160), + [aux_sym_ignore_unknown_token1] = ACTIONS(3160), + [aux_sym_include_token1] = ACTIONS(3160), + [aux_sym_ip_qos_token1] = ACTIONS(3160), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3160), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3160), + [aux_sym_kex_algorithms_token1] = ACTIONS(3160), + [aux_sym_known_hosts_command_token1] = ACTIONS(3160), + [aux_sym_local_command_token1] = ACTIONS(3160), + [aux_sym_local_forward_token1] = ACTIONS(3160), + [aux_sym_log_level_token1] = ACTIONS(3160), + [aux_sym_log_verbose_token1] = ACTIONS(3160), + [aux_sym_macs_token1] = ACTIONS(3160), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3160), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3160), + [aux_sym_password_authentication_token1] = ACTIONS(3160), + [aux_sym_permit_local_command_token1] = ACTIONS(3160), + [aux_sym_permit_remote_open_token1] = ACTIONS(3160), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3160), + [aux_sym_port_token1] = ACTIONS(3160), + [aux_sym_preferred_authentications_token1] = ACTIONS(3160), + [aux_sym_protocol_token1] = ACTIONS(3160), + [aux_sym_proxy_command_token1] = ACTIONS(3160), + [aux_sym_proxy_jump_token1] = ACTIONS(3160), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3160), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3160), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3160), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3160), + [aux_sym_rekey_limit_token1] = ACTIONS(3160), + [aux_sym_remote_command_token1] = ACTIONS(3160), + [aux_sym_remote_forward_token1] = ACTIONS(3160), + [aux_sym_request_tty_token1] = ACTIONS(3160), + [aux_sym_required_rsa_size_token1] = ACTIONS(3160), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3160), + [aux_sym_security_key_provider_token1] = ACTIONS(3160), + [aux_sym_send_env_token1] = ACTIONS(3160), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3160), + [aux_sym_server_alive_interval_token1] = ACTIONS(3160), + [aux_sym_session_type_token1] = ACTIONS(3160), + [aux_sym_set_env_token1] = ACTIONS(3160), + [aux_sym_stdin_null_token1] = ACTIONS(3160), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3160), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3160), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3160), + [aux_sym_syslog_facility_token1] = ACTIONS(3160), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3160), + [aux_sym_keep_alive_token1] = ACTIONS(3160), + [aux_sym_tunnel_token1] = ACTIONS(3162), + [aux_sym_tunnel_device_token1] = ACTIONS(3160), + [aux_sym_update_host_keys_token1] = ACTIONS(3160), + [aux_sym_use_keychain_token1] = ACTIONS(3160), + [aux_sym_use_roaming_token1] = ACTIONS(3160), + [aux_sym_user_token1] = ACTIONS(3162), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3160), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3160), + [aux_sym_visual_host_key_token1] = ACTIONS(3160), + [aux_sym_xauth_location_token1] = ACTIONS(3160), }, [515] = { - [ts_builtin_sym_end] = ACTIONS(3241), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3243), - [aux_sym_match_token1] = ACTIONS(3241), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3241), - [aux_sym_address_family_token1] = ACTIONS(3241), - [aux_sym_batch_mode_token1] = ACTIONS(3241), - [aux_sym_bind_address_token1] = ACTIONS(3241), - [aux_sym_bind_interface_token1] = ACTIONS(3241), - [aux_sym_canonical_domains_token1] = ACTIONS(3241), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3241), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3241), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3241), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3241), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3241), - [aux_sym_certificate_file_token1] = ACTIONS(3241), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3241), - [aux_sym_check_host_ip_token1] = ACTIONS(3241), - [aux_sym_ciphers_token1] = ACTIONS(3241), - [aux_sym_cipher_token1] = ACTIONS(3243), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3241), - [aux_sym_compression_token1] = ACTIONS(3241), - [aux_sym_connection_attempts_token1] = ACTIONS(3241), - [aux_sym_connect_timeout_token1] = ACTIONS(3241), - [aux_sym_control_master_token1] = ACTIONS(3241), - [aux_sym_control_path_token1] = ACTIONS(3241), - [aux_sym_control_persist_token1] = ACTIONS(3241), - [aux_sym_dynamic_forward_token1] = ACTIONS(3241), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3241), - [aux_sym_escape_char_token1] = ACTIONS(3241), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3241), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3241), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3241), - [aux_sym_forward_agent_token1] = ACTIONS(3241), - [aux_sym_forward_x11_token1] = ACTIONS(3243), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3241), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3241), - [aux_sym_gateway_ports_token1] = ACTIONS(3241), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3241), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3241), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3241), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3241), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3241), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3241), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3241), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3241), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3241), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3241), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3241), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3241), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3241), - [aux_sym_host_key_alias_token1] = ACTIONS(3241), - [aux_sym_hostname_token1] = ACTIONS(3241), - [aux_sym_identities_only_token1] = ACTIONS(3241), - [aux_sym_identity_agent_token1] = ACTIONS(3241), - [aux_sym_identity_file_token1] = ACTIONS(3241), - [aux_sym_ignore_unknown_token1] = ACTIONS(3241), - [aux_sym_include_token1] = ACTIONS(3241), - [aux_sym_ip_qos_token1] = ACTIONS(3241), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3241), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3241), - [aux_sym_kex_algorithms_token1] = ACTIONS(3241), - [aux_sym_known_hosts_command_token1] = ACTIONS(3241), - [aux_sym_local_command_token1] = ACTIONS(3241), - [aux_sym_local_forward_token1] = ACTIONS(3241), - [aux_sym_log_level_token1] = ACTIONS(3241), - [aux_sym_log_verbose_token1] = ACTIONS(3241), - [aux_sym_macs_token1] = ACTIONS(3241), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3241), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3241), - [aux_sym_password_authentication_token1] = ACTIONS(3241), - [aux_sym_permit_local_command_token1] = ACTIONS(3241), - [aux_sym_permit_remote_open_token1] = ACTIONS(3241), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3241), - [aux_sym_port_token1] = ACTIONS(3241), - [aux_sym_preferred_authentications_token1] = ACTIONS(3241), - [aux_sym_protocol_token1] = ACTIONS(3241), - [aux_sym_proxy_command_token1] = ACTIONS(3241), - [aux_sym_proxy_jump_token1] = ACTIONS(3241), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3241), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3241), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3241), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3241), - [aux_sym_rekey_limit_token1] = ACTIONS(3241), - [aux_sym_remote_command_token1] = ACTIONS(3241), - [aux_sym_remote_forward_token1] = ACTIONS(3241), - [aux_sym_request_tty_token1] = ACTIONS(3241), - [aux_sym_required_rsa_size_token1] = ACTIONS(3241), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3241), - [aux_sym_security_key_provider_token1] = ACTIONS(3241), - [aux_sym_send_env_token1] = ACTIONS(3241), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3241), - [aux_sym_server_alive_interval_token1] = ACTIONS(3241), - [aux_sym_session_type_token1] = ACTIONS(3241), - [aux_sym_set_env_token1] = ACTIONS(3241), - [aux_sym_stdin_null_token1] = ACTIONS(3241), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3241), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3241), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3241), - [aux_sym_syslog_facility_token1] = ACTIONS(3241), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3241), - [aux_sym_keep_alive_token1] = ACTIONS(3241), - [aux_sym_tunnel_token1] = ACTIONS(3243), - [aux_sym_tunnel_device_token1] = ACTIONS(3241), - [aux_sym_update_host_keys_token1] = ACTIONS(3241), - [aux_sym_use_keychain_token1] = ACTIONS(3241), - [aux_sym_use_roaming_token1] = ACTIONS(3241), - [aux_sym_user_token1] = ACTIONS(3243), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3241), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3241), - [aux_sym_visual_host_key_token1] = ACTIONS(3241), - [aux_sym_xauth_location_token1] = ACTIONS(3241), + [ts_builtin_sym_end] = ACTIONS(3164), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3166), + [aux_sym_match_token1] = ACTIONS(3164), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3164), + [aux_sym_address_family_token1] = ACTIONS(3164), + [aux_sym_batch_mode_token1] = ACTIONS(3164), + [aux_sym_bind_address_token1] = ACTIONS(3164), + [aux_sym_bind_interface_token1] = ACTIONS(3164), + [aux_sym_canonical_domains_token1] = ACTIONS(3164), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3164), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3164), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3164), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3164), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3164), + [aux_sym_certificate_file_token1] = ACTIONS(3164), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3164), + [aux_sym_check_host_ip_token1] = ACTIONS(3164), + [aux_sym_ciphers_token1] = ACTIONS(3164), + [aux_sym_cipher_token1] = ACTIONS(3166), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3164), + [aux_sym_compression_token1] = ACTIONS(3164), + [aux_sym_connection_attempts_token1] = ACTIONS(3164), + [aux_sym_connect_timeout_token1] = ACTIONS(3164), + [aux_sym_control_master_token1] = ACTIONS(3164), + [aux_sym_control_path_token1] = ACTIONS(3164), + [aux_sym_control_persist_token1] = ACTIONS(3164), + [aux_sym_dynamic_forward_token1] = ACTIONS(3164), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3164), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3164), + [aux_sym_escape_char_token1] = ACTIONS(3164), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3164), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3164), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3164), + [aux_sym_forward_agent_token1] = ACTIONS(3164), + [aux_sym_forward_x11_token1] = ACTIONS(3166), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3164), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3164), + [aux_sym_gateway_ports_token1] = ACTIONS(3164), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3164), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3164), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3164), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3164), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3164), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3164), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3164), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3164), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3164), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3164), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3164), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3164), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3164), + [aux_sym_host_key_alias_token1] = ACTIONS(3164), + [aux_sym_hostname_token1] = ACTIONS(3164), + [aux_sym_identities_only_token1] = ACTIONS(3164), + [aux_sym_identity_agent_token1] = ACTIONS(3164), + [aux_sym_identity_file_token1] = ACTIONS(3164), + [aux_sym_ignore_unknown_token1] = ACTIONS(3164), + [aux_sym_include_token1] = ACTIONS(3164), + [aux_sym_ip_qos_token1] = ACTIONS(3164), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3164), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3164), + [aux_sym_kex_algorithms_token1] = ACTIONS(3164), + [aux_sym_known_hosts_command_token1] = ACTIONS(3164), + [aux_sym_local_command_token1] = ACTIONS(3164), + [aux_sym_local_forward_token1] = ACTIONS(3164), + [aux_sym_log_level_token1] = ACTIONS(3164), + [aux_sym_log_verbose_token1] = ACTIONS(3164), + [aux_sym_macs_token1] = ACTIONS(3164), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3164), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3164), + [aux_sym_password_authentication_token1] = ACTIONS(3164), + [aux_sym_permit_local_command_token1] = ACTIONS(3164), + [aux_sym_permit_remote_open_token1] = ACTIONS(3164), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3164), + [aux_sym_port_token1] = ACTIONS(3164), + [aux_sym_preferred_authentications_token1] = ACTIONS(3164), + [aux_sym_protocol_token1] = ACTIONS(3164), + [aux_sym_proxy_command_token1] = ACTIONS(3164), + [aux_sym_proxy_jump_token1] = ACTIONS(3164), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3164), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3164), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3164), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3164), + [aux_sym_rekey_limit_token1] = ACTIONS(3164), + [aux_sym_remote_command_token1] = ACTIONS(3164), + [aux_sym_remote_forward_token1] = ACTIONS(3164), + [aux_sym_request_tty_token1] = ACTIONS(3164), + [aux_sym_required_rsa_size_token1] = ACTIONS(3164), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3164), + [aux_sym_security_key_provider_token1] = ACTIONS(3164), + [aux_sym_send_env_token1] = ACTIONS(3164), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3164), + [aux_sym_server_alive_interval_token1] = ACTIONS(3164), + [aux_sym_session_type_token1] = ACTIONS(3164), + [aux_sym_set_env_token1] = ACTIONS(3164), + [aux_sym_stdin_null_token1] = ACTIONS(3164), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3164), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3164), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3164), + [aux_sym_syslog_facility_token1] = ACTIONS(3164), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3164), + [aux_sym_keep_alive_token1] = ACTIONS(3164), + [aux_sym_tunnel_token1] = ACTIONS(3166), + [aux_sym_tunnel_device_token1] = ACTIONS(3164), + [aux_sym_update_host_keys_token1] = ACTIONS(3164), + [aux_sym_use_keychain_token1] = ACTIONS(3164), + [aux_sym_use_roaming_token1] = ACTIONS(3164), + [aux_sym_user_token1] = ACTIONS(3166), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3164), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3164), + [aux_sym_visual_host_key_token1] = ACTIONS(3164), + [aux_sym_xauth_location_token1] = ACTIONS(3164), }, [516] = { - [ts_builtin_sym_end] = ACTIONS(3245), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3247), - [aux_sym_match_token1] = ACTIONS(3245), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3245), - [aux_sym_address_family_token1] = ACTIONS(3245), - [aux_sym_batch_mode_token1] = ACTIONS(3245), - [aux_sym_bind_address_token1] = ACTIONS(3245), - [aux_sym_bind_interface_token1] = ACTIONS(3245), - [aux_sym_canonical_domains_token1] = ACTIONS(3245), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3245), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3245), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3245), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3245), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3245), - [aux_sym_certificate_file_token1] = ACTIONS(3245), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3245), - [aux_sym_check_host_ip_token1] = ACTIONS(3245), - [aux_sym_ciphers_token1] = ACTIONS(3245), - [aux_sym_cipher_token1] = ACTIONS(3247), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3245), - [aux_sym_compression_token1] = ACTIONS(3245), - [aux_sym_connection_attempts_token1] = ACTIONS(3245), - [aux_sym_connect_timeout_token1] = ACTIONS(3245), - [aux_sym_control_master_token1] = ACTIONS(3245), - [aux_sym_control_path_token1] = ACTIONS(3245), - [aux_sym_control_persist_token1] = ACTIONS(3245), - [aux_sym_dynamic_forward_token1] = ACTIONS(3245), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3245), - [aux_sym_escape_char_token1] = ACTIONS(3245), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3245), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3245), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3245), - [aux_sym_forward_agent_token1] = ACTIONS(3245), - [aux_sym_forward_x11_token1] = ACTIONS(3247), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3245), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3245), - [aux_sym_gateway_ports_token1] = ACTIONS(3245), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3245), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3245), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3245), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3245), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3245), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3245), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3245), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3245), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3245), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3245), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3245), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3245), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3245), - [aux_sym_host_key_alias_token1] = ACTIONS(3245), - [aux_sym_hostname_token1] = ACTIONS(3245), - [aux_sym_identities_only_token1] = ACTIONS(3245), - [aux_sym_identity_agent_token1] = ACTIONS(3245), - [aux_sym_identity_file_token1] = ACTIONS(3245), - [aux_sym_ignore_unknown_token1] = ACTIONS(3245), - [aux_sym_include_token1] = ACTIONS(3245), - [aux_sym_ip_qos_token1] = ACTIONS(3245), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3245), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3245), - [aux_sym_kex_algorithms_token1] = ACTIONS(3245), - [aux_sym_known_hosts_command_token1] = ACTIONS(3245), - [aux_sym_local_command_token1] = ACTIONS(3245), - [aux_sym_local_forward_token1] = ACTIONS(3245), - [aux_sym_log_level_token1] = ACTIONS(3245), - [aux_sym_log_verbose_token1] = ACTIONS(3245), - [aux_sym_macs_token1] = ACTIONS(3245), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3245), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3245), - [aux_sym_password_authentication_token1] = ACTIONS(3245), - [aux_sym_permit_local_command_token1] = ACTIONS(3245), - [aux_sym_permit_remote_open_token1] = ACTIONS(3245), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3245), - [aux_sym_port_token1] = ACTIONS(3245), - [aux_sym_preferred_authentications_token1] = ACTIONS(3245), - [aux_sym_protocol_token1] = ACTIONS(3245), - [aux_sym_proxy_command_token1] = ACTIONS(3245), - [aux_sym_proxy_jump_token1] = ACTIONS(3245), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3245), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3245), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3245), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3245), - [aux_sym_rekey_limit_token1] = ACTIONS(3245), - [aux_sym_remote_command_token1] = ACTIONS(3245), - [aux_sym_remote_forward_token1] = ACTIONS(3245), - [aux_sym_request_tty_token1] = ACTIONS(3245), - [aux_sym_required_rsa_size_token1] = ACTIONS(3245), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3245), - [aux_sym_security_key_provider_token1] = ACTIONS(3245), - [aux_sym_send_env_token1] = ACTIONS(3245), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3245), - [aux_sym_server_alive_interval_token1] = ACTIONS(3245), - [aux_sym_session_type_token1] = ACTIONS(3245), - [aux_sym_set_env_token1] = ACTIONS(3245), - [aux_sym_stdin_null_token1] = ACTIONS(3245), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3245), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3245), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3245), - [aux_sym_syslog_facility_token1] = ACTIONS(3245), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3245), - [aux_sym_keep_alive_token1] = ACTIONS(3245), - [aux_sym_tunnel_token1] = ACTIONS(3247), - [aux_sym_tunnel_device_token1] = ACTIONS(3245), - [aux_sym_update_host_keys_token1] = ACTIONS(3245), - [aux_sym_use_keychain_token1] = ACTIONS(3245), - [aux_sym_use_roaming_token1] = ACTIONS(3245), - [aux_sym_user_token1] = ACTIONS(3247), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3245), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3245), - [aux_sym_visual_host_key_token1] = ACTIONS(3245), - [aux_sym_xauth_location_token1] = ACTIONS(3245), + [ts_builtin_sym_end] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3170), + [aux_sym_match_token1] = ACTIONS(3168), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3168), + [aux_sym_address_family_token1] = ACTIONS(3168), + [aux_sym_batch_mode_token1] = ACTIONS(3168), + [aux_sym_bind_address_token1] = ACTIONS(3168), + [aux_sym_bind_interface_token1] = ACTIONS(3168), + [aux_sym_canonical_domains_token1] = ACTIONS(3168), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3168), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3168), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3168), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3168), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3168), + [aux_sym_certificate_file_token1] = ACTIONS(3168), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3168), + [aux_sym_check_host_ip_token1] = ACTIONS(3168), + [aux_sym_ciphers_token1] = ACTIONS(3168), + [aux_sym_cipher_token1] = ACTIONS(3170), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3168), + [aux_sym_compression_token1] = ACTIONS(3168), + [aux_sym_connection_attempts_token1] = ACTIONS(3168), + [aux_sym_connect_timeout_token1] = ACTIONS(3168), + [aux_sym_control_master_token1] = ACTIONS(3168), + [aux_sym_control_path_token1] = ACTIONS(3168), + [aux_sym_control_persist_token1] = ACTIONS(3168), + [aux_sym_dynamic_forward_token1] = ACTIONS(3168), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3168), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3168), + [aux_sym_escape_char_token1] = ACTIONS(3168), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3168), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3168), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3168), + [aux_sym_forward_agent_token1] = ACTIONS(3168), + [aux_sym_forward_x11_token1] = ACTIONS(3170), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3168), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3168), + [aux_sym_gateway_ports_token1] = ACTIONS(3168), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3168), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3168), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3168), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3168), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3168), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3168), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3168), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3168), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3168), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3168), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3168), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3168), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3168), + [aux_sym_host_key_alias_token1] = ACTIONS(3168), + [aux_sym_hostname_token1] = ACTIONS(3168), + [aux_sym_identities_only_token1] = ACTIONS(3168), + [aux_sym_identity_agent_token1] = ACTIONS(3168), + [aux_sym_identity_file_token1] = ACTIONS(3168), + [aux_sym_ignore_unknown_token1] = ACTIONS(3168), + [aux_sym_include_token1] = ACTIONS(3168), + [aux_sym_ip_qos_token1] = ACTIONS(3168), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3168), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3168), + [aux_sym_kex_algorithms_token1] = ACTIONS(3168), + [aux_sym_known_hosts_command_token1] = ACTIONS(3168), + [aux_sym_local_command_token1] = ACTIONS(3168), + [aux_sym_local_forward_token1] = ACTIONS(3168), + [aux_sym_log_level_token1] = ACTIONS(3168), + [aux_sym_log_verbose_token1] = ACTIONS(3168), + [aux_sym_macs_token1] = ACTIONS(3168), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3168), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3168), + [aux_sym_password_authentication_token1] = ACTIONS(3168), + [aux_sym_permit_local_command_token1] = ACTIONS(3168), + [aux_sym_permit_remote_open_token1] = ACTIONS(3168), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3168), + [aux_sym_port_token1] = ACTIONS(3168), + [aux_sym_preferred_authentications_token1] = ACTIONS(3168), + [aux_sym_protocol_token1] = ACTIONS(3168), + [aux_sym_proxy_command_token1] = ACTIONS(3168), + [aux_sym_proxy_jump_token1] = ACTIONS(3168), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3168), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3168), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3168), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3168), + [aux_sym_rekey_limit_token1] = ACTIONS(3168), + [aux_sym_remote_command_token1] = ACTIONS(3168), + [aux_sym_remote_forward_token1] = ACTIONS(3168), + [aux_sym_request_tty_token1] = ACTIONS(3168), + [aux_sym_required_rsa_size_token1] = ACTIONS(3168), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3168), + [aux_sym_security_key_provider_token1] = ACTIONS(3168), + [aux_sym_send_env_token1] = ACTIONS(3168), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3168), + [aux_sym_server_alive_interval_token1] = ACTIONS(3168), + [aux_sym_session_type_token1] = ACTIONS(3168), + [aux_sym_set_env_token1] = ACTIONS(3168), + [aux_sym_stdin_null_token1] = ACTIONS(3168), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3168), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3168), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3168), + [aux_sym_syslog_facility_token1] = ACTIONS(3168), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3168), + [aux_sym_keep_alive_token1] = ACTIONS(3168), + [aux_sym_tunnel_token1] = ACTIONS(3170), + [aux_sym_tunnel_device_token1] = ACTIONS(3168), + [aux_sym_update_host_keys_token1] = ACTIONS(3168), + [aux_sym_use_keychain_token1] = ACTIONS(3168), + [aux_sym_use_roaming_token1] = ACTIONS(3168), + [aux_sym_user_token1] = ACTIONS(3170), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3168), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3168), + [aux_sym_visual_host_key_token1] = ACTIONS(3168), + [aux_sym_xauth_location_token1] = ACTIONS(3168), }, [517] = { - [ts_builtin_sym_end] = ACTIONS(3249), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3251), - [aux_sym_match_token1] = ACTIONS(3249), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3249), - [aux_sym_address_family_token1] = ACTIONS(3249), - [aux_sym_batch_mode_token1] = ACTIONS(3249), - [aux_sym_bind_address_token1] = ACTIONS(3249), - [aux_sym_bind_interface_token1] = ACTIONS(3249), - [aux_sym_canonical_domains_token1] = ACTIONS(3249), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3249), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3249), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3249), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3249), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3249), - [aux_sym_certificate_file_token1] = ACTIONS(3249), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3249), - [aux_sym_check_host_ip_token1] = ACTIONS(3249), - [aux_sym_ciphers_token1] = ACTIONS(3249), - [aux_sym_cipher_token1] = ACTIONS(3251), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3249), - [aux_sym_compression_token1] = ACTIONS(3249), - [aux_sym_connection_attempts_token1] = ACTIONS(3249), - [aux_sym_connect_timeout_token1] = ACTIONS(3249), - [aux_sym_control_master_token1] = ACTIONS(3249), - [aux_sym_control_path_token1] = ACTIONS(3249), - [aux_sym_control_persist_token1] = ACTIONS(3249), - [aux_sym_dynamic_forward_token1] = ACTIONS(3249), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3249), - [aux_sym_escape_char_token1] = ACTIONS(3249), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3249), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3249), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3249), - [aux_sym_forward_agent_token1] = ACTIONS(3249), - [aux_sym_forward_x11_token1] = ACTIONS(3251), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3249), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3249), - [aux_sym_gateway_ports_token1] = ACTIONS(3249), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3249), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3249), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3249), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3249), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3249), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3249), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3249), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3249), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3249), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3249), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3249), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3249), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3249), - [aux_sym_host_key_alias_token1] = ACTIONS(3249), - [aux_sym_hostname_token1] = ACTIONS(3249), - [aux_sym_identities_only_token1] = ACTIONS(3249), - [aux_sym_identity_agent_token1] = ACTIONS(3249), - [aux_sym_identity_file_token1] = ACTIONS(3249), - [aux_sym_ignore_unknown_token1] = ACTIONS(3249), - [aux_sym_include_token1] = ACTIONS(3249), - [aux_sym_ip_qos_token1] = ACTIONS(3249), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3249), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3249), - [aux_sym_kex_algorithms_token1] = ACTIONS(3249), - [aux_sym_known_hosts_command_token1] = ACTIONS(3249), - [aux_sym_local_command_token1] = ACTIONS(3249), - [aux_sym_local_forward_token1] = ACTIONS(3249), - [aux_sym_log_level_token1] = ACTIONS(3249), - [aux_sym_log_verbose_token1] = ACTIONS(3249), - [aux_sym_macs_token1] = ACTIONS(3249), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3249), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3249), - [aux_sym_password_authentication_token1] = ACTIONS(3249), - [aux_sym_permit_local_command_token1] = ACTIONS(3249), - [aux_sym_permit_remote_open_token1] = ACTIONS(3249), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3249), - [aux_sym_port_token1] = ACTIONS(3249), - [aux_sym_preferred_authentications_token1] = ACTIONS(3249), - [aux_sym_protocol_token1] = ACTIONS(3249), - [aux_sym_proxy_command_token1] = ACTIONS(3249), - [aux_sym_proxy_jump_token1] = ACTIONS(3249), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3249), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3249), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3249), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3249), - [aux_sym_rekey_limit_token1] = ACTIONS(3249), - [aux_sym_remote_command_token1] = ACTIONS(3249), - [aux_sym_remote_forward_token1] = ACTIONS(3249), - [aux_sym_request_tty_token1] = ACTIONS(3249), - [aux_sym_required_rsa_size_token1] = ACTIONS(3249), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3249), - [aux_sym_security_key_provider_token1] = ACTIONS(3249), - [aux_sym_send_env_token1] = ACTIONS(3249), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3249), - [aux_sym_server_alive_interval_token1] = ACTIONS(3249), - [aux_sym_session_type_token1] = ACTIONS(3249), - [aux_sym_set_env_token1] = ACTIONS(3249), - [aux_sym_stdin_null_token1] = ACTIONS(3249), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3249), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3249), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3249), - [aux_sym_syslog_facility_token1] = ACTIONS(3249), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3249), - [aux_sym_keep_alive_token1] = ACTIONS(3249), - [aux_sym_tunnel_token1] = ACTIONS(3251), - [aux_sym_tunnel_device_token1] = ACTIONS(3249), - [aux_sym_update_host_keys_token1] = ACTIONS(3249), - [aux_sym_use_keychain_token1] = ACTIONS(3249), - [aux_sym_use_roaming_token1] = ACTIONS(3249), - [aux_sym_user_token1] = ACTIONS(3251), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3249), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3249), - [aux_sym_visual_host_key_token1] = ACTIONS(3249), - [aux_sym_xauth_location_token1] = ACTIONS(3249), + [ts_builtin_sym_end] = ACTIONS(3172), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3174), + [aux_sym_match_token1] = ACTIONS(3172), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3172), + [aux_sym_address_family_token1] = ACTIONS(3172), + [aux_sym_batch_mode_token1] = ACTIONS(3172), + [aux_sym_bind_address_token1] = ACTIONS(3172), + [aux_sym_bind_interface_token1] = ACTIONS(3172), + [aux_sym_canonical_domains_token1] = ACTIONS(3172), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3172), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3172), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3172), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3172), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3172), + [aux_sym_certificate_file_token1] = ACTIONS(3172), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3172), + [aux_sym_check_host_ip_token1] = ACTIONS(3172), + [aux_sym_ciphers_token1] = ACTIONS(3172), + [aux_sym_cipher_token1] = ACTIONS(3174), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3172), + [aux_sym_compression_token1] = ACTIONS(3172), + [aux_sym_connection_attempts_token1] = ACTIONS(3172), + [aux_sym_connect_timeout_token1] = ACTIONS(3172), + [aux_sym_control_master_token1] = ACTIONS(3172), + [aux_sym_control_path_token1] = ACTIONS(3172), + [aux_sym_control_persist_token1] = ACTIONS(3172), + [aux_sym_dynamic_forward_token1] = ACTIONS(3172), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3172), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3172), + [aux_sym_escape_char_token1] = ACTIONS(3172), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3172), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3172), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3172), + [aux_sym_forward_agent_token1] = ACTIONS(3172), + [aux_sym_forward_x11_token1] = ACTIONS(3174), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3172), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3172), + [aux_sym_gateway_ports_token1] = ACTIONS(3172), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3172), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3172), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3172), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3172), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3172), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3172), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3172), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3172), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3172), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3172), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3172), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3172), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3172), + [aux_sym_host_key_alias_token1] = ACTIONS(3172), + [aux_sym_hostname_token1] = ACTIONS(3172), + [aux_sym_identities_only_token1] = ACTIONS(3172), + [aux_sym_identity_agent_token1] = ACTIONS(3172), + [aux_sym_identity_file_token1] = ACTIONS(3172), + [aux_sym_ignore_unknown_token1] = ACTIONS(3172), + [aux_sym_include_token1] = ACTIONS(3172), + [aux_sym_ip_qos_token1] = ACTIONS(3172), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3172), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3172), + [aux_sym_kex_algorithms_token1] = ACTIONS(3172), + [aux_sym_known_hosts_command_token1] = ACTIONS(3172), + [aux_sym_local_command_token1] = ACTIONS(3172), + [aux_sym_local_forward_token1] = ACTIONS(3172), + [aux_sym_log_level_token1] = ACTIONS(3172), + [aux_sym_log_verbose_token1] = ACTIONS(3172), + [aux_sym_macs_token1] = ACTIONS(3172), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3172), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3172), + [aux_sym_password_authentication_token1] = ACTIONS(3172), + [aux_sym_permit_local_command_token1] = ACTIONS(3172), + [aux_sym_permit_remote_open_token1] = ACTIONS(3172), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3172), + [aux_sym_port_token1] = ACTIONS(3172), + [aux_sym_preferred_authentications_token1] = ACTIONS(3172), + [aux_sym_protocol_token1] = ACTIONS(3172), + [aux_sym_proxy_command_token1] = ACTIONS(3172), + [aux_sym_proxy_jump_token1] = ACTIONS(3172), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3172), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3172), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3172), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3172), + [aux_sym_rekey_limit_token1] = ACTIONS(3172), + [aux_sym_remote_command_token1] = ACTIONS(3172), + [aux_sym_remote_forward_token1] = ACTIONS(3172), + [aux_sym_request_tty_token1] = ACTIONS(3172), + [aux_sym_required_rsa_size_token1] = ACTIONS(3172), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3172), + [aux_sym_security_key_provider_token1] = ACTIONS(3172), + [aux_sym_send_env_token1] = ACTIONS(3172), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3172), + [aux_sym_server_alive_interval_token1] = ACTIONS(3172), + [aux_sym_session_type_token1] = ACTIONS(3172), + [aux_sym_set_env_token1] = ACTIONS(3172), + [aux_sym_stdin_null_token1] = ACTIONS(3172), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3172), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3172), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3172), + [aux_sym_syslog_facility_token1] = ACTIONS(3172), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3172), + [aux_sym_keep_alive_token1] = ACTIONS(3172), + [aux_sym_tunnel_token1] = ACTIONS(3174), + [aux_sym_tunnel_device_token1] = ACTIONS(3172), + [aux_sym_update_host_keys_token1] = ACTIONS(3172), + [aux_sym_use_keychain_token1] = ACTIONS(3172), + [aux_sym_use_roaming_token1] = ACTIONS(3172), + [aux_sym_user_token1] = ACTIONS(3174), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3172), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3172), + [aux_sym_visual_host_key_token1] = ACTIONS(3172), + [aux_sym_xauth_location_token1] = ACTIONS(3172), }, [518] = { - [ts_builtin_sym_end] = ACTIONS(3253), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3255), - [aux_sym_match_token1] = ACTIONS(3253), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3253), - [aux_sym_address_family_token1] = ACTIONS(3253), - [aux_sym_batch_mode_token1] = ACTIONS(3253), - [aux_sym_bind_address_token1] = ACTIONS(3253), - [aux_sym_bind_interface_token1] = ACTIONS(3253), - [aux_sym_canonical_domains_token1] = ACTIONS(3253), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3253), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3253), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3253), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3253), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3253), - [aux_sym_certificate_file_token1] = ACTIONS(3253), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3253), - [aux_sym_check_host_ip_token1] = ACTIONS(3253), - [aux_sym_ciphers_token1] = ACTIONS(3253), - [aux_sym_cipher_token1] = ACTIONS(3255), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3253), - [aux_sym_compression_token1] = ACTIONS(3253), - [aux_sym_connection_attempts_token1] = ACTIONS(3253), - [aux_sym_connect_timeout_token1] = ACTIONS(3253), - [aux_sym_control_master_token1] = ACTIONS(3253), - [aux_sym_control_path_token1] = ACTIONS(3253), - [aux_sym_control_persist_token1] = ACTIONS(3253), - [aux_sym_dynamic_forward_token1] = ACTIONS(3253), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3253), - [aux_sym_escape_char_token1] = ACTIONS(3253), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3253), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3253), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3253), - [aux_sym_forward_agent_token1] = ACTIONS(3253), - [aux_sym_forward_x11_token1] = ACTIONS(3255), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3253), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3253), - [aux_sym_gateway_ports_token1] = ACTIONS(3253), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3253), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3253), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3253), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3253), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3253), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3253), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3253), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3253), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3253), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3253), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3253), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3253), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3253), - [aux_sym_host_key_alias_token1] = ACTIONS(3253), - [aux_sym_hostname_token1] = ACTIONS(3253), - [aux_sym_identities_only_token1] = ACTIONS(3253), - [aux_sym_identity_agent_token1] = ACTIONS(3253), - [aux_sym_identity_file_token1] = ACTIONS(3253), - [aux_sym_ignore_unknown_token1] = ACTIONS(3253), - [aux_sym_include_token1] = ACTIONS(3253), - [aux_sym_ip_qos_token1] = ACTIONS(3253), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3253), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3253), - [aux_sym_kex_algorithms_token1] = ACTIONS(3253), - [aux_sym_known_hosts_command_token1] = ACTIONS(3253), - [aux_sym_local_command_token1] = ACTIONS(3253), - [aux_sym_local_forward_token1] = ACTIONS(3253), - [aux_sym_log_level_token1] = ACTIONS(3253), - [aux_sym_log_verbose_token1] = ACTIONS(3253), - [aux_sym_macs_token1] = ACTIONS(3253), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3253), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3253), - [aux_sym_password_authentication_token1] = ACTIONS(3253), - [aux_sym_permit_local_command_token1] = ACTIONS(3253), - [aux_sym_permit_remote_open_token1] = ACTIONS(3253), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3253), - [aux_sym_port_token1] = ACTIONS(3253), - [aux_sym_preferred_authentications_token1] = ACTIONS(3253), - [aux_sym_protocol_token1] = ACTIONS(3253), - [aux_sym_proxy_command_token1] = ACTIONS(3253), - [aux_sym_proxy_jump_token1] = ACTIONS(3253), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3253), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3253), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3253), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3253), - [aux_sym_rekey_limit_token1] = ACTIONS(3253), - [aux_sym_remote_command_token1] = ACTIONS(3253), - [aux_sym_remote_forward_token1] = ACTIONS(3253), - [aux_sym_request_tty_token1] = ACTIONS(3253), - [aux_sym_required_rsa_size_token1] = ACTIONS(3253), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3253), - [aux_sym_security_key_provider_token1] = ACTIONS(3253), - [aux_sym_send_env_token1] = ACTIONS(3253), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3253), - [aux_sym_server_alive_interval_token1] = ACTIONS(3253), - [aux_sym_session_type_token1] = ACTIONS(3253), - [aux_sym_set_env_token1] = ACTIONS(3253), - [aux_sym_stdin_null_token1] = ACTIONS(3253), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3253), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3253), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3253), - [aux_sym_syslog_facility_token1] = ACTIONS(3253), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3253), - [aux_sym_keep_alive_token1] = ACTIONS(3253), - [aux_sym_tunnel_token1] = ACTIONS(3255), - [aux_sym_tunnel_device_token1] = ACTIONS(3253), - [aux_sym_update_host_keys_token1] = ACTIONS(3253), - [aux_sym_use_keychain_token1] = ACTIONS(3253), - [aux_sym_use_roaming_token1] = ACTIONS(3253), - [aux_sym_user_token1] = ACTIONS(3255), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3253), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3253), - [aux_sym_visual_host_key_token1] = ACTIONS(3253), - [aux_sym_xauth_location_token1] = ACTIONS(3253), + [ts_builtin_sym_end] = ACTIONS(3176), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3178), + [aux_sym_match_token1] = ACTIONS(3176), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3176), + [aux_sym_address_family_token1] = ACTIONS(3176), + [aux_sym_batch_mode_token1] = ACTIONS(3176), + [aux_sym_bind_address_token1] = ACTIONS(3176), + [aux_sym_bind_interface_token1] = ACTIONS(3176), + [aux_sym_canonical_domains_token1] = ACTIONS(3176), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3176), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3176), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3176), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3176), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3176), + [aux_sym_certificate_file_token1] = ACTIONS(3176), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3176), + [aux_sym_check_host_ip_token1] = ACTIONS(3176), + [aux_sym_ciphers_token1] = ACTIONS(3176), + [aux_sym_cipher_token1] = ACTIONS(3178), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3176), + [aux_sym_compression_token1] = ACTIONS(3176), + [aux_sym_connection_attempts_token1] = ACTIONS(3176), + [aux_sym_connect_timeout_token1] = ACTIONS(3176), + [aux_sym_control_master_token1] = ACTIONS(3176), + [aux_sym_control_path_token1] = ACTIONS(3176), + [aux_sym_control_persist_token1] = ACTIONS(3176), + [aux_sym_dynamic_forward_token1] = ACTIONS(3176), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3176), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3176), + [aux_sym_escape_char_token1] = ACTIONS(3176), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3176), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3176), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3176), + [aux_sym_forward_agent_token1] = ACTIONS(3176), + [aux_sym_forward_x11_token1] = ACTIONS(3178), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3176), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3176), + [aux_sym_gateway_ports_token1] = ACTIONS(3176), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3176), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3176), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3176), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3176), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3176), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3176), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3176), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3176), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3176), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3176), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3176), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3176), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3176), + [aux_sym_host_key_alias_token1] = ACTIONS(3176), + [aux_sym_hostname_token1] = ACTIONS(3176), + [aux_sym_identities_only_token1] = ACTIONS(3176), + [aux_sym_identity_agent_token1] = ACTIONS(3176), + [aux_sym_identity_file_token1] = ACTIONS(3176), + [aux_sym_ignore_unknown_token1] = ACTIONS(3176), + [aux_sym_include_token1] = ACTIONS(3176), + [aux_sym_ip_qos_token1] = ACTIONS(3176), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3176), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3176), + [aux_sym_kex_algorithms_token1] = ACTIONS(3176), + [aux_sym_known_hosts_command_token1] = ACTIONS(3176), + [aux_sym_local_command_token1] = ACTIONS(3176), + [aux_sym_local_forward_token1] = ACTIONS(3176), + [aux_sym_log_level_token1] = ACTIONS(3176), + [aux_sym_log_verbose_token1] = ACTIONS(3176), + [aux_sym_macs_token1] = ACTIONS(3176), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3176), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3176), + [aux_sym_password_authentication_token1] = ACTIONS(3176), + [aux_sym_permit_local_command_token1] = ACTIONS(3176), + [aux_sym_permit_remote_open_token1] = ACTIONS(3176), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3176), + [aux_sym_port_token1] = ACTIONS(3176), + [aux_sym_preferred_authentications_token1] = ACTIONS(3176), + [aux_sym_protocol_token1] = ACTIONS(3176), + [aux_sym_proxy_command_token1] = ACTIONS(3176), + [aux_sym_proxy_jump_token1] = ACTIONS(3176), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3176), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3176), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3176), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3176), + [aux_sym_rekey_limit_token1] = ACTIONS(3176), + [aux_sym_remote_command_token1] = ACTIONS(3176), + [aux_sym_remote_forward_token1] = ACTIONS(3176), + [aux_sym_request_tty_token1] = ACTIONS(3176), + [aux_sym_required_rsa_size_token1] = ACTIONS(3176), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3176), + [aux_sym_security_key_provider_token1] = ACTIONS(3176), + [aux_sym_send_env_token1] = ACTIONS(3176), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3176), + [aux_sym_server_alive_interval_token1] = ACTIONS(3176), + [aux_sym_session_type_token1] = ACTIONS(3176), + [aux_sym_set_env_token1] = ACTIONS(3176), + [aux_sym_stdin_null_token1] = ACTIONS(3176), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3176), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3176), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3176), + [aux_sym_syslog_facility_token1] = ACTIONS(3176), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3176), + [aux_sym_keep_alive_token1] = ACTIONS(3176), + [aux_sym_tunnel_token1] = ACTIONS(3178), + [aux_sym_tunnel_device_token1] = ACTIONS(3176), + [aux_sym_update_host_keys_token1] = ACTIONS(3176), + [aux_sym_use_keychain_token1] = ACTIONS(3176), + [aux_sym_use_roaming_token1] = ACTIONS(3176), + [aux_sym_user_token1] = ACTIONS(3178), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3176), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3176), + [aux_sym_visual_host_key_token1] = ACTIONS(3176), + [aux_sym_xauth_location_token1] = ACTIONS(3176), }, [519] = { - [ts_builtin_sym_end] = ACTIONS(3257), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3259), - [aux_sym_match_token1] = ACTIONS(3257), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3257), - [aux_sym_address_family_token1] = ACTIONS(3257), - [aux_sym_batch_mode_token1] = ACTIONS(3257), - [aux_sym_bind_address_token1] = ACTIONS(3257), - [aux_sym_bind_interface_token1] = ACTIONS(3257), - [aux_sym_canonical_domains_token1] = ACTIONS(3257), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3257), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3257), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3257), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3257), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3257), - [aux_sym_certificate_file_token1] = ACTIONS(3257), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3257), - [aux_sym_check_host_ip_token1] = ACTIONS(3257), - [aux_sym_ciphers_token1] = ACTIONS(3257), - [aux_sym_cipher_token1] = ACTIONS(3259), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3257), - [aux_sym_compression_token1] = ACTIONS(3257), - [aux_sym_connection_attempts_token1] = ACTIONS(3257), - [aux_sym_connect_timeout_token1] = ACTIONS(3257), - [aux_sym_control_master_token1] = ACTIONS(3257), - [aux_sym_control_path_token1] = ACTIONS(3257), - [aux_sym_control_persist_token1] = ACTIONS(3257), - [aux_sym_dynamic_forward_token1] = ACTIONS(3257), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3257), - [aux_sym_escape_char_token1] = ACTIONS(3257), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3257), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3257), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3257), - [aux_sym_forward_agent_token1] = ACTIONS(3257), - [aux_sym_forward_x11_token1] = ACTIONS(3259), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3257), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3257), - [aux_sym_gateway_ports_token1] = ACTIONS(3257), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3257), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3257), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3257), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3257), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3257), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3257), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3257), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3257), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3257), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3257), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3257), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3257), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3257), - [aux_sym_host_key_alias_token1] = ACTIONS(3257), - [aux_sym_hostname_token1] = ACTIONS(3257), - [aux_sym_identities_only_token1] = ACTIONS(3257), - [aux_sym_identity_agent_token1] = ACTIONS(3257), - [aux_sym_identity_file_token1] = ACTIONS(3257), - [aux_sym_ignore_unknown_token1] = ACTIONS(3257), - [aux_sym_include_token1] = ACTIONS(3257), - [aux_sym_ip_qos_token1] = ACTIONS(3257), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3257), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3257), - [aux_sym_kex_algorithms_token1] = ACTIONS(3257), - [aux_sym_known_hosts_command_token1] = ACTIONS(3257), - [aux_sym_local_command_token1] = ACTIONS(3257), - [aux_sym_local_forward_token1] = ACTIONS(3257), - [aux_sym_log_level_token1] = ACTIONS(3257), - [aux_sym_log_verbose_token1] = ACTIONS(3257), - [aux_sym_macs_token1] = ACTIONS(3257), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3257), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3257), - [aux_sym_password_authentication_token1] = ACTIONS(3257), - [aux_sym_permit_local_command_token1] = ACTIONS(3257), - [aux_sym_permit_remote_open_token1] = ACTIONS(3257), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3257), - [aux_sym_port_token1] = ACTIONS(3257), - [aux_sym_preferred_authentications_token1] = ACTIONS(3257), - [aux_sym_protocol_token1] = ACTIONS(3257), - [aux_sym_proxy_command_token1] = ACTIONS(3257), - [aux_sym_proxy_jump_token1] = ACTIONS(3257), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3257), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3257), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3257), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3257), - [aux_sym_rekey_limit_token1] = ACTIONS(3257), - [aux_sym_remote_command_token1] = ACTIONS(3257), - [aux_sym_remote_forward_token1] = ACTIONS(3257), - [aux_sym_request_tty_token1] = ACTIONS(3257), - [aux_sym_required_rsa_size_token1] = ACTIONS(3257), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3257), - [aux_sym_security_key_provider_token1] = ACTIONS(3257), - [aux_sym_send_env_token1] = ACTIONS(3257), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3257), - [aux_sym_server_alive_interval_token1] = ACTIONS(3257), - [aux_sym_session_type_token1] = ACTIONS(3257), - [aux_sym_set_env_token1] = ACTIONS(3257), - [aux_sym_stdin_null_token1] = ACTIONS(3257), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3257), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3257), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3257), - [aux_sym_syslog_facility_token1] = ACTIONS(3257), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3257), - [aux_sym_keep_alive_token1] = ACTIONS(3257), - [aux_sym_tunnel_token1] = ACTIONS(3259), - [aux_sym_tunnel_device_token1] = ACTIONS(3257), - [aux_sym_update_host_keys_token1] = ACTIONS(3257), - [aux_sym_use_keychain_token1] = ACTIONS(3257), - [aux_sym_use_roaming_token1] = ACTIONS(3257), - [aux_sym_user_token1] = ACTIONS(3259), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3257), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3257), - [aux_sym_visual_host_key_token1] = ACTIONS(3257), - [aux_sym_xauth_location_token1] = ACTIONS(3257), + [ts_builtin_sym_end] = ACTIONS(3180), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3182), + [aux_sym_match_token1] = ACTIONS(3180), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3180), + [aux_sym_address_family_token1] = ACTIONS(3180), + [aux_sym_batch_mode_token1] = ACTIONS(3180), + [aux_sym_bind_address_token1] = ACTIONS(3180), + [aux_sym_bind_interface_token1] = ACTIONS(3180), + [aux_sym_canonical_domains_token1] = ACTIONS(3180), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3180), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3180), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3180), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3180), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3180), + [aux_sym_certificate_file_token1] = ACTIONS(3180), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3180), + [aux_sym_check_host_ip_token1] = ACTIONS(3180), + [aux_sym_ciphers_token1] = ACTIONS(3180), + [aux_sym_cipher_token1] = ACTIONS(3182), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3180), + [aux_sym_compression_token1] = ACTIONS(3180), + [aux_sym_connection_attempts_token1] = ACTIONS(3180), + [aux_sym_connect_timeout_token1] = ACTIONS(3180), + [aux_sym_control_master_token1] = ACTIONS(3180), + [aux_sym_control_path_token1] = ACTIONS(3180), + [aux_sym_control_persist_token1] = ACTIONS(3180), + [aux_sym_dynamic_forward_token1] = ACTIONS(3180), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3180), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3180), + [aux_sym_escape_char_token1] = ACTIONS(3180), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3180), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3180), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3180), + [aux_sym_forward_agent_token1] = ACTIONS(3180), + [aux_sym_forward_x11_token1] = ACTIONS(3182), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3180), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3180), + [aux_sym_gateway_ports_token1] = ACTIONS(3180), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3180), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3180), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3180), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3180), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3180), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3180), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3180), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3180), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3180), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3180), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3180), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3180), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3180), + [aux_sym_host_key_alias_token1] = ACTIONS(3180), + [aux_sym_hostname_token1] = ACTIONS(3180), + [aux_sym_identities_only_token1] = ACTIONS(3180), + [aux_sym_identity_agent_token1] = ACTIONS(3180), + [aux_sym_identity_file_token1] = ACTIONS(3180), + [aux_sym_ignore_unknown_token1] = ACTIONS(3180), + [aux_sym_include_token1] = ACTIONS(3180), + [aux_sym_ip_qos_token1] = ACTIONS(3180), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3180), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3180), + [aux_sym_kex_algorithms_token1] = ACTIONS(3180), + [aux_sym_known_hosts_command_token1] = ACTIONS(3180), + [aux_sym_local_command_token1] = ACTIONS(3180), + [aux_sym_local_forward_token1] = ACTIONS(3180), + [aux_sym_log_level_token1] = ACTIONS(3180), + [aux_sym_log_verbose_token1] = ACTIONS(3180), + [aux_sym_macs_token1] = ACTIONS(3180), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3180), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3180), + [aux_sym_password_authentication_token1] = ACTIONS(3180), + [aux_sym_permit_local_command_token1] = ACTIONS(3180), + [aux_sym_permit_remote_open_token1] = ACTIONS(3180), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3180), + [aux_sym_port_token1] = ACTIONS(3180), + [aux_sym_preferred_authentications_token1] = ACTIONS(3180), + [aux_sym_protocol_token1] = ACTIONS(3180), + [aux_sym_proxy_command_token1] = ACTIONS(3180), + [aux_sym_proxy_jump_token1] = ACTIONS(3180), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3180), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3180), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3180), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3180), + [aux_sym_rekey_limit_token1] = ACTIONS(3180), + [aux_sym_remote_command_token1] = ACTIONS(3180), + [aux_sym_remote_forward_token1] = ACTIONS(3180), + [aux_sym_request_tty_token1] = ACTIONS(3180), + [aux_sym_required_rsa_size_token1] = ACTIONS(3180), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3180), + [aux_sym_security_key_provider_token1] = ACTIONS(3180), + [aux_sym_send_env_token1] = ACTIONS(3180), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3180), + [aux_sym_server_alive_interval_token1] = ACTIONS(3180), + [aux_sym_session_type_token1] = ACTIONS(3180), + [aux_sym_set_env_token1] = ACTIONS(3180), + [aux_sym_stdin_null_token1] = ACTIONS(3180), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3180), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3180), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3180), + [aux_sym_syslog_facility_token1] = ACTIONS(3180), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3180), + [aux_sym_keep_alive_token1] = ACTIONS(3180), + [aux_sym_tunnel_token1] = ACTIONS(3182), + [aux_sym_tunnel_device_token1] = ACTIONS(3180), + [aux_sym_update_host_keys_token1] = ACTIONS(3180), + [aux_sym_use_keychain_token1] = ACTIONS(3180), + [aux_sym_use_roaming_token1] = ACTIONS(3180), + [aux_sym_user_token1] = ACTIONS(3182), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3180), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3180), + [aux_sym_visual_host_key_token1] = ACTIONS(3180), + [aux_sym_xauth_location_token1] = ACTIONS(3180), }, [520] = { - [ts_builtin_sym_end] = ACTIONS(3261), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3263), - [aux_sym_match_token1] = ACTIONS(3261), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3261), - [aux_sym_address_family_token1] = ACTIONS(3261), - [aux_sym_batch_mode_token1] = ACTIONS(3261), - [aux_sym_bind_address_token1] = ACTIONS(3261), - [aux_sym_bind_interface_token1] = ACTIONS(3261), - [aux_sym_canonical_domains_token1] = ACTIONS(3261), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3261), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3261), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3261), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3261), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3261), - [aux_sym_certificate_file_token1] = ACTIONS(3261), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3261), - [aux_sym_check_host_ip_token1] = ACTIONS(3261), - [aux_sym_ciphers_token1] = ACTIONS(3261), - [aux_sym_cipher_token1] = ACTIONS(3263), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3261), - [aux_sym_compression_token1] = ACTIONS(3261), - [aux_sym_connection_attempts_token1] = ACTIONS(3261), - [aux_sym_connect_timeout_token1] = ACTIONS(3261), - [aux_sym_control_master_token1] = ACTIONS(3261), - [aux_sym_control_path_token1] = ACTIONS(3261), - [aux_sym_control_persist_token1] = ACTIONS(3261), - [aux_sym_dynamic_forward_token1] = ACTIONS(3261), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3261), - [aux_sym_escape_char_token1] = ACTIONS(3261), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3261), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3261), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3261), - [aux_sym_forward_agent_token1] = ACTIONS(3261), - [aux_sym_forward_x11_token1] = ACTIONS(3263), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3261), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3261), - [aux_sym_gateway_ports_token1] = ACTIONS(3261), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3261), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3261), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3261), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3261), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3261), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3261), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3261), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3261), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3261), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3261), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3261), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3261), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3261), - [aux_sym_host_key_alias_token1] = ACTIONS(3261), - [aux_sym_hostname_token1] = ACTIONS(3261), - [aux_sym_identities_only_token1] = ACTIONS(3261), - [aux_sym_identity_agent_token1] = ACTIONS(3261), - [aux_sym_identity_file_token1] = ACTIONS(3261), - [aux_sym_ignore_unknown_token1] = ACTIONS(3261), - [aux_sym_include_token1] = ACTIONS(3261), - [aux_sym_ip_qos_token1] = ACTIONS(3261), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3261), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3261), - [aux_sym_kex_algorithms_token1] = ACTIONS(3261), - [aux_sym_known_hosts_command_token1] = ACTIONS(3261), - [aux_sym_local_command_token1] = ACTIONS(3261), - [aux_sym_local_forward_token1] = ACTIONS(3261), - [aux_sym_log_level_token1] = ACTIONS(3261), - [aux_sym_log_verbose_token1] = ACTIONS(3261), - [aux_sym_macs_token1] = ACTIONS(3261), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3261), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3261), - [aux_sym_password_authentication_token1] = ACTIONS(3261), - [aux_sym_permit_local_command_token1] = ACTIONS(3261), - [aux_sym_permit_remote_open_token1] = ACTIONS(3261), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3261), - [aux_sym_port_token1] = ACTIONS(3261), - [aux_sym_preferred_authentications_token1] = ACTIONS(3261), - [aux_sym_protocol_token1] = ACTIONS(3261), - [aux_sym_proxy_command_token1] = ACTIONS(3261), - [aux_sym_proxy_jump_token1] = ACTIONS(3261), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3261), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3261), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3261), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3261), - [aux_sym_rekey_limit_token1] = ACTIONS(3261), - [aux_sym_remote_command_token1] = ACTIONS(3261), - [aux_sym_remote_forward_token1] = ACTIONS(3261), - [aux_sym_request_tty_token1] = ACTIONS(3261), - [aux_sym_required_rsa_size_token1] = ACTIONS(3261), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3261), - [aux_sym_security_key_provider_token1] = ACTIONS(3261), - [aux_sym_send_env_token1] = ACTIONS(3261), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3261), - [aux_sym_server_alive_interval_token1] = ACTIONS(3261), - [aux_sym_session_type_token1] = ACTIONS(3261), - [aux_sym_set_env_token1] = ACTIONS(3261), - [aux_sym_stdin_null_token1] = ACTIONS(3261), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3261), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3261), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3261), - [aux_sym_syslog_facility_token1] = ACTIONS(3261), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3261), - [aux_sym_keep_alive_token1] = ACTIONS(3261), - [aux_sym_tunnel_token1] = ACTIONS(3263), - [aux_sym_tunnel_device_token1] = ACTIONS(3261), - [aux_sym_update_host_keys_token1] = ACTIONS(3261), - [aux_sym_use_keychain_token1] = ACTIONS(3261), - [aux_sym_use_roaming_token1] = ACTIONS(3261), - [aux_sym_user_token1] = ACTIONS(3263), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3261), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3261), - [aux_sym_visual_host_key_token1] = ACTIONS(3261), - [aux_sym_xauth_location_token1] = ACTIONS(3261), + [ts_builtin_sym_end] = ACTIONS(1106), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1108), + [aux_sym_match_token1] = ACTIONS(1106), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1106), + [aux_sym_address_family_token1] = ACTIONS(1106), + [aux_sym_batch_mode_token1] = ACTIONS(1106), + [aux_sym_bind_address_token1] = ACTIONS(1106), + [aux_sym_bind_interface_token1] = ACTIONS(1106), + [aux_sym_canonical_domains_token1] = ACTIONS(1106), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1106), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1106), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1106), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1106), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1106), + [aux_sym_certificate_file_token1] = ACTIONS(1106), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1106), + [aux_sym_check_host_ip_token1] = ACTIONS(1106), + [aux_sym_ciphers_token1] = ACTIONS(1106), + [aux_sym_cipher_token1] = ACTIONS(1108), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1106), + [aux_sym_compression_token1] = ACTIONS(1106), + [aux_sym_connection_attempts_token1] = ACTIONS(1106), + [aux_sym_connect_timeout_token1] = ACTIONS(1106), + [aux_sym_control_master_token1] = ACTIONS(1106), + [aux_sym_control_path_token1] = ACTIONS(1106), + [aux_sym_control_persist_token1] = ACTIONS(1106), + [aux_sym_dynamic_forward_token1] = ACTIONS(1106), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1106), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1106), + [aux_sym_escape_char_token1] = ACTIONS(1106), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1106), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1106), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1106), + [aux_sym_forward_agent_token1] = ACTIONS(1106), + [aux_sym_forward_x11_token1] = ACTIONS(1108), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1106), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1106), + [aux_sym_gateway_ports_token1] = ACTIONS(1106), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1106), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1106), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1106), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1106), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1106), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1106), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1106), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1106), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1106), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1106), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1106), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1106), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1106), + [aux_sym_host_key_alias_token1] = ACTIONS(1106), + [aux_sym_hostname_token1] = ACTIONS(1106), + [aux_sym_identities_only_token1] = ACTIONS(1106), + [aux_sym_identity_agent_token1] = ACTIONS(1106), + [aux_sym_identity_file_token1] = ACTIONS(1106), + [aux_sym_ignore_unknown_token1] = ACTIONS(1106), + [aux_sym_include_token1] = ACTIONS(1106), + [aux_sym_ip_qos_token1] = ACTIONS(1106), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1106), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1106), + [aux_sym_kex_algorithms_token1] = ACTIONS(1106), + [aux_sym_known_hosts_command_token1] = ACTIONS(1106), + [aux_sym_local_command_token1] = ACTIONS(1106), + [aux_sym_local_forward_token1] = ACTIONS(1106), + [aux_sym_log_level_token1] = ACTIONS(1106), + [aux_sym_log_verbose_token1] = ACTIONS(1106), + [aux_sym_macs_token1] = ACTIONS(1106), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1106), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1106), + [aux_sym_password_authentication_token1] = ACTIONS(1106), + [aux_sym_permit_local_command_token1] = ACTIONS(1106), + [aux_sym_permit_remote_open_token1] = ACTIONS(1106), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1106), + [aux_sym_port_token1] = ACTIONS(1106), + [aux_sym_preferred_authentications_token1] = ACTIONS(1106), + [aux_sym_protocol_token1] = ACTIONS(1106), + [aux_sym_proxy_command_token1] = ACTIONS(1106), + [aux_sym_proxy_jump_token1] = ACTIONS(1106), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1106), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1106), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1106), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1106), + [aux_sym_rekey_limit_token1] = ACTIONS(1106), + [aux_sym_remote_command_token1] = ACTIONS(1106), + [aux_sym_remote_forward_token1] = ACTIONS(1106), + [aux_sym_request_tty_token1] = ACTIONS(1106), + [aux_sym_required_rsa_size_token1] = ACTIONS(1106), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1106), + [aux_sym_security_key_provider_token1] = ACTIONS(1106), + [aux_sym_send_env_token1] = ACTIONS(1106), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1106), + [aux_sym_server_alive_interval_token1] = ACTIONS(1106), + [aux_sym_session_type_token1] = ACTIONS(1106), + [aux_sym_set_env_token1] = ACTIONS(1106), + [aux_sym_stdin_null_token1] = ACTIONS(1106), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1106), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1106), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1106), + [aux_sym_syslog_facility_token1] = ACTIONS(1106), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1106), + [aux_sym_keep_alive_token1] = ACTIONS(1106), + [aux_sym_tunnel_token1] = ACTIONS(1108), + [aux_sym_tunnel_device_token1] = ACTIONS(1106), + [aux_sym_update_host_keys_token1] = ACTIONS(1106), + [aux_sym_use_keychain_token1] = ACTIONS(1106), + [aux_sym_use_roaming_token1] = ACTIONS(1106), + [aux_sym_user_token1] = ACTIONS(1108), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1106), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1106), + [aux_sym_visual_host_key_token1] = ACTIONS(1106), + [aux_sym_xauth_location_token1] = ACTIONS(1106), }, [521] = { - [ts_builtin_sym_end] = ACTIONS(3265), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3267), - [aux_sym_match_token1] = ACTIONS(3265), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3265), - [aux_sym_address_family_token1] = ACTIONS(3265), - [aux_sym_batch_mode_token1] = ACTIONS(3265), - [aux_sym_bind_address_token1] = ACTIONS(3265), - [aux_sym_bind_interface_token1] = ACTIONS(3265), - [aux_sym_canonical_domains_token1] = ACTIONS(3265), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3265), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3265), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3265), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3265), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3265), - [aux_sym_certificate_file_token1] = ACTIONS(3265), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3265), - [aux_sym_check_host_ip_token1] = ACTIONS(3265), - [aux_sym_ciphers_token1] = ACTIONS(3265), - [aux_sym_cipher_token1] = ACTIONS(3267), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3265), - [aux_sym_compression_token1] = ACTIONS(3265), - [aux_sym_connection_attempts_token1] = ACTIONS(3265), - [aux_sym_connect_timeout_token1] = ACTIONS(3265), - [aux_sym_control_master_token1] = ACTIONS(3265), - [aux_sym_control_path_token1] = ACTIONS(3265), - [aux_sym_control_persist_token1] = ACTIONS(3265), - [aux_sym_dynamic_forward_token1] = ACTIONS(3265), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3265), - [aux_sym_escape_char_token1] = ACTIONS(3265), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3265), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3265), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3265), - [aux_sym_forward_agent_token1] = ACTIONS(3265), - [aux_sym_forward_x11_token1] = ACTIONS(3267), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3265), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3265), - [aux_sym_gateway_ports_token1] = ACTIONS(3265), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3265), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3265), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3265), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3265), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3265), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3265), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3265), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3265), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3265), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3265), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3265), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3265), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3265), - [aux_sym_host_key_alias_token1] = ACTIONS(3265), - [aux_sym_hostname_token1] = ACTIONS(3265), - [aux_sym_identities_only_token1] = ACTIONS(3265), - [aux_sym_identity_agent_token1] = ACTIONS(3265), - [aux_sym_identity_file_token1] = ACTIONS(3265), - [aux_sym_ignore_unknown_token1] = ACTIONS(3265), - [aux_sym_include_token1] = ACTIONS(3265), - [aux_sym_ip_qos_token1] = ACTIONS(3265), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3265), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3265), - [aux_sym_kex_algorithms_token1] = ACTIONS(3265), - [aux_sym_known_hosts_command_token1] = ACTIONS(3265), - [aux_sym_local_command_token1] = ACTIONS(3265), - [aux_sym_local_forward_token1] = ACTIONS(3265), - [aux_sym_log_level_token1] = ACTIONS(3265), - [aux_sym_log_verbose_token1] = ACTIONS(3265), - [aux_sym_macs_token1] = ACTIONS(3265), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3265), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3265), - [aux_sym_password_authentication_token1] = ACTIONS(3265), - [aux_sym_permit_local_command_token1] = ACTIONS(3265), - [aux_sym_permit_remote_open_token1] = ACTIONS(3265), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3265), - [aux_sym_port_token1] = ACTIONS(3265), - [aux_sym_preferred_authentications_token1] = ACTIONS(3265), - [aux_sym_protocol_token1] = ACTIONS(3265), - [aux_sym_proxy_command_token1] = ACTIONS(3265), - [aux_sym_proxy_jump_token1] = ACTIONS(3265), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3265), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3265), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3265), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3265), - [aux_sym_rekey_limit_token1] = ACTIONS(3265), - [aux_sym_remote_command_token1] = ACTIONS(3265), - [aux_sym_remote_forward_token1] = ACTIONS(3265), - [aux_sym_request_tty_token1] = ACTIONS(3265), - [aux_sym_required_rsa_size_token1] = ACTIONS(3265), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3265), - [aux_sym_security_key_provider_token1] = ACTIONS(3265), - [aux_sym_send_env_token1] = ACTIONS(3265), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3265), - [aux_sym_server_alive_interval_token1] = ACTIONS(3265), - [aux_sym_session_type_token1] = ACTIONS(3265), - [aux_sym_set_env_token1] = ACTIONS(3265), - [aux_sym_stdin_null_token1] = ACTIONS(3265), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3265), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3265), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3265), - [aux_sym_syslog_facility_token1] = ACTIONS(3265), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3265), - [aux_sym_keep_alive_token1] = ACTIONS(3265), - [aux_sym_tunnel_token1] = ACTIONS(3267), - [aux_sym_tunnel_device_token1] = ACTIONS(3265), - [aux_sym_update_host_keys_token1] = ACTIONS(3265), - [aux_sym_use_keychain_token1] = ACTIONS(3265), - [aux_sym_use_roaming_token1] = ACTIONS(3265), - [aux_sym_user_token1] = ACTIONS(3267), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3265), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3265), - [aux_sym_visual_host_key_token1] = ACTIONS(3265), - [aux_sym_xauth_location_token1] = ACTIONS(3265), + [ts_builtin_sym_end] = ACTIONS(1208), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1210), + [aux_sym_match_token1] = ACTIONS(1208), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1208), + [aux_sym_address_family_token1] = ACTIONS(1208), + [aux_sym_batch_mode_token1] = ACTIONS(1208), + [aux_sym_bind_address_token1] = ACTIONS(1208), + [aux_sym_bind_interface_token1] = ACTIONS(1208), + [aux_sym_canonical_domains_token1] = ACTIONS(1208), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1208), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1208), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1208), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1208), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1208), + [aux_sym_certificate_file_token1] = ACTIONS(1208), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1208), + [aux_sym_check_host_ip_token1] = ACTIONS(1208), + [aux_sym_ciphers_token1] = ACTIONS(1208), + [aux_sym_cipher_token1] = ACTIONS(1210), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1208), + [aux_sym_compression_token1] = ACTIONS(1208), + [aux_sym_connection_attempts_token1] = ACTIONS(1208), + [aux_sym_connect_timeout_token1] = ACTIONS(1208), + [aux_sym_control_master_token1] = ACTIONS(1208), + [aux_sym_control_path_token1] = ACTIONS(1208), + [aux_sym_control_persist_token1] = ACTIONS(1208), + [aux_sym_dynamic_forward_token1] = ACTIONS(1208), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1208), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1208), + [aux_sym_escape_char_token1] = ACTIONS(1208), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1208), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1208), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1208), + [aux_sym_forward_agent_token1] = ACTIONS(1208), + [aux_sym_forward_x11_token1] = ACTIONS(1210), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1208), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1208), + [aux_sym_gateway_ports_token1] = ACTIONS(1208), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1208), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1208), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1208), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1208), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1208), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1208), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1208), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1208), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1208), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1208), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1208), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1208), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1208), + [aux_sym_host_key_alias_token1] = ACTIONS(1208), + [aux_sym_hostname_token1] = ACTIONS(1208), + [aux_sym_identities_only_token1] = ACTIONS(1208), + [aux_sym_identity_agent_token1] = ACTIONS(1208), + [aux_sym_identity_file_token1] = ACTIONS(1208), + [aux_sym_ignore_unknown_token1] = ACTIONS(1208), + [aux_sym_include_token1] = ACTIONS(1208), + [aux_sym_ip_qos_token1] = ACTIONS(1208), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1208), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1208), + [aux_sym_kex_algorithms_token1] = ACTIONS(1208), + [aux_sym_known_hosts_command_token1] = ACTIONS(1208), + [aux_sym_local_command_token1] = ACTIONS(1208), + [aux_sym_local_forward_token1] = ACTIONS(1208), + [aux_sym_log_level_token1] = ACTIONS(1208), + [aux_sym_log_verbose_token1] = ACTIONS(1208), + [aux_sym_macs_token1] = ACTIONS(1208), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1208), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1208), + [aux_sym_password_authentication_token1] = ACTIONS(1208), + [aux_sym_permit_local_command_token1] = ACTIONS(1208), + [aux_sym_permit_remote_open_token1] = ACTIONS(1208), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1208), + [aux_sym_port_token1] = ACTIONS(1208), + [aux_sym_preferred_authentications_token1] = ACTIONS(1208), + [aux_sym_protocol_token1] = ACTIONS(1208), + [aux_sym_proxy_command_token1] = ACTIONS(1208), + [aux_sym_proxy_jump_token1] = ACTIONS(1208), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1208), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1208), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1208), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1208), + [aux_sym_rekey_limit_token1] = ACTIONS(1208), + [aux_sym_remote_command_token1] = ACTIONS(1208), + [aux_sym_remote_forward_token1] = ACTIONS(1208), + [aux_sym_request_tty_token1] = ACTIONS(1208), + [aux_sym_required_rsa_size_token1] = ACTIONS(1208), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1208), + [aux_sym_security_key_provider_token1] = ACTIONS(1208), + [aux_sym_send_env_token1] = ACTIONS(1208), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1208), + [aux_sym_server_alive_interval_token1] = ACTIONS(1208), + [aux_sym_session_type_token1] = ACTIONS(1208), + [aux_sym_set_env_token1] = ACTIONS(1208), + [aux_sym_stdin_null_token1] = ACTIONS(1208), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1208), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1208), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1208), + [aux_sym_syslog_facility_token1] = ACTIONS(1208), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1208), + [aux_sym_keep_alive_token1] = ACTIONS(1208), + [aux_sym_tunnel_token1] = ACTIONS(1210), + [aux_sym_tunnel_device_token1] = ACTIONS(1208), + [aux_sym_update_host_keys_token1] = ACTIONS(1208), + [aux_sym_use_keychain_token1] = ACTIONS(1208), + [aux_sym_use_roaming_token1] = ACTIONS(1208), + [aux_sym_user_token1] = ACTIONS(1210), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1208), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1208), + [aux_sym_visual_host_key_token1] = ACTIONS(1208), + [aux_sym_xauth_location_token1] = ACTIONS(1208), }, [522] = { - [ts_builtin_sym_end] = ACTIONS(3269), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3271), - [aux_sym_match_token1] = ACTIONS(3269), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3269), - [aux_sym_address_family_token1] = ACTIONS(3269), - [aux_sym_batch_mode_token1] = ACTIONS(3269), - [aux_sym_bind_address_token1] = ACTIONS(3269), - [aux_sym_bind_interface_token1] = ACTIONS(3269), - [aux_sym_canonical_domains_token1] = ACTIONS(3269), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3269), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3269), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3269), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3269), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3269), - [aux_sym_certificate_file_token1] = ACTIONS(3269), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3269), - [aux_sym_check_host_ip_token1] = ACTIONS(3269), - [aux_sym_ciphers_token1] = ACTIONS(3269), - [aux_sym_cipher_token1] = ACTIONS(3271), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3269), - [aux_sym_compression_token1] = ACTIONS(3269), - [aux_sym_connection_attempts_token1] = ACTIONS(3269), - [aux_sym_connect_timeout_token1] = ACTIONS(3269), - [aux_sym_control_master_token1] = ACTIONS(3269), - [aux_sym_control_path_token1] = ACTIONS(3269), - [aux_sym_control_persist_token1] = ACTIONS(3269), - [aux_sym_dynamic_forward_token1] = ACTIONS(3269), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3269), - [aux_sym_escape_char_token1] = ACTIONS(3269), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3269), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3269), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3269), - [aux_sym_forward_agent_token1] = ACTIONS(3269), - [aux_sym_forward_x11_token1] = ACTIONS(3271), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3269), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3269), - [aux_sym_gateway_ports_token1] = ACTIONS(3269), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3269), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3269), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3269), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3269), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3269), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3269), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3269), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3269), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3269), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3269), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3269), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3269), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3269), - [aux_sym_host_key_alias_token1] = ACTIONS(3269), - [aux_sym_hostname_token1] = ACTIONS(3269), - [aux_sym_identities_only_token1] = ACTIONS(3269), - [aux_sym_identity_agent_token1] = ACTIONS(3269), - [aux_sym_identity_file_token1] = ACTIONS(3269), - [aux_sym_ignore_unknown_token1] = ACTIONS(3269), - [aux_sym_include_token1] = ACTIONS(3269), - [aux_sym_ip_qos_token1] = ACTIONS(3269), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3269), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3269), - [aux_sym_kex_algorithms_token1] = ACTIONS(3269), - [aux_sym_known_hosts_command_token1] = ACTIONS(3269), - [aux_sym_local_command_token1] = ACTIONS(3269), - [aux_sym_local_forward_token1] = ACTIONS(3269), - [aux_sym_log_level_token1] = ACTIONS(3269), - [aux_sym_log_verbose_token1] = ACTIONS(3269), - [aux_sym_macs_token1] = ACTIONS(3269), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3269), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3269), - [aux_sym_password_authentication_token1] = ACTIONS(3269), - [aux_sym_permit_local_command_token1] = ACTIONS(3269), - [aux_sym_permit_remote_open_token1] = ACTIONS(3269), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3269), - [aux_sym_port_token1] = ACTIONS(3269), - [aux_sym_preferred_authentications_token1] = ACTIONS(3269), - [aux_sym_protocol_token1] = ACTIONS(3269), - [aux_sym_proxy_command_token1] = ACTIONS(3269), - [aux_sym_proxy_jump_token1] = ACTIONS(3269), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3269), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3269), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3269), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3269), - [aux_sym_rekey_limit_token1] = ACTIONS(3269), - [aux_sym_remote_command_token1] = ACTIONS(3269), - [aux_sym_remote_forward_token1] = ACTIONS(3269), - [aux_sym_request_tty_token1] = ACTIONS(3269), - [aux_sym_required_rsa_size_token1] = ACTIONS(3269), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3269), - [aux_sym_security_key_provider_token1] = ACTIONS(3269), - [aux_sym_send_env_token1] = ACTIONS(3269), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3269), - [aux_sym_server_alive_interval_token1] = ACTIONS(3269), - [aux_sym_session_type_token1] = ACTIONS(3269), - [aux_sym_set_env_token1] = ACTIONS(3269), - [aux_sym_stdin_null_token1] = ACTIONS(3269), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3269), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3269), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3269), - [aux_sym_syslog_facility_token1] = ACTIONS(3269), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3269), - [aux_sym_keep_alive_token1] = ACTIONS(3269), - [aux_sym_tunnel_token1] = ACTIONS(3271), - [aux_sym_tunnel_device_token1] = ACTIONS(3269), - [aux_sym_update_host_keys_token1] = ACTIONS(3269), - [aux_sym_use_keychain_token1] = ACTIONS(3269), - [aux_sym_use_roaming_token1] = ACTIONS(3269), - [aux_sym_user_token1] = ACTIONS(3271), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3269), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3269), - [aux_sym_visual_host_key_token1] = ACTIONS(3269), - [aux_sym_xauth_location_token1] = ACTIONS(3269), + [ts_builtin_sym_end] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3186), + [aux_sym_match_token1] = ACTIONS(3184), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3184), + [aux_sym_address_family_token1] = ACTIONS(3184), + [aux_sym_batch_mode_token1] = ACTIONS(3184), + [aux_sym_bind_address_token1] = ACTIONS(3184), + [aux_sym_bind_interface_token1] = ACTIONS(3184), + [aux_sym_canonical_domains_token1] = ACTIONS(3184), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3184), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3184), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3184), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3184), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3184), + [aux_sym_certificate_file_token1] = ACTIONS(3184), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3184), + [aux_sym_check_host_ip_token1] = ACTIONS(3184), + [aux_sym_ciphers_token1] = ACTIONS(3184), + [aux_sym_cipher_token1] = ACTIONS(3186), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3184), + [aux_sym_compression_token1] = ACTIONS(3184), + [aux_sym_connection_attempts_token1] = ACTIONS(3184), + [aux_sym_connect_timeout_token1] = ACTIONS(3184), + [aux_sym_control_master_token1] = ACTIONS(3184), + [aux_sym_control_path_token1] = ACTIONS(3184), + [aux_sym_control_persist_token1] = ACTIONS(3184), + [aux_sym_dynamic_forward_token1] = ACTIONS(3184), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3184), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3184), + [aux_sym_escape_char_token1] = ACTIONS(3184), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3184), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3184), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3184), + [aux_sym_forward_agent_token1] = ACTIONS(3184), + [aux_sym_forward_x11_token1] = ACTIONS(3186), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3184), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3184), + [aux_sym_gateway_ports_token1] = ACTIONS(3184), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3184), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3184), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3184), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3184), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3184), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3184), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3184), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3184), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3184), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3184), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3184), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3184), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3184), + [aux_sym_host_key_alias_token1] = ACTIONS(3184), + [aux_sym_hostname_token1] = ACTIONS(3184), + [aux_sym_identities_only_token1] = ACTIONS(3184), + [aux_sym_identity_agent_token1] = ACTIONS(3184), + [aux_sym_identity_file_token1] = ACTIONS(3184), + [aux_sym_ignore_unknown_token1] = ACTIONS(3184), + [aux_sym_include_token1] = ACTIONS(3184), + [aux_sym_ip_qos_token1] = ACTIONS(3184), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3184), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3184), + [aux_sym_kex_algorithms_token1] = ACTIONS(3184), + [aux_sym_known_hosts_command_token1] = ACTIONS(3184), + [aux_sym_local_command_token1] = ACTIONS(3184), + [aux_sym_local_forward_token1] = ACTIONS(3184), + [aux_sym_log_level_token1] = ACTIONS(3184), + [aux_sym_log_verbose_token1] = ACTIONS(3184), + [aux_sym_macs_token1] = ACTIONS(3184), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3184), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3184), + [aux_sym_password_authentication_token1] = ACTIONS(3184), + [aux_sym_permit_local_command_token1] = ACTIONS(3184), + [aux_sym_permit_remote_open_token1] = ACTIONS(3184), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3184), + [aux_sym_port_token1] = ACTIONS(3184), + [aux_sym_preferred_authentications_token1] = ACTIONS(3184), + [aux_sym_protocol_token1] = ACTIONS(3184), + [aux_sym_proxy_command_token1] = ACTIONS(3184), + [aux_sym_proxy_jump_token1] = ACTIONS(3184), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3184), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3184), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3184), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3184), + [aux_sym_rekey_limit_token1] = ACTIONS(3184), + [aux_sym_remote_command_token1] = ACTIONS(3184), + [aux_sym_remote_forward_token1] = ACTIONS(3184), + [aux_sym_request_tty_token1] = ACTIONS(3184), + [aux_sym_required_rsa_size_token1] = ACTIONS(3184), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3184), + [aux_sym_security_key_provider_token1] = ACTIONS(3184), + [aux_sym_send_env_token1] = ACTIONS(3184), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3184), + [aux_sym_server_alive_interval_token1] = ACTIONS(3184), + [aux_sym_session_type_token1] = ACTIONS(3184), + [aux_sym_set_env_token1] = ACTIONS(3184), + [aux_sym_stdin_null_token1] = ACTIONS(3184), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3184), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3184), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3184), + [aux_sym_syslog_facility_token1] = ACTIONS(3184), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3184), + [aux_sym_keep_alive_token1] = ACTIONS(3184), + [aux_sym_tunnel_token1] = ACTIONS(3186), + [aux_sym_tunnel_device_token1] = ACTIONS(3184), + [aux_sym_update_host_keys_token1] = ACTIONS(3184), + [aux_sym_use_keychain_token1] = ACTIONS(3184), + [aux_sym_use_roaming_token1] = ACTIONS(3184), + [aux_sym_user_token1] = ACTIONS(3186), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3184), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3184), + [aux_sym_visual_host_key_token1] = ACTIONS(3184), + [aux_sym_xauth_location_token1] = ACTIONS(3184), }, [523] = { - [ts_builtin_sym_end] = ACTIONS(3273), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3275), - [aux_sym_match_token1] = ACTIONS(3273), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3273), - [aux_sym_address_family_token1] = ACTIONS(3273), - [aux_sym_batch_mode_token1] = ACTIONS(3273), - [aux_sym_bind_address_token1] = ACTIONS(3273), - [aux_sym_bind_interface_token1] = ACTIONS(3273), - [aux_sym_canonical_domains_token1] = ACTIONS(3273), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3273), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3273), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3273), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3273), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3273), - [aux_sym_certificate_file_token1] = ACTIONS(3273), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3273), - [aux_sym_check_host_ip_token1] = ACTIONS(3273), - [aux_sym_ciphers_token1] = ACTIONS(3273), - [aux_sym_cipher_token1] = ACTIONS(3275), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3273), - [aux_sym_compression_token1] = ACTIONS(3273), - [aux_sym_connection_attempts_token1] = ACTIONS(3273), - [aux_sym_connect_timeout_token1] = ACTIONS(3273), - [aux_sym_control_master_token1] = ACTIONS(3273), - [aux_sym_control_path_token1] = ACTIONS(3273), - [aux_sym_control_persist_token1] = ACTIONS(3273), - [aux_sym_dynamic_forward_token1] = ACTIONS(3273), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3273), - [aux_sym_escape_char_token1] = ACTIONS(3273), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3273), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3273), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3273), - [aux_sym_forward_agent_token1] = ACTIONS(3273), - [aux_sym_forward_x11_token1] = ACTIONS(3275), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3273), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3273), - [aux_sym_gateway_ports_token1] = ACTIONS(3273), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3273), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3273), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3273), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3273), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3273), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3273), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3273), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3273), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3273), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3273), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3273), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3273), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3273), - [aux_sym_host_key_alias_token1] = ACTIONS(3273), - [aux_sym_hostname_token1] = ACTIONS(3273), - [aux_sym_identities_only_token1] = ACTIONS(3273), - [aux_sym_identity_agent_token1] = ACTIONS(3273), - [aux_sym_identity_file_token1] = ACTIONS(3273), - [aux_sym_ignore_unknown_token1] = ACTIONS(3273), - [aux_sym_include_token1] = ACTIONS(3273), - [aux_sym_ip_qos_token1] = ACTIONS(3273), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3273), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3273), - [aux_sym_kex_algorithms_token1] = ACTIONS(3273), - [aux_sym_known_hosts_command_token1] = ACTIONS(3273), - [aux_sym_local_command_token1] = ACTIONS(3273), - [aux_sym_local_forward_token1] = ACTIONS(3273), - [aux_sym_log_level_token1] = ACTIONS(3273), - [aux_sym_log_verbose_token1] = ACTIONS(3273), - [aux_sym_macs_token1] = ACTIONS(3273), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3273), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3273), - [aux_sym_password_authentication_token1] = ACTIONS(3273), - [aux_sym_permit_local_command_token1] = ACTIONS(3273), - [aux_sym_permit_remote_open_token1] = ACTIONS(3273), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3273), - [aux_sym_port_token1] = ACTIONS(3273), - [aux_sym_preferred_authentications_token1] = ACTIONS(3273), - [aux_sym_protocol_token1] = ACTIONS(3273), - [aux_sym_proxy_command_token1] = ACTIONS(3273), - [aux_sym_proxy_jump_token1] = ACTIONS(3273), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3273), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3273), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3273), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3273), - [aux_sym_rekey_limit_token1] = ACTIONS(3273), - [aux_sym_remote_command_token1] = ACTIONS(3273), - [aux_sym_remote_forward_token1] = ACTIONS(3273), - [aux_sym_request_tty_token1] = ACTIONS(3273), - [aux_sym_required_rsa_size_token1] = ACTIONS(3273), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3273), - [aux_sym_security_key_provider_token1] = ACTIONS(3273), - [aux_sym_send_env_token1] = ACTIONS(3273), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3273), - [aux_sym_server_alive_interval_token1] = ACTIONS(3273), - [aux_sym_session_type_token1] = ACTIONS(3273), - [aux_sym_set_env_token1] = ACTIONS(3273), - [aux_sym_stdin_null_token1] = ACTIONS(3273), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3273), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3273), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3273), - [aux_sym_syslog_facility_token1] = ACTIONS(3273), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3273), - [aux_sym_keep_alive_token1] = ACTIONS(3273), - [aux_sym_tunnel_token1] = ACTIONS(3275), - [aux_sym_tunnel_device_token1] = ACTIONS(3273), - [aux_sym_update_host_keys_token1] = ACTIONS(3273), - [aux_sym_use_keychain_token1] = ACTIONS(3273), - [aux_sym_use_roaming_token1] = ACTIONS(3273), - [aux_sym_user_token1] = ACTIONS(3275), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3273), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3273), - [aux_sym_visual_host_key_token1] = ACTIONS(3273), - [aux_sym_xauth_location_token1] = ACTIONS(3273), + [ts_builtin_sym_end] = ACTIONS(3188), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3190), + [aux_sym_match_token1] = ACTIONS(3188), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3188), + [aux_sym_address_family_token1] = ACTIONS(3188), + [aux_sym_batch_mode_token1] = ACTIONS(3188), + [aux_sym_bind_address_token1] = ACTIONS(3188), + [aux_sym_bind_interface_token1] = ACTIONS(3188), + [aux_sym_canonical_domains_token1] = ACTIONS(3188), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3188), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3188), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3188), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3188), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3188), + [aux_sym_certificate_file_token1] = ACTIONS(3188), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3188), + [aux_sym_check_host_ip_token1] = ACTIONS(3188), + [aux_sym_ciphers_token1] = ACTIONS(3188), + [aux_sym_cipher_token1] = ACTIONS(3190), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3188), + [aux_sym_compression_token1] = ACTIONS(3188), + [aux_sym_connection_attempts_token1] = ACTIONS(3188), + [aux_sym_connect_timeout_token1] = ACTIONS(3188), + [aux_sym_control_master_token1] = ACTIONS(3188), + [aux_sym_control_path_token1] = ACTIONS(3188), + [aux_sym_control_persist_token1] = ACTIONS(3188), + [aux_sym_dynamic_forward_token1] = ACTIONS(3188), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3188), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3188), + [aux_sym_escape_char_token1] = ACTIONS(3188), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3188), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3188), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3188), + [aux_sym_forward_agent_token1] = ACTIONS(3188), + [aux_sym_forward_x11_token1] = ACTIONS(3190), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3188), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3188), + [aux_sym_gateway_ports_token1] = ACTIONS(3188), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3188), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3188), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3188), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3188), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3188), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3188), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3188), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3188), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3188), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3188), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3188), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3188), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3188), + [aux_sym_host_key_alias_token1] = ACTIONS(3188), + [aux_sym_hostname_token1] = ACTIONS(3188), + [aux_sym_identities_only_token1] = ACTIONS(3188), + [aux_sym_identity_agent_token1] = ACTIONS(3188), + [aux_sym_identity_file_token1] = ACTIONS(3188), + [aux_sym_ignore_unknown_token1] = ACTIONS(3188), + [aux_sym_include_token1] = ACTIONS(3188), + [aux_sym_ip_qos_token1] = ACTIONS(3188), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3188), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3188), + [aux_sym_kex_algorithms_token1] = ACTIONS(3188), + [aux_sym_known_hosts_command_token1] = ACTIONS(3188), + [aux_sym_local_command_token1] = ACTIONS(3188), + [aux_sym_local_forward_token1] = ACTIONS(3188), + [aux_sym_log_level_token1] = ACTIONS(3188), + [aux_sym_log_verbose_token1] = ACTIONS(3188), + [aux_sym_macs_token1] = ACTIONS(3188), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3188), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3188), + [aux_sym_password_authentication_token1] = ACTIONS(3188), + [aux_sym_permit_local_command_token1] = ACTIONS(3188), + [aux_sym_permit_remote_open_token1] = ACTIONS(3188), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3188), + [aux_sym_port_token1] = ACTIONS(3188), + [aux_sym_preferred_authentications_token1] = ACTIONS(3188), + [aux_sym_protocol_token1] = ACTIONS(3188), + [aux_sym_proxy_command_token1] = ACTIONS(3188), + [aux_sym_proxy_jump_token1] = ACTIONS(3188), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3188), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3188), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3188), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3188), + [aux_sym_rekey_limit_token1] = ACTIONS(3188), + [aux_sym_remote_command_token1] = ACTIONS(3188), + [aux_sym_remote_forward_token1] = ACTIONS(3188), + [aux_sym_request_tty_token1] = ACTIONS(3188), + [aux_sym_required_rsa_size_token1] = ACTIONS(3188), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3188), + [aux_sym_security_key_provider_token1] = ACTIONS(3188), + [aux_sym_send_env_token1] = ACTIONS(3188), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3188), + [aux_sym_server_alive_interval_token1] = ACTIONS(3188), + [aux_sym_session_type_token1] = ACTIONS(3188), + [aux_sym_set_env_token1] = ACTIONS(3188), + [aux_sym_stdin_null_token1] = ACTIONS(3188), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3188), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3188), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3188), + [aux_sym_syslog_facility_token1] = ACTIONS(3188), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3188), + [aux_sym_keep_alive_token1] = ACTIONS(3188), + [aux_sym_tunnel_token1] = ACTIONS(3190), + [aux_sym_tunnel_device_token1] = ACTIONS(3188), + [aux_sym_update_host_keys_token1] = ACTIONS(3188), + [aux_sym_use_keychain_token1] = ACTIONS(3188), + [aux_sym_use_roaming_token1] = ACTIONS(3188), + [aux_sym_user_token1] = ACTIONS(3190), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3188), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3188), + [aux_sym_visual_host_key_token1] = ACTIONS(3188), + [aux_sym_xauth_location_token1] = ACTIONS(3188), }, [524] = { - [ts_builtin_sym_end] = ACTIONS(3277), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3279), - [aux_sym_match_token1] = ACTIONS(3277), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3277), - [aux_sym_address_family_token1] = ACTIONS(3277), - [aux_sym_batch_mode_token1] = ACTIONS(3277), - [aux_sym_bind_address_token1] = ACTIONS(3277), - [aux_sym_bind_interface_token1] = ACTIONS(3277), - [aux_sym_canonical_domains_token1] = ACTIONS(3277), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3277), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3277), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3277), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3277), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3277), - [aux_sym_certificate_file_token1] = ACTIONS(3277), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3277), - [aux_sym_check_host_ip_token1] = ACTIONS(3277), - [aux_sym_ciphers_token1] = ACTIONS(3277), - [aux_sym_cipher_token1] = ACTIONS(3279), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3277), - [aux_sym_compression_token1] = ACTIONS(3277), - [aux_sym_connection_attempts_token1] = ACTIONS(3277), - [aux_sym_connect_timeout_token1] = ACTIONS(3277), - [aux_sym_control_master_token1] = ACTIONS(3277), - [aux_sym_control_path_token1] = ACTIONS(3277), - [aux_sym_control_persist_token1] = ACTIONS(3277), - [aux_sym_dynamic_forward_token1] = ACTIONS(3277), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3277), - [aux_sym_escape_char_token1] = ACTIONS(3277), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3277), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3277), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3277), - [aux_sym_forward_agent_token1] = ACTIONS(3277), - [aux_sym_forward_x11_token1] = ACTIONS(3279), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3277), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3277), - [aux_sym_gateway_ports_token1] = ACTIONS(3277), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3277), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3277), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3277), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3277), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3277), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3277), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3277), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3277), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3277), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3277), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3277), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3277), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3277), - [aux_sym_host_key_alias_token1] = ACTIONS(3277), - [aux_sym_hostname_token1] = ACTIONS(3277), - [aux_sym_identities_only_token1] = ACTIONS(3277), - [aux_sym_identity_agent_token1] = ACTIONS(3277), - [aux_sym_identity_file_token1] = ACTIONS(3277), - [aux_sym_ignore_unknown_token1] = ACTIONS(3277), - [aux_sym_include_token1] = ACTIONS(3277), - [aux_sym_ip_qos_token1] = ACTIONS(3277), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3277), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3277), - [aux_sym_kex_algorithms_token1] = ACTIONS(3277), - [aux_sym_known_hosts_command_token1] = ACTIONS(3277), - [aux_sym_local_command_token1] = ACTIONS(3277), - [aux_sym_local_forward_token1] = ACTIONS(3277), - [aux_sym_log_level_token1] = ACTIONS(3277), - [aux_sym_log_verbose_token1] = ACTIONS(3277), - [aux_sym_macs_token1] = ACTIONS(3277), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3277), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3277), - [aux_sym_password_authentication_token1] = ACTIONS(3277), - [aux_sym_permit_local_command_token1] = ACTIONS(3277), - [aux_sym_permit_remote_open_token1] = ACTIONS(3277), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3277), - [aux_sym_port_token1] = ACTIONS(3277), - [aux_sym_preferred_authentications_token1] = ACTIONS(3277), - [aux_sym_protocol_token1] = ACTIONS(3277), - [aux_sym_proxy_command_token1] = ACTIONS(3277), - [aux_sym_proxy_jump_token1] = ACTIONS(3277), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3277), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3277), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3277), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3277), - [aux_sym_rekey_limit_token1] = ACTIONS(3277), - [aux_sym_remote_command_token1] = ACTIONS(3277), - [aux_sym_remote_forward_token1] = ACTIONS(3277), - [aux_sym_request_tty_token1] = ACTIONS(3277), - [aux_sym_required_rsa_size_token1] = ACTIONS(3277), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3277), - [aux_sym_security_key_provider_token1] = ACTIONS(3277), - [aux_sym_send_env_token1] = ACTIONS(3277), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3277), - [aux_sym_server_alive_interval_token1] = ACTIONS(3277), - [aux_sym_session_type_token1] = ACTIONS(3277), - [aux_sym_set_env_token1] = ACTIONS(3277), - [aux_sym_stdin_null_token1] = ACTIONS(3277), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3277), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3277), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3277), - [aux_sym_syslog_facility_token1] = ACTIONS(3277), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3277), - [aux_sym_keep_alive_token1] = ACTIONS(3277), - [aux_sym_tunnel_token1] = ACTIONS(3279), - [aux_sym_tunnel_device_token1] = ACTIONS(3277), - [aux_sym_update_host_keys_token1] = ACTIONS(3277), - [aux_sym_use_keychain_token1] = ACTIONS(3277), - [aux_sym_use_roaming_token1] = ACTIONS(3277), - [aux_sym_user_token1] = ACTIONS(3279), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3277), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3277), - [aux_sym_visual_host_key_token1] = ACTIONS(3277), - [aux_sym_xauth_location_token1] = ACTIONS(3277), + [ts_builtin_sym_end] = ACTIONS(3192), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3194), + [aux_sym_match_token1] = ACTIONS(3192), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3192), + [aux_sym_address_family_token1] = ACTIONS(3192), + [aux_sym_batch_mode_token1] = ACTIONS(3192), + [aux_sym_bind_address_token1] = ACTIONS(3192), + [aux_sym_bind_interface_token1] = ACTIONS(3192), + [aux_sym_canonical_domains_token1] = ACTIONS(3192), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3192), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3192), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3192), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3192), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3192), + [aux_sym_certificate_file_token1] = ACTIONS(3192), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3192), + [aux_sym_check_host_ip_token1] = ACTIONS(3192), + [aux_sym_ciphers_token1] = ACTIONS(3192), + [aux_sym_cipher_token1] = ACTIONS(3194), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3192), + [aux_sym_compression_token1] = ACTIONS(3192), + [aux_sym_connection_attempts_token1] = ACTIONS(3192), + [aux_sym_connect_timeout_token1] = ACTIONS(3192), + [aux_sym_control_master_token1] = ACTIONS(3192), + [aux_sym_control_path_token1] = ACTIONS(3192), + [aux_sym_control_persist_token1] = ACTIONS(3192), + [aux_sym_dynamic_forward_token1] = ACTIONS(3192), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3192), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3192), + [aux_sym_escape_char_token1] = ACTIONS(3192), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3192), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3192), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3192), + [aux_sym_forward_agent_token1] = ACTIONS(3192), + [aux_sym_forward_x11_token1] = ACTIONS(3194), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3192), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3192), + [aux_sym_gateway_ports_token1] = ACTIONS(3192), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3192), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3192), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3192), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3192), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3192), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3192), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3192), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3192), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3192), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3192), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3192), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3192), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3192), + [aux_sym_host_key_alias_token1] = ACTIONS(3192), + [aux_sym_hostname_token1] = ACTIONS(3192), + [aux_sym_identities_only_token1] = ACTIONS(3192), + [aux_sym_identity_agent_token1] = ACTIONS(3192), + [aux_sym_identity_file_token1] = ACTIONS(3192), + [aux_sym_ignore_unknown_token1] = ACTIONS(3192), + [aux_sym_include_token1] = ACTIONS(3192), + [aux_sym_ip_qos_token1] = ACTIONS(3192), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3192), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3192), + [aux_sym_kex_algorithms_token1] = ACTIONS(3192), + [aux_sym_known_hosts_command_token1] = ACTIONS(3192), + [aux_sym_local_command_token1] = ACTIONS(3192), + [aux_sym_local_forward_token1] = ACTIONS(3192), + [aux_sym_log_level_token1] = ACTIONS(3192), + [aux_sym_log_verbose_token1] = ACTIONS(3192), + [aux_sym_macs_token1] = ACTIONS(3192), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3192), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3192), + [aux_sym_password_authentication_token1] = ACTIONS(3192), + [aux_sym_permit_local_command_token1] = ACTIONS(3192), + [aux_sym_permit_remote_open_token1] = ACTIONS(3192), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3192), + [aux_sym_port_token1] = ACTIONS(3192), + [aux_sym_preferred_authentications_token1] = ACTIONS(3192), + [aux_sym_protocol_token1] = ACTIONS(3192), + [aux_sym_proxy_command_token1] = ACTIONS(3192), + [aux_sym_proxy_jump_token1] = ACTIONS(3192), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3192), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3192), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3192), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3192), + [aux_sym_rekey_limit_token1] = ACTIONS(3192), + [aux_sym_remote_command_token1] = ACTIONS(3192), + [aux_sym_remote_forward_token1] = ACTIONS(3192), + [aux_sym_request_tty_token1] = ACTIONS(3192), + [aux_sym_required_rsa_size_token1] = ACTIONS(3192), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3192), + [aux_sym_security_key_provider_token1] = ACTIONS(3192), + [aux_sym_send_env_token1] = ACTIONS(3192), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3192), + [aux_sym_server_alive_interval_token1] = ACTIONS(3192), + [aux_sym_session_type_token1] = ACTIONS(3192), + [aux_sym_set_env_token1] = ACTIONS(3192), + [aux_sym_stdin_null_token1] = ACTIONS(3192), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3192), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3192), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3192), + [aux_sym_syslog_facility_token1] = ACTIONS(3192), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3192), + [aux_sym_keep_alive_token1] = ACTIONS(3192), + [aux_sym_tunnel_token1] = ACTIONS(3194), + [aux_sym_tunnel_device_token1] = ACTIONS(3192), + [aux_sym_update_host_keys_token1] = ACTIONS(3192), + [aux_sym_use_keychain_token1] = ACTIONS(3192), + [aux_sym_use_roaming_token1] = ACTIONS(3192), + [aux_sym_user_token1] = ACTIONS(3194), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3192), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3192), + [aux_sym_visual_host_key_token1] = ACTIONS(3192), + [aux_sym_xauth_location_token1] = ACTIONS(3192), }, [525] = { - [ts_builtin_sym_end] = ACTIONS(3281), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3283), - [aux_sym_match_token1] = ACTIONS(3281), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3281), - [aux_sym_address_family_token1] = ACTIONS(3281), - [aux_sym_batch_mode_token1] = ACTIONS(3281), - [aux_sym_bind_address_token1] = ACTIONS(3281), - [aux_sym_bind_interface_token1] = ACTIONS(3281), - [aux_sym_canonical_domains_token1] = ACTIONS(3281), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3281), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3281), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3281), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3281), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3281), - [aux_sym_certificate_file_token1] = ACTIONS(3281), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3281), - [aux_sym_check_host_ip_token1] = ACTIONS(3281), - [aux_sym_ciphers_token1] = ACTIONS(3281), - [aux_sym_cipher_token1] = ACTIONS(3283), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3281), - [aux_sym_compression_token1] = ACTIONS(3281), - [aux_sym_connection_attempts_token1] = ACTIONS(3281), - [aux_sym_connect_timeout_token1] = ACTIONS(3281), - [aux_sym_control_master_token1] = ACTIONS(3281), - [aux_sym_control_path_token1] = ACTIONS(3281), - [aux_sym_control_persist_token1] = ACTIONS(3281), - [aux_sym_dynamic_forward_token1] = ACTIONS(3281), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3281), - [aux_sym_escape_char_token1] = ACTIONS(3281), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3281), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3281), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3281), - [aux_sym_forward_agent_token1] = ACTIONS(3281), - [aux_sym_forward_x11_token1] = ACTIONS(3283), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3281), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3281), - [aux_sym_gateway_ports_token1] = ACTIONS(3281), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3281), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3281), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3281), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3281), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3281), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3281), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3281), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3281), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3281), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3281), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3281), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3281), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3281), - [aux_sym_host_key_alias_token1] = ACTIONS(3281), - [aux_sym_hostname_token1] = ACTIONS(3281), - [aux_sym_identities_only_token1] = ACTIONS(3281), - [aux_sym_identity_agent_token1] = ACTIONS(3281), - [aux_sym_identity_file_token1] = ACTIONS(3281), - [aux_sym_ignore_unknown_token1] = ACTIONS(3281), - [aux_sym_include_token1] = ACTIONS(3281), - [aux_sym_ip_qos_token1] = ACTIONS(3281), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3281), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3281), - [aux_sym_kex_algorithms_token1] = ACTIONS(3281), - [aux_sym_known_hosts_command_token1] = ACTIONS(3281), - [aux_sym_local_command_token1] = ACTIONS(3281), - [aux_sym_local_forward_token1] = ACTIONS(3281), - [aux_sym_log_level_token1] = ACTIONS(3281), - [aux_sym_log_verbose_token1] = ACTIONS(3281), - [aux_sym_macs_token1] = ACTIONS(3281), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3281), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3281), - [aux_sym_password_authentication_token1] = ACTIONS(3281), - [aux_sym_permit_local_command_token1] = ACTIONS(3281), - [aux_sym_permit_remote_open_token1] = ACTIONS(3281), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3281), - [aux_sym_port_token1] = ACTIONS(3281), - [aux_sym_preferred_authentications_token1] = ACTIONS(3281), - [aux_sym_protocol_token1] = ACTIONS(3281), - [aux_sym_proxy_command_token1] = ACTIONS(3281), - [aux_sym_proxy_jump_token1] = ACTIONS(3281), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3281), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3281), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3281), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3281), - [aux_sym_rekey_limit_token1] = ACTIONS(3281), - [aux_sym_remote_command_token1] = ACTIONS(3281), - [aux_sym_remote_forward_token1] = ACTIONS(3281), - [aux_sym_request_tty_token1] = ACTIONS(3281), - [aux_sym_required_rsa_size_token1] = ACTIONS(3281), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3281), - [aux_sym_security_key_provider_token1] = ACTIONS(3281), - [aux_sym_send_env_token1] = ACTIONS(3281), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3281), - [aux_sym_server_alive_interval_token1] = ACTIONS(3281), - [aux_sym_session_type_token1] = ACTIONS(3281), - [aux_sym_set_env_token1] = ACTIONS(3281), - [aux_sym_stdin_null_token1] = ACTIONS(3281), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3281), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3281), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3281), - [aux_sym_syslog_facility_token1] = ACTIONS(3281), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3281), - [aux_sym_keep_alive_token1] = ACTIONS(3281), - [aux_sym_tunnel_token1] = ACTIONS(3283), - [aux_sym_tunnel_device_token1] = ACTIONS(3281), - [aux_sym_update_host_keys_token1] = ACTIONS(3281), - [aux_sym_use_keychain_token1] = ACTIONS(3281), - [aux_sym_use_roaming_token1] = ACTIONS(3281), - [aux_sym_user_token1] = ACTIONS(3283), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3281), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3281), - [aux_sym_visual_host_key_token1] = ACTIONS(3281), - [aux_sym_xauth_location_token1] = ACTIONS(3281), + [ts_builtin_sym_end] = ACTIONS(3196), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3198), + [aux_sym_match_token1] = ACTIONS(3196), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3196), + [aux_sym_address_family_token1] = ACTIONS(3196), + [aux_sym_batch_mode_token1] = ACTIONS(3196), + [aux_sym_bind_address_token1] = ACTIONS(3196), + [aux_sym_bind_interface_token1] = ACTIONS(3196), + [aux_sym_canonical_domains_token1] = ACTIONS(3196), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3196), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3196), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3196), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3196), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3196), + [aux_sym_certificate_file_token1] = ACTIONS(3196), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3196), + [aux_sym_check_host_ip_token1] = ACTIONS(3196), + [aux_sym_ciphers_token1] = ACTIONS(3196), + [aux_sym_cipher_token1] = ACTIONS(3198), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3196), + [aux_sym_compression_token1] = ACTIONS(3196), + [aux_sym_connection_attempts_token1] = ACTIONS(3196), + [aux_sym_connect_timeout_token1] = ACTIONS(3196), + [aux_sym_control_master_token1] = ACTIONS(3196), + [aux_sym_control_path_token1] = ACTIONS(3196), + [aux_sym_control_persist_token1] = ACTIONS(3196), + [aux_sym_dynamic_forward_token1] = ACTIONS(3196), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3196), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3196), + [aux_sym_escape_char_token1] = ACTIONS(3196), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3196), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3196), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3196), + [aux_sym_forward_agent_token1] = ACTIONS(3196), + [aux_sym_forward_x11_token1] = ACTIONS(3198), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3196), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3196), + [aux_sym_gateway_ports_token1] = ACTIONS(3196), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3196), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3196), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3196), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3196), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3196), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3196), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3196), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3196), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3196), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3196), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3196), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3196), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3196), + [aux_sym_host_key_alias_token1] = ACTIONS(3196), + [aux_sym_hostname_token1] = ACTIONS(3196), + [aux_sym_identities_only_token1] = ACTIONS(3196), + [aux_sym_identity_agent_token1] = ACTIONS(3196), + [aux_sym_identity_file_token1] = ACTIONS(3196), + [aux_sym_ignore_unknown_token1] = ACTIONS(3196), + [aux_sym_include_token1] = ACTIONS(3196), + [aux_sym_ip_qos_token1] = ACTIONS(3196), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3196), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3196), + [aux_sym_kex_algorithms_token1] = ACTIONS(3196), + [aux_sym_known_hosts_command_token1] = ACTIONS(3196), + [aux_sym_local_command_token1] = ACTIONS(3196), + [aux_sym_local_forward_token1] = ACTIONS(3196), + [aux_sym_log_level_token1] = ACTIONS(3196), + [aux_sym_log_verbose_token1] = ACTIONS(3196), + [aux_sym_macs_token1] = ACTIONS(3196), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3196), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3196), + [aux_sym_password_authentication_token1] = ACTIONS(3196), + [aux_sym_permit_local_command_token1] = ACTIONS(3196), + [aux_sym_permit_remote_open_token1] = ACTIONS(3196), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3196), + [aux_sym_port_token1] = ACTIONS(3196), + [aux_sym_preferred_authentications_token1] = ACTIONS(3196), + [aux_sym_protocol_token1] = ACTIONS(3196), + [aux_sym_proxy_command_token1] = ACTIONS(3196), + [aux_sym_proxy_jump_token1] = ACTIONS(3196), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3196), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3196), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3196), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3196), + [aux_sym_rekey_limit_token1] = ACTIONS(3196), + [aux_sym_remote_command_token1] = ACTIONS(3196), + [aux_sym_remote_forward_token1] = ACTIONS(3196), + [aux_sym_request_tty_token1] = ACTIONS(3196), + [aux_sym_required_rsa_size_token1] = ACTIONS(3196), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3196), + [aux_sym_security_key_provider_token1] = ACTIONS(3196), + [aux_sym_send_env_token1] = ACTIONS(3196), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3196), + [aux_sym_server_alive_interval_token1] = ACTIONS(3196), + [aux_sym_session_type_token1] = ACTIONS(3196), + [aux_sym_set_env_token1] = ACTIONS(3196), + [aux_sym_stdin_null_token1] = ACTIONS(3196), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3196), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3196), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3196), + [aux_sym_syslog_facility_token1] = ACTIONS(3196), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3196), + [aux_sym_keep_alive_token1] = ACTIONS(3196), + [aux_sym_tunnel_token1] = ACTIONS(3198), + [aux_sym_tunnel_device_token1] = ACTIONS(3196), + [aux_sym_update_host_keys_token1] = ACTIONS(3196), + [aux_sym_use_keychain_token1] = ACTIONS(3196), + [aux_sym_use_roaming_token1] = ACTIONS(3196), + [aux_sym_user_token1] = ACTIONS(3198), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3196), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3196), + [aux_sym_visual_host_key_token1] = ACTIONS(3196), + [aux_sym_xauth_location_token1] = ACTIONS(3196), }, [526] = { - [ts_builtin_sym_end] = ACTIONS(3285), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3287), - [aux_sym_match_token1] = ACTIONS(3285), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3285), - [aux_sym_address_family_token1] = ACTIONS(3285), - [aux_sym_batch_mode_token1] = ACTIONS(3285), - [aux_sym_bind_address_token1] = ACTIONS(3285), - [aux_sym_bind_interface_token1] = ACTIONS(3285), - [aux_sym_canonical_domains_token1] = ACTIONS(3285), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3285), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3285), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3285), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3285), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3285), - [aux_sym_certificate_file_token1] = ACTIONS(3285), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3285), - [aux_sym_check_host_ip_token1] = ACTIONS(3285), - [aux_sym_ciphers_token1] = ACTIONS(3285), - [aux_sym_cipher_token1] = ACTIONS(3287), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3285), - [aux_sym_compression_token1] = ACTIONS(3285), - [aux_sym_connection_attempts_token1] = ACTIONS(3285), - [aux_sym_connect_timeout_token1] = ACTIONS(3285), - [aux_sym_control_master_token1] = ACTIONS(3285), - [aux_sym_control_path_token1] = ACTIONS(3285), - [aux_sym_control_persist_token1] = ACTIONS(3285), - [aux_sym_dynamic_forward_token1] = ACTIONS(3285), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3285), - [aux_sym_escape_char_token1] = ACTIONS(3285), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3285), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3285), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3285), - [aux_sym_forward_agent_token1] = ACTIONS(3285), - [aux_sym_forward_x11_token1] = ACTIONS(3287), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3285), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3285), - [aux_sym_gateway_ports_token1] = ACTIONS(3285), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3285), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3285), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3285), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3285), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3285), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3285), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3285), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3285), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3285), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3285), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3285), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3285), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3285), - [aux_sym_host_key_alias_token1] = ACTIONS(3285), - [aux_sym_hostname_token1] = ACTIONS(3285), - [aux_sym_identities_only_token1] = ACTIONS(3285), - [aux_sym_identity_agent_token1] = ACTIONS(3285), - [aux_sym_identity_file_token1] = ACTIONS(3285), - [aux_sym_ignore_unknown_token1] = ACTIONS(3285), - [aux_sym_include_token1] = ACTIONS(3285), - [aux_sym_ip_qos_token1] = ACTIONS(3285), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3285), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3285), - [aux_sym_kex_algorithms_token1] = ACTIONS(3285), - [aux_sym_known_hosts_command_token1] = ACTIONS(3285), - [aux_sym_local_command_token1] = ACTIONS(3285), - [aux_sym_local_forward_token1] = ACTIONS(3285), - [aux_sym_log_level_token1] = ACTIONS(3285), - [aux_sym_log_verbose_token1] = ACTIONS(3285), - [aux_sym_macs_token1] = ACTIONS(3285), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3285), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3285), - [aux_sym_password_authentication_token1] = ACTIONS(3285), - [aux_sym_permit_local_command_token1] = ACTIONS(3285), - [aux_sym_permit_remote_open_token1] = ACTIONS(3285), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3285), - [aux_sym_port_token1] = ACTIONS(3285), - [aux_sym_preferred_authentications_token1] = ACTIONS(3285), - [aux_sym_protocol_token1] = ACTIONS(3285), - [aux_sym_proxy_command_token1] = ACTIONS(3285), - [aux_sym_proxy_jump_token1] = ACTIONS(3285), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3285), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3285), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3285), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3285), - [aux_sym_rekey_limit_token1] = ACTIONS(3285), - [aux_sym_remote_command_token1] = ACTIONS(3285), - [aux_sym_remote_forward_token1] = ACTIONS(3285), - [aux_sym_request_tty_token1] = ACTIONS(3285), - [aux_sym_required_rsa_size_token1] = ACTIONS(3285), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3285), - [aux_sym_security_key_provider_token1] = ACTIONS(3285), - [aux_sym_send_env_token1] = ACTIONS(3285), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3285), - [aux_sym_server_alive_interval_token1] = ACTIONS(3285), - [aux_sym_session_type_token1] = ACTIONS(3285), - [aux_sym_set_env_token1] = ACTIONS(3285), - [aux_sym_stdin_null_token1] = ACTIONS(3285), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3285), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3285), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3285), - [aux_sym_syslog_facility_token1] = ACTIONS(3285), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3285), - [aux_sym_keep_alive_token1] = ACTIONS(3285), - [aux_sym_tunnel_token1] = ACTIONS(3287), - [aux_sym_tunnel_device_token1] = ACTIONS(3285), - [aux_sym_update_host_keys_token1] = ACTIONS(3285), - [aux_sym_use_keychain_token1] = ACTIONS(3285), - [aux_sym_use_roaming_token1] = ACTIONS(3285), - [aux_sym_user_token1] = ACTIONS(3287), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3285), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3285), - [aux_sym_visual_host_key_token1] = ACTIONS(3285), - [aux_sym_xauth_location_token1] = ACTIONS(3285), + [ts_builtin_sym_end] = ACTIONS(3200), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3202), + [aux_sym_match_token1] = ACTIONS(3200), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3200), + [aux_sym_address_family_token1] = ACTIONS(3200), + [aux_sym_batch_mode_token1] = ACTIONS(3200), + [aux_sym_bind_address_token1] = ACTIONS(3200), + [aux_sym_bind_interface_token1] = ACTIONS(3200), + [aux_sym_canonical_domains_token1] = ACTIONS(3200), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3200), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3200), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3200), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3200), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3200), + [aux_sym_certificate_file_token1] = ACTIONS(3200), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3200), + [aux_sym_check_host_ip_token1] = ACTIONS(3200), + [aux_sym_ciphers_token1] = ACTIONS(3200), + [aux_sym_cipher_token1] = ACTIONS(3202), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3200), + [aux_sym_compression_token1] = ACTIONS(3200), + [aux_sym_connection_attempts_token1] = ACTIONS(3200), + [aux_sym_connect_timeout_token1] = ACTIONS(3200), + [aux_sym_control_master_token1] = ACTIONS(3200), + [aux_sym_control_path_token1] = ACTIONS(3200), + [aux_sym_control_persist_token1] = ACTIONS(3200), + [aux_sym_dynamic_forward_token1] = ACTIONS(3200), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3200), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3200), + [aux_sym_escape_char_token1] = ACTIONS(3200), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3200), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3200), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3200), + [aux_sym_forward_agent_token1] = ACTIONS(3200), + [aux_sym_forward_x11_token1] = ACTIONS(3202), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3200), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3200), + [aux_sym_gateway_ports_token1] = ACTIONS(3200), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3200), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3200), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3200), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3200), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3200), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3200), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3200), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3200), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3200), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3200), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3200), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3200), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3200), + [aux_sym_host_key_alias_token1] = ACTIONS(3200), + [aux_sym_hostname_token1] = ACTIONS(3200), + [aux_sym_identities_only_token1] = ACTIONS(3200), + [aux_sym_identity_agent_token1] = ACTIONS(3200), + [aux_sym_identity_file_token1] = ACTIONS(3200), + [aux_sym_ignore_unknown_token1] = ACTIONS(3200), + [aux_sym_include_token1] = ACTIONS(3200), + [aux_sym_ip_qos_token1] = ACTIONS(3200), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3200), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3200), + [aux_sym_kex_algorithms_token1] = ACTIONS(3200), + [aux_sym_known_hosts_command_token1] = ACTIONS(3200), + [aux_sym_local_command_token1] = ACTIONS(3200), + [aux_sym_local_forward_token1] = ACTIONS(3200), + [aux_sym_log_level_token1] = ACTIONS(3200), + [aux_sym_log_verbose_token1] = ACTIONS(3200), + [aux_sym_macs_token1] = ACTIONS(3200), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3200), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3200), + [aux_sym_password_authentication_token1] = ACTIONS(3200), + [aux_sym_permit_local_command_token1] = ACTIONS(3200), + [aux_sym_permit_remote_open_token1] = ACTIONS(3200), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3200), + [aux_sym_port_token1] = ACTIONS(3200), + [aux_sym_preferred_authentications_token1] = ACTIONS(3200), + [aux_sym_protocol_token1] = ACTIONS(3200), + [aux_sym_proxy_command_token1] = ACTIONS(3200), + [aux_sym_proxy_jump_token1] = ACTIONS(3200), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3200), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3200), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3200), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3200), + [aux_sym_rekey_limit_token1] = ACTIONS(3200), + [aux_sym_remote_command_token1] = ACTIONS(3200), + [aux_sym_remote_forward_token1] = ACTIONS(3200), + [aux_sym_request_tty_token1] = ACTIONS(3200), + [aux_sym_required_rsa_size_token1] = ACTIONS(3200), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3200), + [aux_sym_security_key_provider_token1] = ACTIONS(3200), + [aux_sym_send_env_token1] = ACTIONS(3200), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3200), + [aux_sym_server_alive_interval_token1] = ACTIONS(3200), + [aux_sym_session_type_token1] = ACTIONS(3200), + [aux_sym_set_env_token1] = ACTIONS(3200), + [aux_sym_stdin_null_token1] = ACTIONS(3200), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3200), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3200), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3200), + [aux_sym_syslog_facility_token1] = ACTIONS(3200), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3200), + [aux_sym_keep_alive_token1] = ACTIONS(3200), + [aux_sym_tunnel_token1] = ACTIONS(3202), + [aux_sym_tunnel_device_token1] = ACTIONS(3200), + [aux_sym_update_host_keys_token1] = ACTIONS(3200), + [aux_sym_use_keychain_token1] = ACTIONS(3200), + [aux_sym_use_roaming_token1] = ACTIONS(3200), + [aux_sym_user_token1] = ACTIONS(3202), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3200), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3200), + [aux_sym_visual_host_key_token1] = ACTIONS(3200), + [aux_sym_xauth_location_token1] = ACTIONS(3200), }, [527] = { - [ts_builtin_sym_end] = ACTIONS(3289), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3291), - [aux_sym_match_token1] = ACTIONS(3289), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3289), - [aux_sym_address_family_token1] = ACTIONS(3289), - [aux_sym_batch_mode_token1] = ACTIONS(3289), - [aux_sym_bind_address_token1] = ACTIONS(3289), - [aux_sym_bind_interface_token1] = ACTIONS(3289), - [aux_sym_canonical_domains_token1] = ACTIONS(3289), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3289), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3289), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3289), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3289), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3289), - [aux_sym_certificate_file_token1] = ACTIONS(3289), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3289), - [aux_sym_check_host_ip_token1] = ACTIONS(3289), - [aux_sym_ciphers_token1] = ACTIONS(3289), - [aux_sym_cipher_token1] = ACTIONS(3291), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3289), - [aux_sym_compression_token1] = ACTIONS(3289), - [aux_sym_connection_attempts_token1] = ACTIONS(3289), - [aux_sym_connect_timeout_token1] = ACTIONS(3289), - [aux_sym_control_master_token1] = ACTIONS(3289), - [aux_sym_control_path_token1] = ACTIONS(3289), - [aux_sym_control_persist_token1] = ACTIONS(3289), - [aux_sym_dynamic_forward_token1] = ACTIONS(3289), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3289), - [aux_sym_escape_char_token1] = ACTIONS(3289), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3289), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3289), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3289), - [aux_sym_forward_agent_token1] = ACTIONS(3289), - [aux_sym_forward_x11_token1] = ACTIONS(3291), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3289), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3289), - [aux_sym_gateway_ports_token1] = ACTIONS(3289), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3289), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3289), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3289), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3289), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3289), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3289), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3289), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3289), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3289), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3289), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3289), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3289), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3289), - [aux_sym_host_key_alias_token1] = ACTIONS(3289), - [aux_sym_hostname_token1] = ACTIONS(3289), - [aux_sym_identities_only_token1] = ACTIONS(3289), - [aux_sym_identity_agent_token1] = ACTIONS(3289), - [aux_sym_identity_file_token1] = ACTIONS(3289), - [aux_sym_ignore_unknown_token1] = ACTIONS(3289), - [aux_sym_include_token1] = ACTIONS(3289), - [aux_sym_ip_qos_token1] = ACTIONS(3289), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3289), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3289), - [aux_sym_kex_algorithms_token1] = ACTIONS(3289), - [aux_sym_known_hosts_command_token1] = ACTIONS(3289), - [aux_sym_local_command_token1] = ACTIONS(3289), - [aux_sym_local_forward_token1] = ACTIONS(3289), - [aux_sym_log_level_token1] = ACTIONS(3289), - [aux_sym_log_verbose_token1] = ACTIONS(3289), - [aux_sym_macs_token1] = ACTIONS(3289), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3289), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3289), - [aux_sym_password_authentication_token1] = ACTIONS(3289), - [aux_sym_permit_local_command_token1] = ACTIONS(3289), - [aux_sym_permit_remote_open_token1] = ACTIONS(3289), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3289), - [aux_sym_port_token1] = ACTIONS(3289), - [aux_sym_preferred_authentications_token1] = ACTIONS(3289), - [aux_sym_protocol_token1] = ACTIONS(3289), - [aux_sym_proxy_command_token1] = ACTIONS(3289), - [aux_sym_proxy_jump_token1] = ACTIONS(3289), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3289), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3289), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3289), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3289), - [aux_sym_rekey_limit_token1] = ACTIONS(3289), - [aux_sym_remote_command_token1] = ACTIONS(3289), - [aux_sym_remote_forward_token1] = ACTIONS(3289), - [aux_sym_request_tty_token1] = ACTIONS(3289), - [aux_sym_required_rsa_size_token1] = ACTIONS(3289), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3289), - [aux_sym_security_key_provider_token1] = ACTIONS(3289), - [aux_sym_send_env_token1] = ACTIONS(3289), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3289), - [aux_sym_server_alive_interval_token1] = ACTIONS(3289), - [aux_sym_session_type_token1] = ACTIONS(3289), - [aux_sym_set_env_token1] = ACTIONS(3289), - [aux_sym_stdin_null_token1] = ACTIONS(3289), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3289), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3289), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3289), - [aux_sym_syslog_facility_token1] = ACTIONS(3289), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3289), - [aux_sym_keep_alive_token1] = ACTIONS(3289), - [aux_sym_tunnel_token1] = ACTIONS(3291), - [aux_sym_tunnel_device_token1] = ACTIONS(3289), - [aux_sym_update_host_keys_token1] = ACTIONS(3289), - [aux_sym_use_keychain_token1] = ACTIONS(3289), - [aux_sym_use_roaming_token1] = ACTIONS(3289), - [aux_sym_user_token1] = ACTIONS(3291), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3289), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3289), - [aux_sym_visual_host_key_token1] = ACTIONS(3289), - [aux_sym_xauth_location_token1] = ACTIONS(3289), + [ts_builtin_sym_end] = ACTIONS(3204), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3206), + [aux_sym_match_token1] = ACTIONS(3204), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3204), + [aux_sym_address_family_token1] = ACTIONS(3204), + [aux_sym_batch_mode_token1] = ACTIONS(3204), + [aux_sym_bind_address_token1] = ACTIONS(3204), + [aux_sym_bind_interface_token1] = ACTIONS(3204), + [aux_sym_canonical_domains_token1] = ACTIONS(3204), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3204), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3204), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3204), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3204), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3204), + [aux_sym_certificate_file_token1] = ACTIONS(3204), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3204), + [aux_sym_check_host_ip_token1] = ACTIONS(3204), + [aux_sym_ciphers_token1] = ACTIONS(3204), + [aux_sym_cipher_token1] = ACTIONS(3206), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3204), + [aux_sym_compression_token1] = ACTIONS(3204), + [aux_sym_connection_attempts_token1] = ACTIONS(3204), + [aux_sym_connect_timeout_token1] = ACTIONS(3204), + [aux_sym_control_master_token1] = ACTIONS(3204), + [aux_sym_control_path_token1] = ACTIONS(3204), + [aux_sym_control_persist_token1] = ACTIONS(3204), + [aux_sym_dynamic_forward_token1] = ACTIONS(3204), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3204), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3204), + [aux_sym_escape_char_token1] = ACTIONS(3204), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3204), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3204), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3204), + [aux_sym_forward_agent_token1] = ACTIONS(3204), + [aux_sym_forward_x11_token1] = ACTIONS(3206), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3204), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3204), + [aux_sym_gateway_ports_token1] = ACTIONS(3204), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3204), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3204), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3204), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3204), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3204), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3204), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3204), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3204), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3204), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3204), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3204), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3204), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3204), + [aux_sym_host_key_alias_token1] = ACTIONS(3204), + [aux_sym_hostname_token1] = ACTIONS(3204), + [aux_sym_identities_only_token1] = ACTIONS(3204), + [aux_sym_identity_agent_token1] = ACTIONS(3204), + [aux_sym_identity_file_token1] = ACTIONS(3204), + [aux_sym_ignore_unknown_token1] = ACTIONS(3204), + [aux_sym_include_token1] = ACTIONS(3204), + [aux_sym_ip_qos_token1] = ACTIONS(3204), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3204), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3204), + [aux_sym_kex_algorithms_token1] = ACTIONS(3204), + [aux_sym_known_hosts_command_token1] = ACTIONS(3204), + [aux_sym_local_command_token1] = ACTIONS(3204), + [aux_sym_local_forward_token1] = ACTIONS(3204), + [aux_sym_log_level_token1] = ACTIONS(3204), + [aux_sym_log_verbose_token1] = ACTIONS(3204), + [aux_sym_macs_token1] = ACTIONS(3204), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3204), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3204), + [aux_sym_password_authentication_token1] = ACTIONS(3204), + [aux_sym_permit_local_command_token1] = ACTIONS(3204), + [aux_sym_permit_remote_open_token1] = ACTIONS(3204), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3204), + [aux_sym_port_token1] = ACTIONS(3204), + [aux_sym_preferred_authentications_token1] = ACTIONS(3204), + [aux_sym_protocol_token1] = ACTIONS(3204), + [aux_sym_proxy_command_token1] = ACTIONS(3204), + [aux_sym_proxy_jump_token1] = ACTIONS(3204), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3204), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3204), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3204), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3204), + [aux_sym_rekey_limit_token1] = ACTIONS(3204), + [aux_sym_remote_command_token1] = ACTIONS(3204), + [aux_sym_remote_forward_token1] = ACTIONS(3204), + [aux_sym_request_tty_token1] = ACTIONS(3204), + [aux_sym_required_rsa_size_token1] = ACTIONS(3204), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3204), + [aux_sym_security_key_provider_token1] = ACTIONS(3204), + [aux_sym_send_env_token1] = ACTIONS(3204), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3204), + [aux_sym_server_alive_interval_token1] = ACTIONS(3204), + [aux_sym_session_type_token1] = ACTIONS(3204), + [aux_sym_set_env_token1] = ACTIONS(3204), + [aux_sym_stdin_null_token1] = ACTIONS(3204), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3204), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3204), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3204), + [aux_sym_syslog_facility_token1] = ACTIONS(3204), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3204), + [aux_sym_keep_alive_token1] = ACTIONS(3204), + [aux_sym_tunnel_token1] = ACTIONS(3206), + [aux_sym_tunnel_device_token1] = ACTIONS(3204), + [aux_sym_update_host_keys_token1] = ACTIONS(3204), + [aux_sym_use_keychain_token1] = ACTIONS(3204), + [aux_sym_use_roaming_token1] = ACTIONS(3204), + [aux_sym_user_token1] = ACTIONS(3206), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3204), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3204), + [aux_sym_visual_host_key_token1] = ACTIONS(3204), + [aux_sym_xauth_location_token1] = ACTIONS(3204), }, [528] = { - [ts_builtin_sym_end] = ACTIONS(3293), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3295), - [aux_sym_match_token1] = ACTIONS(3293), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3293), - [aux_sym_address_family_token1] = ACTIONS(3293), - [aux_sym_batch_mode_token1] = ACTIONS(3293), - [aux_sym_bind_address_token1] = ACTIONS(3293), - [aux_sym_bind_interface_token1] = ACTIONS(3293), - [aux_sym_canonical_domains_token1] = ACTIONS(3293), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3293), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3293), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3293), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3293), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3293), - [aux_sym_certificate_file_token1] = ACTIONS(3293), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3293), - [aux_sym_check_host_ip_token1] = ACTIONS(3293), - [aux_sym_ciphers_token1] = ACTIONS(3293), - [aux_sym_cipher_token1] = ACTIONS(3295), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3293), - [aux_sym_compression_token1] = ACTIONS(3293), - [aux_sym_connection_attempts_token1] = ACTIONS(3293), - [aux_sym_connect_timeout_token1] = ACTIONS(3293), - [aux_sym_control_master_token1] = ACTIONS(3293), - [aux_sym_control_path_token1] = ACTIONS(3293), - [aux_sym_control_persist_token1] = ACTIONS(3293), - [aux_sym_dynamic_forward_token1] = ACTIONS(3293), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3293), - [aux_sym_escape_char_token1] = ACTIONS(3293), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3293), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3293), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3293), - [aux_sym_forward_agent_token1] = ACTIONS(3293), - [aux_sym_forward_x11_token1] = ACTIONS(3295), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3293), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3293), - [aux_sym_gateway_ports_token1] = ACTIONS(3293), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3293), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3293), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3293), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3293), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3293), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3293), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3293), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3293), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3293), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3293), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3293), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3293), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3293), - [aux_sym_host_key_alias_token1] = ACTIONS(3293), - [aux_sym_hostname_token1] = ACTIONS(3293), - [aux_sym_identities_only_token1] = ACTIONS(3293), - [aux_sym_identity_agent_token1] = ACTIONS(3293), - [aux_sym_identity_file_token1] = ACTIONS(3293), - [aux_sym_ignore_unknown_token1] = ACTIONS(3293), - [aux_sym_include_token1] = ACTIONS(3293), - [aux_sym_ip_qos_token1] = ACTIONS(3293), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3293), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3293), - [aux_sym_kex_algorithms_token1] = ACTIONS(3293), - [aux_sym_known_hosts_command_token1] = ACTIONS(3293), - [aux_sym_local_command_token1] = ACTIONS(3293), - [aux_sym_local_forward_token1] = ACTIONS(3293), - [aux_sym_log_level_token1] = ACTIONS(3293), - [aux_sym_log_verbose_token1] = ACTIONS(3293), - [aux_sym_macs_token1] = ACTIONS(3293), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3293), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3293), - [aux_sym_password_authentication_token1] = ACTIONS(3293), - [aux_sym_permit_local_command_token1] = ACTIONS(3293), - [aux_sym_permit_remote_open_token1] = ACTIONS(3293), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3293), - [aux_sym_port_token1] = ACTIONS(3293), - [aux_sym_preferred_authentications_token1] = ACTIONS(3293), - [aux_sym_protocol_token1] = ACTIONS(3293), - [aux_sym_proxy_command_token1] = ACTIONS(3293), - [aux_sym_proxy_jump_token1] = ACTIONS(3293), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3293), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3293), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3293), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3293), - [aux_sym_rekey_limit_token1] = ACTIONS(3293), - [aux_sym_remote_command_token1] = ACTIONS(3293), - [aux_sym_remote_forward_token1] = ACTIONS(3293), - [aux_sym_request_tty_token1] = ACTIONS(3293), - [aux_sym_required_rsa_size_token1] = ACTIONS(3293), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3293), - [aux_sym_security_key_provider_token1] = ACTIONS(3293), - [aux_sym_send_env_token1] = ACTIONS(3293), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3293), - [aux_sym_server_alive_interval_token1] = ACTIONS(3293), - [aux_sym_session_type_token1] = ACTIONS(3293), - [aux_sym_set_env_token1] = ACTIONS(3293), - [aux_sym_stdin_null_token1] = ACTIONS(3293), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3293), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3293), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3293), - [aux_sym_syslog_facility_token1] = ACTIONS(3293), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3293), - [aux_sym_keep_alive_token1] = ACTIONS(3293), - [aux_sym_tunnel_token1] = ACTIONS(3295), - [aux_sym_tunnel_device_token1] = ACTIONS(3293), - [aux_sym_update_host_keys_token1] = ACTIONS(3293), - [aux_sym_use_keychain_token1] = ACTIONS(3293), - [aux_sym_use_roaming_token1] = ACTIONS(3293), - [aux_sym_user_token1] = ACTIONS(3295), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3293), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3293), - [aux_sym_visual_host_key_token1] = ACTIONS(3293), - [aux_sym_xauth_location_token1] = ACTIONS(3293), + [ts_builtin_sym_end] = ACTIONS(1058), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1060), + [aux_sym_match_token1] = ACTIONS(1058), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1058), + [aux_sym_address_family_token1] = ACTIONS(1058), + [aux_sym_batch_mode_token1] = ACTIONS(1058), + [aux_sym_bind_address_token1] = ACTIONS(1058), + [aux_sym_bind_interface_token1] = ACTIONS(1058), + [aux_sym_canonical_domains_token1] = ACTIONS(1058), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1058), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1058), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1058), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1058), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1058), + [aux_sym_certificate_file_token1] = ACTIONS(1058), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1058), + [aux_sym_check_host_ip_token1] = ACTIONS(1058), + [aux_sym_ciphers_token1] = ACTIONS(1058), + [aux_sym_cipher_token1] = ACTIONS(1060), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1058), + [aux_sym_compression_token1] = ACTIONS(1058), + [aux_sym_connection_attempts_token1] = ACTIONS(1058), + [aux_sym_connect_timeout_token1] = ACTIONS(1058), + [aux_sym_control_master_token1] = ACTIONS(1058), + [aux_sym_control_path_token1] = ACTIONS(1058), + [aux_sym_control_persist_token1] = ACTIONS(1058), + [aux_sym_dynamic_forward_token1] = ACTIONS(1058), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1058), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1058), + [aux_sym_escape_char_token1] = ACTIONS(1058), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1058), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1058), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1058), + [aux_sym_forward_agent_token1] = ACTIONS(1058), + [aux_sym_forward_x11_token1] = ACTIONS(1060), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1058), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1058), + [aux_sym_gateway_ports_token1] = ACTIONS(1058), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1058), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1058), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1058), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1058), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1058), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1058), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1058), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1058), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1058), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1058), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1058), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1058), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1058), + [aux_sym_host_key_alias_token1] = ACTIONS(1058), + [aux_sym_hostname_token1] = ACTIONS(1058), + [aux_sym_identities_only_token1] = ACTIONS(1058), + [aux_sym_identity_agent_token1] = ACTIONS(1058), + [aux_sym_identity_file_token1] = ACTIONS(1058), + [aux_sym_ignore_unknown_token1] = ACTIONS(1058), + [aux_sym_include_token1] = ACTIONS(1058), + [aux_sym_ip_qos_token1] = ACTIONS(1058), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1058), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1058), + [aux_sym_kex_algorithms_token1] = ACTIONS(1058), + [aux_sym_known_hosts_command_token1] = ACTIONS(1058), + [aux_sym_local_command_token1] = ACTIONS(1058), + [aux_sym_local_forward_token1] = ACTIONS(1058), + [aux_sym_log_level_token1] = ACTIONS(1058), + [aux_sym_log_verbose_token1] = ACTIONS(1058), + [aux_sym_macs_token1] = ACTIONS(1058), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1058), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1058), + [aux_sym_password_authentication_token1] = ACTIONS(1058), + [aux_sym_permit_local_command_token1] = ACTIONS(1058), + [aux_sym_permit_remote_open_token1] = ACTIONS(1058), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1058), + [aux_sym_port_token1] = ACTIONS(1058), + [aux_sym_preferred_authentications_token1] = ACTIONS(1058), + [aux_sym_protocol_token1] = ACTIONS(1058), + [aux_sym_proxy_command_token1] = ACTIONS(1058), + [aux_sym_proxy_jump_token1] = ACTIONS(1058), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1058), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1058), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1058), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1058), + [aux_sym_rekey_limit_token1] = ACTIONS(1058), + [aux_sym_remote_command_token1] = ACTIONS(1058), + [aux_sym_remote_forward_token1] = ACTIONS(1058), + [aux_sym_request_tty_token1] = ACTIONS(1058), + [aux_sym_required_rsa_size_token1] = ACTIONS(1058), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1058), + [aux_sym_security_key_provider_token1] = ACTIONS(1058), + [aux_sym_send_env_token1] = ACTIONS(1058), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1058), + [aux_sym_server_alive_interval_token1] = ACTIONS(1058), + [aux_sym_session_type_token1] = ACTIONS(1058), + [aux_sym_set_env_token1] = ACTIONS(1058), + [aux_sym_stdin_null_token1] = ACTIONS(1058), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1058), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1058), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1058), + [aux_sym_syslog_facility_token1] = ACTIONS(1058), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1058), + [aux_sym_keep_alive_token1] = ACTIONS(1058), + [aux_sym_tunnel_token1] = ACTIONS(1060), + [aux_sym_tunnel_device_token1] = ACTIONS(1058), + [aux_sym_update_host_keys_token1] = ACTIONS(1058), + [aux_sym_use_keychain_token1] = ACTIONS(1058), + [aux_sym_use_roaming_token1] = ACTIONS(1058), + [aux_sym_user_token1] = ACTIONS(1060), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1058), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1058), + [aux_sym_visual_host_key_token1] = ACTIONS(1058), + [aux_sym_xauth_location_token1] = ACTIONS(1058), }, [529] = { - [ts_builtin_sym_end] = ACTIONS(3297), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3299), - [aux_sym_match_token1] = ACTIONS(3297), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3297), - [aux_sym_address_family_token1] = ACTIONS(3297), - [aux_sym_batch_mode_token1] = ACTIONS(3297), - [aux_sym_bind_address_token1] = ACTIONS(3297), - [aux_sym_bind_interface_token1] = ACTIONS(3297), - [aux_sym_canonical_domains_token1] = ACTIONS(3297), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3297), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3297), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3297), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3297), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3297), - [aux_sym_certificate_file_token1] = ACTIONS(3297), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3297), - [aux_sym_check_host_ip_token1] = ACTIONS(3297), - [aux_sym_ciphers_token1] = ACTIONS(3297), - [aux_sym_cipher_token1] = ACTIONS(3299), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3297), - [aux_sym_compression_token1] = ACTIONS(3297), - [aux_sym_connection_attempts_token1] = ACTIONS(3297), - [aux_sym_connect_timeout_token1] = ACTIONS(3297), - [aux_sym_control_master_token1] = ACTIONS(3297), - [aux_sym_control_path_token1] = ACTIONS(3297), - [aux_sym_control_persist_token1] = ACTIONS(3297), - [aux_sym_dynamic_forward_token1] = ACTIONS(3297), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3297), - [aux_sym_escape_char_token1] = ACTIONS(3297), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3297), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3297), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3297), - [aux_sym_forward_agent_token1] = ACTIONS(3297), - [aux_sym_forward_x11_token1] = ACTIONS(3299), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3297), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3297), - [aux_sym_gateway_ports_token1] = ACTIONS(3297), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3297), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3297), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3297), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3297), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3297), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3297), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3297), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3297), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3297), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3297), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3297), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3297), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3297), - [aux_sym_host_key_alias_token1] = ACTIONS(3297), - [aux_sym_hostname_token1] = ACTIONS(3297), - [aux_sym_identities_only_token1] = ACTIONS(3297), - [aux_sym_identity_agent_token1] = ACTIONS(3297), - [aux_sym_identity_file_token1] = ACTIONS(3297), - [aux_sym_ignore_unknown_token1] = ACTIONS(3297), - [aux_sym_include_token1] = ACTIONS(3297), - [aux_sym_ip_qos_token1] = ACTIONS(3297), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3297), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3297), - [aux_sym_kex_algorithms_token1] = ACTIONS(3297), - [aux_sym_known_hosts_command_token1] = ACTIONS(3297), - [aux_sym_local_command_token1] = ACTIONS(3297), - [aux_sym_local_forward_token1] = ACTIONS(3297), - [aux_sym_log_level_token1] = ACTIONS(3297), - [aux_sym_log_verbose_token1] = ACTIONS(3297), - [aux_sym_macs_token1] = ACTIONS(3297), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3297), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3297), - [aux_sym_password_authentication_token1] = ACTIONS(3297), - [aux_sym_permit_local_command_token1] = ACTIONS(3297), - [aux_sym_permit_remote_open_token1] = ACTIONS(3297), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3297), - [aux_sym_port_token1] = ACTIONS(3297), - [aux_sym_preferred_authentications_token1] = ACTIONS(3297), - [aux_sym_protocol_token1] = ACTIONS(3297), - [aux_sym_proxy_command_token1] = ACTIONS(3297), - [aux_sym_proxy_jump_token1] = ACTIONS(3297), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3297), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3297), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3297), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3297), - [aux_sym_rekey_limit_token1] = ACTIONS(3297), - [aux_sym_remote_command_token1] = ACTIONS(3297), - [aux_sym_remote_forward_token1] = ACTIONS(3297), - [aux_sym_request_tty_token1] = ACTIONS(3297), - [aux_sym_required_rsa_size_token1] = ACTIONS(3297), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3297), - [aux_sym_security_key_provider_token1] = ACTIONS(3297), - [aux_sym_send_env_token1] = ACTIONS(3297), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3297), - [aux_sym_server_alive_interval_token1] = ACTIONS(3297), - [aux_sym_session_type_token1] = ACTIONS(3297), - [aux_sym_set_env_token1] = ACTIONS(3297), - [aux_sym_stdin_null_token1] = ACTIONS(3297), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3297), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3297), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3297), - [aux_sym_syslog_facility_token1] = ACTIONS(3297), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3297), - [aux_sym_keep_alive_token1] = ACTIONS(3297), - [aux_sym_tunnel_token1] = ACTIONS(3299), - [aux_sym_tunnel_device_token1] = ACTIONS(3297), - [aux_sym_update_host_keys_token1] = ACTIONS(3297), - [aux_sym_use_keychain_token1] = ACTIONS(3297), - [aux_sym_use_roaming_token1] = ACTIONS(3297), - [aux_sym_user_token1] = ACTIONS(3299), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3297), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3297), - [aux_sym_visual_host_key_token1] = ACTIONS(3297), - [aux_sym_xauth_location_token1] = ACTIONS(3297), + [ts_builtin_sym_end] = ACTIONS(1214), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1216), + [aux_sym_match_token1] = ACTIONS(1214), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1214), + [aux_sym_address_family_token1] = ACTIONS(1214), + [aux_sym_batch_mode_token1] = ACTIONS(1214), + [aux_sym_bind_address_token1] = ACTIONS(1214), + [aux_sym_bind_interface_token1] = ACTIONS(1214), + [aux_sym_canonical_domains_token1] = ACTIONS(1214), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1214), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1214), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1214), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1214), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1214), + [aux_sym_certificate_file_token1] = ACTIONS(1214), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1214), + [aux_sym_check_host_ip_token1] = ACTIONS(1214), + [aux_sym_ciphers_token1] = ACTIONS(1214), + [aux_sym_cipher_token1] = ACTIONS(1216), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1214), + [aux_sym_compression_token1] = ACTIONS(1214), + [aux_sym_connection_attempts_token1] = ACTIONS(1214), + [aux_sym_connect_timeout_token1] = ACTIONS(1214), + [aux_sym_control_master_token1] = ACTIONS(1214), + [aux_sym_control_path_token1] = ACTIONS(1214), + [aux_sym_control_persist_token1] = ACTIONS(1214), + [aux_sym_dynamic_forward_token1] = ACTIONS(1214), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1214), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1214), + [aux_sym_escape_char_token1] = ACTIONS(1214), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1214), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1214), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1214), + [aux_sym_forward_agent_token1] = ACTIONS(1214), + [aux_sym_forward_x11_token1] = ACTIONS(1216), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1214), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1214), + [aux_sym_gateway_ports_token1] = ACTIONS(1214), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1214), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1214), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1214), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1214), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1214), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1214), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1214), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1214), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1214), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1214), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1214), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1214), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1214), + [aux_sym_host_key_alias_token1] = ACTIONS(1214), + [aux_sym_hostname_token1] = ACTIONS(1214), + [aux_sym_identities_only_token1] = ACTIONS(1214), + [aux_sym_identity_agent_token1] = ACTIONS(1214), + [aux_sym_identity_file_token1] = ACTIONS(1214), + [aux_sym_ignore_unknown_token1] = ACTIONS(1214), + [aux_sym_include_token1] = ACTIONS(1214), + [aux_sym_ip_qos_token1] = ACTIONS(1214), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1214), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1214), + [aux_sym_kex_algorithms_token1] = ACTIONS(1214), + [aux_sym_known_hosts_command_token1] = ACTIONS(1214), + [aux_sym_local_command_token1] = ACTIONS(1214), + [aux_sym_local_forward_token1] = ACTIONS(1214), + [aux_sym_log_level_token1] = ACTIONS(1214), + [aux_sym_log_verbose_token1] = ACTIONS(1214), + [aux_sym_macs_token1] = ACTIONS(1214), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1214), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1214), + [aux_sym_password_authentication_token1] = ACTIONS(1214), + [aux_sym_permit_local_command_token1] = ACTIONS(1214), + [aux_sym_permit_remote_open_token1] = ACTIONS(1214), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1214), + [aux_sym_port_token1] = ACTIONS(1214), + [aux_sym_preferred_authentications_token1] = ACTIONS(1214), + [aux_sym_protocol_token1] = ACTIONS(1214), + [aux_sym_proxy_command_token1] = ACTIONS(1214), + [aux_sym_proxy_jump_token1] = ACTIONS(1214), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1214), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1214), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1214), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1214), + [aux_sym_rekey_limit_token1] = ACTIONS(1214), + [aux_sym_remote_command_token1] = ACTIONS(1214), + [aux_sym_remote_forward_token1] = ACTIONS(1214), + [aux_sym_request_tty_token1] = ACTIONS(1214), + [aux_sym_required_rsa_size_token1] = ACTIONS(1214), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1214), + [aux_sym_security_key_provider_token1] = ACTIONS(1214), + [aux_sym_send_env_token1] = ACTIONS(1214), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1214), + [aux_sym_server_alive_interval_token1] = ACTIONS(1214), + [aux_sym_session_type_token1] = ACTIONS(1214), + [aux_sym_set_env_token1] = ACTIONS(1214), + [aux_sym_stdin_null_token1] = ACTIONS(1214), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1214), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1214), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1214), + [aux_sym_syslog_facility_token1] = ACTIONS(1214), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1214), + [aux_sym_keep_alive_token1] = ACTIONS(1214), + [aux_sym_tunnel_token1] = ACTIONS(1216), + [aux_sym_tunnel_device_token1] = ACTIONS(1214), + [aux_sym_update_host_keys_token1] = ACTIONS(1214), + [aux_sym_use_keychain_token1] = ACTIONS(1214), + [aux_sym_use_roaming_token1] = ACTIONS(1214), + [aux_sym_user_token1] = ACTIONS(1216), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1214), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1214), + [aux_sym_visual_host_key_token1] = ACTIONS(1214), + [aux_sym_xauth_location_token1] = ACTIONS(1214), }, [530] = { - [ts_builtin_sym_end] = ACTIONS(3301), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3303), - [aux_sym_match_token1] = ACTIONS(3301), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3301), - [aux_sym_address_family_token1] = ACTIONS(3301), - [aux_sym_batch_mode_token1] = ACTIONS(3301), - [aux_sym_bind_address_token1] = ACTIONS(3301), - [aux_sym_bind_interface_token1] = ACTIONS(3301), - [aux_sym_canonical_domains_token1] = ACTIONS(3301), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3301), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3301), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3301), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3301), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3301), - [aux_sym_certificate_file_token1] = ACTIONS(3301), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3301), - [aux_sym_check_host_ip_token1] = ACTIONS(3301), - [aux_sym_ciphers_token1] = ACTIONS(3301), - [aux_sym_cipher_token1] = ACTIONS(3303), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3301), - [aux_sym_compression_token1] = ACTIONS(3301), - [aux_sym_connection_attempts_token1] = ACTIONS(3301), - [aux_sym_connect_timeout_token1] = ACTIONS(3301), - [aux_sym_control_master_token1] = ACTIONS(3301), - [aux_sym_control_path_token1] = ACTIONS(3301), - [aux_sym_control_persist_token1] = ACTIONS(3301), - [aux_sym_dynamic_forward_token1] = ACTIONS(3301), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3301), - [aux_sym_escape_char_token1] = ACTIONS(3301), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3301), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3301), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3301), - [aux_sym_forward_agent_token1] = ACTIONS(3301), - [aux_sym_forward_x11_token1] = ACTIONS(3303), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3301), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3301), - [aux_sym_gateway_ports_token1] = ACTIONS(3301), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3301), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3301), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3301), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3301), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3301), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3301), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3301), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3301), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3301), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3301), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3301), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3301), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3301), - [aux_sym_host_key_alias_token1] = ACTIONS(3301), - [aux_sym_hostname_token1] = ACTIONS(3301), - [aux_sym_identities_only_token1] = ACTIONS(3301), - [aux_sym_identity_agent_token1] = ACTIONS(3301), - [aux_sym_identity_file_token1] = ACTIONS(3301), - [aux_sym_ignore_unknown_token1] = ACTIONS(3301), - [aux_sym_include_token1] = ACTIONS(3301), - [aux_sym_ip_qos_token1] = ACTIONS(3301), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3301), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3301), - [aux_sym_kex_algorithms_token1] = ACTIONS(3301), - [aux_sym_known_hosts_command_token1] = ACTIONS(3301), - [aux_sym_local_command_token1] = ACTIONS(3301), - [aux_sym_local_forward_token1] = ACTIONS(3301), - [aux_sym_log_level_token1] = ACTIONS(3301), - [aux_sym_log_verbose_token1] = ACTIONS(3301), - [aux_sym_macs_token1] = ACTIONS(3301), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3301), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3301), - [aux_sym_password_authentication_token1] = ACTIONS(3301), - [aux_sym_permit_local_command_token1] = ACTIONS(3301), - [aux_sym_permit_remote_open_token1] = ACTIONS(3301), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3301), - [aux_sym_port_token1] = ACTIONS(3301), - [aux_sym_preferred_authentications_token1] = ACTIONS(3301), - [aux_sym_protocol_token1] = ACTIONS(3301), - [aux_sym_proxy_command_token1] = ACTIONS(3301), - [aux_sym_proxy_jump_token1] = ACTIONS(3301), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3301), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3301), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3301), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3301), - [aux_sym_rekey_limit_token1] = ACTIONS(3301), - [aux_sym_remote_command_token1] = ACTIONS(3301), - [aux_sym_remote_forward_token1] = ACTIONS(3301), - [aux_sym_request_tty_token1] = ACTIONS(3301), - [aux_sym_required_rsa_size_token1] = ACTIONS(3301), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3301), - [aux_sym_security_key_provider_token1] = ACTIONS(3301), - [aux_sym_send_env_token1] = ACTIONS(3301), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3301), - [aux_sym_server_alive_interval_token1] = ACTIONS(3301), - [aux_sym_session_type_token1] = ACTIONS(3301), - [aux_sym_set_env_token1] = ACTIONS(3301), - [aux_sym_stdin_null_token1] = ACTIONS(3301), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3301), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3301), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3301), - [aux_sym_syslog_facility_token1] = ACTIONS(3301), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3301), - [aux_sym_keep_alive_token1] = ACTIONS(3301), - [aux_sym_tunnel_token1] = ACTIONS(3303), - [aux_sym_tunnel_device_token1] = ACTIONS(3301), - [aux_sym_update_host_keys_token1] = ACTIONS(3301), - [aux_sym_use_keychain_token1] = ACTIONS(3301), - [aux_sym_use_roaming_token1] = ACTIONS(3301), - [aux_sym_user_token1] = ACTIONS(3303), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3301), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3301), - [aux_sym_visual_host_key_token1] = ACTIONS(3301), - [aux_sym_xauth_location_token1] = ACTIONS(3301), + [ts_builtin_sym_end] = ACTIONS(3208), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3210), + [aux_sym_match_token1] = ACTIONS(3208), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3208), + [aux_sym_address_family_token1] = ACTIONS(3208), + [aux_sym_batch_mode_token1] = ACTIONS(3208), + [aux_sym_bind_address_token1] = ACTIONS(3208), + [aux_sym_bind_interface_token1] = ACTIONS(3208), + [aux_sym_canonical_domains_token1] = ACTIONS(3208), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3208), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3208), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3208), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3208), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3208), + [aux_sym_certificate_file_token1] = ACTIONS(3208), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3208), + [aux_sym_check_host_ip_token1] = ACTIONS(3208), + [aux_sym_ciphers_token1] = ACTIONS(3208), + [aux_sym_cipher_token1] = ACTIONS(3210), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3208), + [aux_sym_compression_token1] = ACTIONS(3208), + [aux_sym_connection_attempts_token1] = ACTIONS(3208), + [aux_sym_connect_timeout_token1] = ACTIONS(3208), + [aux_sym_control_master_token1] = ACTIONS(3208), + [aux_sym_control_path_token1] = ACTIONS(3208), + [aux_sym_control_persist_token1] = ACTIONS(3208), + [aux_sym_dynamic_forward_token1] = ACTIONS(3208), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3208), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3208), + [aux_sym_escape_char_token1] = ACTIONS(3208), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3208), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3208), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3208), + [aux_sym_forward_agent_token1] = ACTIONS(3208), + [aux_sym_forward_x11_token1] = ACTIONS(3210), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3208), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3208), + [aux_sym_gateway_ports_token1] = ACTIONS(3208), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3208), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3208), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3208), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3208), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3208), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3208), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3208), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3208), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3208), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3208), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3208), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3208), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3208), + [aux_sym_host_key_alias_token1] = ACTIONS(3208), + [aux_sym_hostname_token1] = ACTIONS(3208), + [aux_sym_identities_only_token1] = ACTIONS(3208), + [aux_sym_identity_agent_token1] = ACTIONS(3208), + [aux_sym_identity_file_token1] = ACTIONS(3208), + [aux_sym_ignore_unknown_token1] = ACTIONS(3208), + [aux_sym_include_token1] = ACTIONS(3208), + [aux_sym_ip_qos_token1] = ACTIONS(3208), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3208), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3208), + [aux_sym_kex_algorithms_token1] = ACTIONS(3208), + [aux_sym_known_hosts_command_token1] = ACTIONS(3208), + [aux_sym_local_command_token1] = ACTIONS(3208), + [aux_sym_local_forward_token1] = ACTIONS(3208), + [aux_sym_log_level_token1] = ACTIONS(3208), + [aux_sym_log_verbose_token1] = ACTIONS(3208), + [aux_sym_macs_token1] = ACTIONS(3208), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3208), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3208), + [aux_sym_password_authentication_token1] = ACTIONS(3208), + [aux_sym_permit_local_command_token1] = ACTIONS(3208), + [aux_sym_permit_remote_open_token1] = ACTIONS(3208), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3208), + [aux_sym_port_token1] = ACTIONS(3208), + [aux_sym_preferred_authentications_token1] = ACTIONS(3208), + [aux_sym_protocol_token1] = ACTIONS(3208), + [aux_sym_proxy_command_token1] = ACTIONS(3208), + [aux_sym_proxy_jump_token1] = ACTIONS(3208), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3208), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3208), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3208), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3208), + [aux_sym_rekey_limit_token1] = ACTIONS(3208), + [aux_sym_remote_command_token1] = ACTIONS(3208), + [aux_sym_remote_forward_token1] = ACTIONS(3208), + [aux_sym_request_tty_token1] = ACTIONS(3208), + [aux_sym_required_rsa_size_token1] = ACTIONS(3208), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3208), + [aux_sym_security_key_provider_token1] = ACTIONS(3208), + [aux_sym_send_env_token1] = ACTIONS(3208), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3208), + [aux_sym_server_alive_interval_token1] = ACTIONS(3208), + [aux_sym_session_type_token1] = ACTIONS(3208), + [aux_sym_set_env_token1] = ACTIONS(3208), + [aux_sym_stdin_null_token1] = ACTIONS(3208), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3208), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3208), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3208), + [aux_sym_syslog_facility_token1] = ACTIONS(3208), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3208), + [aux_sym_keep_alive_token1] = ACTIONS(3208), + [aux_sym_tunnel_token1] = ACTIONS(3210), + [aux_sym_tunnel_device_token1] = ACTIONS(3208), + [aux_sym_update_host_keys_token1] = ACTIONS(3208), + [aux_sym_use_keychain_token1] = ACTIONS(3208), + [aux_sym_use_roaming_token1] = ACTIONS(3208), + [aux_sym_user_token1] = ACTIONS(3210), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3208), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3208), + [aux_sym_visual_host_key_token1] = ACTIONS(3208), + [aux_sym_xauth_location_token1] = ACTIONS(3208), }, [531] = { - [ts_builtin_sym_end] = ACTIONS(3305), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3307), - [aux_sym_match_token1] = ACTIONS(3305), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3305), - [aux_sym_address_family_token1] = ACTIONS(3305), - [aux_sym_batch_mode_token1] = ACTIONS(3305), - [aux_sym_bind_address_token1] = ACTIONS(3305), - [aux_sym_bind_interface_token1] = ACTIONS(3305), - [aux_sym_canonical_domains_token1] = ACTIONS(3305), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3305), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3305), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3305), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3305), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3305), - [aux_sym_certificate_file_token1] = ACTIONS(3305), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3305), - [aux_sym_check_host_ip_token1] = ACTIONS(3305), - [aux_sym_ciphers_token1] = ACTIONS(3305), - [aux_sym_cipher_token1] = ACTIONS(3307), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3305), - [aux_sym_compression_token1] = ACTIONS(3305), - [aux_sym_connection_attempts_token1] = ACTIONS(3305), - [aux_sym_connect_timeout_token1] = ACTIONS(3305), - [aux_sym_control_master_token1] = ACTIONS(3305), - [aux_sym_control_path_token1] = ACTIONS(3305), - [aux_sym_control_persist_token1] = ACTIONS(3305), - [aux_sym_dynamic_forward_token1] = ACTIONS(3305), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3305), - [aux_sym_escape_char_token1] = ACTIONS(3305), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3305), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3305), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3305), - [aux_sym_forward_agent_token1] = ACTIONS(3305), - [aux_sym_forward_x11_token1] = ACTIONS(3307), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3305), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3305), - [aux_sym_gateway_ports_token1] = ACTIONS(3305), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3305), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3305), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3305), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3305), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3305), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3305), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3305), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3305), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3305), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3305), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3305), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3305), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3305), - [aux_sym_host_key_alias_token1] = ACTIONS(3305), - [aux_sym_hostname_token1] = ACTIONS(3305), - [aux_sym_identities_only_token1] = ACTIONS(3305), - [aux_sym_identity_agent_token1] = ACTIONS(3305), - [aux_sym_identity_file_token1] = ACTIONS(3305), - [aux_sym_ignore_unknown_token1] = ACTIONS(3305), - [aux_sym_include_token1] = ACTIONS(3305), - [aux_sym_ip_qos_token1] = ACTIONS(3305), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3305), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3305), - [aux_sym_kex_algorithms_token1] = ACTIONS(3305), - [aux_sym_known_hosts_command_token1] = ACTIONS(3305), - [aux_sym_local_command_token1] = ACTIONS(3305), - [aux_sym_local_forward_token1] = ACTIONS(3305), - [aux_sym_log_level_token1] = ACTIONS(3305), - [aux_sym_log_verbose_token1] = ACTIONS(3305), - [aux_sym_macs_token1] = ACTIONS(3305), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3305), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3305), - [aux_sym_password_authentication_token1] = ACTIONS(3305), - [aux_sym_permit_local_command_token1] = ACTIONS(3305), - [aux_sym_permit_remote_open_token1] = ACTIONS(3305), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3305), - [aux_sym_port_token1] = ACTIONS(3305), - [aux_sym_preferred_authentications_token1] = ACTIONS(3305), - [aux_sym_protocol_token1] = ACTIONS(3305), - [aux_sym_proxy_command_token1] = ACTIONS(3305), - [aux_sym_proxy_jump_token1] = ACTIONS(3305), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3305), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3305), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3305), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3305), - [aux_sym_rekey_limit_token1] = ACTIONS(3305), - [aux_sym_remote_command_token1] = ACTIONS(3305), - [aux_sym_remote_forward_token1] = ACTIONS(3305), - [aux_sym_request_tty_token1] = ACTIONS(3305), - [aux_sym_required_rsa_size_token1] = ACTIONS(3305), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3305), - [aux_sym_security_key_provider_token1] = ACTIONS(3305), - [aux_sym_send_env_token1] = ACTIONS(3305), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3305), - [aux_sym_server_alive_interval_token1] = ACTIONS(3305), - [aux_sym_session_type_token1] = ACTIONS(3305), - [aux_sym_set_env_token1] = ACTIONS(3305), - [aux_sym_stdin_null_token1] = ACTIONS(3305), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3305), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3305), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3305), - [aux_sym_syslog_facility_token1] = ACTIONS(3305), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3305), - [aux_sym_keep_alive_token1] = ACTIONS(3305), - [aux_sym_tunnel_token1] = ACTIONS(3307), - [aux_sym_tunnel_device_token1] = ACTIONS(3305), - [aux_sym_update_host_keys_token1] = ACTIONS(3305), - [aux_sym_use_keychain_token1] = ACTIONS(3305), - [aux_sym_use_roaming_token1] = ACTIONS(3305), - [aux_sym_user_token1] = ACTIONS(3307), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3305), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3305), - [aux_sym_visual_host_key_token1] = ACTIONS(3305), - [aux_sym_xauth_location_token1] = ACTIONS(3305), + [ts_builtin_sym_end] = ACTIONS(1112), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1114), + [aux_sym_match_token1] = ACTIONS(1112), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1112), + [aux_sym_address_family_token1] = ACTIONS(1112), + [aux_sym_batch_mode_token1] = ACTIONS(1112), + [aux_sym_bind_address_token1] = ACTIONS(1112), + [aux_sym_bind_interface_token1] = ACTIONS(1112), + [aux_sym_canonical_domains_token1] = ACTIONS(1112), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1112), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1112), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1112), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1112), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1112), + [aux_sym_certificate_file_token1] = ACTIONS(1112), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1112), + [aux_sym_check_host_ip_token1] = ACTIONS(1112), + [aux_sym_ciphers_token1] = ACTIONS(1112), + [aux_sym_cipher_token1] = ACTIONS(1114), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1112), + [aux_sym_compression_token1] = ACTIONS(1112), + [aux_sym_connection_attempts_token1] = ACTIONS(1112), + [aux_sym_connect_timeout_token1] = ACTIONS(1112), + [aux_sym_control_master_token1] = ACTIONS(1112), + [aux_sym_control_path_token1] = ACTIONS(1112), + [aux_sym_control_persist_token1] = ACTIONS(1112), + [aux_sym_dynamic_forward_token1] = ACTIONS(1112), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1112), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1112), + [aux_sym_escape_char_token1] = ACTIONS(1112), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1112), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1112), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1112), + [aux_sym_forward_agent_token1] = ACTIONS(1112), + [aux_sym_forward_x11_token1] = ACTIONS(1114), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1112), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1112), + [aux_sym_gateway_ports_token1] = ACTIONS(1112), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1112), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1112), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1112), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1112), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1112), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1112), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1112), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1112), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1112), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1112), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1112), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1112), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1112), + [aux_sym_host_key_alias_token1] = ACTIONS(1112), + [aux_sym_hostname_token1] = ACTIONS(1112), + [aux_sym_identities_only_token1] = ACTIONS(1112), + [aux_sym_identity_agent_token1] = ACTIONS(1112), + [aux_sym_identity_file_token1] = ACTIONS(1112), + [aux_sym_ignore_unknown_token1] = ACTIONS(1112), + [aux_sym_include_token1] = ACTIONS(1112), + [aux_sym_ip_qos_token1] = ACTIONS(1112), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1112), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1112), + [aux_sym_kex_algorithms_token1] = ACTIONS(1112), + [aux_sym_known_hosts_command_token1] = ACTIONS(1112), + [aux_sym_local_command_token1] = ACTIONS(1112), + [aux_sym_local_forward_token1] = ACTIONS(1112), + [aux_sym_log_level_token1] = ACTIONS(1112), + [aux_sym_log_verbose_token1] = ACTIONS(1112), + [aux_sym_macs_token1] = ACTIONS(1112), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1112), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1112), + [aux_sym_password_authentication_token1] = ACTIONS(1112), + [aux_sym_permit_local_command_token1] = ACTIONS(1112), + [aux_sym_permit_remote_open_token1] = ACTIONS(1112), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1112), + [aux_sym_port_token1] = ACTIONS(1112), + [aux_sym_preferred_authentications_token1] = ACTIONS(1112), + [aux_sym_protocol_token1] = ACTIONS(1112), + [aux_sym_proxy_command_token1] = ACTIONS(1112), + [aux_sym_proxy_jump_token1] = ACTIONS(1112), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1112), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1112), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1112), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1112), + [aux_sym_rekey_limit_token1] = ACTIONS(1112), + [aux_sym_remote_command_token1] = ACTIONS(1112), + [aux_sym_remote_forward_token1] = ACTIONS(1112), + [aux_sym_request_tty_token1] = ACTIONS(1112), + [aux_sym_required_rsa_size_token1] = ACTIONS(1112), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1112), + [aux_sym_security_key_provider_token1] = ACTIONS(1112), + [aux_sym_send_env_token1] = ACTIONS(1112), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1112), + [aux_sym_server_alive_interval_token1] = ACTIONS(1112), + [aux_sym_session_type_token1] = ACTIONS(1112), + [aux_sym_set_env_token1] = ACTIONS(1112), + [aux_sym_stdin_null_token1] = ACTIONS(1112), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1112), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1112), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1112), + [aux_sym_syslog_facility_token1] = ACTIONS(1112), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1112), + [aux_sym_keep_alive_token1] = ACTIONS(1112), + [aux_sym_tunnel_token1] = ACTIONS(1114), + [aux_sym_tunnel_device_token1] = ACTIONS(1112), + [aux_sym_update_host_keys_token1] = ACTIONS(1112), + [aux_sym_use_keychain_token1] = ACTIONS(1112), + [aux_sym_use_roaming_token1] = ACTIONS(1112), + [aux_sym_user_token1] = ACTIONS(1114), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1112), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1112), + [aux_sym_visual_host_key_token1] = ACTIONS(1112), + [aux_sym_xauth_location_token1] = ACTIONS(1112), }, [532] = { - [ts_builtin_sym_end] = ACTIONS(3309), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3311), - [aux_sym_match_token1] = ACTIONS(3309), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3309), - [aux_sym_address_family_token1] = ACTIONS(3309), - [aux_sym_batch_mode_token1] = ACTIONS(3309), - [aux_sym_bind_address_token1] = ACTIONS(3309), - [aux_sym_bind_interface_token1] = ACTIONS(3309), - [aux_sym_canonical_domains_token1] = ACTIONS(3309), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3309), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3309), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3309), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3309), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3309), - [aux_sym_certificate_file_token1] = ACTIONS(3309), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3309), - [aux_sym_check_host_ip_token1] = ACTIONS(3309), - [aux_sym_ciphers_token1] = ACTIONS(3309), - [aux_sym_cipher_token1] = ACTIONS(3311), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3309), - [aux_sym_compression_token1] = ACTIONS(3309), - [aux_sym_connection_attempts_token1] = ACTIONS(3309), - [aux_sym_connect_timeout_token1] = ACTIONS(3309), - [aux_sym_control_master_token1] = ACTIONS(3309), - [aux_sym_control_path_token1] = ACTIONS(3309), - [aux_sym_control_persist_token1] = ACTIONS(3309), - [aux_sym_dynamic_forward_token1] = ACTIONS(3309), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3309), - [aux_sym_escape_char_token1] = ACTIONS(3309), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3309), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3309), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3309), - [aux_sym_forward_agent_token1] = ACTIONS(3309), - [aux_sym_forward_x11_token1] = ACTIONS(3311), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3309), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3309), - [aux_sym_gateway_ports_token1] = ACTIONS(3309), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3309), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3309), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3309), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3309), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3309), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3309), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3309), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3309), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3309), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3309), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3309), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3309), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3309), - [aux_sym_host_key_alias_token1] = ACTIONS(3309), - [aux_sym_hostname_token1] = ACTIONS(3309), - [aux_sym_identities_only_token1] = ACTIONS(3309), - [aux_sym_identity_agent_token1] = ACTIONS(3309), - [aux_sym_identity_file_token1] = ACTIONS(3309), - [aux_sym_ignore_unknown_token1] = ACTIONS(3309), - [aux_sym_include_token1] = ACTIONS(3309), - [aux_sym_ip_qos_token1] = ACTIONS(3309), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3309), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3309), - [aux_sym_kex_algorithms_token1] = ACTIONS(3309), - [aux_sym_known_hosts_command_token1] = ACTIONS(3309), - [aux_sym_local_command_token1] = ACTIONS(3309), - [aux_sym_local_forward_token1] = ACTIONS(3309), - [aux_sym_log_level_token1] = ACTIONS(3309), - [aux_sym_log_verbose_token1] = ACTIONS(3309), - [aux_sym_macs_token1] = ACTIONS(3309), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3309), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3309), - [aux_sym_password_authentication_token1] = ACTIONS(3309), - [aux_sym_permit_local_command_token1] = ACTIONS(3309), - [aux_sym_permit_remote_open_token1] = ACTIONS(3309), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3309), - [aux_sym_port_token1] = ACTIONS(3309), - [aux_sym_preferred_authentications_token1] = ACTIONS(3309), - [aux_sym_protocol_token1] = ACTIONS(3309), - [aux_sym_proxy_command_token1] = ACTIONS(3309), - [aux_sym_proxy_jump_token1] = ACTIONS(3309), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3309), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3309), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3309), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3309), - [aux_sym_rekey_limit_token1] = ACTIONS(3309), - [aux_sym_remote_command_token1] = ACTIONS(3309), - [aux_sym_remote_forward_token1] = ACTIONS(3309), - [aux_sym_request_tty_token1] = ACTIONS(3309), - [aux_sym_required_rsa_size_token1] = ACTIONS(3309), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3309), - [aux_sym_security_key_provider_token1] = ACTIONS(3309), - [aux_sym_send_env_token1] = ACTIONS(3309), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3309), - [aux_sym_server_alive_interval_token1] = ACTIONS(3309), - [aux_sym_session_type_token1] = ACTIONS(3309), - [aux_sym_set_env_token1] = ACTIONS(3309), - [aux_sym_stdin_null_token1] = ACTIONS(3309), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3309), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3309), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3309), - [aux_sym_syslog_facility_token1] = ACTIONS(3309), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3309), - [aux_sym_keep_alive_token1] = ACTIONS(3309), - [aux_sym_tunnel_token1] = ACTIONS(3311), - [aux_sym_tunnel_device_token1] = ACTIONS(3309), - [aux_sym_update_host_keys_token1] = ACTIONS(3309), - [aux_sym_use_keychain_token1] = ACTIONS(3309), - [aux_sym_use_roaming_token1] = ACTIONS(3309), - [aux_sym_user_token1] = ACTIONS(3311), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3309), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3309), - [aux_sym_visual_host_key_token1] = ACTIONS(3309), - [aux_sym_xauth_location_token1] = ACTIONS(3309), + [ts_builtin_sym_end] = ACTIONS(1220), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1222), + [aux_sym_match_token1] = ACTIONS(1220), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1220), + [aux_sym_address_family_token1] = ACTIONS(1220), + [aux_sym_batch_mode_token1] = ACTIONS(1220), + [aux_sym_bind_address_token1] = ACTIONS(1220), + [aux_sym_bind_interface_token1] = ACTIONS(1220), + [aux_sym_canonical_domains_token1] = ACTIONS(1220), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1220), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1220), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1220), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1220), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1220), + [aux_sym_certificate_file_token1] = ACTIONS(1220), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1220), + [aux_sym_check_host_ip_token1] = ACTIONS(1220), + [aux_sym_ciphers_token1] = ACTIONS(1220), + [aux_sym_cipher_token1] = ACTIONS(1222), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1220), + [aux_sym_compression_token1] = ACTIONS(1220), + [aux_sym_connection_attempts_token1] = ACTIONS(1220), + [aux_sym_connect_timeout_token1] = ACTIONS(1220), + [aux_sym_control_master_token1] = ACTIONS(1220), + [aux_sym_control_path_token1] = ACTIONS(1220), + [aux_sym_control_persist_token1] = ACTIONS(1220), + [aux_sym_dynamic_forward_token1] = ACTIONS(1220), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1220), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1220), + [aux_sym_escape_char_token1] = ACTIONS(1220), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1220), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1220), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1220), + [aux_sym_forward_agent_token1] = ACTIONS(1220), + [aux_sym_forward_x11_token1] = ACTIONS(1222), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1220), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1220), + [aux_sym_gateway_ports_token1] = ACTIONS(1220), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1220), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1220), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1220), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1220), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1220), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1220), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1220), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1220), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1220), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1220), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1220), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1220), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1220), + [aux_sym_host_key_alias_token1] = ACTIONS(1220), + [aux_sym_hostname_token1] = ACTIONS(1220), + [aux_sym_identities_only_token1] = ACTIONS(1220), + [aux_sym_identity_agent_token1] = ACTIONS(1220), + [aux_sym_identity_file_token1] = ACTIONS(1220), + [aux_sym_ignore_unknown_token1] = ACTIONS(1220), + [aux_sym_include_token1] = ACTIONS(1220), + [aux_sym_ip_qos_token1] = ACTIONS(1220), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1220), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1220), + [aux_sym_kex_algorithms_token1] = ACTIONS(1220), + [aux_sym_known_hosts_command_token1] = ACTIONS(1220), + [aux_sym_local_command_token1] = ACTIONS(1220), + [aux_sym_local_forward_token1] = ACTIONS(1220), + [aux_sym_log_level_token1] = ACTIONS(1220), + [aux_sym_log_verbose_token1] = ACTIONS(1220), + [aux_sym_macs_token1] = ACTIONS(1220), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1220), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1220), + [aux_sym_password_authentication_token1] = ACTIONS(1220), + [aux_sym_permit_local_command_token1] = ACTIONS(1220), + [aux_sym_permit_remote_open_token1] = ACTIONS(1220), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1220), + [aux_sym_port_token1] = ACTIONS(1220), + [aux_sym_preferred_authentications_token1] = ACTIONS(1220), + [aux_sym_protocol_token1] = ACTIONS(1220), + [aux_sym_proxy_command_token1] = ACTIONS(1220), + [aux_sym_proxy_jump_token1] = ACTIONS(1220), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1220), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1220), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1220), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1220), + [aux_sym_rekey_limit_token1] = ACTIONS(1220), + [aux_sym_remote_command_token1] = ACTIONS(1220), + [aux_sym_remote_forward_token1] = ACTIONS(1220), + [aux_sym_request_tty_token1] = ACTIONS(1220), + [aux_sym_required_rsa_size_token1] = ACTIONS(1220), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1220), + [aux_sym_security_key_provider_token1] = ACTIONS(1220), + [aux_sym_send_env_token1] = ACTIONS(1220), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1220), + [aux_sym_server_alive_interval_token1] = ACTIONS(1220), + [aux_sym_session_type_token1] = ACTIONS(1220), + [aux_sym_set_env_token1] = ACTIONS(1220), + [aux_sym_stdin_null_token1] = ACTIONS(1220), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1220), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1220), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1220), + [aux_sym_syslog_facility_token1] = ACTIONS(1220), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1220), + [aux_sym_keep_alive_token1] = ACTIONS(1220), + [aux_sym_tunnel_token1] = ACTIONS(1222), + [aux_sym_tunnel_device_token1] = ACTIONS(1220), + [aux_sym_update_host_keys_token1] = ACTIONS(1220), + [aux_sym_use_keychain_token1] = ACTIONS(1220), + [aux_sym_use_roaming_token1] = ACTIONS(1220), + [aux_sym_user_token1] = ACTIONS(1222), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1220), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1220), + [aux_sym_visual_host_key_token1] = ACTIONS(1220), + [aux_sym_xauth_location_token1] = ACTIONS(1220), }, [533] = { - [ts_builtin_sym_end] = ACTIONS(3313), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3315), - [aux_sym_match_token1] = ACTIONS(3313), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3313), - [aux_sym_address_family_token1] = ACTIONS(3313), - [aux_sym_batch_mode_token1] = ACTIONS(3313), - [aux_sym_bind_address_token1] = ACTIONS(3313), - [aux_sym_bind_interface_token1] = ACTIONS(3313), - [aux_sym_canonical_domains_token1] = ACTIONS(3313), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3313), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3313), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3313), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3313), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3313), - [aux_sym_certificate_file_token1] = ACTIONS(3313), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3313), - [aux_sym_check_host_ip_token1] = ACTIONS(3313), - [aux_sym_ciphers_token1] = ACTIONS(3313), - [aux_sym_cipher_token1] = ACTIONS(3315), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3313), - [aux_sym_compression_token1] = ACTIONS(3313), - [aux_sym_connection_attempts_token1] = ACTIONS(3313), - [aux_sym_connect_timeout_token1] = ACTIONS(3313), - [aux_sym_control_master_token1] = ACTIONS(3313), - [aux_sym_control_path_token1] = ACTIONS(3313), - [aux_sym_control_persist_token1] = ACTIONS(3313), - [aux_sym_dynamic_forward_token1] = ACTIONS(3313), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3313), - [aux_sym_escape_char_token1] = ACTIONS(3313), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3313), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3313), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3313), - [aux_sym_forward_agent_token1] = ACTIONS(3313), - [aux_sym_forward_x11_token1] = ACTIONS(3315), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3313), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3313), - [aux_sym_gateway_ports_token1] = ACTIONS(3313), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3313), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3313), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3313), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3313), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3313), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3313), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3313), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3313), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3313), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3313), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3313), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3313), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3313), - [aux_sym_host_key_alias_token1] = ACTIONS(3313), - [aux_sym_hostname_token1] = ACTIONS(3313), - [aux_sym_identities_only_token1] = ACTIONS(3313), - [aux_sym_identity_agent_token1] = ACTIONS(3313), - [aux_sym_identity_file_token1] = ACTIONS(3313), - [aux_sym_ignore_unknown_token1] = ACTIONS(3313), - [aux_sym_include_token1] = ACTIONS(3313), - [aux_sym_ip_qos_token1] = ACTIONS(3313), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3313), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3313), - [aux_sym_kex_algorithms_token1] = ACTIONS(3313), - [aux_sym_known_hosts_command_token1] = ACTIONS(3313), - [aux_sym_local_command_token1] = ACTIONS(3313), - [aux_sym_local_forward_token1] = ACTIONS(3313), - [aux_sym_log_level_token1] = ACTIONS(3313), - [aux_sym_log_verbose_token1] = ACTIONS(3313), - [aux_sym_macs_token1] = ACTIONS(3313), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3313), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3313), - [aux_sym_password_authentication_token1] = ACTIONS(3313), - [aux_sym_permit_local_command_token1] = ACTIONS(3313), - [aux_sym_permit_remote_open_token1] = ACTIONS(3313), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3313), - [aux_sym_port_token1] = ACTIONS(3313), - [aux_sym_preferred_authentications_token1] = ACTIONS(3313), - [aux_sym_protocol_token1] = ACTIONS(3313), - [aux_sym_proxy_command_token1] = ACTIONS(3313), - [aux_sym_proxy_jump_token1] = ACTIONS(3313), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3313), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3313), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3313), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3313), - [aux_sym_rekey_limit_token1] = ACTIONS(3313), - [aux_sym_remote_command_token1] = ACTIONS(3313), - [aux_sym_remote_forward_token1] = ACTIONS(3313), - [aux_sym_request_tty_token1] = ACTIONS(3313), - [aux_sym_required_rsa_size_token1] = ACTIONS(3313), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3313), - [aux_sym_security_key_provider_token1] = ACTIONS(3313), - [aux_sym_send_env_token1] = ACTIONS(3313), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3313), - [aux_sym_server_alive_interval_token1] = ACTIONS(3313), - [aux_sym_session_type_token1] = ACTIONS(3313), - [aux_sym_set_env_token1] = ACTIONS(3313), - [aux_sym_stdin_null_token1] = ACTIONS(3313), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3313), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3313), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3313), - [aux_sym_syslog_facility_token1] = ACTIONS(3313), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3313), - [aux_sym_keep_alive_token1] = ACTIONS(3313), - [aux_sym_tunnel_token1] = ACTIONS(3315), - [aux_sym_tunnel_device_token1] = ACTIONS(3313), - [aux_sym_update_host_keys_token1] = ACTIONS(3313), - [aux_sym_use_keychain_token1] = ACTIONS(3313), - [aux_sym_use_roaming_token1] = ACTIONS(3313), - [aux_sym_user_token1] = ACTIONS(3315), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3313), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3313), - [aux_sym_visual_host_key_token1] = ACTIONS(3313), - [aux_sym_xauth_location_token1] = ACTIONS(3313), + [ts_builtin_sym_end] = ACTIONS(1034), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1036), + [aux_sym_match_token1] = ACTIONS(1034), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1034), + [aux_sym_address_family_token1] = ACTIONS(1034), + [aux_sym_batch_mode_token1] = ACTIONS(1034), + [aux_sym_bind_address_token1] = ACTIONS(1034), + [aux_sym_bind_interface_token1] = ACTIONS(1034), + [aux_sym_canonical_domains_token1] = ACTIONS(1034), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1034), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1034), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1034), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1034), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1034), + [aux_sym_certificate_file_token1] = ACTIONS(1034), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1034), + [aux_sym_check_host_ip_token1] = ACTIONS(1034), + [aux_sym_ciphers_token1] = ACTIONS(1034), + [aux_sym_cipher_token1] = ACTIONS(1036), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1034), + [aux_sym_compression_token1] = ACTIONS(1034), + [aux_sym_connection_attempts_token1] = ACTIONS(1034), + [aux_sym_connect_timeout_token1] = ACTIONS(1034), + [aux_sym_control_master_token1] = ACTIONS(1034), + [aux_sym_control_path_token1] = ACTIONS(1034), + [aux_sym_control_persist_token1] = ACTIONS(1034), + [aux_sym_dynamic_forward_token1] = ACTIONS(1034), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1034), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1034), + [aux_sym_escape_char_token1] = ACTIONS(1034), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1034), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1034), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1034), + [aux_sym_forward_agent_token1] = ACTIONS(1034), + [aux_sym_forward_x11_token1] = ACTIONS(1036), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1034), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1034), + [aux_sym_gateway_ports_token1] = ACTIONS(1034), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1034), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1034), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1034), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1034), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1034), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1034), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1034), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1034), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1034), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1034), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1034), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1034), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1034), + [aux_sym_host_key_alias_token1] = ACTIONS(1034), + [aux_sym_hostname_token1] = ACTIONS(1034), + [aux_sym_identities_only_token1] = ACTIONS(1034), + [aux_sym_identity_agent_token1] = ACTIONS(1034), + [aux_sym_identity_file_token1] = ACTIONS(1034), + [aux_sym_ignore_unknown_token1] = ACTIONS(1034), + [aux_sym_include_token1] = ACTIONS(1034), + [aux_sym_ip_qos_token1] = ACTIONS(1034), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1034), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1034), + [aux_sym_kex_algorithms_token1] = ACTIONS(1034), + [aux_sym_known_hosts_command_token1] = ACTIONS(1034), + [aux_sym_local_command_token1] = ACTIONS(1034), + [aux_sym_local_forward_token1] = ACTIONS(1034), + [aux_sym_log_level_token1] = ACTIONS(1034), + [aux_sym_log_verbose_token1] = ACTIONS(1034), + [aux_sym_macs_token1] = ACTIONS(1034), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1034), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1034), + [aux_sym_password_authentication_token1] = ACTIONS(1034), + [aux_sym_permit_local_command_token1] = ACTIONS(1034), + [aux_sym_permit_remote_open_token1] = ACTIONS(1034), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1034), + [aux_sym_port_token1] = ACTIONS(1034), + [aux_sym_preferred_authentications_token1] = ACTIONS(1034), + [aux_sym_protocol_token1] = ACTIONS(1034), + [aux_sym_proxy_command_token1] = ACTIONS(1034), + [aux_sym_proxy_jump_token1] = ACTIONS(1034), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1034), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1034), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1034), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1034), + [aux_sym_rekey_limit_token1] = ACTIONS(1034), + [aux_sym_remote_command_token1] = ACTIONS(1034), + [aux_sym_remote_forward_token1] = ACTIONS(1034), + [aux_sym_request_tty_token1] = ACTIONS(1034), + [aux_sym_required_rsa_size_token1] = ACTIONS(1034), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1034), + [aux_sym_security_key_provider_token1] = ACTIONS(1034), + [aux_sym_send_env_token1] = ACTIONS(1034), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1034), + [aux_sym_server_alive_interval_token1] = ACTIONS(1034), + [aux_sym_session_type_token1] = ACTIONS(1034), + [aux_sym_set_env_token1] = ACTIONS(1034), + [aux_sym_stdin_null_token1] = ACTIONS(1034), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1034), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1034), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1034), + [aux_sym_syslog_facility_token1] = ACTIONS(1034), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1034), + [aux_sym_keep_alive_token1] = ACTIONS(1034), + [aux_sym_tunnel_token1] = ACTIONS(1036), + [aux_sym_tunnel_device_token1] = ACTIONS(1034), + [aux_sym_update_host_keys_token1] = ACTIONS(1034), + [aux_sym_use_keychain_token1] = ACTIONS(1034), + [aux_sym_use_roaming_token1] = ACTIONS(1034), + [aux_sym_user_token1] = ACTIONS(1036), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1034), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1034), + [aux_sym_visual_host_key_token1] = ACTIONS(1034), + [aux_sym_xauth_location_token1] = ACTIONS(1034), }, [534] = { - [ts_builtin_sym_end] = ACTIONS(3317), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3319), - [aux_sym_match_token1] = ACTIONS(3317), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3317), - [aux_sym_address_family_token1] = ACTIONS(3317), - [aux_sym_batch_mode_token1] = ACTIONS(3317), - [aux_sym_bind_address_token1] = ACTIONS(3317), - [aux_sym_bind_interface_token1] = ACTIONS(3317), - [aux_sym_canonical_domains_token1] = ACTIONS(3317), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3317), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3317), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3317), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3317), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3317), - [aux_sym_certificate_file_token1] = ACTIONS(3317), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3317), - [aux_sym_check_host_ip_token1] = ACTIONS(3317), - [aux_sym_ciphers_token1] = ACTIONS(3317), - [aux_sym_cipher_token1] = ACTIONS(3319), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3317), - [aux_sym_compression_token1] = ACTIONS(3317), - [aux_sym_connection_attempts_token1] = ACTIONS(3317), - [aux_sym_connect_timeout_token1] = ACTIONS(3317), - [aux_sym_control_master_token1] = ACTIONS(3317), - [aux_sym_control_path_token1] = ACTIONS(3317), - [aux_sym_control_persist_token1] = ACTIONS(3317), - [aux_sym_dynamic_forward_token1] = ACTIONS(3317), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3317), - [aux_sym_escape_char_token1] = ACTIONS(3317), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3317), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3317), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3317), - [aux_sym_forward_agent_token1] = ACTIONS(3317), - [aux_sym_forward_x11_token1] = ACTIONS(3319), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3317), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3317), - [aux_sym_gateway_ports_token1] = ACTIONS(3317), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3317), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3317), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3317), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3317), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3317), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3317), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3317), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3317), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3317), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3317), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3317), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3317), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3317), - [aux_sym_host_key_alias_token1] = ACTIONS(3317), - [aux_sym_hostname_token1] = ACTIONS(3317), - [aux_sym_identities_only_token1] = ACTIONS(3317), - [aux_sym_identity_agent_token1] = ACTIONS(3317), - [aux_sym_identity_file_token1] = ACTIONS(3317), - [aux_sym_ignore_unknown_token1] = ACTIONS(3317), - [aux_sym_include_token1] = ACTIONS(3317), - [aux_sym_ip_qos_token1] = ACTIONS(3317), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3317), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3317), - [aux_sym_kex_algorithms_token1] = ACTIONS(3317), - [aux_sym_known_hosts_command_token1] = ACTIONS(3317), - [aux_sym_local_command_token1] = ACTIONS(3317), - [aux_sym_local_forward_token1] = ACTIONS(3317), - [aux_sym_log_level_token1] = ACTIONS(3317), - [aux_sym_log_verbose_token1] = ACTIONS(3317), - [aux_sym_macs_token1] = ACTIONS(3317), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3317), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3317), - [aux_sym_password_authentication_token1] = ACTIONS(3317), - [aux_sym_permit_local_command_token1] = ACTIONS(3317), - [aux_sym_permit_remote_open_token1] = ACTIONS(3317), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3317), - [aux_sym_port_token1] = ACTIONS(3317), - [aux_sym_preferred_authentications_token1] = ACTIONS(3317), - [aux_sym_protocol_token1] = ACTIONS(3317), - [aux_sym_proxy_command_token1] = ACTIONS(3317), - [aux_sym_proxy_jump_token1] = ACTIONS(3317), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3317), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3317), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3317), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3317), - [aux_sym_rekey_limit_token1] = ACTIONS(3317), - [aux_sym_remote_command_token1] = ACTIONS(3317), - [aux_sym_remote_forward_token1] = ACTIONS(3317), - [aux_sym_request_tty_token1] = ACTIONS(3317), - [aux_sym_required_rsa_size_token1] = ACTIONS(3317), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3317), - [aux_sym_security_key_provider_token1] = ACTIONS(3317), - [aux_sym_send_env_token1] = ACTIONS(3317), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3317), - [aux_sym_server_alive_interval_token1] = ACTIONS(3317), - [aux_sym_session_type_token1] = ACTIONS(3317), - [aux_sym_set_env_token1] = ACTIONS(3317), - [aux_sym_stdin_null_token1] = ACTIONS(3317), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3317), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3317), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3317), - [aux_sym_syslog_facility_token1] = ACTIONS(3317), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3317), - [aux_sym_keep_alive_token1] = ACTIONS(3317), - [aux_sym_tunnel_token1] = ACTIONS(3319), - [aux_sym_tunnel_device_token1] = ACTIONS(3317), - [aux_sym_update_host_keys_token1] = ACTIONS(3317), - [aux_sym_use_keychain_token1] = ACTIONS(3317), - [aux_sym_use_roaming_token1] = ACTIONS(3317), - [aux_sym_user_token1] = ACTIONS(3319), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3317), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3317), - [aux_sym_visual_host_key_token1] = ACTIONS(3317), - [aux_sym_xauth_location_token1] = ACTIONS(3317), + [ts_builtin_sym_end] = ACTIONS(3212), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3214), + [aux_sym_match_token1] = ACTIONS(3212), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3212), + [aux_sym_address_family_token1] = ACTIONS(3212), + [aux_sym_batch_mode_token1] = ACTIONS(3212), + [aux_sym_bind_address_token1] = ACTIONS(3212), + [aux_sym_bind_interface_token1] = ACTIONS(3212), + [aux_sym_canonical_domains_token1] = ACTIONS(3212), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3212), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3212), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3212), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3212), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3212), + [aux_sym_certificate_file_token1] = ACTIONS(3212), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3212), + [aux_sym_check_host_ip_token1] = ACTIONS(3212), + [aux_sym_ciphers_token1] = ACTIONS(3212), + [aux_sym_cipher_token1] = ACTIONS(3214), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3212), + [aux_sym_compression_token1] = ACTIONS(3212), + [aux_sym_connection_attempts_token1] = ACTIONS(3212), + [aux_sym_connect_timeout_token1] = ACTIONS(3212), + [aux_sym_control_master_token1] = ACTIONS(3212), + [aux_sym_control_path_token1] = ACTIONS(3212), + [aux_sym_control_persist_token1] = ACTIONS(3212), + [aux_sym_dynamic_forward_token1] = ACTIONS(3212), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3212), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3212), + [aux_sym_escape_char_token1] = ACTIONS(3212), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3212), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3212), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3212), + [aux_sym_forward_agent_token1] = ACTIONS(3212), + [aux_sym_forward_x11_token1] = ACTIONS(3214), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3212), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3212), + [aux_sym_gateway_ports_token1] = ACTIONS(3212), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3212), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3212), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3212), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3212), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3212), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3212), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3212), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3212), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3212), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3212), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3212), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3212), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3212), + [aux_sym_host_key_alias_token1] = ACTIONS(3212), + [aux_sym_hostname_token1] = ACTIONS(3212), + [aux_sym_identities_only_token1] = ACTIONS(3212), + [aux_sym_identity_agent_token1] = ACTIONS(3212), + [aux_sym_identity_file_token1] = ACTIONS(3212), + [aux_sym_ignore_unknown_token1] = ACTIONS(3212), + [aux_sym_include_token1] = ACTIONS(3212), + [aux_sym_ip_qos_token1] = ACTIONS(3212), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3212), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3212), + [aux_sym_kex_algorithms_token1] = ACTIONS(3212), + [aux_sym_known_hosts_command_token1] = ACTIONS(3212), + [aux_sym_local_command_token1] = ACTIONS(3212), + [aux_sym_local_forward_token1] = ACTIONS(3212), + [aux_sym_log_level_token1] = ACTIONS(3212), + [aux_sym_log_verbose_token1] = ACTIONS(3212), + [aux_sym_macs_token1] = ACTIONS(3212), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3212), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3212), + [aux_sym_password_authentication_token1] = ACTIONS(3212), + [aux_sym_permit_local_command_token1] = ACTIONS(3212), + [aux_sym_permit_remote_open_token1] = ACTIONS(3212), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3212), + [aux_sym_port_token1] = ACTIONS(3212), + [aux_sym_preferred_authentications_token1] = ACTIONS(3212), + [aux_sym_protocol_token1] = ACTIONS(3212), + [aux_sym_proxy_command_token1] = ACTIONS(3212), + [aux_sym_proxy_jump_token1] = ACTIONS(3212), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3212), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3212), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3212), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3212), + [aux_sym_rekey_limit_token1] = ACTIONS(3212), + [aux_sym_remote_command_token1] = ACTIONS(3212), + [aux_sym_remote_forward_token1] = ACTIONS(3212), + [aux_sym_request_tty_token1] = ACTIONS(3212), + [aux_sym_required_rsa_size_token1] = ACTIONS(3212), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3212), + [aux_sym_security_key_provider_token1] = ACTIONS(3212), + [aux_sym_send_env_token1] = ACTIONS(3212), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3212), + [aux_sym_server_alive_interval_token1] = ACTIONS(3212), + [aux_sym_session_type_token1] = ACTIONS(3212), + [aux_sym_set_env_token1] = ACTIONS(3212), + [aux_sym_stdin_null_token1] = ACTIONS(3212), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3212), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3212), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3212), + [aux_sym_syslog_facility_token1] = ACTIONS(3212), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3212), + [aux_sym_keep_alive_token1] = ACTIONS(3212), + [aux_sym_tunnel_token1] = ACTIONS(3214), + [aux_sym_tunnel_device_token1] = ACTIONS(3212), + [aux_sym_update_host_keys_token1] = ACTIONS(3212), + [aux_sym_use_keychain_token1] = ACTIONS(3212), + [aux_sym_use_roaming_token1] = ACTIONS(3212), + [aux_sym_user_token1] = ACTIONS(3214), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3212), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3212), + [aux_sym_visual_host_key_token1] = ACTIONS(3212), + [aux_sym_xauth_location_token1] = ACTIONS(3212), }, [535] = { - [ts_builtin_sym_end] = ACTIONS(3321), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3323), - [aux_sym_match_token1] = ACTIONS(3321), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3321), - [aux_sym_address_family_token1] = ACTIONS(3321), - [aux_sym_batch_mode_token1] = ACTIONS(3321), - [aux_sym_bind_address_token1] = ACTIONS(3321), - [aux_sym_bind_interface_token1] = ACTIONS(3321), - [aux_sym_canonical_domains_token1] = ACTIONS(3321), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3321), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3321), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3321), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3321), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3321), - [aux_sym_certificate_file_token1] = ACTIONS(3321), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3321), - [aux_sym_check_host_ip_token1] = ACTIONS(3321), - [aux_sym_ciphers_token1] = ACTIONS(3321), - [aux_sym_cipher_token1] = ACTIONS(3323), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3321), - [aux_sym_compression_token1] = ACTIONS(3321), - [aux_sym_connection_attempts_token1] = ACTIONS(3321), - [aux_sym_connect_timeout_token1] = ACTIONS(3321), - [aux_sym_control_master_token1] = ACTIONS(3321), - [aux_sym_control_path_token1] = ACTIONS(3321), - [aux_sym_control_persist_token1] = ACTIONS(3321), - [aux_sym_dynamic_forward_token1] = ACTIONS(3321), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3321), - [aux_sym_escape_char_token1] = ACTIONS(3321), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3321), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3321), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3321), - [aux_sym_forward_agent_token1] = ACTIONS(3321), - [aux_sym_forward_x11_token1] = ACTIONS(3323), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3321), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3321), - [aux_sym_gateway_ports_token1] = ACTIONS(3321), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3321), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3321), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3321), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3321), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3321), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3321), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3321), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3321), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3321), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3321), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3321), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3321), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3321), - [aux_sym_host_key_alias_token1] = ACTIONS(3321), - [aux_sym_hostname_token1] = ACTIONS(3321), - [aux_sym_identities_only_token1] = ACTIONS(3321), - [aux_sym_identity_agent_token1] = ACTIONS(3321), - [aux_sym_identity_file_token1] = ACTIONS(3321), - [aux_sym_ignore_unknown_token1] = ACTIONS(3321), - [aux_sym_include_token1] = ACTIONS(3321), - [aux_sym_ip_qos_token1] = ACTIONS(3321), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3321), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3321), - [aux_sym_kex_algorithms_token1] = ACTIONS(3321), - [aux_sym_known_hosts_command_token1] = ACTIONS(3321), - [aux_sym_local_command_token1] = ACTIONS(3321), - [aux_sym_local_forward_token1] = ACTIONS(3321), - [aux_sym_log_level_token1] = ACTIONS(3321), - [aux_sym_log_verbose_token1] = ACTIONS(3321), - [aux_sym_macs_token1] = ACTIONS(3321), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3321), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3321), - [aux_sym_password_authentication_token1] = ACTIONS(3321), - [aux_sym_permit_local_command_token1] = ACTIONS(3321), - [aux_sym_permit_remote_open_token1] = ACTIONS(3321), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3321), - [aux_sym_port_token1] = ACTIONS(3321), - [aux_sym_preferred_authentications_token1] = ACTIONS(3321), - [aux_sym_protocol_token1] = ACTIONS(3321), - [aux_sym_proxy_command_token1] = ACTIONS(3321), - [aux_sym_proxy_jump_token1] = ACTIONS(3321), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3321), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3321), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3321), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3321), - [aux_sym_rekey_limit_token1] = ACTIONS(3321), - [aux_sym_remote_command_token1] = ACTIONS(3321), - [aux_sym_remote_forward_token1] = ACTIONS(3321), - [aux_sym_request_tty_token1] = ACTIONS(3321), - [aux_sym_required_rsa_size_token1] = ACTIONS(3321), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3321), - [aux_sym_security_key_provider_token1] = ACTIONS(3321), - [aux_sym_send_env_token1] = ACTIONS(3321), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3321), - [aux_sym_server_alive_interval_token1] = ACTIONS(3321), - [aux_sym_session_type_token1] = ACTIONS(3321), - [aux_sym_set_env_token1] = ACTIONS(3321), - [aux_sym_stdin_null_token1] = ACTIONS(3321), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3321), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3321), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3321), - [aux_sym_syslog_facility_token1] = ACTIONS(3321), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3321), - [aux_sym_keep_alive_token1] = ACTIONS(3321), - [aux_sym_tunnel_token1] = ACTIONS(3323), - [aux_sym_tunnel_device_token1] = ACTIONS(3321), - [aux_sym_update_host_keys_token1] = ACTIONS(3321), - [aux_sym_use_keychain_token1] = ACTIONS(3321), - [aux_sym_use_roaming_token1] = ACTIONS(3321), - [aux_sym_user_token1] = ACTIONS(3323), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3321), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3321), - [aux_sym_visual_host_key_token1] = ACTIONS(3321), - [aux_sym_xauth_location_token1] = ACTIONS(3321), + [ts_builtin_sym_end] = ACTIONS(3216), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3218), + [aux_sym_match_token1] = ACTIONS(3216), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3216), + [aux_sym_address_family_token1] = ACTIONS(3216), + [aux_sym_batch_mode_token1] = ACTIONS(3216), + [aux_sym_bind_address_token1] = ACTIONS(3216), + [aux_sym_bind_interface_token1] = ACTIONS(3216), + [aux_sym_canonical_domains_token1] = ACTIONS(3216), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3216), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3216), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3216), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3216), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3216), + [aux_sym_certificate_file_token1] = ACTIONS(3216), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3216), + [aux_sym_check_host_ip_token1] = ACTIONS(3216), + [aux_sym_ciphers_token1] = ACTIONS(3216), + [aux_sym_cipher_token1] = ACTIONS(3218), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3216), + [aux_sym_compression_token1] = ACTIONS(3216), + [aux_sym_connection_attempts_token1] = ACTIONS(3216), + [aux_sym_connect_timeout_token1] = ACTIONS(3216), + [aux_sym_control_master_token1] = ACTIONS(3216), + [aux_sym_control_path_token1] = ACTIONS(3216), + [aux_sym_control_persist_token1] = ACTIONS(3216), + [aux_sym_dynamic_forward_token1] = ACTIONS(3216), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3216), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3216), + [aux_sym_escape_char_token1] = ACTIONS(3216), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3216), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3216), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3216), + [aux_sym_forward_agent_token1] = ACTIONS(3216), + [aux_sym_forward_x11_token1] = ACTIONS(3218), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3216), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3216), + [aux_sym_gateway_ports_token1] = ACTIONS(3216), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3216), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3216), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3216), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3216), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3216), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3216), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3216), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3216), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3216), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3216), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3216), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3216), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3216), + [aux_sym_host_key_alias_token1] = ACTIONS(3216), + [aux_sym_hostname_token1] = ACTIONS(3216), + [aux_sym_identities_only_token1] = ACTIONS(3216), + [aux_sym_identity_agent_token1] = ACTIONS(3216), + [aux_sym_identity_file_token1] = ACTIONS(3216), + [aux_sym_ignore_unknown_token1] = ACTIONS(3216), + [aux_sym_include_token1] = ACTIONS(3216), + [aux_sym_ip_qos_token1] = ACTIONS(3216), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3216), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3216), + [aux_sym_kex_algorithms_token1] = ACTIONS(3216), + [aux_sym_known_hosts_command_token1] = ACTIONS(3216), + [aux_sym_local_command_token1] = ACTIONS(3216), + [aux_sym_local_forward_token1] = ACTIONS(3216), + [aux_sym_log_level_token1] = ACTIONS(3216), + [aux_sym_log_verbose_token1] = ACTIONS(3216), + [aux_sym_macs_token1] = ACTIONS(3216), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3216), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3216), + [aux_sym_password_authentication_token1] = ACTIONS(3216), + [aux_sym_permit_local_command_token1] = ACTIONS(3216), + [aux_sym_permit_remote_open_token1] = ACTIONS(3216), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3216), + [aux_sym_port_token1] = ACTIONS(3216), + [aux_sym_preferred_authentications_token1] = ACTIONS(3216), + [aux_sym_protocol_token1] = ACTIONS(3216), + [aux_sym_proxy_command_token1] = ACTIONS(3216), + [aux_sym_proxy_jump_token1] = ACTIONS(3216), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3216), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3216), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3216), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3216), + [aux_sym_rekey_limit_token1] = ACTIONS(3216), + [aux_sym_remote_command_token1] = ACTIONS(3216), + [aux_sym_remote_forward_token1] = ACTIONS(3216), + [aux_sym_request_tty_token1] = ACTIONS(3216), + [aux_sym_required_rsa_size_token1] = ACTIONS(3216), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3216), + [aux_sym_security_key_provider_token1] = ACTIONS(3216), + [aux_sym_send_env_token1] = ACTIONS(3216), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3216), + [aux_sym_server_alive_interval_token1] = ACTIONS(3216), + [aux_sym_session_type_token1] = ACTIONS(3216), + [aux_sym_set_env_token1] = ACTIONS(3216), + [aux_sym_stdin_null_token1] = ACTIONS(3216), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3216), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3216), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3216), + [aux_sym_syslog_facility_token1] = ACTIONS(3216), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3216), + [aux_sym_keep_alive_token1] = ACTIONS(3216), + [aux_sym_tunnel_token1] = ACTIONS(3218), + [aux_sym_tunnel_device_token1] = ACTIONS(3216), + [aux_sym_update_host_keys_token1] = ACTIONS(3216), + [aux_sym_use_keychain_token1] = ACTIONS(3216), + [aux_sym_use_roaming_token1] = ACTIONS(3216), + [aux_sym_user_token1] = ACTIONS(3218), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3216), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3216), + [aux_sym_visual_host_key_token1] = ACTIONS(3216), + [aux_sym_xauth_location_token1] = ACTIONS(3216), }, [536] = { - [ts_builtin_sym_end] = ACTIONS(3325), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3327), - [aux_sym_match_token1] = ACTIONS(3325), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3325), - [aux_sym_address_family_token1] = ACTIONS(3325), - [aux_sym_batch_mode_token1] = ACTIONS(3325), - [aux_sym_bind_address_token1] = ACTIONS(3325), - [aux_sym_bind_interface_token1] = ACTIONS(3325), - [aux_sym_canonical_domains_token1] = ACTIONS(3325), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3325), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3325), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3325), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3325), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3325), - [aux_sym_certificate_file_token1] = ACTIONS(3325), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3325), - [aux_sym_check_host_ip_token1] = ACTIONS(3325), - [aux_sym_ciphers_token1] = ACTIONS(3325), - [aux_sym_cipher_token1] = ACTIONS(3327), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3325), - [aux_sym_compression_token1] = ACTIONS(3325), - [aux_sym_connection_attempts_token1] = ACTIONS(3325), - [aux_sym_connect_timeout_token1] = ACTIONS(3325), - [aux_sym_control_master_token1] = ACTIONS(3325), - [aux_sym_control_path_token1] = ACTIONS(3325), - [aux_sym_control_persist_token1] = ACTIONS(3325), - [aux_sym_dynamic_forward_token1] = ACTIONS(3325), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3325), - [aux_sym_escape_char_token1] = ACTIONS(3325), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3325), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3325), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3325), - [aux_sym_forward_agent_token1] = ACTIONS(3325), - [aux_sym_forward_x11_token1] = ACTIONS(3327), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3325), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3325), - [aux_sym_gateway_ports_token1] = ACTIONS(3325), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3325), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3325), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3325), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3325), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3325), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3325), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3325), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3325), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3325), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3325), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3325), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3325), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3325), - [aux_sym_host_key_alias_token1] = ACTIONS(3325), - [aux_sym_hostname_token1] = ACTIONS(3325), - [aux_sym_identities_only_token1] = ACTIONS(3325), - [aux_sym_identity_agent_token1] = ACTIONS(3325), - [aux_sym_identity_file_token1] = ACTIONS(3325), - [aux_sym_ignore_unknown_token1] = ACTIONS(3325), - [aux_sym_include_token1] = ACTIONS(3325), - [aux_sym_ip_qos_token1] = ACTIONS(3325), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3325), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3325), - [aux_sym_kex_algorithms_token1] = ACTIONS(3325), - [aux_sym_known_hosts_command_token1] = ACTIONS(3325), - [aux_sym_local_command_token1] = ACTIONS(3325), - [aux_sym_local_forward_token1] = ACTIONS(3325), - [aux_sym_log_level_token1] = ACTIONS(3325), - [aux_sym_log_verbose_token1] = ACTIONS(3325), - [aux_sym_macs_token1] = ACTIONS(3325), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3325), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3325), - [aux_sym_password_authentication_token1] = ACTIONS(3325), - [aux_sym_permit_local_command_token1] = ACTIONS(3325), - [aux_sym_permit_remote_open_token1] = ACTIONS(3325), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3325), - [aux_sym_port_token1] = ACTIONS(3325), - [aux_sym_preferred_authentications_token1] = ACTIONS(3325), - [aux_sym_protocol_token1] = ACTIONS(3325), - [aux_sym_proxy_command_token1] = ACTIONS(3325), - [aux_sym_proxy_jump_token1] = ACTIONS(3325), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3325), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3325), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3325), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3325), - [aux_sym_rekey_limit_token1] = ACTIONS(3325), - [aux_sym_remote_command_token1] = ACTIONS(3325), - [aux_sym_remote_forward_token1] = ACTIONS(3325), - [aux_sym_request_tty_token1] = ACTIONS(3325), - [aux_sym_required_rsa_size_token1] = ACTIONS(3325), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3325), - [aux_sym_security_key_provider_token1] = ACTIONS(3325), - [aux_sym_send_env_token1] = ACTIONS(3325), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3325), - [aux_sym_server_alive_interval_token1] = ACTIONS(3325), - [aux_sym_session_type_token1] = ACTIONS(3325), - [aux_sym_set_env_token1] = ACTIONS(3325), - [aux_sym_stdin_null_token1] = ACTIONS(3325), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3325), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3325), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3325), - [aux_sym_syslog_facility_token1] = ACTIONS(3325), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3325), - [aux_sym_keep_alive_token1] = ACTIONS(3325), - [aux_sym_tunnel_token1] = ACTIONS(3327), - [aux_sym_tunnel_device_token1] = ACTIONS(3325), - [aux_sym_update_host_keys_token1] = ACTIONS(3325), - [aux_sym_use_keychain_token1] = ACTIONS(3325), - [aux_sym_use_roaming_token1] = ACTIONS(3325), - [aux_sym_user_token1] = ACTIONS(3327), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3325), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3325), - [aux_sym_visual_host_key_token1] = ACTIONS(3325), - [aux_sym_xauth_location_token1] = ACTIONS(3325), + [ts_builtin_sym_end] = ACTIONS(3220), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3222), + [aux_sym_match_token1] = ACTIONS(3220), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3220), + [aux_sym_address_family_token1] = ACTIONS(3220), + [aux_sym_batch_mode_token1] = ACTIONS(3220), + [aux_sym_bind_address_token1] = ACTIONS(3220), + [aux_sym_bind_interface_token1] = ACTIONS(3220), + [aux_sym_canonical_domains_token1] = ACTIONS(3220), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3220), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3220), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3220), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3220), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3220), + [aux_sym_certificate_file_token1] = ACTIONS(3220), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3220), + [aux_sym_check_host_ip_token1] = ACTIONS(3220), + [aux_sym_ciphers_token1] = ACTIONS(3220), + [aux_sym_cipher_token1] = ACTIONS(3222), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3220), + [aux_sym_compression_token1] = ACTIONS(3220), + [aux_sym_connection_attempts_token1] = ACTIONS(3220), + [aux_sym_connect_timeout_token1] = ACTIONS(3220), + [aux_sym_control_master_token1] = ACTIONS(3220), + [aux_sym_control_path_token1] = ACTIONS(3220), + [aux_sym_control_persist_token1] = ACTIONS(3220), + [aux_sym_dynamic_forward_token1] = ACTIONS(3220), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3220), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3220), + [aux_sym_escape_char_token1] = ACTIONS(3220), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3220), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3220), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3220), + [aux_sym_forward_agent_token1] = ACTIONS(3220), + [aux_sym_forward_x11_token1] = ACTIONS(3222), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3220), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3220), + [aux_sym_gateway_ports_token1] = ACTIONS(3220), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3220), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3220), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3220), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3220), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3220), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3220), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3220), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3220), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3220), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3220), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3220), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3220), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3220), + [aux_sym_host_key_alias_token1] = ACTIONS(3220), + [aux_sym_hostname_token1] = ACTIONS(3220), + [aux_sym_identities_only_token1] = ACTIONS(3220), + [aux_sym_identity_agent_token1] = ACTIONS(3220), + [aux_sym_identity_file_token1] = ACTIONS(3220), + [aux_sym_ignore_unknown_token1] = ACTIONS(3220), + [aux_sym_include_token1] = ACTIONS(3220), + [aux_sym_ip_qos_token1] = ACTIONS(3220), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3220), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3220), + [aux_sym_kex_algorithms_token1] = ACTIONS(3220), + [aux_sym_known_hosts_command_token1] = ACTIONS(3220), + [aux_sym_local_command_token1] = ACTIONS(3220), + [aux_sym_local_forward_token1] = ACTIONS(3220), + [aux_sym_log_level_token1] = ACTIONS(3220), + [aux_sym_log_verbose_token1] = ACTIONS(3220), + [aux_sym_macs_token1] = ACTIONS(3220), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3220), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3220), + [aux_sym_password_authentication_token1] = ACTIONS(3220), + [aux_sym_permit_local_command_token1] = ACTIONS(3220), + [aux_sym_permit_remote_open_token1] = ACTIONS(3220), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3220), + [aux_sym_port_token1] = ACTIONS(3220), + [aux_sym_preferred_authentications_token1] = ACTIONS(3220), + [aux_sym_protocol_token1] = ACTIONS(3220), + [aux_sym_proxy_command_token1] = ACTIONS(3220), + [aux_sym_proxy_jump_token1] = ACTIONS(3220), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3220), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3220), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3220), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3220), + [aux_sym_rekey_limit_token1] = ACTIONS(3220), + [aux_sym_remote_command_token1] = ACTIONS(3220), + [aux_sym_remote_forward_token1] = ACTIONS(3220), + [aux_sym_request_tty_token1] = ACTIONS(3220), + [aux_sym_required_rsa_size_token1] = ACTIONS(3220), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3220), + [aux_sym_security_key_provider_token1] = ACTIONS(3220), + [aux_sym_send_env_token1] = ACTIONS(3220), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3220), + [aux_sym_server_alive_interval_token1] = ACTIONS(3220), + [aux_sym_session_type_token1] = ACTIONS(3220), + [aux_sym_set_env_token1] = ACTIONS(3220), + [aux_sym_stdin_null_token1] = ACTIONS(3220), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3220), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3220), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3220), + [aux_sym_syslog_facility_token1] = ACTIONS(3220), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3220), + [aux_sym_keep_alive_token1] = ACTIONS(3220), + [aux_sym_tunnel_token1] = ACTIONS(3222), + [aux_sym_tunnel_device_token1] = ACTIONS(3220), + [aux_sym_update_host_keys_token1] = ACTIONS(3220), + [aux_sym_use_keychain_token1] = ACTIONS(3220), + [aux_sym_use_roaming_token1] = ACTIONS(3220), + [aux_sym_user_token1] = ACTIONS(3222), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3220), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3220), + [aux_sym_visual_host_key_token1] = ACTIONS(3220), + [aux_sym_xauth_location_token1] = ACTIONS(3220), }, [537] = { - [ts_builtin_sym_end] = ACTIONS(3329), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3331), - [aux_sym_match_token1] = ACTIONS(3329), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3329), - [aux_sym_address_family_token1] = ACTIONS(3329), - [aux_sym_batch_mode_token1] = ACTIONS(3329), - [aux_sym_bind_address_token1] = ACTIONS(3329), - [aux_sym_bind_interface_token1] = ACTIONS(3329), - [aux_sym_canonical_domains_token1] = ACTIONS(3329), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3329), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3329), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3329), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3329), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3329), - [aux_sym_certificate_file_token1] = ACTIONS(3329), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3329), - [aux_sym_check_host_ip_token1] = ACTIONS(3329), - [aux_sym_ciphers_token1] = ACTIONS(3329), - [aux_sym_cipher_token1] = ACTIONS(3331), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3329), - [aux_sym_compression_token1] = ACTIONS(3329), - [aux_sym_connection_attempts_token1] = ACTIONS(3329), - [aux_sym_connect_timeout_token1] = ACTIONS(3329), - [aux_sym_control_master_token1] = ACTIONS(3329), - [aux_sym_control_path_token1] = ACTIONS(3329), - [aux_sym_control_persist_token1] = ACTIONS(3329), - [aux_sym_dynamic_forward_token1] = ACTIONS(3329), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3329), - [aux_sym_escape_char_token1] = ACTIONS(3329), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3329), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3329), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3329), - [aux_sym_forward_agent_token1] = ACTIONS(3329), - [aux_sym_forward_x11_token1] = ACTIONS(3331), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3329), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3329), - [aux_sym_gateway_ports_token1] = ACTIONS(3329), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3329), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3329), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3329), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3329), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3329), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3329), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3329), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3329), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3329), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3329), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3329), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3329), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3329), - [aux_sym_host_key_alias_token1] = ACTIONS(3329), - [aux_sym_hostname_token1] = ACTIONS(3329), - [aux_sym_identities_only_token1] = ACTIONS(3329), - [aux_sym_identity_agent_token1] = ACTIONS(3329), - [aux_sym_identity_file_token1] = ACTIONS(3329), - [aux_sym_ignore_unknown_token1] = ACTIONS(3329), - [aux_sym_include_token1] = ACTIONS(3329), - [aux_sym_ip_qos_token1] = ACTIONS(3329), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3329), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3329), - [aux_sym_kex_algorithms_token1] = ACTIONS(3329), - [aux_sym_known_hosts_command_token1] = ACTIONS(3329), - [aux_sym_local_command_token1] = ACTIONS(3329), - [aux_sym_local_forward_token1] = ACTIONS(3329), - [aux_sym_log_level_token1] = ACTIONS(3329), - [aux_sym_log_verbose_token1] = ACTIONS(3329), - [aux_sym_macs_token1] = ACTIONS(3329), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3329), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3329), - [aux_sym_password_authentication_token1] = ACTIONS(3329), - [aux_sym_permit_local_command_token1] = ACTIONS(3329), - [aux_sym_permit_remote_open_token1] = ACTIONS(3329), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3329), - [aux_sym_port_token1] = ACTIONS(3329), - [aux_sym_preferred_authentications_token1] = ACTIONS(3329), - [aux_sym_protocol_token1] = ACTIONS(3329), - [aux_sym_proxy_command_token1] = ACTIONS(3329), - [aux_sym_proxy_jump_token1] = ACTIONS(3329), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3329), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3329), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3329), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3329), - [aux_sym_rekey_limit_token1] = ACTIONS(3329), - [aux_sym_remote_command_token1] = ACTIONS(3329), - [aux_sym_remote_forward_token1] = ACTIONS(3329), - [aux_sym_request_tty_token1] = ACTIONS(3329), - [aux_sym_required_rsa_size_token1] = ACTIONS(3329), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3329), - [aux_sym_security_key_provider_token1] = ACTIONS(3329), - [aux_sym_send_env_token1] = ACTIONS(3329), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3329), - [aux_sym_server_alive_interval_token1] = ACTIONS(3329), - [aux_sym_session_type_token1] = ACTIONS(3329), - [aux_sym_set_env_token1] = ACTIONS(3329), - [aux_sym_stdin_null_token1] = ACTIONS(3329), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3329), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3329), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3329), - [aux_sym_syslog_facility_token1] = ACTIONS(3329), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3329), - [aux_sym_keep_alive_token1] = ACTIONS(3329), - [aux_sym_tunnel_token1] = ACTIONS(3331), - [aux_sym_tunnel_device_token1] = ACTIONS(3329), - [aux_sym_update_host_keys_token1] = ACTIONS(3329), - [aux_sym_use_keychain_token1] = ACTIONS(3329), - [aux_sym_use_roaming_token1] = ACTIONS(3329), - [aux_sym_user_token1] = ACTIONS(3331), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3329), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3329), - [aux_sym_visual_host_key_token1] = ACTIONS(3329), - [aux_sym_xauth_location_token1] = ACTIONS(3329), + [ts_builtin_sym_end] = ACTIONS(3224), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3226), + [aux_sym_match_token1] = ACTIONS(3224), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3224), + [aux_sym_address_family_token1] = ACTIONS(3224), + [aux_sym_batch_mode_token1] = ACTIONS(3224), + [aux_sym_bind_address_token1] = ACTIONS(3224), + [aux_sym_bind_interface_token1] = ACTIONS(3224), + [aux_sym_canonical_domains_token1] = ACTIONS(3224), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3224), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3224), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3224), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3224), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3224), + [aux_sym_certificate_file_token1] = ACTIONS(3224), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3224), + [aux_sym_check_host_ip_token1] = ACTIONS(3224), + [aux_sym_ciphers_token1] = ACTIONS(3224), + [aux_sym_cipher_token1] = ACTIONS(3226), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3224), + [aux_sym_compression_token1] = ACTIONS(3224), + [aux_sym_connection_attempts_token1] = ACTIONS(3224), + [aux_sym_connect_timeout_token1] = ACTIONS(3224), + [aux_sym_control_master_token1] = ACTIONS(3224), + [aux_sym_control_path_token1] = ACTIONS(3224), + [aux_sym_control_persist_token1] = ACTIONS(3224), + [aux_sym_dynamic_forward_token1] = ACTIONS(3224), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3224), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3224), + [aux_sym_escape_char_token1] = ACTIONS(3224), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3224), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3224), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3224), + [aux_sym_forward_agent_token1] = ACTIONS(3224), + [aux_sym_forward_x11_token1] = ACTIONS(3226), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3224), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3224), + [aux_sym_gateway_ports_token1] = ACTIONS(3224), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3224), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3224), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3224), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3224), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3224), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3224), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3224), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3224), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3224), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3224), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3224), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3224), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3224), + [aux_sym_host_key_alias_token1] = ACTIONS(3224), + [aux_sym_hostname_token1] = ACTIONS(3224), + [aux_sym_identities_only_token1] = ACTIONS(3224), + [aux_sym_identity_agent_token1] = ACTIONS(3224), + [aux_sym_identity_file_token1] = ACTIONS(3224), + [aux_sym_ignore_unknown_token1] = ACTIONS(3224), + [aux_sym_include_token1] = ACTIONS(3224), + [aux_sym_ip_qos_token1] = ACTIONS(3224), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3224), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3224), + [aux_sym_kex_algorithms_token1] = ACTIONS(3224), + [aux_sym_known_hosts_command_token1] = ACTIONS(3224), + [aux_sym_local_command_token1] = ACTIONS(3224), + [aux_sym_local_forward_token1] = ACTIONS(3224), + [aux_sym_log_level_token1] = ACTIONS(3224), + [aux_sym_log_verbose_token1] = ACTIONS(3224), + [aux_sym_macs_token1] = ACTIONS(3224), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3224), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3224), + [aux_sym_password_authentication_token1] = ACTIONS(3224), + [aux_sym_permit_local_command_token1] = ACTIONS(3224), + [aux_sym_permit_remote_open_token1] = ACTIONS(3224), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3224), + [aux_sym_port_token1] = ACTIONS(3224), + [aux_sym_preferred_authentications_token1] = ACTIONS(3224), + [aux_sym_protocol_token1] = ACTIONS(3224), + [aux_sym_proxy_command_token1] = ACTIONS(3224), + [aux_sym_proxy_jump_token1] = ACTIONS(3224), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3224), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3224), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3224), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3224), + [aux_sym_rekey_limit_token1] = ACTIONS(3224), + [aux_sym_remote_command_token1] = ACTIONS(3224), + [aux_sym_remote_forward_token1] = ACTIONS(3224), + [aux_sym_request_tty_token1] = ACTIONS(3224), + [aux_sym_required_rsa_size_token1] = ACTIONS(3224), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3224), + [aux_sym_security_key_provider_token1] = ACTIONS(3224), + [aux_sym_send_env_token1] = ACTIONS(3224), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3224), + [aux_sym_server_alive_interval_token1] = ACTIONS(3224), + [aux_sym_session_type_token1] = ACTIONS(3224), + [aux_sym_set_env_token1] = ACTIONS(3224), + [aux_sym_stdin_null_token1] = ACTIONS(3224), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3224), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3224), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3224), + [aux_sym_syslog_facility_token1] = ACTIONS(3224), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3224), + [aux_sym_keep_alive_token1] = ACTIONS(3224), + [aux_sym_tunnel_token1] = ACTIONS(3226), + [aux_sym_tunnel_device_token1] = ACTIONS(3224), + [aux_sym_update_host_keys_token1] = ACTIONS(3224), + [aux_sym_use_keychain_token1] = ACTIONS(3224), + [aux_sym_use_roaming_token1] = ACTIONS(3224), + [aux_sym_user_token1] = ACTIONS(3226), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3224), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3224), + [aux_sym_visual_host_key_token1] = ACTIONS(3224), + [aux_sym_xauth_location_token1] = ACTIONS(3224), }, [538] = { - [ts_builtin_sym_end] = ACTIONS(3333), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3335), - [aux_sym_match_token1] = ACTIONS(3333), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3333), - [aux_sym_address_family_token1] = ACTIONS(3333), - [aux_sym_batch_mode_token1] = ACTIONS(3333), - [aux_sym_bind_address_token1] = ACTIONS(3333), - [aux_sym_bind_interface_token1] = ACTIONS(3333), - [aux_sym_canonical_domains_token1] = ACTIONS(3333), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3333), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3333), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3333), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3333), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3333), - [aux_sym_certificate_file_token1] = ACTIONS(3333), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3333), - [aux_sym_check_host_ip_token1] = ACTIONS(3333), - [aux_sym_ciphers_token1] = ACTIONS(3333), - [aux_sym_cipher_token1] = ACTIONS(3335), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3333), - [aux_sym_compression_token1] = ACTIONS(3333), - [aux_sym_connection_attempts_token1] = ACTIONS(3333), - [aux_sym_connect_timeout_token1] = ACTIONS(3333), - [aux_sym_control_master_token1] = ACTIONS(3333), - [aux_sym_control_path_token1] = ACTIONS(3333), - [aux_sym_control_persist_token1] = ACTIONS(3333), - [aux_sym_dynamic_forward_token1] = ACTIONS(3333), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3333), - [aux_sym_escape_char_token1] = ACTIONS(3333), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3333), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3333), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3333), - [aux_sym_forward_agent_token1] = ACTIONS(3333), - [aux_sym_forward_x11_token1] = ACTIONS(3335), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3333), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3333), - [aux_sym_gateway_ports_token1] = ACTIONS(3333), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3333), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3333), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3333), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3333), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3333), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3333), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3333), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3333), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3333), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3333), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3333), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3333), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3333), - [aux_sym_host_key_alias_token1] = ACTIONS(3333), - [aux_sym_hostname_token1] = ACTIONS(3333), - [aux_sym_identities_only_token1] = ACTIONS(3333), - [aux_sym_identity_agent_token1] = ACTIONS(3333), - [aux_sym_identity_file_token1] = ACTIONS(3333), - [aux_sym_ignore_unknown_token1] = ACTIONS(3333), - [aux_sym_include_token1] = ACTIONS(3333), - [aux_sym_ip_qos_token1] = ACTIONS(3333), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3333), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3333), - [aux_sym_kex_algorithms_token1] = ACTIONS(3333), - [aux_sym_known_hosts_command_token1] = ACTIONS(3333), - [aux_sym_local_command_token1] = ACTIONS(3333), - [aux_sym_local_forward_token1] = ACTIONS(3333), - [aux_sym_log_level_token1] = ACTIONS(3333), - [aux_sym_log_verbose_token1] = ACTIONS(3333), - [aux_sym_macs_token1] = ACTIONS(3333), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3333), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3333), - [aux_sym_password_authentication_token1] = ACTIONS(3333), - [aux_sym_permit_local_command_token1] = ACTIONS(3333), - [aux_sym_permit_remote_open_token1] = ACTIONS(3333), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3333), - [aux_sym_port_token1] = ACTIONS(3333), - [aux_sym_preferred_authentications_token1] = ACTIONS(3333), - [aux_sym_protocol_token1] = ACTIONS(3333), - [aux_sym_proxy_command_token1] = ACTIONS(3333), - [aux_sym_proxy_jump_token1] = ACTIONS(3333), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3333), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3333), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3333), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3333), - [aux_sym_rekey_limit_token1] = ACTIONS(3333), - [aux_sym_remote_command_token1] = ACTIONS(3333), - [aux_sym_remote_forward_token1] = ACTIONS(3333), - [aux_sym_request_tty_token1] = ACTIONS(3333), - [aux_sym_required_rsa_size_token1] = ACTIONS(3333), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3333), - [aux_sym_security_key_provider_token1] = ACTIONS(3333), - [aux_sym_send_env_token1] = ACTIONS(3333), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3333), - [aux_sym_server_alive_interval_token1] = ACTIONS(3333), - [aux_sym_session_type_token1] = ACTIONS(3333), - [aux_sym_set_env_token1] = ACTIONS(3333), - [aux_sym_stdin_null_token1] = ACTIONS(3333), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3333), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3333), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3333), - [aux_sym_syslog_facility_token1] = ACTIONS(3333), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3333), - [aux_sym_keep_alive_token1] = ACTIONS(3333), - [aux_sym_tunnel_token1] = ACTIONS(3335), - [aux_sym_tunnel_device_token1] = ACTIONS(3333), - [aux_sym_update_host_keys_token1] = ACTIONS(3333), - [aux_sym_use_keychain_token1] = ACTIONS(3333), - [aux_sym_use_roaming_token1] = ACTIONS(3333), - [aux_sym_user_token1] = ACTIONS(3335), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3333), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3333), - [aux_sym_visual_host_key_token1] = ACTIONS(3333), - [aux_sym_xauth_location_token1] = ACTIONS(3333), + [ts_builtin_sym_end] = ACTIONS(3228), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3230), + [aux_sym_match_token1] = ACTIONS(3228), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3228), + [aux_sym_address_family_token1] = ACTIONS(3228), + [aux_sym_batch_mode_token1] = ACTIONS(3228), + [aux_sym_bind_address_token1] = ACTIONS(3228), + [aux_sym_bind_interface_token1] = ACTIONS(3228), + [aux_sym_canonical_domains_token1] = ACTIONS(3228), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3228), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3228), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3228), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3228), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3228), + [aux_sym_certificate_file_token1] = ACTIONS(3228), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3228), + [aux_sym_check_host_ip_token1] = ACTIONS(3228), + [aux_sym_ciphers_token1] = ACTIONS(3228), + [aux_sym_cipher_token1] = ACTIONS(3230), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3228), + [aux_sym_compression_token1] = ACTIONS(3228), + [aux_sym_connection_attempts_token1] = ACTIONS(3228), + [aux_sym_connect_timeout_token1] = ACTIONS(3228), + [aux_sym_control_master_token1] = ACTIONS(3228), + [aux_sym_control_path_token1] = ACTIONS(3228), + [aux_sym_control_persist_token1] = ACTIONS(3228), + [aux_sym_dynamic_forward_token1] = ACTIONS(3228), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3228), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3228), + [aux_sym_escape_char_token1] = ACTIONS(3228), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3228), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3228), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3228), + [aux_sym_forward_agent_token1] = ACTIONS(3228), + [aux_sym_forward_x11_token1] = ACTIONS(3230), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3228), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3228), + [aux_sym_gateway_ports_token1] = ACTIONS(3228), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3228), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3228), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3228), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3228), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3228), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3228), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3228), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3228), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3228), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3228), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3228), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3228), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3228), + [aux_sym_host_key_alias_token1] = ACTIONS(3228), + [aux_sym_hostname_token1] = ACTIONS(3228), + [aux_sym_identities_only_token1] = ACTIONS(3228), + [aux_sym_identity_agent_token1] = ACTIONS(3228), + [aux_sym_identity_file_token1] = ACTIONS(3228), + [aux_sym_ignore_unknown_token1] = ACTIONS(3228), + [aux_sym_include_token1] = ACTIONS(3228), + [aux_sym_ip_qos_token1] = ACTIONS(3228), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3228), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3228), + [aux_sym_kex_algorithms_token1] = ACTIONS(3228), + [aux_sym_known_hosts_command_token1] = ACTIONS(3228), + [aux_sym_local_command_token1] = ACTIONS(3228), + [aux_sym_local_forward_token1] = ACTIONS(3228), + [aux_sym_log_level_token1] = ACTIONS(3228), + [aux_sym_log_verbose_token1] = ACTIONS(3228), + [aux_sym_macs_token1] = ACTIONS(3228), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3228), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3228), + [aux_sym_password_authentication_token1] = ACTIONS(3228), + [aux_sym_permit_local_command_token1] = ACTIONS(3228), + [aux_sym_permit_remote_open_token1] = ACTIONS(3228), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3228), + [aux_sym_port_token1] = ACTIONS(3228), + [aux_sym_preferred_authentications_token1] = ACTIONS(3228), + [aux_sym_protocol_token1] = ACTIONS(3228), + [aux_sym_proxy_command_token1] = ACTIONS(3228), + [aux_sym_proxy_jump_token1] = ACTIONS(3228), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3228), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3228), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3228), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3228), + [aux_sym_rekey_limit_token1] = ACTIONS(3228), + [aux_sym_remote_command_token1] = ACTIONS(3228), + [aux_sym_remote_forward_token1] = ACTIONS(3228), + [aux_sym_request_tty_token1] = ACTIONS(3228), + [aux_sym_required_rsa_size_token1] = ACTIONS(3228), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3228), + [aux_sym_security_key_provider_token1] = ACTIONS(3228), + [aux_sym_send_env_token1] = ACTIONS(3228), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3228), + [aux_sym_server_alive_interval_token1] = ACTIONS(3228), + [aux_sym_session_type_token1] = ACTIONS(3228), + [aux_sym_set_env_token1] = ACTIONS(3228), + [aux_sym_stdin_null_token1] = ACTIONS(3228), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3228), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3228), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3228), + [aux_sym_syslog_facility_token1] = ACTIONS(3228), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3228), + [aux_sym_keep_alive_token1] = ACTIONS(3228), + [aux_sym_tunnel_token1] = ACTIONS(3230), + [aux_sym_tunnel_device_token1] = ACTIONS(3228), + [aux_sym_update_host_keys_token1] = ACTIONS(3228), + [aux_sym_use_keychain_token1] = ACTIONS(3228), + [aux_sym_use_roaming_token1] = ACTIONS(3228), + [aux_sym_user_token1] = ACTIONS(3230), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3228), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3228), + [aux_sym_visual_host_key_token1] = ACTIONS(3228), + [aux_sym_xauth_location_token1] = ACTIONS(3228), }, [539] = { - [ts_builtin_sym_end] = ACTIONS(3337), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3339), - [aux_sym_match_token1] = ACTIONS(3337), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3337), - [aux_sym_address_family_token1] = ACTIONS(3337), - [aux_sym_batch_mode_token1] = ACTIONS(3337), - [aux_sym_bind_address_token1] = ACTIONS(3337), - [aux_sym_bind_interface_token1] = ACTIONS(3337), - [aux_sym_canonical_domains_token1] = ACTIONS(3337), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3337), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3337), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3337), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3337), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3337), - [aux_sym_certificate_file_token1] = ACTIONS(3337), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3337), - [aux_sym_check_host_ip_token1] = ACTIONS(3337), - [aux_sym_ciphers_token1] = ACTIONS(3337), - [aux_sym_cipher_token1] = ACTIONS(3339), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3337), - [aux_sym_compression_token1] = ACTIONS(3337), - [aux_sym_connection_attempts_token1] = ACTIONS(3337), - [aux_sym_connect_timeout_token1] = ACTIONS(3337), - [aux_sym_control_master_token1] = ACTIONS(3337), - [aux_sym_control_path_token1] = ACTIONS(3337), - [aux_sym_control_persist_token1] = ACTIONS(3337), - [aux_sym_dynamic_forward_token1] = ACTIONS(3337), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3337), - [aux_sym_escape_char_token1] = ACTIONS(3337), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3337), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3337), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3337), - [aux_sym_forward_agent_token1] = ACTIONS(3337), - [aux_sym_forward_x11_token1] = ACTIONS(3339), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3337), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3337), - [aux_sym_gateway_ports_token1] = ACTIONS(3337), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3337), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3337), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3337), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3337), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3337), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3337), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3337), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3337), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3337), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3337), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3337), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3337), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3337), - [aux_sym_host_key_alias_token1] = ACTIONS(3337), - [aux_sym_hostname_token1] = ACTIONS(3337), - [aux_sym_identities_only_token1] = ACTIONS(3337), - [aux_sym_identity_agent_token1] = ACTIONS(3337), - [aux_sym_identity_file_token1] = ACTIONS(3337), - [aux_sym_ignore_unknown_token1] = ACTIONS(3337), - [aux_sym_include_token1] = ACTIONS(3337), - [aux_sym_ip_qos_token1] = ACTIONS(3337), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3337), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3337), - [aux_sym_kex_algorithms_token1] = ACTIONS(3337), - [aux_sym_known_hosts_command_token1] = ACTIONS(3337), - [aux_sym_local_command_token1] = ACTIONS(3337), - [aux_sym_local_forward_token1] = ACTIONS(3337), - [aux_sym_log_level_token1] = ACTIONS(3337), - [aux_sym_log_verbose_token1] = ACTIONS(3337), - [aux_sym_macs_token1] = ACTIONS(3337), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3337), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3337), - [aux_sym_password_authentication_token1] = ACTIONS(3337), - [aux_sym_permit_local_command_token1] = ACTIONS(3337), - [aux_sym_permit_remote_open_token1] = ACTIONS(3337), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3337), - [aux_sym_port_token1] = ACTIONS(3337), - [aux_sym_preferred_authentications_token1] = ACTIONS(3337), - [aux_sym_protocol_token1] = ACTIONS(3337), - [aux_sym_proxy_command_token1] = ACTIONS(3337), - [aux_sym_proxy_jump_token1] = ACTIONS(3337), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3337), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3337), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3337), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3337), - [aux_sym_rekey_limit_token1] = ACTIONS(3337), - [aux_sym_remote_command_token1] = ACTIONS(3337), - [aux_sym_remote_forward_token1] = ACTIONS(3337), - [aux_sym_request_tty_token1] = ACTIONS(3337), - [aux_sym_required_rsa_size_token1] = ACTIONS(3337), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3337), - [aux_sym_security_key_provider_token1] = ACTIONS(3337), - [aux_sym_send_env_token1] = ACTIONS(3337), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3337), - [aux_sym_server_alive_interval_token1] = ACTIONS(3337), - [aux_sym_session_type_token1] = ACTIONS(3337), - [aux_sym_set_env_token1] = ACTIONS(3337), - [aux_sym_stdin_null_token1] = ACTIONS(3337), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3337), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3337), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3337), - [aux_sym_syslog_facility_token1] = ACTIONS(3337), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3337), - [aux_sym_keep_alive_token1] = ACTIONS(3337), - [aux_sym_tunnel_token1] = ACTIONS(3339), - [aux_sym_tunnel_device_token1] = ACTIONS(3337), - [aux_sym_update_host_keys_token1] = ACTIONS(3337), - [aux_sym_use_keychain_token1] = ACTIONS(3337), - [aux_sym_use_roaming_token1] = ACTIONS(3337), - [aux_sym_user_token1] = ACTIONS(3339), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3337), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3337), - [aux_sym_visual_host_key_token1] = ACTIONS(3337), - [aux_sym_xauth_location_token1] = ACTIONS(3337), + [ts_builtin_sym_end] = ACTIONS(3232), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3234), + [aux_sym_match_token1] = ACTIONS(3232), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3232), + [aux_sym_address_family_token1] = ACTIONS(3232), + [aux_sym_batch_mode_token1] = ACTIONS(3232), + [aux_sym_bind_address_token1] = ACTIONS(3232), + [aux_sym_bind_interface_token1] = ACTIONS(3232), + [aux_sym_canonical_domains_token1] = ACTIONS(3232), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3232), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3232), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3232), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3232), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3232), + [aux_sym_certificate_file_token1] = ACTIONS(3232), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3232), + [aux_sym_check_host_ip_token1] = ACTIONS(3232), + [aux_sym_ciphers_token1] = ACTIONS(3232), + [aux_sym_cipher_token1] = ACTIONS(3234), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3232), + [aux_sym_compression_token1] = ACTIONS(3232), + [aux_sym_connection_attempts_token1] = ACTIONS(3232), + [aux_sym_connect_timeout_token1] = ACTIONS(3232), + [aux_sym_control_master_token1] = ACTIONS(3232), + [aux_sym_control_path_token1] = ACTIONS(3232), + [aux_sym_control_persist_token1] = ACTIONS(3232), + [aux_sym_dynamic_forward_token1] = ACTIONS(3232), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3232), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3232), + [aux_sym_escape_char_token1] = ACTIONS(3232), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3232), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3232), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3232), + [aux_sym_forward_agent_token1] = ACTIONS(3232), + [aux_sym_forward_x11_token1] = ACTIONS(3234), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3232), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3232), + [aux_sym_gateway_ports_token1] = ACTIONS(3232), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3232), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3232), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3232), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3232), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3232), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3232), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3232), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3232), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3232), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3232), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3232), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3232), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3232), + [aux_sym_host_key_alias_token1] = ACTIONS(3232), + [aux_sym_hostname_token1] = ACTIONS(3232), + [aux_sym_identities_only_token1] = ACTIONS(3232), + [aux_sym_identity_agent_token1] = ACTIONS(3232), + [aux_sym_identity_file_token1] = ACTIONS(3232), + [aux_sym_ignore_unknown_token1] = ACTIONS(3232), + [aux_sym_include_token1] = ACTIONS(3232), + [aux_sym_ip_qos_token1] = ACTIONS(3232), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3232), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3232), + [aux_sym_kex_algorithms_token1] = ACTIONS(3232), + [aux_sym_known_hosts_command_token1] = ACTIONS(3232), + [aux_sym_local_command_token1] = ACTIONS(3232), + [aux_sym_local_forward_token1] = ACTIONS(3232), + [aux_sym_log_level_token1] = ACTIONS(3232), + [aux_sym_log_verbose_token1] = ACTIONS(3232), + [aux_sym_macs_token1] = ACTIONS(3232), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3232), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3232), + [aux_sym_password_authentication_token1] = ACTIONS(3232), + [aux_sym_permit_local_command_token1] = ACTIONS(3232), + [aux_sym_permit_remote_open_token1] = ACTIONS(3232), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3232), + [aux_sym_port_token1] = ACTIONS(3232), + [aux_sym_preferred_authentications_token1] = ACTIONS(3232), + [aux_sym_protocol_token1] = ACTIONS(3232), + [aux_sym_proxy_command_token1] = ACTIONS(3232), + [aux_sym_proxy_jump_token1] = ACTIONS(3232), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3232), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3232), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3232), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3232), + [aux_sym_rekey_limit_token1] = ACTIONS(3232), + [aux_sym_remote_command_token1] = ACTIONS(3232), + [aux_sym_remote_forward_token1] = ACTIONS(3232), + [aux_sym_request_tty_token1] = ACTIONS(3232), + [aux_sym_required_rsa_size_token1] = ACTIONS(3232), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3232), + [aux_sym_security_key_provider_token1] = ACTIONS(3232), + [aux_sym_send_env_token1] = ACTIONS(3232), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3232), + [aux_sym_server_alive_interval_token1] = ACTIONS(3232), + [aux_sym_session_type_token1] = ACTIONS(3232), + [aux_sym_set_env_token1] = ACTIONS(3232), + [aux_sym_stdin_null_token1] = ACTIONS(3232), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3232), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3232), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3232), + [aux_sym_syslog_facility_token1] = ACTIONS(3232), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3232), + [aux_sym_keep_alive_token1] = ACTIONS(3232), + [aux_sym_tunnel_token1] = ACTIONS(3234), + [aux_sym_tunnel_device_token1] = ACTIONS(3232), + [aux_sym_update_host_keys_token1] = ACTIONS(3232), + [aux_sym_use_keychain_token1] = ACTIONS(3232), + [aux_sym_use_roaming_token1] = ACTIONS(3232), + [aux_sym_user_token1] = ACTIONS(3234), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3232), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3232), + [aux_sym_visual_host_key_token1] = ACTIONS(3232), + [aux_sym_xauth_location_token1] = ACTIONS(3232), }, [540] = { - [ts_builtin_sym_end] = ACTIONS(3341), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3343), - [aux_sym_match_token1] = ACTIONS(3341), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3341), - [aux_sym_address_family_token1] = ACTIONS(3341), - [aux_sym_batch_mode_token1] = ACTIONS(3341), - [aux_sym_bind_address_token1] = ACTIONS(3341), - [aux_sym_bind_interface_token1] = ACTIONS(3341), - [aux_sym_canonical_domains_token1] = ACTIONS(3341), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3341), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3341), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3341), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3341), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3341), - [aux_sym_certificate_file_token1] = ACTIONS(3341), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3341), - [aux_sym_check_host_ip_token1] = ACTIONS(3341), - [aux_sym_ciphers_token1] = ACTIONS(3341), - [aux_sym_cipher_token1] = ACTIONS(3343), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3341), - [aux_sym_compression_token1] = ACTIONS(3341), - [aux_sym_connection_attempts_token1] = ACTIONS(3341), - [aux_sym_connect_timeout_token1] = ACTIONS(3341), - [aux_sym_control_master_token1] = ACTIONS(3341), - [aux_sym_control_path_token1] = ACTIONS(3341), - [aux_sym_control_persist_token1] = ACTIONS(3341), - [aux_sym_dynamic_forward_token1] = ACTIONS(3341), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3341), - [aux_sym_escape_char_token1] = ACTIONS(3341), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3341), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3341), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3341), - [aux_sym_forward_agent_token1] = ACTIONS(3341), - [aux_sym_forward_x11_token1] = ACTIONS(3343), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3341), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3341), - [aux_sym_gateway_ports_token1] = ACTIONS(3341), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3341), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3341), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3341), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3341), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3341), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3341), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3341), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3341), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3341), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3341), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3341), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3341), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3341), - [aux_sym_host_key_alias_token1] = ACTIONS(3341), - [aux_sym_hostname_token1] = ACTIONS(3341), - [aux_sym_identities_only_token1] = ACTIONS(3341), - [aux_sym_identity_agent_token1] = ACTIONS(3341), - [aux_sym_identity_file_token1] = ACTIONS(3341), - [aux_sym_ignore_unknown_token1] = ACTIONS(3341), - [aux_sym_include_token1] = ACTIONS(3341), - [aux_sym_ip_qos_token1] = ACTIONS(3341), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3341), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3341), - [aux_sym_kex_algorithms_token1] = ACTIONS(3341), - [aux_sym_known_hosts_command_token1] = ACTIONS(3341), - [aux_sym_local_command_token1] = ACTIONS(3341), - [aux_sym_local_forward_token1] = ACTIONS(3341), - [aux_sym_log_level_token1] = ACTIONS(3341), - [aux_sym_log_verbose_token1] = ACTIONS(3341), - [aux_sym_macs_token1] = ACTIONS(3341), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3341), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3341), - [aux_sym_password_authentication_token1] = ACTIONS(3341), - [aux_sym_permit_local_command_token1] = ACTIONS(3341), - [aux_sym_permit_remote_open_token1] = ACTIONS(3341), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3341), - [aux_sym_port_token1] = ACTIONS(3341), - [aux_sym_preferred_authentications_token1] = ACTIONS(3341), - [aux_sym_protocol_token1] = ACTIONS(3341), - [aux_sym_proxy_command_token1] = ACTIONS(3341), - [aux_sym_proxy_jump_token1] = ACTIONS(3341), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3341), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3341), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3341), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3341), - [aux_sym_rekey_limit_token1] = ACTIONS(3341), - [aux_sym_remote_command_token1] = ACTIONS(3341), - [aux_sym_remote_forward_token1] = ACTIONS(3341), - [aux_sym_request_tty_token1] = ACTIONS(3341), - [aux_sym_required_rsa_size_token1] = ACTIONS(3341), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3341), - [aux_sym_security_key_provider_token1] = ACTIONS(3341), - [aux_sym_send_env_token1] = ACTIONS(3341), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3341), - [aux_sym_server_alive_interval_token1] = ACTIONS(3341), - [aux_sym_session_type_token1] = ACTIONS(3341), - [aux_sym_set_env_token1] = ACTIONS(3341), - [aux_sym_stdin_null_token1] = ACTIONS(3341), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3341), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3341), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3341), - [aux_sym_syslog_facility_token1] = ACTIONS(3341), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3341), - [aux_sym_keep_alive_token1] = ACTIONS(3341), - [aux_sym_tunnel_token1] = ACTIONS(3343), - [aux_sym_tunnel_device_token1] = ACTIONS(3341), - [aux_sym_update_host_keys_token1] = ACTIONS(3341), - [aux_sym_use_keychain_token1] = ACTIONS(3341), - [aux_sym_use_roaming_token1] = ACTIONS(3341), - [aux_sym_user_token1] = ACTIONS(3343), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3341), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3341), - [aux_sym_visual_host_key_token1] = ACTIONS(3341), - [aux_sym_xauth_location_token1] = ACTIONS(3341), + [ts_builtin_sym_end] = ACTIONS(1226), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1228), + [aux_sym_match_token1] = ACTIONS(1226), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1226), + [aux_sym_address_family_token1] = ACTIONS(1226), + [aux_sym_batch_mode_token1] = ACTIONS(1226), + [aux_sym_bind_address_token1] = ACTIONS(1226), + [aux_sym_bind_interface_token1] = ACTIONS(1226), + [aux_sym_canonical_domains_token1] = ACTIONS(1226), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1226), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1226), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1226), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1226), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1226), + [aux_sym_certificate_file_token1] = ACTIONS(1226), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1226), + [aux_sym_check_host_ip_token1] = ACTIONS(1226), + [aux_sym_ciphers_token1] = ACTIONS(1226), + [aux_sym_cipher_token1] = ACTIONS(1228), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1226), + [aux_sym_compression_token1] = ACTIONS(1226), + [aux_sym_connection_attempts_token1] = ACTIONS(1226), + [aux_sym_connect_timeout_token1] = ACTIONS(1226), + [aux_sym_control_master_token1] = ACTIONS(1226), + [aux_sym_control_path_token1] = ACTIONS(1226), + [aux_sym_control_persist_token1] = ACTIONS(1226), + [aux_sym_dynamic_forward_token1] = ACTIONS(1226), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1226), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1226), + [aux_sym_escape_char_token1] = ACTIONS(1226), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1226), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1226), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1226), + [aux_sym_forward_agent_token1] = ACTIONS(1226), + [aux_sym_forward_x11_token1] = ACTIONS(1228), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1226), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1226), + [aux_sym_gateway_ports_token1] = ACTIONS(1226), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1226), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1226), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1226), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1226), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1226), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1226), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1226), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1226), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1226), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1226), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1226), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1226), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1226), + [aux_sym_host_key_alias_token1] = ACTIONS(1226), + [aux_sym_hostname_token1] = ACTIONS(1226), + [aux_sym_identities_only_token1] = ACTIONS(1226), + [aux_sym_identity_agent_token1] = ACTIONS(1226), + [aux_sym_identity_file_token1] = ACTIONS(1226), + [aux_sym_ignore_unknown_token1] = ACTIONS(1226), + [aux_sym_include_token1] = ACTIONS(1226), + [aux_sym_ip_qos_token1] = ACTIONS(1226), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1226), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1226), + [aux_sym_kex_algorithms_token1] = ACTIONS(1226), + [aux_sym_known_hosts_command_token1] = ACTIONS(1226), + [aux_sym_local_command_token1] = ACTIONS(1226), + [aux_sym_local_forward_token1] = ACTIONS(1226), + [aux_sym_log_level_token1] = ACTIONS(1226), + [aux_sym_log_verbose_token1] = ACTIONS(1226), + [aux_sym_macs_token1] = ACTIONS(1226), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1226), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1226), + [aux_sym_password_authentication_token1] = ACTIONS(1226), + [aux_sym_permit_local_command_token1] = ACTIONS(1226), + [aux_sym_permit_remote_open_token1] = ACTIONS(1226), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1226), + [aux_sym_port_token1] = ACTIONS(1226), + [aux_sym_preferred_authentications_token1] = ACTIONS(1226), + [aux_sym_protocol_token1] = ACTIONS(1226), + [aux_sym_proxy_command_token1] = ACTIONS(1226), + [aux_sym_proxy_jump_token1] = ACTIONS(1226), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1226), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1226), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1226), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1226), + [aux_sym_rekey_limit_token1] = ACTIONS(1226), + [aux_sym_remote_command_token1] = ACTIONS(1226), + [aux_sym_remote_forward_token1] = ACTIONS(1226), + [aux_sym_request_tty_token1] = ACTIONS(1226), + [aux_sym_required_rsa_size_token1] = ACTIONS(1226), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1226), + [aux_sym_security_key_provider_token1] = ACTIONS(1226), + [aux_sym_send_env_token1] = ACTIONS(1226), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1226), + [aux_sym_server_alive_interval_token1] = ACTIONS(1226), + [aux_sym_session_type_token1] = ACTIONS(1226), + [aux_sym_set_env_token1] = ACTIONS(1226), + [aux_sym_stdin_null_token1] = ACTIONS(1226), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1226), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1226), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1226), + [aux_sym_syslog_facility_token1] = ACTIONS(1226), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1226), + [aux_sym_keep_alive_token1] = ACTIONS(1226), + [aux_sym_tunnel_token1] = ACTIONS(1228), + [aux_sym_tunnel_device_token1] = ACTIONS(1226), + [aux_sym_update_host_keys_token1] = ACTIONS(1226), + [aux_sym_use_keychain_token1] = ACTIONS(1226), + [aux_sym_use_roaming_token1] = ACTIONS(1226), + [aux_sym_user_token1] = ACTIONS(1228), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1226), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1226), + [aux_sym_visual_host_key_token1] = ACTIONS(1226), + [aux_sym_xauth_location_token1] = ACTIONS(1226), }, [541] = { - [ts_builtin_sym_end] = ACTIONS(3345), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3347), - [aux_sym_match_token1] = ACTIONS(3345), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3345), - [aux_sym_address_family_token1] = ACTIONS(3345), - [aux_sym_batch_mode_token1] = ACTIONS(3345), - [aux_sym_bind_address_token1] = ACTIONS(3345), - [aux_sym_bind_interface_token1] = ACTIONS(3345), - [aux_sym_canonical_domains_token1] = ACTIONS(3345), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3345), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3345), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3345), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3345), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3345), - [aux_sym_certificate_file_token1] = ACTIONS(3345), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3345), - [aux_sym_check_host_ip_token1] = ACTIONS(3345), - [aux_sym_ciphers_token1] = ACTIONS(3345), - [aux_sym_cipher_token1] = ACTIONS(3347), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3345), - [aux_sym_compression_token1] = ACTIONS(3345), - [aux_sym_connection_attempts_token1] = ACTIONS(3345), - [aux_sym_connect_timeout_token1] = ACTIONS(3345), - [aux_sym_control_master_token1] = ACTIONS(3345), - [aux_sym_control_path_token1] = ACTIONS(3345), - [aux_sym_control_persist_token1] = ACTIONS(3345), - [aux_sym_dynamic_forward_token1] = ACTIONS(3345), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3345), - [aux_sym_escape_char_token1] = ACTIONS(3345), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3345), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3345), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3345), - [aux_sym_forward_agent_token1] = ACTIONS(3345), - [aux_sym_forward_x11_token1] = ACTIONS(3347), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3345), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3345), - [aux_sym_gateway_ports_token1] = ACTIONS(3345), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3345), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3345), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3345), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3345), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3345), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3345), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3345), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3345), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3345), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3345), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3345), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3345), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3345), - [aux_sym_host_key_alias_token1] = ACTIONS(3345), - [aux_sym_hostname_token1] = ACTIONS(3345), - [aux_sym_identities_only_token1] = ACTIONS(3345), - [aux_sym_identity_agent_token1] = ACTIONS(3345), - [aux_sym_identity_file_token1] = ACTIONS(3345), - [aux_sym_ignore_unknown_token1] = ACTIONS(3345), - [aux_sym_include_token1] = ACTIONS(3345), - [aux_sym_ip_qos_token1] = ACTIONS(3345), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3345), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3345), - [aux_sym_kex_algorithms_token1] = ACTIONS(3345), - [aux_sym_known_hosts_command_token1] = ACTIONS(3345), - [aux_sym_local_command_token1] = ACTIONS(3345), - [aux_sym_local_forward_token1] = ACTIONS(3345), - [aux_sym_log_level_token1] = ACTIONS(3345), - [aux_sym_log_verbose_token1] = ACTIONS(3345), - [aux_sym_macs_token1] = ACTIONS(3345), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3345), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3345), - [aux_sym_password_authentication_token1] = ACTIONS(3345), - [aux_sym_permit_local_command_token1] = ACTIONS(3345), - [aux_sym_permit_remote_open_token1] = ACTIONS(3345), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3345), - [aux_sym_port_token1] = ACTIONS(3345), - [aux_sym_preferred_authentications_token1] = ACTIONS(3345), - [aux_sym_protocol_token1] = ACTIONS(3345), - [aux_sym_proxy_command_token1] = ACTIONS(3345), - [aux_sym_proxy_jump_token1] = ACTIONS(3345), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3345), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3345), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3345), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3345), - [aux_sym_rekey_limit_token1] = ACTIONS(3345), - [aux_sym_remote_command_token1] = ACTIONS(3345), - [aux_sym_remote_forward_token1] = ACTIONS(3345), - [aux_sym_request_tty_token1] = ACTIONS(3345), - [aux_sym_required_rsa_size_token1] = ACTIONS(3345), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3345), - [aux_sym_security_key_provider_token1] = ACTIONS(3345), - [aux_sym_send_env_token1] = ACTIONS(3345), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3345), - [aux_sym_server_alive_interval_token1] = ACTIONS(3345), - [aux_sym_session_type_token1] = ACTIONS(3345), - [aux_sym_set_env_token1] = ACTIONS(3345), - [aux_sym_stdin_null_token1] = ACTIONS(3345), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3345), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3345), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3345), - [aux_sym_syslog_facility_token1] = ACTIONS(3345), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3345), - [aux_sym_keep_alive_token1] = ACTIONS(3345), - [aux_sym_tunnel_token1] = ACTIONS(3347), - [aux_sym_tunnel_device_token1] = ACTIONS(3345), - [aux_sym_update_host_keys_token1] = ACTIONS(3345), - [aux_sym_use_keychain_token1] = ACTIONS(3345), - [aux_sym_use_roaming_token1] = ACTIONS(3345), - [aux_sym_user_token1] = ACTIONS(3347), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3345), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3345), - [aux_sym_visual_host_key_token1] = ACTIONS(3345), - [aux_sym_xauth_location_token1] = ACTIONS(3345), + [ts_builtin_sym_end] = ACTIONS(1118), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1120), + [aux_sym_match_token1] = ACTIONS(1118), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1118), + [aux_sym_address_family_token1] = ACTIONS(1118), + [aux_sym_batch_mode_token1] = ACTIONS(1118), + [aux_sym_bind_address_token1] = ACTIONS(1118), + [aux_sym_bind_interface_token1] = ACTIONS(1118), + [aux_sym_canonical_domains_token1] = ACTIONS(1118), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1118), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1118), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1118), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1118), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1118), + [aux_sym_certificate_file_token1] = ACTIONS(1118), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1118), + [aux_sym_check_host_ip_token1] = ACTIONS(1118), + [aux_sym_ciphers_token1] = ACTIONS(1118), + [aux_sym_cipher_token1] = ACTIONS(1120), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1118), + [aux_sym_compression_token1] = ACTIONS(1118), + [aux_sym_connection_attempts_token1] = ACTIONS(1118), + [aux_sym_connect_timeout_token1] = ACTIONS(1118), + [aux_sym_control_master_token1] = ACTIONS(1118), + [aux_sym_control_path_token1] = ACTIONS(1118), + [aux_sym_control_persist_token1] = ACTIONS(1118), + [aux_sym_dynamic_forward_token1] = ACTIONS(1118), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1118), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1118), + [aux_sym_escape_char_token1] = ACTIONS(1118), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1118), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1118), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1118), + [aux_sym_forward_agent_token1] = ACTIONS(1118), + [aux_sym_forward_x11_token1] = ACTIONS(1120), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1118), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1118), + [aux_sym_gateway_ports_token1] = ACTIONS(1118), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1118), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1118), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1118), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1118), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1118), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1118), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1118), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1118), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1118), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1118), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1118), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1118), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1118), + [aux_sym_host_key_alias_token1] = ACTIONS(1118), + [aux_sym_hostname_token1] = ACTIONS(1118), + [aux_sym_identities_only_token1] = ACTIONS(1118), + [aux_sym_identity_agent_token1] = ACTIONS(1118), + [aux_sym_identity_file_token1] = ACTIONS(1118), + [aux_sym_ignore_unknown_token1] = ACTIONS(1118), + [aux_sym_include_token1] = ACTIONS(1118), + [aux_sym_ip_qos_token1] = ACTIONS(1118), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1118), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1118), + [aux_sym_kex_algorithms_token1] = ACTIONS(1118), + [aux_sym_known_hosts_command_token1] = ACTIONS(1118), + [aux_sym_local_command_token1] = ACTIONS(1118), + [aux_sym_local_forward_token1] = ACTIONS(1118), + [aux_sym_log_level_token1] = ACTIONS(1118), + [aux_sym_log_verbose_token1] = ACTIONS(1118), + [aux_sym_macs_token1] = ACTIONS(1118), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1118), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1118), + [aux_sym_password_authentication_token1] = ACTIONS(1118), + [aux_sym_permit_local_command_token1] = ACTIONS(1118), + [aux_sym_permit_remote_open_token1] = ACTIONS(1118), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1118), + [aux_sym_port_token1] = ACTIONS(1118), + [aux_sym_preferred_authentications_token1] = ACTIONS(1118), + [aux_sym_protocol_token1] = ACTIONS(1118), + [aux_sym_proxy_command_token1] = ACTIONS(1118), + [aux_sym_proxy_jump_token1] = ACTIONS(1118), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1118), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1118), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1118), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1118), + [aux_sym_rekey_limit_token1] = ACTIONS(1118), + [aux_sym_remote_command_token1] = ACTIONS(1118), + [aux_sym_remote_forward_token1] = ACTIONS(1118), + [aux_sym_request_tty_token1] = ACTIONS(1118), + [aux_sym_required_rsa_size_token1] = ACTIONS(1118), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1118), + [aux_sym_security_key_provider_token1] = ACTIONS(1118), + [aux_sym_send_env_token1] = ACTIONS(1118), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1118), + [aux_sym_server_alive_interval_token1] = ACTIONS(1118), + [aux_sym_session_type_token1] = ACTIONS(1118), + [aux_sym_set_env_token1] = ACTIONS(1118), + [aux_sym_stdin_null_token1] = ACTIONS(1118), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1118), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1118), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1118), + [aux_sym_syslog_facility_token1] = ACTIONS(1118), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1118), + [aux_sym_keep_alive_token1] = ACTIONS(1118), + [aux_sym_tunnel_token1] = ACTIONS(1120), + [aux_sym_tunnel_device_token1] = ACTIONS(1118), + [aux_sym_update_host_keys_token1] = ACTIONS(1118), + [aux_sym_use_keychain_token1] = ACTIONS(1118), + [aux_sym_use_roaming_token1] = ACTIONS(1118), + [aux_sym_user_token1] = ACTIONS(1120), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1118), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1118), + [aux_sym_visual_host_key_token1] = ACTIONS(1118), + [aux_sym_xauth_location_token1] = ACTIONS(1118), }, [542] = { - [ts_builtin_sym_end] = ACTIONS(3349), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3351), - [aux_sym_match_token1] = ACTIONS(3349), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3349), - [aux_sym_address_family_token1] = ACTIONS(3349), - [aux_sym_batch_mode_token1] = ACTIONS(3349), - [aux_sym_bind_address_token1] = ACTIONS(3349), - [aux_sym_bind_interface_token1] = ACTIONS(3349), - [aux_sym_canonical_domains_token1] = ACTIONS(3349), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3349), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3349), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3349), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3349), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3349), - [aux_sym_certificate_file_token1] = ACTIONS(3349), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3349), - [aux_sym_check_host_ip_token1] = ACTIONS(3349), - [aux_sym_ciphers_token1] = ACTIONS(3349), - [aux_sym_cipher_token1] = ACTIONS(3351), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3349), - [aux_sym_compression_token1] = ACTIONS(3349), - [aux_sym_connection_attempts_token1] = ACTIONS(3349), - [aux_sym_connect_timeout_token1] = ACTIONS(3349), - [aux_sym_control_master_token1] = ACTIONS(3349), - [aux_sym_control_path_token1] = ACTIONS(3349), - [aux_sym_control_persist_token1] = ACTIONS(3349), - [aux_sym_dynamic_forward_token1] = ACTIONS(3349), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3349), - [aux_sym_escape_char_token1] = ACTIONS(3349), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3349), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3349), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3349), - [aux_sym_forward_agent_token1] = ACTIONS(3349), - [aux_sym_forward_x11_token1] = ACTIONS(3351), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3349), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3349), - [aux_sym_gateway_ports_token1] = ACTIONS(3349), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3349), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3349), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3349), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3349), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3349), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3349), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3349), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3349), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3349), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3349), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3349), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3349), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3349), - [aux_sym_host_key_alias_token1] = ACTIONS(3349), - [aux_sym_hostname_token1] = ACTIONS(3349), - [aux_sym_identities_only_token1] = ACTIONS(3349), - [aux_sym_identity_agent_token1] = ACTIONS(3349), - [aux_sym_identity_file_token1] = ACTIONS(3349), - [aux_sym_ignore_unknown_token1] = ACTIONS(3349), - [aux_sym_include_token1] = ACTIONS(3349), - [aux_sym_ip_qos_token1] = ACTIONS(3349), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3349), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3349), - [aux_sym_kex_algorithms_token1] = ACTIONS(3349), - [aux_sym_known_hosts_command_token1] = ACTIONS(3349), - [aux_sym_local_command_token1] = ACTIONS(3349), - [aux_sym_local_forward_token1] = ACTIONS(3349), - [aux_sym_log_level_token1] = ACTIONS(3349), - [aux_sym_log_verbose_token1] = ACTIONS(3349), - [aux_sym_macs_token1] = ACTIONS(3349), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3349), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3349), - [aux_sym_password_authentication_token1] = ACTIONS(3349), - [aux_sym_permit_local_command_token1] = ACTIONS(3349), - [aux_sym_permit_remote_open_token1] = ACTIONS(3349), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3349), - [aux_sym_port_token1] = ACTIONS(3349), - [aux_sym_preferred_authentications_token1] = ACTIONS(3349), - [aux_sym_protocol_token1] = ACTIONS(3349), - [aux_sym_proxy_command_token1] = ACTIONS(3349), - [aux_sym_proxy_jump_token1] = ACTIONS(3349), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3349), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3349), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3349), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3349), - [aux_sym_rekey_limit_token1] = ACTIONS(3349), - [aux_sym_remote_command_token1] = ACTIONS(3349), - [aux_sym_remote_forward_token1] = ACTIONS(3349), - [aux_sym_request_tty_token1] = ACTIONS(3349), - [aux_sym_required_rsa_size_token1] = ACTIONS(3349), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3349), - [aux_sym_security_key_provider_token1] = ACTIONS(3349), - [aux_sym_send_env_token1] = ACTIONS(3349), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3349), - [aux_sym_server_alive_interval_token1] = ACTIONS(3349), - [aux_sym_session_type_token1] = ACTIONS(3349), - [aux_sym_set_env_token1] = ACTIONS(3349), - [aux_sym_stdin_null_token1] = ACTIONS(3349), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3349), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3349), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3349), - [aux_sym_syslog_facility_token1] = ACTIONS(3349), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3349), - [aux_sym_keep_alive_token1] = ACTIONS(3349), - [aux_sym_tunnel_token1] = ACTIONS(3351), - [aux_sym_tunnel_device_token1] = ACTIONS(3349), - [aux_sym_update_host_keys_token1] = ACTIONS(3349), - [aux_sym_use_keychain_token1] = ACTIONS(3349), - [aux_sym_use_roaming_token1] = ACTIONS(3349), - [aux_sym_user_token1] = ACTIONS(3351), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3349), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3349), - [aux_sym_visual_host_key_token1] = ACTIONS(3349), - [aux_sym_xauth_location_token1] = ACTIONS(3349), + [ts_builtin_sym_end] = ACTIONS(1232), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1234), + [aux_sym_match_token1] = ACTIONS(1232), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1232), + [aux_sym_address_family_token1] = ACTIONS(1232), + [aux_sym_batch_mode_token1] = ACTIONS(1232), + [aux_sym_bind_address_token1] = ACTIONS(1232), + [aux_sym_bind_interface_token1] = ACTIONS(1232), + [aux_sym_canonical_domains_token1] = ACTIONS(1232), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1232), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1232), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1232), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1232), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1232), + [aux_sym_certificate_file_token1] = ACTIONS(1232), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1232), + [aux_sym_check_host_ip_token1] = ACTIONS(1232), + [aux_sym_ciphers_token1] = ACTIONS(1232), + [aux_sym_cipher_token1] = ACTIONS(1234), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1232), + [aux_sym_compression_token1] = ACTIONS(1232), + [aux_sym_connection_attempts_token1] = ACTIONS(1232), + [aux_sym_connect_timeout_token1] = ACTIONS(1232), + [aux_sym_control_master_token1] = ACTIONS(1232), + [aux_sym_control_path_token1] = ACTIONS(1232), + [aux_sym_control_persist_token1] = ACTIONS(1232), + [aux_sym_dynamic_forward_token1] = ACTIONS(1232), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1232), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1232), + [aux_sym_escape_char_token1] = ACTIONS(1232), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1232), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1232), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1232), + [aux_sym_forward_agent_token1] = ACTIONS(1232), + [aux_sym_forward_x11_token1] = ACTIONS(1234), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1232), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1232), + [aux_sym_gateway_ports_token1] = ACTIONS(1232), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1232), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1232), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1232), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1232), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1232), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1232), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1232), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1232), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1232), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1232), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1232), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1232), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1232), + [aux_sym_host_key_alias_token1] = ACTIONS(1232), + [aux_sym_hostname_token1] = ACTIONS(1232), + [aux_sym_identities_only_token1] = ACTIONS(1232), + [aux_sym_identity_agent_token1] = ACTIONS(1232), + [aux_sym_identity_file_token1] = ACTIONS(1232), + [aux_sym_ignore_unknown_token1] = ACTIONS(1232), + [aux_sym_include_token1] = ACTIONS(1232), + [aux_sym_ip_qos_token1] = ACTIONS(1232), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1232), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1232), + [aux_sym_kex_algorithms_token1] = ACTIONS(1232), + [aux_sym_known_hosts_command_token1] = ACTIONS(1232), + [aux_sym_local_command_token1] = ACTIONS(1232), + [aux_sym_local_forward_token1] = ACTIONS(1232), + [aux_sym_log_level_token1] = ACTIONS(1232), + [aux_sym_log_verbose_token1] = ACTIONS(1232), + [aux_sym_macs_token1] = ACTIONS(1232), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1232), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1232), + [aux_sym_password_authentication_token1] = ACTIONS(1232), + [aux_sym_permit_local_command_token1] = ACTIONS(1232), + [aux_sym_permit_remote_open_token1] = ACTIONS(1232), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1232), + [aux_sym_port_token1] = ACTIONS(1232), + [aux_sym_preferred_authentications_token1] = ACTIONS(1232), + [aux_sym_protocol_token1] = ACTIONS(1232), + [aux_sym_proxy_command_token1] = ACTIONS(1232), + [aux_sym_proxy_jump_token1] = ACTIONS(1232), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1232), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1232), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1232), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1232), + [aux_sym_rekey_limit_token1] = ACTIONS(1232), + [aux_sym_remote_command_token1] = ACTIONS(1232), + [aux_sym_remote_forward_token1] = ACTIONS(1232), + [aux_sym_request_tty_token1] = ACTIONS(1232), + [aux_sym_required_rsa_size_token1] = ACTIONS(1232), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1232), + [aux_sym_security_key_provider_token1] = ACTIONS(1232), + [aux_sym_send_env_token1] = ACTIONS(1232), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1232), + [aux_sym_server_alive_interval_token1] = ACTIONS(1232), + [aux_sym_session_type_token1] = ACTIONS(1232), + [aux_sym_set_env_token1] = ACTIONS(1232), + [aux_sym_stdin_null_token1] = ACTIONS(1232), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1232), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1232), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1232), + [aux_sym_syslog_facility_token1] = ACTIONS(1232), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1232), + [aux_sym_keep_alive_token1] = ACTIONS(1232), + [aux_sym_tunnel_token1] = ACTIONS(1234), + [aux_sym_tunnel_device_token1] = ACTIONS(1232), + [aux_sym_update_host_keys_token1] = ACTIONS(1232), + [aux_sym_use_keychain_token1] = ACTIONS(1232), + [aux_sym_use_roaming_token1] = ACTIONS(1232), + [aux_sym_user_token1] = ACTIONS(1234), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1232), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1232), + [aux_sym_visual_host_key_token1] = ACTIONS(1232), + [aux_sym_xauth_location_token1] = ACTIONS(1232), }, [543] = { - [ts_builtin_sym_end] = ACTIONS(3353), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3355), - [aux_sym_match_token1] = ACTIONS(3353), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3353), - [aux_sym_address_family_token1] = ACTIONS(3353), - [aux_sym_batch_mode_token1] = ACTIONS(3353), - [aux_sym_bind_address_token1] = ACTIONS(3353), - [aux_sym_bind_interface_token1] = ACTIONS(3353), - [aux_sym_canonical_domains_token1] = ACTIONS(3353), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3353), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3353), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3353), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3353), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3353), - [aux_sym_certificate_file_token1] = ACTIONS(3353), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3353), - [aux_sym_check_host_ip_token1] = ACTIONS(3353), - [aux_sym_ciphers_token1] = ACTIONS(3353), - [aux_sym_cipher_token1] = ACTIONS(3355), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3353), - [aux_sym_compression_token1] = ACTIONS(3353), - [aux_sym_connection_attempts_token1] = ACTIONS(3353), - [aux_sym_connect_timeout_token1] = ACTIONS(3353), - [aux_sym_control_master_token1] = ACTIONS(3353), - [aux_sym_control_path_token1] = ACTIONS(3353), - [aux_sym_control_persist_token1] = ACTIONS(3353), - [aux_sym_dynamic_forward_token1] = ACTIONS(3353), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3353), - [aux_sym_escape_char_token1] = ACTIONS(3353), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3353), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3353), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3353), - [aux_sym_forward_agent_token1] = ACTIONS(3353), - [aux_sym_forward_x11_token1] = ACTIONS(3355), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3353), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3353), - [aux_sym_gateway_ports_token1] = ACTIONS(3353), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3353), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3353), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3353), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3353), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3353), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3353), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3353), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3353), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3353), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3353), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3353), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3353), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3353), - [aux_sym_host_key_alias_token1] = ACTIONS(3353), - [aux_sym_hostname_token1] = ACTIONS(3353), - [aux_sym_identities_only_token1] = ACTIONS(3353), - [aux_sym_identity_agent_token1] = ACTIONS(3353), - [aux_sym_identity_file_token1] = ACTIONS(3353), - [aux_sym_ignore_unknown_token1] = ACTIONS(3353), - [aux_sym_include_token1] = ACTIONS(3353), - [aux_sym_ip_qos_token1] = ACTIONS(3353), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3353), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3353), - [aux_sym_kex_algorithms_token1] = ACTIONS(3353), - [aux_sym_known_hosts_command_token1] = ACTIONS(3353), - [aux_sym_local_command_token1] = ACTIONS(3353), - [aux_sym_local_forward_token1] = ACTIONS(3353), - [aux_sym_log_level_token1] = ACTIONS(3353), - [aux_sym_log_verbose_token1] = ACTIONS(3353), - [aux_sym_macs_token1] = ACTIONS(3353), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3353), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3353), - [aux_sym_password_authentication_token1] = ACTIONS(3353), - [aux_sym_permit_local_command_token1] = ACTIONS(3353), - [aux_sym_permit_remote_open_token1] = ACTIONS(3353), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3353), - [aux_sym_port_token1] = ACTIONS(3353), - [aux_sym_preferred_authentications_token1] = ACTIONS(3353), - [aux_sym_protocol_token1] = ACTIONS(3353), - [aux_sym_proxy_command_token1] = ACTIONS(3353), - [aux_sym_proxy_jump_token1] = ACTIONS(3353), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3353), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3353), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3353), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3353), - [aux_sym_rekey_limit_token1] = ACTIONS(3353), - [aux_sym_remote_command_token1] = ACTIONS(3353), - [aux_sym_remote_forward_token1] = ACTIONS(3353), - [aux_sym_request_tty_token1] = ACTIONS(3353), - [aux_sym_required_rsa_size_token1] = ACTIONS(3353), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3353), - [aux_sym_security_key_provider_token1] = ACTIONS(3353), - [aux_sym_send_env_token1] = ACTIONS(3353), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3353), - [aux_sym_server_alive_interval_token1] = ACTIONS(3353), - [aux_sym_session_type_token1] = ACTIONS(3353), - [aux_sym_set_env_token1] = ACTIONS(3353), - [aux_sym_stdin_null_token1] = ACTIONS(3353), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3353), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3353), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3353), - [aux_sym_syslog_facility_token1] = ACTIONS(3353), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3353), - [aux_sym_keep_alive_token1] = ACTIONS(3353), - [aux_sym_tunnel_token1] = ACTIONS(3355), - [aux_sym_tunnel_device_token1] = ACTIONS(3353), - [aux_sym_update_host_keys_token1] = ACTIONS(3353), - [aux_sym_use_keychain_token1] = ACTIONS(3353), - [aux_sym_use_roaming_token1] = ACTIONS(3353), - [aux_sym_user_token1] = ACTIONS(3355), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3353), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3353), - [aux_sym_visual_host_key_token1] = ACTIONS(3353), - [aux_sym_xauth_location_token1] = ACTIONS(3353), + [ts_builtin_sym_end] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1066), + [aux_sym_match_token1] = ACTIONS(1064), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1064), + [aux_sym_address_family_token1] = ACTIONS(1064), + [aux_sym_batch_mode_token1] = ACTIONS(1064), + [aux_sym_bind_address_token1] = ACTIONS(1064), + [aux_sym_bind_interface_token1] = ACTIONS(1064), + [aux_sym_canonical_domains_token1] = ACTIONS(1064), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1064), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1064), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1064), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1064), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1064), + [aux_sym_certificate_file_token1] = ACTIONS(1064), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1064), + [aux_sym_check_host_ip_token1] = ACTIONS(1064), + [aux_sym_ciphers_token1] = ACTIONS(1064), + [aux_sym_cipher_token1] = ACTIONS(1066), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1064), + [aux_sym_compression_token1] = ACTIONS(1064), + [aux_sym_connection_attempts_token1] = ACTIONS(1064), + [aux_sym_connect_timeout_token1] = ACTIONS(1064), + [aux_sym_control_master_token1] = ACTIONS(1064), + [aux_sym_control_path_token1] = ACTIONS(1064), + [aux_sym_control_persist_token1] = ACTIONS(1064), + [aux_sym_dynamic_forward_token1] = ACTIONS(1064), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1064), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1064), + [aux_sym_escape_char_token1] = ACTIONS(1064), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1064), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1064), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1064), + [aux_sym_forward_agent_token1] = ACTIONS(1064), + [aux_sym_forward_x11_token1] = ACTIONS(1066), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1064), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1064), + [aux_sym_gateway_ports_token1] = ACTIONS(1064), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1064), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1064), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1064), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1064), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1064), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1064), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1064), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1064), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1064), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1064), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1064), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1064), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1064), + [aux_sym_host_key_alias_token1] = ACTIONS(1064), + [aux_sym_hostname_token1] = ACTIONS(1064), + [aux_sym_identities_only_token1] = ACTIONS(1064), + [aux_sym_identity_agent_token1] = ACTIONS(1064), + [aux_sym_identity_file_token1] = ACTIONS(1064), + [aux_sym_ignore_unknown_token1] = ACTIONS(1064), + [aux_sym_include_token1] = ACTIONS(1064), + [aux_sym_ip_qos_token1] = ACTIONS(1064), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1064), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1064), + [aux_sym_kex_algorithms_token1] = ACTIONS(1064), + [aux_sym_known_hosts_command_token1] = ACTIONS(1064), + [aux_sym_local_command_token1] = ACTIONS(1064), + [aux_sym_local_forward_token1] = ACTIONS(1064), + [aux_sym_log_level_token1] = ACTIONS(1064), + [aux_sym_log_verbose_token1] = ACTIONS(1064), + [aux_sym_macs_token1] = ACTIONS(1064), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1064), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1064), + [aux_sym_password_authentication_token1] = ACTIONS(1064), + [aux_sym_permit_local_command_token1] = ACTIONS(1064), + [aux_sym_permit_remote_open_token1] = ACTIONS(1064), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1064), + [aux_sym_port_token1] = ACTIONS(1064), + [aux_sym_preferred_authentications_token1] = ACTIONS(1064), + [aux_sym_protocol_token1] = ACTIONS(1064), + [aux_sym_proxy_command_token1] = ACTIONS(1064), + [aux_sym_proxy_jump_token1] = ACTIONS(1064), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1064), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1064), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1064), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1064), + [aux_sym_rekey_limit_token1] = ACTIONS(1064), + [aux_sym_remote_command_token1] = ACTIONS(1064), + [aux_sym_remote_forward_token1] = ACTIONS(1064), + [aux_sym_request_tty_token1] = ACTIONS(1064), + [aux_sym_required_rsa_size_token1] = ACTIONS(1064), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1064), + [aux_sym_security_key_provider_token1] = ACTIONS(1064), + [aux_sym_send_env_token1] = ACTIONS(1064), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1064), + [aux_sym_server_alive_interval_token1] = ACTIONS(1064), + [aux_sym_session_type_token1] = ACTIONS(1064), + [aux_sym_set_env_token1] = ACTIONS(1064), + [aux_sym_stdin_null_token1] = ACTIONS(1064), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1064), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1064), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1064), + [aux_sym_syslog_facility_token1] = ACTIONS(1064), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1064), + [aux_sym_keep_alive_token1] = ACTIONS(1064), + [aux_sym_tunnel_token1] = ACTIONS(1066), + [aux_sym_tunnel_device_token1] = ACTIONS(1064), + [aux_sym_update_host_keys_token1] = ACTIONS(1064), + [aux_sym_use_keychain_token1] = ACTIONS(1064), + [aux_sym_use_roaming_token1] = ACTIONS(1064), + [aux_sym_user_token1] = ACTIONS(1066), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1064), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1064), + [aux_sym_visual_host_key_token1] = ACTIONS(1064), + [aux_sym_xauth_location_token1] = ACTIONS(1064), }, [544] = { - [ts_builtin_sym_end] = ACTIONS(3357), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3359), - [aux_sym_match_token1] = ACTIONS(3357), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3357), - [aux_sym_address_family_token1] = ACTIONS(3357), - [aux_sym_batch_mode_token1] = ACTIONS(3357), - [aux_sym_bind_address_token1] = ACTIONS(3357), - [aux_sym_bind_interface_token1] = ACTIONS(3357), - [aux_sym_canonical_domains_token1] = ACTIONS(3357), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3357), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3357), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3357), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3357), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3357), - [aux_sym_certificate_file_token1] = ACTIONS(3357), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3357), - [aux_sym_check_host_ip_token1] = ACTIONS(3357), - [aux_sym_ciphers_token1] = ACTIONS(3357), - [aux_sym_cipher_token1] = ACTIONS(3359), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3357), - [aux_sym_compression_token1] = ACTIONS(3357), - [aux_sym_connection_attempts_token1] = ACTIONS(3357), - [aux_sym_connect_timeout_token1] = ACTIONS(3357), - [aux_sym_control_master_token1] = ACTIONS(3357), - [aux_sym_control_path_token1] = ACTIONS(3357), - [aux_sym_control_persist_token1] = ACTIONS(3357), - [aux_sym_dynamic_forward_token1] = ACTIONS(3357), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3357), - [aux_sym_escape_char_token1] = ACTIONS(3357), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3357), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3357), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3357), - [aux_sym_forward_agent_token1] = ACTIONS(3357), - [aux_sym_forward_x11_token1] = ACTIONS(3359), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3357), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3357), - [aux_sym_gateway_ports_token1] = ACTIONS(3357), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3357), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3357), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3357), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3357), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3357), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3357), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3357), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3357), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3357), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3357), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3357), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3357), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3357), - [aux_sym_host_key_alias_token1] = ACTIONS(3357), - [aux_sym_hostname_token1] = ACTIONS(3357), - [aux_sym_identities_only_token1] = ACTIONS(3357), - [aux_sym_identity_agent_token1] = ACTIONS(3357), - [aux_sym_identity_file_token1] = ACTIONS(3357), - [aux_sym_ignore_unknown_token1] = ACTIONS(3357), - [aux_sym_include_token1] = ACTIONS(3357), - [aux_sym_ip_qos_token1] = ACTIONS(3357), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3357), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3357), - [aux_sym_kex_algorithms_token1] = ACTIONS(3357), - [aux_sym_known_hosts_command_token1] = ACTIONS(3357), - [aux_sym_local_command_token1] = ACTIONS(3357), - [aux_sym_local_forward_token1] = ACTIONS(3357), - [aux_sym_log_level_token1] = ACTIONS(3357), - [aux_sym_log_verbose_token1] = ACTIONS(3357), - [aux_sym_macs_token1] = ACTIONS(3357), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3357), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3357), - [aux_sym_password_authentication_token1] = ACTIONS(3357), - [aux_sym_permit_local_command_token1] = ACTIONS(3357), - [aux_sym_permit_remote_open_token1] = ACTIONS(3357), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3357), - [aux_sym_port_token1] = ACTIONS(3357), - [aux_sym_preferred_authentications_token1] = ACTIONS(3357), - [aux_sym_protocol_token1] = ACTIONS(3357), - [aux_sym_proxy_command_token1] = ACTIONS(3357), - [aux_sym_proxy_jump_token1] = ACTIONS(3357), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3357), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3357), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3357), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3357), - [aux_sym_rekey_limit_token1] = ACTIONS(3357), - [aux_sym_remote_command_token1] = ACTIONS(3357), - [aux_sym_remote_forward_token1] = ACTIONS(3357), - [aux_sym_request_tty_token1] = ACTIONS(3357), - [aux_sym_required_rsa_size_token1] = ACTIONS(3357), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3357), - [aux_sym_security_key_provider_token1] = ACTIONS(3357), - [aux_sym_send_env_token1] = ACTIONS(3357), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3357), - [aux_sym_server_alive_interval_token1] = ACTIONS(3357), - [aux_sym_session_type_token1] = ACTIONS(3357), - [aux_sym_set_env_token1] = ACTIONS(3357), - [aux_sym_stdin_null_token1] = ACTIONS(3357), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3357), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3357), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3357), - [aux_sym_syslog_facility_token1] = ACTIONS(3357), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3357), - [aux_sym_keep_alive_token1] = ACTIONS(3357), - [aux_sym_tunnel_token1] = ACTIONS(3359), - [aux_sym_tunnel_device_token1] = ACTIONS(3357), - [aux_sym_update_host_keys_token1] = ACTIONS(3357), - [aux_sym_use_keychain_token1] = ACTIONS(3357), - [aux_sym_use_roaming_token1] = ACTIONS(3357), - [aux_sym_user_token1] = ACTIONS(3359), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3357), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3357), - [aux_sym_visual_host_key_token1] = ACTIONS(3357), - [aux_sym_xauth_location_token1] = ACTIONS(3357), + [ts_builtin_sym_end] = ACTIONS(3236), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3238), + [aux_sym_match_token1] = ACTIONS(3236), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3236), + [aux_sym_address_family_token1] = ACTIONS(3236), + [aux_sym_batch_mode_token1] = ACTIONS(3236), + [aux_sym_bind_address_token1] = ACTIONS(3236), + [aux_sym_bind_interface_token1] = ACTIONS(3236), + [aux_sym_canonical_domains_token1] = ACTIONS(3236), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3236), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3236), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3236), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3236), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3236), + [aux_sym_certificate_file_token1] = ACTIONS(3236), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3236), + [aux_sym_check_host_ip_token1] = ACTIONS(3236), + [aux_sym_ciphers_token1] = ACTIONS(3236), + [aux_sym_cipher_token1] = ACTIONS(3238), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3236), + [aux_sym_compression_token1] = ACTIONS(3236), + [aux_sym_connection_attempts_token1] = ACTIONS(3236), + [aux_sym_connect_timeout_token1] = ACTIONS(3236), + [aux_sym_control_master_token1] = ACTIONS(3236), + [aux_sym_control_path_token1] = ACTIONS(3236), + [aux_sym_control_persist_token1] = ACTIONS(3236), + [aux_sym_dynamic_forward_token1] = ACTIONS(3236), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3236), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3236), + [aux_sym_escape_char_token1] = ACTIONS(3236), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3236), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3236), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3236), + [aux_sym_forward_agent_token1] = ACTIONS(3236), + [aux_sym_forward_x11_token1] = ACTIONS(3238), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3236), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3236), + [aux_sym_gateway_ports_token1] = ACTIONS(3236), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3236), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3236), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3236), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3236), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3236), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3236), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3236), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3236), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3236), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3236), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3236), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3236), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3236), + [aux_sym_host_key_alias_token1] = ACTIONS(3236), + [aux_sym_hostname_token1] = ACTIONS(3236), + [aux_sym_identities_only_token1] = ACTIONS(3236), + [aux_sym_identity_agent_token1] = ACTIONS(3236), + [aux_sym_identity_file_token1] = ACTIONS(3236), + [aux_sym_ignore_unknown_token1] = ACTIONS(3236), + [aux_sym_include_token1] = ACTIONS(3236), + [aux_sym_ip_qos_token1] = ACTIONS(3236), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3236), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3236), + [aux_sym_kex_algorithms_token1] = ACTIONS(3236), + [aux_sym_known_hosts_command_token1] = ACTIONS(3236), + [aux_sym_local_command_token1] = ACTIONS(3236), + [aux_sym_local_forward_token1] = ACTIONS(3236), + [aux_sym_log_level_token1] = ACTIONS(3236), + [aux_sym_log_verbose_token1] = ACTIONS(3236), + [aux_sym_macs_token1] = ACTIONS(3236), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3236), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3236), + [aux_sym_password_authentication_token1] = ACTIONS(3236), + [aux_sym_permit_local_command_token1] = ACTIONS(3236), + [aux_sym_permit_remote_open_token1] = ACTIONS(3236), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3236), + [aux_sym_port_token1] = ACTIONS(3236), + [aux_sym_preferred_authentications_token1] = ACTIONS(3236), + [aux_sym_protocol_token1] = ACTIONS(3236), + [aux_sym_proxy_command_token1] = ACTIONS(3236), + [aux_sym_proxy_jump_token1] = ACTIONS(3236), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3236), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3236), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3236), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3236), + [aux_sym_rekey_limit_token1] = ACTIONS(3236), + [aux_sym_remote_command_token1] = ACTIONS(3236), + [aux_sym_remote_forward_token1] = ACTIONS(3236), + [aux_sym_request_tty_token1] = ACTIONS(3236), + [aux_sym_required_rsa_size_token1] = ACTIONS(3236), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3236), + [aux_sym_security_key_provider_token1] = ACTIONS(3236), + [aux_sym_send_env_token1] = ACTIONS(3236), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3236), + [aux_sym_server_alive_interval_token1] = ACTIONS(3236), + [aux_sym_session_type_token1] = ACTIONS(3236), + [aux_sym_set_env_token1] = ACTIONS(3236), + [aux_sym_stdin_null_token1] = ACTIONS(3236), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3236), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3236), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3236), + [aux_sym_syslog_facility_token1] = ACTIONS(3236), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3236), + [aux_sym_keep_alive_token1] = ACTIONS(3236), + [aux_sym_tunnel_token1] = ACTIONS(3238), + [aux_sym_tunnel_device_token1] = ACTIONS(3236), + [aux_sym_update_host_keys_token1] = ACTIONS(3236), + [aux_sym_use_keychain_token1] = ACTIONS(3236), + [aux_sym_use_roaming_token1] = ACTIONS(3236), + [aux_sym_user_token1] = ACTIONS(3238), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3236), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3236), + [aux_sym_visual_host_key_token1] = ACTIONS(3236), + [aux_sym_xauth_location_token1] = ACTIONS(3236), }, [545] = { - [ts_builtin_sym_end] = ACTIONS(3361), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3363), - [aux_sym_match_token1] = ACTIONS(3361), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3361), - [aux_sym_address_family_token1] = ACTIONS(3361), - [aux_sym_batch_mode_token1] = ACTIONS(3361), - [aux_sym_bind_address_token1] = ACTIONS(3361), - [aux_sym_bind_interface_token1] = ACTIONS(3361), - [aux_sym_canonical_domains_token1] = ACTIONS(3361), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3361), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3361), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3361), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3361), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3361), - [aux_sym_certificate_file_token1] = ACTIONS(3361), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3361), - [aux_sym_check_host_ip_token1] = ACTIONS(3361), - [aux_sym_ciphers_token1] = ACTIONS(3361), - [aux_sym_cipher_token1] = ACTIONS(3363), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3361), - [aux_sym_compression_token1] = ACTIONS(3361), - [aux_sym_connection_attempts_token1] = ACTIONS(3361), - [aux_sym_connect_timeout_token1] = ACTIONS(3361), - [aux_sym_control_master_token1] = ACTIONS(3361), - [aux_sym_control_path_token1] = ACTIONS(3361), - [aux_sym_control_persist_token1] = ACTIONS(3361), - [aux_sym_dynamic_forward_token1] = ACTIONS(3361), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3361), - [aux_sym_escape_char_token1] = ACTIONS(3361), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3361), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3361), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3361), - [aux_sym_forward_agent_token1] = ACTIONS(3361), - [aux_sym_forward_x11_token1] = ACTIONS(3363), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3361), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3361), - [aux_sym_gateway_ports_token1] = ACTIONS(3361), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3361), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3361), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3361), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3361), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3361), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3361), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3361), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3361), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3361), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3361), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3361), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3361), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3361), - [aux_sym_host_key_alias_token1] = ACTIONS(3361), - [aux_sym_hostname_token1] = ACTIONS(3361), - [aux_sym_identities_only_token1] = ACTIONS(3361), - [aux_sym_identity_agent_token1] = ACTIONS(3361), - [aux_sym_identity_file_token1] = ACTIONS(3361), - [aux_sym_ignore_unknown_token1] = ACTIONS(3361), - [aux_sym_include_token1] = ACTIONS(3361), - [aux_sym_ip_qos_token1] = ACTIONS(3361), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3361), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3361), - [aux_sym_kex_algorithms_token1] = ACTIONS(3361), - [aux_sym_known_hosts_command_token1] = ACTIONS(3361), - [aux_sym_local_command_token1] = ACTIONS(3361), - [aux_sym_local_forward_token1] = ACTIONS(3361), - [aux_sym_log_level_token1] = ACTIONS(3361), - [aux_sym_log_verbose_token1] = ACTIONS(3361), - [aux_sym_macs_token1] = ACTIONS(3361), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3361), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3361), - [aux_sym_password_authentication_token1] = ACTIONS(3361), - [aux_sym_permit_local_command_token1] = ACTIONS(3361), - [aux_sym_permit_remote_open_token1] = ACTIONS(3361), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3361), - [aux_sym_port_token1] = ACTIONS(3361), - [aux_sym_preferred_authentications_token1] = ACTIONS(3361), - [aux_sym_protocol_token1] = ACTIONS(3361), - [aux_sym_proxy_command_token1] = ACTIONS(3361), - [aux_sym_proxy_jump_token1] = ACTIONS(3361), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3361), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3361), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3361), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3361), - [aux_sym_rekey_limit_token1] = ACTIONS(3361), - [aux_sym_remote_command_token1] = ACTIONS(3361), - [aux_sym_remote_forward_token1] = ACTIONS(3361), - [aux_sym_request_tty_token1] = ACTIONS(3361), - [aux_sym_required_rsa_size_token1] = ACTIONS(3361), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3361), - [aux_sym_security_key_provider_token1] = ACTIONS(3361), - [aux_sym_send_env_token1] = ACTIONS(3361), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3361), - [aux_sym_server_alive_interval_token1] = ACTIONS(3361), - [aux_sym_session_type_token1] = ACTIONS(3361), - [aux_sym_set_env_token1] = ACTIONS(3361), - [aux_sym_stdin_null_token1] = ACTIONS(3361), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3361), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3361), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3361), - [aux_sym_syslog_facility_token1] = ACTIONS(3361), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3361), - [aux_sym_keep_alive_token1] = ACTIONS(3361), - [aux_sym_tunnel_token1] = ACTIONS(3363), - [aux_sym_tunnel_device_token1] = ACTIONS(3361), - [aux_sym_update_host_keys_token1] = ACTIONS(3361), - [aux_sym_use_keychain_token1] = ACTIONS(3361), - [aux_sym_use_roaming_token1] = ACTIONS(3361), - [aux_sym_user_token1] = ACTIONS(3363), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3361), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3361), - [aux_sym_visual_host_key_token1] = ACTIONS(3361), - [aux_sym_xauth_location_token1] = ACTIONS(3361), + [ts_builtin_sym_end] = ACTIONS(3240), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3242), + [aux_sym_match_token1] = ACTIONS(3240), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3240), + [aux_sym_address_family_token1] = ACTIONS(3240), + [aux_sym_batch_mode_token1] = ACTIONS(3240), + [aux_sym_bind_address_token1] = ACTIONS(3240), + [aux_sym_bind_interface_token1] = ACTIONS(3240), + [aux_sym_canonical_domains_token1] = ACTIONS(3240), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3240), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3240), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3240), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3240), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3240), + [aux_sym_certificate_file_token1] = ACTIONS(3240), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3240), + [aux_sym_check_host_ip_token1] = ACTIONS(3240), + [aux_sym_ciphers_token1] = ACTIONS(3240), + [aux_sym_cipher_token1] = ACTIONS(3242), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3240), + [aux_sym_compression_token1] = ACTIONS(3240), + [aux_sym_connection_attempts_token1] = ACTIONS(3240), + [aux_sym_connect_timeout_token1] = ACTIONS(3240), + [aux_sym_control_master_token1] = ACTIONS(3240), + [aux_sym_control_path_token1] = ACTIONS(3240), + [aux_sym_control_persist_token1] = ACTIONS(3240), + [aux_sym_dynamic_forward_token1] = ACTIONS(3240), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3240), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3240), + [aux_sym_escape_char_token1] = ACTIONS(3240), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3240), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3240), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3240), + [aux_sym_forward_agent_token1] = ACTIONS(3240), + [aux_sym_forward_x11_token1] = ACTIONS(3242), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3240), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3240), + [aux_sym_gateway_ports_token1] = ACTIONS(3240), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3240), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3240), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3240), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3240), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3240), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3240), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3240), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3240), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3240), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3240), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3240), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3240), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3240), + [aux_sym_host_key_alias_token1] = ACTIONS(3240), + [aux_sym_hostname_token1] = ACTIONS(3240), + [aux_sym_identities_only_token1] = ACTIONS(3240), + [aux_sym_identity_agent_token1] = ACTIONS(3240), + [aux_sym_identity_file_token1] = ACTIONS(3240), + [aux_sym_ignore_unknown_token1] = ACTIONS(3240), + [aux_sym_include_token1] = ACTIONS(3240), + [aux_sym_ip_qos_token1] = ACTIONS(3240), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3240), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3240), + [aux_sym_kex_algorithms_token1] = ACTIONS(3240), + [aux_sym_known_hosts_command_token1] = ACTIONS(3240), + [aux_sym_local_command_token1] = ACTIONS(3240), + [aux_sym_local_forward_token1] = ACTIONS(3240), + [aux_sym_log_level_token1] = ACTIONS(3240), + [aux_sym_log_verbose_token1] = ACTIONS(3240), + [aux_sym_macs_token1] = ACTIONS(3240), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3240), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3240), + [aux_sym_password_authentication_token1] = ACTIONS(3240), + [aux_sym_permit_local_command_token1] = ACTIONS(3240), + [aux_sym_permit_remote_open_token1] = ACTIONS(3240), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3240), + [aux_sym_port_token1] = ACTIONS(3240), + [aux_sym_preferred_authentications_token1] = ACTIONS(3240), + [aux_sym_protocol_token1] = ACTIONS(3240), + [aux_sym_proxy_command_token1] = ACTIONS(3240), + [aux_sym_proxy_jump_token1] = ACTIONS(3240), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3240), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3240), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3240), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3240), + [aux_sym_rekey_limit_token1] = ACTIONS(3240), + [aux_sym_remote_command_token1] = ACTIONS(3240), + [aux_sym_remote_forward_token1] = ACTIONS(3240), + [aux_sym_request_tty_token1] = ACTIONS(3240), + [aux_sym_required_rsa_size_token1] = ACTIONS(3240), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3240), + [aux_sym_security_key_provider_token1] = ACTIONS(3240), + [aux_sym_send_env_token1] = ACTIONS(3240), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3240), + [aux_sym_server_alive_interval_token1] = ACTIONS(3240), + [aux_sym_session_type_token1] = ACTIONS(3240), + [aux_sym_set_env_token1] = ACTIONS(3240), + [aux_sym_stdin_null_token1] = ACTIONS(3240), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3240), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3240), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3240), + [aux_sym_syslog_facility_token1] = ACTIONS(3240), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3240), + [aux_sym_keep_alive_token1] = ACTIONS(3240), + [aux_sym_tunnel_token1] = ACTIONS(3242), + [aux_sym_tunnel_device_token1] = ACTIONS(3240), + [aux_sym_update_host_keys_token1] = ACTIONS(3240), + [aux_sym_use_keychain_token1] = ACTIONS(3240), + [aux_sym_use_roaming_token1] = ACTIONS(3240), + [aux_sym_user_token1] = ACTIONS(3242), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3240), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3240), + [aux_sym_visual_host_key_token1] = ACTIONS(3240), + [aux_sym_xauth_location_token1] = ACTIONS(3240), }, [546] = { - [ts_builtin_sym_end] = ACTIONS(3365), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3367), - [aux_sym_match_token1] = ACTIONS(3365), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3365), - [aux_sym_address_family_token1] = ACTIONS(3365), - [aux_sym_batch_mode_token1] = ACTIONS(3365), - [aux_sym_bind_address_token1] = ACTIONS(3365), - [aux_sym_bind_interface_token1] = ACTIONS(3365), - [aux_sym_canonical_domains_token1] = ACTIONS(3365), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3365), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3365), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3365), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3365), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3365), - [aux_sym_certificate_file_token1] = ACTIONS(3365), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3365), - [aux_sym_check_host_ip_token1] = ACTIONS(3365), - [aux_sym_ciphers_token1] = ACTIONS(3365), - [aux_sym_cipher_token1] = ACTIONS(3367), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3365), - [aux_sym_compression_token1] = ACTIONS(3365), - [aux_sym_connection_attempts_token1] = ACTIONS(3365), - [aux_sym_connect_timeout_token1] = ACTIONS(3365), - [aux_sym_control_master_token1] = ACTIONS(3365), - [aux_sym_control_path_token1] = ACTIONS(3365), - [aux_sym_control_persist_token1] = ACTIONS(3365), - [aux_sym_dynamic_forward_token1] = ACTIONS(3365), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3365), - [aux_sym_escape_char_token1] = ACTIONS(3365), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3365), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3365), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3365), - [aux_sym_forward_agent_token1] = ACTIONS(3365), - [aux_sym_forward_x11_token1] = ACTIONS(3367), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3365), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3365), - [aux_sym_gateway_ports_token1] = ACTIONS(3365), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3365), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3365), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3365), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3365), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3365), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3365), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3365), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3365), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3365), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3365), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3365), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3365), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3365), - [aux_sym_host_key_alias_token1] = ACTIONS(3365), - [aux_sym_hostname_token1] = ACTIONS(3365), - [aux_sym_identities_only_token1] = ACTIONS(3365), - [aux_sym_identity_agent_token1] = ACTIONS(3365), - [aux_sym_identity_file_token1] = ACTIONS(3365), - [aux_sym_ignore_unknown_token1] = ACTIONS(3365), - [aux_sym_include_token1] = ACTIONS(3365), - [aux_sym_ip_qos_token1] = ACTIONS(3365), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3365), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3365), - [aux_sym_kex_algorithms_token1] = ACTIONS(3365), - [aux_sym_known_hosts_command_token1] = ACTIONS(3365), - [aux_sym_local_command_token1] = ACTIONS(3365), - [aux_sym_local_forward_token1] = ACTIONS(3365), - [aux_sym_log_level_token1] = ACTIONS(3365), - [aux_sym_log_verbose_token1] = ACTIONS(3365), - [aux_sym_macs_token1] = ACTIONS(3365), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3365), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3365), - [aux_sym_password_authentication_token1] = ACTIONS(3365), - [aux_sym_permit_local_command_token1] = ACTIONS(3365), - [aux_sym_permit_remote_open_token1] = ACTIONS(3365), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3365), - [aux_sym_port_token1] = ACTIONS(3365), - [aux_sym_preferred_authentications_token1] = ACTIONS(3365), - [aux_sym_protocol_token1] = ACTIONS(3365), - [aux_sym_proxy_command_token1] = ACTIONS(3365), - [aux_sym_proxy_jump_token1] = ACTIONS(3365), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3365), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3365), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3365), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3365), - [aux_sym_rekey_limit_token1] = ACTIONS(3365), - [aux_sym_remote_command_token1] = ACTIONS(3365), - [aux_sym_remote_forward_token1] = ACTIONS(3365), - [aux_sym_request_tty_token1] = ACTIONS(3365), - [aux_sym_required_rsa_size_token1] = ACTIONS(3365), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3365), - [aux_sym_security_key_provider_token1] = ACTIONS(3365), - [aux_sym_send_env_token1] = ACTIONS(3365), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3365), - [aux_sym_server_alive_interval_token1] = ACTIONS(3365), - [aux_sym_session_type_token1] = ACTIONS(3365), - [aux_sym_set_env_token1] = ACTIONS(3365), - [aux_sym_stdin_null_token1] = ACTIONS(3365), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3365), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3365), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3365), - [aux_sym_syslog_facility_token1] = ACTIONS(3365), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3365), - [aux_sym_keep_alive_token1] = ACTIONS(3365), - [aux_sym_tunnel_token1] = ACTIONS(3367), - [aux_sym_tunnel_device_token1] = ACTIONS(3365), - [aux_sym_update_host_keys_token1] = ACTIONS(3365), - [aux_sym_use_keychain_token1] = ACTIONS(3365), - [aux_sym_use_roaming_token1] = ACTIONS(3365), - [aux_sym_user_token1] = ACTIONS(3367), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3365), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3365), - [aux_sym_visual_host_key_token1] = ACTIONS(3365), - [aux_sym_xauth_location_token1] = ACTIONS(3365), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3246), + [aux_sym_match_token1] = ACTIONS(3244), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3244), + [aux_sym_address_family_token1] = ACTIONS(3244), + [aux_sym_batch_mode_token1] = ACTIONS(3244), + [aux_sym_bind_address_token1] = ACTIONS(3244), + [aux_sym_bind_interface_token1] = ACTIONS(3244), + [aux_sym_canonical_domains_token1] = ACTIONS(3244), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3244), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3244), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3244), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3244), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3244), + [aux_sym_certificate_file_token1] = ACTIONS(3244), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3244), + [aux_sym_check_host_ip_token1] = ACTIONS(3244), + [aux_sym_ciphers_token1] = ACTIONS(3244), + [aux_sym_cipher_token1] = ACTIONS(3246), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3244), + [aux_sym_compression_token1] = ACTIONS(3244), + [aux_sym_connection_attempts_token1] = ACTIONS(3244), + [aux_sym_connect_timeout_token1] = ACTIONS(3244), + [aux_sym_control_master_token1] = ACTIONS(3244), + [aux_sym_control_path_token1] = ACTIONS(3244), + [aux_sym_control_persist_token1] = ACTIONS(3244), + [aux_sym_dynamic_forward_token1] = ACTIONS(3244), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3244), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3244), + [aux_sym_escape_char_token1] = ACTIONS(3244), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3244), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3244), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3244), + [aux_sym_forward_agent_token1] = ACTIONS(3244), + [aux_sym_forward_x11_token1] = ACTIONS(3246), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3244), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3244), + [aux_sym_gateway_ports_token1] = ACTIONS(3244), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3244), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3244), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3244), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3244), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3244), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3244), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3244), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3244), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3244), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3244), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3244), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3244), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3244), + [aux_sym_host_key_alias_token1] = ACTIONS(3244), + [aux_sym_hostname_token1] = ACTIONS(3244), + [aux_sym_identities_only_token1] = ACTIONS(3244), + [aux_sym_identity_agent_token1] = ACTIONS(3244), + [aux_sym_identity_file_token1] = ACTIONS(3244), + [aux_sym_ignore_unknown_token1] = ACTIONS(3244), + [aux_sym_include_token1] = ACTIONS(3244), + [aux_sym_ip_qos_token1] = ACTIONS(3244), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3244), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3244), + [aux_sym_kex_algorithms_token1] = ACTIONS(3244), + [aux_sym_known_hosts_command_token1] = ACTIONS(3244), + [aux_sym_local_command_token1] = ACTIONS(3244), + [aux_sym_local_forward_token1] = ACTIONS(3244), + [aux_sym_log_level_token1] = ACTIONS(3244), + [aux_sym_log_verbose_token1] = ACTIONS(3244), + [aux_sym_macs_token1] = ACTIONS(3244), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3244), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3244), + [aux_sym_password_authentication_token1] = ACTIONS(3244), + [aux_sym_permit_local_command_token1] = ACTIONS(3244), + [aux_sym_permit_remote_open_token1] = ACTIONS(3244), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3244), + [aux_sym_port_token1] = ACTIONS(3244), + [aux_sym_preferred_authentications_token1] = ACTIONS(3244), + [aux_sym_protocol_token1] = ACTIONS(3244), + [aux_sym_proxy_command_token1] = ACTIONS(3244), + [aux_sym_proxy_jump_token1] = ACTIONS(3244), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3244), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3244), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3244), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3244), + [aux_sym_rekey_limit_token1] = ACTIONS(3244), + [aux_sym_remote_command_token1] = ACTIONS(3244), + [aux_sym_remote_forward_token1] = ACTIONS(3244), + [aux_sym_request_tty_token1] = ACTIONS(3244), + [aux_sym_required_rsa_size_token1] = ACTIONS(3244), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3244), + [aux_sym_security_key_provider_token1] = ACTIONS(3244), + [aux_sym_send_env_token1] = ACTIONS(3244), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3244), + [aux_sym_server_alive_interval_token1] = ACTIONS(3244), + [aux_sym_session_type_token1] = ACTIONS(3244), + [aux_sym_set_env_token1] = ACTIONS(3244), + [aux_sym_stdin_null_token1] = ACTIONS(3244), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3244), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3244), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3244), + [aux_sym_syslog_facility_token1] = ACTIONS(3244), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3244), + [aux_sym_keep_alive_token1] = ACTIONS(3244), + [aux_sym_tunnel_token1] = ACTIONS(3246), + [aux_sym_tunnel_device_token1] = ACTIONS(3244), + [aux_sym_update_host_keys_token1] = ACTIONS(3244), + [aux_sym_use_keychain_token1] = ACTIONS(3244), + [aux_sym_use_roaming_token1] = ACTIONS(3244), + [aux_sym_user_token1] = ACTIONS(3246), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3244), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3244), + [aux_sym_visual_host_key_token1] = ACTIONS(3244), + [aux_sym_xauth_location_token1] = ACTIONS(3244), }, [547] = { - [ts_builtin_sym_end] = ACTIONS(3369), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3371), - [aux_sym_match_token1] = ACTIONS(3369), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3369), - [aux_sym_address_family_token1] = ACTIONS(3369), - [aux_sym_batch_mode_token1] = ACTIONS(3369), - [aux_sym_bind_address_token1] = ACTIONS(3369), - [aux_sym_bind_interface_token1] = ACTIONS(3369), - [aux_sym_canonical_domains_token1] = ACTIONS(3369), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3369), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3369), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3369), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3369), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3369), - [aux_sym_certificate_file_token1] = ACTIONS(3369), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3369), - [aux_sym_check_host_ip_token1] = ACTIONS(3369), - [aux_sym_ciphers_token1] = ACTIONS(3369), - [aux_sym_cipher_token1] = ACTIONS(3371), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3369), - [aux_sym_compression_token1] = ACTIONS(3369), - [aux_sym_connection_attempts_token1] = ACTIONS(3369), - [aux_sym_connect_timeout_token1] = ACTIONS(3369), - [aux_sym_control_master_token1] = ACTIONS(3369), - [aux_sym_control_path_token1] = ACTIONS(3369), - [aux_sym_control_persist_token1] = ACTIONS(3369), - [aux_sym_dynamic_forward_token1] = ACTIONS(3369), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3369), - [aux_sym_escape_char_token1] = ACTIONS(3369), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3369), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3369), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3369), - [aux_sym_forward_agent_token1] = ACTIONS(3369), - [aux_sym_forward_x11_token1] = ACTIONS(3371), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3369), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3369), - [aux_sym_gateway_ports_token1] = ACTIONS(3369), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3369), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3369), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3369), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3369), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3369), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3369), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3369), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3369), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3369), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3369), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3369), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3369), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3369), - [aux_sym_host_key_alias_token1] = ACTIONS(3369), - [aux_sym_hostname_token1] = ACTIONS(3369), - [aux_sym_identities_only_token1] = ACTIONS(3369), - [aux_sym_identity_agent_token1] = ACTIONS(3369), - [aux_sym_identity_file_token1] = ACTIONS(3369), - [aux_sym_ignore_unknown_token1] = ACTIONS(3369), - [aux_sym_include_token1] = ACTIONS(3369), - [aux_sym_ip_qos_token1] = ACTIONS(3369), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3369), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3369), - [aux_sym_kex_algorithms_token1] = ACTIONS(3369), - [aux_sym_known_hosts_command_token1] = ACTIONS(3369), - [aux_sym_local_command_token1] = ACTIONS(3369), - [aux_sym_local_forward_token1] = ACTIONS(3369), - [aux_sym_log_level_token1] = ACTIONS(3369), - [aux_sym_log_verbose_token1] = ACTIONS(3369), - [aux_sym_macs_token1] = ACTIONS(3369), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3369), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3369), - [aux_sym_password_authentication_token1] = ACTIONS(3369), - [aux_sym_permit_local_command_token1] = ACTIONS(3369), - [aux_sym_permit_remote_open_token1] = ACTIONS(3369), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3369), - [aux_sym_port_token1] = ACTIONS(3369), - [aux_sym_preferred_authentications_token1] = ACTIONS(3369), - [aux_sym_protocol_token1] = ACTIONS(3369), - [aux_sym_proxy_command_token1] = ACTIONS(3369), - [aux_sym_proxy_jump_token1] = ACTIONS(3369), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3369), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3369), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3369), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3369), - [aux_sym_rekey_limit_token1] = ACTIONS(3369), - [aux_sym_remote_command_token1] = ACTIONS(3369), - [aux_sym_remote_forward_token1] = ACTIONS(3369), - [aux_sym_request_tty_token1] = ACTIONS(3369), - [aux_sym_required_rsa_size_token1] = ACTIONS(3369), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3369), - [aux_sym_security_key_provider_token1] = ACTIONS(3369), - [aux_sym_send_env_token1] = ACTIONS(3369), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3369), - [aux_sym_server_alive_interval_token1] = ACTIONS(3369), - [aux_sym_session_type_token1] = ACTIONS(3369), - [aux_sym_set_env_token1] = ACTIONS(3369), - [aux_sym_stdin_null_token1] = ACTIONS(3369), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3369), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3369), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3369), - [aux_sym_syslog_facility_token1] = ACTIONS(3369), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3369), - [aux_sym_keep_alive_token1] = ACTIONS(3369), - [aux_sym_tunnel_token1] = ACTIONS(3371), - [aux_sym_tunnel_device_token1] = ACTIONS(3369), - [aux_sym_update_host_keys_token1] = ACTIONS(3369), - [aux_sym_use_keychain_token1] = ACTIONS(3369), - [aux_sym_use_roaming_token1] = ACTIONS(3369), - [aux_sym_user_token1] = ACTIONS(3371), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3369), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3369), - [aux_sym_visual_host_key_token1] = ACTIONS(3369), - [aux_sym_xauth_location_token1] = ACTIONS(3369), + [ts_builtin_sym_end] = ACTIONS(3248), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3250), + [aux_sym_match_token1] = ACTIONS(3248), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3248), + [aux_sym_address_family_token1] = ACTIONS(3248), + [aux_sym_batch_mode_token1] = ACTIONS(3248), + [aux_sym_bind_address_token1] = ACTIONS(3248), + [aux_sym_bind_interface_token1] = ACTIONS(3248), + [aux_sym_canonical_domains_token1] = ACTIONS(3248), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3248), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3248), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3248), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3248), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3248), + [aux_sym_certificate_file_token1] = ACTIONS(3248), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3248), + [aux_sym_check_host_ip_token1] = ACTIONS(3248), + [aux_sym_ciphers_token1] = ACTIONS(3248), + [aux_sym_cipher_token1] = ACTIONS(3250), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3248), + [aux_sym_compression_token1] = ACTIONS(3248), + [aux_sym_connection_attempts_token1] = ACTIONS(3248), + [aux_sym_connect_timeout_token1] = ACTIONS(3248), + [aux_sym_control_master_token1] = ACTIONS(3248), + [aux_sym_control_path_token1] = ACTIONS(3248), + [aux_sym_control_persist_token1] = ACTIONS(3248), + [aux_sym_dynamic_forward_token1] = ACTIONS(3248), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3248), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3248), + [aux_sym_escape_char_token1] = ACTIONS(3248), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3248), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3248), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3248), + [aux_sym_forward_agent_token1] = ACTIONS(3248), + [aux_sym_forward_x11_token1] = ACTIONS(3250), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3248), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3248), + [aux_sym_gateway_ports_token1] = ACTIONS(3248), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3248), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3248), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3248), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3248), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3248), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3248), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3248), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3248), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3248), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3248), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3248), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3248), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3248), + [aux_sym_host_key_alias_token1] = ACTIONS(3248), + [aux_sym_hostname_token1] = ACTIONS(3248), + [aux_sym_identities_only_token1] = ACTIONS(3248), + [aux_sym_identity_agent_token1] = ACTIONS(3248), + [aux_sym_identity_file_token1] = ACTIONS(3248), + [aux_sym_ignore_unknown_token1] = ACTIONS(3248), + [aux_sym_include_token1] = ACTIONS(3248), + [aux_sym_ip_qos_token1] = ACTIONS(3248), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3248), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3248), + [aux_sym_kex_algorithms_token1] = ACTIONS(3248), + [aux_sym_known_hosts_command_token1] = ACTIONS(3248), + [aux_sym_local_command_token1] = ACTIONS(3248), + [aux_sym_local_forward_token1] = ACTIONS(3248), + [aux_sym_log_level_token1] = ACTIONS(3248), + [aux_sym_log_verbose_token1] = ACTIONS(3248), + [aux_sym_macs_token1] = ACTIONS(3248), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3248), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3248), + [aux_sym_password_authentication_token1] = ACTIONS(3248), + [aux_sym_permit_local_command_token1] = ACTIONS(3248), + [aux_sym_permit_remote_open_token1] = ACTIONS(3248), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3248), + [aux_sym_port_token1] = ACTIONS(3248), + [aux_sym_preferred_authentications_token1] = ACTIONS(3248), + [aux_sym_protocol_token1] = ACTIONS(3248), + [aux_sym_proxy_command_token1] = ACTIONS(3248), + [aux_sym_proxy_jump_token1] = ACTIONS(3248), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3248), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3248), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3248), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3248), + [aux_sym_rekey_limit_token1] = ACTIONS(3248), + [aux_sym_remote_command_token1] = ACTIONS(3248), + [aux_sym_remote_forward_token1] = ACTIONS(3248), + [aux_sym_request_tty_token1] = ACTIONS(3248), + [aux_sym_required_rsa_size_token1] = ACTIONS(3248), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3248), + [aux_sym_security_key_provider_token1] = ACTIONS(3248), + [aux_sym_send_env_token1] = ACTIONS(3248), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3248), + [aux_sym_server_alive_interval_token1] = ACTIONS(3248), + [aux_sym_session_type_token1] = ACTIONS(3248), + [aux_sym_set_env_token1] = ACTIONS(3248), + [aux_sym_stdin_null_token1] = ACTIONS(3248), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3248), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3248), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3248), + [aux_sym_syslog_facility_token1] = ACTIONS(3248), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3248), + [aux_sym_keep_alive_token1] = ACTIONS(3248), + [aux_sym_tunnel_token1] = ACTIONS(3250), + [aux_sym_tunnel_device_token1] = ACTIONS(3248), + [aux_sym_update_host_keys_token1] = ACTIONS(3248), + [aux_sym_use_keychain_token1] = ACTIONS(3248), + [aux_sym_use_roaming_token1] = ACTIONS(3248), + [aux_sym_user_token1] = ACTIONS(3250), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3248), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3248), + [aux_sym_visual_host_key_token1] = ACTIONS(3248), + [aux_sym_xauth_location_token1] = ACTIONS(3248), }, [548] = { - [ts_builtin_sym_end] = ACTIONS(3373), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3375), - [aux_sym_match_token1] = ACTIONS(3373), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3373), - [aux_sym_address_family_token1] = ACTIONS(3373), - [aux_sym_batch_mode_token1] = ACTIONS(3373), - [aux_sym_bind_address_token1] = ACTIONS(3373), - [aux_sym_bind_interface_token1] = ACTIONS(3373), - [aux_sym_canonical_domains_token1] = ACTIONS(3373), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3373), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3373), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3373), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3373), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3373), - [aux_sym_certificate_file_token1] = ACTIONS(3373), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3373), - [aux_sym_check_host_ip_token1] = ACTIONS(3373), - [aux_sym_ciphers_token1] = ACTIONS(3373), - [aux_sym_cipher_token1] = ACTIONS(3375), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3373), - [aux_sym_compression_token1] = ACTIONS(3373), - [aux_sym_connection_attempts_token1] = ACTIONS(3373), - [aux_sym_connect_timeout_token1] = ACTIONS(3373), - [aux_sym_control_master_token1] = ACTIONS(3373), - [aux_sym_control_path_token1] = ACTIONS(3373), - [aux_sym_control_persist_token1] = ACTIONS(3373), - [aux_sym_dynamic_forward_token1] = ACTIONS(3373), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3373), - [aux_sym_escape_char_token1] = ACTIONS(3373), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3373), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3373), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3373), - [aux_sym_forward_agent_token1] = ACTIONS(3373), - [aux_sym_forward_x11_token1] = ACTIONS(3375), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3373), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3373), - [aux_sym_gateway_ports_token1] = ACTIONS(3373), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3373), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3373), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3373), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3373), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3373), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3373), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3373), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3373), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3373), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3373), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3373), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3373), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3373), - [aux_sym_host_key_alias_token1] = ACTIONS(3373), - [aux_sym_hostname_token1] = ACTIONS(3373), - [aux_sym_identities_only_token1] = ACTIONS(3373), - [aux_sym_identity_agent_token1] = ACTIONS(3373), - [aux_sym_identity_file_token1] = ACTIONS(3373), - [aux_sym_ignore_unknown_token1] = ACTIONS(3373), - [aux_sym_include_token1] = ACTIONS(3373), - [aux_sym_ip_qos_token1] = ACTIONS(3373), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3373), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3373), - [aux_sym_kex_algorithms_token1] = ACTIONS(3373), - [aux_sym_known_hosts_command_token1] = ACTIONS(3373), - [aux_sym_local_command_token1] = ACTIONS(3373), - [aux_sym_local_forward_token1] = ACTIONS(3373), - [aux_sym_log_level_token1] = ACTIONS(3373), - [aux_sym_log_verbose_token1] = ACTIONS(3373), - [aux_sym_macs_token1] = ACTIONS(3373), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3373), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3373), - [aux_sym_password_authentication_token1] = ACTIONS(3373), - [aux_sym_permit_local_command_token1] = ACTIONS(3373), - [aux_sym_permit_remote_open_token1] = ACTIONS(3373), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3373), - [aux_sym_port_token1] = ACTIONS(3373), - [aux_sym_preferred_authentications_token1] = ACTIONS(3373), - [aux_sym_protocol_token1] = ACTIONS(3373), - [aux_sym_proxy_command_token1] = ACTIONS(3373), - [aux_sym_proxy_jump_token1] = ACTIONS(3373), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3373), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3373), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3373), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3373), - [aux_sym_rekey_limit_token1] = ACTIONS(3373), - [aux_sym_remote_command_token1] = ACTIONS(3373), - [aux_sym_remote_forward_token1] = ACTIONS(3373), - [aux_sym_request_tty_token1] = ACTIONS(3373), - [aux_sym_required_rsa_size_token1] = ACTIONS(3373), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3373), - [aux_sym_security_key_provider_token1] = ACTIONS(3373), - [aux_sym_send_env_token1] = ACTIONS(3373), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3373), - [aux_sym_server_alive_interval_token1] = ACTIONS(3373), - [aux_sym_session_type_token1] = ACTIONS(3373), - [aux_sym_set_env_token1] = ACTIONS(3373), - [aux_sym_stdin_null_token1] = ACTIONS(3373), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3373), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3373), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3373), - [aux_sym_syslog_facility_token1] = ACTIONS(3373), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3373), - [aux_sym_keep_alive_token1] = ACTIONS(3373), - [aux_sym_tunnel_token1] = ACTIONS(3375), - [aux_sym_tunnel_device_token1] = ACTIONS(3373), - [aux_sym_update_host_keys_token1] = ACTIONS(3373), - [aux_sym_use_keychain_token1] = ACTIONS(3373), - [aux_sym_use_roaming_token1] = ACTIONS(3373), - [aux_sym_user_token1] = ACTIONS(3375), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3373), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3373), - [aux_sym_visual_host_key_token1] = ACTIONS(3373), - [aux_sym_xauth_location_token1] = ACTIONS(3373), + [ts_builtin_sym_end] = ACTIONS(1238), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1240), + [aux_sym_match_token1] = ACTIONS(1238), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1238), + [aux_sym_address_family_token1] = ACTIONS(1238), + [aux_sym_batch_mode_token1] = ACTIONS(1238), + [aux_sym_bind_address_token1] = ACTIONS(1238), + [aux_sym_bind_interface_token1] = ACTIONS(1238), + [aux_sym_canonical_domains_token1] = ACTIONS(1238), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1238), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1238), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1238), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1238), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1238), + [aux_sym_certificate_file_token1] = ACTIONS(1238), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1238), + [aux_sym_check_host_ip_token1] = ACTIONS(1238), + [aux_sym_ciphers_token1] = ACTIONS(1238), + [aux_sym_cipher_token1] = ACTIONS(1240), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1238), + [aux_sym_compression_token1] = ACTIONS(1238), + [aux_sym_connection_attempts_token1] = ACTIONS(1238), + [aux_sym_connect_timeout_token1] = ACTIONS(1238), + [aux_sym_control_master_token1] = ACTIONS(1238), + [aux_sym_control_path_token1] = ACTIONS(1238), + [aux_sym_control_persist_token1] = ACTIONS(1238), + [aux_sym_dynamic_forward_token1] = ACTIONS(1238), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1238), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1238), + [aux_sym_escape_char_token1] = ACTIONS(1238), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1238), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1238), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1238), + [aux_sym_forward_agent_token1] = ACTIONS(1238), + [aux_sym_forward_x11_token1] = ACTIONS(1240), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1238), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1238), + [aux_sym_gateway_ports_token1] = ACTIONS(1238), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1238), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1238), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1238), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1238), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1238), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1238), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1238), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1238), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1238), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1238), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1238), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1238), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1238), + [aux_sym_host_key_alias_token1] = ACTIONS(1238), + [aux_sym_hostname_token1] = ACTIONS(1238), + [aux_sym_identities_only_token1] = ACTIONS(1238), + [aux_sym_identity_agent_token1] = ACTIONS(1238), + [aux_sym_identity_file_token1] = ACTIONS(1238), + [aux_sym_ignore_unknown_token1] = ACTIONS(1238), + [aux_sym_include_token1] = ACTIONS(1238), + [aux_sym_ip_qos_token1] = ACTIONS(1238), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1238), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1238), + [aux_sym_kex_algorithms_token1] = ACTIONS(1238), + [aux_sym_known_hosts_command_token1] = ACTIONS(1238), + [aux_sym_local_command_token1] = ACTIONS(1238), + [aux_sym_local_forward_token1] = ACTIONS(1238), + [aux_sym_log_level_token1] = ACTIONS(1238), + [aux_sym_log_verbose_token1] = ACTIONS(1238), + [aux_sym_macs_token1] = ACTIONS(1238), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1238), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1238), + [aux_sym_password_authentication_token1] = ACTIONS(1238), + [aux_sym_permit_local_command_token1] = ACTIONS(1238), + [aux_sym_permit_remote_open_token1] = ACTIONS(1238), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1238), + [aux_sym_port_token1] = ACTIONS(1238), + [aux_sym_preferred_authentications_token1] = ACTIONS(1238), + [aux_sym_protocol_token1] = ACTIONS(1238), + [aux_sym_proxy_command_token1] = ACTIONS(1238), + [aux_sym_proxy_jump_token1] = ACTIONS(1238), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1238), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1238), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1238), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1238), + [aux_sym_rekey_limit_token1] = ACTIONS(1238), + [aux_sym_remote_command_token1] = ACTIONS(1238), + [aux_sym_remote_forward_token1] = ACTIONS(1238), + [aux_sym_request_tty_token1] = ACTIONS(1238), + [aux_sym_required_rsa_size_token1] = ACTIONS(1238), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1238), + [aux_sym_security_key_provider_token1] = ACTIONS(1238), + [aux_sym_send_env_token1] = ACTIONS(1238), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1238), + [aux_sym_server_alive_interval_token1] = ACTIONS(1238), + [aux_sym_session_type_token1] = ACTIONS(1238), + [aux_sym_set_env_token1] = ACTIONS(1238), + [aux_sym_stdin_null_token1] = ACTIONS(1238), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1238), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1238), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1238), + [aux_sym_syslog_facility_token1] = ACTIONS(1238), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1238), + [aux_sym_keep_alive_token1] = ACTIONS(1238), + [aux_sym_tunnel_token1] = ACTIONS(1240), + [aux_sym_tunnel_device_token1] = ACTIONS(1238), + [aux_sym_update_host_keys_token1] = ACTIONS(1238), + [aux_sym_use_keychain_token1] = ACTIONS(1238), + [aux_sym_use_roaming_token1] = ACTIONS(1238), + [aux_sym_user_token1] = ACTIONS(1240), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1238), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1238), + [aux_sym_visual_host_key_token1] = ACTIONS(1238), + [aux_sym_xauth_location_token1] = ACTIONS(1238), }, [549] = { - [ts_builtin_sym_end] = ACTIONS(3377), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3379), - [aux_sym_match_token1] = ACTIONS(3377), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3377), - [aux_sym_address_family_token1] = ACTIONS(3377), - [aux_sym_batch_mode_token1] = ACTIONS(3377), - [aux_sym_bind_address_token1] = ACTIONS(3377), - [aux_sym_bind_interface_token1] = ACTIONS(3377), - [aux_sym_canonical_domains_token1] = ACTIONS(3377), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3377), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3377), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3377), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3377), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3377), - [aux_sym_certificate_file_token1] = ACTIONS(3377), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3377), - [aux_sym_check_host_ip_token1] = ACTIONS(3377), - [aux_sym_ciphers_token1] = ACTIONS(3377), - [aux_sym_cipher_token1] = ACTIONS(3379), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3377), - [aux_sym_compression_token1] = ACTIONS(3377), - [aux_sym_connection_attempts_token1] = ACTIONS(3377), - [aux_sym_connect_timeout_token1] = ACTIONS(3377), - [aux_sym_control_master_token1] = ACTIONS(3377), - [aux_sym_control_path_token1] = ACTIONS(3377), - [aux_sym_control_persist_token1] = ACTIONS(3377), - [aux_sym_dynamic_forward_token1] = ACTIONS(3377), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3377), - [aux_sym_escape_char_token1] = ACTIONS(3377), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3377), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3377), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3377), - [aux_sym_forward_agent_token1] = ACTIONS(3377), - [aux_sym_forward_x11_token1] = ACTIONS(3379), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3377), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3377), - [aux_sym_gateway_ports_token1] = ACTIONS(3377), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3377), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3377), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3377), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3377), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3377), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3377), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3377), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3377), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3377), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3377), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3377), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3377), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3377), - [aux_sym_host_key_alias_token1] = ACTIONS(3377), - [aux_sym_hostname_token1] = ACTIONS(3377), - [aux_sym_identities_only_token1] = ACTIONS(3377), - [aux_sym_identity_agent_token1] = ACTIONS(3377), - [aux_sym_identity_file_token1] = ACTIONS(3377), - [aux_sym_ignore_unknown_token1] = ACTIONS(3377), - [aux_sym_include_token1] = ACTIONS(3377), - [aux_sym_ip_qos_token1] = ACTIONS(3377), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3377), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3377), - [aux_sym_kex_algorithms_token1] = ACTIONS(3377), - [aux_sym_known_hosts_command_token1] = ACTIONS(3377), - [aux_sym_local_command_token1] = ACTIONS(3377), - [aux_sym_local_forward_token1] = ACTIONS(3377), - [aux_sym_log_level_token1] = ACTIONS(3377), - [aux_sym_log_verbose_token1] = ACTIONS(3377), - [aux_sym_macs_token1] = ACTIONS(3377), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3377), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3377), - [aux_sym_password_authentication_token1] = ACTIONS(3377), - [aux_sym_permit_local_command_token1] = ACTIONS(3377), - [aux_sym_permit_remote_open_token1] = ACTIONS(3377), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3377), - [aux_sym_port_token1] = ACTIONS(3377), - [aux_sym_preferred_authentications_token1] = ACTIONS(3377), - [aux_sym_protocol_token1] = ACTIONS(3377), - [aux_sym_proxy_command_token1] = ACTIONS(3377), - [aux_sym_proxy_jump_token1] = ACTIONS(3377), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3377), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3377), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3377), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3377), - [aux_sym_rekey_limit_token1] = ACTIONS(3377), - [aux_sym_remote_command_token1] = ACTIONS(3377), - [aux_sym_remote_forward_token1] = ACTIONS(3377), - [aux_sym_request_tty_token1] = ACTIONS(3377), - [aux_sym_required_rsa_size_token1] = ACTIONS(3377), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3377), - [aux_sym_security_key_provider_token1] = ACTIONS(3377), - [aux_sym_send_env_token1] = ACTIONS(3377), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3377), - [aux_sym_server_alive_interval_token1] = ACTIONS(3377), - [aux_sym_session_type_token1] = ACTIONS(3377), - [aux_sym_set_env_token1] = ACTIONS(3377), - [aux_sym_stdin_null_token1] = ACTIONS(3377), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3377), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3377), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3377), - [aux_sym_syslog_facility_token1] = ACTIONS(3377), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3377), - [aux_sym_keep_alive_token1] = ACTIONS(3377), - [aux_sym_tunnel_token1] = ACTIONS(3379), - [aux_sym_tunnel_device_token1] = ACTIONS(3377), - [aux_sym_update_host_keys_token1] = ACTIONS(3377), - [aux_sym_use_keychain_token1] = ACTIONS(3377), - [aux_sym_use_roaming_token1] = ACTIONS(3377), - [aux_sym_user_token1] = ACTIONS(3379), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3377), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3377), - [aux_sym_visual_host_key_token1] = ACTIONS(3377), - [aux_sym_xauth_location_token1] = ACTIONS(3377), + [ts_builtin_sym_end] = ACTIONS(1004), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1006), + [aux_sym_match_token1] = ACTIONS(1004), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1004), + [aux_sym_address_family_token1] = ACTIONS(1004), + [aux_sym_batch_mode_token1] = ACTIONS(1004), + [aux_sym_bind_address_token1] = ACTIONS(1004), + [aux_sym_bind_interface_token1] = ACTIONS(1004), + [aux_sym_canonical_domains_token1] = ACTIONS(1004), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1004), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1004), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1004), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1004), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1004), + [aux_sym_certificate_file_token1] = ACTIONS(1004), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1004), + [aux_sym_check_host_ip_token1] = ACTIONS(1004), + [aux_sym_ciphers_token1] = ACTIONS(1004), + [aux_sym_cipher_token1] = ACTIONS(1006), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1004), + [aux_sym_compression_token1] = ACTIONS(1004), + [aux_sym_connection_attempts_token1] = ACTIONS(1004), + [aux_sym_connect_timeout_token1] = ACTIONS(1004), + [aux_sym_control_master_token1] = ACTIONS(1004), + [aux_sym_control_path_token1] = ACTIONS(1004), + [aux_sym_control_persist_token1] = ACTIONS(1004), + [aux_sym_dynamic_forward_token1] = ACTIONS(1004), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1004), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1004), + [aux_sym_escape_char_token1] = ACTIONS(1004), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1004), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1004), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1004), + [aux_sym_forward_agent_token1] = ACTIONS(1004), + [aux_sym_forward_x11_token1] = ACTIONS(1006), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1004), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1004), + [aux_sym_gateway_ports_token1] = ACTIONS(1004), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1004), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1004), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1004), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1004), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1004), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1004), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1004), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1004), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1004), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1004), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1004), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1004), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1004), + [aux_sym_host_key_alias_token1] = ACTIONS(1004), + [aux_sym_hostname_token1] = ACTIONS(1004), + [aux_sym_identities_only_token1] = ACTIONS(1004), + [aux_sym_identity_agent_token1] = ACTIONS(1004), + [aux_sym_identity_file_token1] = ACTIONS(1004), + [aux_sym_ignore_unknown_token1] = ACTIONS(1004), + [aux_sym_include_token1] = ACTIONS(1004), + [aux_sym_ip_qos_token1] = ACTIONS(1004), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1004), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1004), + [aux_sym_kex_algorithms_token1] = ACTIONS(1004), + [aux_sym_known_hosts_command_token1] = ACTIONS(1004), + [aux_sym_local_command_token1] = ACTIONS(1004), + [aux_sym_local_forward_token1] = ACTIONS(1004), + [aux_sym_log_level_token1] = ACTIONS(1004), + [aux_sym_log_verbose_token1] = ACTIONS(1004), + [aux_sym_macs_token1] = ACTIONS(1004), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1004), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1004), + [aux_sym_password_authentication_token1] = ACTIONS(1004), + [aux_sym_permit_local_command_token1] = ACTIONS(1004), + [aux_sym_permit_remote_open_token1] = ACTIONS(1004), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1004), + [aux_sym_port_token1] = ACTIONS(1004), + [aux_sym_preferred_authentications_token1] = ACTIONS(1004), + [aux_sym_protocol_token1] = ACTIONS(1004), + [aux_sym_proxy_command_token1] = ACTIONS(1004), + [aux_sym_proxy_jump_token1] = ACTIONS(1004), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1004), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1004), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1004), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1004), + [aux_sym_rekey_limit_token1] = ACTIONS(1004), + [aux_sym_remote_command_token1] = ACTIONS(1004), + [aux_sym_remote_forward_token1] = ACTIONS(1004), + [aux_sym_request_tty_token1] = ACTIONS(1004), + [aux_sym_required_rsa_size_token1] = ACTIONS(1004), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1004), + [aux_sym_security_key_provider_token1] = ACTIONS(1004), + [aux_sym_send_env_token1] = ACTIONS(1004), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1004), + [aux_sym_server_alive_interval_token1] = ACTIONS(1004), + [aux_sym_session_type_token1] = ACTIONS(1004), + [aux_sym_set_env_token1] = ACTIONS(1004), + [aux_sym_stdin_null_token1] = ACTIONS(1004), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1004), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1004), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1004), + [aux_sym_syslog_facility_token1] = ACTIONS(1004), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1004), + [aux_sym_keep_alive_token1] = ACTIONS(1004), + [aux_sym_tunnel_token1] = ACTIONS(1006), + [aux_sym_tunnel_device_token1] = ACTIONS(1004), + [aux_sym_update_host_keys_token1] = ACTIONS(1004), + [aux_sym_use_keychain_token1] = ACTIONS(1004), + [aux_sym_use_roaming_token1] = ACTIONS(1004), + [aux_sym_user_token1] = ACTIONS(1006), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1004), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1004), + [aux_sym_visual_host_key_token1] = ACTIONS(1004), + [aux_sym_xauth_location_token1] = ACTIONS(1004), }, [550] = { - [ts_builtin_sym_end] = ACTIONS(3381), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3383), - [aux_sym_match_token1] = ACTIONS(3381), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3381), - [aux_sym_address_family_token1] = ACTIONS(3381), - [aux_sym_batch_mode_token1] = ACTIONS(3381), - [aux_sym_bind_address_token1] = ACTIONS(3381), - [aux_sym_bind_interface_token1] = ACTIONS(3381), - [aux_sym_canonical_domains_token1] = ACTIONS(3381), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3381), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3381), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3381), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3381), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3381), - [aux_sym_certificate_file_token1] = ACTIONS(3381), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3381), - [aux_sym_check_host_ip_token1] = ACTIONS(3381), - [aux_sym_ciphers_token1] = ACTIONS(3381), - [aux_sym_cipher_token1] = ACTIONS(3383), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3381), - [aux_sym_compression_token1] = ACTIONS(3381), - [aux_sym_connection_attempts_token1] = ACTIONS(3381), - [aux_sym_connect_timeout_token1] = ACTIONS(3381), - [aux_sym_control_master_token1] = ACTIONS(3381), - [aux_sym_control_path_token1] = ACTIONS(3381), - [aux_sym_control_persist_token1] = ACTIONS(3381), - [aux_sym_dynamic_forward_token1] = ACTIONS(3381), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3381), - [aux_sym_escape_char_token1] = ACTIONS(3381), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3381), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3381), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3381), - [aux_sym_forward_agent_token1] = ACTIONS(3381), - [aux_sym_forward_x11_token1] = ACTIONS(3383), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3381), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3381), - [aux_sym_gateway_ports_token1] = ACTIONS(3381), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3381), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3381), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3381), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3381), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3381), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3381), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3381), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3381), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3381), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3381), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3381), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3381), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3381), - [aux_sym_host_key_alias_token1] = ACTIONS(3381), - [aux_sym_hostname_token1] = ACTIONS(3381), - [aux_sym_identities_only_token1] = ACTIONS(3381), - [aux_sym_identity_agent_token1] = ACTIONS(3381), - [aux_sym_identity_file_token1] = ACTIONS(3381), - [aux_sym_ignore_unknown_token1] = ACTIONS(3381), - [aux_sym_include_token1] = ACTIONS(3381), - [aux_sym_ip_qos_token1] = ACTIONS(3381), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3381), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3381), - [aux_sym_kex_algorithms_token1] = ACTIONS(3381), - [aux_sym_known_hosts_command_token1] = ACTIONS(3381), - [aux_sym_local_command_token1] = ACTIONS(3381), - [aux_sym_local_forward_token1] = ACTIONS(3381), - [aux_sym_log_level_token1] = ACTIONS(3381), - [aux_sym_log_verbose_token1] = ACTIONS(3381), - [aux_sym_macs_token1] = ACTIONS(3381), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3381), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3381), - [aux_sym_password_authentication_token1] = ACTIONS(3381), - [aux_sym_permit_local_command_token1] = ACTIONS(3381), - [aux_sym_permit_remote_open_token1] = ACTIONS(3381), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3381), - [aux_sym_port_token1] = ACTIONS(3381), - [aux_sym_preferred_authentications_token1] = ACTIONS(3381), - [aux_sym_protocol_token1] = ACTIONS(3381), - [aux_sym_proxy_command_token1] = ACTIONS(3381), - [aux_sym_proxy_jump_token1] = ACTIONS(3381), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3381), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3381), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3381), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3381), - [aux_sym_rekey_limit_token1] = ACTIONS(3381), - [aux_sym_remote_command_token1] = ACTIONS(3381), - [aux_sym_remote_forward_token1] = ACTIONS(3381), - [aux_sym_request_tty_token1] = ACTIONS(3381), - [aux_sym_required_rsa_size_token1] = ACTIONS(3381), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3381), - [aux_sym_security_key_provider_token1] = ACTIONS(3381), - [aux_sym_send_env_token1] = ACTIONS(3381), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3381), - [aux_sym_server_alive_interval_token1] = ACTIONS(3381), - [aux_sym_session_type_token1] = ACTIONS(3381), - [aux_sym_set_env_token1] = ACTIONS(3381), - [aux_sym_stdin_null_token1] = ACTIONS(3381), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3381), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3381), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3381), - [aux_sym_syslog_facility_token1] = ACTIONS(3381), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3381), - [aux_sym_keep_alive_token1] = ACTIONS(3381), - [aux_sym_tunnel_token1] = ACTIONS(3383), - [aux_sym_tunnel_device_token1] = ACTIONS(3381), - [aux_sym_update_host_keys_token1] = ACTIONS(3381), - [aux_sym_use_keychain_token1] = ACTIONS(3381), - [aux_sym_use_roaming_token1] = ACTIONS(3381), - [aux_sym_user_token1] = ACTIONS(3383), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3381), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3381), - [aux_sym_visual_host_key_token1] = ACTIONS(3381), - [aux_sym_xauth_location_token1] = ACTIONS(3381), + [ts_builtin_sym_end] = ACTIONS(3252), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3254), + [aux_sym_match_token1] = ACTIONS(3252), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3252), + [aux_sym_address_family_token1] = ACTIONS(3252), + [aux_sym_batch_mode_token1] = ACTIONS(3252), + [aux_sym_bind_address_token1] = ACTIONS(3252), + [aux_sym_bind_interface_token1] = ACTIONS(3252), + [aux_sym_canonical_domains_token1] = ACTIONS(3252), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3252), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3252), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3252), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3252), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3252), + [aux_sym_certificate_file_token1] = ACTIONS(3252), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3252), + [aux_sym_check_host_ip_token1] = ACTIONS(3252), + [aux_sym_ciphers_token1] = ACTIONS(3252), + [aux_sym_cipher_token1] = ACTIONS(3254), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3252), + [aux_sym_compression_token1] = ACTIONS(3252), + [aux_sym_connection_attempts_token1] = ACTIONS(3252), + [aux_sym_connect_timeout_token1] = ACTIONS(3252), + [aux_sym_control_master_token1] = ACTIONS(3252), + [aux_sym_control_path_token1] = ACTIONS(3252), + [aux_sym_control_persist_token1] = ACTIONS(3252), + [aux_sym_dynamic_forward_token1] = ACTIONS(3252), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3252), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3252), + [aux_sym_escape_char_token1] = ACTIONS(3252), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3252), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3252), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3252), + [aux_sym_forward_agent_token1] = ACTIONS(3252), + [aux_sym_forward_x11_token1] = ACTIONS(3254), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3252), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3252), + [aux_sym_gateway_ports_token1] = ACTIONS(3252), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3252), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3252), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3252), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3252), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3252), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3252), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3252), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3252), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3252), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3252), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3252), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3252), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3252), + [aux_sym_host_key_alias_token1] = ACTIONS(3252), + [aux_sym_hostname_token1] = ACTIONS(3252), + [aux_sym_identities_only_token1] = ACTIONS(3252), + [aux_sym_identity_agent_token1] = ACTIONS(3252), + [aux_sym_identity_file_token1] = ACTIONS(3252), + [aux_sym_ignore_unknown_token1] = ACTIONS(3252), + [aux_sym_include_token1] = ACTIONS(3252), + [aux_sym_ip_qos_token1] = ACTIONS(3252), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3252), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3252), + [aux_sym_kex_algorithms_token1] = ACTIONS(3252), + [aux_sym_known_hosts_command_token1] = ACTIONS(3252), + [aux_sym_local_command_token1] = ACTIONS(3252), + [aux_sym_local_forward_token1] = ACTIONS(3252), + [aux_sym_log_level_token1] = ACTIONS(3252), + [aux_sym_log_verbose_token1] = ACTIONS(3252), + [aux_sym_macs_token1] = ACTIONS(3252), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3252), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3252), + [aux_sym_password_authentication_token1] = ACTIONS(3252), + [aux_sym_permit_local_command_token1] = ACTIONS(3252), + [aux_sym_permit_remote_open_token1] = ACTIONS(3252), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3252), + [aux_sym_port_token1] = ACTIONS(3252), + [aux_sym_preferred_authentications_token1] = ACTIONS(3252), + [aux_sym_protocol_token1] = ACTIONS(3252), + [aux_sym_proxy_command_token1] = ACTIONS(3252), + [aux_sym_proxy_jump_token1] = ACTIONS(3252), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3252), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3252), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3252), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3252), + [aux_sym_rekey_limit_token1] = ACTIONS(3252), + [aux_sym_remote_command_token1] = ACTIONS(3252), + [aux_sym_remote_forward_token1] = ACTIONS(3252), + [aux_sym_request_tty_token1] = ACTIONS(3252), + [aux_sym_required_rsa_size_token1] = ACTIONS(3252), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3252), + [aux_sym_security_key_provider_token1] = ACTIONS(3252), + [aux_sym_send_env_token1] = ACTIONS(3252), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3252), + [aux_sym_server_alive_interval_token1] = ACTIONS(3252), + [aux_sym_session_type_token1] = ACTIONS(3252), + [aux_sym_set_env_token1] = ACTIONS(3252), + [aux_sym_stdin_null_token1] = ACTIONS(3252), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3252), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3252), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3252), + [aux_sym_syslog_facility_token1] = ACTIONS(3252), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3252), + [aux_sym_keep_alive_token1] = ACTIONS(3252), + [aux_sym_tunnel_token1] = ACTIONS(3254), + [aux_sym_tunnel_device_token1] = ACTIONS(3252), + [aux_sym_update_host_keys_token1] = ACTIONS(3252), + [aux_sym_use_keychain_token1] = ACTIONS(3252), + [aux_sym_use_roaming_token1] = ACTIONS(3252), + [aux_sym_user_token1] = ACTIONS(3254), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3252), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3252), + [aux_sym_visual_host_key_token1] = ACTIONS(3252), + [aux_sym_xauth_location_token1] = ACTIONS(3252), }, [551] = { - [ts_builtin_sym_end] = ACTIONS(3385), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3387), - [aux_sym_match_token1] = ACTIONS(3385), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3385), - [aux_sym_address_family_token1] = ACTIONS(3385), - [aux_sym_batch_mode_token1] = ACTIONS(3385), - [aux_sym_bind_address_token1] = ACTIONS(3385), - [aux_sym_bind_interface_token1] = ACTIONS(3385), - [aux_sym_canonical_domains_token1] = ACTIONS(3385), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3385), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3385), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3385), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3385), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3385), - [aux_sym_certificate_file_token1] = ACTIONS(3385), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3385), - [aux_sym_check_host_ip_token1] = ACTIONS(3385), - [aux_sym_ciphers_token1] = ACTIONS(3385), - [aux_sym_cipher_token1] = ACTIONS(3387), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3385), - [aux_sym_compression_token1] = ACTIONS(3385), - [aux_sym_connection_attempts_token1] = ACTIONS(3385), - [aux_sym_connect_timeout_token1] = ACTIONS(3385), - [aux_sym_control_master_token1] = ACTIONS(3385), - [aux_sym_control_path_token1] = ACTIONS(3385), - [aux_sym_control_persist_token1] = ACTIONS(3385), - [aux_sym_dynamic_forward_token1] = ACTIONS(3385), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3385), - [aux_sym_escape_char_token1] = ACTIONS(3385), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3385), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3385), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3385), - [aux_sym_forward_agent_token1] = ACTIONS(3385), - [aux_sym_forward_x11_token1] = ACTIONS(3387), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3385), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3385), - [aux_sym_gateway_ports_token1] = ACTIONS(3385), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3385), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3385), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3385), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3385), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3385), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3385), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3385), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3385), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3385), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3385), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3385), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3385), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3385), - [aux_sym_host_key_alias_token1] = ACTIONS(3385), - [aux_sym_hostname_token1] = ACTIONS(3385), - [aux_sym_identities_only_token1] = ACTIONS(3385), - [aux_sym_identity_agent_token1] = ACTIONS(3385), - [aux_sym_identity_file_token1] = ACTIONS(3385), - [aux_sym_ignore_unknown_token1] = ACTIONS(3385), - [aux_sym_include_token1] = ACTIONS(3385), - [aux_sym_ip_qos_token1] = ACTIONS(3385), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3385), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3385), - [aux_sym_kex_algorithms_token1] = ACTIONS(3385), - [aux_sym_known_hosts_command_token1] = ACTIONS(3385), - [aux_sym_local_command_token1] = ACTIONS(3385), - [aux_sym_local_forward_token1] = ACTIONS(3385), - [aux_sym_log_level_token1] = ACTIONS(3385), - [aux_sym_log_verbose_token1] = ACTIONS(3385), - [aux_sym_macs_token1] = ACTIONS(3385), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3385), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3385), - [aux_sym_password_authentication_token1] = ACTIONS(3385), - [aux_sym_permit_local_command_token1] = ACTIONS(3385), - [aux_sym_permit_remote_open_token1] = ACTIONS(3385), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3385), - [aux_sym_port_token1] = ACTIONS(3385), - [aux_sym_preferred_authentications_token1] = ACTIONS(3385), - [aux_sym_protocol_token1] = ACTIONS(3385), - [aux_sym_proxy_command_token1] = ACTIONS(3385), - [aux_sym_proxy_jump_token1] = ACTIONS(3385), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3385), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3385), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3385), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3385), - [aux_sym_rekey_limit_token1] = ACTIONS(3385), - [aux_sym_remote_command_token1] = ACTIONS(3385), - [aux_sym_remote_forward_token1] = ACTIONS(3385), - [aux_sym_request_tty_token1] = ACTIONS(3385), - [aux_sym_required_rsa_size_token1] = ACTIONS(3385), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3385), - [aux_sym_security_key_provider_token1] = ACTIONS(3385), - [aux_sym_send_env_token1] = ACTIONS(3385), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3385), - [aux_sym_server_alive_interval_token1] = ACTIONS(3385), - [aux_sym_session_type_token1] = ACTIONS(3385), - [aux_sym_set_env_token1] = ACTIONS(3385), - [aux_sym_stdin_null_token1] = ACTIONS(3385), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3385), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3385), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3385), - [aux_sym_syslog_facility_token1] = ACTIONS(3385), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3385), - [aux_sym_keep_alive_token1] = ACTIONS(3385), - [aux_sym_tunnel_token1] = ACTIONS(3387), - [aux_sym_tunnel_device_token1] = ACTIONS(3385), - [aux_sym_update_host_keys_token1] = ACTIONS(3385), - [aux_sym_use_keychain_token1] = ACTIONS(3385), - [aux_sym_use_roaming_token1] = ACTIONS(3385), - [aux_sym_user_token1] = ACTIONS(3387), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3385), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3385), - [aux_sym_visual_host_key_token1] = ACTIONS(3385), - [aux_sym_xauth_location_token1] = ACTIONS(3385), + [ts_builtin_sym_end] = ACTIONS(3256), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3258), + [aux_sym_match_token1] = ACTIONS(3256), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3256), + [aux_sym_address_family_token1] = ACTIONS(3256), + [aux_sym_batch_mode_token1] = ACTIONS(3256), + [aux_sym_bind_address_token1] = ACTIONS(3256), + [aux_sym_bind_interface_token1] = ACTIONS(3256), + [aux_sym_canonical_domains_token1] = ACTIONS(3256), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3256), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3256), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3256), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3256), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3256), + [aux_sym_certificate_file_token1] = ACTIONS(3256), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3256), + [aux_sym_check_host_ip_token1] = ACTIONS(3256), + [aux_sym_ciphers_token1] = ACTIONS(3256), + [aux_sym_cipher_token1] = ACTIONS(3258), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3256), + [aux_sym_compression_token1] = ACTIONS(3256), + [aux_sym_connection_attempts_token1] = ACTIONS(3256), + [aux_sym_connect_timeout_token1] = ACTIONS(3256), + [aux_sym_control_master_token1] = ACTIONS(3256), + [aux_sym_control_path_token1] = ACTIONS(3256), + [aux_sym_control_persist_token1] = ACTIONS(3256), + [aux_sym_dynamic_forward_token1] = ACTIONS(3256), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3256), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3256), + [aux_sym_escape_char_token1] = ACTIONS(3256), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3256), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3256), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3256), + [aux_sym_forward_agent_token1] = ACTIONS(3256), + [aux_sym_forward_x11_token1] = ACTIONS(3258), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3256), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3256), + [aux_sym_gateway_ports_token1] = ACTIONS(3256), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3256), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3256), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3256), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3256), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3256), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3256), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3256), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3256), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3256), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3256), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3256), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3256), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3256), + [aux_sym_host_key_alias_token1] = ACTIONS(3256), + [aux_sym_hostname_token1] = ACTIONS(3256), + [aux_sym_identities_only_token1] = ACTIONS(3256), + [aux_sym_identity_agent_token1] = ACTIONS(3256), + [aux_sym_identity_file_token1] = ACTIONS(3256), + [aux_sym_ignore_unknown_token1] = ACTIONS(3256), + [aux_sym_include_token1] = ACTIONS(3256), + [aux_sym_ip_qos_token1] = ACTIONS(3256), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3256), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3256), + [aux_sym_kex_algorithms_token1] = ACTIONS(3256), + [aux_sym_known_hosts_command_token1] = ACTIONS(3256), + [aux_sym_local_command_token1] = ACTIONS(3256), + [aux_sym_local_forward_token1] = ACTIONS(3256), + [aux_sym_log_level_token1] = ACTIONS(3256), + [aux_sym_log_verbose_token1] = ACTIONS(3256), + [aux_sym_macs_token1] = ACTIONS(3256), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3256), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3256), + [aux_sym_password_authentication_token1] = ACTIONS(3256), + [aux_sym_permit_local_command_token1] = ACTIONS(3256), + [aux_sym_permit_remote_open_token1] = ACTIONS(3256), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3256), + [aux_sym_port_token1] = ACTIONS(3256), + [aux_sym_preferred_authentications_token1] = ACTIONS(3256), + [aux_sym_protocol_token1] = ACTIONS(3256), + [aux_sym_proxy_command_token1] = ACTIONS(3256), + [aux_sym_proxy_jump_token1] = ACTIONS(3256), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3256), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3256), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3256), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3256), + [aux_sym_rekey_limit_token1] = ACTIONS(3256), + [aux_sym_remote_command_token1] = ACTIONS(3256), + [aux_sym_remote_forward_token1] = ACTIONS(3256), + [aux_sym_request_tty_token1] = ACTIONS(3256), + [aux_sym_required_rsa_size_token1] = ACTIONS(3256), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3256), + [aux_sym_security_key_provider_token1] = ACTIONS(3256), + [aux_sym_send_env_token1] = ACTIONS(3256), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3256), + [aux_sym_server_alive_interval_token1] = ACTIONS(3256), + [aux_sym_session_type_token1] = ACTIONS(3256), + [aux_sym_set_env_token1] = ACTIONS(3256), + [aux_sym_stdin_null_token1] = ACTIONS(3256), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3256), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3256), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3256), + [aux_sym_syslog_facility_token1] = ACTIONS(3256), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3256), + [aux_sym_keep_alive_token1] = ACTIONS(3256), + [aux_sym_tunnel_token1] = ACTIONS(3258), + [aux_sym_tunnel_device_token1] = ACTIONS(3256), + [aux_sym_update_host_keys_token1] = ACTIONS(3256), + [aux_sym_use_keychain_token1] = ACTIONS(3256), + [aux_sym_use_roaming_token1] = ACTIONS(3256), + [aux_sym_user_token1] = ACTIONS(3258), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3256), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3256), + [aux_sym_visual_host_key_token1] = ACTIONS(3256), + [aux_sym_xauth_location_token1] = ACTIONS(3256), }, [552] = { - [ts_builtin_sym_end] = ACTIONS(3389), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3391), - [aux_sym_match_token1] = ACTIONS(3389), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3389), - [aux_sym_address_family_token1] = ACTIONS(3389), - [aux_sym_batch_mode_token1] = ACTIONS(3389), - [aux_sym_bind_address_token1] = ACTIONS(3389), - [aux_sym_bind_interface_token1] = ACTIONS(3389), - [aux_sym_canonical_domains_token1] = ACTIONS(3389), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3389), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3389), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3389), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3389), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3389), - [aux_sym_certificate_file_token1] = ACTIONS(3389), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3389), - [aux_sym_check_host_ip_token1] = ACTIONS(3389), - [aux_sym_ciphers_token1] = ACTIONS(3389), - [aux_sym_cipher_token1] = ACTIONS(3391), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3389), - [aux_sym_compression_token1] = ACTIONS(3389), - [aux_sym_connection_attempts_token1] = ACTIONS(3389), - [aux_sym_connect_timeout_token1] = ACTIONS(3389), - [aux_sym_control_master_token1] = ACTIONS(3389), - [aux_sym_control_path_token1] = ACTIONS(3389), - [aux_sym_control_persist_token1] = ACTIONS(3389), - [aux_sym_dynamic_forward_token1] = ACTIONS(3389), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3389), - [aux_sym_escape_char_token1] = ACTIONS(3389), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3389), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3389), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3389), - [aux_sym_forward_agent_token1] = ACTIONS(3389), - [aux_sym_forward_x11_token1] = ACTIONS(3391), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3389), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3389), - [aux_sym_gateway_ports_token1] = ACTIONS(3389), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3389), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3389), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3389), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3389), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3389), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3389), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3389), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3389), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3389), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3389), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3389), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3389), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3389), - [aux_sym_host_key_alias_token1] = ACTIONS(3389), - [aux_sym_hostname_token1] = ACTIONS(3389), - [aux_sym_identities_only_token1] = ACTIONS(3389), - [aux_sym_identity_agent_token1] = ACTIONS(3389), - [aux_sym_identity_file_token1] = ACTIONS(3389), - [aux_sym_ignore_unknown_token1] = ACTIONS(3389), - [aux_sym_include_token1] = ACTIONS(3389), - [aux_sym_ip_qos_token1] = ACTIONS(3389), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3389), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3389), - [aux_sym_kex_algorithms_token1] = ACTIONS(3389), - [aux_sym_known_hosts_command_token1] = ACTIONS(3389), - [aux_sym_local_command_token1] = ACTIONS(3389), - [aux_sym_local_forward_token1] = ACTIONS(3389), - [aux_sym_log_level_token1] = ACTIONS(3389), - [aux_sym_log_verbose_token1] = ACTIONS(3389), - [aux_sym_macs_token1] = ACTIONS(3389), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3389), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3389), - [aux_sym_password_authentication_token1] = ACTIONS(3389), - [aux_sym_permit_local_command_token1] = ACTIONS(3389), - [aux_sym_permit_remote_open_token1] = ACTIONS(3389), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3389), - [aux_sym_port_token1] = ACTIONS(3389), - [aux_sym_preferred_authentications_token1] = ACTIONS(3389), - [aux_sym_protocol_token1] = ACTIONS(3389), - [aux_sym_proxy_command_token1] = ACTIONS(3389), - [aux_sym_proxy_jump_token1] = ACTIONS(3389), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3389), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3389), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3389), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3389), - [aux_sym_rekey_limit_token1] = ACTIONS(3389), - [aux_sym_remote_command_token1] = ACTIONS(3389), - [aux_sym_remote_forward_token1] = ACTIONS(3389), - [aux_sym_request_tty_token1] = ACTIONS(3389), - [aux_sym_required_rsa_size_token1] = ACTIONS(3389), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3389), - [aux_sym_security_key_provider_token1] = ACTIONS(3389), - [aux_sym_send_env_token1] = ACTIONS(3389), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3389), - [aux_sym_server_alive_interval_token1] = ACTIONS(3389), - [aux_sym_session_type_token1] = ACTIONS(3389), - [aux_sym_set_env_token1] = ACTIONS(3389), - [aux_sym_stdin_null_token1] = ACTIONS(3389), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3389), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3389), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3389), - [aux_sym_syslog_facility_token1] = ACTIONS(3389), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3389), - [aux_sym_keep_alive_token1] = ACTIONS(3389), - [aux_sym_tunnel_token1] = ACTIONS(3391), - [aux_sym_tunnel_device_token1] = ACTIONS(3389), - [aux_sym_update_host_keys_token1] = ACTIONS(3389), - [aux_sym_use_keychain_token1] = ACTIONS(3389), - [aux_sym_use_roaming_token1] = ACTIONS(3389), - [aux_sym_user_token1] = ACTIONS(3391), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3389), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3389), - [aux_sym_visual_host_key_token1] = ACTIONS(3389), - [aux_sym_xauth_location_token1] = ACTIONS(3389), + [ts_builtin_sym_end] = ACTIONS(3260), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3262), + [aux_sym_match_token1] = ACTIONS(3260), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3260), + [aux_sym_address_family_token1] = ACTIONS(3260), + [aux_sym_batch_mode_token1] = ACTIONS(3260), + [aux_sym_bind_address_token1] = ACTIONS(3260), + [aux_sym_bind_interface_token1] = ACTIONS(3260), + [aux_sym_canonical_domains_token1] = ACTIONS(3260), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3260), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3260), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3260), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3260), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3260), + [aux_sym_certificate_file_token1] = ACTIONS(3260), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3260), + [aux_sym_check_host_ip_token1] = ACTIONS(3260), + [aux_sym_ciphers_token1] = ACTIONS(3260), + [aux_sym_cipher_token1] = ACTIONS(3262), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3260), + [aux_sym_compression_token1] = ACTIONS(3260), + [aux_sym_connection_attempts_token1] = ACTIONS(3260), + [aux_sym_connect_timeout_token1] = ACTIONS(3260), + [aux_sym_control_master_token1] = ACTIONS(3260), + [aux_sym_control_path_token1] = ACTIONS(3260), + [aux_sym_control_persist_token1] = ACTIONS(3260), + [aux_sym_dynamic_forward_token1] = ACTIONS(3260), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3260), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3260), + [aux_sym_escape_char_token1] = ACTIONS(3260), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3260), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3260), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3260), + [aux_sym_forward_agent_token1] = ACTIONS(3260), + [aux_sym_forward_x11_token1] = ACTIONS(3262), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3260), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3260), + [aux_sym_gateway_ports_token1] = ACTIONS(3260), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3260), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3260), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3260), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3260), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3260), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3260), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3260), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3260), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3260), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3260), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3260), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3260), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3260), + [aux_sym_host_key_alias_token1] = ACTIONS(3260), + [aux_sym_hostname_token1] = ACTIONS(3260), + [aux_sym_identities_only_token1] = ACTIONS(3260), + [aux_sym_identity_agent_token1] = ACTIONS(3260), + [aux_sym_identity_file_token1] = ACTIONS(3260), + [aux_sym_ignore_unknown_token1] = ACTIONS(3260), + [aux_sym_include_token1] = ACTIONS(3260), + [aux_sym_ip_qos_token1] = ACTIONS(3260), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3260), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3260), + [aux_sym_kex_algorithms_token1] = ACTIONS(3260), + [aux_sym_known_hosts_command_token1] = ACTIONS(3260), + [aux_sym_local_command_token1] = ACTIONS(3260), + [aux_sym_local_forward_token1] = ACTIONS(3260), + [aux_sym_log_level_token1] = ACTIONS(3260), + [aux_sym_log_verbose_token1] = ACTIONS(3260), + [aux_sym_macs_token1] = ACTIONS(3260), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3260), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3260), + [aux_sym_password_authentication_token1] = ACTIONS(3260), + [aux_sym_permit_local_command_token1] = ACTIONS(3260), + [aux_sym_permit_remote_open_token1] = ACTIONS(3260), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3260), + [aux_sym_port_token1] = ACTIONS(3260), + [aux_sym_preferred_authentications_token1] = ACTIONS(3260), + [aux_sym_protocol_token1] = ACTIONS(3260), + [aux_sym_proxy_command_token1] = ACTIONS(3260), + [aux_sym_proxy_jump_token1] = ACTIONS(3260), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3260), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3260), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3260), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3260), + [aux_sym_rekey_limit_token1] = ACTIONS(3260), + [aux_sym_remote_command_token1] = ACTIONS(3260), + [aux_sym_remote_forward_token1] = ACTIONS(3260), + [aux_sym_request_tty_token1] = ACTIONS(3260), + [aux_sym_required_rsa_size_token1] = ACTIONS(3260), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3260), + [aux_sym_security_key_provider_token1] = ACTIONS(3260), + [aux_sym_send_env_token1] = ACTIONS(3260), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3260), + [aux_sym_server_alive_interval_token1] = ACTIONS(3260), + [aux_sym_session_type_token1] = ACTIONS(3260), + [aux_sym_set_env_token1] = ACTIONS(3260), + [aux_sym_stdin_null_token1] = ACTIONS(3260), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3260), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3260), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3260), + [aux_sym_syslog_facility_token1] = ACTIONS(3260), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3260), + [aux_sym_keep_alive_token1] = ACTIONS(3260), + [aux_sym_tunnel_token1] = ACTIONS(3262), + [aux_sym_tunnel_device_token1] = ACTIONS(3260), + [aux_sym_update_host_keys_token1] = ACTIONS(3260), + [aux_sym_use_keychain_token1] = ACTIONS(3260), + [aux_sym_use_roaming_token1] = ACTIONS(3260), + [aux_sym_user_token1] = ACTIONS(3262), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3260), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3260), + [aux_sym_visual_host_key_token1] = ACTIONS(3260), + [aux_sym_xauth_location_token1] = ACTIONS(3260), }, [553] = { - [ts_builtin_sym_end] = ACTIONS(3393), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3395), - [aux_sym_match_token1] = ACTIONS(3393), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3393), - [aux_sym_address_family_token1] = ACTIONS(3393), - [aux_sym_batch_mode_token1] = ACTIONS(3393), - [aux_sym_bind_address_token1] = ACTIONS(3393), - [aux_sym_bind_interface_token1] = ACTIONS(3393), - [aux_sym_canonical_domains_token1] = ACTIONS(3393), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3393), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3393), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3393), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3393), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3393), - [aux_sym_certificate_file_token1] = ACTIONS(3393), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3393), - [aux_sym_check_host_ip_token1] = ACTIONS(3393), - [aux_sym_ciphers_token1] = ACTIONS(3393), - [aux_sym_cipher_token1] = ACTIONS(3395), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3393), - [aux_sym_compression_token1] = ACTIONS(3393), - [aux_sym_connection_attempts_token1] = ACTIONS(3393), - [aux_sym_connect_timeout_token1] = ACTIONS(3393), - [aux_sym_control_master_token1] = ACTIONS(3393), - [aux_sym_control_path_token1] = ACTIONS(3393), - [aux_sym_control_persist_token1] = ACTIONS(3393), - [aux_sym_dynamic_forward_token1] = ACTIONS(3393), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3393), - [aux_sym_escape_char_token1] = ACTIONS(3393), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3393), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3393), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3393), - [aux_sym_forward_agent_token1] = ACTIONS(3393), - [aux_sym_forward_x11_token1] = ACTIONS(3395), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3393), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3393), - [aux_sym_gateway_ports_token1] = ACTIONS(3393), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3393), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3393), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3393), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3393), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3393), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3393), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3393), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3393), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3393), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3393), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3393), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3393), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3393), - [aux_sym_host_key_alias_token1] = ACTIONS(3393), - [aux_sym_hostname_token1] = ACTIONS(3393), - [aux_sym_identities_only_token1] = ACTIONS(3393), - [aux_sym_identity_agent_token1] = ACTIONS(3393), - [aux_sym_identity_file_token1] = ACTIONS(3393), - [aux_sym_ignore_unknown_token1] = ACTIONS(3393), - [aux_sym_include_token1] = ACTIONS(3393), - [aux_sym_ip_qos_token1] = ACTIONS(3393), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3393), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3393), - [aux_sym_kex_algorithms_token1] = ACTIONS(3393), - [aux_sym_known_hosts_command_token1] = ACTIONS(3393), - [aux_sym_local_command_token1] = ACTIONS(3393), - [aux_sym_local_forward_token1] = ACTIONS(3393), - [aux_sym_log_level_token1] = ACTIONS(3393), - [aux_sym_log_verbose_token1] = ACTIONS(3393), - [aux_sym_macs_token1] = ACTIONS(3393), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3393), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3393), - [aux_sym_password_authentication_token1] = ACTIONS(3393), - [aux_sym_permit_local_command_token1] = ACTIONS(3393), - [aux_sym_permit_remote_open_token1] = ACTIONS(3393), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3393), - [aux_sym_port_token1] = ACTIONS(3393), - [aux_sym_preferred_authentications_token1] = ACTIONS(3393), - [aux_sym_protocol_token1] = ACTIONS(3393), - [aux_sym_proxy_command_token1] = ACTIONS(3393), - [aux_sym_proxy_jump_token1] = ACTIONS(3393), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3393), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3393), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3393), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3393), - [aux_sym_rekey_limit_token1] = ACTIONS(3393), - [aux_sym_remote_command_token1] = ACTIONS(3393), - [aux_sym_remote_forward_token1] = ACTIONS(3393), - [aux_sym_request_tty_token1] = ACTIONS(3393), - [aux_sym_required_rsa_size_token1] = ACTIONS(3393), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3393), - [aux_sym_security_key_provider_token1] = ACTIONS(3393), - [aux_sym_send_env_token1] = ACTIONS(3393), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3393), - [aux_sym_server_alive_interval_token1] = ACTIONS(3393), - [aux_sym_session_type_token1] = ACTIONS(3393), - [aux_sym_set_env_token1] = ACTIONS(3393), - [aux_sym_stdin_null_token1] = ACTIONS(3393), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3393), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3393), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3393), - [aux_sym_syslog_facility_token1] = ACTIONS(3393), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3393), - [aux_sym_keep_alive_token1] = ACTIONS(3393), - [aux_sym_tunnel_token1] = ACTIONS(3395), - [aux_sym_tunnel_device_token1] = ACTIONS(3393), - [aux_sym_update_host_keys_token1] = ACTIONS(3393), - [aux_sym_use_keychain_token1] = ACTIONS(3393), - [aux_sym_use_roaming_token1] = ACTIONS(3393), - [aux_sym_user_token1] = ACTIONS(3395), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3393), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3393), - [aux_sym_visual_host_key_token1] = ACTIONS(3393), - [aux_sym_xauth_location_token1] = ACTIONS(3393), + [ts_builtin_sym_end] = ACTIONS(1250), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1252), + [aux_sym_match_token1] = ACTIONS(1250), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1250), + [aux_sym_address_family_token1] = ACTIONS(1250), + [aux_sym_batch_mode_token1] = ACTIONS(1250), + [aux_sym_bind_address_token1] = ACTIONS(1250), + [aux_sym_bind_interface_token1] = ACTIONS(1250), + [aux_sym_canonical_domains_token1] = ACTIONS(1250), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1250), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1250), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1250), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1250), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1250), + [aux_sym_certificate_file_token1] = ACTIONS(1250), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1250), + [aux_sym_check_host_ip_token1] = ACTIONS(1250), + [aux_sym_ciphers_token1] = ACTIONS(1250), + [aux_sym_cipher_token1] = ACTIONS(1252), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1250), + [aux_sym_compression_token1] = ACTIONS(1250), + [aux_sym_connection_attempts_token1] = ACTIONS(1250), + [aux_sym_connect_timeout_token1] = ACTIONS(1250), + [aux_sym_control_master_token1] = ACTIONS(1250), + [aux_sym_control_path_token1] = ACTIONS(1250), + [aux_sym_control_persist_token1] = ACTIONS(1250), + [aux_sym_dynamic_forward_token1] = ACTIONS(1250), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1250), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1250), + [aux_sym_escape_char_token1] = ACTIONS(1250), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1250), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1250), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1250), + [aux_sym_forward_agent_token1] = ACTIONS(1250), + [aux_sym_forward_x11_token1] = ACTIONS(1252), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1250), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1250), + [aux_sym_gateway_ports_token1] = ACTIONS(1250), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1250), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1250), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1250), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1250), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1250), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1250), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1250), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1250), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1250), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1250), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1250), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1250), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1250), + [aux_sym_host_key_alias_token1] = ACTIONS(1250), + [aux_sym_hostname_token1] = ACTIONS(1250), + [aux_sym_identities_only_token1] = ACTIONS(1250), + [aux_sym_identity_agent_token1] = ACTIONS(1250), + [aux_sym_identity_file_token1] = ACTIONS(1250), + [aux_sym_ignore_unknown_token1] = ACTIONS(1250), + [aux_sym_include_token1] = ACTIONS(1250), + [aux_sym_ip_qos_token1] = ACTIONS(1250), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1250), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1250), + [aux_sym_kex_algorithms_token1] = ACTIONS(1250), + [aux_sym_known_hosts_command_token1] = ACTIONS(1250), + [aux_sym_local_command_token1] = ACTIONS(1250), + [aux_sym_local_forward_token1] = ACTIONS(1250), + [aux_sym_log_level_token1] = ACTIONS(1250), + [aux_sym_log_verbose_token1] = ACTIONS(1250), + [aux_sym_macs_token1] = ACTIONS(1250), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1250), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1250), + [aux_sym_password_authentication_token1] = ACTIONS(1250), + [aux_sym_permit_local_command_token1] = ACTIONS(1250), + [aux_sym_permit_remote_open_token1] = ACTIONS(1250), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1250), + [aux_sym_port_token1] = ACTIONS(1250), + [aux_sym_preferred_authentications_token1] = ACTIONS(1250), + [aux_sym_protocol_token1] = ACTIONS(1250), + [aux_sym_proxy_command_token1] = ACTIONS(1250), + [aux_sym_proxy_jump_token1] = ACTIONS(1250), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1250), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1250), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1250), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1250), + [aux_sym_rekey_limit_token1] = ACTIONS(1250), + [aux_sym_remote_command_token1] = ACTIONS(1250), + [aux_sym_remote_forward_token1] = ACTIONS(1250), + [aux_sym_request_tty_token1] = ACTIONS(1250), + [aux_sym_required_rsa_size_token1] = ACTIONS(1250), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1250), + [aux_sym_security_key_provider_token1] = ACTIONS(1250), + [aux_sym_send_env_token1] = ACTIONS(1250), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1250), + [aux_sym_server_alive_interval_token1] = ACTIONS(1250), + [aux_sym_session_type_token1] = ACTIONS(1250), + [aux_sym_set_env_token1] = ACTIONS(1250), + [aux_sym_stdin_null_token1] = ACTIONS(1250), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1250), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1250), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1250), + [aux_sym_syslog_facility_token1] = ACTIONS(1250), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1250), + [aux_sym_keep_alive_token1] = ACTIONS(1250), + [aux_sym_tunnel_token1] = ACTIONS(1252), + [aux_sym_tunnel_device_token1] = ACTIONS(1250), + [aux_sym_update_host_keys_token1] = ACTIONS(1250), + [aux_sym_use_keychain_token1] = ACTIONS(1250), + [aux_sym_use_roaming_token1] = ACTIONS(1250), + [aux_sym_user_token1] = ACTIONS(1252), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1250), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1250), + [aux_sym_visual_host_key_token1] = ACTIONS(1250), + [aux_sym_xauth_location_token1] = ACTIONS(1250), }, [554] = { - [ts_builtin_sym_end] = ACTIONS(3397), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3399), - [aux_sym_match_token1] = ACTIONS(3397), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3397), - [aux_sym_address_family_token1] = ACTIONS(3397), - [aux_sym_batch_mode_token1] = ACTIONS(3397), - [aux_sym_bind_address_token1] = ACTIONS(3397), - [aux_sym_bind_interface_token1] = ACTIONS(3397), - [aux_sym_canonical_domains_token1] = ACTIONS(3397), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3397), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3397), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3397), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3397), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3397), - [aux_sym_certificate_file_token1] = ACTIONS(3397), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3397), - [aux_sym_check_host_ip_token1] = ACTIONS(3397), - [aux_sym_ciphers_token1] = ACTIONS(3397), - [aux_sym_cipher_token1] = ACTIONS(3399), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3397), - [aux_sym_compression_token1] = ACTIONS(3397), - [aux_sym_connection_attempts_token1] = ACTIONS(3397), - [aux_sym_connect_timeout_token1] = ACTIONS(3397), - [aux_sym_control_master_token1] = ACTIONS(3397), - [aux_sym_control_path_token1] = ACTIONS(3397), - [aux_sym_control_persist_token1] = ACTIONS(3397), - [aux_sym_dynamic_forward_token1] = ACTIONS(3397), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3397), - [aux_sym_escape_char_token1] = ACTIONS(3397), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3397), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3397), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3397), - [aux_sym_forward_agent_token1] = ACTIONS(3397), - [aux_sym_forward_x11_token1] = ACTIONS(3399), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3397), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3397), - [aux_sym_gateway_ports_token1] = ACTIONS(3397), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3397), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3397), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3397), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3397), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3397), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3397), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3397), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3397), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3397), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3397), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3397), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3397), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3397), - [aux_sym_host_key_alias_token1] = ACTIONS(3397), - [aux_sym_hostname_token1] = ACTIONS(3397), - [aux_sym_identities_only_token1] = ACTIONS(3397), - [aux_sym_identity_agent_token1] = ACTIONS(3397), - [aux_sym_identity_file_token1] = ACTIONS(3397), - [aux_sym_ignore_unknown_token1] = ACTIONS(3397), - [aux_sym_include_token1] = ACTIONS(3397), - [aux_sym_ip_qos_token1] = ACTIONS(3397), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3397), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3397), - [aux_sym_kex_algorithms_token1] = ACTIONS(3397), - [aux_sym_known_hosts_command_token1] = ACTIONS(3397), - [aux_sym_local_command_token1] = ACTIONS(3397), - [aux_sym_local_forward_token1] = ACTIONS(3397), - [aux_sym_log_level_token1] = ACTIONS(3397), - [aux_sym_log_verbose_token1] = ACTIONS(3397), - [aux_sym_macs_token1] = ACTIONS(3397), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3397), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3397), - [aux_sym_password_authentication_token1] = ACTIONS(3397), - [aux_sym_permit_local_command_token1] = ACTIONS(3397), - [aux_sym_permit_remote_open_token1] = ACTIONS(3397), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3397), - [aux_sym_port_token1] = ACTIONS(3397), - [aux_sym_preferred_authentications_token1] = ACTIONS(3397), - [aux_sym_protocol_token1] = ACTIONS(3397), - [aux_sym_proxy_command_token1] = ACTIONS(3397), - [aux_sym_proxy_jump_token1] = ACTIONS(3397), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3397), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3397), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3397), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3397), - [aux_sym_rekey_limit_token1] = ACTIONS(3397), - [aux_sym_remote_command_token1] = ACTIONS(3397), - [aux_sym_remote_forward_token1] = ACTIONS(3397), - [aux_sym_request_tty_token1] = ACTIONS(3397), - [aux_sym_required_rsa_size_token1] = ACTIONS(3397), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3397), - [aux_sym_security_key_provider_token1] = ACTIONS(3397), - [aux_sym_send_env_token1] = ACTIONS(3397), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3397), - [aux_sym_server_alive_interval_token1] = ACTIONS(3397), - [aux_sym_session_type_token1] = ACTIONS(3397), - [aux_sym_set_env_token1] = ACTIONS(3397), - [aux_sym_stdin_null_token1] = ACTIONS(3397), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3397), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3397), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3397), - [aux_sym_syslog_facility_token1] = ACTIONS(3397), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3397), - [aux_sym_keep_alive_token1] = ACTIONS(3397), - [aux_sym_tunnel_token1] = ACTIONS(3399), - [aux_sym_tunnel_device_token1] = ACTIONS(3397), - [aux_sym_update_host_keys_token1] = ACTIONS(3397), - [aux_sym_use_keychain_token1] = ACTIONS(3397), - [aux_sym_use_roaming_token1] = ACTIONS(3397), - [aux_sym_user_token1] = ACTIONS(3399), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3397), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3397), - [aux_sym_visual_host_key_token1] = ACTIONS(3397), - [aux_sym_xauth_location_token1] = ACTIONS(3397), + [ts_builtin_sym_end] = ACTIONS(1256), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1258), + [aux_sym_match_token1] = ACTIONS(1256), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1256), + [aux_sym_address_family_token1] = ACTIONS(1256), + [aux_sym_batch_mode_token1] = ACTIONS(1256), + [aux_sym_bind_address_token1] = ACTIONS(1256), + [aux_sym_bind_interface_token1] = ACTIONS(1256), + [aux_sym_canonical_domains_token1] = ACTIONS(1256), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1256), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1256), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1256), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1256), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1256), + [aux_sym_certificate_file_token1] = ACTIONS(1256), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1256), + [aux_sym_check_host_ip_token1] = ACTIONS(1256), + [aux_sym_ciphers_token1] = ACTIONS(1256), + [aux_sym_cipher_token1] = ACTIONS(1258), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1256), + [aux_sym_compression_token1] = ACTIONS(1256), + [aux_sym_connection_attempts_token1] = ACTIONS(1256), + [aux_sym_connect_timeout_token1] = ACTIONS(1256), + [aux_sym_control_master_token1] = ACTIONS(1256), + [aux_sym_control_path_token1] = ACTIONS(1256), + [aux_sym_control_persist_token1] = ACTIONS(1256), + [aux_sym_dynamic_forward_token1] = ACTIONS(1256), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1256), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1256), + [aux_sym_escape_char_token1] = ACTIONS(1256), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1256), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1256), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1256), + [aux_sym_forward_agent_token1] = ACTIONS(1256), + [aux_sym_forward_x11_token1] = ACTIONS(1258), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1256), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1256), + [aux_sym_gateway_ports_token1] = ACTIONS(1256), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1256), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1256), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1256), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1256), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1256), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1256), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1256), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1256), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1256), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1256), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1256), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1256), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1256), + [aux_sym_host_key_alias_token1] = ACTIONS(1256), + [aux_sym_hostname_token1] = ACTIONS(1256), + [aux_sym_identities_only_token1] = ACTIONS(1256), + [aux_sym_identity_agent_token1] = ACTIONS(1256), + [aux_sym_identity_file_token1] = ACTIONS(1256), + [aux_sym_ignore_unknown_token1] = ACTIONS(1256), + [aux_sym_include_token1] = ACTIONS(1256), + [aux_sym_ip_qos_token1] = ACTIONS(1256), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1256), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1256), + [aux_sym_kex_algorithms_token1] = ACTIONS(1256), + [aux_sym_known_hosts_command_token1] = ACTIONS(1256), + [aux_sym_local_command_token1] = ACTIONS(1256), + [aux_sym_local_forward_token1] = ACTIONS(1256), + [aux_sym_log_level_token1] = ACTIONS(1256), + [aux_sym_log_verbose_token1] = ACTIONS(1256), + [aux_sym_macs_token1] = ACTIONS(1256), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1256), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1256), + [aux_sym_password_authentication_token1] = ACTIONS(1256), + [aux_sym_permit_local_command_token1] = ACTIONS(1256), + [aux_sym_permit_remote_open_token1] = ACTIONS(1256), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1256), + [aux_sym_port_token1] = ACTIONS(1256), + [aux_sym_preferred_authentications_token1] = ACTIONS(1256), + [aux_sym_protocol_token1] = ACTIONS(1256), + [aux_sym_proxy_command_token1] = ACTIONS(1256), + [aux_sym_proxy_jump_token1] = ACTIONS(1256), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1256), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1256), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1256), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1256), + [aux_sym_rekey_limit_token1] = ACTIONS(1256), + [aux_sym_remote_command_token1] = ACTIONS(1256), + [aux_sym_remote_forward_token1] = ACTIONS(1256), + [aux_sym_request_tty_token1] = ACTIONS(1256), + [aux_sym_required_rsa_size_token1] = ACTIONS(1256), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1256), + [aux_sym_security_key_provider_token1] = ACTIONS(1256), + [aux_sym_send_env_token1] = ACTIONS(1256), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1256), + [aux_sym_server_alive_interval_token1] = ACTIONS(1256), + [aux_sym_session_type_token1] = ACTIONS(1256), + [aux_sym_set_env_token1] = ACTIONS(1256), + [aux_sym_stdin_null_token1] = ACTIONS(1256), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1256), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1256), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1256), + [aux_sym_syslog_facility_token1] = ACTIONS(1256), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1256), + [aux_sym_keep_alive_token1] = ACTIONS(1256), + [aux_sym_tunnel_token1] = ACTIONS(1258), + [aux_sym_tunnel_device_token1] = ACTIONS(1256), + [aux_sym_update_host_keys_token1] = ACTIONS(1256), + [aux_sym_use_keychain_token1] = ACTIONS(1256), + [aux_sym_use_roaming_token1] = ACTIONS(1256), + [aux_sym_user_token1] = ACTIONS(1258), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1256), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1256), + [aux_sym_visual_host_key_token1] = ACTIONS(1256), + [aux_sym_xauth_location_token1] = ACTIONS(1256), }, [555] = { - [ts_builtin_sym_end] = ACTIONS(3401), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3403), - [aux_sym_match_token1] = ACTIONS(3401), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3401), - [aux_sym_address_family_token1] = ACTIONS(3401), - [aux_sym_batch_mode_token1] = ACTIONS(3401), - [aux_sym_bind_address_token1] = ACTIONS(3401), - [aux_sym_bind_interface_token1] = ACTIONS(3401), - [aux_sym_canonical_domains_token1] = ACTIONS(3401), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3401), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3401), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3401), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3401), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3401), - [aux_sym_certificate_file_token1] = ACTIONS(3401), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3401), - [aux_sym_check_host_ip_token1] = ACTIONS(3401), - [aux_sym_ciphers_token1] = ACTIONS(3401), - [aux_sym_cipher_token1] = ACTIONS(3403), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3401), - [aux_sym_compression_token1] = ACTIONS(3401), - [aux_sym_connection_attempts_token1] = ACTIONS(3401), - [aux_sym_connect_timeout_token1] = ACTIONS(3401), - [aux_sym_control_master_token1] = ACTIONS(3401), - [aux_sym_control_path_token1] = ACTIONS(3401), - [aux_sym_control_persist_token1] = ACTIONS(3401), - [aux_sym_dynamic_forward_token1] = ACTIONS(3401), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3401), - [aux_sym_escape_char_token1] = ACTIONS(3401), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3401), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3401), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3401), - [aux_sym_forward_agent_token1] = ACTIONS(3401), - [aux_sym_forward_x11_token1] = ACTIONS(3403), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3401), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3401), - [aux_sym_gateway_ports_token1] = ACTIONS(3401), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3401), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3401), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3401), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3401), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3401), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3401), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3401), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3401), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3401), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3401), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3401), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3401), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3401), - [aux_sym_host_key_alias_token1] = ACTIONS(3401), - [aux_sym_hostname_token1] = ACTIONS(3401), - [aux_sym_identities_only_token1] = ACTIONS(3401), - [aux_sym_identity_agent_token1] = ACTIONS(3401), - [aux_sym_identity_file_token1] = ACTIONS(3401), - [aux_sym_ignore_unknown_token1] = ACTIONS(3401), - [aux_sym_include_token1] = ACTIONS(3401), - [aux_sym_ip_qos_token1] = ACTIONS(3401), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3401), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3401), - [aux_sym_kex_algorithms_token1] = ACTIONS(3401), - [aux_sym_known_hosts_command_token1] = ACTIONS(3401), - [aux_sym_local_command_token1] = ACTIONS(3401), - [aux_sym_local_forward_token1] = ACTIONS(3401), - [aux_sym_log_level_token1] = ACTIONS(3401), - [aux_sym_log_verbose_token1] = ACTIONS(3401), - [aux_sym_macs_token1] = ACTIONS(3401), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3401), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3401), - [aux_sym_password_authentication_token1] = ACTIONS(3401), - [aux_sym_permit_local_command_token1] = ACTIONS(3401), - [aux_sym_permit_remote_open_token1] = ACTIONS(3401), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3401), - [aux_sym_port_token1] = ACTIONS(3401), - [aux_sym_preferred_authentications_token1] = ACTIONS(3401), - [aux_sym_protocol_token1] = ACTIONS(3401), - [aux_sym_proxy_command_token1] = ACTIONS(3401), - [aux_sym_proxy_jump_token1] = ACTIONS(3401), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3401), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3401), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3401), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3401), - [aux_sym_rekey_limit_token1] = ACTIONS(3401), - [aux_sym_remote_command_token1] = ACTIONS(3401), - [aux_sym_remote_forward_token1] = ACTIONS(3401), - [aux_sym_request_tty_token1] = ACTIONS(3401), - [aux_sym_required_rsa_size_token1] = ACTIONS(3401), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3401), - [aux_sym_security_key_provider_token1] = ACTIONS(3401), - [aux_sym_send_env_token1] = ACTIONS(3401), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3401), - [aux_sym_server_alive_interval_token1] = ACTIONS(3401), - [aux_sym_session_type_token1] = ACTIONS(3401), - [aux_sym_set_env_token1] = ACTIONS(3401), - [aux_sym_stdin_null_token1] = ACTIONS(3401), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3401), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3401), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3401), - [aux_sym_syslog_facility_token1] = ACTIONS(3401), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3401), - [aux_sym_keep_alive_token1] = ACTIONS(3401), - [aux_sym_tunnel_token1] = ACTIONS(3403), - [aux_sym_tunnel_device_token1] = ACTIONS(3401), - [aux_sym_update_host_keys_token1] = ACTIONS(3401), - [aux_sym_use_keychain_token1] = ACTIONS(3401), - [aux_sym_use_roaming_token1] = ACTIONS(3401), - [aux_sym_user_token1] = ACTIONS(3403), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3401), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3401), - [aux_sym_visual_host_key_token1] = ACTIONS(3401), - [aux_sym_xauth_location_token1] = ACTIONS(3401), + [ts_builtin_sym_end] = ACTIONS(998), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1000), + [aux_sym_match_token1] = ACTIONS(998), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(998), + [aux_sym_address_family_token1] = ACTIONS(998), + [aux_sym_batch_mode_token1] = ACTIONS(998), + [aux_sym_bind_address_token1] = ACTIONS(998), + [aux_sym_bind_interface_token1] = ACTIONS(998), + [aux_sym_canonical_domains_token1] = ACTIONS(998), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(998), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(998), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(998), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(998), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(998), + [aux_sym_certificate_file_token1] = ACTIONS(998), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(998), + [aux_sym_check_host_ip_token1] = ACTIONS(998), + [aux_sym_ciphers_token1] = ACTIONS(998), + [aux_sym_cipher_token1] = ACTIONS(1000), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(998), + [aux_sym_compression_token1] = ACTIONS(998), + [aux_sym_connection_attempts_token1] = ACTIONS(998), + [aux_sym_connect_timeout_token1] = ACTIONS(998), + [aux_sym_control_master_token1] = ACTIONS(998), + [aux_sym_control_path_token1] = ACTIONS(998), + [aux_sym_control_persist_token1] = ACTIONS(998), + [aux_sym_dynamic_forward_token1] = ACTIONS(998), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(998), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(998), + [aux_sym_escape_char_token1] = ACTIONS(998), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(998), + [aux_sym_fingerprint_hash_token1] = ACTIONS(998), + [aux_sym_fork_after_authentication_token1] = ACTIONS(998), + [aux_sym_forward_agent_token1] = ACTIONS(998), + [aux_sym_forward_x11_token1] = ACTIONS(1000), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(998), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(998), + [aux_sym_gateway_ports_token1] = ACTIONS(998), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(998), + [aux_sym_gssapi_authentication_token1] = ACTIONS(998), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(998), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(998), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(998), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(998), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(998), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(998), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(998), + [aux_sym_hash_known_hosts_token1] = ACTIONS(998), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(998), + [aux_sym_hostbased_authentication_token1] = ACTIONS(998), + [aux_sym_host_key_algorithms_token1] = ACTIONS(998), + [aux_sym_host_key_alias_token1] = ACTIONS(998), + [aux_sym_hostname_token1] = ACTIONS(998), + [aux_sym_identities_only_token1] = ACTIONS(998), + [aux_sym_identity_agent_token1] = ACTIONS(998), + [aux_sym_identity_file_token1] = ACTIONS(998), + [aux_sym_ignore_unknown_token1] = ACTIONS(998), + [aux_sym_include_token1] = ACTIONS(998), + [aux_sym_ip_qos_token1] = ACTIONS(998), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(998), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(998), + [aux_sym_kex_algorithms_token1] = ACTIONS(998), + [aux_sym_known_hosts_command_token1] = ACTIONS(998), + [aux_sym_local_command_token1] = ACTIONS(998), + [aux_sym_local_forward_token1] = ACTIONS(998), + [aux_sym_log_level_token1] = ACTIONS(998), + [aux_sym_log_verbose_token1] = ACTIONS(998), + [aux_sym_macs_token1] = ACTIONS(998), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(998), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(998), + [aux_sym_password_authentication_token1] = ACTIONS(998), + [aux_sym_permit_local_command_token1] = ACTIONS(998), + [aux_sym_permit_remote_open_token1] = ACTIONS(998), + [aux_sym_pkcs11_provider_token1] = ACTIONS(998), + [aux_sym_port_token1] = ACTIONS(998), + [aux_sym_preferred_authentications_token1] = ACTIONS(998), + [aux_sym_protocol_token1] = ACTIONS(998), + [aux_sym_proxy_command_token1] = ACTIONS(998), + [aux_sym_proxy_jump_token1] = ACTIONS(998), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(998), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(998), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(998), + [aux_sym_pubkey_authentication_token1] = ACTIONS(998), + [aux_sym_rekey_limit_token1] = ACTIONS(998), + [aux_sym_remote_command_token1] = ACTIONS(998), + [aux_sym_remote_forward_token1] = ACTIONS(998), + [aux_sym_request_tty_token1] = ACTIONS(998), + [aux_sym_required_rsa_size_token1] = ACTIONS(998), + [aux_sym_revoked_host_keys_token1] = ACTIONS(998), + [aux_sym_security_key_provider_token1] = ACTIONS(998), + [aux_sym_send_env_token1] = ACTIONS(998), + [aux_sym_server_alive_count_max_token1] = ACTIONS(998), + [aux_sym_server_alive_interval_token1] = ACTIONS(998), + [aux_sym_session_type_token1] = ACTIONS(998), + [aux_sym_set_env_token1] = ACTIONS(998), + [aux_sym_stdin_null_token1] = ACTIONS(998), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(998), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(998), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(998), + [aux_sym_syslog_facility_token1] = ACTIONS(998), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(998), + [aux_sym_keep_alive_token1] = ACTIONS(998), + [aux_sym_tunnel_token1] = ACTIONS(1000), + [aux_sym_tunnel_device_token1] = ACTIONS(998), + [aux_sym_update_host_keys_token1] = ACTIONS(998), + [aux_sym_use_keychain_token1] = ACTIONS(998), + [aux_sym_use_roaming_token1] = ACTIONS(998), + [aux_sym_user_token1] = ACTIONS(1000), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(998), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(998), + [aux_sym_visual_host_key_token1] = ACTIONS(998), + [aux_sym_xauth_location_token1] = ACTIONS(998), }, [556] = { - [ts_builtin_sym_end] = ACTIONS(3405), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3407), - [aux_sym_match_token1] = ACTIONS(3405), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3405), - [aux_sym_address_family_token1] = ACTIONS(3405), - [aux_sym_batch_mode_token1] = ACTIONS(3405), - [aux_sym_bind_address_token1] = ACTIONS(3405), - [aux_sym_bind_interface_token1] = ACTIONS(3405), - [aux_sym_canonical_domains_token1] = ACTIONS(3405), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3405), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3405), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3405), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3405), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3405), - [aux_sym_certificate_file_token1] = ACTIONS(3405), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3405), - [aux_sym_check_host_ip_token1] = ACTIONS(3405), - [aux_sym_ciphers_token1] = ACTIONS(3405), - [aux_sym_cipher_token1] = ACTIONS(3407), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3405), - [aux_sym_compression_token1] = ACTIONS(3405), - [aux_sym_connection_attempts_token1] = ACTIONS(3405), - [aux_sym_connect_timeout_token1] = ACTIONS(3405), - [aux_sym_control_master_token1] = ACTIONS(3405), - [aux_sym_control_path_token1] = ACTIONS(3405), - [aux_sym_control_persist_token1] = ACTIONS(3405), - [aux_sym_dynamic_forward_token1] = ACTIONS(3405), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3405), - [aux_sym_escape_char_token1] = ACTIONS(3405), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3405), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3405), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3405), - [aux_sym_forward_agent_token1] = ACTIONS(3405), - [aux_sym_forward_x11_token1] = ACTIONS(3407), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3405), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3405), - [aux_sym_gateway_ports_token1] = ACTIONS(3405), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3405), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3405), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3405), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3405), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3405), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3405), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3405), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3405), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3405), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3405), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3405), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3405), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3405), - [aux_sym_host_key_alias_token1] = ACTIONS(3405), - [aux_sym_hostname_token1] = ACTIONS(3405), - [aux_sym_identities_only_token1] = ACTIONS(3405), - [aux_sym_identity_agent_token1] = ACTIONS(3405), - [aux_sym_identity_file_token1] = ACTIONS(3405), - [aux_sym_ignore_unknown_token1] = ACTIONS(3405), - [aux_sym_include_token1] = ACTIONS(3405), - [aux_sym_ip_qos_token1] = ACTIONS(3405), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3405), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3405), - [aux_sym_kex_algorithms_token1] = ACTIONS(3405), - [aux_sym_known_hosts_command_token1] = ACTIONS(3405), - [aux_sym_local_command_token1] = ACTIONS(3405), - [aux_sym_local_forward_token1] = ACTIONS(3405), - [aux_sym_log_level_token1] = ACTIONS(3405), - [aux_sym_log_verbose_token1] = ACTIONS(3405), - [aux_sym_macs_token1] = ACTIONS(3405), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3405), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3405), - [aux_sym_password_authentication_token1] = ACTIONS(3405), - [aux_sym_permit_local_command_token1] = ACTIONS(3405), - [aux_sym_permit_remote_open_token1] = ACTIONS(3405), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3405), - [aux_sym_port_token1] = ACTIONS(3405), - [aux_sym_preferred_authentications_token1] = ACTIONS(3405), - [aux_sym_protocol_token1] = ACTIONS(3405), - [aux_sym_proxy_command_token1] = ACTIONS(3405), - [aux_sym_proxy_jump_token1] = ACTIONS(3405), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3405), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3405), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3405), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3405), - [aux_sym_rekey_limit_token1] = ACTIONS(3405), - [aux_sym_remote_command_token1] = ACTIONS(3405), - [aux_sym_remote_forward_token1] = ACTIONS(3405), - [aux_sym_request_tty_token1] = ACTIONS(3405), - [aux_sym_required_rsa_size_token1] = ACTIONS(3405), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3405), - [aux_sym_security_key_provider_token1] = ACTIONS(3405), - [aux_sym_send_env_token1] = ACTIONS(3405), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3405), - [aux_sym_server_alive_interval_token1] = ACTIONS(3405), - [aux_sym_session_type_token1] = ACTIONS(3405), - [aux_sym_set_env_token1] = ACTIONS(3405), - [aux_sym_stdin_null_token1] = ACTIONS(3405), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3405), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3405), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3405), - [aux_sym_syslog_facility_token1] = ACTIONS(3405), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3405), - [aux_sym_keep_alive_token1] = ACTIONS(3405), - [aux_sym_tunnel_token1] = ACTIONS(3407), - [aux_sym_tunnel_device_token1] = ACTIONS(3405), - [aux_sym_update_host_keys_token1] = ACTIONS(3405), - [aux_sym_use_keychain_token1] = ACTIONS(3405), - [aux_sym_use_roaming_token1] = ACTIONS(3405), - [aux_sym_user_token1] = ACTIONS(3407), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3405), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3405), - [aux_sym_visual_host_key_token1] = ACTIONS(3405), - [aux_sym_xauth_location_token1] = ACTIONS(3405), + [ts_builtin_sym_end] = ACTIONS(1262), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1264), + [aux_sym_match_token1] = ACTIONS(1262), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1262), + [aux_sym_address_family_token1] = ACTIONS(1262), + [aux_sym_batch_mode_token1] = ACTIONS(1262), + [aux_sym_bind_address_token1] = ACTIONS(1262), + [aux_sym_bind_interface_token1] = ACTIONS(1262), + [aux_sym_canonical_domains_token1] = ACTIONS(1262), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1262), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1262), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1262), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1262), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1262), + [aux_sym_certificate_file_token1] = ACTIONS(1262), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1262), + [aux_sym_check_host_ip_token1] = ACTIONS(1262), + [aux_sym_ciphers_token1] = ACTIONS(1262), + [aux_sym_cipher_token1] = ACTIONS(1264), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1262), + [aux_sym_compression_token1] = ACTIONS(1262), + [aux_sym_connection_attempts_token1] = ACTIONS(1262), + [aux_sym_connect_timeout_token1] = ACTIONS(1262), + [aux_sym_control_master_token1] = ACTIONS(1262), + [aux_sym_control_path_token1] = ACTIONS(1262), + [aux_sym_control_persist_token1] = ACTIONS(1262), + [aux_sym_dynamic_forward_token1] = ACTIONS(1262), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1262), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1262), + [aux_sym_escape_char_token1] = ACTIONS(1262), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1262), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1262), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1262), + [aux_sym_forward_agent_token1] = ACTIONS(1262), + [aux_sym_forward_x11_token1] = ACTIONS(1264), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1262), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1262), + [aux_sym_gateway_ports_token1] = ACTIONS(1262), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1262), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1262), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1262), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1262), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1262), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1262), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1262), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1262), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1262), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1262), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1262), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1262), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1262), + [aux_sym_host_key_alias_token1] = ACTIONS(1262), + [aux_sym_hostname_token1] = ACTIONS(1262), + [aux_sym_identities_only_token1] = ACTIONS(1262), + [aux_sym_identity_agent_token1] = ACTIONS(1262), + [aux_sym_identity_file_token1] = ACTIONS(1262), + [aux_sym_ignore_unknown_token1] = ACTIONS(1262), + [aux_sym_include_token1] = ACTIONS(1262), + [aux_sym_ip_qos_token1] = ACTIONS(1262), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1262), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1262), + [aux_sym_kex_algorithms_token1] = ACTIONS(1262), + [aux_sym_known_hosts_command_token1] = ACTIONS(1262), + [aux_sym_local_command_token1] = ACTIONS(1262), + [aux_sym_local_forward_token1] = ACTIONS(1262), + [aux_sym_log_level_token1] = ACTIONS(1262), + [aux_sym_log_verbose_token1] = ACTIONS(1262), + [aux_sym_macs_token1] = ACTIONS(1262), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1262), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1262), + [aux_sym_password_authentication_token1] = ACTIONS(1262), + [aux_sym_permit_local_command_token1] = ACTIONS(1262), + [aux_sym_permit_remote_open_token1] = ACTIONS(1262), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1262), + [aux_sym_port_token1] = ACTIONS(1262), + [aux_sym_preferred_authentications_token1] = ACTIONS(1262), + [aux_sym_protocol_token1] = ACTIONS(1262), + [aux_sym_proxy_command_token1] = ACTIONS(1262), + [aux_sym_proxy_jump_token1] = ACTIONS(1262), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1262), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1262), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1262), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1262), + [aux_sym_rekey_limit_token1] = ACTIONS(1262), + [aux_sym_remote_command_token1] = ACTIONS(1262), + [aux_sym_remote_forward_token1] = ACTIONS(1262), + [aux_sym_request_tty_token1] = ACTIONS(1262), + [aux_sym_required_rsa_size_token1] = ACTIONS(1262), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1262), + [aux_sym_security_key_provider_token1] = ACTIONS(1262), + [aux_sym_send_env_token1] = ACTIONS(1262), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1262), + [aux_sym_server_alive_interval_token1] = ACTIONS(1262), + [aux_sym_session_type_token1] = ACTIONS(1262), + [aux_sym_set_env_token1] = ACTIONS(1262), + [aux_sym_stdin_null_token1] = ACTIONS(1262), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1262), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1262), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1262), + [aux_sym_syslog_facility_token1] = ACTIONS(1262), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1262), + [aux_sym_keep_alive_token1] = ACTIONS(1262), + [aux_sym_tunnel_token1] = ACTIONS(1264), + [aux_sym_tunnel_device_token1] = ACTIONS(1262), + [aux_sym_update_host_keys_token1] = ACTIONS(1262), + [aux_sym_use_keychain_token1] = ACTIONS(1262), + [aux_sym_use_roaming_token1] = ACTIONS(1262), + [aux_sym_user_token1] = ACTIONS(1264), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1262), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1262), + [aux_sym_visual_host_key_token1] = ACTIONS(1262), + [aux_sym_xauth_location_token1] = ACTIONS(1262), }, [557] = { - [ts_builtin_sym_end] = ACTIONS(3409), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3411), - [aux_sym_match_token1] = ACTIONS(3409), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3409), - [aux_sym_address_family_token1] = ACTIONS(3409), - [aux_sym_batch_mode_token1] = ACTIONS(3409), - [aux_sym_bind_address_token1] = ACTIONS(3409), - [aux_sym_bind_interface_token1] = ACTIONS(3409), - [aux_sym_canonical_domains_token1] = ACTIONS(3409), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3409), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3409), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3409), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3409), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3409), - [aux_sym_certificate_file_token1] = ACTIONS(3409), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3409), - [aux_sym_check_host_ip_token1] = ACTIONS(3409), - [aux_sym_ciphers_token1] = ACTIONS(3409), - [aux_sym_cipher_token1] = ACTIONS(3411), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3409), - [aux_sym_compression_token1] = ACTIONS(3409), - [aux_sym_connection_attempts_token1] = ACTIONS(3409), - [aux_sym_connect_timeout_token1] = ACTIONS(3409), - [aux_sym_control_master_token1] = ACTIONS(3409), - [aux_sym_control_path_token1] = ACTIONS(3409), - [aux_sym_control_persist_token1] = ACTIONS(3409), - [aux_sym_dynamic_forward_token1] = ACTIONS(3409), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3409), - [aux_sym_escape_char_token1] = ACTIONS(3409), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3409), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3409), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3409), - [aux_sym_forward_agent_token1] = ACTIONS(3409), - [aux_sym_forward_x11_token1] = ACTIONS(3411), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3409), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3409), - [aux_sym_gateway_ports_token1] = ACTIONS(3409), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3409), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3409), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3409), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3409), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3409), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3409), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3409), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3409), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3409), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3409), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3409), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3409), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3409), - [aux_sym_host_key_alias_token1] = ACTIONS(3409), - [aux_sym_hostname_token1] = ACTIONS(3409), - [aux_sym_identities_only_token1] = ACTIONS(3409), - [aux_sym_identity_agent_token1] = ACTIONS(3409), - [aux_sym_identity_file_token1] = ACTIONS(3409), - [aux_sym_ignore_unknown_token1] = ACTIONS(3409), - [aux_sym_include_token1] = ACTIONS(3409), - [aux_sym_ip_qos_token1] = ACTIONS(3409), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3409), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3409), - [aux_sym_kex_algorithms_token1] = ACTIONS(3409), - [aux_sym_known_hosts_command_token1] = ACTIONS(3409), - [aux_sym_local_command_token1] = ACTIONS(3409), - [aux_sym_local_forward_token1] = ACTIONS(3409), - [aux_sym_log_level_token1] = ACTIONS(3409), - [aux_sym_log_verbose_token1] = ACTIONS(3409), - [aux_sym_macs_token1] = ACTIONS(3409), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3409), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3409), - [aux_sym_password_authentication_token1] = ACTIONS(3409), - [aux_sym_permit_local_command_token1] = ACTIONS(3409), - [aux_sym_permit_remote_open_token1] = ACTIONS(3409), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3409), - [aux_sym_port_token1] = ACTIONS(3409), - [aux_sym_preferred_authentications_token1] = ACTIONS(3409), - [aux_sym_protocol_token1] = ACTIONS(3409), - [aux_sym_proxy_command_token1] = ACTIONS(3409), - [aux_sym_proxy_jump_token1] = ACTIONS(3409), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3409), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3409), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3409), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3409), - [aux_sym_rekey_limit_token1] = ACTIONS(3409), - [aux_sym_remote_command_token1] = ACTIONS(3409), - [aux_sym_remote_forward_token1] = ACTIONS(3409), - [aux_sym_request_tty_token1] = ACTIONS(3409), - [aux_sym_required_rsa_size_token1] = ACTIONS(3409), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3409), - [aux_sym_security_key_provider_token1] = ACTIONS(3409), - [aux_sym_send_env_token1] = ACTIONS(3409), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3409), - [aux_sym_server_alive_interval_token1] = ACTIONS(3409), - [aux_sym_session_type_token1] = ACTIONS(3409), - [aux_sym_set_env_token1] = ACTIONS(3409), - [aux_sym_stdin_null_token1] = ACTIONS(3409), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3409), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3409), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3409), - [aux_sym_syslog_facility_token1] = ACTIONS(3409), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3409), - [aux_sym_keep_alive_token1] = ACTIONS(3409), - [aux_sym_tunnel_token1] = ACTIONS(3411), - [aux_sym_tunnel_device_token1] = ACTIONS(3409), - [aux_sym_update_host_keys_token1] = ACTIONS(3409), - [aux_sym_use_keychain_token1] = ACTIONS(3409), - [aux_sym_use_roaming_token1] = ACTIONS(3409), - [aux_sym_user_token1] = ACTIONS(3411), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3409), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3409), - [aux_sym_visual_host_key_token1] = ACTIONS(3409), - [aux_sym_xauth_location_token1] = ACTIONS(3409), + [ts_builtin_sym_end] = ACTIONS(992), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(994), + [aux_sym_match_token1] = ACTIONS(992), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(992), + [aux_sym_address_family_token1] = ACTIONS(992), + [aux_sym_batch_mode_token1] = ACTIONS(992), + [aux_sym_bind_address_token1] = ACTIONS(992), + [aux_sym_bind_interface_token1] = ACTIONS(992), + [aux_sym_canonical_domains_token1] = ACTIONS(992), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(992), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(992), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(992), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(992), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(992), + [aux_sym_certificate_file_token1] = ACTIONS(992), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(992), + [aux_sym_check_host_ip_token1] = ACTIONS(992), + [aux_sym_ciphers_token1] = ACTIONS(992), + [aux_sym_cipher_token1] = ACTIONS(994), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(992), + [aux_sym_compression_token1] = ACTIONS(992), + [aux_sym_connection_attempts_token1] = ACTIONS(992), + [aux_sym_connect_timeout_token1] = ACTIONS(992), + [aux_sym_control_master_token1] = ACTIONS(992), + [aux_sym_control_path_token1] = ACTIONS(992), + [aux_sym_control_persist_token1] = ACTIONS(992), + [aux_sym_dynamic_forward_token1] = ACTIONS(992), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(992), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(992), + [aux_sym_escape_char_token1] = ACTIONS(992), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(992), + [aux_sym_fingerprint_hash_token1] = ACTIONS(992), + [aux_sym_fork_after_authentication_token1] = ACTIONS(992), + [aux_sym_forward_agent_token1] = ACTIONS(992), + [aux_sym_forward_x11_token1] = ACTIONS(994), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(992), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(992), + [aux_sym_gateway_ports_token1] = ACTIONS(992), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(992), + [aux_sym_gssapi_authentication_token1] = ACTIONS(992), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(992), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(992), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(992), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(992), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(992), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(992), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(992), + [aux_sym_hash_known_hosts_token1] = ACTIONS(992), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(992), + [aux_sym_hostbased_authentication_token1] = ACTIONS(992), + [aux_sym_host_key_algorithms_token1] = ACTIONS(992), + [aux_sym_host_key_alias_token1] = ACTIONS(992), + [aux_sym_hostname_token1] = ACTIONS(992), + [aux_sym_identities_only_token1] = ACTIONS(992), + [aux_sym_identity_agent_token1] = ACTIONS(992), + [aux_sym_identity_file_token1] = ACTIONS(992), + [aux_sym_ignore_unknown_token1] = ACTIONS(992), + [aux_sym_include_token1] = ACTIONS(992), + [aux_sym_ip_qos_token1] = ACTIONS(992), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(992), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(992), + [aux_sym_kex_algorithms_token1] = ACTIONS(992), + [aux_sym_known_hosts_command_token1] = ACTIONS(992), + [aux_sym_local_command_token1] = ACTIONS(992), + [aux_sym_local_forward_token1] = ACTIONS(992), + [aux_sym_log_level_token1] = ACTIONS(992), + [aux_sym_log_verbose_token1] = ACTIONS(992), + [aux_sym_macs_token1] = ACTIONS(992), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(992), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(992), + [aux_sym_password_authentication_token1] = ACTIONS(992), + [aux_sym_permit_local_command_token1] = ACTIONS(992), + [aux_sym_permit_remote_open_token1] = ACTIONS(992), + [aux_sym_pkcs11_provider_token1] = ACTIONS(992), + [aux_sym_port_token1] = ACTIONS(992), + [aux_sym_preferred_authentications_token1] = ACTIONS(992), + [aux_sym_protocol_token1] = ACTIONS(992), + [aux_sym_proxy_command_token1] = ACTIONS(992), + [aux_sym_proxy_jump_token1] = ACTIONS(992), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(992), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(992), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(992), + [aux_sym_pubkey_authentication_token1] = ACTIONS(992), + [aux_sym_rekey_limit_token1] = ACTIONS(992), + [aux_sym_remote_command_token1] = ACTIONS(992), + [aux_sym_remote_forward_token1] = ACTIONS(992), + [aux_sym_request_tty_token1] = ACTIONS(992), + [aux_sym_required_rsa_size_token1] = ACTIONS(992), + [aux_sym_revoked_host_keys_token1] = ACTIONS(992), + [aux_sym_security_key_provider_token1] = ACTIONS(992), + [aux_sym_send_env_token1] = ACTIONS(992), + [aux_sym_server_alive_count_max_token1] = ACTIONS(992), + [aux_sym_server_alive_interval_token1] = ACTIONS(992), + [aux_sym_session_type_token1] = ACTIONS(992), + [aux_sym_set_env_token1] = ACTIONS(992), + [aux_sym_stdin_null_token1] = ACTIONS(992), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(992), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(992), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(992), + [aux_sym_syslog_facility_token1] = ACTIONS(992), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(992), + [aux_sym_keep_alive_token1] = ACTIONS(992), + [aux_sym_tunnel_token1] = ACTIONS(994), + [aux_sym_tunnel_device_token1] = ACTIONS(992), + [aux_sym_update_host_keys_token1] = ACTIONS(992), + [aux_sym_use_keychain_token1] = ACTIONS(992), + [aux_sym_use_roaming_token1] = ACTIONS(992), + [aux_sym_user_token1] = ACTIONS(994), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(992), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(992), + [aux_sym_visual_host_key_token1] = ACTIONS(992), + [aux_sym_xauth_location_token1] = ACTIONS(992), }, [558] = { - [ts_builtin_sym_end] = ACTIONS(3413), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3415), - [aux_sym_match_token1] = ACTIONS(3413), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3413), - [aux_sym_address_family_token1] = ACTIONS(3413), - [aux_sym_batch_mode_token1] = ACTIONS(3413), - [aux_sym_bind_address_token1] = ACTIONS(3413), - [aux_sym_bind_interface_token1] = ACTIONS(3413), - [aux_sym_canonical_domains_token1] = ACTIONS(3413), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3413), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3413), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3413), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3413), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3413), - [aux_sym_certificate_file_token1] = ACTIONS(3413), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3413), - [aux_sym_check_host_ip_token1] = ACTIONS(3413), - [aux_sym_ciphers_token1] = ACTIONS(3413), - [aux_sym_cipher_token1] = ACTIONS(3415), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3413), - [aux_sym_compression_token1] = ACTIONS(3413), - [aux_sym_connection_attempts_token1] = ACTIONS(3413), - [aux_sym_connect_timeout_token1] = ACTIONS(3413), - [aux_sym_control_master_token1] = ACTIONS(3413), - [aux_sym_control_path_token1] = ACTIONS(3413), - [aux_sym_control_persist_token1] = ACTIONS(3413), - [aux_sym_dynamic_forward_token1] = ACTIONS(3413), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3413), - [aux_sym_escape_char_token1] = ACTIONS(3413), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3413), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3413), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3413), - [aux_sym_forward_agent_token1] = ACTIONS(3413), - [aux_sym_forward_x11_token1] = ACTIONS(3415), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3413), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3413), - [aux_sym_gateway_ports_token1] = ACTIONS(3413), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3413), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3413), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3413), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3413), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3413), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3413), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3413), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3413), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3413), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3413), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3413), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3413), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3413), - [aux_sym_host_key_alias_token1] = ACTIONS(3413), - [aux_sym_hostname_token1] = ACTIONS(3413), - [aux_sym_identities_only_token1] = ACTIONS(3413), - [aux_sym_identity_agent_token1] = ACTIONS(3413), - [aux_sym_identity_file_token1] = ACTIONS(3413), - [aux_sym_ignore_unknown_token1] = ACTIONS(3413), - [aux_sym_include_token1] = ACTIONS(3413), - [aux_sym_ip_qos_token1] = ACTIONS(3413), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3413), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3413), - [aux_sym_kex_algorithms_token1] = ACTIONS(3413), - [aux_sym_known_hosts_command_token1] = ACTIONS(3413), - [aux_sym_local_command_token1] = ACTIONS(3413), - [aux_sym_local_forward_token1] = ACTIONS(3413), - [aux_sym_log_level_token1] = ACTIONS(3413), - [aux_sym_log_verbose_token1] = ACTIONS(3413), - [aux_sym_macs_token1] = ACTIONS(3413), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3413), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3413), - [aux_sym_password_authentication_token1] = ACTIONS(3413), - [aux_sym_permit_local_command_token1] = ACTIONS(3413), - [aux_sym_permit_remote_open_token1] = ACTIONS(3413), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3413), - [aux_sym_port_token1] = ACTIONS(3413), - [aux_sym_preferred_authentications_token1] = ACTIONS(3413), - [aux_sym_protocol_token1] = ACTIONS(3413), - [aux_sym_proxy_command_token1] = ACTIONS(3413), - [aux_sym_proxy_jump_token1] = ACTIONS(3413), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3413), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3413), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3413), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3413), - [aux_sym_rekey_limit_token1] = ACTIONS(3413), - [aux_sym_remote_command_token1] = ACTIONS(3413), - [aux_sym_remote_forward_token1] = ACTIONS(3413), - [aux_sym_request_tty_token1] = ACTIONS(3413), - [aux_sym_required_rsa_size_token1] = ACTIONS(3413), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3413), - [aux_sym_security_key_provider_token1] = ACTIONS(3413), - [aux_sym_send_env_token1] = ACTIONS(3413), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3413), - [aux_sym_server_alive_interval_token1] = ACTIONS(3413), - [aux_sym_session_type_token1] = ACTIONS(3413), - [aux_sym_set_env_token1] = ACTIONS(3413), - [aux_sym_stdin_null_token1] = ACTIONS(3413), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3413), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3413), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3413), - [aux_sym_syslog_facility_token1] = ACTIONS(3413), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3413), - [aux_sym_keep_alive_token1] = ACTIONS(3413), - [aux_sym_tunnel_token1] = ACTIONS(3415), - [aux_sym_tunnel_device_token1] = ACTIONS(3413), - [aux_sym_update_host_keys_token1] = ACTIONS(3413), - [aux_sym_use_keychain_token1] = ACTIONS(3413), - [aux_sym_use_roaming_token1] = ACTIONS(3413), - [aux_sym_user_token1] = ACTIONS(3415), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3413), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3413), - [aux_sym_visual_host_key_token1] = ACTIONS(3413), - [aux_sym_xauth_location_token1] = ACTIONS(3413), + [ts_builtin_sym_end] = ACTIONS(3264), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3266), + [aux_sym_match_token1] = ACTIONS(3264), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3264), + [aux_sym_address_family_token1] = ACTIONS(3264), + [aux_sym_batch_mode_token1] = ACTIONS(3264), + [aux_sym_bind_address_token1] = ACTIONS(3264), + [aux_sym_bind_interface_token1] = ACTIONS(3264), + [aux_sym_canonical_domains_token1] = ACTIONS(3264), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3264), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3264), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3264), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3264), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3264), + [aux_sym_certificate_file_token1] = ACTIONS(3264), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3264), + [aux_sym_check_host_ip_token1] = ACTIONS(3264), + [aux_sym_ciphers_token1] = ACTIONS(3264), + [aux_sym_cipher_token1] = ACTIONS(3266), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3264), + [aux_sym_compression_token1] = ACTIONS(3264), + [aux_sym_connection_attempts_token1] = ACTIONS(3264), + [aux_sym_connect_timeout_token1] = ACTIONS(3264), + [aux_sym_control_master_token1] = ACTIONS(3264), + [aux_sym_control_path_token1] = ACTIONS(3264), + [aux_sym_control_persist_token1] = ACTIONS(3264), + [aux_sym_dynamic_forward_token1] = ACTIONS(3264), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3264), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3264), + [aux_sym_escape_char_token1] = ACTIONS(3264), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3264), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3264), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3264), + [aux_sym_forward_agent_token1] = ACTIONS(3264), + [aux_sym_forward_x11_token1] = ACTIONS(3266), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3264), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3264), + [aux_sym_gateway_ports_token1] = ACTIONS(3264), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3264), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3264), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3264), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3264), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3264), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3264), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3264), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3264), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3264), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3264), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3264), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3264), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3264), + [aux_sym_host_key_alias_token1] = ACTIONS(3264), + [aux_sym_hostname_token1] = ACTIONS(3264), + [aux_sym_identities_only_token1] = ACTIONS(3264), + [aux_sym_identity_agent_token1] = ACTIONS(3264), + [aux_sym_identity_file_token1] = ACTIONS(3264), + [aux_sym_ignore_unknown_token1] = ACTIONS(3264), + [aux_sym_include_token1] = ACTIONS(3264), + [aux_sym_ip_qos_token1] = ACTIONS(3264), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3264), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3264), + [aux_sym_kex_algorithms_token1] = ACTIONS(3264), + [aux_sym_known_hosts_command_token1] = ACTIONS(3264), + [aux_sym_local_command_token1] = ACTIONS(3264), + [aux_sym_local_forward_token1] = ACTIONS(3264), + [aux_sym_log_level_token1] = ACTIONS(3264), + [aux_sym_log_verbose_token1] = ACTIONS(3264), + [aux_sym_macs_token1] = ACTIONS(3264), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3264), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3264), + [aux_sym_password_authentication_token1] = ACTIONS(3264), + [aux_sym_permit_local_command_token1] = ACTIONS(3264), + [aux_sym_permit_remote_open_token1] = ACTIONS(3264), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3264), + [aux_sym_port_token1] = ACTIONS(3264), + [aux_sym_preferred_authentications_token1] = ACTIONS(3264), + [aux_sym_protocol_token1] = ACTIONS(3264), + [aux_sym_proxy_command_token1] = ACTIONS(3264), + [aux_sym_proxy_jump_token1] = ACTIONS(3264), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3264), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3264), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3264), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3264), + [aux_sym_rekey_limit_token1] = ACTIONS(3264), + [aux_sym_remote_command_token1] = ACTIONS(3264), + [aux_sym_remote_forward_token1] = ACTIONS(3264), + [aux_sym_request_tty_token1] = ACTIONS(3264), + [aux_sym_required_rsa_size_token1] = ACTIONS(3264), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3264), + [aux_sym_security_key_provider_token1] = ACTIONS(3264), + [aux_sym_send_env_token1] = ACTIONS(3264), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3264), + [aux_sym_server_alive_interval_token1] = ACTIONS(3264), + [aux_sym_session_type_token1] = ACTIONS(3264), + [aux_sym_set_env_token1] = ACTIONS(3264), + [aux_sym_stdin_null_token1] = ACTIONS(3264), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3264), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3264), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3264), + [aux_sym_syslog_facility_token1] = ACTIONS(3264), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3264), + [aux_sym_keep_alive_token1] = ACTIONS(3264), + [aux_sym_tunnel_token1] = ACTIONS(3266), + [aux_sym_tunnel_device_token1] = ACTIONS(3264), + [aux_sym_update_host_keys_token1] = ACTIONS(3264), + [aux_sym_use_keychain_token1] = ACTIONS(3264), + [aux_sym_use_roaming_token1] = ACTIONS(3264), + [aux_sym_user_token1] = ACTIONS(3266), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3264), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3264), + [aux_sym_visual_host_key_token1] = ACTIONS(3264), + [aux_sym_xauth_location_token1] = ACTIONS(3264), }, [559] = { - [ts_builtin_sym_end] = ACTIONS(3417), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3419), - [aux_sym_match_token1] = ACTIONS(3417), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3417), - [aux_sym_address_family_token1] = ACTIONS(3417), - [aux_sym_batch_mode_token1] = ACTIONS(3417), - [aux_sym_bind_address_token1] = ACTIONS(3417), - [aux_sym_bind_interface_token1] = ACTIONS(3417), - [aux_sym_canonical_domains_token1] = ACTIONS(3417), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3417), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3417), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3417), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3417), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3417), - [aux_sym_certificate_file_token1] = ACTIONS(3417), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3417), - [aux_sym_check_host_ip_token1] = ACTIONS(3417), - [aux_sym_ciphers_token1] = ACTIONS(3417), - [aux_sym_cipher_token1] = ACTIONS(3419), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3417), - [aux_sym_compression_token1] = ACTIONS(3417), - [aux_sym_connection_attempts_token1] = ACTIONS(3417), - [aux_sym_connect_timeout_token1] = ACTIONS(3417), - [aux_sym_control_master_token1] = ACTIONS(3417), - [aux_sym_control_path_token1] = ACTIONS(3417), - [aux_sym_control_persist_token1] = ACTIONS(3417), - [aux_sym_dynamic_forward_token1] = ACTIONS(3417), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3417), - [aux_sym_escape_char_token1] = ACTIONS(3417), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3417), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3417), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3417), - [aux_sym_forward_agent_token1] = ACTIONS(3417), - [aux_sym_forward_x11_token1] = ACTIONS(3419), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3417), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3417), - [aux_sym_gateway_ports_token1] = ACTIONS(3417), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3417), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3417), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3417), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3417), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3417), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3417), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3417), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3417), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3417), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3417), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3417), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3417), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3417), - [aux_sym_host_key_alias_token1] = ACTIONS(3417), - [aux_sym_hostname_token1] = ACTIONS(3417), - [aux_sym_identities_only_token1] = ACTIONS(3417), - [aux_sym_identity_agent_token1] = ACTIONS(3417), - [aux_sym_identity_file_token1] = ACTIONS(3417), - [aux_sym_ignore_unknown_token1] = ACTIONS(3417), - [aux_sym_include_token1] = ACTIONS(3417), - [aux_sym_ip_qos_token1] = ACTIONS(3417), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3417), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3417), - [aux_sym_kex_algorithms_token1] = ACTIONS(3417), - [aux_sym_known_hosts_command_token1] = ACTIONS(3417), - [aux_sym_local_command_token1] = ACTIONS(3417), - [aux_sym_local_forward_token1] = ACTIONS(3417), - [aux_sym_log_level_token1] = ACTIONS(3417), - [aux_sym_log_verbose_token1] = ACTIONS(3417), - [aux_sym_macs_token1] = ACTIONS(3417), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3417), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3417), - [aux_sym_password_authentication_token1] = ACTIONS(3417), - [aux_sym_permit_local_command_token1] = ACTIONS(3417), - [aux_sym_permit_remote_open_token1] = ACTIONS(3417), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3417), - [aux_sym_port_token1] = ACTIONS(3417), - [aux_sym_preferred_authentications_token1] = ACTIONS(3417), - [aux_sym_protocol_token1] = ACTIONS(3417), - [aux_sym_proxy_command_token1] = ACTIONS(3417), - [aux_sym_proxy_jump_token1] = ACTIONS(3417), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3417), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3417), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3417), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3417), - [aux_sym_rekey_limit_token1] = ACTIONS(3417), - [aux_sym_remote_command_token1] = ACTIONS(3417), - [aux_sym_remote_forward_token1] = ACTIONS(3417), - [aux_sym_request_tty_token1] = ACTIONS(3417), - [aux_sym_required_rsa_size_token1] = ACTIONS(3417), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3417), - [aux_sym_security_key_provider_token1] = ACTIONS(3417), - [aux_sym_send_env_token1] = ACTIONS(3417), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3417), - [aux_sym_server_alive_interval_token1] = ACTIONS(3417), - [aux_sym_session_type_token1] = ACTIONS(3417), - [aux_sym_set_env_token1] = ACTIONS(3417), - [aux_sym_stdin_null_token1] = ACTIONS(3417), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3417), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3417), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3417), - [aux_sym_syslog_facility_token1] = ACTIONS(3417), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3417), - [aux_sym_keep_alive_token1] = ACTIONS(3417), - [aux_sym_tunnel_token1] = ACTIONS(3419), - [aux_sym_tunnel_device_token1] = ACTIONS(3417), - [aux_sym_update_host_keys_token1] = ACTIONS(3417), - [aux_sym_use_keychain_token1] = ACTIONS(3417), - [aux_sym_use_roaming_token1] = ACTIONS(3417), - [aux_sym_user_token1] = ACTIONS(3419), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3417), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3417), - [aux_sym_visual_host_key_token1] = ACTIONS(3417), - [aux_sym_xauth_location_token1] = ACTIONS(3417), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3270), + [aux_sym_match_token1] = ACTIONS(3268), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3268), + [aux_sym_address_family_token1] = ACTIONS(3268), + [aux_sym_batch_mode_token1] = ACTIONS(3268), + [aux_sym_bind_address_token1] = ACTIONS(3268), + [aux_sym_bind_interface_token1] = ACTIONS(3268), + [aux_sym_canonical_domains_token1] = ACTIONS(3268), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3268), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3268), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3268), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3268), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3268), + [aux_sym_certificate_file_token1] = ACTIONS(3268), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3268), + [aux_sym_check_host_ip_token1] = ACTIONS(3268), + [aux_sym_ciphers_token1] = ACTIONS(3268), + [aux_sym_cipher_token1] = ACTIONS(3270), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3268), + [aux_sym_compression_token1] = ACTIONS(3268), + [aux_sym_connection_attempts_token1] = ACTIONS(3268), + [aux_sym_connect_timeout_token1] = ACTIONS(3268), + [aux_sym_control_master_token1] = ACTIONS(3268), + [aux_sym_control_path_token1] = ACTIONS(3268), + [aux_sym_control_persist_token1] = ACTIONS(3268), + [aux_sym_dynamic_forward_token1] = ACTIONS(3268), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3268), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3268), + [aux_sym_escape_char_token1] = ACTIONS(3268), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3268), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3268), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3268), + [aux_sym_forward_agent_token1] = ACTIONS(3268), + [aux_sym_forward_x11_token1] = ACTIONS(3270), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3268), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3268), + [aux_sym_gateway_ports_token1] = ACTIONS(3268), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3268), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3268), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3268), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3268), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3268), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3268), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3268), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3268), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3268), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3268), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3268), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3268), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3268), + [aux_sym_host_key_alias_token1] = ACTIONS(3268), + [aux_sym_hostname_token1] = ACTIONS(3268), + [aux_sym_identities_only_token1] = ACTIONS(3268), + [aux_sym_identity_agent_token1] = ACTIONS(3268), + [aux_sym_identity_file_token1] = ACTIONS(3268), + [aux_sym_ignore_unknown_token1] = ACTIONS(3268), + [aux_sym_include_token1] = ACTIONS(3268), + [aux_sym_ip_qos_token1] = ACTIONS(3268), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3268), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3268), + [aux_sym_kex_algorithms_token1] = ACTIONS(3268), + [aux_sym_known_hosts_command_token1] = ACTIONS(3268), + [aux_sym_local_command_token1] = ACTIONS(3268), + [aux_sym_local_forward_token1] = ACTIONS(3268), + [aux_sym_log_level_token1] = ACTIONS(3268), + [aux_sym_log_verbose_token1] = ACTIONS(3268), + [aux_sym_macs_token1] = ACTIONS(3268), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3268), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3268), + [aux_sym_password_authentication_token1] = ACTIONS(3268), + [aux_sym_permit_local_command_token1] = ACTIONS(3268), + [aux_sym_permit_remote_open_token1] = ACTIONS(3268), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3268), + [aux_sym_port_token1] = ACTIONS(3268), + [aux_sym_preferred_authentications_token1] = ACTIONS(3268), + [aux_sym_protocol_token1] = ACTIONS(3268), + [aux_sym_proxy_command_token1] = ACTIONS(3268), + [aux_sym_proxy_jump_token1] = ACTIONS(3268), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3268), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3268), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3268), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3268), + [aux_sym_rekey_limit_token1] = ACTIONS(3268), + [aux_sym_remote_command_token1] = ACTIONS(3268), + [aux_sym_remote_forward_token1] = ACTIONS(3268), + [aux_sym_request_tty_token1] = ACTIONS(3268), + [aux_sym_required_rsa_size_token1] = ACTIONS(3268), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3268), + [aux_sym_security_key_provider_token1] = ACTIONS(3268), + [aux_sym_send_env_token1] = ACTIONS(3268), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3268), + [aux_sym_server_alive_interval_token1] = ACTIONS(3268), + [aux_sym_session_type_token1] = ACTIONS(3268), + [aux_sym_set_env_token1] = ACTIONS(3268), + [aux_sym_stdin_null_token1] = ACTIONS(3268), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3268), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3268), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3268), + [aux_sym_syslog_facility_token1] = ACTIONS(3268), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3268), + [aux_sym_keep_alive_token1] = ACTIONS(3268), + [aux_sym_tunnel_token1] = ACTIONS(3270), + [aux_sym_tunnel_device_token1] = ACTIONS(3268), + [aux_sym_update_host_keys_token1] = ACTIONS(3268), + [aux_sym_use_keychain_token1] = ACTIONS(3268), + [aux_sym_use_roaming_token1] = ACTIONS(3268), + [aux_sym_user_token1] = ACTIONS(3270), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3268), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3268), + [aux_sym_visual_host_key_token1] = ACTIONS(3268), + [aux_sym_xauth_location_token1] = ACTIONS(3268), }, [560] = { - [ts_builtin_sym_end] = ACTIONS(3421), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3423), - [aux_sym_match_token1] = ACTIONS(3421), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3421), - [aux_sym_address_family_token1] = ACTIONS(3421), - [aux_sym_batch_mode_token1] = ACTIONS(3421), - [aux_sym_bind_address_token1] = ACTIONS(3421), - [aux_sym_bind_interface_token1] = ACTIONS(3421), - [aux_sym_canonical_domains_token1] = ACTIONS(3421), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3421), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3421), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3421), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3421), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3421), - [aux_sym_certificate_file_token1] = ACTIONS(3421), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3421), - [aux_sym_check_host_ip_token1] = ACTIONS(3421), - [aux_sym_ciphers_token1] = ACTIONS(3421), - [aux_sym_cipher_token1] = ACTIONS(3423), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3421), - [aux_sym_compression_token1] = ACTIONS(3421), - [aux_sym_connection_attempts_token1] = ACTIONS(3421), - [aux_sym_connect_timeout_token1] = ACTIONS(3421), - [aux_sym_control_master_token1] = ACTIONS(3421), - [aux_sym_control_path_token1] = ACTIONS(3421), - [aux_sym_control_persist_token1] = ACTIONS(3421), - [aux_sym_dynamic_forward_token1] = ACTIONS(3421), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3421), - [aux_sym_escape_char_token1] = ACTIONS(3421), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3421), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3421), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3421), - [aux_sym_forward_agent_token1] = ACTIONS(3421), - [aux_sym_forward_x11_token1] = ACTIONS(3423), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3421), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3421), - [aux_sym_gateway_ports_token1] = ACTIONS(3421), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3421), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3421), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3421), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3421), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3421), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3421), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3421), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3421), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3421), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3421), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3421), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3421), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3421), - [aux_sym_host_key_alias_token1] = ACTIONS(3421), - [aux_sym_hostname_token1] = ACTIONS(3421), - [aux_sym_identities_only_token1] = ACTIONS(3421), - [aux_sym_identity_agent_token1] = ACTIONS(3421), - [aux_sym_identity_file_token1] = ACTIONS(3421), - [aux_sym_ignore_unknown_token1] = ACTIONS(3421), - [aux_sym_include_token1] = ACTIONS(3421), - [aux_sym_ip_qos_token1] = ACTIONS(3421), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3421), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3421), - [aux_sym_kex_algorithms_token1] = ACTIONS(3421), - [aux_sym_known_hosts_command_token1] = ACTIONS(3421), - [aux_sym_local_command_token1] = ACTIONS(3421), - [aux_sym_local_forward_token1] = ACTIONS(3421), - [aux_sym_log_level_token1] = ACTIONS(3421), - [aux_sym_log_verbose_token1] = ACTIONS(3421), - [aux_sym_macs_token1] = ACTIONS(3421), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3421), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3421), - [aux_sym_password_authentication_token1] = ACTIONS(3421), - [aux_sym_permit_local_command_token1] = ACTIONS(3421), - [aux_sym_permit_remote_open_token1] = ACTIONS(3421), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3421), - [aux_sym_port_token1] = ACTIONS(3421), - [aux_sym_preferred_authentications_token1] = ACTIONS(3421), - [aux_sym_protocol_token1] = ACTIONS(3421), - [aux_sym_proxy_command_token1] = ACTIONS(3421), - [aux_sym_proxy_jump_token1] = ACTIONS(3421), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3421), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3421), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3421), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3421), - [aux_sym_rekey_limit_token1] = ACTIONS(3421), - [aux_sym_remote_command_token1] = ACTIONS(3421), - [aux_sym_remote_forward_token1] = ACTIONS(3421), - [aux_sym_request_tty_token1] = ACTIONS(3421), - [aux_sym_required_rsa_size_token1] = ACTIONS(3421), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3421), - [aux_sym_security_key_provider_token1] = ACTIONS(3421), - [aux_sym_send_env_token1] = ACTIONS(3421), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3421), - [aux_sym_server_alive_interval_token1] = ACTIONS(3421), - [aux_sym_session_type_token1] = ACTIONS(3421), - [aux_sym_set_env_token1] = ACTIONS(3421), - [aux_sym_stdin_null_token1] = ACTIONS(3421), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3421), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3421), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3421), - [aux_sym_syslog_facility_token1] = ACTIONS(3421), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3421), - [aux_sym_keep_alive_token1] = ACTIONS(3421), - [aux_sym_tunnel_token1] = ACTIONS(3423), - [aux_sym_tunnel_device_token1] = ACTIONS(3421), - [aux_sym_update_host_keys_token1] = ACTIONS(3421), - [aux_sym_use_keychain_token1] = ACTIONS(3421), - [aux_sym_use_roaming_token1] = ACTIONS(3421), - [aux_sym_user_token1] = ACTIONS(3423), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3421), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3421), - [aux_sym_visual_host_key_token1] = ACTIONS(3421), - [aux_sym_xauth_location_token1] = ACTIONS(3421), + [ts_builtin_sym_end] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3274), + [aux_sym_match_token1] = ACTIONS(3272), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3272), + [aux_sym_address_family_token1] = ACTIONS(3272), + [aux_sym_batch_mode_token1] = ACTIONS(3272), + [aux_sym_bind_address_token1] = ACTIONS(3272), + [aux_sym_bind_interface_token1] = ACTIONS(3272), + [aux_sym_canonical_domains_token1] = ACTIONS(3272), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3272), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3272), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3272), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3272), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3272), + [aux_sym_certificate_file_token1] = ACTIONS(3272), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3272), + [aux_sym_check_host_ip_token1] = ACTIONS(3272), + [aux_sym_ciphers_token1] = ACTIONS(3272), + [aux_sym_cipher_token1] = ACTIONS(3274), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3272), + [aux_sym_compression_token1] = ACTIONS(3272), + [aux_sym_connection_attempts_token1] = ACTIONS(3272), + [aux_sym_connect_timeout_token1] = ACTIONS(3272), + [aux_sym_control_master_token1] = ACTIONS(3272), + [aux_sym_control_path_token1] = ACTIONS(3272), + [aux_sym_control_persist_token1] = ACTIONS(3272), + [aux_sym_dynamic_forward_token1] = ACTIONS(3272), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3272), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3272), + [aux_sym_escape_char_token1] = ACTIONS(3272), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3272), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3272), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3272), + [aux_sym_forward_agent_token1] = ACTIONS(3272), + [aux_sym_forward_x11_token1] = ACTIONS(3274), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3272), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3272), + [aux_sym_gateway_ports_token1] = ACTIONS(3272), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3272), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3272), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3272), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3272), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3272), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3272), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3272), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3272), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3272), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3272), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3272), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3272), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3272), + [aux_sym_host_key_alias_token1] = ACTIONS(3272), + [aux_sym_hostname_token1] = ACTIONS(3272), + [aux_sym_identities_only_token1] = ACTIONS(3272), + [aux_sym_identity_agent_token1] = ACTIONS(3272), + [aux_sym_identity_file_token1] = ACTIONS(3272), + [aux_sym_ignore_unknown_token1] = ACTIONS(3272), + [aux_sym_include_token1] = ACTIONS(3272), + [aux_sym_ip_qos_token1] = ACTIONS(3272), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3272), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3272), + [aux_sym_kex_algorithms_token1] = ACTIONS(3272), + [aux_sym_known_hosts_command_token1] = ACTIONS(3272), + [aux_sym_local_command_token1] = ACTIONS(3272), + [aux_sym_local_forward_token1] = ACTIONS(3272), + [aux_sym_log_level_token1] = ACTIONS(3272), + [aux_sym_log_verbose_token1] = ACTIONS(3272), + [aux_sym_macs_token1] = ACTIONS(3272), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3272), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3272), + [aux_sym_password_authentication_token1] = ACTIONS(3272), + [aux_sym_permit_local_command_token1] = ACTIONS(3272), + [aux_sym_permit_remote_open_token1] = ACTIONS(3272), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3272), + [aux_sym_port_token1] = ACTIONS(3272), + [aux_sym_preferred_authentications_token1] = ACTIONS(3272), + [aux_sym_protocol_token1] = ACTIONS(3272), + [aux_sym_proxy_command_token1] = ACTIONS(3272), + [aux_sym_proxy_jump_token1] = ACTIONS(3272), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3272), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3272), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3272), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3272), + [aux_sym_rekey_limit_token1] = ACTIONS(3272), + [aux_sym_remote_command_token1] = ACTIONS(3272), + [aux_sym_remote_forward_token1] = ACTIONS(3272), + [aux_sym_request_tty_token1] = ACTIONS(3272), + [aux_sym_required_rsa_size_token1] = ACTIONS(3272), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3272), + [aux_sym_security_key_provider_token1] = ACTIONS(3272), + [aux_sym_send_env_token1] = ACTIONS(3272), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3272), + [aux_sym_server_alive_interval_token1] = ACTIONS(3272), + [aux_sym_session_type_token1] = ACTIONS(3272), + [aux_sym_set_env_token1] = ACTIONS(3272), + [aux_sym_stdin_null_token1] = ACTIONS(3272), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3272), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3272), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3272), + [aux_sym_syslog_facility_token1] = ACTIONS(3272), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3272), + [aux_sym_keep_alive_token1] = ACTIONS(3272), + [aux_sym_tunnel_token1] = ACTIONS(3274), + [aux_sym_tunnel_device_token1] = ACTIONS(3272), + [aux_sym_update_host_keys_token1] = ACTIONS(3272), + [aux_sym_use_keychain_token1] = ACTIONS(3272), + [aux_sym_use_roaming_token1] = ACTIONS(3272), + [aux_sym_user_token1] = ACTIONS(3274), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3272), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3272), + [aux_sym_visual_host_key_token1] = ACTIONS(3272), + [aux_sym_xauth_location_token1] = ACTIONS(3272), }, [561] = { - [ts_builtin_sym_end] = ACTIONS(3425), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3427), - [aux_sym_match_token1] = ACTIONS(3425), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3425), - [aux_sym_address_family_token1] = ACTIONS(3425), - [aux_sym_batch_mode_token1] = ACTIONS(3425), - [aux_sym_bind_address_token1] = ACTIONS(3425), - [aux_sym_bind_interface_token1] = ACTIONS(3425), - [aux_sym_canonical_domains_token1] = ACTIONS(3425), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3425), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3425), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3425), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3425), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3425), - [aux_sym_certificate_file_token1] = ACTIONS(3425), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3425), - [aux_sym_check_host_ip_token1] = ACTIONS(3425), - [aux_sym_ciphers_token1] = ACTIONS(3425), - [aux_sym_cipher_token1] = ACTIONS(3427), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3425), - [aux_sym_compression_token1] = ACTIONS(3425), - [aux_sym_connection_attempts_token1] = ACTIONS(3425), - [aux_sym_connect_timeout_token1] = ACTIONS(3425), - [aux_sym_control_master_token1] = ACTIONS(3425), - [aux_sym_control_path_token1] = ACTIONS(3425), - [aux_sym_control_persist_token1] = ACTIONS(3425), - [aux_sym_dynamic_forward_token1] = ACTIONS(3425), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3425), - [aux_sym_escape_char_token1] = ACTIONS(3425), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3425), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3425), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3425), - [aux_sym_forward_agent_token1] = ACTIONS(3425), - [aux_sym_forward_x11_token1] = ACTIONS(3427), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3425), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3425), - [aux_sym_gateway_ports_token1] = ACTIONS(3425), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3425), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3425), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3425), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3425), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3425), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3425), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3425), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3425), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3425), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3425), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3425), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3425), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3425), - [aux_sym_host_key_alias_token1] = ACTIONS(3425), - [aux_sym_hostname_token1] = ACTIONS(3425), - [aux_sym_identities_only_token1] = ACTIONS(3425), - [aux_sym_identity_agent_token1] = ACTIONS(3425), - [aux_sym_identity_file_token1] = ACTIONS(3425), - [aux_sym_ignore_unknown_token1] = ACTIONS(3425), - [aux_sym_include_token1] = ACTIONS(3425), - [aux_sym_ip_qos_token1] = ACTIONS(3425), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3425), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3425), - [aux_sym_kex_algorithms_token1] = ACTIONS(3425), - [aux_sym_known_hosts_command_token1] = ACTIONS(3425), - [aux_sym_local_command_token1] = ACTIONS(3425), - [aux_sym_local_forward_token1] = ACTIONS(3425), - [aux_sym_log_level_token1] = ACTIONS(3425), - [aux_sym_log_verbose_token1] = ACTIONS(3425), - [aux_sym_macs_token1] = ACTIONS(3425), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3425), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3425), - [aux_sym_password_authentication_token1] = ACTIONS(3425), - [aux_sym_permit_local_command_token1] = ACTIONS(3425), - [aux_sym_permit_remote_open_token1] = ACTIONS(3425), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3425), - [aux_sym_port_token1] = ACTIONS(3425), - [aux_sym_preferred_authentications_token1] = ACTIONS(3425), - [aux_sym_protocol_token1] = ACTIONS(3425), - [aux_sym_proxy_command_token1] = ACTIONS(3425), - [aux_sym_proxy_jump_token1] = ACTIONS(3425), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3425), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3425), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3425), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3425), - [aux_sym_rekey_limit_token1] = ACTIONS(3425), - [aux_sym_remote_command_token1] = ACTIONS(3425), - [aux_sym_remote_forward_token1] = ACTIONS(3425), - [aux_sym_request_tty_token1] = ACTIONS(3425), - [aux_sym_required_rsa_size_token1] = ACTIONS(3425), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3425), - [aux_sym_security_key_provider_token1] = ACTIONS(3425), - [aux_sym_send_env_token1] = ACTIONS(3425), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3425), - [aux_sym_server_alive_interval_token1] = ACTIONS(3425), - [aux_sym_session_type_token1] = ACTIONS(3425), - [aux_sym_set_env_token1] = ACTIONS(3425), - [aux_sym_stdin_null_token1] = ACTIONS(3425), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3425), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3425), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3425), - [aux_sym_syslog_facility_token1] = ACTIONS(3425), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3425), - [aux_sym_keep_alive_token1] = ACTIONS(3425), - [aux_sym_tunnel_token1] = ACTIONS(3427), - [aux_sym_tunnel_device_token1] = ACTIONS(3425), - [aux_sym_update_host_keys_token1] = ACTIONS(3425), - [aux_sym_use_keychain_token1] = ACTIONS(3425), - [aux_sym_use_roaming_token1] = ACTIONS(3425), - [aux_sym_user_token1] = ACTIONS(3427), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3425), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3425), - [aux_sym_visual_host_key_token1] = ACTIONS(3425), - [aux_sym_xauth_location_token1] = ACTIONS(3425), + [ts_builtin_sym_end] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1270), + [aux_sym_match_token1] = ACTIONS(1268), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1268), + [aux_sym_address_family_token1] = ACTIONS(1268), + [aux_sym_batch_mode_token1] = ACTIONS(1268), + [aux_sym_bind_address_token1] = ACTIONS(1268), + [aux_sym_bind_interface_token1] = ACTIONS(1268), + [aux_sym_canonical_domains_token1] = ACTIONS(1268), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1268), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1268), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1268), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1268), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1268), + [aux_sym_certificate_file_token1] = ACTIONS(1268), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1268), + [aux_sym_check_host_ip_token1] = ACTIONS(1268), + [aux_sym_ciphers_token1] = ACTIONS(1268), + [aux_sym_cipher_token1] = ACTIONS(1270), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1268), + [aux_sym_compression_token1] = ACTIONS(1268), + [aux_sym_connection_attempts_token1] = ACTIONS(1268), + [aux_sym_connect_timeout_token1] = ACTIONS(1268), + [aux_sym_control_master_token1] = ACTIONS(1268), + [aux_sym_control_path_token1] = ACTIONS(1268), + [aux_sym_control_persist_token1] = ACTIONS(1268), + [aux_sym_dynamic_forward_token1] = ACTIONS(1268), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1268), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1268), + [aux_sym_escape_char_token1] = ACTIONS(1268), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1268), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1268), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1268), + [aux_sym_forward_agent_token1] = ACTIONS(1268), + [aux_sym_forward_x11_token1] = ACTIONS(1270), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1268), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1268), + [aux_sym_gateway_ports_token1] = ACTIONS(1268), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1268), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1268), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1268), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1268), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1268), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1268), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1268), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1268), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1268), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1268), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1268), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1268), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1268), + [aux_sym_host_key_alias_token1] = ACTIONS(1268), + [aux_sym_hostname_token1] = ACTIONS(1268), + [aux_sym_identities_only_token1] = ACTIONS(1268), + [aux_sym_identity_agent_token1] = ACTIONS(1268), + [aux_sym_identity_file_token1] = ACTIONS(1268), + [aux_sym_ignore_unknown_token1] = ACTIONS(1268), + [aux_sym_include_token1] = ACTIONS(1268), + [aux_sym_ip_qos_token1] = ACTIONS(1268), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1268), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1268), + [aux_sym_kex_algorithms_token1] = ACTIONS(1268), + [aux_sym_known_hosts_command_token1] = ACTIONS(1268), + [aux_sym_local_command_token1] = ACTIONS(1268), + [aux_sym_local_forward_token1] = ACTIONS(1268), + [aux_sym_log_level_token1] = ACTIONS(1268), + [aux_sym_log_verbose_token1] = ACTIONS(1268), + [aux_sym_macs_token1] = ACTIONS(1268), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1268), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1268), + [aux_sym_password_authentication_token1] = ACTIONS(1268), + [aux_sym_permit_local_command_token1] = ACTIONS(1268), + [aux_sym_permit_remote_open_token1] = ACTIONS(1268), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1268), + [aux_sym_port_token1] = ACTIONS(1268), + [aux_sym_preferred_authentications_token1] = ACTIONS(1268), + [aux_sym_protocol_token1] = ACTIONS(1268), + [aux_sym_proxy_command_token1] = ACTIONS(1268), + [aux_sym_proxy_jump_token1] = ACTIONS(1268), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1268), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1268), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1268), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1268), + [aux_sym_rekey_limit_token1] = ACTIONS(1268), + [aux_sym_remote_command_token1] = ACTIONS(1268), + [aux_sym_remote_forward_token1] = ACTIONS(1268), + [aux_sym_request_tty_token1] = ACTIONS(1268), + [aux_sym_required_rsa_size_token1] = ACTIONS(1268), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1268), + [aux_sym_security_key_provider_token1] = ACTIONS(1268), + [aux_sym_send_env_token1] = ACTIONS(1268), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1268), + [aux_sym_server_alive_interval_token1] = ACTIONS(1268), + [aux_sym_session_type_token1] = ACTIONS(1268), + [aux_sym_set_env_token1] = ACTIONS(1268), + [aux_sym_stdin_null_token1] = ACTIONS(1268), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1268), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1268), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1268), + [aux_sym_syslog_facility_token1] = ACTIONS(1268), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1268), + [aux_sym_keep_alive_token1] = ACTIONS(1268), + [aux_sym_tunnel_token1] = ACTIONS(1270), + [aux_sym_tunnel_device_token1] = ACTIONS(1268), + [aux_sym_update_host_keys_token1] = ACTIONS(1268), + [aux_sym_use_keychain_token1] = ACTIONS(1268), + [aux_sym_use_roaming_token1] = ACTIONS(1268), + [aux_sym_user_token1] = ACTIONS(1270), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1268), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1268), + [aux_sym_visual_host_key_token1] = ACTIONS(1268), + [aux_sym_xauth_location_token1] = ACTIONS(1268), }, [562] = { - [ts_builtin_sym_end] = ACTIONS(567), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(569), - [aux_sym_match_token1] = ACTIONS(567), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(567), - [aux_sym_address_family_token1] = ACTIONS(567), - [aux_sym_batch_mode_token1] = ACTIONS(567), - [aux_sym_bind_address_token1] = ACTIONS(567), - [aux_sym_bind_interface_token1] = ACTIONS(567), - [aux_sym_canonical_domains_token1] = ACTIONS(567), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(567), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(567), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(567), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(567), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(567), - [aux_sym_certificate_file_token1] = ACTIONS(567), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(567), - [aux_sym_check_host_ip_token1] = ACTIONS(567), - [aux_sym_ciphers_token1] = ACTIONS(567), - [aux_sym_cipher_token1] = ACTIONS(569), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(567), - [aux_sym_compression_token1] = ACTIONS(567), - [aux_sym_connection_attempts_token1] = ACTIONS(567), - [aux_sym_connect_timeout_token1] = ACTIONS(567), - [aux_sym_control_master_token1] = ACTIONS(567), - [aux_sym_control_path_token1] = ACTIONS(567), - [aux_sym_control_persist_token1] = ACTIONS(567), - [aux_sym_dynamic_forward_token1] = ACTIONS(567), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(567), - [aux_sym_escape_char_token1] = ACTIONS(567), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(567), - [aux_sym_fingerprint_hash_token1] = ACTIONS(567), - [aux_sym_fork_after_authentication_token1] = ACTIONS(567), - [aux_sym_forward_agent_token1] = ACTIONS(567), - [aux_sym_forward_x11_token1] = ACTIONS(569), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(567), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(567), - [aux_sym_gateway_ports_token1] = ACTIONS(567), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(567), - [aux_sym_gssapi_authentication_token1] = ACTIONS(567), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(567), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(567), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(567), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(567), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(567), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(567), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(567), - [aux_sym_hash_known_hosts_token1] = ACTIONS(567), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(567), - [aux_sym_hostbased_authentication_token1] = ACTIONS(567), - [aux_sym_host_key_algorithms_token1] = ACTIONS(567), - [aux_sym_host_key_alias_token1] = ACTIONS(567), - [aux_sym_hostname_token1] = ACTIONS(567), - [aux_sym_identities_only_token1] = ACTIONS(567), - [aux_sym_identity_agent_token1] = ACTIONS(567), - [aux_sym_identity_file_token1] = ACTIONS(567), - [aux_sym_ignore_unknown_token1] = ACTIONS(567), - [aux_sym_include_token1] = ACTIONS(567), - [aux_sym_ip_qos_token1] = ACTIONS(567), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(567), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(567), - [aux_sym_kex_algorithms_token1] = ACTIONS(567), - [aux_sym_known_hosts_command_token1] = ACTIONS(567), - [aux_sym_local_command_token1] = ACTIONS(567), - [aux_sym_local_forward_token1] = ACTIONS(567), - [aux_sym_log_level_token1] = ACTIONS(567), - [aux_sym_log_verbose_token1] = ACTIONS(567), - [aux_sym_macs_token1] = ACTIONS(567), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(567), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(567), - [aux_sym_password_authentication_token1] = ACTIONS(567), - [aux_sym_permit_local_command_token1] = ACTIONS(567), - [aux_sym_permit_remote_open_token1] = ACTIONS(567), - [aux_sym_pkcs11_provider_token1] = ACTIONS(567), - [aux_sym_port_token1] = ACTIONS(567), - [aux_sym_preferred_authentications_token1] = ACTIONS(567), - [aux_sym_protocol_token1] = ACTIONS(567), - [aux_sym_proxy_command_token1] = ACTIONS(567), - [aux_sym_proxy_jump_token1] = ACTIONS(567), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(567), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(567), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(567), - [aux_sym_pubkey_authentication_token1] = ACTIONS(567), - [aux_sym_rekey_limit_token1] = ACTIONS(567), - [aux_sym_remote_command_token1] = ACTIONS(567), - [aux_sym_remote_forward_token1] = ACTIONS(567), - [aux_sym_request_tty_token1] = ACTIONS(567), - [aux_sym_required_rsa_size_token1] = ACTIONS(567), - [aux_sym_revoked_host_keys_token1] = ACTIONS(567), - [aux_sym_security_key_provider_token1] = ACTIONS(567), - [aux_sym_send_env_token1] = ACTIONS(567), - [aux_sym_server_alive_count_max_token1] = ACTIONS(567), - [aux_sym_server_alive_interval_token1] = ACTIONS(567), - [aux_sym_session_type_token1] = ACTIONS(567), - [aux_sym_set_env_token1] = ACTIONS(567), - [aux_sym_stdin_null_token1] = ACTIONS(567), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(567), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(567), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(567), - [aux_sym_syslog_facility_token1] = ACTIONS(567), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(567), - [aux_sym_keep_alive_token1] = ACTIONS(567), - [aux_sym_tunnel_token1] = ACTIONS(569), - [aux_sym_tunnel_device_token1] = ACTIONS(567), - [aux_sym_update_host_keys_token1] = ACTIONS(567), - [aux_sym_use_keychain_token1] = ACTIONS(567), - [aux_sym_use_roaming_token1] = ACTIONS(567), - [aux_sym_user_token1] = ACTIONS(569), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(567), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(567), - [aux_sym_visual_host_key_token1] = ACTIONS(567), - [aux_sym_xauth_location_token1] = ACTIONS(567), + [ts_builtin_sym_end] = ACTIONS(3276), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3278), + [aux_sym_match_token1] = ACTIONS(3276), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3276), + [aux_sym_address_family_token1] = ACTIONS(3276), + [aux_sym_batch_mode_token1] = ACTIONS(3276), + [aux_sym_bind_address_token1] = ACTIONS(3276), + [aux_sym_bind_interface_token1] = ACTIONS(3276), + [aux_sym_canonical_domains_token1] = ACTIONS(3276), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3276), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3276), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3276), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3276), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3276), + [aux_sym_certificate_file_token1] = ACTIONS(3276), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3276), + [aux_sym_check_host_ip_token1] = ACTIONS(3276), + [aux_sym_ciphers_token1] = ACTIONS(3276), + [aux_sym_cipher_token1] = ACTIONS(3278), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3276), + [aux_sym_compression_token1] = ACTIONS(3276), + [aux_sym_connection_attempts_token1] = ACTIONS(3276), + [aux_sym_connect_timeout_token1] = ACTIONS(3276), + [aux_sym_control_master_token1] = ACTIONS(3276), + [aux_sym_control_path_token1] = ACTIONS(3276), + [aux_sym_control_persist_token1] = ACTIONS(3276), + [aux_sym_dynamic_forward_token1] = ACTIONS(3276), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3276), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3276), + [aux_sym_escape_char_token1] = ACTIONS(3276), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3276), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3276), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3276), + [aux_sym_forward_agent_token1] = ACTIONS(3276), + [aux_sym_forward_x11_token1] = ACTIONS(3278), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3276), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3276), + [aux_sym_gateway_ports_token1] = ACTIONS(3276), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3276), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3276), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3276), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3276), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3276), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3276), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3276), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3276), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3276), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3276), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3276), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3276), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3276), + [aux_sym_host_key_alias_token1] = ACTIONS(3276), + [aux_sym_hostname_token1] = ACTIONS(3276), + [aux_sym_identities_only_token1] = ACTIONS(3276), + [aux_sym_identity_agent_token1] = ACTIONS(3276), + [aux_sym_identity_file_token1] = ACTIONS(3276), + [aux_sym_ignore_unknown_token1] = ACTIONS(3276), + [aux_sym_include_token1] = ACTIONS(3276), + [aux_sym_ip_qos_token1] = ACTIONS(3276), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3276), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3276), + [aux_sym_kex_algorithms_token1] = ACTIONS(3276), + [aux_sym_known_hosts_command_token1] = ACTIONS(3276), + [aux_sym_local_command_token1] = ACTIONS(3276), + [aux_sym_local_forward_token1] = ACTIONS(3276), + [aux_sym_log_level_token1] = ACTIONS(3276), + [aux_sym_log_verbose_token1] = ACTIONS(3276), + [aux_sym_macs_token1] = ACTIONS(3276), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3276), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3276), + [aux_sym_password_authentication_token1] = ACTIONS(3276), + [aux_sym_permit_local_command_token1] = ACTIONS(3276), + [aux_sym_permit_remote_open_token1] = ACTIONS(3276), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3276), + [aux_sym_port_token1] = ACTIONS(3276), + [aux_sym_preferred_authentications_token1] = ACTIONS(3276), + [aux_sym_protocol_token1] = ACTIONS(3276), + [aux_sym_proxy_command_token1] = ACTIONS(3276), + [aux_sym_proxy_jump_token1] = ACTIONS(3276), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3276), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3276), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3276), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3276), + [aux_sym_rekey_limit_token1] = ACTIONS(3276), + [aux_sym_remote_command_token1] = ACTIONS(3276), + [aux_sym_remote_forward_token1] = ACTIONS(3276), + [aux_sym_request_tty_token1] = ACTIONS(3276), + [aux_sym_required_rsa_size_token1] = ACTIONS(3276), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3276), + [aux_sym_security_key_provider_token1] = ACTIONS(3276), + [aux_sym_send_env_token1] = ACTIONS(3276), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3276), + [aux_sym_server_alive_interval_token1] = ACTIONS(3276), + [aux_sym_session_type_token1] = ACTIONS(3276), + [aux_sym_set_env_token1] = ACTIONS(3276), + [aux_sym_stdin_null_token1] = ACTIONS(3276), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3276), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3276), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3276), + [aux_sym_syslog_facility_token1] = ACTIONS(3276), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3276), + [aux_sym_keep_alive_token1] = ACTIONS(3276), + [aux_sym_tunnel_token1] = ACTIONS(3278), + [aux_sym_tunnel_device_token1] = ACTIONS(3276), + [aux_sym_update_host_keys_token1] = ACTIONS(3276), + [aux_sym_use_keychain_token1] = ACTIONS(3276), + [aux_sym_use_roaming_token1] = ACTIONS(3276), + [aux_sym_user_token1] = ACTIONS(3278), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3276), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3276), + [aux_sym_visual_host_key_token1] = ACTIONS(3276), + [aux_sym_xauth_location_token1] = ACTIONS(3276), }, [563] = { - [ts_builtin_sym_end] = ACTIONS(573), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(575), - [aux_sym_match_token1] = ACTIONS(573), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(573), - [aux_sym_address_family_token1] = ACTIONS(573), - [aux_sym_batch_mode_token1] = ACTIONS(573), - [aux_sym_bind_address_token1] = ACTIONS(573), - [aux_sym_bind_interface_token1] = ACTIONS(573), - [aux_sym_canonical_domains_token1] = ACTIONS(573), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(573), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(573), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(573), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(573), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(573), - [aux_sym_certificate_file_token1] = ACTIONS(573), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(573), - [aux_sym_check_host_ip_token1] = ACTIONS(573), - [aux_sym_ciphers_token1] = ACTIONS(573), - [aux_sym_cipher_token1] = ACTIONS(575), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(573), - [aux_sym_compression_token1] = ACTIONS(573), - [aux_sym_connection_attempts_token1] = ACTIONS(573), - [aux_sym_connect_timeout_token1] = ACTIONS(573), - [aux_sym_control_master_token1] = ACTIONS(573), - [aux_sym_control_path_token1] = ACTIONS(573), - [aux_sym_control_persist_token1] = ACTIONS(573), - [aux_sym_dynamic_forward_token1] = ACTIONS(573), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(573), - [aux_sym_escape_char_token1] = ACTIONS(573), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(573), - [aux_sym_fingerprint_hash_token1] = ACTIONS(573), - [aux_sym_fork_after_authentication_token1] = ACTIONS(573), - [aux_sym_forward_agent_token1] = ACTIONS(573), - [aux_sym_forward_x11_token1] = ACTIONS(575), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(573), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(573), - [aux_sym_gateway_ports_token1] = ACTIONS(573), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(573), - [aux_sym_gssapi_authentication_token1] = ACTIONS(573), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(573), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(573), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(573), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(573), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(573), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(573), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(573), - [aux_sym_hash_known_hosts_token1] = ACTIONS(573), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(573), - [aux_sym_hostbased_authentication_token1] = ACTIONS(573), - [aux_sym_host_key_algorithms_token1] = ACTIONS(573), - [aux_sym_host_key_alias_token1] = ACTIONS(573), - [aux_sym_hostname_token1] = ACTIONS(573), - [aux_sym_identities_only_token1] = ACTIONS(573), - [aux_sym_identity_agent_token1] = ACTIONS(573), - [aux_sym_identity_file_token1] = ACTIONS(573), - [aux_sym_ignore_unknown_token1] = ACTIONS(573), - [aux_sym_include_token1] = ACTIONS(573), - [aux_sym_ip_qos_token1] = ACTIONS(573), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(573), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(573), - [aux_sym_kex_algorithms_token1] = ACTIONS(573), - [aux_sym_known_hosts_command_token1] = ACTIONS(573), - [aux_sym_local_command_token1] = ACTIONS(573), - [aux_sym_local_forward_token1] = ACTIONS(573), - [aux_sym_log_level_token1] = ACTIONS(573), - [aux_sym_log_verbose_token1] = ACTIONS(573), - [aux_sym_macs_token1] = ACTIONS(573), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(573), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(573), - [aux_sym_password_authentication_token1] = ACTIONS(573), - [aux_sym_permit_local_command_token1] = ACTIONS(573), - [aux_sym_permit_remote_open_token1] = ACTIONS(573), - [aux_sym_pkcs11_provider_token1] = ACTIONS(573), - [aux_sym_port_token1] = ACTIONS(573), - [aux_sym_preferred_authentications_token1] = ACTIONS(573), - [aux_sym_protocol_token1] = ACTIONS(573), - [aux_sym_proxy_command_token1] = ACTIONS(573), - [aux_sym_proxy_jump_token1] = ACTIONS(573), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(573), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(573), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(573), - [aux_sym_pubkey_authentication_token1] = ACTIONS(573), - [aux_sym_rekey_limit_token1] = ACTIONS(573), - [aux_sym_remote_command_token1] = ACTIONS(573), - [aux_sym_remote_forward_token1] = ACTIONS(573), - [aux_sym_request_tty_token1] = ACTIONS(573), - [aux_sym_required_rsa_size_token1] = ACTIONS(573), - [aux_sym_revoked_host_keys_token1] = ACTIONS(573), - [aux_sym_security_key_provider_token1] = ACTIONS(573), - [aux_sym_send_env_token1] = ACTIONS(573), - [aux_sym_server_alive_count_max_token1] = ACTIONS(573), - [aux_sym_server_alive_interval_token1] = ACTIONS(573), - [aux_sym_session_type_token1] = ACTIONS(573), - [aux_sym_set_env_token1] = ACTIONS(573), - [aux_sym_stdin_null_token1] = ACTIONS(573), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(573), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(573), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(573), - [aux_sym_syslog_facility_token1] = ACTIONS(573), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(573), - [aux_sym_keep_alive_token1] = ACTIONS(573), - [aux_sym_tunnel_token1] = ACTIONS(575), - [aux_sym_tunnel_device_token1] = ACTIONS(573), - [aux_sym_update_host_keys_token1] = ACTIONS(573), - [aux_sym_use_keychain_token1] = ACTIONS(573), - [aux_sym_use_roaming_token1] = ACTIONS(573), - [aux_sym_user_token1] = ACTIONS(575), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(573), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(573), - [aux_sym_visual_host_key_token1] = ACTIONS(573), - [aux_sym_xauth_location_token1] = ACTIONS(573), + [ts_builtin_sym_end] = ACTIONS(3280), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3282), + [aux_sym_match_token1] = ACTIONS(3280), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3280), + [aux_sym_address_family_token1] = ACTIONS(3280), + [aux_sym_batch_mode_token1] = ACTIONS(3280), + [aux_sym_bind_address_token1] = ACTIONS(3280), + [aux_sym_bind_interface_token1] = ACTIONS(3280), + [aux_sym_canonical_domains_token1] = ACTIONS(3280), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3280), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3280), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3280), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3280), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3280), + [aux_sym_certificate_file_token1] = ACTIONS(3280), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3280), + [aux_sym_check_host_ip_token1] = ACTIONS(3280), + [aux_sym_ciphers_token1] = ACTIONS(3280), + [aux_sym_cipher_token1] = ACTIONS(3282), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3280), + [aux_sym_compression_token1] = ACTIONS(3280), + [aux_sym_connection_attempts_token1] = ACTIONS(3280), + [aux_sym_connect_timeout_token1] = ACTIONS(3280), + [aux_sym_control_master_token1] = ACTIONS(3280), + [aux_sym_control_path_token1] = ACTIONS(3280), + [aux_sym_control_persist_token1] = ACTIONS(3280), + [aux_sym_dynamic_forward_token1] = ACTIONS(3280), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3280), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3280), + [aux_sym_escape_char_token1] = ACTIONS(3280), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3280), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3280), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3280), + [aux_sym_forward_agent_token1] = ACTIONS(3280), + [aux_sym_forward_x11_token1] = ACTIONS(3282), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3280), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3280), + [aux_sym_gateway_ports_token1] = ACTIONS(3280), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3280), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3280), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3280), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3280), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3280), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3280), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3280), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3280), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3280), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3280), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3280), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3280), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3280), + [aux_sym_host_key_alias_token1] = ACTIONS(3280), + [aux_sym_hostname_token1] = ACTIONS(3280), + [aux_sym_identities_only_token1] = ACTIONS(3280), + [aux_sym_identity_agent_token1] = ACTIONS(3280), + [aux_sym_identity_file_token1] = ACTIONS(3280), + [aux_sym_ignore_unknown_token1] = ACTIONS(3280), + [aux_sym_include_token1] = ACTIONS(3280), + [aux_sym_ip_qos_token1] = ACTIONS(3280), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3280), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3280), + [aux_sym_kex_algorithms_token1] = ACTIONS(3280), + [aux_sym_known_hosts_command_token1] = ACTIONS(3280), + [aux_sym_local_command_token1] = ACTIONS(3280), + [aux_sym_local_forward_token1] = ACTIONS(3280), + [aux_sym_log_level_token1] = ACTIONS(3280), + [aux_sym_log_verbose_token1] = ACTIONS(3280), + [aux_sym_macs_token1] = ACTIONS(3280), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3280), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3280), + [aux_sym_password_authentication_token1] = ACTIONS(3280), + [aux_sym_permit_local_command_token1] = ACTIONS(3280), + [aux_sym_permit_remote_open_token1] = ACTIONS(3280), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3280), + [aux_sym_port_token1] = ACTIONS(3280), + [aux_sym_preferred_authentications_token1] = ACTIONS(3280), + [aux_sym_protocol_token1] = ACTIONS(3280), + [aux_sym_proxy_command_token1] = ACTIONS(3280), + [aux_sym_proxy_jump_token1] = ACTIONS(3280), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3280), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3280), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3280), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3280), + [aux_sym_rekey_limit_token1] = ACTIONS(3280), + [aux_sym_remote_command_token1] = ACTIONS(3280), + [aux_sym_remote_forward_token1] = ACTIONS(3280), + [aux_sym_request_tty_token1] = ACTIONS(3280), + [aux_sym_required_rsa_size_token1] = ACTIONS(3280), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3280), + [aux_sym_security_key_provider_token1] = ACTIONS(3280), + [aux_sym_send_env_token1] = ACTIONS(3280), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3280), + [aux_sym_server_alive_interval_token1] = ACTIONS(3280), + [aux_sym_session_type_token1] = ACTIONS(3280), + [aux_sym_set_env_token1] = ACTIONS(3280), + [aux_sym_stdin_null_token1] = ACTIONS(3280), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3280), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3280), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3280), + [aux_sym_syslog_facility_token1] = ACTIONS(3280), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3280), + [aux_sym_keep_alive_token1] = ACTIONS(3280), + [aux_sym_tunnel_token1] = ACTIONS(3282), + [aux_sym_tunnel_device_token1] = ACTIONS(3280), + [aux_sym_update_host_keys_token1] = ACTIONS(3280), + [aux_sym_use_keychain_token1] = ACTIONS(3280), + [aux_sym_use_roaming_token1] = ACTIONS(3280), + [aux_sym_user_token1] = ACTIONS(3282), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3280), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3280), + [aux_sym_visual_host_key_token1] = ACTIONS(3280), + [aux_sym_xauth_location_token1] = ACTIONS(3280), }, [564] = { - [ts_builtin_sym_end] = ACTIONS(579), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(581), - [aux_sym_match_token1] = ACTIONS(579), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(579), - [aux_sym_address_family_token1] = ACTIONS(579), - [aux_sym_batch_mode_token1] = ACTIONS(579), - [aux_sym_bind_address_token1] = ACTIONS(579), - [aux_sym_bind_interface_token1] = ACTIONS(579), - [aux_sym_canonical_domains_token1] = ACTIONS(579), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(579), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(579), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(579), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(579), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(579), - [aux_sym_certificate_file_token1] = ACTIONS(579), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(579), - [aux_sym_check_host_ip_token1] = ACTIONS(579), - [aux_sym_ciphers_token1] = ACTIONS(579), - [aux_sym_cipher_token1] = ACTIONS(581), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(579), - [aux_sym_compression_token1] = ACTIONS(579), - [aux_sym_connection_attempts_token1] = ACTIONS(579), - [aux_sym_connect_timeout_token1] = ACTIONS(579), - [aux_sym_control_master_token1] = ACTIONS(579), - [aux_sym_control_path_token1] = ACTIONS(579), - [aux_sym_control_persist_token1] = ACTIONS(579), - [aux_sym_dynamic_forward_token1] = ACTIONS(579), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(579), - [aux_sym_escape_char_token1] = ACTIONS(579), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(579), - [aux_sym_fingerprint_hash_token1] = ACTIONS(579), - [aux_sym_fork_after_authentication_token1] = ACTIONS(579), - [aux_sym_forward_agent_token1] = ACTIONS(579), - [aux_sym_forward_x11_token1] = ACTIONS(581), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(579), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(579), - [aux_sym_gateway_ports_token1] = ACTIONS(579), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(579), - [aux_sym_gssapi_authentication_token1] = ACTIONS(579), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(579), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(579), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(579), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(579), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(579), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(579), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(579), - [aux_sym_hash_known_hosts_token1] = ACTIONS(579), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(579), - [aux_sym_hostbased_authentication_token1] = ACTIONS(579), - [aux_sym_host_key_algorithms_token1] = ACTIONS(579), - [aux_sym_host_key_alias_token1] = ACTIONS(579), - [aux_sym_hostname_token1] = ACTIONS(579), - [aux_sym_identities_only_token1] = ACTIONS(579), - [aux_sym_identity_agent_token1] = ACTIONS(579), - [aux_sym_identity_file_token1] = ACTIONS(579), - [aux_sym_ignore_unknown_token1] = ACTIONS(579), - [aux_sym_include_token1] = ACTIONS(579), - [aux_sym_ip_qos_token1] = ACTIONS(579), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(579), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(579), - [aux_sym_kex_algorithms_token1] = ACTIONS(579), - [aux_sym_known_hosts_command_token1] = ACTIONS(579), - [aux_sym_local_command_token1] = ACTIONS(579), - [aux_sym_local_forward_token1] = ACTIONS(579), - [aux_sym_log_level_token1] = ACTIONS(579), - [aux_sym_log_verbose_token1] = ACTIONS(579), - [aux_sym_macs_token1] = ACTIONS(579), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(579), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(579), - [aux_sym_password_authentication_token1] = ACTIONS(579), - [aux_sym_permit_local_command_token1] = ACTIONS(579), - [aux_sym_permit_remote_open_token1] = ACTIONS(579), - [aux_sym_pkcs11_provider_token1] = ACTIONS(579), - [aux_sym_port_token1] = ACTIONS(579), - [aux_sym_preferred_authentications_token1] = ACTIONS(579), - [aux_sym_protocol_token1] = ACTIONS(579), - [aux_sym_proxy_command_token1] = ACTIONS(579), - [aux_sym_proxy_jump_token1] = ACTIONS(579), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(579), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(579), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(579), - [aux_sym_pubkey_authentication_token1] = ACTIONS(579), - [aux_sym_rekey_limit_token1] = ACTIONS(579), - [aux_sym_remote_command_token1] = ACTIONS(579), - [aux_sym_remote_forward_token1] = ACTIONS(579), - [aux_sym_request_tty_token1] = ACTIONS(579), - [aux_sym_required_rsa_size_token1] = ACTIONS(579), - [aux_sym_revoked_host_keys_token1] = ACTIONS(579), - [aux_sym_security_key_provider_token1] = ACTIONS(579), - [aux_sym_send_env_token1] = ACTIONS(579), - [aux_sym_server_alive_count_max_token1] = ACTIONS(579), - [aux_sym_server_alive_interval_token1] = ACTIONS(579), - [aux_sym_session_type_token1] = ACTIONS(579), - [aux_sym_set_env_token1] = ACTIONS(579), - [aux_sym_stdin_null_token1] = ACTIONS(579), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(579), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(579), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(579), - [aux_sym_syslog_facility_token1] = ACTIONS(579), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(579), - [aux_sym_keep_alive_token1] = ACTIONS(579), - [aux_sym_tunnel_token1] = ACTIONS(581), - [aux_sym_tunnel_device_token1] = ACTIONS(579), - [aux_sym_update_host_keys_token1] = ACTIONS(579), - [aux_sym_use_keychain_token1] = ACTIONS(579), - [aux_sym_use_roaming_token1] = ACTIONS(579), - [aux_sym_user_token1] = ACTIONS(581), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(579), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(579), - [aux_sym_visual_host_key_token1] = ACTIONS(579), - [aux_sym_xauth_location_token1] = ACTIONS(579), + [ts_builtin_sym_end] = ACTIONS(1274), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1276), + [aux_sym_match_token1] = ACTIONS(1274), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1274), + [aux_sym_address_family_token1] = ACTIONS(1274), + [aux_sym_batch_mode_token1] = ACTIONS(1274), + [aux_sym_bind_address_token1] = ACTIONS(1274), + [aux_sym_bind_interface_token1] = ACTIONS(1274), + [aux_sym_canonical_domains_token1] = ACTIONS(1274), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1274), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1274), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1274), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1274), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1274), + [aux_sym_certificate_file_token1] = ACTIONS(1274), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1274), + [aux_sym_check_host_ip_token1] = ACTIONS(1274), + [aux_sym_ciphers_token1] = ACTIONS(1274), + [aux_sym_cipher_token1] = ACTIONS(1276), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1274), + [aux_sym_compression_token1] = ACTIONS(1274), + [aux_sym_connection_attempts_token1] = ACTIONS(1274), + [aux_sym_connect_timeout_token1] = ACTIONS(1274), + [aux_sym_control_master_token1] = ACTIONS(1274), + [aux_sym_control_path_token1] = ACTIONS(1274), + [aux_sym_control_persist_token1] = ACTIONS(1274), + [aux_sym_dynamic_forward_token1] = ACTIONS(1274), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1274), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1274), + [aux_sym_escape_char_token1] = ACTIONS(1274), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1274), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1274), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1274), + [aux_sym_forward_agent_token1] = ACTIONS(1274), + [aux_sym_forward_x11_token1] = ACTIONS(1276), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1274), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1274), + [aux_sym_gateway_ports_token1] = ACTIONS(1274), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1274), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1274), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1274), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1274), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1274), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1274), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1274), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1274), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1274), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1274), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1274), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1274), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1274), + [aux_sym_host_key_alias_token1] = ACTIONS(1274), + [aux_sym_hostname_token1] = ACTIONS(1274), + [aux_sym_identities_only_token1] = ACTIONS(1274), + [aux_sym_identity_agent_token1] = ACTIONS(1274), + [aux_sym_identity_file_token1] = ACTIONS(1274), + [aux_sym_ignore_unknown_token1] = ACTIONS(1274), + [aux_sym_include_token1] = ACTIONS(1274), + [aux_sym_ip_qos_token1] = ACTIONS(1274), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1274), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1274), + [aux_sym_kex_algorithms_token1] = ACTIONS(1274), + [aux_sym_known_hosts_command_token1] = ACTIONS(1274), + [aux_sym_local_command_token1] = ACTIONS(1274), + [aux_sym_local_forward_token1] = ACTIONS(1274), + [aux_sym_log_level_token1] = ACTIONS(1274), + [aux_sym_log_verbose_token1] = ACTIONS(1274), + [aux_sym_macs_token1] = ACTIONS(1274), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1274), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1274), + [aux_sym_password_authentication_token1] = ACTIONS(1274), + [aux_sym_permit_local_command_token1] = ACTIONS(1274), + [aux_sym_permit_remote_open_token1] = ACTIONS(1274), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1274), + [aux_sym_port_token1] = ACTIONS(1274), + [aux_sym_preferred_authentications_token1] = ACTIONS(1274), + [aux_sym_protocol_token1] = ACTIONS(1274), + [aux_sym_proxy_command_token1] = ACTIONS(1274), + [aux_sym_proxy_jump_token1] = ACTIONS(1274), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1274), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1274), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1274), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1274), + [aux_sym_rekey_limit_token1] = ACTIONS(1274), + [aux_sym_remote_command_token1] = ACTIONS(1274), + [aux_sym_remote_forward_token1] = ACTIONS(1274), + [aux_sym_request_tty_token1] = ACTIONS(1274), + [aux_sym_required_rsa_size_token1] = ACTIONS(1274), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1274), + [aux_sym_security_key_provider_token1] = ACTIONS(1274), + [aux_sym_send_env_token1] = ACTIONS(1274), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1274), + [aux_sym_server_alive_interval_token1] = ACTIONS(1274), + [aux_sym_session_type_token1] = ACTIONS(1274), + [aux_sym_set_env_token1] = ACTIONS(1274), + [aux_sym_stdin_null_token1] = ACTIONS(1274), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1274), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1274), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1274), + [aux_sym_syslog_facility_token1] = ACTIONS(1274), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1274), + [aux_sym_keep_alive_token1] = ACTIONS(1274), + [aux_sym_tunnel_token1] = ACTIONS(1276), + [aux_sym_tunnel_device_token1] = ACTIONS(1274), + [aux_sym_update_host_keys_token1] = ACTIONS(1274), + [aux_sym_use_keychain_token1] = ACTIONS(1274), + [aux_sym_use_roaming_token1] = ACTIONS(1274), + [aux_sym_user_token1] = ACTIONS(1276), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1274), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1274), + [aux_sym_visual_host_key_token1] = ACTIONS(1274), + [aux_sym_xauth_location_token1] = ACTIONS(1274), }, [565] = { - [ts_builtin_sym_end] = ACTIONS(585), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(587), - [aux_sym_match_token1] = ACTIONS(585), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(585), - [aux_sym_address_family_token1] = ACTIONS(585), - [aux_sym_batch_mode_token1] = ACTIONS(585), - [aux_sym_bind_address_token1] = ACTIONS(585), - [aux_sym_bind_interface_token1] = ACTIONS(585), - [aux_sym_canonical_domains_token1] = ACTIONS(585), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(585), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(585), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(585), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(585), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(585), - [aux_sym_certificate_file_token1] = ACTIONS(585), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(585), - [aux_sym_check_host_ip_token1] = ACTIONS(585), - [aux_sym_ciphers_token1] = ACTIONS(585), - [aux_sym_cipher_token1] = ACTIONS(587), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(585), - [aux_sym_compression_token1] = ACTIONS(585), - [aux_sym_connection_attempts_token1] = ACTIONS(585), - [aux_sym_connect_timeout_token1] = ACTIONS(585), - [aux_sym_control_master_token1] = ACTIONS(585), - [aux_sym_control_path_token1] = ACTIONS(585), - [aux_sym_control_persist_token1] = ACTIONS(585), - [aux_sym_dynamic_forward_token1] = ACTIONS(585), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(585), - [aux_sym_escape_char_token1] = ACTIONS(585), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(585), - [aux_sym_fingerprint_hash_token1] = ACTIONS(585), - [aux_sym_fork_after_authentication_token1] = ACTIONS(585), - [aux_sym_forward_agent_token1] = ACTIONS(585), - [aux_sym_forward_x11_token1] = ACTIONS(587), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(585), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(585), - [aux_sym_gateway_ports_token1] = ACTIONS(585), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(585), - [aux_sym_gssapi_authentication_token1] = ACTIONS(585), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(585), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(585), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(585), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(585), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(585), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(585), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(585), - [aux_sym_hash_known_hosts_token1] = ACTIONS(585), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(585), - [aux_sym_hostbased_authentication_token1] = ACTIONS(585), - [aux_sym_host_key_algorithms_token1] = ACTIONS(585), - [aux_sym_host_key_alias_token1] = ACTIONS(585), - [aux_sym_hostname_token1] = ACTIONS(585), - [aux_sym_identities_only_token1] = ACTIONS(585), - [aux_sym_identity_agent_token1] = ACTIONS(585), - [aux_sym_identity_file_token1] = ACTIONS(585), - [aux_sym_ignore_unknown_token1] = ACTIONS(585), - [aux_sym_include_token1] = ACTIONS(585), - [aux_sym_ip_qos_token1] = ACTIONS(585), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(585), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(585), - [aux_sym_kex_algorithms_token1] = ACTIONS(585), - [aux_sym_known_hosts_command_token1] = ACTIONS(585), - [aux_sym_local_command_token1] = ACTIONS(585), - [aux_sym_local_forward_token1] = ACTIONS(585), - [aux_sym_log_level_token1] = ACTIONS(585), - [aux_sym_log_verbose_token1] = ACTIONS(585), - [aux_sym_macs_token1] = ACTIONS(585), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(585), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(585), - [aux_sym_password_authentication_token1] = ACTIONS(585), - [aux_sym_permit_local_command_token1] = ACTIONS(585), - [aux_sym_permit_remote_open_token1] = ACTIONS(585), - [aux_sym_pkcs11_provider_token1] = ACTIONS(585), - [aux_sym_port_token1] = ACTIONS(585), - [aux_sym_preferred_authentications_token1] = ACTIONS(585), - [aux_sym_protocol_token1] = ACTIONS(585), - [aux_sym_proxy_command_token1] = ACTIONS(585), - [aux_sym_proxy_jump_token1] = ACTIONS(585), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(585), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(585), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(585), - [aux_sym_pubkey_authentication_token1] = ACTIONS(585), - [aux_sym_rekey_limit_token1] = ACTIONS(585), - [aux_sym_remote_command_token1] = ACTIONS(585), - [aux_sym_remote_forward_token1] = ACTIONS(585), - [aux_sym_request_tty_token1] = ACTIONS(585), - [aux_sym_required_rsa_size_token1] = ACTIONS(585), - [aux_sym_revoked_host_keys_token1] = ACTIONS(585), - [aux_sym_security_key_provider_token1] = ACTIONS(585), - [aux_sym_send_env_token1] = ACTIONS(585), - [aux_sym_server_alive_count_max_token1] = ACTIONS(585), - [aux_sym_server_alive_interval_token1] = ACTIONS(585), - [aux_sym_session_type_token1] = ACTIONS(585), - [aux_sym_set_env_token1] = ACTIONS(585), - [aux_sym_stdin_null_token1] = ACTIONS(585), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(585), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(585), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(585), - [aux_sym_syslog_facility_token1] = ACTIONS(585), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(585), - [aux_sym_keep_alive_token1] = ACTIONS(585), - [aux_sym_tunnel_token1] = ACTIONS(587), - [aux_sym_tunnel_device_token1] = ACTIONS(585), - [aux_sym_update_host_keys_token1] = ACTIONS(585), - [aux_sym_use_keychain_token1] = ACTIONS(585), - [aux_sym_use_roaming_token1] = ACTIONS(585), - [aux_sym_user_token1] = ACTIONS(587), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(585), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(585), - [aux_sym_visual_host_key_token1] = ACTIONS(585), - [aux_sym_xauth_location_token1] = ACTIONS(585), + [ts_builtin_sym_end] = ACTIONS(1280), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1282), + [aux_sym_match_token1] = ACTIONS(1280), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1280), + [aux_sym_address_family_token1] = ACTIONS(1280), + [aux_sym_batch_mode_token1] = ACTIONS(1280), + [aux_sym_bind_address_token1] = ACTIONS(1280), + [aux_sym_bind_interface_token1] = ACTIONS(1280), + [aux_sym_canonical_domains_token1] = ACTIONS(1280), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1280), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1280), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1280), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1280), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1280), + [aux_sym_certificate_file_token1] = ACTIONS(1280), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1280), + [aux_sym_check_host_ip_token1] = ACTIONS(1280), + [aux_sym_ciphers_token1] = ACTIONS(1280), + [aux_sym_cipher_token1] = ACTIONS(1282), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1280), + [aux_sym_compression_token1] = ACTIONS(1280), + [aux_sym_connection_attempts_token1] = ACTIONS(1280), + [aux_sym_connect_timeout_token1] = ACTIONS(1280), + [aux_sym_control_master_token1] = ACTIONS(1280), + [aux_sym_control_path_token1] = ACTIONS(1280), + [aux_sym_control_persist_token1] = ACTIONS(1280), + [aux_sym_dynamic_forward_token1] = ACTIONS(1280), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1280), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1280), + [aux_sym_escape_char_token1] = ACTIONS(1280), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1280), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1280), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1280), + [aux_sym_forward_agent_token1] = ACTIONS(1280), + [aux_sym_forward_x11_token1] = ACTIONS(1282), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1280), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1280), + [aux_sym_gateway_ports_token1] = ACTIONS(1280), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1280), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1280), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1280), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1280), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1280), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1280), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1280), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1280), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1280), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1280), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1280), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1280), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1280), + [aux_sym_host_key_alias_token1] = ACTIONS(1280), + [aux_sym_hostname_token1] = ACTIONS(1280), + [aux_sym_identities_only_token1] = ACTIONS(1280), + [aux_sym_identity_agent_token1] = ACTIONS(1280), + [aux_sym_identity_file_token1] = ACTIONS(1280), + [aux_sym_ignore_unknown_token1] = ACTIONS(1280), + [aux_sym_include_token1] = ACTIONS(1280), + [aux_sym_ip_qos_token1] = ACTIONS(1280), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1280), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1280), + [aux_sym_kex_algorithms_token1] = ACTIONS(1280), + [aux_sym_known_hosts_command_token1] = ACTIONS(1280), + [aux_sym_local_command_token1] = ACTIONS(1280), + [aux_sym_local_forward_token1] = ACTIONS(1280), + [aux_sym_log_level_token1] = ACTIONS(1280), + [aux_sym_log_verbose_token1] = ACTIONS(1280), + [aux_sym_macs_token1] = ACTIONS(1280), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1280), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1280), + [aux_sym_password_authentication_token1] = ACTIONS(1280), + [aux_sym_permit_local_command_token1] = ACTIONS(1280), + [aux_sym_permit_remote_open_token1] = ACTIONS(1280), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1280), + [aux_sym_port_token1] = ACTIONS(1280), + [aux_sym_preferred_authentications_token1] = ACTIONS(1280), + [aux_sym_protocol_token1] = ACTIONS(1280), + [aux_sym_proxy_command_token1] = ACTIONS(1280), + [aux_sym_proxy_jump_token1] = ACTIONS(1280), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1280), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1280), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1280), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1280), + [aux_sym_rekey_limit_token1] = ACTIONS(1280), + [aux_sym_remote_command_token1] = ACTIONS(1280), + [aux_sym_remote_forward_token1] = ACTIONS(1280), + [aux_sym_request_tty_token1] = ACTIONS(1280), + [aux_sym_required_rsa_size_token1] = ACTIONS(1280), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1280), + [aux_sym_security_key_provider_token1] = ACTIONS(1280), + [aux_sym_send_env_token1] = ACTIONS(1280), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1280), + [aux_sym_server_alive_interval_token1] = ACTIONS(1280), + [aux_sym_session_type_token1] = ACTIONS(1280), + [aux_sym_set_env_token1] = ACTIONS(1280), + [aux_sym_stdin_null_token1] = ACTIONS(1280), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1280), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1280), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1280), + [aux_sym_syslog_facility_token1] = ACTIONS(1280), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1280), + [aux_sym_keep_alive_token1] = ACTIONS(1280), + [aux_sym_tunnel_token1] = ACTIONS(1282), + [aux_sym_tunnel_device_token1] = ACTIONS(1280), + [aux_sym_update_host_keys_token1] = ACTIONS(1280), + [aux_sym_use_keychain_token1] = ACTIONS(1280), + [aux_sym_use_roaming_token1] = ACTIONS(1280), + [aux_sym_user_token1] = ACTIONS(1282), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1280), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1280), + [aux_sym_visual_host_key_token1] = ACTIONS(1280), + [aux_sym_xauth_location_token1] = ACTIONS(1280), }, [566] = { - [ts_builtin_sym_end] = ACTIONS(591), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(593), - [aux_sym_match_token1] = ACTIONS(591), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(591), - [aux_sym_address_family_token1] = ACTIONS(591), - [aux_sym_batch_mode_token1] = ACTIONS(591), - [aux_sym_bind_address_token1] = ACTIONS(591), - [aux_sym_bind_interface_token1] = ACTIONS(591), - [aux_sym_canonical_domains_token1] = ACTIONS(591), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(591), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(591), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(591), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(591), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(591), - [aux_sym_certificate_file_token1] = ACTIONS(591), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(591), - [aux_sym_check_host_ip_token1] = ACTIONS(591), - [aux_sym_ciphers_token1] = ACTIONS(591), - [aux_sym_cipher_token1] = ACTIONS(593), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(591), - [aux_sym_compression_token1] = ACTIONS(591), - [aux_sym_connection_attempts_token1] = ACTIONS(591), - [aux_sym_connect_timeout_token1] = ACTIONS(591), - [aux_sym_control_master_token1] = ACTIONS(591), - [aux_sym_control_path_token1] = ACTIONS(591), - [aux_sym_control_persist_token1] = ACTIONS(591), - [aux_sym_dynamic_forward_token1] = ACTIONS(591), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(591), - [aux_sym_escape_char_token1] = ACTIONS(591), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(591), - [aux_sym_fingerprint_hash_token1] = ACTIONS(591), - [aux_sym_fork_after_authentication_token1] = ACTIONS(591), - [aux_sym_forward_agent_token1] = ACTIONS(591), - [aux_sym_forward_x11_token1] = ACTIONS(593), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(591), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(591), - [aux_sym_gateway_ports_token1] = ACTIONS(591), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(591), - [aux_sym_gssapi_authentication_token1] = ACTIONS(591), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(591), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(591), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(591), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(591), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(591), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(591), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(591), - [aux_sym_hash_known_hosts_token1] = ACTIONS(591), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(591), - [aux_sym_hostbased_authentication_token1] = ACTIONS(591), - [aux_sym_host_key_algorithms_token1] = ACTIONS(591), - [aux_sym_host_key_alias_token1] = ACTIONS(591), - [aux_sym_hostname_token1] = ACTIONS(591), - [aux_sym_identities_only_token1] = ACTIONS(591), - [aux_sym_identity_agent_token1] = ACTIONS(591), - [aux_sym_identity_file_token1] = ACTIONS(591), - [aux_sym_ignore_unknown_token1] = ACTIONS(591), - [aux_sym_include_token1] = ACTIONS(591), - [aux_sym_ip_qos_token1] = ACTIONS(591), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(591), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(591), - [aux_sym_kex_algorithms_token1] = ACTIONS(591), - [aux_sym_known_hosts_command_token1] = ACTIONS(591), - [aux_sym_local_command_token1] = ACTIONS(591), - [aux_sym_local_forward_token1] = ACTIONS(591), - [aux_sym_log_level_token1] = ACTIONS(591), - [aux_sym_log_verbose_token1] = ACTIONS(591), - [aux_sym_macs_token1] = ACTIONS(591), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(591), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(591), - [aux_sym_password_authentication_token1] = ACTIONS(591), - [aux_sym_permit_local_command_token1] = ACTIONS(591), - [aux_sym_permit_remote_open_token1] = ACTIONS(591), - [aux_sym_pkcs11_provider_token1] = ACTIONS(591), - [aux_sym_port_token1] = ACTIONS(591), - [aux_sym_preferred_authentications_token1] = ACTIONS(591), - [aux_sym_protocol_token1] = ACTIONS(591), - [aux_sym_proxy_command_token1] = ACTIONS(591), - [aux_sym_proxy_jump_token1] = ACTIONS(591), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(591), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(591), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(591), - [aux_sym_pubkey_authentication_token1] = ACTIONS(591), - [aux_sym_rekey_limit_token1] = ACTIONS(591), - [aux_sym_remote_command_token1] = ACTIONS(591), - [aux_sym_remote_forward_token1] = ACTIONS(591), - [aux_sym_request_tty_token1] = ACTIONS(591), - [aux_sym_required_rsa_size_token1] = ACTIONS(591), - [aux_sym_revoked_host_keys_token1] = ACTIONS(591), - [aux_sym_security_key_provider_token1] = ACTIONS(591), - [aux_sym_send_env_token1] = ACTIONS(591), - [aux_sym_server_alive_count_max_token1] = ACTIONS(591), - [aux_sym_server_alive_interval_token1] = ACTIONS(591), - [aux_sym_session_type_token1] = ACTIONS(591), - [aux_sym_set_env_token1] = ACTIONS(591), - [aux_sym_stdin_null_token1] = ACTIONS(591), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(591), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(591), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(591), - [aux_sym_syslog_facility_token1] = ACTIONS(591), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(591), - [aux_sym_keep_alive_token1] = ACTIONS(591), - [aux_sym_tunnel_token1] = ACTIONS(593), - [aux_sym_tunnel_device_token1] = ACTIONS(591), - [aux_sym_update_host_keys_token1] = ACTIONS(591), - [aux_sym_use_keychain_token1] = ACTIONS(591), - [aux_sym_use_roaming_token1] = ACTIONS(591), - [aux_sym_user_token1] = ACTIONS(593), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(591), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(591), - [aux_sym_visual_host_key_token1] = ACTIONS(591), - [aux_sym_xauth_location_token1] = ACTIONS(591), + [ts_builtin_sym_end] = ACTIONS(3284), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3286), + [aux_sym_match_token1] = ACTIONS(3284), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3284), + [aux_sym_address_family_token1] = ACTIONS(3284), + [aux_sym_batch_mode_token1] = ACTIONS(3284), + [aux_sym_bind_address_token1] = ACTIONS(3284), + [aux_sym_bind_interface_token1] = ACTIONS(3284), + [aux_sym_canonical_domains_token1] = ACTIONS(3284), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3284), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3284), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3284), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3284), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3284), + [aux_sym_certificate_file_token1] = ACTIONS(3284), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3284), + [aux_sym_check_host_ip_token1] = ACTIONS(3284), + [aux_sym_ciphers_token1] = ACTIONS(3284), + [aux_sym_cipher_token1] = ACTIONS(3286), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3284), + [aux_sym_compression_token1] = ACTIONS(3284), + [aux_sym_connection_attempts_token1] = ACTIONS(3284), + [aux_sym_connect_timeout_token1] = ACTIONS(3284), + [aux_sym_control_master_token1] = ACTIONS(3284), + [aux_sym_control_path_token1] = ACTIONS(3284), + [aux_sym_control_persist_token1] = ACTIONS(3284), + [aux_sym_dynamic_forward_token1] = ACTIONS(3284), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3284), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3284), + [aux_sym_escape_char_token1] = ACTIONS(3284), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3284), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3284), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3284), + [aux_sym_forward_agent_token1] = ACTIONS(3284), + [aux_sym_forward_x11_token1] = ACTIONS(3286), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3284), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3284), + [aux_sym_gateway_ports_token1] = ACTIONS(3284), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3284), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3284), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3284), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3284), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3284), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3284), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3284), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3284), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3284), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3284), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3284), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3284), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3284), + [aux_sym_host_key_alias_token1] = ACTIONS(3284), + [aux_sym_hostname_token1] = ACTIONS(3284), + [aux_sym_identities_only_token1] = ACTIONS(3284), + [aux_sym_identity_agent_token1] = ACTIONS(3284), + [aux_sym_identity_file_token1] = ACTIONS(3284), + [aux_sym_ignore_unknown_token1] = ACTIONS(3284), + [aux_sym_include_token1] = ACTIONS(3284), + [aux_sym_ip_qos_token1] = ACTIONS(3284), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3284), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3284), + [aux_sym_kex_algorithms_token1] = ACTIONS(3284), + [aux_sym_known_hosts_command_token1] = ACTIONS(3284), + [aux_sym_local_command_token1] = ACTIONS(3284), + [aux_sym_local_forward_token1] = ACTIONS(3284), + [aux_sym_log_level_token1] = ACTIONS(3284), + [aux_sym_log_verbose_token1] = ACTIONS(3284), + [aux_sym_macs_token1] = ACTIONS(3284), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3284), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3284), + [aux_sym_password_authentication_token1] = ACTIONS(3284), + [aux_sym_permit_local_command_token1] = ACTIONS(3284), + [aux_sym_permit_remote_open_token1] = ACTIONS(3284), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3284), + [aux_sym_port_token1] = ACTIONS(3284), + [aux_sym_preferred_authentications_token1] = ACTIONS(3284), + [aux_sym_protocol_token1] = ACTIONS(3284), + [aux_sym_proxy_command_token1] = ACTIONS(3284), + [aux_sym_proxy_jump_token1] = ACTIONS(3284), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3284), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3284), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3284), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3284), + [aux_sym_rekey_limit_token1] = ACTIONS(3284), + [aux_sym_remote_command_token1] = ACTIONS(3284), + [aux_sym_remote_forward_token1] = ACTIONS(3284), + [aux_sym_request_tty_token1] = ACTIONS(3284), + [aux_sym_required_rsa_size_token1] = ACTIONS(3284), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3284), + [aux_sym_security_key_provider_token1] = ACTIONS(3284), + [aux_sym_send_env_token1] = ACTIONS(3284), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3284), + [aux_sym_server_alive_interval_token1] = ACTIONS(3284), + [aux_sym_session_type_token1] = ACTIONS(3284), + [aux_sym_set_env_token1] = ACTIONS(3284), + [aux_sym_stdin_null_token1] = ACTIONS(3284), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3284), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3284), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3284), + [aux_sym_syslog_facility_token1] = ACTIONS(3284), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3284), + [aux_sym_keep_alive_token1] = ACTIONS(3284), + [aux_sym_tunnel_token1] = ACTIONS(3286), + [aux_sym_tunnel_device_token1] = ACTIONS(3284), + [aux_sym_update_host_keys_token1] = ACTIONS(3284), + [aux_sym_use_keychain_token1] = ACTIONS(3284), + [aux_sym_use_roaming_token1] = ACTIONS(3284), + [aux_sym_user_token1] = ACTIONS(3286), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3284), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3284), + [aux_sym_visual_host_key_token1] = ACTIONS(3284), + [aux_sym_xauth_location_token1] = ACTIONS(3284), }, [567] = { - [ts_builtin_sym_end] = ACTIONS(597), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(599), - [aux_sym_match_token1] = ACTIONS(597), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(597), - [aux_sym_address_family_token1] = ACTIONS(597), - [aux_sym_batch_mode_token1] = ACTIONS(597), - [aux_sym_bind_address_token1] = ACTIONS(597), - [aux_sym_bind_interface_token1] = ACTIONS(597), - [aux_sym_canonical_domains_token1] = ACTIONS(597), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(597), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(597), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(597), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(597), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(597), - [aux_sym_certificate_file_token1] = ACTIONS(597), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(597), - [aux_sym_check_host_ip_token1] = ACTIONS(597), - [aux_sym_ciphers_token1] = ACTIONS(597), - [aux_sym_cipher_token1] = ACTIONS(599), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(597), - [aux_sym_compression_token1] = ACTIONS(597), - [aux_sym_connection_attempts_token1] = ACTIONS(597), - [aux_sym_connect_timeout_token1] = ACTIONS(597), - [aux_sym_control_master_token1] = ACTIONS(597), - [aux_sym_control_path_token1] = ACTIONS(597), - [aux_sym_control_persist_token1] = ACTIONS(597), - [aux_sym_dynamic_forward_token1] = ACTIONS(597), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(597), - [aux_sym_escape_char_token1] = ACTIONS(597), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(597), - [aux_sym_fingerprint_hash_token1] = ACTIONS(597), - [aux_sym_fork_after_authentication_token1] = ACTIONS(597), - [aux_sym_forward_agent_token1] = ACTIONS(597), - [aux_sym_forward_x11_token1] = ACTIONS(599), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(597), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(597), - [aux_sym_gateway_ports_token1] = ACTIONS(597), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(597), - [aux_sym_gssapi_authentication_token1] = ACTIONS(597), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(597), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(597), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(597), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(597), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(597), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(597), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(597), - [aux_sym_hash_known_hosts_token1] = ACTIONS(597), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(597), - [aux_sym_hostbased_authentication_token1] = ACTIONS(597), - [aux_sym_host_key_algorithms_token1] = ACTIONS(597), - [aux_sym_host_key_alias_token1] = ACTIONS(597), - [aux_sym_hostname_token1] = ACTIONS(597), - [aux_sym_identities_only_token1] = ACTIONS(597), - [aux_sym_identity_agent_token1] = ACTIONS(597), - [aux_sym_identity_file_token1] = ACTIONS(597), - [aux_sym_ignore_unknown_token1] = ACTIONS(597), - [aux_sym_include_token1] = ACTIONS(597), - [aux_sym_ip_qos_token1] = ACTIONS(597), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(597), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(597), - [aux_sym_kex_algorithms_token1] = ACTIONS(597), - [aux_sym_known_hosts_command_token1] = ACTIONS(597), - [aux_sym_local_command_token1] = ACTIONS(597), - [aux_sym_local_forward_token1] = ACTIONS(597), - [aux_sym_log_level_token1] = ACTIONS(597), - [aux_sym_log_verbose_token1] = ACTIONS(597), - [aux_sym_macs_token1] = ACTIONS(597), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(597), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(597), - [aux_sym_password_authentication_token1] = ACTIONS(597), - [aux_sym_permit_local_command_token1] = ACTIONS(597), - [aux_sym_permit_remote_open_token1] = ACTIONS(597), - [aux_sym_pkcs11_provider_token1] = ACTIONS(597), - [aux_sym_port_token1] = ACTIONS(597), - [aux_sym_preferred_authentications_token1] = ACTIONS(597), - [aux_sym_protocol_token1] = ACTIONS(597), - [aux_sym_proxy_command_token1] = ACTIONS(597), - [aux_sym_proxy_jump_token1] = ACTIONS(597), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(597), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(597), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(597), - [aux_sym_pubkey_authentication_token1] = ACTIONS(597), - [aux_sym_rekey_limit_token1] = ACTIONS(597), - [aux_sym_remote_command_token1] = ACTIONS(597), - [aux_sym_remote_forward_token1] = ACTIONS(597), - [aux_sym_request_tty_token1] = ACTIONS(597), - [aux_sym_required_rsa_size_token1] = ACTIONS(597), - [aux_sym_revoked_host_keys_token1] = ACTIONS(597), - [aux_sym_security_key_provider_token1] = ACTIONS(597), - [aux_sym_send_env_token1] = ACTIONS(597), - [aux_sym_server_alive_count_max_token1] = ACTIONS(597), - [aux_sym_server_alive_interval_token1] = ACTIONS(597), - [aux_sym_session_type_token1] = ACTIONS(597), - [aux_sym_set_env_token1] = ACTIONS(597), - [aux_sym_stdin_null_token1] = ACTIONS(597), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(597), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(597), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(597), - [aux_sym_syslog_facility_token1] = ACTIONS(597), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(597), - [aux_sym_keep_alive_token1] = ACTIONS(597), - [aux_sym_tunnel_token1] = ACTIONS(599), - [aux_sym_tunnel_device_token1] = ACTIONS(597), - [aux_sym_update_host_keys_token1] = ACTIONS(597), - [aux_sym_use_keychain_token1] = ACTIONS(597), - [aux_sym_use_roaming_token1] = ACTIONS(597), - [aux_sym_user_token1] = ACTIONS(599), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(597), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(597), - [aux_sym_visual_host_key_token1] = ACTIONS(597), - [aux_sym_xauth_location_token1] = ACTIONS(597), + [ts_builtin_sym_end] = ACTIONS(3288), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3290), + [aux_sym_match_token1] = ACTIONS(3288), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3288), + [aux_sym_address_family_token1] = ACTIONS(3288), + [aux_sym_batch_mode_token1] = ACTIONS(3288), + [aux_sym_bind_address_token1] = ACTIONS(3288), + [aux_sym_bind_interface_token1] = ACTIONS(3288), + [aux_sym_canonical_domains_token1] = ACTIONS(3288), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3288), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3288), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3288), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3288), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3288), + [aux_sym_certificate_file_token1] = ACTIONS(3288), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3288), + [aux_sym_check_host_ip_token1] = ACTIONS(3288), + [aux_sym_ciphers_token1] = ACTIONS(3288), + [aux_sym_cipher_token1] = ACTIONS(3290), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3288), + [aux_sym_compression_token1] = ACTIONS(3288), + [aux_sym_connection_attempts_token1] = ACTIONS(3288), + [aux_sym_connect_timeout_token1] = ACTIONS(3288), + [aux_sym_control_master_token1] = ACTIONS(3288), + [aux_sym_control_path_token1] = ACTIONS(3288), + [aux_sym_control_persist_token1] = ACTIONS(3288), + [aux_sym_dynamic_forward_token1] = ACTIONS(3288), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3288), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3288), + [aux_sym_escape_char_token1] = ACTIONS(3288), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3288), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3288), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3288), + [aux_sym_forward_agent_token1] = ACTIONS(3288), + [aux_sym_forward_x11_token1] = ACTIONS(3290), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3288), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3288), + [aux_sym_gateway_ports_token1] = ACTIONS(3288), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3288), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3288), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3288), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3288), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3288), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3288), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3288), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3288), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3288), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3288), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3288), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3288), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3288), + [aux_sym_host_key_alias_token1] = ACTIONS(3288), + [aux_sym_hostname_token1] = ACTIONS(3288), + [aux_sym_identities_only_token1] = ACTIONS(3288), + [aux_sym_identity_agent_token1] = ACTIONS(3288), + [aux_sym_identity_file_token1] = ACTIONS(3288), + [aux_sym_ignore_unknown_token1] = ACTIONS(3288), + [aux_sym_include_token1] = ACTIONS(3288), + [aux_sym_ip_qos_token1] = ACTIONS(3288), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3288), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3288), + [aux_sym_kex_algorithms_token1] = ACTIONS(3288), + [aux_sym_known_hosts_command_token1] = ACTIONS(3288), + [aux_sym_local_command_token1] = ACTIONS(3288), + [aux_sym_local_forward_token1] = ACTIONS(3288), + [aux_sym_log_level_token1] = ACTIONS(3288), + [aux_sym_log_verbose_token1] = ACTIONS(3288), + [aux_sym_macs_token1] = ACTIONS(3288), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3288), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3288), + [aux_sym_password_authentication_token1] = ACTIONS(3288), + [aux_sym_permit_local_command_token1] = ACTIONS(3288), + [aux_sym_permit_remote_open_token1] = ACTIONS(3288), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3288), + [aux_sym_port_token1] = ACTIONS(3288), + [aux_sym_preferred_authentications_token1] = ACTIONS(3288), + [aux_sym_protocol_token1] = ACTIONS(3288), + [aux_sym_proxy_command_token1] = ACTIONS(3288), + [aux_sym_proxy_jump_token1] = ACTIONS(3288), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3288), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3288), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3288), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3288), + [aux_sym_rekey_limit_token1] = ACTIONS(3288), + [aux_sym_remote_command_token1] = ACTIONS(3288), + [aux_sym_remote_forward_token1] = ACTIONS(3288), + [aux_sym_request_tty_token1] = ACTIONS(3288), + [aux_sym_required_rsa_size_token1] = ACTIONS(3288), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3288), + [aux_sym_security_key_provider_token1] = ACTIONS(3288), + [aux_sym_send_env_token1] = ACTIONS(3288), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3288), + [aux_sym_server_alive_interval_token1] = ACTIONS(3288), + [aux_sym_session_type_token1] = ACTIONS(3288), + [aux_sym_set_env_token1] = ACTIONS(3288), + [aux_sym_stdin_null_token1] = ACTIONS(3288), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3288), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3288), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3288), + [aux_sym_syslog_facility_token1] = ACTIONS(3288), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3288), + [aux_sym_keep_alive_token1] = ACTIONS(3288), + [aux_sym_tunnel_token1] = ACTIONS(3290), + [aux_sym_tunnel_device_token1] = ACTIONS(3288), + [aux_sym_update_host_keys_token1] = ACTIONS(3288), + [aux_sym_use_keychain_token1] = ACTIONS(3288), + [aux_sym_use_roaming_token1] = ACTIONS(3288), + [aux_sym_user_token1] = ACTIONS(3290), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3288), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3288), + [aux_sym_visual_host_key_token1] = ACTIONS(3288), + [aux_sym_xauth_location_token1] = ACTIONS(3288), }, [568] = { - [ts_builtin_sym_end] = ACTIONS(603), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(605), - [aux_sym_match_token1] = ACTIONS(603), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(603), - [aux_sym_address_family_token1] = ACTIONS(603), - [aux_sym_batch_mode_token1] = ACTIONS(603), - [aux_sym_bind_address_token1] = ACTIONS(603), - [aux_sym_bind_interface_token1] = ACTIONS(603), - [aux_sym_canonical_domains_token1] = ACTIONS(603), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(603), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(603), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(603), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(603), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(603), - [aux_sym_certificate_file_token1] = ACTIONS(603), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(603), - [aux_sym_check_host_ip_token1] = ACTIONS(603), - [aux_sym_ciphers_token1] = ACTIONS(603), - [aux_sym_cipher_token1] = ACTIONS(605), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(603), - [aux_sym_compression_token1] = ACTIONS(603), - [aux_sym_connection_attempts_token1] = ACTIONS(603), - [aux_sym_connect_timeout_token1] = ACTIONS(603), - [aux_sym_control_master_token1] = ACTIONS(603), - [aux_sym_control_path_token1] = ACTIONS(603), - [aux_sym_control_persist_token1] = ACTIONS(603), - [aux_sym_dynamic_forward_token1] = ACTIONS(603), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(603), - [aux_sym_escape_char_token1] = ACTIONS(603), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(603), - [aux_sym_fingerprint_hash_token1] = ACTIONS(603), - [aux_sym_fork_after_authentication_token1] = ACTIONS(603), - [aux_sym_forward_agent_token1] = ACTIONS(603), - [aux_sym_forward_x11_token1] = ACTIONS(605), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(603), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(603), - [aux_sym_gateway_ports_token1] = ACTIONS(603), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(603), - [aux_sym_gssapi_authentication_token1] = ACTIONS(603), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(603), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(603), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(603), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(603), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(603), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(603), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(603), - [aux_sym_hash_known_hosts_token1] = ACTIONS(603), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(603), - [aux_sym_hostbased_authentication_token1] = ACTIONS(603), - [aux_sym_host_key_algorithms_token1] = ACTIONS(603), - [aux_sym_host_key_alias_token1] = ACTIONS(603), - [aux_sym_hostname_token1] = ACTIONS(603), - [aux_sym_identities_only_token1] = ACTIONS(603), - [aux_sym_identity_agent_token1] = ACTIONS(603), - [aux_sym_identity_file_token1] = ACTIONS(603), - [aux_sym_ignore_unknown_token1] = ACTIONS(603), - [aux_sym_include_token1] = ACTIONS(603), - [aux_sym_ip_qos_token1] = ACTIONS(603), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(603), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(603), - [aux_sym_kex_algorithms_token1] = ACTIONS(603), - [aux_sym_known_hosts_command_token1] = ACTIONS(603), - [aux_sym_local_command_token1] = ACTIONS(603), - [aux_sym_local_forward_token1] = ACTIONS(603), - [aux_sym_log_level_token1] = ACTIONS(603), - [aux_sym_log_verbose_token1] = ACTIONS(603), - [aux_sym_macs_token1] = ACTIONS(603), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(603), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(603), - [aux_sym_password_authentication_token1] = ACTIONS(603), - [aux_sym_permit_local_command_token1] = ACTIONS(603), - [aux_sym_permit_remote_open_token1] = ACTIONS(603), - [aux_sym_pkcs11_provider_token1] = ACTIONS(603), - [aux_sym_port_token1] = ACTIONS(603), - [aux_sym_preferred_authentications_token1] = ACTIONS(603), - [aux_sym_protocol_token1] = ACTIONS(603), - [aux_sym_proxy_command_token1] = ACTIONS(603), - [aux_sym_proxy_jump_token1] = ACTIONS(603), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(603), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(603), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(603), - [aux_sym_pubkey_authentication_token1] = ACTIONS(603), - [aux_sym_rekey_limit_token1] = ACTIONS(603), - [aux_sym_remote_command_token1] = ACTIONS(603), - [aux_sym_remote_forward_token1] = ACTIONS(603), - [aux_sym_request_tty_token1] = ACTIONS(603), - [aux_sym_required_rsa_size_token1] = ACTIONS(603), - [aux_sym_revoked_host_keys_token1] = ACTIONS(603), - [aux_sym_security_key_provider_token1] = ACTIONS(603), - [aux_sym_send_env_token1] = ACTIONS(603), - [aux_sym_server_alive_count_max_token1] = ACTIONS(603), - [aux_sym_server_alive_interval_token1] = ACTIONS(603), - [aux_sym_session_type_token1] = ACTIONS(603), - [aux_sym_set_env_token1] = ACTIONS(603), - [aux_sym_stdin_null_token1] = ACTIONS(603), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(603), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(603), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(603), - [aux_sym_syslog_facility_token1] = ACTIONS(603), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(603), - [aux_sym_keep_alive_token1] = ACTIONS(603), - [aux_sym_tunnel_token1] = ACTIONS(605), - [aux_sym_tunnel_device_token1] = ACTIONS(603), - [aux_sym_update_host_keys_token1] = ACTIONS(603), - [aux_sym_use_keychain_token1] = ACTIONS(603), - [aux_sym_use_roaming_token1] = ACTIONS(603), - [aux_sym_user_token1] = ACTIONS(605), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(603), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(603), - [aux_sym_visual_host_key_token1] = ACTIONS(603), - [aux_sym_xauth_location_token1] = ACTIONS(603), + [ts_builtin_sym_end] = ACTIONS(1286), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1288), + [aux_sym_match_token1] = ACTIONS(1286), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1286), + [aux_sym_address_family_token1] = ACTIONS(1286), + [aux_sym_batch_mode_token1] = ACTIONS(1286), + [aux_sym_bind_address_token1] = ACTIONS(1286), + [aux_sym_bind_interface_token1] = ACTIONS(1286), + [aux_sym_canonical_domains_token1] = ACTIONS(1286), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1286), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1286), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1286), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1286), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1286), + [aux_sym_certificate_file_token1] = ACTIONS(1286), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1286), + [aux_sym_check_host_ip_token1] = ACTIONS(1286), + [aux_sym_ciphers_token1] = ACTIONS(1286), + [aux_sym_cipher_token1] = ACTIONS(1288), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1286), + [aux_sym_compression_token1] = ACTIONS(1286), + [aux_sym_connection_attempts_token1] = ACTIONS(1286), + [aux_sym_connect_timeout_token1] = ACTIONS(1286), + [aux_sym_control_master_token1] = ACTIONS(1286), + [aux_sym_control_path_token1] = ACTIONS(1286), + [aux_sym_control_persist_token1] = ACTIONS(1286), + [aux_sym_dynamic_forward_token1] = ACTIONS(1286), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1286), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1286), + [aux_sym_escape_char_token1] = ACTIONS(1286), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1286), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1286), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1286), + [aux_sym_forward_agent_token1] = ACTIONS(1286), + [aux_sym_forward_x11_token1] = ACTIONS(1288), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1286), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1286), + [aux_sym_gateway_ports_token1] = ACTIONS(1286), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1286), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1286), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1286), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1286), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1286), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1286), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1286), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1286), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1286), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1286), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1286), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1286), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1286), + [aux_sym_host_key_alias_token1] = ACTIONS(1286), + [aux_sym_hostname_token1] = ACTIONS(1286), + [aux_sym_identities_only_token1] = ACTIONS(1286), + [aux_sym_identity_agent_token1] = ACTIONS(1286), + [aux_sym_identity_file_token1] = ACTIONS(1286), + [aux_sym_ignore_unknown_token1] = ACTIONS(1286), + [aux_sym_include_token1] = ACTIONS(1286), + [aux_sym_ip_qos_token1] = ACTIONS(1286), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1286), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1286), + [aux_sym_kex_algorithms_token1] = ACTIONS(1286), + [aux_sym_known_hosts_command_token1] = ACTIONS(1286), + [aux_sym_local_command_token1] = ACTIONS(1286), + [aux_sym_local_forward_token1] = ACTIONS(1286), + [aux_sym_log_level_token1] = ACTIONS(1286), + [aux_sym_log_verbose_token1] = ACTIONS(1286), + [aux_sym_macs_token1] = ACTIONS(1286), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1286), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1286), + [aux_sym_password_authentication_token1] = ACTIONS(1286), + [aux_sym_permit_local_command_token1] = ACTIONS(1286), + [aux_sym_permit_remote_open_token1] = ACTIONS(1286), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1286), + [aux_sym_port_token1] = ACTIONS(1286), + [aux_sym_preferred_authentications_token1] = ACTIONS(1286), + [aux_sym_protocol_token1] = ACTIONS(1286), + [aux_sym_proxy_command_token1] = ACTIONS(1286), + [aux_sym_proxy_jump_token1] = ACTIONS(1286), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1286), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1286), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1286), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1286), + [aux_sym_rekey_limit_token1] = ACTIONS(1286), + [aux_sym_remote_command_token1] = ACTIONS(1286), + [aux_sym_remote_forward_token1] = ACTIONS(1286), + [aux_sym_request_tty_token1] = ACTIONS(1286), + [aux_sym_required_rsa_size_token1] = ACTIONS(1286), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1286), + [aux_sym_security_key_provider_token1] = ACTIONS(1286), + [aux_sym_send_env_token1] = ACTIONS(1286), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1286), + [aux_sym_server_alive_interval_token1] = ACTIONS(1286), + [aux_sym_session_type_token1] = ACTIONS(1286), + [aux_sym_set_env_token1] = ACTIONS(1286), + [aux_sym_stdin_null_token1] = ACTIONS(1286), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1286), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1286), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1286), + [aux_sym_syslog_facility_token1] = ACTIONS(1286), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1286), + [aux_sym_keep_alive_token1] = ACTIONS(1286), + [aux_sym_tunnel_token1] = ACTIONS(1288), + [aux_sym_tunnel_device_token1] = ACTIONS(1286), + [aux_sym_update_host_keys_token1] = ACTIONS(1286), + [aux_sym_use_keychain_token1] = ACTIONS(1286), + [aux_sym_use_roaming_token1] = ACTIONS(1286), + [aux_sym_user_token1] = ACTIONS(1288), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1286), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1286), + [aux_sym_visual_host_key_token1] = ACTIONS(1286), + [aux_sym_xauth_location_token1] = ACTIONS(1286), }, [569] = { - [ts_builtin_sym_end] = ACTIONS(609), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(611), - [aux_sym_match_token1] = ACTIONS(609), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(609), - [aux_sym_address_family_token1] = ACTIONS(609), - [aux_sym_batch_mode_token1] = ACTIONS(609), - [aux_sym_bind_address_token1] = ACTIONS(609), - [aux_sym_bind_interface_token1] = ACTIONS(609), - [aux_sym_canonical_domains_token1] = ACTIONS(609), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(609), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(609), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(609), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(609), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(609), - [aux_sym_certificate_file_token1] = ACTIONS(609), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(609), - [aux_sym_check_host_ip_token1] = ACTIONS(609), - [aux_sym_ciphers_token1] = ACTIONS(609), - [aux_sym_cipher_token1] = ACTIONS(611), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(609), - [aux_sym_compression_token1] = ACTIONS(609), - [aux_sym_connection_attempts_token1] = ACTIONS(609), - [aux_sym_connect_timeout_token1] = ACTIONS(609), - [aux_sym_control_master_token1] = ACTIONS(609), - [aux_sym_control_path_token1] = ACTIONS(609), - [aux_sym_control_persist_token1] = ACTIONS(609), - [aux_sym_dynamic_forward_token1] = ACTIONS(609), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(609), - [aux_sym_escape_char_token1] = ACTIONS(609), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(609), - [aux_sym_fingerprint_hash_token1] = ACTIONS(609), - [aux_sym_fork_after_authentication_token1] = ACTIONS(609), - [aux_sym_forward_agent_token1] = ACTIONS(609), - [aux_sym_forward_x11_token1] = ACTIONS(611), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(609), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(609), - [aux_sym_gateway_ports_token1] = ACTIONS(609), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(609), - [aux_sym_gssapi_authentication_token1] = ACTIONS(609), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(609), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(609), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(609), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(609), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(609), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(609), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(609), - [aux_sym_hash_known_hosts_token1] = ACTIONS(609), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(609), - [aux_sym_hostbased_authentication_token1] = ACTIONS(609), - [aux_sym_host_key_algorithms_token1] = ACTIONS(609), - [aux_sym_host_key_alias_token1] = ACTIONS(609), - [aux_sym_hostname_token1] = ACTIONS(609), - [aux_sym_identities_only_token1] = ACTIONS(609), - [aux_sym_identity_agent_token1] = ACTIONS(609), - [aux_sym_identity_file_token1] = ACTIONS(609), - [aux_sym_ignore_unknown_token1] = ACTIONS(609), - [aux_sym_include_token1] = ACTIONS(609), - [aux_sym_ip_qos_token1] = ACTIONS(609), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(609), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(609), - [aux_sym_kex_algorithms_token1] = ACTIONS(609), - [aux_sym_known_hosts_command_token1] = ACTIONS(609), - [aux_sym_local_command_token1] = ACTIONS(609), - [aux_sym_local_forward_token1] = ACTIONS(609), - [aux_sym_log_level_token1] = ACTIONS(609), - [aux_sym_log_verbose_token1] = ACTIONS(609), - [aux_sym_macs_token1] = ACTIONS(609), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(609), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(609), - [aux_sym_password_authentication_token1] = ACTIONS(609), - [aux_sym_permit_local_command_token1] = ACTIONS(609), - [aux_sym_permit_remote_open_token1] = ACTIONS(609), - [aux_sym_pkcs11_provider_token1] = ACTIONS(609), - [aux_sym_port_token1] = ACTIONS(609), - [aux_sym_preferred_authentications_token1] = ACTIONS(609), - [aux_sym_protocol_token1] = ACTIONS(609), - [aux_sym_proxy_command_token1] = ACTIONS(609), - [aux_sym_proxy_jump_token1] = ACTIONS(609), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(609), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(609), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(609), - [aux_sym_pubkey_authentication_token1] = ACTIONS(609), - [aux_sym_rekey_limit_token1] = ACTIONS(609), - [aux_sym_remote_command_token1] = ACTIONS(609), - [aux_sym_remote_forward_token1] = ACTIONS(609), - [aux_sym_request_tty_token1] = ACTIONS(609), - [aux_sym_required_rsa_size_token1] = ACTIONS(609), - [aux_sym_revoked_host_keys_token1] = ACTIONS(609), - [aux_sym_security_key_provider_token1] = ACTIONS(609), - [aux_sym_send_env_token1] = ACTIONS(609), - [aux_sym_server_alive_count_max_token1] = ACTIONS(609), - [aux_sym_server_alive_interval_token1] = ACTIONS(609), - [aux_sym_session_type_token1] = ACTIONS(609), - [aux_sym_set_env_token1] = ACTIONS(609), - [aux_sym_stdin_null_token1] = ACTIONS(609), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(609), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(609), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(609), - [aux_sym_syslog_facility_token1] = ACTIONS(609), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(609), - [aux_sym_keep_alive_token1] = ACTIONS(609), - [aux_sym_tunnel_token1] = ACTIONS(611), - [aux_sym_tunnel_device_token1] = ACTIONS(609), - [aux_sym_update_host_keys_token1] = ACTIONS(609), - [aux_sym_use_keychain_token1] = ACTIONS(609), - [aux_sym_use_roaming_token1] = ACTIONS(609), - [aux_sym_user_token1] = ACTIONS(611), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(609), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(609), - [aux_sym_visual_host_key_token1] = ACTIONS(609), - [aux_sym_xauth_location_token1] = ACTIONS(609), + [ts_builtin_sym_end] = ACTIONS(986), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(988), + [aux_sym_match_token1] = ACTIONS(986), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(986), + [aux_sym_address_family_token1] = ACTIONS(986), + [aux_sym_batch_mode_token1] = ACTIONS(986), + [aux_sym_bind_address_token1] = ACTIONS(986), + [aux_sym_bind_interface_token1] = ACTIONS(986), + [aux_sym_canonical_domains_token1] = ACTIONS(986), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(986), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(986), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(986), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(986), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(986), + [aux_sym_certificate_file_token1] = ACTIONS(986), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(986), + [aux_sym_check_host_ip_token1] = ACTIONS(986), + [aux_sym_ciphers_token1] = ACTIONS(986), + [aux_sym_cipher_token1] = ACTIONS(988), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(986), + [aux_sym_compression_token1] = ACTIONS(986), + [aux_sym_connection_attempts_token1] = ACTIONS(986), + [aux_sym_connect_timeout_token1] = ACTIONS(986), + [aux_sym_control_master_token1] = ACTIONS(986), + [aux_sym_control_path_token1] = ACTIONS(986), + [aux_sym_control_persist_token1] = ACTIONS(986), + [aux_sym_dynamic_forward_token1] = ACTIONS(986), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(986), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(986), + [aux_sym_escape_char_token1] = ACTIONS(986), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(986), + [aux_sym_fingerprint_hash_token1] = ACTIONS(986), + [aux_sym_fork_after_authentication_token1] = ACTIONS(986), + [aux_sym_forward_agent_token1] = ACTIONS(986), + [aux_sym_forward_x11_token1] = ACTIONS(988), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(986), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(986), + [aux_sym_gateway_ports_token1] = ACTIONS(986), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(986), + [aux_sym_gssapi_authentication_token1] = ACTIONS(986), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(986), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(986), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(986), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(986), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(986), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(986), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(986), + [aux_sym_hash_known_hosts_token1] = ACTIONS(986), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(986), + [aux_sym_hostbased_authentication_token1] = ACTIONS(986), + [aux_sym_host_key_algorithms_token1] = ACTIONS(986), + [aux_sym_host_key_alias_token1] = ACTIONS(986), + [aux_sym_hostname_token1] = ACTIONS(986), + [aux_sym_identities_only_token1] = ACTIONS(986), + [aux_sym_identity_agent_token1] = ACTIONS(986), + [aux_sym_identity_file_token1] = ACTIONS(986), + [aux_sym_ignore_unknown_token1] = ACTIONS(986), + [aux_sym_include_token1] = ACTIONS(986), + [aux_sym_ip_qos_token1] = ACTIONS(986), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(986), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(986), + [aux_sym_kex_algorithms_token1] = ACTIONS(986), + [aux_sym_known_hosts_command_token1] = ACTIONS(986), + [aux_sym_local_command_token1] = ACTIONS(986), + [aux_sym_local_forward_token1] = ACTIONS(986), + [aux_sym_log_level_token1] = ACTIONS(986), + [aux_sym_log_verbose_token1] = ACTIONS(986), + [aux_sym_macs_token1] = ACTIONS(986), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(986), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(986), + [aux_sym_password_authentication_token1] = ACTIONS(986), + [aux_sym_permit_local_command_token1] = ACTIONS(986), + [aux_sym_permit_remote_open_token1] = ACTIONS(986), + [aux_sym_pkcs11_provider_token1] = ACTIONS(986), + [aux_sym_port_token1] = ACTIONS(986), + [aux_sym_preferred_authentications_token1] = ACTIONS(986), + [aux_sym_protocol_token1] = ACTIONS(986), + [aux_sym_proxy_command_token1] = ACTIONS(986), + [aux_sym_proxy_jump_token1] = ACTIONS(986), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(986), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(986), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(986), + [aux_sym_pubkey_authentication_token1] = ACTIONS(986), + [aux_sym_rekey_limit_token1] = ACTIONS(986), + [aux_sym_remote_command_token1] = ACTIONS(986), + [aux_sym_remote_forward_token1] = ACTIONS(986), + [aux_sym_request_tty_token1] = ACTIONS(986), + [aux_sym_required_rsa_size_token1] = ACTIONS(986), + [aux_sym_revoked_host_keys_token1] = ACTIONS(986), + [aux_sym_security_key_provider_token1] = ACTIONS(986), + [aux_sym_send_env_token1] = ACTIONS(986), + [aux_sym_server_alive_count_max_token1] = ACTIONS(986), + [aux_sym_server_alive_interval_token1] = ACTIONS(986), + [aux_sym_session_type_token1] = ACTIONS(986), + [aux_sym_set_env_token1] = ACTIONS(986), + [aux_sym_stdin_null_token1] = ACTIONS(986), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(986), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(986), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(986), + [aux_sym_syslog_facility_token1] = ACTIONS(986), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(986), + [aux_sym_keep_alive_token1] = ACTIONS(986), + [aux_sym_tunnel_token1] = ACTIONS(988), + [aux_sym_tunnel_device_token1] = ACTIONS(986), + [aux_sym_update_host_keys_token1] = ACTIONS(986), + [aux_sym_use_keychain_token1] = ACTIONS(986), + [aux_sym_use_roaming_token1] = ACTIONS(986), + [aux_sym_user_token1] = ACTIONS(988), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(986), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(986), + [aux_sym_visual_host_key_token1] = ACTIONS(986), + [aux_sym_xauth_location_token1] = ACTIONS(986), }, [570] = { - [ts_builtin_sym_end] = ACTIONS(615), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(617), - [aux_sym_match_token1] = ACTIONS(615), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(615), - [aux_sym_address_family_token1] = ACTIONS(615), - [aux_sym_batch_mode_token1] = ACTIONS(615), - [aux_sym_bind_address_token1] = ACTIONS(615), - [aux_sym_bind_interface_token1] = ACTIONS(615), - [aux_sym_canonical_domains_token1] = ACTIONS(615), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(615), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(615), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(615), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(615), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(615), - [aux_sym_certificate_file_token1] = ACTIONS(615), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(615), - [aux_sym_check_host_ip_token1] = ACTIONS(615), - [aux_sym_ciphers_token1] = ACTIONS(615), - [aux_sym_cipher_token1] = ACTIONS(617), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(615), - [aux_sym_compression_token1] = ACTIONS(615), - [aux_sym_connection_attempts_token1] = ACTIONS(615), - [aux_sym_connect_timeout_token1] = ACTIONS(615), - [aux_sym_control_master_token1] = ACTIONS(615), - [aux_sym_control_path_token1] = ACTIONS(615), - [aux_sym_control_persist_token1] = ACTIONS(615), - [aux_sym_dynamic_forward_token1] = ACTIONS(615), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(615), - [aux_sym_escape_char_token1] = ACTIONS(615), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(615), - [aux_sym_fingerprint_hash_token1] = ACTIONS(615), - [aux_sym_fork_after_authentication_token1] = ACTIONS(615), - [aux_sym_forward_agent_token1] = ACTIONS(615), - [aux_sym_forward_x11_token1] = ACTIONS(617), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(615), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(615), - [aux_sym_gateway_ports_token1] = ACTIONS(615), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(615), - [aux_sym_gssapi_authentication_token1] = ACTIONS(615), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(615), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(615), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(615), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(615), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(615), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(615), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(615), - [aux_sym_hash_known_hosts_token1] = ACTIONS(615), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(615), - [aux_sym_hostbased_authentication_token1] = ACTIONS(615), - [aux_sym_host_key_algorithms_token1] = ACTIONS(615), - [aux_sym_host_key_alias_token1] = ACTIONS(615), - [aux_sym_hostname_token1] = ACTIONS(615), - [aux_sym_identities_only_token1] = ACTIONS(615), - [aux_sym_identity_agent_token1] = ACTIONS(615), - [aux_sym_identity_file_token1] = ACTIONS(615), - [aux_sym_ignore_unknown_token1] = ACTIONS(615), - [aux_sym_include_token1] = ACTIONS(615), - [aux_sym_ip_qos_token1] = ACTIONS(615), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(615), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(615), - [aux_sym_kex_algorithms_token1] = ACTIONS(615), - [aux_sym_known_hosts_command_token1] = ACTIONS(615), - [aux_sym_local_command_token1] = ACTIONS(615), - [aux_sym_local_forward_token1] = ACTIONS(615), - [aux_sym_log_level_token1] = ACTIONS(615), - [aux_sym_log_verbose_token1] = ACTIONS(615), - [aux_sym_macs_token1] = ACTIONS(615), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(615), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(615), - [aux_sym_password_authentication_token1] = ACTIONS(615), - [aux_sym_permit_local_command_token1] = ACTIONS(615), - [aux_sym_permit_remote_open_token1] = ACTIONS(615), - [aux_sym_pkcs11_provider_token1] = ACTIONS(615), - [aux_sym_port_token1] = ACTIONS(615), - [aux_sym_preferred_authentications_token1] = ACTIONS(615), - [aux_sym_protocol_token1] = ACTIONS(615), - [aux_sym_proxy_command_token1] = ACTIONS(615), - [aux_sym_proxy_jump_token1] = ACTIONS(615), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(615), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(615), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(615), - [aux_sym_pubkey_authentication_token1] = ACTIONS(615), - [aux_sym_rekey_limit_token1] = ACTIONS(615), - [aux_sym_remote_command_token1] = ACTIONS(615), - [aux_sym_remote_forward_token1] = ACTIONS(615), - [aux_sym_request_tty_token1] = ACTIONS(615), - [aux_sym_required_rsa_size_token1] = ACTIONS(615), - [aux_sym_revoked_host_keys_token1] = ACTIONS(615), - [aux_sym_security_key_provider_token1] = ACTIONS(615), - [aux_sym_send_env_token1] = ACTIONS(615), - [aux_sym_server_alive_count_max_token1] = ACTIONS(615), - [aux_sym_server_alive_interval_token1] = ACTIONS(615), - [aux_sym_session_type_token1] = ACTIONS(615), - [aux_sym_set_env_token1] = ACTIONS(615), - [aux_sym_stdin_null_token1] = ACTIONS(615), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(615), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(615), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(615), - [aux_sym_syslog_facility_token1] = ACTIONS(615), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(615), - [aux_sym_keep_alive_token1] = ACTIONS(615), - [aux_sym_tunnel_token1] = ACTIONS(617), - [aux_sym_tunnel_device_token1] = ACTIONS(615), - [aux_sym_update_host_keys_token1] = ACTIONS(615), - [aux_sym_use_keychain_token1] = ACTIONS(615), - [aux_sym_use_roaming_token1] = ACTIONS(615), - [aux_sym_user_token1] = ACTIONS(617), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(615), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(615), - [aux_sym_visual_host_key_token1] = ACTIONS(615), - [aux_sym_xauth_location_token1] = ACTIONS(615), + [ts_builtin_sym_end] = ACTIONS(1292), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1294), + [aux_sym_match_token1] = ACTIONS(1292), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1292), + [aux_sym_address_family_token1] = ACTIONS(1292), + [aux_sym_batch_mode_token1] = ACTIONS(1292), + [aux_sym_bind_address_token1] = ACTIONS(1292), + [aux_sym_bind_interface_token1] = ACTIONS(1292), + [aux_sym_canonical_domains_token1] = ACTIONS(1292), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1292), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1292), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1292), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1292), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1292), + [aux_sym_certificate_file_token1] = ACTIONS(1292), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1292), + [aux_sym_check_host_ip_token1] = ACTIONS(1292), + [aux_sym_ciphers_token1] = ACTIONS(1292), + [aux_sym_cipher_token1] = ACTIONS(1294), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1292), + [aux_sym_compression_token1] = ACTIONS(1292), + [aux_sym_connection_attempts_token1] = ACTIONS(1292), + [aux_sym_connect_timeout_token1] = ACTIONS(1292), + [aux_sym_control_master_token1] = ACTIONS(1292), + [aux_sym_control_path_token1] = ACTIONS(1292), + [aux_sym_control_persist_token1] = ACTIONS(1292), + [aux_sym_dynamic_forward_token1] = ACTIONS(1292), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1292), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1292), + [aux_sym_escape_char_token1] = ACTIONS(1292), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1292), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1292), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1292), + [aux_sym_forward_agent_token1] = ACTIONS(1292), + [aux_sym_forward_x11_token1] = ACTIONS(1294), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1292), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1292), + [aux_sym_gateway_ports_token1] = ACTIONS(1292), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1292), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1292), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1292), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1292), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1292), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1292), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1292), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1292), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1292), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1292), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1292), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1292), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1292), + [aux_sym_host_key_alias_token1] = ACTIONS(1292), + [aux_sym_hostname_token1] = ACTIONS(1292), + [aux_sym_identities_only_token1] = ACTIONS(1292), + [aux_sym_identity_agent_token1] = ACTIONS(1292), + [aux_sym_identity_file_token1] = ACTIONS(1292), + [aux_sym_ignore_unknown_token1] = ACTIONS(1292), + [aux_sym_include_token1] = ACTIONS(1292), + [aux_sym_ip_qos_token1] = ACTIONS(1292), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1292), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1292), + [aux_sym_kex_algorithms_token1] = ACTIONS(1292), + [aux_sym_known_hosts_command_token1] = ACTIONS(1292), + [aux_sym_local_command_token1] = ACTIONS(1292), + [aux_sym_local_forward_token1] = ACTIONS(1292), + [aux_sym_log_level_token1] = ACTIONS(1292), + [aux_sym_log_verbose_token1] = ACTIONS(1292), + [aux_sym_macs_token1] = ACTIONS(1292), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1292), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1292), + [aux_sym_password_authentication_token1] = ACTIONS(1292), + [aux_sym_permit_local_command_token1] = ACTIONS(1292), + [aux_sym_permit_remote_open_token1] = ACTIONS(1292), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1292), + [aux_sym_port_token1] = ACTIONS(1292), + [aux_sym_preferred_authentications_token1] = ACTIONS(1292), + [aux_sym_protocol_token1] = ACTIONS(1292), + [aux_sym_proxy_command_token1] = ACTIONS(1292), + [aux_sym_proxy_jump_token1] = ACTIONS(1292), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1292), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1292), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1292), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1292), + [aux_sym_rekey_limit_token1] = ACTIONS(1292), + [aux_sym_remote_command_token1] = ACTIONS(1292), + [aux_sym_remote_forward_token1] = ACTIONS(1292), + [aux_sym_request_tty_token1] = ACTIONS(1292), + [aux_sym_required_rsa_size_token1] = ACTIONS(1292), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1292), + [aux_sym_security_key_provider_token1] = ACTIONS(1292), + [aux_sym_send_env_token1] = ACTIONS(1292), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1292), + [aux_sym_server_alive_interval_token1] = ACTIONS(1292), + [aux_sym_session_type_token1] = ACTIONS(1292), + [aux_sym_set_env_token1] = ACTIONS(1292), + [aux_sym_stdin_null_token1] = ACTIONS(1292), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1292), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1292), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1292), + [aux_sym_syslog_facility_token1] = ACTIONS(1292), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1292), + [aux_sym_keep_alive_token1] = ACTIONS(1292), + [aux_sym_tunnel_token1] = ACTIONS(1294), + [aux_sym_tunnel_device_token1] = ACTIONS(1292), + [aux_sym_update_host_keys_token1] = ACTIONS(1292), + [aux_sym_use_keychain_token1] = ACTIONS(1292), + [aux_sym_use_roaming_token1] = ACTIONS(1292), + [aux_sym_user_token1] = ACTIONS(1294), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1292), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1292), + [aux_sym_visual_host_key_token1] = ACTIONS(1292), + [aux_sym_xauth_location_token1] = ACTIONS(1292), }, [571] = { - [ts_builtin_sym_end] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(623), - [aux_sym_match_token1] = ACTIONS(621), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(621), - [aux_sym_address_family_token1] = ACTIONS(621), - [aux_sym_batch_mode_token1] = ACTIONS(621), - [aux_sym_bind_address_token1] = ACTIONS(621), - [aux_sym_bind_interface_token1] = ACTIONS(621), - [aux_sym_canonical_domains_token1] = ACTIONS(621), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(621), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(621), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(621), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(621), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(621), - [aux_sym_certificate_file_token1] = ACTIONS(621), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(621), - [aux_sym_check_host_ip_token1] = ACTIONS(621), - [aux_sym_ciphers_token1] = ACTIONS(621), - [aux_sym_cipher_token1] = ACTIONS(623), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(621), - [aux_sym_compression_token1] = ACTIONS(621), - [aux_sym_connection_attempts_token1] = ACTIONS(621), - [aux_sym_connect_timeout_token1] = ACTIONS(621), - [aux_sym_control_master_token1] = ACTIONS(621), - [aux_sym_control_path_token1] = ACTIONS(621), - [aux_sym_control_persist_token1] = ACTIONS(621), - [aux_sym_dynamic_forward_token1] = ACTIONS(621), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(621), - [aux_sym_escape_char_token1] = ACTIONS(621), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(621), - [aux_sym_fingerprint_hash_token1] = ACTIONS(621), - [aux_sym_fork_after_authentication_token1] = ACTIONS(621), - [aux_sym_forward_agent_token1] = ACTIONS(621), - [aux_sym_forward_x11_token1] = ACTIONS(623), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(621), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(621), - [aux_sym_gateway_ports_token1] = ACTIONS(621), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(621), - [aux_sym_gssapi_authentication_token1] = ACTIONS(621), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(621), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(621), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(621), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(621), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(621), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(621), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(621), - [aux_sym_hash_known_hosts_token1] = ACTIONS(621), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(621), - [aux_sym_hostbased_authentication_token1] = ACTIONS(621), - [aux_sym_host_key_algorithms_token1] = ACTIONS(621), - [aux_sym_host_key_alias_token1] = ACTIONS(621), - [aux_sym_hostname_token1] = ACTIONS(621), - [aux_sym_identities_only_token1] = ACTIONS(621), - [aux_sym_identity_agent_token1] = ACTIONS(621), - [aux_sym_identity_file_token1] = ACTIONS(621), - [aux_sym_ignore_unknown_token1] = ACTIONS(621), - [aux_sym_include_token1] = ACTIONS(621), - [aux_sym_ip_qos_token1] = ACTIONS(621), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(621), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(621), - [aux_sym_kex_algorithms_token1] = ACTIONS(621), - [aux_sym_known_hosts_command_token1] = ACTIONS(621), - [aux_sym_local_command_token1] = ACTIONS(621), - [aux_sym_local_forward_token1] = ACTIONS(621), - [aux_sym_log_level_token1] = ACTIONS(621), - [aux_sym_log_verbose_token1] = ACTIONS(621), - [aux_sym_macs_token1] = ACTIONS(621), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(621), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(621), - [aux_sym_password_authentication_token1] = ACTIONS(621), - [aux_sym_permit_local_command_token1] = ACTIONS(621), - [aux_sym_permit_remote_open_token1] = ACTIONS(621), - [aux_sym_pkcs11_provider_token1] = ACTIONS(621), - [aux_sym_port_token1] = ACTIONS(621), - [aux_sym_preferred_authentications_token1] = ACTIONS(621), - [aux_sym_protocol_token1] = ACTIONS(621), - [aux_sym_proxy_command_token1] = ACTIONS(621), - [aux_sym_proxy_jump_token1] = ACTIONS(621), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(621), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(621), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(621), - [aux_sym_pubkey_authentication_token1] = ACTIONS(621), - [aux_sym_rekey_limit_token1] = ACTIONS(621), - [aux_sym_remote_command_token1] = ACTIONS(621), - [aux_sym_remote_forward_token1] = ACTIONS(621), - [aux_sym_request_tty_token1] = ACTIONS(621), - [aux_sym_required_rsa_size_token1] = ACTIONS(621), - [aux_sym_revoked_host_keys_token1] = ACTIONS(621), - [aux_sym_security_key_provider_token1] = ACTIONS(621), - [aux_sym_send_env_token1] = ACTIONS(621), - [aux_sym_server_alive_count_max_token1] = ACTIONS(621), - [aux_sym_server_alive_interval_token1] = ACTIONS(621), - [aux_sym_session_type_token1] = ACTIONS(621), - [aux_sym_set_env_token1] = ACTIONS(621), - [aux_sym_stdin_null_token1] = ACTIONS(621), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(621), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(621), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(621), - [aux_sym_syslog_facility_token1] = ACTIONS(621), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(621), - [aux_sym_keep_alive_token1] = ACTIONS(621), - [aux_sym_tunnel_token1] = ACTIONS(623), - [aux_sym_tunnel_device_token1] = ACTIONS(621), - [aux_sym_update_host_keys_token1] = ACTIONS(621), - [aux_sym_use_keychain_token1] = ACTIONS(621), - [aux_sym_use_roaming_token1] = ACTIONS(621), - [aux_sym_user_token1] = ACTIONS(623), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(621), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(621), - [aux_sym_visual_host_key_token1] = ACTIONS(621), - [aux_sym_xauth_location_token1] = ACTIONS(621), + [ts_builtin_sym_end] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1300), + [aux_sym_match_token1] = ACTIONS(1298), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1298), + [aux_sym_address_family_token1] = ACTIONS(1298), + [aux_sym_batch_mode_token1] = ACTIONS(1298), + [aux_sym_bind_address_token1] = ACTIONS(1298), + [aux_sym_bind_interface_token1] = ACTIONS(1298), + [aux_sym_canonical_domains_token1] = ACTIONS(1298), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1298), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1298), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1298), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1298), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1298), + [aux_sym_certificate_file_token1] = ACTIONS(1298), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1298), + [aux_sym_check_host_ip_token1] = ACTIONS(1298), + [aux_sym_ciphers_token1] = ACTIONS(1298), + [aux_sym_cipher_token1] = ACTIONS(1300), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1298), + [aux_sym_compression_token1] = ACTIONS(1298), + [aux_sym_connection_attempts_token1] = ACTIONS(1298), + [aux_sym_connect_timeout_token1] = ACTIONS(1298), + [aux_sym_control_master_token1] = ACTIONS(1298), + [aux_sym_control_path_token1] = ACTIONS(1298), + [aux_sym_control_persist_token1] = ACTIONS(1298), + [aux_sym_dynamic_forward_token1] = ACTIONS(1298), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1298), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1298), + [aux_sym_escape_char_token1] = ACTIONS(1298), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1298), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1298), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1298), + [aux_sym_forward_agent_token1] = ACTIONS(1298), + [aux_sym_forward_x11_token1] = ACTIONS(1300), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1298), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1298), + [aux_sym_gateway_ports_token1] = ACTIONS(1298), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1298), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1298), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1298), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1298), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1298), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1298), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1298), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1298), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1298), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1298), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1298), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1298), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1298), + [aux_sym_host_key_alias_token1] = ACTIONS(1298), + [aux_sym_hostname_token1] = ACTIONS(1298), + [aux_sym_identities_only_token1] = ACTIONS(1298), + [aux_sym_identity_agent_token1] = ACTIONS(1298), + [aux_sym_identity_file_token1] = ACTIONS(1298), + [aux_sym_ignore_unknown_token1] = ACTIONS(1298), + [aux_sym_include_token1] = ACTIONS(1298), + [aux_sym_ip_qos_token1] = ACTIONS(1298), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1298), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1298), + [aux_sym_kex_algorithms_token1] = ACTIONS(1298), + [aux_sym_known_hosts_command_token1] = ACTIONS(1298), + [aux_sym_local_command_token1] = ACTIONS(1298), + [aux_sym_local_forward_token1] = ACTIONS(1298), + [aux_sym_log_level_token1] = ACTIONS(1298), + [aux_sym_log_verbose_token1] = ACTIONS(1298), + [aux_sym_macs_token1] = ACTIONS(1298), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1298), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1298), + [aux_sym_password_authentication_token1] = ACTIONS(1298), + [aux_sym_permit_local_command_token1] = ACTIONS(1298), + [aux_sym_permit_remote_open_token1] = ACTIONS(1298), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1298), + [aux_sym_port_token1] = ACTIONS(1298), + [aux_sym_preferred_authentications_token1] = ACTIONS(1298), + [aux_sym_protocol_token1] = ACTIONS(1298), + [aux_sym_proxy_command_token1] = ACTIONS(1298), + [aux_sym_proxy_jump_token1] = ACTIONS(1298), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1298), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1298), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1298), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1298), + [aux_sym_rekey_limit_token1] = ACTIONS(1298), + [aux_sym_remote_command_token1] = ACTIONS(1298), + [aux_sym_remote_forward_token1] = ACTIONS(1298), + [aux_sym_request_tty_token1] = ACTIONS(1298), + [aux_sym_required_rsa_size_token1] = ACTIONS(1298), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1298), + [aux_sym_security_key_provider_token1] = ACTIONS(1298), + [aux_sym_send_env_token1] = ACTIONS(1298), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1298), + [aux_sym_server_alive_interval_token1] = ACTIONS(1298), + [aux_sym_session_type_token1] = ACTIONS(1298), + [aux_sym_set_env_token1] = ACTIONS(1298), + [aux_sym_stdin_null_token1] = ACTIONS(1298), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1298), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1298), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1298), + [aux_sym_syslog_facility_token1] = ACTIONS(1298), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1298), + [aux_sym_keep_alive_token1] = ACTIONS(1298), + [aux_sym_tunnel_token1] = ACTIONS(1300), + [aux_sym_tunnel_device_token1] = ACTIONS(1298), + [aux_sym_update_host_keys_token1] = ACTIONS(1298), + [aux_sym_use_keychain_token1] = ACTIONS(1298), + [aux_sym_use_roaming_token1] = ACTIONS(1298), + [aux_sym_user_token1] = ACTIONS(1300), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1298), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1298), + [aux_sym_visual_host_key_token1] = ACTIONS(1298), + [aux_sym_xauth_location_token1] = ACTIONS(1298), }, [572] = { - [ts_builtin_sym_end] = ACTIONS(627), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(629), - [aux_sym_match_token1] = ACTIONS(627), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(627), - [aux_sym_address_family_token1] = ACTIONS(627), - [aux_sym_batch_mode_token1] = ACTIONS(627), - [aux_sym_bind_address_token1] = ACTIONS(627), - [aux_sym_bind_interface_token1] = ACTIONS(627), - [aux_sym_canonical_domains_token1] = ACTIONS(627), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(627), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(627), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(627), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(627), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(627), - [aux_sym_certificate_file_token1] = ACTIONS(627), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(627), - [aux_sym_check_host_ip_token1] = ACTIONS(627), - [aux_sym_ciphers_token1] = ACTIONS(627), - [aux_sym_cipher_token1] = ACTIONS(629), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(627), - [aux_sym_compression_token1] = ACTIONS(627), - [aux_sym_connection_attempts_token1] = ACTIONS(627), - [aux_sym_connect_timeout_token1] = ACTIONS(627), - [aux_sym_control_master_token1] = ACTIONS(627), - [aux_sym_control_path_token1] = ACTIONS(627), - [aux_sym_control_persist_token1] = ACTIONS(627), - [aux_sym_dynamic_forward_token1] = ACTIONS(627), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(627), - [aux_sym_escape_char_token1] = ACTIONS(627), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(627), - [aux_sym_fingerprint_hash_token1] = ACTIONS(627), - [aux_sym_fork_after_authentication_token1] = ACTIONS(627), - [aux_sym_forward_agent_token1] = ACTIONS(627), - [aux_sym_forward_x11_token1] = ACTIONS(629), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(627), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(627), - [aux_sym_gateway_ports_token1] = ACTIONS(627), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(627), - [aux_sym_gssapi_authentication_token1] = ACTIONS(627), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(627), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(627), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(627), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(627), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(627), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(627), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(627), - [aux_sym_hash_known_hosts_token1] = ACTIONS(627), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(627), - [aux_sym_hostbased_authentication_token1] = ACTIONS(627), - [aux_sym_host_key_algorithms_token1] = ACTIONS(627), - [aux_sym_host_key_alias_token1] = ACTIONS(627), - [aux_sym_hostname_token1] = ACTIONS(627), - [aux_sym_identities_only_token1] = ACTIONS(627), - [aux_sym_identity_agent_token1] = ACTIONS(627), - [aux_sym_identity_file_token1] = ACTIONS(627), - [aux_sym_ignore_unknown_token1] = ACTIONS(627), - [aux_sym_include_token1] = ACTIONS(627), - [aux_sym_ip_qos_token1] = ACTIONS(627), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(627), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(627), - [aux_sym_kex_algorithms_token1] = ACTIONS(627), - [aux_sym_known_hosts_command_token1] = ACTIONS(627), - [aux_sym_local_command_token1] = ACTIONS(627), - [aux_sym_local_forward_token1] = ACTIONS(627), - [aux_sym_log_level_token1] = ACTIONS(627), - [aux_sym_log_verbose_token1] = ACTIONS(627), - [aux_sym_macs_token1] = ACTIONS(627), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(627), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(627), - [aux_sym_password_authentication_token1] = ACTIONS(627), - [aux_sym_permit_local_command_token1] = ACTIONS(627), - [aux_sym_permit_remote_open_token1] = ACTIONS(627), - [aux_sym_pkcs11_provider_token1] = ACTIONS(627), - [aux_sym_port_token1] = ACTIONS(627), - [aux_sym_preferred_authentications_token1] = ACTIONS(627), - [aux_sym_protocol_token1] = ACTIONS(627), - [aux_sym_proxy_command_token1] = ACTIONS(627), - [aux_sym_proxy_jump_token1] = ACTIONS(627), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(627), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(627), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(627), - [aux_sym_pubkey_authentication_token1] = ACTIONS(627), - [aux_sym_rekey_limit_token1] = ACTIONS(627), - [aux_sym_remote_command_token1] = ACTIONS(627), - [aux_sym_remote_forward_token1] = ACTIONS(627), - [aux_sym_request_tty_token1] = ACTIONS(627), - [aux_sym_required_rsa_size_token1] = ACTIONS(627), - [aux_sym_revoked_host_keys_token1] = ACTIONS(627), - [aux_sym_security_key_provider_token1] = ACTIONS(627), - [aux_sym_send_env_token1] = ACTIONS(627), - [aux_sym_server_alive_count_max_token1] = ACTIONS(627), - [aux_sym_server_alive_interval_token1] = ACTIONS(627), - [aux_sym_session_type_token1] = ACTIONS(627), - [aux_sym_set_env_token1] = ACTIONS(627), - [aux_sym_stdin_null_token1] = ACTIONS(627), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(627), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(627), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(627), - [aux_sym_syslog_facility_token1] = ACTIONS(627), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(627), - [aux_sym_keep_alive_token1] = ACTIONS(627), - [aux_sym_tunnel_token1] = ACTIONS(629), - [aux_sym_tunnel_device_token1] = ACTIONS(627), - [aux_sym_update_host_keys_token1] = ACTIONS(627), - [aux_sym_use_keychain_token1] = ACTIONS(627), - [aux_sym_use_roaming_token1] = ACTIONS(627), - [aux_sym_user_token1] = ACTIONS(629), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(627), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(627), - [aux_sym_visual_host_key_token1] = ACTIONS(627), - [aux_sym_xauth_location_token1] = ACTIONS(627), + [ts_builtin_sym_end] = ACTIONS(3292), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3294), + [aux_sym_match_token1] = ACTIONS(3292), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3292), + [aux_sym_address_family_token1] = ACTIONS(3292), + [aux_sym_batch_mode_token1] = ACTIONS(3292), + [aux_sym_bind_address_token1] = ACTIONS(3292), + [aux_sym_bind_interface_token1] = ACTIONS(3292), + [aux_sym_canonical_domains_token1] = ACTIONS(3292), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3292), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3292), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3292), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3292), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3292), + [aux_sym_certificate_file_token1] = ACTIONS(3292), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3292), + [aux_sym_check_host_ip_token1] = ACTIONS(3292), + [aux_sym_ciphers_token1] = ACTIONS(3292), + [aux_sym_cipher_token1] = ACTIONS(3294), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3292), + [aux_sym_compression_token1] = ACTIONS(3292), + [aux_sym_connection_attempts_token1] = ACTIONS(3292), + [aux_sym_connect_timeout_token1] = ACTIONS(3292), + [aux_sym_control_master_token1] = ACTIONS(3292), + [aux_sym_control_path_token1] = ACTIONS(3292), + [aux_sym_control_persist_token1] = ACTIONS(3292), + [aux_sym_dynamic_forward_token1] = ACTIONS(3292), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3292), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3292), + [aux_sym_escape_char_token1] = ACTIONS(3292), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3292), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3292), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3292), + [aux_sym_forward_agent_token1] = ACTIONS(3292), + [aux_sym_forward_x11_token1] = ACTIONS(3294), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3292), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3292), + [aux_sym_gateway_ports_token1] = ACTIONS(3292), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3292), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3292), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3292), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3292), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3292), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3292), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3292), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3292), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3292), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3292), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3292), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3292), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3292), + [aux_sym_host_key_alias_token1] = ACTIONS(3292), + [aux_sym_hostname_token1] = ACTIONS(3292), + [aux_sym_identities_only_token1] = ACTIONS(3292), + [aux_sym_identity_agent_token1] = ACTIONS(3292), + [aux_sym_identity_file_token1] = ACTIONS(3292), + [aux_sym_ignore_unknown_token1] = ACTIONS(3292), + [aux_sym_include_token1] = ACTIONS(3292), + [aux_sym_ip_qos_token1] = ACTIONS(3292), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3292), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3292), + [aux_sym_kex_algorithms_token1] = ACTIONS(3292), + [aux_sym_known_hosts_command_token1] = ACTIONS(3292), + [aux_sym_local_command_token1] = ACTIONS(3292), + [aux_sym_local_forward_token1] = ACTIONS(3292), + [aux_sym_log_level_token1] = ACTIONS(3292), + [aux_sym_log_verbose_token1] = ACTIONS(3292), + [aux_sym_macs_token1] = ACTIONS(3292), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3292), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3292), + [aux_sym_password_authentication_token1] = ACTIONS(3292), + [aux_sym_permit_local_command_token1] = ACTIONS(3292), + [aux_sym_permit_remote_open_token1] = ACTIONS(3292), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3292), + [aux_sym_port_token1] = ACTIONS(3292), + [aux_sym_preferred_authentications_token1] = ACTIONS(3292), + [aux_sym_protocol_token1] = ACTIONS(3292), + [aux_sym_proxy_command_token1] = ACTIONS(3292), + [aux_sym_proxy_jump_token1] = ACTIONS(3292), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3292), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3292), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3292), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3292), + [aux_sym_rekey_limit_token1] = ACTIONS(3292), + [aux_sym_remote_command_token1] = ACTIONS(3292), + [aux_sym_remote_forward_token1] = ACTIONS(3292), + [aux_sym_request_tty_token1] = ACTIONS(3292), + [aux_sym_required_rsa_size_token1] = ACTIONS(3292), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3292), + [aux_sym_security_key_provider_token1] = ACTIONS(3292), + [aux_sym_send_env_token1] = ACTIONS(3292), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3292), + [aux_sym_server_alive_interval_token1] = ACTIONS(3292), + [aux_sym_session_type_token1] = ACTIONS(3292), + [aux_sym_set_env_token1] = ACTIONS(3292), + [aux_sym_stdin_null_token1] = ACTIONS(3292), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3292), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3292), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3292), + [aux_sym_syslog_facility_token1] = ACTIONS(3292), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3292), + [aux_sym_keep_alive_token1] = ACTIONS(3292), + [aux_sym_tunnel_token1] = ACTIONS(3294), + [aux_sym_tunnel_device_token1] = ACTIONS(3292), + [aux_sym_update_host_keys_token1] = ACTIONS(3292), + [aux_sym_use_keychain_token1] = ACTIONS(3292), + [aux_sym_use_roaming_token1] = ACTIONS(3292), + [aux_sym_user_token1] = ACTIONS(3294), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3292), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3292), + [aux_sym_visual_host_key_token1] = ACTIONS(3292), + [aux_sym_xauth_location_token1] = ACTIONS(3292), }, [573] = { - [ts_builtin_sym_end] = ACTIONS(633), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(635), - [aux_sym_match_token1] = ACTIONS(633), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(633), - [aux_sym_address_family_token1] = ACTIONS(633), - [aux_sym_batch_mode_token1] = ACTIONS(633), - [aux_sym_bind_address_token1] = ACTIONS(633), - [aux_sym_bind_interface_token1] = ACTIONS(633), - [aux_sym_canonical_domains_token1] = ACTIONS(633), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(633), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(633), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(633), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(633), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(633), - [aux_sym_certificate_file_token1] = ACTIONS(633), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(633), - [aux_sym_check_host_ip_token1] = ACTIONS(633), - [aux_sym_ciphers_token1] = ACTIONS(633), - [aux_sym_cipher_token1] = ACTIONS(635), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(633), - [aux_sym_compression_token1] = ACTIONS(633), - [aux_sym_connection_attempts_token1] = ACTIONS(633), - [aux_sym_connect_timeout_token1] = ACTIONS(633), - [aux_sym_control_master_token1] = ACTIONS(633), - [aux_sym_control_path_token1] = ACTIONS(633), - [aux_sym_control_persist_token1] = ACTIONS(633), - [aux_sym_dynamic_forward_token1] = ACTIONS(633), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(633), - [aux_sym_escape_char_token1] = ACTIONS(633), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(633), - [aux_sym_fingerprint_hash_token1] = ACTIONS(633), - [aux_sym_fork_after_authentication_token1] = ACTIONS(633), - [aux_sym_forward_agent_token1] = ACTIONS(633), - [aux_sym_forward_x11_token1] = ACTIONS(635), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(633), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(633), - [aux_sym_gateway_ports_token1] = ACTIONS(633), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(633), - [aux_sym_gssapi_authentication_token1] = ACTIONS(633), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(633), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(633), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(633), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(633), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(633), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(633), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(633), - [aux_sym_hash_known_hosts_token1] = ACTIONS(633), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(633), - [aux_sym_hostbased_authentication_token1] = ACTIONS(633), - [aux_sym_host_key_algorithms_token1] = ACTIONS(633), - [aux_sym_host_key_alias_token1] = ACTIONS(633), - [aux_sym_hostname_token1] = ACTIONS(633), - [aux_sym_identities_only_token1] = ACTIONS(633), - [aux_sym_identity_agent_token1] = ACTIONS(633), - [aux_sym_identity_file_token1] = ACTIONS(633), - [aux_sym_ignore_unknown_token1] = ACTIONS(633), - [aux_sym_include_token1] = ACTIONS(633), - [aux_sym_ip_qos_token1] = ACTIONS(633), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(633), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(633), - [aux_sym_kex_algorithms_token1] = ACTIONS(633), - [aux_sym_known_hosts_command_token1] = ACTIONS(633), - [aux_sym_local_command_token1] = ACTIONS(633), - [aux_sym_local_forward_token1] = ACTIONS(633), - [aux_sym_log_level_token1] = ACTIONS(633), - [aux_sym_log_verbose_token1] = ACTIONS(633), - [aux_sym_macs_token1] = ACTIONS(633), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(633), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(633), - [aux_sym_password_authentication_token1] = ACTIONS(633), - [aux_sym_permit_local_command_token1] = ACTIONS(633), - [aux_sym_permit_remote_open_token1] = ACTIONS(633), - [aux_sym_pkcs11_provider_token1] = ACTIONS(633), - [aux_sym_port_token1] = ACTIONS(633), - [aux_sym_preferred_authentications_token1] = ACTIONS(633), - [aux_sym_protocol_token1] = ACTIONS(633), - [aux_sym_proxy_command_token1] = ACTIONS(633), - [aux_sym_proxy_jump_token1] = ACTIONS(633), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(633), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(633), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(633), - [aux_sym_pubkey_authentication_token1] = ACTIONS(633), - [aux_sym_rekey_limit_token1] = ACTIONS(633), - [aux_sym_remote_command_token1] = ACTIONS(633), - [aux_sym_remote_forward_token1] = ACTIONS(633), - [aux_sym_request_tty_token1] = ACTIONS(633), - [aux_sym_required_rsa_size_token1] = ACTIONS(633), - [aux_sym_revoked_host_keys_token1] = ACTIONS(633), - [aux_sym_security_key_provider_token1] = ACTIONS(633), - [aux_sym_send_env_token1] = ACTIONS(633), - [aux_sym_server_alive_count_max_token1] = ACTIONS(633), - [aux_sym_server_alive_interval_token1] = ACTIONS(633), - [aux_sym_session_type_token1] = ACTIONS(633), - [aux_sym_set_env_token1] = ACTIONS(633), - [aux_sym_stdin_null_token1] = ACTIONS(633), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(633), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(633), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(633), - [aux_sym_syslog_facility_token1] = ACTIONS(633), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(633), - [aux_sym_keep_alive_token1] = ACTIONS(633), - [aux_sym_tunnel_token1] = ACTIONS(635), - [aux_sym_tunnel_device_token1] = ACTIONS(633), - [aux_sym_update_host_keys_token1] = ACTIONS(633), - [aux_sym_use_keychain_token1] = ACTIONS(633), - [aux_sym_use_roaming_token1] = ACTIONS(633), - [aux_sym_user_token1] = ACTIONS(635), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(633), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(633), - [aux_sym_visual_host_key_token1] = ACTIONS(633), - [aux_sym_xauth_location_token1] = ACTIONS(633), + [ts_builtin_sym_end] = ACTIONS(3296), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3298), + [aux_sym_match_token1] = ACTIONS(3296), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3296), + [aux_sym_address_family_token1] = ACTIONS(3296), + [aux_sym_batch_mode_token1] = ACTIONS(3296), + [aux_sym_bind_address_token1] = ACTIONS(3296), + [aux_sym_bind_interface_token1] = ACTIONS(3296), + [aux_sym_canonical_domains_token1] = ACTIONS(3296), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3296), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3296), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3296), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3296), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3296), + [aux_sym_certificate_file_token1] = ACTIONS(3296), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3296), + [aux_sym_check_host_ip_token1] = ACTIONS(3296), + [aux_sym_ciphers_token1] = ACTIONS(3296), + [aux_sym_cipher_token1] = ACTIONS(3298), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3296), + [aux_sym_compression_token1] = ACTIONS(3296), + [aux_sym_connection_attempts_token1] = ACTIONS(3296), + [aux_sym_connect_timeout_token1] = ACTIONS(3296), + [aux_sym_control_master_token1] = ACTIONS(3296), + [aux_sym_control_path_token1] = ACTIONS(3296), + [aux_sym_control_persist_token1] = ACTIONS(3296), + [aux_sym_dynamic_forward_token1] = ACTIONS(3296), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3296), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3296), + [aux_sym_escape_char_token1] = ACTIONS(3296), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3296), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3296), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3296), + [aux_sym_forward_agent_token1] = ACTIONS(3296), + [aux_sym_forward_x11_token1] = ACTIONS(3298), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3296), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3296), + [aux_sym_gateway_ports_token1] = ACTIONS(3296), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3296), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3296), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3296), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3296), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3296), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3296), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3296), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3296), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3296), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3296), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3296), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3296), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3296), + [aux_sym_host_key_alias_token1] = ACTIONS(3296), + [aux_sym_hostname_token1] = ACTIONS(3296), + [aux_sym_identities_only_token1] = ACTIONS(3296), + [aux_sym_identity_agent_token1] = ACTIONS(3296), + [aux_sym_identity_file_token1] = ACTIONS(3296), + [aux_sym_ignore_unknown_token1] = ACTIONS(3296), + [aux_sym_include_token1] = ACTIONS(3296), + [aux_sym_ip_qos_token1] = ACTIONS(3296), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3296), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3296), + [aux_sym_kex_algorithms_token1] = ACTIONS(3296), + [aux_sym_known_hosts_command_token1] = ACTIONS(3296), + [aux_sym_local_command_token1] = ACTIONS(3296), + [aux_sym_local_forward_token1] = ACTIONS(3296), + [aux_sym_log_level_token1] = ACTIONS(3296), + [aux_sym_log_verbose_token1] = ACTIONS(3296), + [aux_sym_macs_token1] = ACTIONS(3296), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3296), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3296), + [aux_sym_password_authentication_token1] = ACTIONS(3296), + [aux_sym_permit_local_command_token1] = ACTIONS(3296), + [aux_sym_permit_remote_open_token1] = ACTIONS(3296), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3296), + [aux_sym_port_token1] = ACTIONS(3296), + [aux_sym_preferred_authentications_token1] = ACTIONS(3296), + [aux_sym_protocol_token1] = ACTIONS(3296), + [aux_sym_proxy_command_token1] = ACTIONS(3296), + [aux_sym_proxy_jump_token1] = ACTIONS(3296), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3296), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3296), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3296), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3296), + [aux_sym_rekey_limit_token1] = ACTIONS(3296), + [aux_sym_remote_command_token1] = ACTIONS(3296), + [aux_sym_remote_forward_token1] = ACTIONS(3296), + [aux_sym_request_tty_token1] = ACTIONS(3296), + [aux_sym_required_rsa_size_token1] = ACTIONS(3296), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3296), + [aux_sym_security_key_provider_token1] = ACTIONS(3296), + [aux_sym_send_env_token1] = ACTIONS(3296), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3296), + [aux_sym_server_alive_interval_token1] = ACTIONS(3296), + [aux_sym_session_type_token1] = ACTIONS(3296), + [aux_sym_set_env_token1] = ACTIONS(3296), + [aux_sym_stdin_null_token1] = ACTIONS(3296), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3296), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3296), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3296), + [aux_sym_syslog_facility_token1] = ACTIONS(3296), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3296), + [aux_sym_keep_alive_token1] = ACTIONS(3296), + [aux_sym_tunnel_token1] = ACTIONS(3298), + [aux_sym_tunnel_device_token1] = ACTIONS(3296), + [aux_sym_update_host_keys_token1] = ACTIONS(3296), + [aux_sym_use_keychain_token1] = ACTIONS(3296), + [aux_sym_use_roaming_token1] = ACTIONS(3296), + [aux_sym_user_token1] = ACTIONS(3298), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3296), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3296), + [aux_sym_visual_host_key_token1] = ACTIONS(3296), + [aux_sym_xauth_location_token1] = ACTIONS(3296), }, [574] = { - [ts_builtin_sym_end] = ACTIONS(639), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(641), - [aux_sym_match_token1] = ACTIONS(639), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(639), - [aux_sym_address_family_token1] = ACTIONS(639), - [aux_sym_batch_mode_token1] = ACTIONS(639), - [aux_sym_bind_address_token1] = ACTIONS(639), - [aux_sym_bind_interface_token1] = ACTIONS(639), - [aux_sym_canonical_domains_token1] = ACTIONS(639), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(639), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(639), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(639), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(639), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(639), - [aux_sym_certificate_file_token1] = ACTIONS(639), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(639), - [aux_sym_check_host_ip_token1] = ACTIONS(639), - [aux_sym_ciphers_token1] = ACTIONS(639), - [aux_sym_cipher_token1] = ACTIONS(641), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(639), - [aux_sym_compression_token1] = ACTIONS(639), - [aux_sym_connection_attempts_token1] = ACTIONS(639), - [aux_sym_connect_timeout_token1] = ACTIONS(639), - [aux_sym_control_master_token1] = ACTIONS(639), - [aux_sym_control_path_token1] = ACTIONS(639), - [aux_sym_control_persist_token1] = ACTIONS(639), - [aux_sym_dynamic_forward_token1] = ACTIONS(639), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(639), - [aux_sym_escape_char_token1] = ACTIONS(639), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(639), - [aux_sym_fingerprint_hash_token1] = ACTIONS(639), - [aux_sym_fork_after_authentication_token1] = ACTIONS(639), - [aux_sym_forward_agent_token1] = ACTIONS(639), - [aux_sym_forward_x11_token1] = ACTIONS(641), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(639), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(639), - [aux_sym_gateway_ports_token1] = ACTIONS(639), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(639), - [aux_sym_gssapi_authentication_token1] = ACTIONS(639), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(639), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(639), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(639), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(639), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(639), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(639), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(639), - [aux_sym_hash_known_hosts_token1] = ACTIONS(639), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(639), - [aux_sym_hostbased_authentication_token1] = ACTIONS(639), - [aux_sym_host_key_algorithms_token1] = ACTIONS(639), - [aux_sym_host_key_alias_token1] = ACTIONS(639), - [aux_sym_hostname_token1] = ACTIONS(639), - [aux_sym_identities_only_token1] = ACTIONS(639), - [aux_sym_identity_agent_token1] = ACTIONS(639), - [aux_sym_identity_file_token1] = ACTIONS(639), - [aux_sym_ignore_unknown_token1] = ACTIONS(639), - [aux_sym_include_token1] = ACTIONS(639), - [aux_sym_ip_qos_token1] = ACTIONS(639), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(639), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(639), - [aux_sym_kex_algorithms_token1] = ACTIONS(639), - [aux_sym_known_hosts_command_token1] = ACTIONS(639), - [aux_sym_local_command_token1] = ACTIONS(639), - [aux_sym_local_forward_token1] = ACTIONS(639), - [aux_sym_log_level_token1] = ACTIONS(639), - [aux_sym_log_verbose_token1] = ACTIONS(639), - [aux_sym_macs_token1] = ACTIONS(639), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(639), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(639), - [aux_sym_password_authentication_token1] = ACTIONS(639), - [aux_sym_permit_local_command_token1] = ACTIONS(639), - [aux_sym_permit_remote_open_token1] = ACTIONS(639), - [aux_sym_pkcs11_provider_token1] = ACTIONS(639), - [aux_sym_port_token1] = ACTIONS(639), - [aux_sym_preferred_authentications_token1] = ACTIONS(639), - [aux_sym_protocol_token1] = ACTIONS(639), - [aux_sym_proxy_command_token1] = ACTIONS(639), - [aux_sym_proxy_jump_token1] = ACTIONS(639), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(639), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(639), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(639), - [aux_sym_pubkey_authentication_token1] = ACTIONS(639), - [aux_sym_rekey_limit_token1] = ACTIONS(639), - [aux_sym_remote_command_token1] = ACTIONS(639), - [aux_sym_remote_forward_token1] = ACTIONS(639), - [aux_sym_request_tty_token1] = ACTIONS(639), - [aux_sym_required_rsa_size_token1] = ACTIONS(639), - [aux_sym_revoked_host_keys_token1] = ACTIONS(639), - [aux_sym_security_key_provider_token1] = ACTIONS(639), - [aux_sym_send_env_token1] = ACTIONS(639), - [aux_sym_server_alive_count_max_token1] = ACTIONS(639), - [aux_sym_server_alive_interval_token1] = ACTIONS(639), - [aux_sym_session_type_token1] = ACTIONS(639), - [aux_sym_set_env_token1] = ACTIONS(639), - [aux_sym_stdin_null_token1] = ACTIONS(639), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(639), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(639), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(639), - [aux_sym_syslog_facility_token1] = ACTIONS(639), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(639), - [aux_sym_keep_alive_token1] = ACTIONS(639), - [aux_sym_tunnel_token1] = ACTIONS(641), - [aux_sym_tunnel_device_token1] = ACTIONS(639), - [aux_sym_update_host_keys_token1] = ACTIONS(639), - [aux_sym_use_keychain_token1] = ACTIONS(639), - [aux_sym_use_roaming_token1] = ACTIONS(639), - [aux_sym_user_token1] = ACTIONS(641), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(639), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(639), - [aux_sym_visual_host_key_token1] = ACTIONS(639), - [aux_sym_xauth_location_token1] = ACTIONS(639), + [ts_builtin_sym_end] = ACTIONS(3300), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3302), + [aux_sym_match_token1] = ACTIONS(3300), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3300), + [aux_sym_address_family_token1] = ACTIONS(3300), + [aux_sym_batch_mode_token1] = ACTIONS(3300), + [aux_sym_bind_address_token1] = ACTIONS(3300), + [aux_sym_bind_interface_token1] = ACTIONS(3300), + [aux_sym_canonical_domains_token1] = ACTIONS(3300), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3300), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3300), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3300), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3300), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3300), + [aux_sym_certificate_file_token1] = ACTIONS(3300), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3300), + [aux_sym_check_host_ip_token1] = ACTIONS(3300), + [aux_sym_ciphers_token1] = ACTIONS(3300), + [aux_sym_cipher_token1] = ACTIONS(3302), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3300), + [aux_sym_compression_token1] = ACTIONS(3300), + [aux_sym_connection_attempts_token1] = ACTIONS(3300), + [aux_sym_connect_timeout_token1] = ACTIONS(3300), + [aux_sym_control_master_token1] = ACTIONS(3300), + [aux_sym_control_path_token1] = ACTIONS(3300), + [aux_sym_control_persist_token1] = ACTIONS(3300), + [aux_sym_dynamic_forward_token1] = ACTIONS(3300), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3300), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3300), + [aux_sym_escape_char_token1] = ACTIONS(3300), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3300), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3300), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3300), + [aux_sym_forward_agent_token1] = ACTIONS(3300), + [aux_sym_forward_x11_token1] = ACTIONS(3302), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3300), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3300), + [aux_sym_gateway_ports_token1] = ACTIONS(3300), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3300), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3300), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3300), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3300), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3300), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3300), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3300), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3300), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3300), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3300), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3300), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3300), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3300), + [aux_sym_host_key_alias_token1] = ACTIONS(3300), + [aux_sym_hostname_token1] = ACTIONS(3300), + [aux_sym_identities_only_token1] = ACTIONS(3300), + [aux_sym_identity_agent_token1] = ACTIONS(3300), + [aux_sym_identity_file_token1] = ACTIONS(3300), + [aux_sym_ignore_unknown_token1] = ACTIONS(3300), + [aux_sym_include_token1] = ACTIONS(3300), + [aux_sym_ip_qos_token1] = ACTIONS(3300), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3300), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3300), + [aux_sym_kex_algorithms_token1] = ACTIONS(3300), + [aux_sym_known_hosts_command_token1] = ACTIONS(3300), + [aux_sym_local_command_token1] = ACTIONS(3300), + [aux_sym_local_forward_token1] = ACTIONS(3300), + [aux_sym_log_level_token1] = ACTIONS(3300), + [aux_sym_log_verbose_token1] = ACTIONS(3300), + [aux_sym_macs_token1] = ACTIONS(3300), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3300), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3300), + [aux_sym_password_authentication_token1] = ACTIONS(3300), + [aux_sym_permit_local_command_token1] = ACTIONS(3300), + [aux_sym_permit_remote_open_token1] = ACTIONS(3300), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3300), + [aux_sym_port_token1] = ACTIONS(3300), + [aux_sym_preferred_authentications_token1] = ACTIONS(3300), + [aux_sym_protocol_token1] = ACTIONS(3300), + [aux_sym_proxy_command_token1] = ACTIONS(3300), + [aux_sym_proxy_jump_token1] = ACTIONS(3300), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3300), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3300), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3300), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3300), + [aux_sym_rekey_limit_token1] = ACTIONS(3300), + [aux_sym_remote_command_token1] = ACTIONS(3300), + [aux_sym_remote_forward_token1] = ACTIONS(3300), + [aux_sym_request_tty_token1] = ACTIONS(3300), + [aux_sym_required_rsa_size_token1] = ACTIONS(3300), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3300), + [aux_sym_security_key_provider_token1] = ACTIONS(3300), + [aux_sym_send_env_token1] = ACTIONS(3300), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3300), + [aux_sym_server_alive_interval_token1] = ACTIONS(3300), + [aux_sym_session_type_token1] = ACTIONS(3300), + [aux_sym_set_env_token1] = ACTIONS(3300), + [aux_sym_stdin_null_token1] = ACTIONS(3300), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3300), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3300), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3300), + [aux_sym_syslog_facility_token1] = ACTIONS(3300), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3300), + [aux_sym_keep_alive_token1] = ACTIONS(3300), + [aux_sym_tunnel_token1] = ACTIONS(3302), + [aux_sym_tunnel_device_token1] = ACTIONS(3300), + [aux_sym_update_host_keys_token1] = ACTIONS(3300), + [aux_sym_use_keychain_token1] = ACTIONS(3300), + [aux_sym_use_roaming_token1] = ACTIONS(3300), + [aux_sym_user_token1] = ACTIONS(3302), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3300), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3300), + [aux_sym_visual_host_key_token1] = ACTIONS(3300), + [aux_sym_xauth_location_token1] = ACTIONS(3300), }, [575] = { - [ts_builtin_sym_end] = ACTIONS(645), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(647), - [aux_sym_match_token1] = ACTIONS(645), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(645), - [aux_sym_address_family_token1] = ACTIONS(645), - [aux_sym_batch_mode_token1] = ACTIONS(645), - [aux_sym_bind_address_token1] = ACTIONS(645), - [aux_sym_bind_interface_token1] = ACTIONS(645), - [aux_sym_canonical_domains_token1] = ACTIONS(645), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(645), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(645), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(645), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(645), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(645), - [aux_sym_certificate_file_token1] = ACTIONS(645), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(645), - [aux_sym_check_host_ip_token1] = ACTIONS(645), - [aux_sym_ciphers_token1] = ACTIONS(645), - [aux_sym_cipher_token1] = ACTIONS(647), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(645), - [aux_sym_compression_token1] = ACTIONS(645), - [aux_sym_connection_attempts_token1] = ACTIONS(645), - [aux_sym_connect_timeout_token1] = ACTIONS(645), - [aux_sym_control_master_token1] = ACTIONS(645), - [aux_sym_control_path_token1] = ACTIONS(645), - [aux_sym_control_persist_token1] = ACTIONS(645), - [aux_sym_dynamic_forward_token1] = ACTIONS(645), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(645), - [aux_sym_escape_char_token1] = ACTIONS(645), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(645), - [aux_sym_fingerprint_hash_token1] = ACTIONS(645), - [aux_sym_fork_after_authentication_token1] = ACTIONS(645), - [aux_sym_forward_agent_token1] = ACTIONS(645), - [aux_sym_forward_x11_token1] = ACTIONS(647), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(645), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(645), - [aux_sym_gateway_ports_token1] = ACTIONS(645), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(645), - [aux_sym_gssapi_authentication_token1] = ACTIONS(645), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(645), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(645), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(645), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(645), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(645), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(645), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(645), - [aux_sym_hash_known_hosts_token1] = ACTIONS(645), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(645), - [aux_sym_hostbased_authentication_token1] = ACTIONS(645), - [aux_sym_host_key_algorithms_token1] = ACTIONS(645), - [aux_sym_host_key_alias_token1] = ACTIONS(645), - [aux_sym_hostname_token1] = ACTIONS(645), - [aux_sym_identities_only_token1] = ACTIONS(645), - [aux_sym_identity_agent_token1] = ACTIONS(645), - [aux_sym_identity_file_token1] = ACTIONS(645), - [aux_sym_ignore_unknown_token1] = ACTIONS(645), - [aux_sym_include_token1] = ACTIONS(645), - [aux_sym_ip_qos_token1] = ACTIONS(645), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(645), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(645), - [aux_sym_kex_algorithms_token1] = ACTIONS(645), - [aux_sym_known_hosts_command_token1] = ACTIONS(645), - [aux_sym_local_command_token1] = ACTIONS(645), - [aux_sym_local_forward_token1] = ACTIONS(645), - [aux_sym_log_level_token1] = ACTIONS(645), - [aux_sym_log_verbose_token1] = ACTIONS(645), - [aux_sym_macs_token1] = ACTIONS(645), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(645), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(645), - [aux_sym_password_authentication_token1] = ACTIONS(645), - [aux_sym_permit_local_command_token1] = ACTIONS(645), - [aux_sym_permit_remote_open_token1] = ACTIONS(645), - [aux_sym_pkcs11_provider_token1] = ACTIONS(645), - [aux_sym_port_token1] = ACTIONS(645), - [aux_sym_preferred_authentications_token1] = ACTIONS(645), - [aux_sym_protocol_token1] = ACTIONS(645), - [aux_sym_proxy_command_token1] = ACTIONS(645), - [aux_sym_proxy_jump_token1] = ACTIONS(645), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(645), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(645), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(645), - [aux_sym_pubkey_authentication_token1] = ACTIONS(645), - [aux_sym_rekey_limit_token1] = ACTIONS(645), - [aux_sym_remote_command_token1] = ACTIONS(645), - [aux_sym_remote_forward_token1] = ACTIONS(645), - [aux_sym_request_tty_token1] = ACTIONS(645), - [aux_sym_required_rsa_size_token1] = ACTIONS(645), - [aux_sym_revoked_host_keys_token1] = ACTIONS(645), - [aux_sym_security_key_provider_token1] = ACTIONS(645), - [aux_sym_send_env_token1] = ACTIONS(645), - [aux_sym_server_alive_count_max_token1] = ACTIONS(645), - [aux_sym_server_alive_interval_token1] = ACTIONS(645), - [aux_sym_session_type_token1] = ACTIONS(645), - [aux_sym_set_env_token1] = ACTIONS(645), - [aux_sym_stdin_null_token1] = ACTIONS(645), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(645), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(645), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(645), - [aux_sym_syslog_facility_token1] = ACTIONS(645), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(645), - [aux_sym_keep_alive_token1] = ACTIONS(645), - [aux_sym_tunnel_token1] = ACTIONS(647), - [aux_sym_tunnel_device_token1] = ACTIONS(645), - [aux_sym_update_host_keys_token1] = ACTIONS(645), - [aux_sym_use_keychain_token1] = ACTIONS(645), - [aux_sym_use_roaming_token1] = ACTIONS(645), - [aux_sym_user_token1] = ACTIONS(647), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(645), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(645), - [aux_sym_visual_host_key_token1] = ACTIONS(645), - [aux_sym_xauth_location_token1] = ACTIONS(645), + [ts_builtin_sym_end] = ACTIONS(3304), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3306), + [aux_sym_match_token1] = ACTIONS(3304), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3304), + [aux_sym_address_family_token1] = ACTIONS(3304), + [aux_sym_batch_mode_token1] = ACTIONS(3304), + [aux_sym_bind_address_token1] = ACTIONS(3304), + [aux_sym_bind_interface_token1] = ACTIONS(3304), + [aux_sym_canonical_domains_token1] = ACTIONS(3304), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3304), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3304), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3304), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3304), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3304), + [aux_sym_certificate_file_token1] = ACTIONS(3304), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3304), + [aux_sym_check_host_ip_token1] = ACTIONS(3304), + [aux_sym_ciphers_token1] = ACTIONS(3304), + [aux_sym_cipher_token1] = ACTIONS(3306), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3304), + [aux_sym_compression_token1] = ACTIONS(3304), + [aux_sym_connection_attempts_token1] = ACTIONS(3304), + [aux_sym_connect_timeout_token1] = ACTIONS(3304), + [aux_sym_control_master_token1] = ACTIONS(3304), + [aux_sym_control_path_token1] = ACTIONS(3304), + [aux_sym_control_persist_token1] = ACTIONS(3304), + [aux_sym_dynamic_forward_token1] = ACTIONS(3304), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3304), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3304), + [aux_sym_escape_char_token1] = ACTIONS(3304), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3304), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3304), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3304), + [aux_sym_forward_agent_token1] = ACTIONS(3304), + [aux_sym_forward_x11_token1] = ACTIONS(3306), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3304), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3304), + [aux_sym_gateway_ports_token1] = ACTIONS(3304), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3304), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3304), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3304), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3304), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3304), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3304), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3304), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3304), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3304), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3304), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3304), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3304), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3304), + [aux_sym_host_key_alias_token1] = ACTIONS(3304), + [aux_sym_hostname_token1] = ACTIONS(3304), + [aux_sym_identities_only_token1] = ACTIONS(3304), + [aux_sym_identity_agent_token1] = ACTIONS(3304), + [aux_sym_identity_file_token1] = ACTIONS(3304), + [aux_sym_ignore_unknown_token1] = ACTIONS(3304), + [aux_sym_include_token1] = ACTIONS(3304), + [aux_sym_ip_qos_token1] = ACTIONS(3304), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3304), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3304), + [aux_sym_kex_algorithms_token1] = ACTIONS(3304), + [aux_sym_known_hosts_command_token1] = ACTIONS(3304), + [aux_sym_local_command_token1] = ACTIONS(3304), + [aux_sym_local_forward_token1] = ACTIONS(3304), + [aux_sym_log_level_token1] = ACTIONS(3304), + [aux_sym_log_verbose_token1] = ACTIONS(3304), + [aux_sym_macs_token1] = ACTIONS(3304), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3304), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3304), + [aux_sym_password_authentication_token1] = ACTIONS(3304), + [aux_sym_permit_local_command_token1] = ACTIONS(3304), + [aux_sym_permit_remote_open_token1] = ACTIONS(3304), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3304), + [aux_sym_port_token1] = ACTIONS(3304), + [aux_sym_preferred_authentications_token1] = ACTIONS(3304), + [aux_sym_protocol_token1] = ACTIONS(3304), + [aux_sym_proxy_command_token1] = ACTIONS(3304), + [aux_sym_proxy_jump_token1] = ACTIONS(3304), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3304), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3304), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3304), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3304), + [aux_sym_rekey_limit_token1] = ACTIONS(3304), + [aux_sym_remote_command_token1] = ACTIONS(3304), + [aux_sym_remote_forward_token1] = ACTIONS(3304), + [aux_sym_request_tty_token1] = ACTIONS(3304), + [aux_sym_required_rsa_size_token1] = ACTIONS(3304), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3304), + [aux_sym_security_key_provider_token1] = ACTIONS(3304), + [aux_sym_send_env_token1] = ACTIONS(3304), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3304), + [aux_sym_server_alive_interval_token1] = ACTIONS(3304), + [aux_sym_session_type_token1] = ACTIONS(3304), + [aux_sym_set_env_token1] = ACTIONS(3304), + [aux_sym_stdin_null_token1] = ACTIONS(3304), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3304), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3304), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3304), + [aux_sym_syslog_facility_token1] = ACTIONS(3304), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3304), + [aux_sym_keep_alive_token1] = ACTIONS(3304), + [aux_sym_tunnel_token1] = ACTIONS(3306), + [aux_sym_tunnel_device_token1] = ACTIONS(3304), + [aux_sym_update_host_keys_token1] = ACTIONS(3304), + [aux_sym_use_keychain_token1] = ACTIONS(3304), + [aux_sym_use_roaming_token1] = ACTIONS(3304), + [aux_sym_user_token1] = ACTIONS(3306), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3304), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3304), + [aux_sym_visual_host_key_token1] = ACTIONS(3304), + [aux_sym_xauth_location_token1] = ACTIONS(3304), }, [576] = { - [ts_builtin_sym_end] = ACTIONS(651), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(653), - [aux_sym_match_token1] = ACTIONS(651), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(651), - [aux_sym_address_family_token1] = ACTIONS(651), - [aux_sym_batch_mode_token1] = ACTIONS(651), - [aux_sym_bind_address_token1] = ACTIONS(651), - [aux_sym_bind_interface_token1] = ACTIONS(651), - [aux_sym_canonical_domains_token1] = ACTIONS(651), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(651), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(651), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(651), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(651), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(651), - [aux_sym_certificate_file_token1] = ACTIONS(651), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(651), - [aux_sym_check_host_ip_token1] = ACTIONS(651), - [aux_sym_ciphers_token1] = ACTIONS(651), - [aux_sym_cipher_token1] = ACTIONS(653), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(651), - [aux_sym_compression_token1] = ACTIONS(651), - [aux_sym_connection_attempts_token1] = ACTIONS(651), - [aux_sym_connect_timeout_token1] = ACTIONS(651), - [aux_sym_control_master_token1] = ACTIONS(651), - [aux_sym_control_path_token1] = ACTIONS(651), - [aux_sym_control_persist_token1] = ACTIONS(651), - [aux_sym_dynamic_forward_token1] = ACTIONS(651), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(651), - [aux_sym_escape_char_token1] = ACTIONS(651), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(651), - [aux_sym_fingerprint_hash_token1] = ACTIONS(651), - [aux_sym_fork_after_authentication_token1] = ACTIONS(651), - [aux_sym_forward_agent_token1] = ACTIONS(651), - [aux_sym_forward_x11_token1] = ACTIONS(653), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(651), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(651), - [aux_sym_gateway_ports_token1] = ACTIONS(651), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(651), - [aux_sym_gssapi_authentication_token1] = ACTIONS(651), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(651), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(651), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(651), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(651), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(651), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(651), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(651), - [aux_sym_hash_known_hosts_token1] = ACTIONS(651), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(651), - [aux_sym_hostbased_authentication_token1] = ACTIONS(651), - [aux_sym_host_key_algorithms_token1] = ACTIONS(651), - [aux_sym_host_key_alias_token1] = ACTIONS(651), - [aux_sym_hostname_token1] = ACTIONS(651), - [aux_sym_identities_only_token1] = ACTIONS(651), - [aux_sym_identity_agent_token1] = ACTIONS(651), - [aux_sym_identity_file_token1] = ACTIONS(651), - [aux_sym_ignore_unknown_token1] = ACTIONS(651), - [aux_sym_include_token1] = ACTIONS(651), - [aux_sym_ip_qos_token1] = ACTIONS(651), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(651), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(651), - [aux_sym_kex_algorithms_token1] = ACTIONS(651), - [aux_sym_known_hosts_command_token1] = ACTIONS(651), - [aux_sym_local_command_token1] = ACTIONS(651), - [aux_sym_local_forward_token1] = ACTIONS(651), - [aux_sym_log_level_token1] = ACTIONS(651), - [aux_sym_log_verbose_token1] = ACTIONS(651), - [aux_sym_macs_token1] = ACTIONS(651), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(651), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(651), - [aux_sym_password_authentication_token1] = ACTIONS(651), - [aux_sym_permit_local_command_token1] = ACTIONS(651), - [aux_sym_permit_remote_open_token1] = ACTIONS(651), - [aux_sym_pkcs11_provider_token1] = ACTIONS(651), - [aux_sym_port_token1] = ACTIONS(651), - [aux_sym_preferred_authentications_token1] = ACTIONS(651), - [aux_sym_protocol_token1] = ACTIONS(651), - [aux_sym_proxy_command_token1] = ACTIONS(651), - [aux_sym_proxy_jump_token1] = ACTIONS(651), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(651), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(651), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(651), - [aux_sym_pubkey_authentication_token1] = ACTIONS(651), - [aux_sym_rekey_limit_token1] = ACTIONS(651), - [aux_sym_remote_command_token1] = ACTIONS(651), - [aux_sym_remote_forward_token1] = ACTIONS(651), - [aux_sym_request_tty_token1] = ACTIONS(651), - [aux_sym_required_rsa_size_token1] = ACTIONS(651), - [aux_sym_revoked_host_keys_token1] = ACTIONS(651), - [aux_sym_security_key_provider_token1] = ACTIONS(651), - [aux_sym_send_env_token1] = ACTIONS(651), - [aux_sym_server_alive_count_max_token1] = ACTIONS(651), - [aux_sym_server_alive_interval_token1] = ACTIONS(651), - [aux_sym_session_type_token1] = ACTIONS(651), - [aux_sym_set_env_token1] = ACTIONS(651), - [aux_sym_stdin_null_token1] = ACTIONS(651), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(651), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(651), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(651), - [aux_sym_syslog_facility_token1] = ACTIONS(651), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(651), - [aux_sym_keep_alive_token1] = ACTIONS(651), - [aux_sym_tunnel_token1] = ACTIONS(653), - [aux_sym_tunnel_device_token1] = ACTIONS(651), - [aux_sym_update_host_keys_token1] = ACTIONS(651), - [aux_sym_use_keychain_token1] = ACTIONS(651), - [aux_sym_use_roaming_token1] = ACTIONS(651), - [aux_sym_user_token1] = ACTIONS(653), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(651), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(651), - [aux_sym_visual_host_key_token1] = ACTIONS(651), - [aux_sym_xauth_location_token1] = ACTIONS(651), + [ts_builtin_sym_end] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1306), + [aux_sym_match_token1] = ACTIONS(1304), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1304), + [aux_sym_address_family_token1] = ACTIONS(1304), + [aux_sym_batch_mode_token1] = ACTIONS(1304), + [aux_sym_bind_address_token1] = ACTIONS(1304), + [aux_sym_bind_interface_token1] = ACTIONS(1304), + [aux_sym_canonical_domains_token1] = ACTIONS(1304), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1304), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1304), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1304), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1304), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1304), + [aux_sym_certificate_file_token1] = ACTIONS(1304), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1304), + [aux_sym_check_host_ip_token1] = ACTIONS(1304), + [aux_sym_ciphers_token1] = ACTIONS(1304), + [aux_sym_cipher_token1] = ACTIONS(1306), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1304), + [aux_sym_compression_token1] = ACTIONS(1304), + [aux_sym_connection_attempts_token1] = ACTIONS(1304), + [aux_sym_connect_timeout_token1] = ACTIONS(1304), + [aux_sym_control_master_token1] = ACTIONS(1304), + [aux_sym_control_path_token1] = ACTIONS(1304), + [aux_sym_control_persist_token1] = ACTIONS(1304), + [aux_sym_dynamic_forward_token1] = ACTIONS(1304), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1304), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1304), + [aux_sym_escape_char_token1] = ACTIONS(1304), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1304), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1304), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1304), + [aux_sym_forward_agent_token1] = ACTIONS(1304), + [aux_sym_forward_x11_token1] = ACTIONS(1306), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1304), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1304), + [aux_sym_gateway_ports_token1] = ACTIONS(1304), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1304), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1304), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1304), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1304), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1304), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1304), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1304), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1304), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1304), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1304), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1304), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1304), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1304), + [aux_sym_host_key_alias_token1] = ACTIONS(1304), + [aux_sym_hostname_token1] = ACTIONS(1304), + [aux_sym_identities_only_token1] = ACTIONS(1304), + [aux_sym_identity_agent_token1] = ACTIONS(1304), + [aux_sym_identity_file_token1] = ACTIONS(1304), + [aux_sym_ignore_unknown_token1] = ACTIONS(1304), + [aux_sym_include_token1] = ACTIONS(1304), + [aux_sym_ip_qos_token1] = ACTIONS(1304), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1304), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1304), + [aux_sym_kex_algorithms_token1] = ACTIONS(1304), + [aux_sym_known_hosts_command_token1] = ACTIONS(1304), + [aux_sym_local_command_token1] = ACTIONS(1304), + [aux_sym_local_forward_token1] = ACTIONS(1304), + [aux_sym_log_level_token1] = ACTIONS(1304), + [aux_sym_log_verbose_token1] = ACTIONS(1304), + [aux_sym_macs_token1] = ACTIONS(1304), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1304), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1304), + [aux_sym_password_authentication_token1] = ACTIONS(1304), + [aux_sym_permit_local_command_token1] = ACTIONS(1304), + [aux_sym_permit_remote_open_token1] = ACTIONS(1304), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1304), + [aux_sym_port_token1] = ACTIONS(1304), + [aux_sym_preferred_authentications_token1] = ACTIONS(1304), + [aux_sym_protocol_token1] = ACTIONS(1304), + [aux_sym_proxy_command_token1] = ACTIONS(1304), + [aux_sym_proxy_jump_token1] = ACTIONS(1304), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1304), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1304), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1304), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1304), + [aux_sym_rekey_limit_token1] = ACTIONS(1304), + [aux_sym_remote_command_token1] = ACTIONS(1304), + [aux_sym_remote_forward_token1] = ACTIONS(1304), + [aux_sym_request_tty_token1] = ACTIONS(1304), + [aux_sym_required_rsa_size_token1] = ACTIONS(1304), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1304), + [aux_sym_security_key_provider_token1] = ACTIONS(1304), + [aux_sym_send_env_token1] = ACTIONS(1304), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1304), + [aux_sym_server_alive_interval_token1] = ACTIONS(1304), + [aux_sym_session_type_token1] = ACTIONS(1304), + [aux_sym_set_env_token1] = ACTIONS(1304), + [aux_sym_stdin_null_token1] = ACTIONS(1304), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1304), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1304), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1304), + [aux_sym_syslog_facility_token1] = ACTIONS(1304), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1304), + [aux_sym_keep_alive_token1] = ACTIONS(1304), + [aux_sym_tunnel_token1] = ACTIONS(1306), + [aux_sym_tunnel_device_token1] = ACTIONS(1304), + [aux_sym_update_host_keys_token1] = ACTIONS(1304), + [aux_sym_use_keychain_token1] = ACTIONS(1304), + [aux_sym_use_roaming_token1] = ACTIONS(1304), + [aux_sym_user_token1] = ACTIONS(1306), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1304), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1304), + [aux_sym_visual_host_key_token1] = ACTIONS(1304), + [aux_sym_xauth_location_token1] = ACTIONS(1304), }, [577] = { - [ts_builtin_sym_end] = ACTIONS(657), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(659), - [aux_sym_match_token1] = ACTIONS(657), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(657), - [aux_sym_address_family_token1] = ACTIONS(657), - [aux_sym_batch_mode_token1] = ACTIONS(657), - [aux_sym_bind_address_token1] = ACTIONS(657), - [aux_sym_bind_interface_token1] = ACTIONS(657), - [aux_sym_canonical_domains_token1] = ACTIONS(657), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(657), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(657), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(657), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(657), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(657), - [aux_sym_certificate_file_token1] = ACTIONS(657), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(657), - [aux_sym_check_host_ip_token1] = ACTIONS(657), - [aux_sym_ciphers_token1] = ACTIONS(657), - [aux_sym_cipher_token1] = ACTIONS(659), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(657), - [aux_sym_compression_token1] = ACTIONS(657), - [aux_sym_connection_attempts_token1] = ACTIONS(657), - [aux_sym_connect_timeout_token1] = ACTIONS(657), - [aux_sym_control_master_token1] = ACTIONS(657), - [aux_sym_control_path_token1] = ACTIONS(657), - [aux_sym_control_persist_token1] = ACTIONS(657), - [aux_sym_dynamic_forward_token1] = ACTIONS(657), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(657), - [aux_sym_escape_char_token1] = ACTIONS(657), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(657), - [aux_sym_fingerprint_hash_token1] = ACTIONS(657), - [aux_sym_fork_after_authentication_token1] = ACTIONS(657), - [aux_sym_forward_agent_token1] = ACTIONS(657), - [aux_sym_forward_x11_token1] = ACTIONS(659), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(657), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(657), - [aux_sym_gateway_ports_token1] = ACTIONS(657), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(657), - [aux_sym_gssapi_authentication_token1] = ACTIONS(657), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(657), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(657), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(657), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(657), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(657), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(657), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(657), - [aux_sym_hash_known_hosts_token1] = ACTIONS(657), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(657), - [aux_sym_hostbased_authentication_token1] = ACTIONS(657), - [aux_sym_host_key_algorithms_token1] = ACTIONS(657), - [aux_sym_host_key_alias_token1] = ACTIONS(657), - [aux_sym_hostname_token1] = ACTIONS(657), - [aux_sym_identities_only_token1] = ACTIONS(657), - [aux_sym_identity_agent_token1] = ACTIONS(657), - [aux_sym_identity_file_token1] = ACTIONS(657), - [aux_sym_ignore_unknown_token1] = ACTIONS(657), - [aux_sym_include_token1] = ACTIONS(657), - [aux_sym_ip_qos_token1] = ACTIONS(657), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(657), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(657), - [aux_sym_kex_algorithms_token1] = ACTIONS(657), - [aux_sym_known_hosts_command_token1] = ACTIONS(657), - [aux_sym_local_command_token1] = ACTIONS(657), - [aux_sym_local_forward_token1] = ACTIONS(657), - [aux_sym_log_level_token1] = ACTIONS(657), - [aux_sym_log_verbose_token1] = ACTIONS(657), - [aux_sym_macs_token1] = ACTIONS(657), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(657), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(657), - [aux_sym_password_authentication_token1] = ACTIONS(657), - [aux_sym_permit_local_command_token1] = ACTIONS(657), - [aux_sym_permit_remote_open_token1] = ACTIONS(657), - [aux_sym_pkcs11_provider_token1] = ACTIONS(657), - [aux_sym_port_token1] = ACTIONS(657), - [aux_sym_preferred_authentications_token1] = ACTIONS(657), - [aux_sym_protocol_token1] = ACTIONS(657), - [aux_sym_proxy_command_token1] = ACTIONS(657), - [aux_sym_proxy_jump_token1] = ACTIONS(657), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(657), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(657), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(657), - [aux_sym_pubkey_authentication_token1] = ACTIONS(657), - [aux_sym_rekey_limit_token1] = ACTIONS(657), - [aux_sym_remote_command_token1] = ACTIONS(657), - [aux_sym_remote_forward_token1] = ACTIONS(657), - [aux_sym_request_tty_token1] = ACTIONS(657), - [aux_sym_required_rsa_size_token1] = ACTIONS(657), - [aux_sym_revoked_host_keys_token1] = ACTIONS(657), - [aux_sym_security_key_provider_token1] = ACTIONS(657), - [aux_sym_send_env_token1] = ACTIONS(657), - [aux_sym_server_alive_count_max_token1] = ACTIONS(657), - [aux_sym_server_alive_interval_token1] = ACTIONS(657), - [aux_sym_session_type_token1] = ACTIONS(657), - [aux_sym_set_env_token1] = ACTIONS(657), - [aux_sym_stdin_null_token1] = ACTIONS(657), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(657), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(657), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(657), - [aux_sym_syslog_facility_token1] = ACTIONS(657), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(657), - [aux_sym_keep_alive_token1] = ACTIONS(657), - [aux_sym_tunnel_token1] = ACTIONS(659), - [aux_sym_tunnel_device_token1] = ACTIONS(657), - [aux_sym_update_host_keys_token1] = ACTIONS(657), - [aux_sym_use_keychain_token1] = ACTIONS(657), - [aux_sym_use_roaming_token1] = ACTIONS(657), - [aux_sym_user_token1] = ACTIONS(659), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(657), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(657), - [aux_sym_visual_host_key_token1] = ACTIONS(657), - [aux_sym_xauth_location_token1] = ACTIONS(657), + [ts_builtin_sym_end] = ACTIONS(980), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(982), + [aux_sym_match_token1] = ACTIONS(980), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(980), + [aux_sym_address_family_token1] = ACTIONS(980), + [aux_sym_batch_mode_token1] = ACTIONS(980), + [aux_sym_bind_address_token1] = ACTIONS(980), + [aux_sym_bind_interface_token1] = ACTIONS(980), + [aux_sym_canonical_domains_token1] = ACTIONS(980), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(980), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(980), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(980), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(980), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(980), + [aux_sym_certificate_file_token1] = ACTIONS(980), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(980), + [aux_sym_check_host_ip_token1] = ACTIONS(980), + [aux_sym_ciphers_token1] = ACTIONS(980), + [aux_sym_cipher_token1] = ACTIONS(982), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(980), + [aux_sym_compression_token1] = ACTIONS(980), + [aux_sym_connection_attempts_token1] = ACTIONS(980), + [aux_sym_connect_timeout_token1] = ACTIONS(980), + [aux_sym_control_master_token1] = ACTIONS(980), + [aux_sym_control_path_token1] = ACTIONS(980), + [aux_sym_control_persist_token1] = ACTIONS(980), + [aux_sym_dynamic_forward_token1] = ACTIONS(980), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(980), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(980), + [aux_sym_escape_char_token1] = ACTIONS(980), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(980), + [aux_sym_fingerprint_hash_token1] = ACTIONS(980), + [aux_sym_fork_after_authentication_token1] = ACTIONS(980), + [aux_sym_forward_agent_token1] = ACTIONS(980), + [aux_sym_forward_x11_token1] = ACTIONS(982), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(980), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(980), + [aux_sym_gateway_ports_token1] = ACTIONS(980), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(980), + [aux_sym_gssapi_authentication_token1] = ACTIONS(980), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(980), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(980), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(980), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(980), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(980), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(980), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(980), + [aux_sym_hash_known_hosts_token1] = ACTIONS(980), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(980), + [aux_sym_hostbased_authentication_token1] = ACTIONS(980), + [aux_sym_host_key_algorithms_token1] = ACTIONS(980), + [aux_sym_host_key_alias_token1] = ACTIONS(980), + [aux_sym_hostname_token1] = ACTIONS(980), + [aux_sym_identities_only_token1] = ACTIONS(980), + [aux_sym_identity_agent_token1] = ACTIONS(980), + [aux_sym_identity_file_token1] = ACTIONS(980), + [aux_sym_ignore_unknown_token1] = ACTIONS(980), + [aux_sym_include_token1] = ACTIONS(980), + [aux_sym_ip_qos_token1] = ACTIONS(980), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(980), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(980), + [aux_sym_kex_algorithms_token1] = ACTIONS(980), + [aux_sym_known_hosts_command_token1] = ACTIONS(980), + [aux_sym_local_command_token1] = ACTIONS(980), + [aux_sym_local_forward_token1] = ACTIONS(980), + [aux_sym_log_level_token1] = ACTIONS(980), + [aux_sym_log_verbose_token1] = ACTIONS(980), + [aux_sym_macs_token1] = ACTIONS(980), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(980), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(980), + [aux_sym_password_authentication_token1] = ACTIONS(980), + [aux_sym_permit_local_command_token1] = ACTIONS(980), + [aux_sym_permit_remote_open_token1] = ACTIONS(980), + [aux_sym_pkcs11_provider_token1] = ACTIONS(980), + [aux_sym_port_token1] = ACTIONS(980), + [aux_sym_preferred_authentications_token1] = ACTIONS(980), + [aux_sym_protocol_token1] = ACTIONS(980), + [aux_sym_proxy_command_token1] = ACTIONS(980), + [aux_sym_proxy_jump_token1] = ACTIONS(980), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(980), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(980), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(980), + [aux_sym_pubkey_authentication_token1] = ACTIONS(980), + [aux_sym_rekey_limit_token1] = ACTIONS(980), + [aux_sym_remote_command_token1] = ACTIONS(980), + [aux_sym_remote_forward_token1] = ACTIONS(980), + [aux_sym_request_tty_token1] = ACTIONS(980), + [aux_sym_required_rsa_size_token1] = ACTIONS(980), + [aux_sym_revoked_host_keys_token1] = ACTIONS(980), + [aux_sym_security_key_provider_token1] = ACTIONS(980), + [aux_sym_send_env_token1] = ACTIONS(980), + [aux_sym_server_alive_count_max_token1] = ACTIONS(980), + [aux_sym_server_alive_interval_token1] = ACTIONS(980), + [aux_sym_session_type_token1] = ACTIONS(980), + [aux_sym_set_env_token1] = ACTIONS(980), + [aux_sym_stdin_null_token1] = ACTIONS(980), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(980), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(980), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(980), + [aux_sym_syslog_facility_token1] = ACTIONS(980), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(980), + [aux_sym_keep_alive_token1] = ACTIONS(980), + [aux_sym_tunnel_token1] = ACTIONS(982), + [aux_sym_tunnel_device_token1] = ACTIONS(980), + [aux_sym_update_host_keys_token1] = ACTIONS(980), + [aux_sym_use_keychain_token1] = ACTIONS(980), + [aux_sym_use_roaming_token1] = ACTIONS(980), + [aux_sym_user_token1] = ACTIONS(982), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(980), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(980), + [aux_sym_visual_host_key_token1] = ACTIONS(980), + [aux_sym_xauth_location_token1] = ACTIONS(980), }, [578] = { - [ts_builtin_sym_end] = ACTIONS(663), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(665), - [aux_sym_match_token1] = ACTIONS(663), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(663), - [aux_sym_address_family_token1] = ACTIONS(663), - [aux_sym_batch_mode_token1] = ACTIONS(663), - [aux_sym_bind_address_token1] = ACTIONS(663), - [aux_sym_bind_interface_token1] = ACTIONS(663), - [aux_sym_canonical_domains_token1] = ACTIONS(663), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(663), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(663), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(663), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(663), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(663), - [aux_sym_certificate_file_token1] = ACTIONS(663), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(663), - [aux_sym_check_host_ip_token1] = ACTIONS(663), - [aux_sym_ciphers_token1] = ACTIONS(663), - [aux_sym_cipher_token1] = ACTIONS(665), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(663), - [aux_sym_compression_token1] = ACTIONS(663), - [aux_sym_connection_attempts_token1] = ACTIONS(663), - [aux_sym_connect_timeout_token1] = ACTIONS(663), - [aux_sym_control_master_token1] = ACTIONS(663), - [aux_sym_control_path_token1] = ACTIONS(663), - [aux_sym_control_persist_token1] = ACTIONS(663), - [aux_sym_dynamic_forward_token1] = ACTIONS(663), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(663), - [aux_sym_escape_char_token1] = ACTIONS(663), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(663), - [aux_sym_fingerprint_hash_token1] = ACTIONS(663), - [aux_sym_fork_after_authentication_token1] = ACTIONS(663), - [aux_sym_forward_agent_token1] = ACTIONS(663), - [aux_sym_forward_x11_token1] = ACTIONS(665), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(663), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(663), - [aux_sym_gateway_ports_token1] = ACTIONS(663), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(663), - [aux_sym_gssapi_authentication_token1] = ACTIONS(663), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(663), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(663), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(663), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(663), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(663), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(663), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(663), - [aux_sym_hash_known_hosts_token1] = ACTIONS(663), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(663), - [aux_sym_hostbased_authentication_token1] = ACTIONS(663), - [aux_sym_host_key_algorithms_token1] = ACTIONS(663), - [aux_sym_host_key_alias_token1] = ACTIONS(663), - [aux_sym_hostname_token1] = ACTIONS(663), - [aux_sym_identities_only_token1] = ACTIONS(663), - [aux_sym_identity_agent_token1] = ACTIONS(663), - [aux_sym_identity_file_token1] = ACTIONS(663), - [aux_sym_ignore_unknown_token1] = ACTIONS(663), - [aux_sym_include_token1] = ACTIONS(663), - [aux_sym_ip_qos_token1] = ACTIONS(663), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(663), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(663), - [aux_sym_kex_algorithms_token1] = ACTIONS(663), - [aux_sym_known_hosts_command_token1] = ACTIONS(663), - [aux_sym_local_command_token1] = ACTIONS(663), - [aux_sym_local_forward_token1] = ACTIONS(663), - [aux_sym_log_level_token1] = ACTIONS(663), - [aux_sym_log_verbose_token1] = ACTIONS(663), - [aux_sym_macs_token1] = ACTIONS(663), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(663), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(663), - [aux_sym_password_authentication_token1] = ACTIONS(663), - [aux_sym_permit_local_command_token1] = ACTIONS(663), - [aux_sym_permit_remote_open_token1] = ACTIONS(663), - [aux_sym_pkcs11_provider_token1] = ACTIONS(663), - [aux_sym_port_token1] = ACTIONS(663), - [aux_sym_preferred_authentications_token1] = ACTIONS(663), - [aux_sym_protocol_token1] = ACTIONS(663), - [aux_sym_proxy_command_token1] = ACTIONS(663), - [aux_sym_proxy_jump_token1] = ACTIONS(663), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(663), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(663), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(663), - [aux_sym_pubkey_authentication_token1] = ACTIONS(663), - [aux_sym_rekey_limit_token1] = ACTIONS(663), - [aux_sym_remote_command_token1] = ACTIONS(663), - [aux_sym_remote_forward_token1] = ACTIONS(663), - [aux_sym_request_tty_token1] = ACTIONS(663), - [aux_sym_required_rsa_size_token1] = ACTIONS(663), - [aux_sym_revoked_host_keys_token1] = ACTIONS(663), - [aux_sym_security_key_provider_token1] = ACTIONS(663), - [aux_sym_send_env_token1] = ACTIONS(663), - [aux_sym_server_alive_count_max_token1] = ACTIONS(663), - [aux_sym_server_alive_interval_token1] = ACTIONS(663), - [aux_sym_session_type_token1] = ACTIONS(663), - [aux_sym_set_env_token1] = ACTIONS(663), - [aux_sym_stdin_null_token1] = ACTIONS(663), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(663), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(663), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(663), - [aux_sym_syslog_facility_token1] = ACTIONS(663), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(663), - [aux_sym_keep_alive_token1] = ACTIONS(663), - [aux_sym_tunnel_token1] = ACTIONS(665), - [aux_sym_tunnel_device_token1] = ACTIONS(663), - [aux_sym_update_host_keys_token1] = ACTIONS(663), - [aux_sym_use_keychain_token1] = ACTIONS(663), - [aux_sym_use_roaming_token1] = ACTIONS(663), - [aux_sym_user_token1] = ACTIONS(665), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(663), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(663), - [aux_sym_visual_host_key_token1] = ACTIONS(663), - [aux_sym_xauth_location_token1] = ACTIONS(663), + [ts_builtin_sym_end] = ACTIONS(3308), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3310), + [aux_sym_match_token1] = ACTIONS(3308), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3308), + [aux_sym_address_family_token1] = ACTIONS(3308), + [aux_sym_batch_mode_token1] = ACTIONS(3308), + [aux_sym_bind_address_token1] = ACTIONS(3308), + [aux_sym_bind_interface_token1] = ACTIONS(3308), + [aux_sym_canonical_domains_token1] = ACTIONS(3308), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3308), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3308), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3308), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3308), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3308), + [aux_sym_certificate_file_token1] = ACTIONS(3308), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3308), + [aux_sym_check_host_ip_token1] = ACTIONS(3308), + [aux_sym_ciphers_token1] = ACTIONS(3308), + [aux_sym_cipher_token1] = ACTIONS(3310), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3308), + [aux_sym_compression_token1] = ACTIONS(3308), + [aux_sym_connection_attempts_token1] = ACTIONS(3308), + [aux_sym_connect_timeout_token1] = ACTIONS(3308), + [aux_sym_control_master_token1] = ACTIONS(3308), + [aux_sym_control_path_token1] = ACTIONS(3308), + [aux_sym_control_persist_token1] = ACTIONS(3308), + [aux_sym_dynamic_forward_token1] = ACTIONS(3308), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3308), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3308), + [aux_sym_escape_char_token1] = ACTIONS(3308), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3308), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3308), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3308), + [aux_sym_forward_agent_token1] = ACTIONS(3308), + [aux_sym_forward_x11_token1] = ACTIONS(3310), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3308), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3308), + [aux_sym_gateway_ports_token1] = ACTIONS(3308), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3308), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3308), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3308), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3308), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3308), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3308), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3308), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3308), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3308), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3308), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3308), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3308), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3308), + [aux_sym_host_key_alias_token1] = ACTIONS(3308), + [aux_sym_hostname_token1] = ACTIONS(3308), + [aux_sym_identities_only_token1] = ACTIONS(3308), + [aux_sym_identity_agent_token1] = ACTIONS(3308), + [aux_sym_identity_file_token1] = ACTIONS(3308), + [aux_sym_ignore_unknown_token1] = ACTIONS(3308), + [aux_sym_include_token1] = ACTIONS(3308), + [aux_sym_ip_qos_token1] = ACTIONS(3308), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3308), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3308), + [aux_sym_kex_algorithms_token1] = ACTIONS(3308), + [aux_sym_known_hosts_command_token1] = ACTIONS(3308), + [aux_sym_local_command_token1] = ACTIONS(3308), + [aux_sym_local_forward_token1] = ACTIONS(3308), + [aux_sym_log_level_token1] = ACTIONS(3308), + [aux_sym_log_verbose_token1] = ACTIONS(3308), + [aux_sym_macs_token1] = ACTIONS(3308), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3308), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3308), + [aux_sym_password_authentication_token1] = ACTIONS(3308), + [aux_sym_permit_local_command_token1] = ACTIONS(3308), + [aux_sym_permit_remote_open_token1] = ACTIONS(3308), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3308), + [aux_sym_port_token1] = ACTIONS(3308), + [aux_sym_preferred_authentications_token1] = ACTIONS(3308), + [aux_sym_protocol_token1] = ACTIONS(3308), + [aux_sym_proxy_command_token1] = ACTIONS(3308), + [aux_sym_proxy_jump_token1] = ACTIONS(3308), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3308), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3308), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3308), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3308), + [aux_sym_rekey_limit_token1] = ACTIONS(3308), + [aux_sym_remote_command_token1] = ACTIONS(3308), + [aux_sym_remote_forward_token1] = ACTIONS(3308), + [aux_sym_request_tty_token1] = ACTIONS(3308), + [aux_sym_required_rsa_size_token1] = ACTIONS(3308), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3308), + [aux_sym_security_key_provider_token1] = ACTIONS(3308), + [aux_sym_send_env_token1] = ACTIONS(3308), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3308), + [aux_sym_server_alive_interval_token1] = ACTIONS(3308), + [aux_sym_session_type_token1] = ACTIONS(3308), + [aux_sym_set_env_token1] = ACTIONS(3308), + [aux_sym_stdin_null_token1] = ACTIONS(3308), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3308), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3308), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3308), + [aux_sym_syslog_facility_token1] = ACTIONS(3308), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3308), + [aux_sym_keep_alive_token1] = ACTIONS(3308), + [aux_sym_tunnel_token1] = ACTIONS(3310), + [aux_sym_tunnel_device_token1] = ACTIONS(3308), + [aux_sym_update_host_keys_token1] = ACTIONS(3308), + [aux_sym_use_keychain_token1] = ACTIONS(3308), + [aux_sym_use_roaming_token1] = ACTIONS(3308), + [aux_sym_user_token1] = ACTIONS(3310), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3308), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3308), + [aux_sym_visual_host_key_token1] = ACTIONS(3308), + [aux_sym_xauth_location_token1] = ACTIONS(3308), }, [579] = { - [ts_builtin_sym_end] = ACTIONS(1641), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1643), - [aux_sym_match_token1] = ACTIONS(1641), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1641), - [aux_sym_address_family_token1] = ACTIONS(1641), - [aux_sym_batch_mode_token1] = ACTIONS(1641), - [aux_sym_bind_address_token1] = ACTIONS(1641), - [aux_sym_bind_interface_token1] = ACTIONS(1641), - [aux_sym_canonical_domains_token1] = ACTIONS(1641), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1641), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1641), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1641), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1641), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1641), - [aux_sym_certificate_file_token1] = ACTIONS(1641), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1641), - [aux_sym_check_host_ip_token1] = ACTIONS(1641), - [aux_sym_ciphers_token1] = ACTIONS(1641), - [aux_sym_cipher_token1] = ACTIONS(1643), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1641), - [aux_sym_compression_token1] = ACTIONS(1641), - [aux_sym_connection_attempts_token1] = ACTIONS(1641), - [aux_sym_connect_timeout_token1] = ACTIONS(1641), - [aux_sym_control_master_token1] = ACTIONS(1641), - [aux_sym_control_path_token1] = ACTIONS(1641), - [aux_sym_control_persist_token1] = ACTIONS(1641), - [aux_sym_dynamic_forward_token1] = ACTIONS(1641), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1641), - [aux_sym_escape_char_token1] = ACTIONS(1641), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1641), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1641), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1641), - [aux_sym_forward_agent_token1] = ACTIONS(1641), - [aux_sym_forward_x11_token1] = ACTIONS(1643), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1641), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1641), - [aux_sym_gateway_ports_token1] = ACTIONS(1641), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1641), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1641), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1641), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1641), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1641), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1641), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1641), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1641), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1641), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1641), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1641), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1641), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1641), - [aux_sym_host_key_alias_token1] = ACTIONS(1641), - [aux_sym_hostname_token1] = ACTIONS(1641), - [aux_sym_identities_only_token1] = ACTIONS(1641), - [aux_sym_identity_agent_token1] = ACTIONS(1641), - [aux_sym_identity_file_token1] = ACTIONS(1641), - [aux_sym_ignore_unknown_token1] = ACTIONS(1641), - [aux_sym_include_token1] = ACTIONS(1641), - [aux_sym_ip_qos_token1] = ACTIONS(1641), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1641), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1641), - [aux_sym_kex_algorithms_token1] = ACTIONS(1641), - [aux_sym_known_hosts_command_token1] = ACTIONS(1641), - [aux_sym_local_command_token1] = ACTIONS(1641), - [aux_sym_local_forward_token1] = ACTIONS(1641), - [aux_sym_log_level_token1] = ACTIONS(1641), - [aux_sym_log_verbose_token1] = ACTIONS(1641), - [aux_sym_macs_token1] = ACTIONS(1641), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1641), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1641), - [aux_sym_password_authentication_token1] = ACTIONS(1641), - [aux_sym_permit_local_command_token1] = ACTIONS(1641), - [aux_sym_permit_remote_open_token1] = ACTIONS(1641), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1641), - [aux_sym_port_token1] = ACTIONS(1641), - [aux_sym_preferred_authentications_token1] = ACTIONS(1641), - [aux_sym_protocol_token1] = ACTIONS(1641), - [aux_sym_proxy_command_token1] = ACTIONS(1641), - [aux_sym_proxy_jump_token1] = ACTIONS(1641), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1641), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1641), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1641), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1641), - [aux_sym_rekey_limit_token1] = ACTIONS(1641), - [aux_sym_remote_command_token1] = ACTIONS(1641), - [aux_sym_remote_forward_token1] = ACTIONS(1641), - [aux_sym_request_tty_token1] = ACTIONS(1641), - [aux_sym_required_rsa_size_token1] = ACTIONS(1641), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1641), - [aux_sym_security_key_provider_token1] = ACTIONS(1641), - [aux_sym_send_env_token1] = ACTIONS(1641), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1641), - [aux_sym_server_alive_interval_token1] = ACTIONS(1641), - [aux_sym_session_type_token1] = ACTIONS(1641), - [aux_sym_set_env_token1] = ACTIONS(1641), - [aux_sym_stdin_null_token1] = ACTIONS(1641), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1641), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1641), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1641), - [aux_sym_syslog_facility_token1] = ACTIONS(1641), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1641), - [aux_sym_keep_alive_token1] = ACTIONS(1641), - [aux_sym_tunnel_token1] = ACTIONS(1643), - [aux_sym_tunnel_device_token1] = ACTIONS(1641), - [aux_sym_update_host_keys_token1] = ACTIONS(1641), - [aux_sym_use_keychain_token1] = ACTIONS(1641), - [aux_sym_use_roaming_token1] = ACTIONS(1641), - [aux_sym_user_token1] = ACTIONS(1643), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1641), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1641), - [aux_sym_visual_host_key_token1] = ACTIONS(1641), - [aux_sym_xauth_location_token1] = ACTIONS(1641), + [ts_builtin_sym_end] = ACTIONS(3312), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3314), + [aux_sym_match_token1] = ACTIONS(3312), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3312), + [aux_sym_address_family_token1] = ACTIONS(3312), + [aux_sym_batch_mode_token1] = ACTIONS(3312), + [aux_sym_bind_address_token1] = ACTIONS(3312), + [aux_sym_bind_interface_token1] = ACTIONS(3312), + [aux_sym_canonical_domains_token1] = ACTIONS(3312), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3312), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3312), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3312), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3312), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3312), + [aux_sym_certificate_file_token1] = ACTIONS(3312), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3312), + [aux_sym_check_host_ip_token1] = ACTIONS(3312), + [aux_sym_ciphers_token1] = ACTIONS(3312), + [aux_sym_cipher_token1] = ACTIONS(3314), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3312), + [aux_sym_compression_token1] = ACTIONS(3312), + [aux_sym_connection_attempts_token1] = ACTIONS(3312), + [aux_sym_connect_timeout_token1] = ACTIONS(3312), + [aux_sym_control_master_token1] = ACTIONS(3312), + [aux_sym_control_path_token1] = ACTIONS(3312), + [aux_sym_control_persist_token1] = ACTIONS(3312), + [aux_sym_dynamic_forward_token1] = ACTIONS(3312), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3312), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3312), + [aux_sym_escape_char_token1] = ACTIONS(3312), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3312), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3312), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3312), + [aux_sym_forward_agent_token1] = ACTIONS(3312), + [aux_sym_forward_x11_token1] = ACTIONS(3314), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3312), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3312), + [aux_sym_gateway_ports_token1] = ACTIONS(3312), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3312), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3312), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3312), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3312), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3312), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3312), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3312), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3312), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3312), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3312), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3312), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3312), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3312), + [aux_sym_host_key_alias_token1] = ACTIONS(3312), + [aux_sym_hostname_token1] = ACTIONS(3312), + [aux_sym_identities_only_token1] = ACTIONS(3312), + [aux_sym_identity_agent_token1] = ACTIONS(3312), + [aux_sym_identity_file_token1] = ACTIONS(3312), + [aux_sym_ignore_unknown_token1] = ACTIONS(3312), + [aux_sym_include_token1] = ACTIONS(3312), + [aux_sym_ip_qos_token1] = ACTIONS(3312), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3312), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3312), + [aux_sym_kex_algorithms_token1] = ACTIONS(3312), + [aux_sym_known_hosts_command_token1] = ACTIONS(3312), + [aux_sym_local_command_token1] = ACTIONS(3312), + [aux_sym_local_forward_token1] = ACTIONS(3312), + [aux_sym_log_level_token1] = ACTIONS(3312), + [aux_sym_log_verbose_token1] = ACTIONS(3312), + [aux_sym_macs_token1] = ACTIONS(3312), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3312), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3312), + [aux_sym_password_authentication_token1] = ACTIONS(3312), + [aux_sym_permit_local_command_token1] = ACTIONS(3312), + [aux_sym_permit_remote_open_token1] = ACTIONS(3312), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3312), + [aux_sym_port_token1] = ACTIONS(3312), + [aux_sym_preferred_authentications_token1] = ACTIONS(3312), + [aux_sym_protocol_token1] = ACTIONS(3312), + [aux_sym_proxy_command_token1] = ACTIONS(3312), + [aux_sym_proxy_jump_token1] = ACTIONS(3312), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3312), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3312), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3312), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3312), + [aux_sym_rekey_limit_token1] = ACTIONS(3312), + [aux_sym_remote_command_token1] = ACTIONS(3312), + [aux_sym_remote_forward_token1] = ACTIONS(3312), + [aux_sym_request_tty_token1] = ACTIONS(3312), + [aux_sym_required_rsa_size_token1] = ACTIONS(3312), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3312), + [aux_sym_security_key_provider_token1] = ACTIONS(3312), + [aux_sym_send_env_token1] = ACTIONS(3312), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3312), + [aux_sym_server_alive_interval_token1] = ACTIONS(3312), + [aux_sym_session_type_token1] = ACTIONS(3312), + [aux_sym_set_env_token1] = ACTIONS(3312), + [aux_sym_stdin_null_token1] = ACTIONS(3312), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3312), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3312), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3312), + [aux_sym_syslog_facility_token1] = ACTIONS(3312), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3312), + [aux_sym_keep_alive_token1] = ACTIONS(3312), + [aux_sym_tunnel_token1] = ACTIONS(3314), + [aux_sym_tunnel_device_token1] = ACTIONS(3312), + [aux_sym_update_host_keys_token1] = ACTIONS(3312), + [aux_sym_use_keychain_token1] = ACTIONS(3312), + [aux_sym_use_roaming_token1] = ACTIONS(3312), + [aux_sym_user_token1] = ACTIONS(3314), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3312), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3312), + [aux_sym_visual_host_key_token1] = ACTIONS(3312), + [aux_sym_xauth_location_token1] = ACTIONS(3312), }, [580] = { - [ts_builtin_sym_end] = ACTIONS(669), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(671), - [aux_sym_match_token1] = ACTIONS(669), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(669), - [aux_sym_address_family_token1] = ACTIONS(669), - [aux_sym_batch_mode_token1] = ACTIONS(669), - [aux_sym_bind_address_token1] = ACTIONS(669), - [aux_sym_bind_interface_token1] = ACTIONS(669), - [aux_sym_canonical_domains_token1] = ACTIONS(669), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(669), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(669), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(669), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(669), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(669), - [aux_sym_certificate_file_token1] = ACTIONS(669), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(669), - [aux_sym_check_host_ip_token1] = ACTIONS(669), - [aux_sym_ciphers_token1] = ACTIONS(669), - [aux_sym_cipher_token1] = ACTIONS(671), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(669), - [aux_sym_compression_token1] = ACTIONS(669), - [aux_sym_connection_attempts_token1] = ACTIONS(669), - [aux_sym_connect_timeout_token1] = ACTIONS(669), - [aux_sym_control_master_token1] = ACTIONS(669), - [aux_sym_control_path_token1] = ACTIONS(669), - [aux_sym_control_persist_token1] = ACTIONS(669), - [aux_sym_dynamic_forward_token1] = ACTIONS(669), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(669), - [aux_sym_escape_char_token1] = ACTIONS(669), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(669), - [aux_sym_fingerprint_hash_token1] = ACTIONS(669), - [aux_sym_fork_after_authentication_token1] = ACTIONS(669), - [aux_sym_forward_agent_token1] = ACTIONS(669), - [aux_sym_forward_x11_token1] = ACTIONS(671), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(669), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(669), - [aux_sym_gateway_ports_token1] = ACTIONS(669), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(669), - [aux_sym_gssapi_authentication_token1] = ACTIONS(669), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(669), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(669), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(669), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(669), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(669), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(669), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(669), - [aux_sym_hash_known_hosts_token1] = ACTIONS(669), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(669), - [aux_sym_hostbased_authentication_token1] = ACTIONS(669), - [aux_sym_host_key_algorithms_token1] = ACTIONS(669), - [aux_sym_host_key_alias_token1] = ACTIONS(669), - [aux_sym_hostname_token1] = ACTIONS(669), - [aux_sym_identities_only_token1] = ACTIONS(669), - [aux_sym_identity_agent_token1] = ACTIONS(669), - [aux_sym_identity_file_token1] = ACTIONS(669), - [aux_sym_ignore_unknown_token1] = ACTIONS(669), - [aux_sym_include_token1] = ACTIONS(669), - [aux_sym_ip_qos_token1] = ACTIONS(669), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(669), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(669), - [aux_sym_kex_algorithms_token1] = ACTIONS(669), - [aux_sym_known_hosts_command_token1] = ACTIONS(669), - [aux_sym_local_command_token1] = ACTIONS(669), - [aux_sym_local_forward_token1] = ACTIONS(669), - [aux_sym_log_level_token1] = ACTIONS(669), - [aux_sym_log_verbose_token1] = ACTIONS(669), - [aux_sym_macs_token1] = ACTIONS(669), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(669), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(669), - [aux_sym_password_authentication_token1] = ACTIONS(669), - [aux_sym_permit_local_command_token1] = ACTIONS(669), - [aux_sym_permit_remote_open_token1] = ACTIONS(669), - [aux_sym_pkcs11_provider_token1] = ACTIONS(669), - [aux_sym_port_token1] = ACTIONS(669), - [aux_sym_preferred_authentications_token1] = ACTIONS(669), - [aux_sym_protocol_token1] = ACTIONS(669), - [aux_sym_proxy_command_token1] = ACTIONS(669), - [aux_sym_proxy_jump_token1] = ACTIONS(669), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(669), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(669), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(669), - [aux_sym_pubkey_authentication_token1] = ACTIONS(669), - [aux_sym_rekey_limit_token1] = ACTIONS(669), - [aux_sym_remote_command_token1] = ACTIONS(669), - [aux_sym_remote_forward_token1] = ACTIONS(669), - [aux_sym_request_tty_token1] = ACTIONS(669), - [aux_sym_required_rsa_size_token1] = ACTIONS(669), - [aux_sym_revoked_host_keys_token1] = ACTIONS(669), - [aux_sym_security_key_provider_token1] = ACTIONS(669), - [aux_sym_send_env_token1] = ACTIONS(669), - [aux_sym_server_alive_count_max_token1] = ACTIONS(669), - [aux_sym_server_alive_interval_token1] = ACTIONS(669), - [aux_sym_session_type_token1] = ACTIONS(669), - [aux_sym_set_env_token1] = ACTIONS(669), - [aux_sym_stdin_null_token1] = ACTIONS(669), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(669), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(669), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(669), - [aux_sym_syslog_facility_token1] = ACTIONS(669), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(669), - [aux_sym_keep_alive_token1] = ACTIONS(669), - [aux_sym_tunnel_token1] = ACTIONS(671), - [aux_sym_tunnel_device_token1] = ACTIONS(669), - [aux_sym_update_host_keys_token1] = ACTIONS(669), - [aux_sym_use_keychain_token1] = ACTIONS(669), - [aux_sym_use_roaming_token1] = ACTIONS(669), - [aux_sym_user_token1] = ACTIONS(671), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(669), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(669), - [aux_sym_visual_host_key_token1] = ACTIONS(669), - [aux_sym_xauth_location_token1] = ACTIONS(669), + [ts_builtin_sym_end] = ACTIONS(3316), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3318), + [aux_sym_match_token1] = ACTIONS(3316), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3316), + [aux_sym_address_family_token1] = ACTIONS(3316), + [aux_sym_batch_mode_token1] = ACTIONS(3316), + [aux_sym_bind_address_token1] = ACTIONS(3316), + [aux_sym_bind_interface_token1] = ACTIONS(3316), + [aux_sym_canonical_domains_token1] = ACTIONS(3316), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3316), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3316), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3316), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3316), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3316), + [aux_sym_certificate_file_token1] = ACTIONS(3316), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3316), + [aux_sym_check_host_ip_token1] = ACTIONS(3316), + [aux_sym_ciphers_token1] = ACTIONS(3316), + [aux_sym_cipher_token1] = ACTIONS(3318), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3316), + [aux_sym_compression_token1] = ACTIONS(3316), + [aux_sym_connection_attempts_token1] = ACTIONS(3316), + [aux_sym_connect_timeout_token1] = ACTIONS(3316), + [aux_sym_control_master_token1] = ACTIONS(3316), + [aux_sym_control_path_token1] = ACTIONS(3316), + [aux_sym_control_persist_token1] = ACTIONS(3316), + [aux_sym_dynamic_forward_token1] = ACTIONS(3316), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3316), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3316), + [aux_sym_escape_char_token1] = ACTIONS(3316), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3316), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3316), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3316), + [aux_sym_forward_agent_token1] = ACTIONS(3316), + [aux_sym_forward_x11_token1] = ACTIONS(3318), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3316), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3316), + [aux_sym_gateway_ports_token1] = ACTIONS(3316), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3316), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3316), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3316), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3316), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3316), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3316), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3316), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3316), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3316), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3316), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3316), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3316), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3316), + [aux_sym_host_key_alias_token1] = ACTIONS(3316), + [aux_sym_hostname_token1] = ACTIONS(3316), + [aux_sym_identities_only_token1] = ACTIONS(3316), + [aux_sym_identity_agent_token1] = ACTIONS(3316), + [aux_sym_identity_file_token1] = ACTIONS(3316), + [aux_sym_ignore_unknown_token1] = ACTIONS(3316), + [aux_sym_include_token1] = ACTIONS(3316), + [aux_sym_ip_qos_token1] = ACTIONS(3316), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3316), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3316), + [aux_sym_kex_algorithms_token1] = ACTIONS(3316), + [aux_sym_known_hosts_command_token1] = ACTIONS(3316), + [aux_sym_local_command_token1] = ACTIONS(3316), + [aux_sym_local_forward_token1] = ACTIONS(3316), + [aux_sym_log_level_token1] = ACTIONS(3316), + [aux_sym_log_verbose_token1] = ACTIONS(3316), + [aux_sym_macs_token1] = ACTIONS(3316), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3316), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3316), + [aux_sym_password_authentication_token1] = ACTIONS(3316), + [aux_sym_permit_local_command_token1] = ACTIONS(3316), + [aux_sym_permit_remote_open_token1] = ACTIONS(3316), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3316), + [aux_sym_port_token1] = ACTIONS(3316), + [aux_sym_preferred_authentications_token1] = ACTIONS(3316), + [aux_sym_protocol_token1] = ACTIONS(3316), + [aux_sym_proxy_command_token1] = ACTIONS(3316), + [aux_sym_proxy_jump_token1] = ACTIONS(3316), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3316), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3316), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3316), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3316), + [aux_sym_rekey_limit_token1] = ACTIONS(3316), + [aux_sym_remote_command_token1] = ACTIONS(3316), + [aux_sym_remote_forward_token1] = ACTIONS(3316), + [aux_sym_request_tty_token1] = ACTIONS(3316), + [aux_sym_required_rsa_size_token1] = ACTIONS(3316), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3316), + [aux_sym_security_key_provider_token1] = ACTIONS(3316), + [aux_sym_send_env_token1] = ACTIONS(3316), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3316), + [aux_sym_server_alive_interval_token1] = ACTIONS(3316), + [aux_sym_session_type_token1] = ACTIONS(3316), + [aux_sym_set_env_token1] = ACTIONS(3316), + [aux_sym_stdin_null_token1] = ACTIONS(3316), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3316), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3316), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3316), + [aux_sym_syslog_facility_token1] = ACTIONS(3316), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3316), + [aux_sym_keep_alive_token1] = ACTIONS(3316), + [aux_sym_tunnel_token1] = ACTIONS(3318), + [aux_sym_tunnel_device_token1] = ACTIONS(3316), + [aux_sym_update_host_keys_token1] = ACTIONS(3316), + [aux_sym_use_keychain_token1] = ACTIONS(3316), + [aux_sym_use_roaming_token1] = ACTIONS(3316), + [aux_sym_user_token1] = ACTIONS(3318), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3316), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3316), + [aux_sym_visual_host_key_token1] = ACTIONS(3316), + [aux_sym_xauth_location_token1] = ACTIONS(3316), }, [581] = { - [ts_builtin_sym_end] = ACTIONS(675), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(677), - [aux_sym_match_token1] = ACTIONS(675), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(675), - [aux_sym_address_family_token1] = ACTIONS(675), - [aux_sym_batch_mode_token1] = ACTIONS(675), - [aux_sym_bind_address_token1] = ACTIONS(675), - [aux_sym_bind_interface_token1] = ACTIONS(675), - [aux_sym_canonical_domains_token1] = ACTIONS(675), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(675), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(675), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(675), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(675), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(675), - [aux_sym_certificate_file_token1] = ACTIONS(675), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(675), - [aux_sym_check_host_ip_token1] = ACTIONS(675), - [aux_sym_ciphers_token1] = ACTIONS(675), - [aux_sym_cipher_token1] = ACTIONS(677), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(675), - [aux_sym_compression_token1] = ACTIONS(675), - [aux_sym_connection_attempts_token1] = ACTIONS(675), - [aux_sym_connect_timeout_token1] = ACTIONS(675), - [aux_sym_control_master_token1] = ACTIONS(675), - [aux_sym_control_path_token1] = ACTIONS(675), - [aux_sym_control_persist_token1] = ACTIONS(675), - [aux_sym_dynamic_forward_token1] = ACTIONS(675), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(675), - [aux_sym_escape_char_token1] = ACTIONS(675), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(675), - [aux_sym_fingerprint_hash_token1] = ACTIONS(675), - [aux_sym_fork_after_authentication_token1] = ACTIONS(675), - [aux_sym_forward_agent_token1] = ACTIONS(675), - [aux_sym_forward_x11_token1] = ACTIONS(677), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(675), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(675), - [aux_sym_gateway_ports_token1] = ACTIONS(675), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(675), - [aux_sym_gssapi_authentication_token1] = ACTIONS(675), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(675), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(675), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(675), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(675), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(675), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(675), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(675), - [aux_sym_hash_known_hosts_token1] = ACTIONS(675), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(675), - [aux_sym_hostbased_authentication_token1] = ACTIONS(675), - [aux_sym_host_key_algorithms_token1] = ACTIONS(675), - [aux_sym_host_key_alias_token1] = ACTIONS(675), - [aux_sym_hostname_token1] = ACTIONS(675), - [aux_sym_identities_only_token1] = ACTIONS(675), - [aux_sym_identity_agent_token1] = ACTIONS(675), - [aux_sym_identity_file_token1] = ACTIONS(675), - [aux_sym_ignore_unknown_token1] = ACTIONS(675), - [aux_sym_include_token1] = ACTIONS(675), - [aux_sym_ip_qos_token1] = ACTIONS(675), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(675), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(675), - [aux_sym_kex_algorithms_token1] = ACTIONS(675), - [aux_sym_known_hosts_command_token1] = ACTIONS(675), - [aux_sym_local_command_token1] = ACTIONS(675), - [aux_sym_local_forward_token1] = ACTIONS(675), - [aux_sym_log_level_token1] = ACTIONS(675), - [aux_sym_log_verbose_token1] = ACTIONS(675), - [aux_sym_macs_token1] = ACTIONS(675), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(675), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(675), - [aux_sym_password_authentication_token1] = ACTIONS(675), - [aux_sym_permit_local_command_token1] = ACTIONS(675), - [aux_sym_permit_remote_open_token1] = ACTIONS(675), - [aux_sym_pkcs11_provider_token1] = ACTIONS(675), - [aux_sym_port_token1] = ACTIONS(675), - [aux_sym_preferred_authentications_token1] = ACTIONS(675), - [aux_sym_protocol_token1] = ACTIONS(675), - [aux_sym_proxy_command_token1] = ACTIONS(675), - [aux_sym_proxy_jump_token1] = ACTIONS(675), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(675), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(675), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(675), - [aux_sym_pubkey_authentication_token1] = ACTIONS(675), - [aux_sym_rekey_limit_token1] = ACTIONS(675), - [aux_sym_remote_command_token1] = ACTIONS(675), - [aux_sym_remote_forward_token1] = ACTIONS(675), - [aux_sym_request_tty_token1] = ACTIONS(675), - [aux_sym_required_rsa_size_token1] = ACTIONS(675), - [aux_sym_revoked_host_keys_token1] = ACTIONS(675), - [aux_sym_security_key_provider_token1] = ACTIONS(675), - [aux_sym_send_env_token1] = ACTIONS(675), - [aux_sym_server_alive_count_max_token1] = ACTIONS(675), - [aux_sym_server_alive_interval_token1] = ACTIONS(675), - [aux_sym_session_type_token1] = ACTIONS(675), - [aux_sym_set_env_token1] = ACTIONS(675), - [aux_sym_stdin_null_token1] = ACTIONS(675), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(675), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(675), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(675), - [aux_sym_syslog_facility_token1] = ACTIONS(675), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(675), - [aux_sym_keep_alive_token1] = ACTIONS(675), - [aux_sym_tunnel_token1] = ACTIONS(677), - [aux_sym_tunnel_device_token1] = ACTIONS(675), - [aux_sym_update_host_keys_token1] = ACTIONS(675), - [aux_sym_use_keychain_token1] = ACTIONS(675), - [aux_sym_use_roaming_token1] = ACTIONS(675), - [aux_sym_user_token1] = ACTIONS(677), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(675), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(675), - [aux_sym_visual_host_key_token1] = ACTIONS(675), - [aux_sym_xauth_location_token1] = ACTIONS(675), + [ts_builtin_sym_end] = ACTIONS(3320), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3322), + [aux_sym_match_token1] = ACTIONS(3320), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3320), + [aux_sym_address_family_token1] = ACTIONS(3320), + [aux_sym_batch_mode_token1] = ACTIONS(3320), + [aux_sym_bind_address_token1] = ACTIONS(3320), + [aux_sym_bind_interface_token1] = ACTIONS(3320), + [aux_sym_canonical_domains_token1] = ACTIONS(3320), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3320), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3320), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3320), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3320), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3320), + [aux_sym_certificate_file_token1] = ACTIONS(3320), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3320), + [aux_sym_check_host_ip_token1] = ACTIONS(3320), + [aux_sym_ciphers_token1] = ACTIONS(3320), + [aux_sym_cipher_token1] = ACTIONS(3322), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3320), + [aux_sym_compression_token1] = ACTIONS(3320), + [aux_sym_connection_attempts_token1] = ACTIONS(3320), + [aux_sym_connect_timeout_token1] = ACTIONS(3320), + [aux_sym_control_master_token1] = ACTIONS(3320), + [aux_sym_control_path_token1] = ACTIONS(3320), + [aux_sym_control_persist_token1] = ACTIONS(3320), + [aux_sym_dynamic_forward_token1] = ACTIONS(3320), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3320), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3320), + [aux_sym_escape_char_token1] = ACTIONS(3320), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3320), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3320), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3320), + [aux_sym_forward_agent_token1] = ACTIONS(3320), + [aux_sym_forward_x11_token1] = ACTIONS(3322), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3320), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3320), + [aux_sym_gateway_ports_token1] = ACTIONS(3320), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3320), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3320), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3320), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3320), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3320), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3320), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3320), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3320), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3320), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3320), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3320), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3320), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3320), + [aux_sym_host_key_alias_token1] = ACTIONS(3320), + [aux_sym_hostname_token1] = ACTIONS(3320), + [aux_sym_identities_only_token1] = ACTIONS(3320), + [aux_sym_identity_agent_token1] = ACTIONS(3320), + [aux_sym_identity_file_token1] = ACTIONS(3320), + [aux_sym_ignore_unknown_token1] = ACTIONS(3320), + [aux_sym_include_token1] = ACTIONS(3320), + [aux_sym_ip_qos_token1] = ACTIONS(3320), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3320), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3320), + [aux_sym_kex_algorithms_token1] = ACTIONS(3320), + [aux_sym_known_hosts_command_token1] = ACTIONS(3320), + [aux_sym_local_command_token1] = ACTIONS(3320), + [aux_sym_local_forward_token1] = ACTIONS(3320), + [aux_sym_log_level_token1] = ACTIONS(3320), + [aux_sym_log_verbose_token1] = ACTIONS(3320), + [aux_sym_macs_token1] = ACTIONS(3320), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3320), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3320), + [aux_sym_password_authentication_token1] = ACTIONS(3320), + [aux_sym_permit_local_command_token1] = ACTIONS(3320), + [aux_sym_permit_remote_open_token1] = ACTIONS(3320), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3320), + [aux_sym_port_token1] = ACTIONS(3320), + [aux_sym_preferred_authentications_token1] = ACTIONS(3320), + [aux_sym_protocol_token1] = ACTIONS(3320), + [aux_sym_proxy_command_token1] = ACTIONS(3320), + [aux_sym_proxy_jump_token1] = ACTIONS(3320), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3320), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3320), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3320), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3320), + [aux_sym_rekey_limit_token1] = ACTIONS(3320), + [aux_sym_remote_command_token1] = ACTIONS(3320), + [aux_sym_remote_forward_token1] = ACTIONS(3320), + [aux_sym_request_tty_token1] = ACTIONS(3320), + [aux_sym_required_rsa_size_token1] = ACTIONS(3320), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3320), + [aux_sym_security_key_provider_token1] = ACTIONS(3320), + [aux_sym_send_env_token1] = ACTIONS(3320), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3320), + [aux_sym_server_alive_interval_token1] = ACTIONS(3320), + [aux_sym_session_type_token1] = ACTIONS(3320), + [aux_sym_set_env_token1] = ACTIONS(3320), + [aux_sym_stdin_null_token1] = ACTIONS(3320), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3320), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3320), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3320), + [aux_sym_syslog_facility_token1] = ACTIONS(3320), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3320), + [aux_sym_keep_alive_token1] = ACTIONS(3320), + [aux_sym_tunnel_token1] = ACTIONS(3322), + [aux_sym_tunnel_device_token1] = ACTIONS(3320), + [aux_sym_update_host_keys_token1] = ACTIONS(3320), + [aux_sym_use_keychain_token1] = ACTIONS(3320), + [aux_sym_use_roaming_token1] = ACTIONS(3320), + [aux_sym_user_token1] = ACTIONS(3322), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3320), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3320), + [aux_sym_visual_host_key_token1] = ACTIONS(3320), + [aux_sym_xauth_location_token1] = ACTIONS(3320), }, [582] = { - [ts_builtin_sym_end] = ACTIONS(681), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(683), - [aux_sym_match_token1] = ACTIONS(681), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(681), - [aux_sym_address_family_token1] = ACTIONS(681), - [aux_sym_batch_mode_token1] = ACTIONS(681), - [aux_sym_bind_address_token1] = ACTIONS(681), - [aux_sym_bind_interface_token1] = ACTIONS(681), - [aux_sym_canonical_domains_token1] = ACTIONS(681), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(681), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(681), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(681), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(681), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(681), - [aux_sym_certificate_file_token1] = ACTIONS(681), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(681), - [aux_sym_check_host_ip_token1] = ACTIONS(681), - [aux_sym_ciphers_token1] = ACTIONS(681), - [aux_sym_cipher_token1] = ACTIONS(683), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(681), - [aux_sym_compression_token1] = ACTIONS(681), - [aux_sym_connection_attempts_token1] = ACTIONS(681), - [aux_sym_connect_timeout_token1] = ACTIONS(681), - [aux_sym_control_master_token1] = ACTIONS(681), - [aux_sym_control_path_token1] = ACTIONS(681), - [aux_sym_control_persist_token1] = ACTIONS(681), - [aux_sym_dynamic_forward_token1] = ACTIONS(681), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(681), - [aux_sym_escape_char_token1] = ACTIONS(681), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(681), - [aux_sym_fingerprint_hash_token1] = ACTIONS(681), - [aux_sym_fork_after_authentication_token1] = ACTIONS(681), - [aux_sym_forward_agent_token1] = ACTIONS(681), - [aux_sym_forward_x11_token1] = ACTIONS(683), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(681), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(681), - [aux_sym_gateway_ports_token1] = ACTIONS(681), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(681), - [aux_sym_gssapi_authentication_token1] = ACTIONS(681), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(681), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(681), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(681), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(681), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(681), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(681), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(681), - [aux_sym_hash_known_hosts_token1] = ACTIONS(681), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(681), - [aux_sym_hostbased_authentication_token1] = ACTIONS(681), - [aux_sym_host_key_algorithms_token1] = ACTIONS(681), - [aux_sym_host_key_alias_token1] = ACTIONS(681), - [aux_sym_hostname_token1] = ACTIONS(681), - [aux_sym_identities_only_token1] = ACTIONS(681), - [aux_sym_identity_agent_token1] = ACTIONS(681), - [aux_sym_identity_file_token1] = ACTIONS(681), - [aux_sym_ignore_unknown_token1] = ACTIONS(681), - [aux_sym_include_token1] = ACTIONS(681), - [aux_sym_ip_qos_token1] = ACTIONS(681), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(681), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(681), - [aux_sym_kex_algorithms_token1] = ACTIONS(681), - [aux_sym_known_hosts_command_token1] = ACTIONS(681), - [aux_sym_local_command_token1] = ACTIONS(681), - [aux_sym_local_forward_token1] = ACTIONS(681), - [aux_sym_log_level_token1] = ACTIONS(681), - [aux_sym_log_verbose_token1] = ACTIONS(681), - [aux_sym_macs_token1] = ACTIONS(681), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(681), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(681), - [aux_sym_password_authentication_token1] = ACTIONS(681), - [aux_sym_permit_local_command_token1] = ACTIONS(681), - [aux_sym_permit_remote_open_token1] = ACTIONS(681), - [aux_sym_pkcs11_provider_token1] = ACTIONS(681), - [aux_sym_port_token1] = ACTIONS(681), - [aux_sym_preferred_authentications_token1] = ACTIONS(681), - [aux_sym_protocol_token1] = ACTIONS(681), - [aux_sym_proxy_command_token1] = ACTIONS(681), - [aux_sym_proxy_jump_token1] = ACTIONS(681), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(681), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(681), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(681), - [aux_sym_pubkey_authentication_token1] = ACTIONS(681), - [aux_sym_rekey_limit_token1] = ACTIONS(681), - [aux_sym_remote_command_token1] = ACTIONS(681), - [aux_sym_remote_forward_token1] = ACTIONS(681), - [aux_sym_request_tty_token1] = ACTIONS(681), - [aux_sym_required_rsa_size_token1] = ACTIONS(681), - [aux_sym_revoked_host_keys_token1] = ACTIONS(681), - [aux_sym_security_key_provider_token1] = ACTIONS(681), - [aux_sym_send_env_token1] = ACTIONS(681), - [aux_sym_server_alive_count_max_token1] = ACTIONS(681), - [aux_sym_server_alive_interval_token1] = ACTIONS(681), - [aux_sym_session_type_token1] = ACTIONS(681), - [aux_sym_set_env_token1] = ACTIONS(681), - [aux_sym_stdin_null_token1] = ACTIONS(681), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(681), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(681), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(681), - [aux_sym_syslog_facility_token1] = ACTIONS(681), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(681), - [aux_sym_keep_alive_token1] = ACTIONS(681), - [aux_sym_tunnel_token1] = ACTIONS(683), - [aux_sym_tunnel_device_token1] = ACTIONS(681), - [aux_sym_update_host_keys_token1] = ACTIONS(681), - [aux_sym_use_keychain_token1] = ACTIONS(681), - [aux_sym_use_roaming_token1] = ACTIONS(681), - [aux_sym_user_token1] = ACTIONS(683), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(681), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(681), - [aux_sym_visual_host_key_token1] = ACTIONS(681), - [aux_sym_xauth_location_token1] = ACTIONS(681), + [ts_builtin_sym_end] = ACTIONS(3324), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3326), + [aux_sym_match_token1] = ACTIONS(3324), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3324), + [aux_sym_address_family_token1] = ACTIONS(3324), + [aux_sym_batch_mode_token1] = ACTIONS(3324), + [aux_sym_bind_address_token1] = ACTIONS(3324), + [aux_sym_bind_interface_token1] = ACTIONS(3324), + [aux_sym_canonical_domains_token1] = ACTIONS(3324), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3324), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3324), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3324), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3324), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3324), + [aux_sym_certificate_file_token1] = ACTIONS(3324), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3324), + [aux_sym_check_host_ip_token1] = ACTIONS(3324), + [aux_sym_ciphers_token1] = ACTIONS(3324), + [aux_sym_cipher_token1] = ACTIONS(3326), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3324), + [aux_sym_compression_token1] = ACTIONS(3324), + [aux_sym_connection_attempts_token1] = ACTIONS(3324), + [aux_sym_connect_timeout_token1] = ACTIONS(3324), + [aux_sym_control_master_token1] = ACTIONS(3324), + [aux_sym_control_path_token1] = ACTIONS(3324), + [aux_sym_control_persist_token1] = ACTIONS(3324), + [aux_sym_dynamic_forward_token1] = ACTIONS(3324), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3324), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3324), + [aux_sym_escape_char_token1] = ACTIONS(3324), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3324), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3324), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3324), + [aux_sym_forward_agent_token1] = ACTIONS(3324), + [aux_sym_forward_x11_token1] = ACTIONS(3326), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3324), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3324), + [aux_sym_gateway_ports_token1] = ACTIONS(3324), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3324), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3324), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3324), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3324), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3324), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3324), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3324), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3324), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3324), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3324), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3324), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3324), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3324), + [aux_sym_host_key_alias_token1] = ACTIONS(3324), + [aux_sym_hostname_token1] = ACTIONS(3324), + [aux_sym_identities_only_token1] = ACTIONS(3324), + [aux_sym_identity_agent_token1] = ACTIONS(3324), + [aux_sym_identity_file_token1] = ACTIONS(3324), + [aux_sym_ignore_unknown_token1] = ACTIONS(3324), + [aux_sym_include_token1] = ACTIONS(3324), + [aux_sym_ip_qos_token1] = ACTIONS(3324), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3324), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3324), + [aux_sym_kex_algorithms_token1] = ACTIONS(3324), + [aux_sym_known_hosts_command_token1] = ACTIONS(3324), + [aux_sym_local_command_token1] = ACTIONS(3324), + [aux_sym_local_forward_token1] = ACTIONS(3324), + [aux_sym_log_level_token1] = ACTIONS(3324), + [aux_sym_log_verbose_token1] = ACTIONS(3324), + [aux_sym_macs_token1] = ACTIONS(3324), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3324), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3324), + [aux_sym_password_authentication_token1] = ACTIONS(3324), + [aux_sym_permit_local_command_token1] = ACTIONS(3324), + [aux_sym_permit_remote_open_token1] = ACTIONS(3324), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3324), + [aux_sym_port_token1] = ACTIONS(3324), + [aux_sym_preferred_authentications_token1] = ACTIONS(3324), + [aux_sym_protocol_token1] = ACTIONS(3324), + [aux_sym_proxy_command_token1] = ACTIONS(3324), + [aux_sym_proxy_jump_token1] = ACTIONS(3324), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3324), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3324), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3324), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3324), + [aux_sym_rekey_limit_token1] = ACTIONS(3324), + [aux_sym_remote_command_token1] = ACTIONS(3324), + [aux_sym_remote_forward_token1] = ACTIONS(3324), + [aux_sym_request_tty_token1] = ACTIONS(3324), + [aux_sym_required_rsa_size_token1] = ACTIONS(3324), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3324), + [aux_sym_security_key_provider_token1] = ACTIONS(3324), + [aux_sym_send_env_token1] = ACTIONS(3324), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3324), + [aux_sym_server_alive_interval_token1] = ACTIONS(3324), + [aux_sym_session_type_token1] = ACTIONS(3324), + [aux_sym_set_env_token1] = ACTIONS(3324), + [aux_sym_stdin_null_token1] = ACTIONS(3324), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3324), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3324), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3324), + [aux_sym_syslog_facility_token1] = ACTIONS(3324), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3324), + [aux_sym_keep_alive_token1] = ACTIONS(3324), + [aux_sym_tunnel_token1] = ACTIONS(3326), + [aux_sym_tunnel_device_token1] = ACTIONS(3324), + [aux_sym_update_host_keys_token1] = ACTIONS(3324), + [aux_sym_use_keychain_token1] = ACTIONS(3324), + [aux_sym_use_roaming_token1] = ACTIONS(3324), + [aux_sym_user_token1] = ACTIONS(3326), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3324), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3324), + [aux_sym_visual_host_key_token1] = ACTIONS(3324), + [aux_sym_xauth_location_token1] = ACTIONS(3324), }, [583] = { - [ts_builtin_sym_end] = ACTIONS(687), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(689), - [aux_sym_match_token1] = ACTIONS(687), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(687), - [aux_sym_address_family_token1] = ACTIONS(687), - [aux_sym_batch_mode_token1] = ACTIONS(687), - [aux_sym_bind_address_token1] = ACTIONS(687), - [aux_sym_bind_interface_token1] = ACTIONS(687), - [aux_sym_canonical_domains_token1] = ACTIONS(687), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(687), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(687), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(687), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(687), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(687), - [aux_sym_certificate_file_token1] = ACTIONS(687), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(687), - [aux_sym_check_host_ip_token1] = ACTIONS(687), - [aux_sym_ciphers_token1] = ACTIONS(687), - [aux_sym_cipher_token1] = ACTIONS(689), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(687), - [aux_sym_compression_token1] = ACTIONS(687), - [aux_sym_connection_attempts_token1] = ACTIONS(687), - [aux_sym_connect_timeout_token1] = ACTIONS(687), - [aux_sym_control_master_token1] = ACTIONS(687), - [aux_sym_control_path_token1] = ACTIONS(687), - [aux_sym_control_persist_token1] = ACTIONS(687), - [aux_sym_dynamic_forward_token1] = ACTIONS(687), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(687), - [aux_sym_escape_char_token1] = ACTIONS(687), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(687), - [aux_sym_fingerprint_hash_token1] = ACTIONS(687), - [aux_sym_fork_after_authentication_token1] = ACTIONS(687), - [aux_sym_forward_agent_token1] = ACTIONS(687), - [aux_sym_forward_x11_token1] = ACTIONS(689), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(687), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(687), - [aux_sym_gateway_ports_token1] = ACTIONS(687), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(687), - [aux_sym_gssapi_authentication_token1] = ACTIONS(687), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(687), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(687), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(687), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(687), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(687), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(687), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(687), - [aux_sym_hash_known_hosts_token1] = ACTIONS(687), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(687), - [aux_sym_hostbased_authentication_token1] = ACTIONS(687), - [aux_sym_host_key_algorithms_token1] = ACTIONS(687), - [aux_sym_host_key_alias_token1] = ACTIONS(687), - [aux_sym_hostname_token1] = ACTIONS(687), - [aux_sym_identities_only_token1] = ACTIONS(687), - [aux_sym_identity_agent_token1] = ACTIONS(687), - [aux_sym_identity_file_token1] = ACTIONS(687), - [aux_sym_ignore_unknown_token1] = ACTIONS(687), - [aux_sym_include_token1] = ACTIONS(687), - [aux_sym_ip_qos_token1] = ACTIONS(687), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(687), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(687), - [aux_sym_kex_algorithms_token1] = ACTIONS(687), - [aux_sym_known_hosts_command_token1] = ACTIONS(687), - [aux_sym_local_command_token1] = ACTIONS(687), - [aux_sym_local_forward_token1] = ACTIONS(687), - [aux_sym_log_level_token1] = ACTIONS(687), - [aux_sym_log_verbose_token1] = ACTIONS(687), - [aux_sym_macs_token1] = ACTIONS(687), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(687), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(687), - [aux_sym_password_authentication_token1] = ACTIONS(687), - [aux_sym_permit_local_command_token1] = ACTIONS(687), - [aux_sym_permit_remote_open_token1] = ACTIONS(687), - [aux_sym_pkcs11_provider_token1] = ACTIONS(687), - [aux_sym_port_token1] = ACTIONS(687), - [aux_sym_preferred_authentications_token1] = ACTIONS(687), - [aux_sym_protocol_token1] = ACTIONS(687), - [aux_sym_proxy_command_token1] = ACTIONS(687), - [aux_sym_proxy_jump_token1] = ACTIONS(687), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(687), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(687), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(687), - [aux_sym_pubkey_authentication_token1] = ACTIONS(687), - [aux_sym_rekey_limit_token1] = ACTIONS(687), - [aux_sym_remote_command_token1] = ACTIONS(687), - [aux_sym_remote_forward_token1] = ACTIONS(687), - [aux_sym_request_tty_token1] = ACTIONS(687), - [aux_sym_required_rsa_size_token1] = ACTIONS(687), - [aux_sym_revoked_host_keys_token1] = ACTIONS(687), - [aux_sym_security_key_provider_token1] = ACTIONS(687), - [aux_sym_send_env_token1] = ACTIONS(687), - [aux_sym_server_alive_count_max_token1] = ACTIONS(687), - [aux_sym_server_alive_interval_token1] = ACTIONS(687), - [aux_sym_session_type_token1] = ACTIONS(687), - [aux_sym_set_env_token1] = ACTIONS(687), - [aux_sym_stdin_null_token1] = ACTIONS(687), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(687), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(687), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(687), - [aux_sym_syslog_facility_token1] = ACTIONS(687), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(687), - [aux_sym_keep_alive_token1] = ACTIONS(687), - [aux_sym_tunnel_token1] = ACTIONS(689), - [aux_sym_tunnel_device_token1] = ACTIONS(687), - [aux_sym_update_host_keys_token1] = ACTIONS(687), - [aux_sym_use_keychain_token1] = ACTIONS(687), - [aux_sym_use_roaming_token1] = ACTIONS(687), - [aux_sym_user_token1] = ACTIONS(689), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(687), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(687), - [aux_sym_visual_host_key_token1] = ACTIONS(687), - [aux_sym_xauth_location_token1] = ACTIONS(687), + [ts_builtin_sym_end] = ACTIONS(3328), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3330), + [aux_sym_match_token1] = ACTIONS(3328), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3328), + [aux_sym_address_family_token1] = ACTIONS(3328), + [aux_sym_batch_mode_token1] = ACTIONS(3328), + [aux_sym_bind_address_token1] = ACTIONS(3328), + [aux_sym_bind_interface_token1] = ACTIONS(3328), + [aux_sym_canonical_domains_token1] = ACTIONS(3328), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3328), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3328), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3328), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3328), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3328), + [aux_sym_certificate_file_token1] = ACTIONS(3328), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3328), + [aux_sym_check_host_ip_token1] = ACTIONS(3328), + [aux_sym_ciphers_token1] = ACTIONS(3328), + [aux_sym_cipher_token1] = ACTIONS(3330), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3328), + [aux_sym_compression_token1] = ACTIONS(3328), + [aux_sym_connection_attempts_token1] = ACTIONS(3328), + [aux_sym_connect_timeout_token1] = ACTIONS(3328), + [aux_sym_control_master_token1] = ACTIONS(3328), + [aux_sym_control_path_token1] = ACTIONS(3328), + [aux_sym_control_persist_token1] = ACTIONS(3328), + [aux_sym_dynamic_forward_token1] = ACTIONS(3328), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3328), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3328), + [aux_sym_escape_char_token1] = ACTIONS(3328), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3328), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3328), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3328), + [aux_sym_forward_agent_token1] = ACTIONS(3328), + [aux_sym_forward_x11_token1] = ACTIONS(3330), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3328), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3328), + [aux_sym_gateway_ports_token1] = ACTIONS(3328), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3328), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3328), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3328), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3328), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3328), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3328), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3328), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3328), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3328), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3328), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3328), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3328), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3328), + [aux_sym_host_key_alias_token1] = ACTIONS(3328), + [aux_sym_hostname_token1] = ACTIONS(3328), + [aux_sym_identities_only_token1] = ACTIONS(3328), + [aux_sym_identity_agent_token1] = ACTIONS(3328), + [aux_sym_identity_file_token1] = ACTIONS(3328), + [aux_sym_ignore_unknown_token1] = ACTIONS(3328), + [aux_sym_include_token1] = ACTIONS(3328), + [aux_sym_ip_qos_token1] = ACTIONS(3328), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3328), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3328), + [aux_sym_kex_algorithms_token1] = ACTIONS(3328), + [aux_sym_known_hosts_command_token1] = ACTIONS(3328), + [aux_sym_local_command_token1] = ACTIONS(3328), + [aux_sym_local_forward_token1] = ACTIONS(3328), + [aux_sym_log_level_token1] = ACTIONS(3328), + [aux_sym_log_verbose_token1] = ACTIONS(3328), + [aux_sym_macs_token1] = ACTIONS(3328), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3328), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3328), + [aux_sym_password_authentication_token1] = ACTIONS(3328), + [aux_sym_permit_local_command_token1] = ACTIONS(3328), + [aux_sym_permit_remote_open_token1] = ACTIONS(3328), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3328), + [aux_sym_port_token1] = ACTIONS(3328), + [aux_sym_preferred_authentications_token1] = ACTIONS(3328), + [aux_sym_protocol_token1] = ACTIONS(3328), + [aux_sym_proxy_command_token1] = ACTIONS(3328), + [aux_sym_proxy_jump_token1] = ACTIONS(3328), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3328), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3328), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3328), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3328), + [aux_sym_rekey_limit_token1] = ACTIONS(3328), + [aux_sym_remote_command_token1] = ACTIONS(3328), + [aux_sym_remote_forward_token1] = ACTIONS(3328), + [aux_sym_request_tty_token1] = ACTIONS(3328), + [aux_sym_required_rsa_size_token1] = ACTIONS(3328), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3328), + [aux_sym_security_key_provider_token1] = ACTIONS(3328), + [aux_sym_send_env_token1] = ACTIONS(3328), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3328), + [aux_sym_server_alive_interval_token1] = ACTIONS(3328), + [aux_sym_session_type_token1] = ACTIONS(3328), + [aux_sym_set_env_token1] = ACTIONS(3328), + [aux_sym_stdin_null_token1] = ACTIONS(3328), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3328), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3328), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3328), + [aux_sym_syslog_facility_token1] = ACTIONS(3328), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3328), + [aux_sym_keep_alive_token1] = ACTIONS(3328), + [aux_sym_tunnel_token1] = ACTIONS(3330), + [aux_sym_tunnel_device_token1] = ACTIONS(3328), + [aux_sym_update_host_keys_token1] = ACTIONS(3328), + [aux_sym_use_keychain_token1] = ACTIONS(3328), + [aux_sym_use_roaming_token1] = ACTIONS(3328), + [aux_sym_user_token1] = ACTIONS(3330), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3328), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3328), + [aux_sym_visual_host_key_token1] = ACTIONS(3328), + [aux_sym_xauth_location_token1] = ACTIONS(3328), }, [584] = { - [ts_builtin_sym_end] = ACTIONS(693), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(695), - [aux_sym_match_token1] = ACTIONS(693), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(693), - [aux_sym_address_family_token1] = ACTIONS(693), - [aux_sym_batch_mode_token1] = ACTIONS(693), - [aux_sym_bind_address_token1] = ACTIONS(693), - [aux_sym_bind_interface_token1] = ACTIONS(693), - [aux_sym_canonical_domains_token1] = ACTIONS(693), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(693), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(693), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(693), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(693), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(693), - [aux_sym_certificate_file_token1] = ACTIONS(693), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(693), - [aux_sym_check_host_ip_token1] = ACTIONS(693), - [aux_sym_ciphers_token1] = ACTIONS(693), - [aux_sym_cipher_token1] = ACTIONS(695), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(693), - [aux_sym_compression_token1] = ACTIONS(693), - [aux_sym_connection_attempts_token1] = ACTIONS(693), - [aux_sym_connect_timeout_token1] = ACTIONS(693), - [aux_sym_control_master_token1] = ACTIONS(693), - [aux_sym_control_path_token1] = ACTIONS(693), - [aux_sym_control_persist_token1] = ACTIONS(693), - [aux_sym_dynamic_forward_token1] = ACTIONS(693), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(693), - [aux_sym_escape_char_token1] = ACTIONS(693), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(693), - [aux_sym_fingerprint_hash_token1] = ACTIONS(693), - [aux_sym_fork_after_authentication_token1] = ACTIONS(693), - [aux_sym_forward_agent_token1] = ACTIONS(693), - [aux_sym_forward_x11_token1] = ACTIONS(695), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(693), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(693), - [aux_sym_gateway_ports_token1] = ACTIONS(693), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(693), - [aux_sym_gssapi_authentication_token1] = ACTIONS(693), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(693), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(693), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(693), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(693), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(693), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(693), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(693), - [aux_sym_hash_known_hosts_token1] = ACTIONS(693), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(693), - [aux_sym_hostbased_authentication_token1] = ACTIONS(693), - [aux_sym_host_key_algorithms_token1] = ACTIONS(693), - [aux_sym_host_key_alias_token1] = ACTIONS(693), - [aux_sym_hostname_token1] = ACTIONS(693), - [aux_sym_identities_only_token1] = ACTIONS(693), - [aux_sym_identity_agent_token1] = ACTIONS(693), - [aux_sym_identity_file_token1] = ACTIONS(693), - [aux_sym_ignore_unknown_token1] = ACTIONS(693), - [aux_sym_include_token1] = ACTIONS(693), - [aux_sym_ip_qos_token1] = ACTIONS(693), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(693), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(693), - [aux_sym_kex_algorithms_token1] = ACTIONS(693), - [aux_sym_known_hosts_command_token1] = ACTIONS(693), - [aux_sym_local_command_token1] = ACTIONS(693), - [aux_sym_local_forward_token1] = ACTIONS(693), - [aux_sym_log_level_token1] = ACTIONS(693), - [aux_sym_log_verbose_token1] = ACTIONS(693), - [aux_sym_macs_token1] = ACTIONS(693), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(693), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(693), - [aux_sym_password_authentication_token1] = ACTIONS(693), - [aux_sym_permit_local_command_token1] = ACTIONS(693), - [aux_sym_permit_remote_open_token1] = ACTIONS(693), - [aux_sym_pkcs11_provider_token1] = ACTIONS(693), - [aux_sym_port_token1] = ACTIONS(693), - [aux_sym_preferred_authentications_token1] = ACTIONS(693), - [aux_sym_protocol_token1] = ACTIONS(693), - [aux_sym_proxy_command_token1] = ACTIONS(693), - [aux_sym_proxy_jump_token1] = ACTIONS(693), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(693), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(693), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(693), - [aux_sym_pubkey_authentication_token1] = ACTIONS(693), - [aux_sym_rekey_limit_token1] = ACTIONS(693), - [aux_sym_remote_command_token1] = ACTIONS(693), - [aux_sym_remote_forward_token1] = ACTIONS(693), - [aux_sym_request_tty_token1] = ACTIONS(693), - [aux_sym_required_rsa_size_token1] = ACTIONS(693), - [aux_sym_revoked_host_keys_token1] = ACTIONS(693), - [aux_sym_security_key_provider_token1] = ACTIONS(693), - [aux_sym_send_env_token1] = ACTIONS(693), - [aux_sym_server_alive_count_max_token1] = ACTIONS(693), - [aux_sym_server_alive_interval_token1] = ACTIONS(693), - [aux_sym_session_type_token1] = ACTIONS(693), - [aux_sym_set_env_token1] = ACTIONS(693), - [aux_sym_stdin_null_token1] = ACTIONS(693), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(693), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(693), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(693), - [aux_sym_syslog_facility_token1] = ACTIONS(693), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(693), - [aux_sym_keep_alive_token1] = ACTIONS(693), - [aux_sym_tunnel_token1] = ACTIONS(695), - [aux_sym_tunnel_device_token1] = ACTIONS(693), - [aux_sym_update_host_keys_token1] = ACTIONS(693), - [aux_sym_use_keychain_token1] = ACTIONS(693), - [aux_sym_use_roaming_token1] = ACTIONS(693), - [aux_sym_user_token1] = ACTIONS(695), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(693), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(693), - [aux_sym_visual_host_key_token1] = ACTIONS(693), - [aux_sym_xauth_location_token1] = ACTIONS(693), + [ts_builtin_sym_end] = ACTIONS(1310), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1312), + [aux_sym_match_token1] = ACTIONS(1310), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1310), + [aux_sym_address_family_token1] = ACTIONS(1310), + [aux_sym_batch_mode_token1] = ACTIONS(1310), + [aux_sym_bind_address_token1] = ACTIONS(1310), + [aux_sym_bind_interface_token1] = ACTIONS(1310), + [aux_sym_canonical_domains_token1] = ACTIONS(1310), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1310), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1310), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1310), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1310), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1310), + [aux_sym_certificate_file_token1] = ACTIONS(1310), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1310), + [aux_sym_check_host_ip_token1] = ACTIONS(1310), + [aux_sym_ciphers_token1] = ACTIONS(1310), + [aux_sym_cipher_token1] = ACTIONS(1312), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1310), + [aux_sym_compression_token1] = ACTIONS(1310), + [aux_sym_connection_attempts_token1] = ACTIONS(1310), + [aux_sym_connect_timeout_token1] = ACTIONS(1310), + [aux_sym_control_master_token1] = ACTIONS(1310), + [aux_sym_control_path_token1] = ACTIONS(1310), + [aux_sym_control_persist_token1] = ACTIONS(1310), + [aux_sym_dynamic_forward_token1] = ACTIONS(1310), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1310), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1310), + [aux_sym_escape_char_token1] = ACTIONS(1310), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1310), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1310), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1310), + [aux_sym_forward_agent_token1] = ACTIONS(1310), + [aux_sym_forward_x11_token1] = ACTIONS(1312), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1310), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1310), + [aux_sym_gateway_ports_token1] = ACTIONS(1310), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1310), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1310), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1310), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1310), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1310), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1310), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1310), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1310), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1310), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1310), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1310), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1310), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1310), + [aux_sym_host_key_alias_token1] = ACTIONS(1310), + [aux_sym_hostname_token1] = ACTIONS(1310), + [aux_sym_identities_only_token1] = ACTIONS(1310), + [aux_sym_identity_agent_token1] = ACTIONS(1310), + [aux_sym_identity_file_token1] = ACTIONS(1310), + [aux_sym_ignore_unknown_token1] = ACTIONS(1310), + [aux_sym_include_token1] = ACTIONS(1310), + [aux_sym_ip_qos_token1] = ACTIONS(1310), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1310), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1310), + [aux_sym_kex_algorithms_token1] = ACTIONS(1310), + [aux_sym_known_hosts_command_token1] = ACTIONS(1310), + [aux_sym_local_command_token1] = ACTIONS(1310), + [aux_sym_local_forward_token1] = ACTIONS(1310), + [aux_sym_log_level_token1] = ACTIONS(1310), + [aux_sym_log_verbose_token1] = ACTIONS(1310), + [aux_sym_macs_token1] = ACTIONS(1310), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1310), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1310), + [aux_sym_password_authentication_token1] = ACTIONS(1310), + [aux_sym_permit_local_command_token1] = ACTIONS(1310), + [aux_sym_permit_remote_open_token1] = ACTIONS(1310), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1310), + [aux_sym_port_token1] = ACTIONS(1310), + [aux_sym_preferred_authentications_token1] = ACTIONS(1310), + [aux_sym_protocol_token1] = ACTIONS(1310), + [aux_sym_proxy_command_token1] = ACTIONS(1310), + [aux_sym_proxy_jump_token1] = ACTIONS(1310), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1310), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1310), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1310), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1310), + [aux_sym_rekey_limit_token1] = ACTIONS(1310), + [aux_sym_remote_command_token1] = ACTIONS(1310), + [aux_sym_remote_forward_token1] = ACTIONS(1310), + [aux_sym_request_tty_token1] = ACTIONS(1310), + [aux_sym_required_rsa_size_token1] = ACTIONS(1310), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1310), + [aux_sym_security_key_provider_token1] = ACTIONS(1310), + [aux_sym_send_env_token1] = ACTIONS(1310), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1310), + [aux_sym_server_alive_interval_token1] = ACTIONS(1310), + [aux_sym_session_type_token1] = ACTIONS(1310), + [aux_sym_set_env_token1] = ACTIONS(1310), + [aux_sym_stdin_null_token1] = ACTIONS(1310), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1310), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1310), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1310), + [aux_sym_syslog_facility_token1] = ACTIONS(1310), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1310), + [aux_sym_keep_alive_token1] = ACTIONS(1310), + [aux_sym_tunnel_token1] = ACTIONS(1312), + [aux_sym_tunnel_device_token1] = ACTIONS(1310), + [aux_sym_update_host_keys_token1] = ACTIONS(1310), + [aux_sym_use_keychain_token1] = ACTIONS(1310), + [aux_sym_use_roaming_token1] = ACTIONS(1310), + [aux_sym_user_token1] = ACTIONS(1312), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1310), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1310), + [aux_sym_visual_host_key_token1] = ACTIONS(1310), + [aux_sym_xauth_location_token1] = ACTIONS(1310), }, [585] = { - [ts_builtin_sym_end] = ACTIONS(699), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(701), - [aux_sym_match_token1] = ACTIONS(699), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(699), - [aux_sym_address_family_token1] = ACTIONS(699), - [aux_sym_batch_mode_token1] = ACTIONS(699), - [aux_sym_bind_address_token1] = ACTIONS(699), - [aux_sym_bind_interface_token1] = ACTIONS(699), - [aux_sym_canonical_domains_token1] = ACTIONS(699), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(699), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(699), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(699), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(699), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(699), - [aux_sym_certificate_file_token1] = ACTIONS(699), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(699), - [aux_sym_check_host_ip_token1] = ACTIONS(699), - [aux_sym_ciphers_token1] = ACTIONS(699), - [aux_sym_cipher_token1] = ACTIONS(701), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(699), - [aux_sym_compression_token1] = ACTIONS(699), - [aux_sym_connection_attempts_token1] = ACTIONS(699), - [aux_sym_connect_timeout_token1] = ACTIONS(699), - [aux_sym_control_master_token1] = ACTIONS(699), - [aux_sym_control_path_token1] = ACTIONS(699), - [aux_sym_control_persist_token1] = ACTIONS(699), - [aux_sym_dynamic_forward_token1] = ACTIONS(699), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(699), - [aux_sym_escape_char_token1] = ACTIONS(699), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(699), - [aux_sym_fingerprint_hash_token1] = ACTIONS(699), - [aux_sym_fork_after_authentication_token1] = ACTIONS(699), - [aux_sym_forward_agent_token1] = ACTIONS(699), - [aux_sym_forward_x11_token1] = ACTIONS(701), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(699), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(699), - [aux_sym_gateway_ports_token1] = ACTIONS(699), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(699), - [aux_sym_gssapi_authentication_token1] = ACTIONS(699), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(699), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(699), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(699), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(699), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(699), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(699), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(699), - [aux_sym_hash_known_hosts_token1] = ACTIONS(699), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(699), - [aux_sym_hostbased_authentication_token1] = ACTIONS(699), - [aux_sym_host_key_algorithms_token1] = ACTIONS(699), - [aux_sym_host_key_alias_token1] = ACTIONS(699), - [aux_sym_hostname_token1] = ACTIONS(699), - [aux_sym_identities_only_token1] = ACTIONS(699), - [aux_sym_identity_agent_token1] = ACTIONS(699), - [aux_sym_identity_file_token1] = ACTIONS(699), - [aux_sym_ignore_unknown_token1] = ACTIONS(699), - [aux_sym_include_token1] = ACTIONS(699), - [aux_sym_ip_qos_token1] = ACTIONS(699), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(699), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(699), - [aux_sym_kex_algorithms_token1] = ACTIONS(699), - [aux_sym_known_hosts_command_token1] = ACTIONS(699), - [aux_sym_local_command_token1] = ACTIONS(699), - [aux_sym_local_forward_token1] = ACTIONS(699), - [aux_sym_log_level_token1] = ACTIONS(699), - [aux_sym_log_verbose_token1] = ACTIONS(699), - [aux_sym_macs_token1] = ACTIONS(699), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(699), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(699), - [aux_sym_password_authentication_token1] = ACTIONS(699), - [aux_sym_permit_local_command_token1] = ACTIONS(699), - [aux_sym_permit_remote_open_token1] = ACTIONS(699), - [aux_sym_pkcs11_provider_token1] = ACTIONS(699), - [aux_sym_port_token1] = ACTIONS(699), - [aux_sym_preferred_authentications_token1] = ACTIONS(699), - [aux_sym_protocol_token1] = ACTIONS(699), - [aux_sym_proxy_command_token1] = ACTIONS(699), - [aux_sym_proxy_jump_token1] = ACTIONS(699), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(699), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(699), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(699), - [aux_sym_pubkey_authentication_token1] = ACTIONS(699), - [aux_sym_rekey_limit_token1] = ACTIONS(699), - [aux_sym_remote_command_token1] = ACTIONS(699), - [aux_sym_remote_forward_token1] = ACTIONS(699), - [aux_sym_request_tty_token1] = ACTIONS(699), - [aux_sym_required_rsa_size_token1] = ACTIONS(699), - [aux_sym_revoked_host_keys_token1] = ACTIONS(699), - [aux_sym_security_key_provider_token1] = ACTIONS(699), - [aux_sym_send_env_token1] = ACTIONS(699), - [aux_sym_server_alive_count_max_token1] = ACTIONS(699), - [aux_sym_server_alive_interval_token1] = ACTIONS(699), - [aux_sym_session_type_token1] = ACTIONS(699), - [aux_sym_set_env_token1] = ACTIONS(699), - [aux_sym_stdin_null_token1] = ACTIONS(699), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(699), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(699), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(699), - [aux_sym_syslog_facility_token1] = ACTIONS(699), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(699), - [aux_sym_keep_alive_token1] = ACTIONS(699), - [aux_sym_tunnel_token1] = ACTIONS(701), - [aux_sym_tunnel_device_token1] = ACTIONS(699), - [aux_sym_update_host_keys_token1] = ACTIONS(699), - [aux_sym_use_keychain_token1] = ACTIONS(699), - [aux_sym_use_roaming_token1] = ACTIONS(699), - [aux_sym_user_token1] = ACTIONS(701), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(699), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(699), - [aux_sym_visual_host_key_token1] = ACTIONS(699), - [aux_sym_xauth_location_token1] = ACTIONS(699), + [ts_builtin_sym_end] = ACTIONS(1316), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1318), + [aux_sym_match_token1] = ACTIONS(1316), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1316), + [aux_sym_address_family_token1] = ACTIONS(1316), + [aux_sym_batch_mode_token1] = ACTIONS(1316), + [aux_sym_bind_address_token1] = ACTIONS(1316), + [aux_sym_bind_interface_token1] = ACTIONS(1316), + [aux_sym_canonical_domains_token1] = ACTIONS(1316), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1316), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1316), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1316), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1316), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1316), + [aux_sym_certificate_file_token1] = ACTIONS(1316), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1316), + [aux_sym_check_host_ip_token1] = ACTIONS(1316), + [aux_sym_ciphers_token1] = ACTIONS(1316), + [aux_sym_cipher_token1] = ACTIONS(1318), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1316), + [aux_sym_compression_token1] = ACTIONS(1316), + [aux_sym_connection_attempts_token1] = ACTIONS(1316), + [aux_sym_connect_timeout_token1] = ACTIONS(1316), + [aux_sym_control_master_token1] = ACTIONS(1316), + [aux_sym_control_path_token1] = ACTIONS(1316), + [aux_sym_control_persist_token1] = ACTIONS(1316), + [aux_sym_dynamic_forward_token1] = ACTIONS(1316), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1316), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1316), + [aux_sym_escape_char_token1] = ACTIONS(1316), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1316), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1316), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1316), + [aux_sym_forward_agent_token1] = ACTIONS(1316), + [aux_sym_forward_x11_token1] = ACTIONS(1318), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1316), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1316), + [aux_sym_gateway_ports_token1] = ACTIONS(1316), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1316), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1316), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1316), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1316), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1316), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1316), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1316), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1316), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1316), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1316), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1316), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1316), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1316), + [aux_sym_host_key_alias_token1] = ACTIONS(1316), + [aux_sym_hostname_token1] = ACTIONS(1316), + [aux_sym_identities_only_token1] = ACTIONS(1316), + [aux_sym_identity_agent_token1] = ACTIONS(1316), + [aux_sym_identity_file_token1] = ACTIONS(1316), + [aux_sym_ignore_unknown_token1] = ACTIONS(1316), + [aux_sym_include_token1] = ACTIONS(1316), + [aux_sym_ip_qos_token1] = ACTIONS(1316), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1316), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1316), + [aux_sym_kex_algorithms_token1] = ACTIONS(1316), + [aux_sym_known_hosts_command_token1] = ACTIONS(1316), + [aux_sym_local_command_token1] = ACTIONS(1316), + [aux_sym_local_forward_token1] = ACTIONS(1316), + [aux_sym_log_level_token1] = ACTIONS(1316), + [aux_sym_log_verbose_token1] = ACTIONS(1316), + [aux_sym_macs_token1] = ACTIONS(1316), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1316), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1316), + [aux_sym_password_authentication_token1] = ACTIONS(1316), + [aux_sym_permit_local_command_token1] = ACTIONS(1316), + [aux_sym_permit_remote_open_token1] = ACTIONS(1316), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1316), + [aux_sym_port_token1] = ACTIONS(1316), + [aux_sym_preferred_authentications_token1] = ACTIONS(1316), + [aux_sym_protocol_token1] = ACTIONS(1316), + [aux_sym_proxy_command_token1] = ACTIONS(1316), + [aux_sym_proxy_jump_token1] = ACTIONS(1316), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1316), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1316), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1316), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1316), + [aux_sym_rekey_limit_token1] = ACTIONS(1316), + [aux_sym_remote_command_token1] = ACTIONS(1316), + [aux_sym_remote_forward_token1] = ACTIONS(1316), + [aux_sym_request_tty_token1] = ACTIONS(1316), + [aux_sym_required_rsa_size_token1] = ACTIONS(1316), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1316), + [aux_sym_security_key_provider_token1] = ACTIONS(1316), + [aux_sym_send_env_token1] = ACTIONS(1316), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1316), + [aux_sym_server_alive_interval_token1] = ACTIONS(1316), + [aux_sym_session_type_token1] = ACTIONS(1316), + [aux_sym_set_env_token1] = ACTIONS(1316), + [aux_sym_stdin_null_token1] = ACTIONS(1316), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1316), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1316), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1316), + [aux_sym_syslog_facility_token1] = ACTIONS(1316), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1316), + [aux_sym_keep_alive_token1] = ACTIONS(1316), + [aux_sym_tunnel_token1] = ACTIONS(1318), + [aux_sym_tunnel_device_token1] = ACTIONS(1316), + [aux_sym_update_host_keys_token1] = ACTIONS(1316), + [aux_sym_use_keychain_token1] = ACTIONS(1316), + [aux_sym_use_roaming_token1] = ACTIONS(1316), + [aux_sym_user_token1] = ACTIONS(1318), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1316), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1316), + [aux_sym_visual_host_key_token1] = ACTIONS(1316), + [aux_sym_xauth_location_token1] = ACTIONS(1316), }, [586] = { - [ts_builtin_sym_end] = ACTIONS(705), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(707), - [aux_sym_match_token1] = ACTIONS(705), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(705), - [aux_sym_address_family_token1] = ACTIONS(705), - [aux_sym_batch_mode_token1] = ACTIONS(705), - [aux_sym_bind_address_token1] = ACTIONS(705), - [aux_sym_bind_interface_token1] = ACTIONS(705), - [aux_sym_canonical_domains_token1] = ACTIONS(705), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(705), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(705), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(705), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(705), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(705), - [aux_sym_certificate_file_token1] = ACTIONS(705), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(705), - [aux_sym_check_host_ip_token1] = ACTIONS(705), - [aux_sym_ciphers_token1] = ACTIONS(705), - [aux_sym_cipher_token1] = ACTIONS(707), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(705), - [aux_sym_compression_token1] = ACTIONS(705), - [aux_sym_connection_attempts_token1] = ACTIONS(705), - [aux_sym_connect_timeout_token1] = ACTIONS(705), - [aux_sym_control_master_token1] = ACTIONS(705), - [aux_sym_control_path_token1] = ACTIONS(705), - [aux_sym_control_persist_token1] = ACTIONS(705), - [aux_sym_dynamic_forward_token1] = ACTIONS(705), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(705), - [aux_sym_escape_char_token1] = ACTIONS(705), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(705), - [aux_sym_fingerprint_hash_token1] = ACTIONS(705), - [aux_sym_fork_after_authentication_token1] = ACTIONS(705), - [aux_sym_forward_agent_token1] = ACTIONS(705), - [aux_sym_forward_x11_token1] = ACTIONS(707), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(705), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(705), - [aux_sym_gateway_ports_token1] = ACTIONS(705), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(705), - [aux_sym_gssapi_authentication_token1] = ACTIONS(705), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(705), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(705), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(705), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(705), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(705), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(705), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(705), - [aux_sym_hash_known_hosts_token1] = ACTIONS(705), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(705), - [aux_sym_hostbased_authentication_token1] = ACTIONS(705), - [aux_sym_host_key_algorithms_token1] = ACTIONS(705), - [aux_sym_host_key_alias_token1] = ACTIONS(705), - [aux_sym_hostname_token1] = ACTIONS(705), - [aux_sym_identities_only_token1] = ACTIONS(705), - [aux_sym_identity_agent_token1] = ACTIONS(705), - [aux_sym_identity_file_token1] = ACTIONS(705), - [aux_sym_ignore_unknown_token1] = ACTIONS(705), - [aux_sym_include_token1] = ACTIONS(705), - [aux_sym_ip_qos_token1] = ACTIONS(705), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(705), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(705), - [aux_sym_kex_algorithms_token1] = ACTIONS(705), - [aux_sym_known_hosts_command_token1] = ACTIONS(705), - [aux_sym_local_command_token1] = ACTIONS(705), - [aux_sym_local_forward_token1] = ACTIONS(705), - [aux_sym_log_level_token1] = ACTIONS(705), - [aux_sym_log_verbose_token1] = ACTIONS(705), - [aux_sym_macs_token1] = ACTIONS(705), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(705), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(705), - [aux_sym_password_authentication_token1] = ACTIONS(705), - [aux_sym_permit_local_command_token1] = ACTIONS(705), - [aux_sym_permit_remote_open_token1] = ACTIONS(705), - [aux_sym_pkcs11_provider_token1] = ACTIONS(705), - [aux_sym_port_token1] = ACTIONS(705), - [aux_sym_preferred_authentications_token1] = ACTIONS(705), - [aux_sym_protocol_token1] = ACTIONS(705), - [aux_sym_proxy_command_token1] = ACTIONS(705), - [aux_sym_proxy_jump_token1] = ACTIONS(705), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(705), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(705), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(705), - [aux_sym_pubkey_authentication_token1] = ACTIONS(705), - [aux_sym_rekey_limit_token1] = ACTIONS(705), - [aux_sym_remote_command_token1] = ACTIONS(705), - [aux_sym_remote_forward_token1] = ACTIONS(705), - [aux_sym_request_tty_token1] = ACTIONS(705), - [aux_sym_required_rsa_size_token1] = ACTIONS(705), - [aux_sym_revoked_host_keys_token1] = ACTIONS(705), - [aux_sym_security_key_provider_token1] = ACTIONS(705), - [aux_sym_send_env_token1] = ACTIONS(705), - [aux_sym_server_alive_count_max_token1] = ACTIONS(705), - [aux_sym_server_alive_interval_token1] = ACTIONS(705), - [aux_sym_session_type_token1] = ACTIONS(705), - [aux_sym_set_env_token1] = ACTIONS(705), - [aux_sym_stdin_null_token1] = ACTIONS(705), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(705), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(705), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(705), - [aux_sym_syslog_facility_token1] = ACTIONS(705), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(705), - [aux_sym_keep_alive_token1] = ACTIONS(705), - [aux_sym_tunnel_token1] = ACTIONS(707), - [aux_sym_tunnel_device_token1] = ACTIONS(705), - [aux_sym_update_host_keys_token1] = ACTIONS(705), - [aux_sym_use_keychain_token1] = ACTIONS(705), - [aux_sym_use_roaming_token1] = ACTIONS(705), - [aux_sym_user_token1] = ACTIONS(707), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(705), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(705), - [aux_sym_visual_host_key_token1] = ACTIONS(705), - [aux_sym_xauth_location_token1] = ACTIONS(705), + [ts_builtin_sym_end] = ACTIONS(3332), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3334), + [aux_sym_match_token1] = ACTIONS(3332), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3332), + [aux_sym_address_family_token1] = ACTIONS(3332), + [aux_sym_batch_mode_token1] = ACTIONS(3332), + [aux_sym_bind_address_token1] = ACTIONS(3332), + [aux_sym_bind_interface_token1] = ACTIONS(3332), + [aux_sym_canonical_domains_token1] = ACTIONS(3332), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3332), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3332), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3332), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3332), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3332), + [aux_sym_certificate_file_token1] = ACTIONS(3332), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3332), + [aux_sym_check_host_ip_token1] = ACTIONS(3332), + [aux_sym_ciphers_token1] = ACTIONS(3332), + [aux_sym_cipher_token1] = ACTIONS(3334), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3332), + [aux_sym_compression_token1] = ACTIONS(3332), + [aux_sym_connection_attempts_token1] = ACTIONS(3332), + [aux_sym_connect_timeout_token1] = ACTIONS(3332), + [aux_sym_control_master_token1] = ACTIONS(3332), + [aux_sym_control_path_token1] = ACTIONS(3332), + [aux_sym_control_persist_token1] = ACTIONS(3332), + [aux_sym_dynamic_forward_token1] = ACTIONS(3332), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3332), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3332), + [aux_sym_escape_char_token1] = ACTIONS(3332), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3332), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3332), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3332), + [aux_sym_forward_agent_token1] = ACTIONS(3332), + [aux_sym_forward_x11_token1] = ACTIONS(3334), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3332), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3332), + [aux_sym_gateway_ports_token1] = ACTIONS(3332), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3332), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3332), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3332), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3332), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3332), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3332), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3332), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3332), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3332), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3332), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3332), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3332), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3332), + [aux_sym_host_key_alias_token1] = ACTIONS(3332), + [aux_sym_hostname_token1] = ACTIONS(3332), + [aux_sym_identities_only_token1] = ACTIONS(3332), + [aux_sym_identity_agent_token1] = ACTIONS(3332), + [aux_sym_identity_file_token1] = ACTIONS(3332), + [aux_sym_ignore_unknown_token1] = ACTIONS(3332), + [aux_sym_include_token1] = ACTIONS(3332), + [aux_sym_ip_qos_token1] = ACTIONS(3332), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3332), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3332), + [aux_sym_kex_algorithms_token1] = ACTIONS(3332), + [aux_sym_known_hosts_command_token1] = ACTIONS(3332), + [aux_sym_local_command_token1] = ACTIONS(3332), + [aux_sym_local_forward_token1] = ACTIONS(3332), + [aux_sym_log_level_token1] = ACTIONS(3332), + [aux_sym_log_verbose_token1] = ACTIONS(3332), + [aux_sym_macs_token1] = ACTIONS(3332), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3332), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3332), + [aux_sym_password_authentication_token1] = ACTIONS(3332), + [aux_sym_permit_local_command_token1] = ACTIONS(3332), + [aux_sym_permit_remote_open_token1] = ACTIONS(3332), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3332), + [aux_sym_port_token1] = ACTIONS(3332), + [aux_sym_preferred_authentications_token1] = ACTIONS(3332), + [aux_sym_protocol_token1] = ACTIONS(3332), + [aux_sym_proxy_command_token1] = ACTIONS(3332), + [aux_sym_proxy_jump_token1] = ACTIONS(3332), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3332), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3332), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3332), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3332), + [aux_sym_rekey_limit_token1] = ACTIONS(3332), + [aux_sym_remote_command_token1] = ACTIONS(3332), + [aux_sym_remote_forward_token1] = ACTIONS(3332), + [aux_sym_request_tty_token1] = ACTIONS(3332), + [aux_sym_required_rsa_size_token1] = ACTIONS(3332), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3332), + [aux_sym_security_key_provider_token1] = ACTIONS(3332), + [aux_sym_send_env_token1] = ACTIONS(3332), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3332), + [aux_sym_server_alive_interval_token1] = ACTIONS(3332), + [aux_sym_session_type_token1] = ACTIONS(3332), + [aux_sym_set_env_token1] = ACTIONS(3332), + [aux_sym_stdin_null_token1] = ACTIONS(3332), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3332), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3332), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3332), + [aux_sym_syslog_facility_token1] = ACTIONS(3332), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3332), + [aux_sym_keep_alive_token1] = ACTIONS(3332), + [aux_sym_tunnel_token1] = ACTIONS(3334), + [aux_sym_tunnel_device_token1] = ACTIONS(3332), + [aux_sym_update_host_keys_token1] = ACTIONS(3332), + [aux_sym_use_keychain_token1] = ACTIONS(3332), + [aux_sym_use_roaming_token1] = ACTIONS(3332), + [aux_sym_user_token1] = ACTIONS(3334), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3332), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3332), + [aux_sym_visual_host_key_token1] = ACTIONS(3332), + [aux_sym_xauth_location_token1] = ACTIONS(3332), }, [587] = { - [ts_builtin_sym_end] = ACTIONS(711), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(713), - [aux_sym_match_token1] = ACTIONS(711), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(711), - [aux_sym_address_family_token1] = ACTIONS(711), - [aux_sym_batch_mode_token1] = ACTIONS(711), - [aux_sym_bind_address_token1] = ACTIONS(711), - [aux_sym_bind_interface_token1] = ACTIONS(711), - [aux_sym_canonical_domains_token1] = ACTIONS(711), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(711), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(711), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(711), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(711), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(711), - [aux_sym_certificate_file_token1] = ACTIONS(711), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(711), - [aux_sym_check_host_ip_token1] = ACTIONS(711), - [aux_sym_ciphers_token1] = ACTIONS(711), - [aux_sym_cipher_token1] = ACTIONS(713), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(711), - [aux_sym_compression_token1] = ACTIONS(711), - [aux_sym_connection_attempts_token1] = ACTIONS(711), - [aux_sym_connect_timeout_token1] = ACTIONS(711), - [aux_sym_control_master_token1] = ACTIONS(711), - [aux_sym_control_path_token1] = ACTIONS(711), - [aux_sym_control_persist_token1] = ACTIONS(711), - [aux_sym_dynamic_forward_token1] = ACTIONS(711), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(711), - [aux_sym_escape_char_token1] = ACTIONS(711), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(711), - [aux_sym_fingerprint_hash_token1] = ACTIONS(711), - [aux_sym_fork_after_authentication_token1] = ACTIONS(711), - [aux_sym_forward_agent_token1] = ACTIONS(711), - [aux_sym_forward_x11_token1] = ACTIONS(713), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(711), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(711), - [aux_sym_gateway_ports_token1] = ACTIONS(711), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(711), - [aux_sym_gssapi_authentication_token1] = ACTIONS(711), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(711), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(711), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(711), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(711), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(711), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(711), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(711), - [aux_sym_hash_known_hosts_token1] = ACTIONS(711), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(711), - [aux_sym_hostbased_authentication_token1] = ACTIONS(711), - [aux_sym_host_key_algorithms_token1] = ACTIONS(711), - [aux_sym_host_key_alias_token1] = ACTIONS(711), - [aux_sym_hostname_token1] = ACTIONS(711), - [aux_sym_identities_only_token1] = ACTIONS(711), - [aux_sym_identity_agent_token1] = ACTIONS(711), - [aux_sym_identity_file_token1] = ACTIONS(711), - [aux_sym_ignore_unknown_token1] = ACTIONS(711), - [aux_sym_include_token1] = ACTIONS(711), - [aux_sym_ip_qos_token1] = ACTIONS(711), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(711), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(711), - [aux_sym_kex_algorithms_token1] = ACTIONS(711), - [aux_sym_known_hosts_command_token1] = ACTIONS(711), - [aux_sym_local_command_token1] = ACTIONS(711), - [aux_sym_local_forward_token1] = ACTIONS(711), - [aux_sym_log_level_token1] = ACTIONS(711), - [aux_sym_log_verbose_token1] = ACTIONS(711), - [aux_sym_macs_token1] = ACTIONS(711), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(711), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(711), - [aux_sym_password_authentication_token1] = ACTIONS(711), - [aux_sym_permit_local_command_token1] = ACTIONS(711), - [aux_sym_permit_remote_open_token1] = ACTIONS(711), - [aux_sym_pkcs11_provider_token1] = ACTIONS(711), - [aux_sym_port_token1] = ACTIONS(711), - [aux_sym_preferred_authentications_token1] = ACTIONS(711), - [aux_sym_protocol_token1] = ACTIONS(711), - [aux_sym_proxy_command_token1] = ACTIONS(711), - [aux_sym_proxy_jump_token1] = ACTIONS(711), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(711), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(711), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(711), - [aux_sym_pubkey_authentication_token1] = ACTIONS(711), - [aux_sym_rekey_limit_token1] = ACTIONS(711), - [aux_sym_remote_command_token1] = ACTIONS(711), - [aux_sym_remote_forward_token1] = ACTIONS(711), - [aux_sym_request_tty_token1] = ACTIONS(711), - [aux_sym_required_rsa_size_token1] = ACTIONS(711), - [aux_sym_revoked_host_keys_token1] = ACTIONS(711), - [aux_sym_security_key_provider_token1] = ACTIONS(711), - [aux_sym_send_env_token1] = ACTIONS(711), - [aux_sym_server_alive_count_max_token1] = ACTIONS(711), - [aux_sym_server_alive_interval_token1] = ACTIONS(711), - [aux_sym_session_type_token1] = ACTIONS(711), - [aux_sym_set_env_token1] = ACTIONS(711), - [aux_sym_stdin_null_token1] = ACTIONS(711), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(711), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(711), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(711), - [aux_sym_syslog_facility_token1] = ACTIONS(711), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(711), - [aux_sym_keep_alive_token1] = ACTIONS(711), - [aux_sym_tunnel_token1] = ACTIONS(713), - [aux_sym_tunnel_device_token1] = ACTIONS(711), - [aux_sym_update_host_keys_token1] = ACTIONS(711), - [aux_sym_use_keychain_token1] = ACTIONS(711), - [aux_sym_use_roaming_token1] = ACTIONS(711), - [aux_sym_user_token1] = ACTIONS(713), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(711), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(711), - [aux_sym_visual_host_key_token1] = ACTIONS(711), - [aux_sym_xauth_location_token1] = ACTIONS(711), + [ts_builtin_sym_end] = ACTIONS(3336), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3338), + [aux_sym_match_token1] = ACTIONS(3336), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3336), + [aux_sym_address_family_token1] = ACTIONS(3336), + [aux_sym_batch_mode_token1] = ACTIONS(3336), + [aux_sym_bind_address_token1] = ACTIONS(3336), + [aux_sym_bind_interface_token1] = ACTIONS(3336), + [aux_sym_canonical_domains_token1] = ACTIONS(3336), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3336), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3336), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3336), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3336), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3336), + [aux_sym_certificate_file_token1] = ACTIONS(3336), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3336), + [aux_sym_check_host_ip_token1] = ACTIONS(3336), + [aux_sym_ciphers_token1] = ACTIONS(3336), + [aux_sym_cipher_token1] = ACTIONS(3338), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3336), + [aux_sym_compression_token1] = ACTIONS(3336), + [aux_sym_connection_attempts_token1] = ACTIONS(3336), + [aux_sym_connect_timeout_token1] = ACTIONS(3336), + [aux_sym_control_master_token1] = ACTIONS(3336), + [aux_sym_control_path_token1] = ACTIONS(3336), + [aux_sym_control_persist_token1] = ACTIONS(3336), + [aux_sym_dynamic_forward_token1] = ACTIONS(3336), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3336), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3336), + [aux_sym_escape_char_token1] = ACTIONS(3336), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3336), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3336), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3336), + [aux_sym_forward_agent_token1] = ACTIONS(3336), + [aux_sym_forward_x11_token1] = ACTIONS(3338), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3336), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3336), + [aux_sym_gateway_ports_token1] = ACTIONS(3336), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3336), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3336), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3336), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3336), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3336), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3336), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3336), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3336), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3336), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3336), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3336), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3336), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3336), + [aux_sym_host_key_alias_token1] = ACTIONS(3336), + [aux_sym_hostname_token1] = ACTIONS(3336), + [aux_sym_identities_only_token1] = ACTIONS(3336), + [aux_sym_identity_agent_token1] = ACTIONS(3336), + [aux_sym_identity_file_token1] = ACTIONS(3336), + [aux_sym_ignore_unknown_token1] = ACTIONS(3336), + [aux_sym_include_token1] = ACTIONS(3336), + [aux_sym_ip_qos_token1] = ACTIONS(3336), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3336), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3336), + [aux_sym_kex_algorithms_token1] = ACTIONS(3336), + [aux_sym_known_hosts_command_token1] = ACTIONS(3336), + [aux_sym_local_command_token1] = ACTIONS(3336), + [aux_sym_local_forward_token1] = ACTIONS(3336), + [aux_sym_log_level_token1] = ACTIONS(3336), + [aux_sym_log_verbose_token1] = ACTIONS(3336), + [aux_sym_macs_token1] = ACTIONS(3336), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3336), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3336), + [aux_sym_password_authentication_token1] = ACTIONS(3336), + [aux_sym_permit_local_command_token1] = ACTIONS(3336), + [aux_sym_permit_remote_open_token1] = ACTIONS(3336), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3336), + [aux_sym_port_token1] = ACTIONS(3336), + [aux_sym_preferred_authentications_token1] = ACTIONS(3336), + [aux_sym_protocol_token1] = ACTIONS(3336), + [aux_sym_proxy_command_token1] = ACTIONS(3336), + [aux_sym_proxy_jump_token1] = ACTIONS(3336), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3336), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3336), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3336), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3336), + [aux_sym_rekey_limit_token1] = ACTIONS(3336), + [aux_sym_remote_command_token1] = ACTIONS(3336), + [aux_sym_remote_forward_token1] = ACTIONS(3336), + [aux_sym_request_tty_token1] = ACTIONS(3336), + [aux_sym_required_rsa_size_token1] = ACTIONS(3336), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3336), + [aux_sym_security_key_provider_token1] = ACTIONS(3336), + [aux_sym_send_env_token1] = ACTIONS(3336), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3336), + [aux_sym_server_alive_interval_token1] = ACTIONS(3336), + [aux_sym_session_type_token1] = ACTIONS(3336), + [aux_sym_set_env_token1] = ACTIONS(3336), + [aux_sym_stdin_null_token1] = ACTIONS(3336), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3336), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3336), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3336), + [aux_sym_syslog_facility_token1] = ACTIONS(3336), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3336), + [aux_sym_keep_alive_token1] = ACTIONS(3336), + [aux_sym_tunnel_token1] = ACTIONS(3338), + [aux_sym_tunnel_device_token1] = ACTIONS(3336), + [aux_sym_update_host_keys_token1] = ACTIONS(3336), + [aux_sym_use_keychain_token1] = ACTIONS(3336), + [aux_sym_use_roaming_token1] = ACTIONS(3336), + [aux_sym_user_token1] = ACTIONS(3338), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3336), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3336), + [aux_sym_visual_host_key_token1] = ACTIONS(3336), + [aux_sym_xauth_location_token1] = ACTIONS(3336), }, [588] = { - [ts_builtin_sym_end] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(719), - [aux_sym_match_token1] = ACTIONS(717), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(717), - [aux_sym_address_family_token1] = ACTIONS(717), - [aux_sym_batch_mode_token1] = ACTIONS(717), - [aux_sym_bind_address_token1] = ACTIONS(717), - [aux_sym_bind_interface_token1] = ACTIONS(717), - [aux_sym_canonical_domains_token1] = ACTIONS(717), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(717), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(717), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(717), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(717), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(717), - [aux_sym_certificate_file_token1] = ACTIONS(717), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(717), - [aux_sym_check_host_ip_token1] = ACTIONS(717), - [aux_sym_ciphers_token1] = ACTIONS(717), - [aux_sym_cipher_token1] = ACTIONS(719), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(717), - [aux_sym_compression_token1] = ACTIONS(717), - [aux_sym_connection_attempts_token1] = ACTIONS(717), - [aux_sym_connect_timeout_token1] = ACTIONS(717), - [aux_sym_control_master_token1] = ACTIONS(717), - [aux_sym_control_path_token1] = ACTIONS(717), - [aux_sym_control_persist_token1] = ACTIONS(717), - [aux_sym_dynamic_forward_token1] = ACTIONS(717), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(717), - [aux_sym_escape_char_token1] = ACTIONS(717), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(717), - [aux_sym_fingerprint_hash_token1] = ACTIONS(717), - [aux_sym_fork_after_authentication_token1] = ACTIONS(717), - [aux_sym_forward_agent_token1] = ACTIONS(717), - [aux_sym_forward_x11_token1] = ACTIONS(719), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(717), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(717), - [aux_sym_gateway_ports_token1] = ACTIONS(717), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(717), - [aux_sym_gssapi_authentication_token1] = ACTIONS(717), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(717), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(717), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(717), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(717), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(717), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(717), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(717), - [aux_sym_hash_known_hosts_token1] = ACTIONS(717), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(717), - [aux_sym_hostbased_authentication_token1] = ACTIONS(717), - [aux_sym_host_key_algorithms_token1] = ACTIONS(717), - [aux_sym_host_key_alias_token1] = ACTIONS(717), - [aux_sym_hostname_token1] = ACTIONS(717), - [aux_sym_identities_only_token1] = ACTIONS(717), - [aux_sym_identity_agent_token1] = ACTIONS(717), - [aux_sym_identity_file_token1] = ACTIONS(717), - [aux_sym_ignore_unknown_token1] = ACTIONS(717), - [aux_sym_include_token1] = ACTIONS(717), - [aux_sym_ip_qos_token1] = ACTIONS(717), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(717), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(717), - [aux_sym_kex_algorithms_token1] = ACTIONS(717), - [aux_sym_known_hosts_command_token1] = ACTIONS(717), - [aux_sym_local_command_token1] = ACTIONS(717), - [aux_sym_local_forward_token1] = ACTIONS(717), - [aux_sym_log_level_token1] = ACTIONS(717), - [aux_sym_log_verbose_token1] = ACTIONS(717), - [aux_sym_macs_token1] = ACTIONS(717), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(717), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(717), - [aux_sym_password_authentication_token1] = ACTIONS(717), - [aux_sym_permit_local_command_token1] = ACTIONS(717), - [aux_sym_permit_remote_open_token1] = ACTIONS(717), - [aux_sym_pkcs11_provider_token1] = ACTIONS(717), - [aux_sym_port_token1] = ACTIONS(717), - [aux_sym_preferred_authentications_token1] = ACTIONS(717), - [aux_sym_protocol_token1] = ACTIONS(717), - [aux_sym_proxy_command_token1] = ACTIONS(717), - [aux_sym_proxy_jump_token1] = ACTIONS(717), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(717), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(717), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(717), - [aux_sym_pubkey_authentication_token1] = ACTIONS(717), - [aux_sym_rekey_limit_token1] = ACTIONS(717), - [aux_sym_remote_command_token1] = ACTIONS(717), - [aux_sym_remote_forward_token1] = ACTIONS(717), - [aux_sym_request_tty_token1] = ACTIONS(717), - [aux_sym_required_rsa_size_token1] = ACTIONS(717), - [aux_sym_revoked_host_keys_token1] = ACTIONS(717), - [aux_sym_security_key_provider_token1] = ACTIONS(717), - [aux_sym_send_env_token1] = ACTIONS(717), - [aux_sym_server_alive_count_max_token1] = ACTIONS(717), - [aux_sym_server_alive_interval_token1] = ACTIONS(717), - [aux_sym_session_type_token1] = ACTIONS(717), - [aux_sym_set_env_token1] = ACTIONS(717), - [aux_sym_stdin_null_token1] = ACTIONS(717), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(717), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(717), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(717), - [aux_sym_syslog_facility_token1] = ACTIONS(717), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(717), - [aux_sym_keep_alive_token1] = ACTIONS(717), - [aux_sym_tunnel_token1] = ACTIONS(719), - [aux_sym_tunnel_device_token1] = ACTIONS(717), - [aux_sym_update_host_keys_token1] = ACTIONS(717), - [aux_sym_use_keychain_token1] = ACTIONS(717), - [aux_sym_use_roaming_token1] = ACTIONS(717), - [aux_sym_user_token1] = ACTIONS(719), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(717), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(717), - [aux_sym_visual_host_key_token1] = ACTIONS(717), - [aux_sym_xauth_location_token1] = ACTIONS(717), + [ts_builtin_sym_end] = ACTIONS(3340), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3342), + [aux_sym_match_token1] = ACTIONS(3340), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3340), + [aux_sym_address_family_token1] = ACTIONS(3340), + [aux_sym_batch_mode_token1] = ACTIONS(3340), + [aux_sym_bind_address_token1] = ACTIONS(3340), + [aux_sym_bind_interface_token1] = ACTIONS(3340), + [aux_sym_canonical_domains_token1] = ACTIONS(3340), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3340), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3340), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3340), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3340), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3340), + [aux_sym_certificate_file_token1] = ACTIONS(3340), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3340), + [aux_sym_check_host_ip_token1] = ACTIONS(3340), + [aux_sym_ciphers_token1] = ACTIONS(3340), + [aux_sym_cipher_token1] = ACTIONS(3342), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3340), + [aux_sym_compression_token1] = ACTIONS(3340), + [aux_sym_connection_attempts_token1] = ACTIONS(3340), + [aux_sym_connect_timeout_token1] = ACTIONS(3340), + [aux_sym_control_master_token1] = ACTIONS(3340), + [aux_sym_control_path_token1] = ACTIONS(3340), + [aux_sym_control_persist_token1] = ACTIONS(3340), + [aux_sym_dynamic_forward_token1] = ACTIONS(3340), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3340), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3340), + [aux_sym_escape_char_token1] = ACTIONS(3340), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3340), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3340), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3340), + [aux_sym_forward_agent_token1] = ACTIONS(3340), + [aux_sym_forward_x11_token1] = ACTIONS(3342), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3340), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3340), + [aux_sym_gateway_ports_token1] = ACTIONS(3340), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3340), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3340), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3340), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3340), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3340), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3340), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3340), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3340), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3340), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3340), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3340), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3340), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3340), + [aux_sym_host_key_alias_token1] = ACTIONS(3340), + [aux_sym_hostname_token1] = ACTIONS(3340), + [aux_sym_identities_only_token1] = ACTIONS(3340), + [aux_sym_identity_agent_token1] = ACTIONS(3340), + [aux_sym_identity_file_token1] = ACTIONS(3340), + [aux_sym_ignore_unknown_token1] = ACTIONS(3340), + [aux_sym_include_token1] = ACTIONS(3340), + [aux_sym_ip_qos_token1] = ACTIONS(3340), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3340), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3340), + [aux_sym_kex_algorithms_token1] = ACTIONS(3340), + [aux_sym_known_hosts_command_token1] = ACTIONS(3340), + [aux_sym_local_command_token1] = ACTIONS(3340), + [aux_sym_local_forward_token1] = ACTIONS(3340), + [aux_sym_log_level_token1] = ACTIONS(3340), + [aux_sym_log_verbose_token1] = ACTIONS(3340), + [aux_sym_macs_token1] = ACTIONS(3340), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3340), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3340), + [aux_sym_password_authentication_token1] = ACTIONS(3340), + [aux_sym_permit_local_command_token1] = ACTIONS(3340), + [aux_sym_permit_remote_open_token1] = ACTIONS(3340), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3340), + [aux_sym_port_token1] = ACTIONS(3340), + [aux_sym_preferred_authentications_token1] = ACTIONS(3340), + [aux_sym_protocol_token1] = ACTIONS(3340), + [aux_sym_proxy_command_token1] = ACTIONS(3340), + [aux_sym_proxy_jump_token1] = ACTIONS(3340), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3340), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3340), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3340), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3340), + [aux_sym_rekey_limit_token1] = ACTIONS(3340), + [aux_sym_remote_command_token1] = ACTIONS(3340), + [aux_sym_remote_forward_token1] = ACTIONS(3340), + [aux_sym_request_tty_token1] = ACTIONS(3340), + [aux_sym_required_rsa_size_token1] = ACTIONS(3340), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3340), + [aux_sym_security_key_provider_token1] = ACTIONS(3340), + [aux_sym_send_env_token1] = ACTIONS(3340), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3340), + [aux_sym_server_alive_interval_token1] = ACTIONS(3340), + [aux_sym_session_type_token1] = ACTIONS(3340), + [aux_sym_set_env_token1] = ACTIONS(3340), + [aux_sym_stdin_null_token1] = ACTIONS(3340), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3340), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3340), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3340), + [aux_sym_syslog_facility_token1] = ACTIONS(3340), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3340), + [aux_sym_keep_alive_token1] = ACTIONS(3340), + [aux_sym_tunnel_token1] = ACTIONS(3342), + [aux_sym_tunnel_device_token1] = ACTIONS(3340), + [aux_sym_update_host_keys_token1] = ACTIONS(3340), + [aux_sym_use_keychain_token1] = ACTIONS(3340), + [aux_sym_use_roaming_token1] = ACTIONS(3340), + [aux_sym_user_token1] = ACTIONS(3342), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3340), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3340), + [aux_sym_visual_host_key_token1] = ACTIONS(3340), + [aux_sym_xauth_location_token1] = ACTIONS(3340), }, [589] = { - [ts_builtin_sym_end] = ACTIONS(723), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(725), - [aux_sym_match_token1] = ACTIONS(723), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(723), - [aux_sym_address_family_token1] = ACTIONS(723), - [aux_sym_batch_mode_token1] = ACTIONS(723), - [aux_sym_bind_address_token1] = ACTIONS(723), - [aux_sym_bind_interface_token1] = ACTIONS(723), - [aux_sym_canonical_domains_token1] = ACTIONS(723), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(723), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(723), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(723), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(723), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(723), - [aux_sym_certificate_file_token1] = ACTIONS(723), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(723), - [aux_sym_check_host_ip_token1] = ACTIONS(723), - [aux_sym_ciphers_token1] = ACTIONS(723), - [aux_sym_cipher_token1] = ACTIONS(725), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(723), - [aux_sym_compression_token1] = ACTIONS(723), - [aux_sym_connection_attempts_token1] = ACTIONS(723), - [aux_sym_connect_timeout_token1] = ACTIONS(723), - [aux_sym_control_master_token1] = ACTIONS(723), - [aux_sym_control_path_token1] = ACTIONS(723), - [aux_sym_control_persist_token1] = ACTIONS(723), - [aux_sym_dynamic_forward_token1] = ACTIONS(723), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(723), - [aux_sym_escape_char_token1] = ACTIONS(723), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(723), - [aux_sym_fingerprint_hash_token1] = ACTIONS(723), - [aux_sym_fork_after_authentication_token1] = ACTIONS(723), - [aux_sym_forward_agent_token1] = ACTIONS(723), - [aux_sym_forward_x11_token1] = ACTIONS(725), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(723), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(723), - [aux_sym_gateway_ports_token1] = ACTIONS(723), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(723), - [aux_sym_gssapi_authentication_token1] = ACTIONS(723), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(723), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(723), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(723), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(723), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(723), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(723), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(723), - [aux_sym_hash_known_hosts_token1] = ACTIONS(723), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(723), - [aux_sym_hostbased_authentication_token1] = ACTIONS(723), - [aux_sym_host_key_algorithms_token1] = ACTIONS(723), - [aux_sym_host_key_alias_token1] = ACTIONS(723), - [aux_sym_hostname_token1] = ACTIONS(723), - [aux_sym_identities_only_token1] = ACTIONS(723), - [aux_sym_identity_agent_token1] = ACTIONS(723), - [aux_sym_identity_file_token1] = ACTIONS(723), - [aux_sym_ignore_unknown_token1] = ACTIONS(723), - [aux_sym_include_token1] = ACTIONS(723), - [aux_sym_ip_qos_token1] = ACTIONS(723), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(723), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(723), - [aux_sym_kex_algorithms_token1] = ACTIONS(723), - [aux_sym_known_hosts_command_token1] = ACTIONS(723), - [aux_sym_local_command_token1] = ACTIONS(723), - [aux_sym_local_forward_token1] = ACTIONS(723), - [aux_sym_log_level_token1] = ACTIONS(723), - [aux_sym_log_verbose_token1] = ACTIONS(723), - [aux_sym_macs_token1] = ACTIONS(723), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(723), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(723), - [aux_sym_password_authentication_token1] = ACTIONS(723), - [aux_sym_permit_local_command_token1] = ACTIONS(723), - [aux_sym_permit_remote_open_token1] = ACTIONS(723), - [aux_sym_pkcs11_provider_token1] = ACTIONS(723), - [aux_sym_port_token1] = ACTIONS(723), - [aux_sym_preferred_authentications_token1] = ACTIONS(723), - [aux_sym_protocol_token1] = ACTIONS(723), - [aux_sym_proxy_command_token1] = ACTIONS(723), - [aux_sym_proxy_jump_token1] = ACTIONS(723), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(723), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(723), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(723), - [aux_sym_pubkey_authentication_token1] = ACTIONS(723), - [aux_sym_rekey_limit_token1] = ACTIONS(723), - [aux_sym_remote_command_token1] = ACTIONS(723), - [aux_sym_remote_forward_token1] = ACTIONS(723), - [aux_sym_request_tty_token1] = ACTIONS(723), - [aux_sym_required_rsa_size_token1] = ACTIONS(723), - [aux_sym_revoked_host_keys_token1] = ACTIONS(723), - [aux_sym_security_key_provider_token1] = ACTIONS(723), - [aux_sym_send_env_token1] = ACTIONS(723), - [aux_sym_server_alive_count_max_token1] = ACTIONS(723), - [aux_sym_server_alive_interval_token1] = ACTIONS(723), - [aux_sym_session_type_token1] = ACTIONS(723), - [aux_sym_set_env_token1] = ACTIONS(723), - [aux_sym_stdin_null_token1] = ACTIONS(723), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(723), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(723), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(723), - [aux_sym_syslog_facility_token1] = ACTIONS(723), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(723), - [aux_sym_keep_alive_token1] = ACTIONS(723), - [aux_sym_tunnel_token1] = ACTIONS(725), - [aux_sym_tunnel_device_token1] = ACTIONS(723), - [aux_sym_update_host_keys_token1] = ACTIONS(723), - [aux_sym_use_keychain_token1] = ACTIONS(723), - [aux_sym_use_roaming_token1] = ACTIONS(723), - [aux_sym_user_token1] = ACTIONS(725), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(723), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(723), - [aux_sym_visual_host_key_token1] = ACTIONS(723), - [aux_sym_xauth_location_token1] = ACTIONS(723), + [ts_builtin_sym_end] = ACTIONS(3344), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3346), + [aux_sym_match_token1] = ACTIONS(3344), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3344), + [aux_sym_address_family_token1] = ACTIONS(3344), + [aux_sym_batch_mode_token1] = ACTIONS(3344), + [aux_sym_bind_address_token1] = ACTIONS(3344), + [aux_sym_bind_interface_token1] = ACTIONS(3344), + [aux_sym_canonical_domains_token1] = ACTIONS(3344), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3344), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3344), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3344), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3344), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3344), + [aux_sym_certificate_file_token1] = ACTIONS(3344), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3344), + [aux_sym_check_host_ip_token1] = ACTIONS(3344), + [aux_sym_ciphers_token1] = ACTIONS(3344), + [aux_sym_cipher_token1] = ACTIONS(3346), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3344), + [aux_sym_compression_token1] = ACTIONS(3344), + [aux_sym_connection_attempts_token1] = ACTIONS(3344), + [aux_sym_connect_timeout_token1] = ACTIONS(3344), + [aux_sym_control_master_token1] = ACTIONS(3344), + [aux_sym_control_path_token1] = ACTIONS(3344), + [aux_sym_control_persist_token1] = ACTIONS(3344), + [aux_sym_dynamic_forward_token1] = ACTIONS(3344), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3344), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3344), + [aux_sym_escape_char_token1] = ACTIONS(3344), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3344), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3344), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3344), + [aux_sym_forward_agent_token1] = ACTIONS(3344), + [aux_sym_forward_x11_token1] = ACTIONS(3346), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3344), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3344), + [aux_sym_gateway_ports_token1] = ACTIONS(3344), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3344), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3344), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3344), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3344), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3344), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3344), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3344), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3344), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3344), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3344), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3344), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3344), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3344), + [aux_sym_host_key_alias_token1] = ACTIONS(3344), + [aux_sym_hostname_token1] = ACTIONS(3344), + [aux_sym_identities_only_token1] = ACTIONS(3344), + [aux_sym_identity_agent_token1] = ACTIONS(3344), + [aux_sym_identity_file_token1] = ACTIONS(3344), + [aux_sym_ignore_unknown_token1] = ACTIONS(3344), + [aux_sym_include_token1] = ACTIONS(3344), + [aux_sym_ip_qos_token1] = ACTIONS(3344), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3344), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3344), + [aux_sym_kex_algorithms_token1] = ACTIONS(3344), + [aux_sym_known_hosts_command_token1] = ACTIONS(3344), + [aux_sym_local_command_token1] = ACTIONS(3344), + [aux_sym_local_forward_token1] = ACTIONS(3344), + [aux_sym_log_level_token1] = ACTIONS(3344), + [aux_sym_log_verbose_token1] = ACTIONS(3344), + [aux_sym_macs_token1] = ACTIONS(3344), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3344), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3344), + [aux_sym_password_authentication_token1] = ACTIONS(3344), + [aux_sym_permit_local_command_token1] = ACTIONS(3344), + [aux_sym_permit_remote_open_token1] = ACTIONS(3344), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3344), + [aux_sym_port_token1] = ACTIONS(3344), + [aux_sym_preferred_authentications_token1] = ACTIONS(3344), + [aux_sym_protocol_token1] = ACTIONS(3344), + [aux_sym_proxy_command_token1] = ACTIONS(3344), + [aux_sym_proxy_jump_token1] = ACTIONS(3344), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3344), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3344), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3344), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3344), + [aux_sym_rekey_limit_token1] = ACTIONS(3344), + [aux_sym_remote_command_token1] = ACTIONS(3344), + [aux_sym_remote_forward_token1] = ACTIONS(3344), + [aux_sym_request_tty_token1] = ACTIONS(3344), + [aux_sym_required_rsa_size_token1] = ACTIONS(3344), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3344), + [aux_sym_security_key_provider_token1] = ACTIONS(3344), + [aux_sym_send_env_token1] = ACTIONS(3344), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3344), + [aux_sym_server_alive_interval_token1] = ACTIONS(3344), + [aux_sym_session_type_token1] = ACTIONS(3344), + [aux_sym_set_env_token1] = ACTIONS(3344), + [aux_sym_stdin_null_token1] = ACTIONS(3344), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3344), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3344), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3344), + [aux_sym_syslog_facility_token1] = ACTIONS(3344), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3344), + [aux_sym_keep_alive_token1] = ACTIONS(3344), + [aux_sym_tunnel_token1] = ACTIONS(3346), + [aux_sym_tunnel_device_token1] = ACTIONS(3344), + [aux_sym_update_host_keys_token1] = ACTIONS(3344), + [aux_sym_use_keychain_token1] = ACTIONS(3344), + [aux_sym_use_roaming_token1] = ACTIONS(3344), + [aux_sym_user_token1] = ACTIONS(3346), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3344), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3344), + [aux_sym_visual_host_key_token1] = ACTIONS(3344), + [aux_sym_xauth_location_token1] = ACTIONS(3344), }, [590] = { - [ts_builtin_sym_end] = ACTIONS(729), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(731), - [aux_sym_match_token1] = ACTIONS(729), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(729), - [aux_sym_address_family_token1] = ACTIONS(729), - [aux_sym_batch_mode_token1] = ACTIONS(729), - [aux_sym_bind_address_token1] = ACTIONS(729), - [aux_sym_bind_interface_token1] = ACTIONS(729), - [aux_sym_canonical_domains_token1] = ACTIONS(729), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(729), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(729), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(729), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(729), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(729), - [aux_sym_certificate_file_token1] = ACTIONS(729), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(729), - [aux_sym_check_host_ip_token1] = ACTIONS(729), - [aux_sym_ciphers_token1] = ACTIONS(729), - [aux_sym_cipher_token1] = ACTIONS(731), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(729), - [aux_sym_compression_token1] = ACTIONS(729), - [aux_sym_connection_attempts_token1] = ACTIONS(729), - [aux_sym_connect_timeout_token1] = ACTIONS(729), - [aux_sym_control_master_token1] = ACTIONS(729), - [aux_sym_control_path_token1] = ACTIONS(729), - [aux_sym_control_persist_token1] = ACTIONS(729), - [aux_sym_dynamic_forward_token1] = ACTIONS(729), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(729), - [aux_sym_escape_char_token1] = ACTIONS(729), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(729), - [aux_sym_fingerprint_hash_token1] = ACTIONS(729), - [aux_sym_fork_after_authentication_token1] = ACTIONS(729), - [aux_sym_forward_agent_token1] = ACTIONS(729), - [aux_sym_forward_x11_token1] = ACTIONS(731), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(729), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(729), - [aux_sym_gateway_ports_token1] = ACTIONS(729), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(729), - [aux_sym_gssapi_authentication_token1] = ACTIONS(729), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(729), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(729), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(729), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(729), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(729), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(729), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(729), - [aux_sym_hash_known_hosts_token1] = ACTIONS(729), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(729), - [aux_sym_hostbased_authentication_token1] = ACTIONS(729), - [aux_sym_host_key_algorithms_token1] = ACTIONS(729), - [aux_sym_host_key_alias_token1] = ACTIONS(729), - [aux_sym_hostname_token1] = ACTIONS(729), - [aux_sym_identities_only_token1] = ACTIONS(729), - [aux_sym_identity_agent_token1] = ACTIONS(729), - [aux_sym_identity_file_token1] = ACTIONS(729), - [aux_sym_ignore_unknown_token1] = ACTIONS(729), - [aux_sym_include_token1] = ACTIONS(729), - [aux_sym_ip_qos_token1] = ACTIONS(729), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(729), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(729), - [aux_sym_kex_algorithms_token1] = ACTIONS(729), - [aux_sym_known_hosts_command_token1] = ACTIONS(729), - [aux_sym_local_command_token1] = ACTIONS(729), - [aux_sym_local_forward_token1] = ACTIONS(729), - [aux_sym_log_level_token1] = ACTIONS(729), - [aux_sym_log_verbose_token1] = ACTIONS(729), - [aux_sym_macs_token1] = ACTIONS(729), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(729), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(729), - [aux_sym_password_authentication_token1] = ACTIONS(729), - [aux_sym_permit_local_command_token1] = ACTIONS(729), - [aux_sym_permit_remote_open_token1] = ACTIONS(729), - [aux_sym_pkcs11_provider_token1] = ACTIONS(729), - [aux_sym_port_token1] = ACTIONS(729), - [aux_sym_preferred_authentications_token1] = ACTIONS(729), - [aux_sym_protocol_token1] = ACTIONS(729), - [aux_sym_proxy_command_token1] = ACTIONS(729), - [aux_sym_proxy_jump_token1] = ACTIONS(729), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(729), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(729), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(729), - [aux_sym_pubkey_authentication_token1] = ACTIONS(729), - [aux_sym_rekey_limit_token1] = ACTIONS(729), - [aux_sym_remote_command_token1] = ACTIONS(729), - [aux_sym_remote_forward_token1] = ACTIONS(729), - [aux_sym_request_tty_token1] = ACTIONS(729), - [aux_sym_required_rsa_size_token1] = ACTIONS(729), - [aux_sym_revoked_host_keys_token1] = ACTIONS(729), - [aux_sym_security_key_provider_token1] = ACTIONS(729), - [aux_sym_send_env_token1] = ACTIONS(729), - [aux_sym_server_alive_count_max_token1] = ACTIONS(729), - [aux_sym_server_alive_interval_token1] = ACTIONS(729), - [aux_sym_session_type_token1] = ACTIONS(729), - [aux_sym_set_env_token1] = ACTIONS(729), - [aux_sym_stdin_null_token1] = ACTIONS(729), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(729), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(729), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(729), - [aux_sym_syslog_facility_token1] = ACTIONS(729), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(729), - [aux_sym_keep_alive_token1] = ACTIONS(729), - [aux_sym_tunnel_token1] = ACTIONS(731), - [aux_sym_tunnel_device_token1] = ACTIONS(729), - [aux_sym_update_host_keys_token1] = ACTIONS(729), - [aux_sym_use_keychain_token1] = ACTIONS(729), - [aux_sym_use_roaming_token1] = ACTIONS(729), - [aux_sym_user_token1] = ACTIONS(731), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(729), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(729), - [aux_sym_visual_host_key_token1] = ACTIONS(729), - [aux_sym_xauth_location_token1] = ACTIONS(729), + [ts_builtin_sym_end] = ACTIONS(3348), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3350), + [aux_sym_match_token1] = ACTIONS(3348), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3348), + [aux_sym_address_family_token1] = ACTIONS(3348), + [aux_sym_batch_mode_token1] = ACTIONS(3348), + [aux_sym_bind_address_token1] = ACTIONS(3348), + [aux_sym_bind_interface_token1] = ACTIONS(3348), + [aux_sym_canonical_domains_token1] = ACTIONS(3348), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3348), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3348), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3348), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3348), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3348), + [aux_sym_certificate_file_token1] = ACTIONS(3348), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3348), + [aux_sym_check_host_ip_token1] = ACTIONS(3348), + [aux_sym_ciphers_token1] = ACTIONS(3348), + [aux_sym_cipher_token1] = ACTIONS(3350), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3348), + [aux_sym_compression_token1] = ACTIONS(3348), + [aux_sym_connection_attempts_token1] = ACTIONS(3348), + [aux_sym_connect_timeout_token1] = ACTIONS(3348), + [aux_sym_control_master_token1] = ACTIONS(3348), + [aux_sym_control_path_token1] = ACTIONS(3348), + [aux_sym_control_persist_token1] = ACTIONS(3348), + [aux_sym_dynamic_forward_token1] = ACTIONS(3348), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3348), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3348), + [aux_sym_escape_char_token1] = ACTIONS(3348), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3348), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3348), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3348), + [aux_sym_forward_agent_token1] = ACTIONS(3348), + [aux_sym_forward_x11_token1] = ACTIONS(3350), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3348), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3348), + [aux_sym_gateway_ports_token1] = ACTIONS(3348), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3348), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3348), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3348), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3348), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3348), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3348), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3348), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3348), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3348), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3348), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3348), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3348), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3348), + [aux_sym_host_key_alias_token1] = ACTIONS(3348), + [aux_sym_hostname_token1] = ACTIONS(3348), + [aux_sym_identities_only_token1] = ACTIONS(3348), + [aux_sym_identity_agent_token1] = ACTIONS(3348), + [aux_sym_identity_file_token1] = ACTIONS(3348), + [aux_sym_ignore_unknown_token1] = ACTIONS(3348), + [aux_sym_include_token1] = ACTIONS(3348), + [aux_sym_ip_qos_token1] = ACTIONS(3348), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3348), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3348), + [aux_sym_kex_algorithms_token1] = ACTIONS(3348), + [aux_sym_known_hosts_command_token1] = ACTIONS(3348), + [aux_sym_local_command_token1] = ACTIONS(3348), + [aux_sym_local_forward_token1] = ACTIONS(3348), + [aux_sym_log_level_token1] = ACTIONS(3348), + [aux_sym_log_verbose_token1] = ACTIONS(3348), + [aux_sym_macs_token1] = ACTIONS(3348), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3348), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3348), + [aux_sym_password_authentication_token1] = ACTIONS(3348), + [aux_sym_permit_local_command_token1] = ACTIONS(3348), + [aux_sym_permit_remote_open_token1] = ACTIONS(3348), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3348), + [aux_sym_port_token1] = ACTIONS(3348), + [aux_sym_preferred_authentications_token1] = ACTIONS(3348), + [aux_sym_protocol_token1] = ACTIONS(3348), + [aux_sym_proxy_command_token1] = ACTIONS(3348), + [aux_sym_proxy_jump_token1] = ACTIONS(3348), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3348), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3348), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3348), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3348), + [aux_sym_rekey_limit_token1] = ACTIONS(3348), + [aux_sym_remote_command_token1] = ACTIONS(3348), + [aux_sym_remote_forward_token1] = ACTIONS(3348), + [aux_sym_request_tty_token1] = ACTIONS(3348), + [aux_sym_required_rsa_size_token1] = ACTIONS(3348), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3348), + [aux_sym_security_key_provider_token1] = ACTIONS(3348), + [aux_sym_send_env_token1] = ACTIONS(3348), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3348), + [aux_sym_server_alive_interval_token1] = ACTIONS(3348), + [aux_sym_session_type_token1] = ACTIONS(3348), + [aux_sym_set_env_token1] = ACTIONS(3348), + [aux_sym_stdin_null_token1] = ACTIONS(3348), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3348), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3348), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3348), + [aux_sym_syslog_facility_token1] = ACTIONS(3348), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3348), + [aux_sym_keep_alive_token1] = ACTIONS(3348), + [aux_sym_tunnel_token1] = ACTIONS(3350), + [aux_sym_tunnel_device_token1] = ACTIONS(3348), + [aux_sym_update_host_keys_token1] = ACTIONS(3348), + [aux_sym_use_keychain_token1] = ACTIONS(3348), + [aux_sym_use_roaming_token1] = ACTIONS(3348), + [aux_sym_user_token1] = ACTIONS(3350), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3348), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3348), + [aux_sym_visual_host_key_token1] = ACTIONS(3348), + [aux_sym_xauth_location_token1] = ACTIONS(3348), }, [591] = { - [ts_builtin_sym_end] = ACTIONS(735), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(737), - [aux_sym_match_token1] = ACTIONS(735), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(735), - [aux_sym_address_family_token1] = ACTIONS(735), - [aux_sym_batch_mode_token1] = ACTIONS(735), - [aux_sym_bind_address_token1] = ACTIONS(735), - [aux_sym_bind_interface_token1] = ACTIONS(735), - [aux_sym_canonical_domains_token1] = ACTIONS(735), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(735), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(735), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(735), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(735), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(735), - [aux_sym_certificate_file_token1] = ACTIONS(735), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(735), - [aux_sym_check_host_ip_token1] = ACTIONS(735), - [aux_sym_ciphers_token1] = ACTIONS(735), - [aux_sym_cipher_token1] = ACTIONS(737), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(735), - [aux_sym_compression_token1] = ACTIONS(735), - [aux_sym_connection_attempts_token1] = ACTIONS(735), - [aux_sym_connect_timeout_token1] = ACTIONS(735), - [aux_sym_control_master_token1] = ACTIONS(735), - [aux_sym_control_path_token1] = ACTIONS(735), - [aux_sym_control_persist_token1] = ACTIONS(735), - [aux_sym_dynamic_forward_token1] = ACTIONS(735), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(735), - [aux_sym_escape_char_token1] = ACTIONS(735), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(735), - [aux_sym_fingerprint_hash_token1] = ACTIONS(735), - [aux_sym_fork_after_authentication_token1] = ACTIONS(735), - [aux_sym_forward_agent_token1] = ACTIONS(735), - [aux_sym_forward_x11_token1] = ACTIONS(737), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(735), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(735), - [aux_sym_gateway_ports_token1] = ACTIONS(735), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(735), - [aux_sym_gssapi_authentication_token1] = ACTIONS(735), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(735), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(735), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(735), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(735), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(735), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(735), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(735), - [aux_sym_hash_known_hosts_token1] = ACTIONS(735), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(735), - [aux_sym_hostbased_authentication_token1] = ACTIONS(735), - [aux_sym_host_key_algorithms_token1] = ACTIONS(735), - [aux_sym_host_key_alias_token1] = ACTIONS(735), - [aux_sym_hostname_token1] = ACTIONS(735), - [aux_sym_identities_only_token1] = ACTIONS(735), - [aux_sym_identity_agent_token1] = ACTIONS(735), - [aux_sym_identity_file_token1] = ACTIONS(735), - [aux_sym_ignore_unknown_token1] = ACTIONS(735), - [aux_sym_include_token1] = ACTIONS(735), - [aux_sym_ip_qos_token1] = ACTIONS(735), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(735), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(735), - [aux_sym_kex_algorithms_token1] = ACTIONS(735), - [aux_sym_known_hosts_command_token1] = ACTIONS(735), - [aux_sym_local_command_token1] = ACTIONS(735), - [aux_sym_local_forward_token1] = ACTIONS(735), - [aux_sym_log_level_token1] = ACTIONS(735), - [aux_sym_log_verbose_token1] = ACTIONS(735), - [aux_sym_macs_token1] = ACTIONS(735), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(735), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(735), - [aux_sym_password_authentication_token1] = ACTIONS(735), - [aux_sym_permit_local_command_token1] = ACTIONS(735), - [aux_sym_permit_remote_open_token1] = ACTIONS(735), - [aux_sym_pkcs11_provider_token1] = ACTIONS(735), - [aux_sym_port_token1] = ACTIONS(735), - [aux_sym_preferred_authentications_token1] = ACTIONS(735), - [aux_sym_protocol_token1] = ACTIONS(735), - [aux_sym_proxy_command_token1] = ACTIONS(735), - [aux_sym_proxy_jump_token1] = ACTIONS(735), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(735), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(735), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(735), - [aux_sym_pubkey_authentication_token1] = ACTIONS(735), - [aux_sym_rekey_limit_token1] = ACTIONS(735), - [aux_sym_remote_command_token1] = ACTIONS(735), - [aux_sym_remote_forward_token1] = ACTIONS(735), - [aux_sym_request_tty_token1] = ACTIONS(735), - [aux_sym_required_rsa_size_token1] = ACTIONS(735), - [aux_sym_revoked_host_keys_token1] = ACTIONS(735), - [aux_sym_security_key_provider_token1] = ACTIONS(735), - [aux_sym_send_env_token1] = ACTIONS(735), - [aux_sym_server_alive_count_max_token1] = ACTIONS(735), - [aux_sym_server_alive_interval_token1] = ACTIONS(735), - [aux_sym_session_type_token1] = ACTIONS(735), - [aux_sym_set_env_token1] = ACTIONS(735), - [aux_sym_stdin_null_token1] = ACTIONS(735), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(735), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(735), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(735), - [aux_sym_syslog_facility_token1] = ACTIONS(735), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(735), - [aux_sym_keep_alive_token1] = ACTIONS(735), - [aux_sym_tunnel_token1] = ACTIONS(737), - [aux_sym_tunnel_device_token1] = ACTIONS(735), - [aux_sym_update_host_keys_token1] = ACTIONS(735), - [aux_sym_use_keychain_token1] = ACTIONS(735), - [aux_sym_use_roaming_token1] = ACTIONS(735), - [aux_sym_user_token1] = ACTIONS(737), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(735), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(735), - [aux_sym_visual_host_key_token1] = ACTIONS(735), - [aux_sym_xauth_location_token1] = ACTIONS(735), + [ts_builtin_sym_end] = ACTIONS(3352), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3354), + [aux_sym_match_token1] = ACTIONS(3352), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3352), + [aux_sym_address_family_token1] = ACTIONS(3352), + [aux_sym_batch_mode_token1] = ACTIONS(3352), + [aux_sym_bind_address_token1] = ACTIONS(3352), + [aux_sym_bind_interface_token1] = ACTIONS(3352), + [aux_sym_canonical_domains_token1] = ACTIONS(3352), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3352), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3352), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3352), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3352), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3352), + [aux_sym_certificate_file_token1] = ACTIONS(3352), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3352), + [aux_sym_check_host_ip_token1] = ACTIONS(3352), + [aux_sym_ciphers_token1] = ACTIONS(3352), + [aux_sym_cipher_token1] = ACTIONS(3354), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3352), + [aux_sym_compression_token1] = ACTIONS(3352), + [aux_sym_connection_attempts_token1] = ACTIONS(3352), + [aux_sym_connect_timeout_token1] = ACTIONS(3352), + [aux_sym_control_master_token1] = ACTIONS(3352), + [aux_sym_control_path_token1] = ACTIONS(3352), + [aux_sym_control_persist_token1] = ACTIONS(3352), + [aux_sym_dynamic_forward_token1] = ACTIONS(3352), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3352), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3352), + [aux_sym_escape_char_token1] = ACTIONS(3352), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3352), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3352), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3352), + [aux_sym_forward_agent_token1] = ACTIONS(3352), + [aux_sym_forward_x11_token1] = ACTIONS(3354), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3352), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3352), + [aux_sym_gateway_ports_token1] = ACTIONS(3352), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3352), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3352), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3352), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3352), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3352), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3352), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3352), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3352), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3352), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3352), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3352), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3352), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3352), + [aux_sym_host_key_alias_token1] = ACTIONS(3352), + [aux_sym_hostname_token1] = ACTIONS(3352), + [aux_sym_identities_only_token1] = ACTIONS(3352), + [aux_sym_identity_agent_token1] = ACTIONS(3352), + [aux_sym_identity_file_token1] = ACTIONS(3352), + [aux_sym_ignore_unknown_token1] = ACTIONS(3352), + [aux_sym_include_token1] = ACTIONS(3352), + [aux_sym_ip_qos_token1] = ACTIONS(3352), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3352), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3352), + [aux_sym_kex_algorithms_token1] = ACTIONS(3352), + [aux_sym_known_hosts_command_token1] = ACTIONS(3352), + [aux_sym_local_command_token1] = ACTIONS(3352), + [aux_sym_local_forward_token1] = ACTIONS(3352), + [aux_sym_log_level_token1] = ACTIONS(3352), + [aux_sym_log_verbose_token1] = ACTIONS(3352), + [aux_sym_macs_token1] = ACTIONS(3352), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3352), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3352), + [aux_sym_password_authentication_token1] = ACTIONS(3352), + [aux_sym_permit_local_command_token1] = ACTIONS(3352), + [aux_sym_permit_remote_open_token1] = ACTIONS(3352), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3352), + [aux_sym_port_token1] = ACTIONS(3352), + [aux_sym_preferred_authentications_token1] = ACTIONS(3352), + [aux_sym_protocol_token1] = ACTIONS(3352), + [aux_sym_proxy_command_token1] = ACTIONS(3352), + [aux_sym_proxy_jump_token1] = ACTIONS(3352), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3352), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3352), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3352), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3352), + [aux_sym_rekey_limit_token1] = ACTIONS(3352), + [aux_sym_remote_command_token1] = ACTIONS(3352), + [aux_sym_remote_forward_token1] = ACTIONS(3352), + [aux_sym_request_tty_token1] = ACTIONS(3352), + [aux_sym_required_rsa_size_token1] = ACTIONS(3352), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3352), + [aux_sym_security_key_provider_token1] = ACTIONS(3352), + [aux_sym_send_env_token1] = ACTIONS(3352), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3352), + [aux_sym_server_alive_interval_token1] = ACTIONS(3352), + [aux_sym_session_type_token1] = ACTIONS(3352), + [aux_sym_set_env_token1] = ACTIONS(3352), + [aux_sym_stdin_null_token1] = ACTIONS(3352), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3352), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3352), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3352), + [aux_sym_syslog_facility_token1] = ACTIONS(3352), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3352), + [aux_sym_keep_alive_token1] = ACTIONS(3352), + [aux_sym_tunnel_token1] = ACTIONS(3354), + [aux_sym_tunnel_device_token1] = ACTIONS(3352), + [aux_sym_update_host_keys_token1] = ACTIONS(3352), + [aux_sym_use_keychain_token1] = ACTIONS(3352), + [aux_sym_use_roaming_token1] = ACTIONS(3352), + [aux_sym_user_token1] = ACTIONS(3354), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3352), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3352), + [aux_sym_visual_host_key_token1] = ACTIONS(3352), + [aux_sym_xauth_location_token1] = ACTIONS(3352), }, [592] = { - [ts_builtin_sym_end] = ACTIONS(741), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(743), - [aux_sym_match_token1] = ACTIONS(741), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(741), - [aux_sym_address_family_token1] = ACTIONS(741), - [aux_sym_batch_mode_token1] = ACTIONS(741), - [aux_sym_bind_address_token1] = ACTIONS(741), - [aux_sym_bind_interface_token1] = ACTIONS(741), - [aux_sym_canonical_domains_token1] = ACTIONS(741), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(741), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(741), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(741), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(741), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(741), - [aux_sym_certificate_file_token1] = ACTIONS(741), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(741), - [aux_sym_check_host_ip_token1] = ACTIONS(741), - [aux_sym_ciphers_token1] = ACTIONS(741), - [aux_sym_cipher_token1] = ACTIONS(743), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(741), - [aux_sym_compression_token1] = ACTIONS(741), - [aux_sym_connection_attempts_token1] = ACTIONS(741), - [aux_sym_connect_timeout_token1] = ACTIONS(741), - [aux_sym_control_master_token1] = ACTIONS(741), - [aux_sym_control_path_token1] = ACTIONS(741), - [aux_sym_control_persist_token1] = ACTIONS(741), - [aux_sym_dynamic_forward_token1] = ACTIONS(741), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(741), - [aux_sym_escape_char_token1] = ACTIONS(741), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(741), - [aux_sym_fingerprint_hash_token1] = ACTIONS(741), - [aux_sym_fork_after_authentication_token1] = ACTIONS(741), - [aux_sym_forward_agent_token1] = ACTIONS(741), - [aux_sym_forward_x11_token1] = ACTIONS(743), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(741), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(741), - [aux_sym_gateway_ports_token1] = ACTIONS(741), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(741), - [aux_sym_gssapi_authentication_token1] = ACTIONS(741), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(741), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(741), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(741), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(741), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(741), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(741), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(741), - [aux_sym_hash_known_hosts_token1] = ACTIONS(741), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(741), - [aux_sym_hostbased_authentication_token1] = ACTIONS(741), - [aux_sym_host_key_algorithms_token1] = ACTIONS(741), - [aux_sym_host_key_alias_token1] = ACTIONS(741), - [aux_sym_hostname_token1] = ACTIONS(741), - [aux_sym_identities_only_token1] = ACTIONS(741), - [aux_sym_identity_agent_token1] = ACTIONS(741), - [aux_sym_identity_file_token1] = ACTIONS(741), - [aux_sym_ignore_unknown_token1] = ACTIONS(741), - [aux_sym_include_token1] = ACTIONS(741), - [aux_sym_ip_qos_token1] = ACTIONS(741), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(741), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(741), - [aux_sym_kex_algorithms_token1] = ACTIONS(741), - [aux_sym_known_hosts_command_token1] = ACTIONS(741), - [aux_sym_local_command_token1] = ACTIONS(741), - [aux_sym_local_forward_token1] = ACTIONS(741), - [aux_sym_log_level_token1] = ACTIONS(741), - [aux_sym_log_verbose_token1] = ACTIONS(741), - [aux_sym_macs_token1] = ACTIONS(741), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(741), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(741), - [aux_sym_password_authentication_token1] = ACTIONS(741), - [aux_sym_permit_local_command_token1] = ACTIONS(741), - [aux_sym_permit_remote_open_token1] = ACTIONS(741), - [aux_sym_pkcs11_provider_token1] = ACTIONS(741), - [aux_sym_port_token1] = ACTIONS(741), - [aux_sym_preferred_authentications_token1] = ACTIONS(741), - [aux_sym_protocol_token1] = ACTIONS(741), - [aux_sym_proxy_command_token1] = ACTIONS(741), - [aux_sym_proxy_jump_token1] = ACTIONS(741), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(741), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(741), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(741), - [aux_sym_pubkey_authentication_token1] = ACTIONS(741), - [aux_sym_rekey_limit_token1] = ACTIONS(741), - [aux_sym_remote_command_token1] = ACTIONS(741), - [aux_sym_remote_forward_token1] = ACTIONS(741), - [aux_sym_request_tty_token1] = ACTIONS(741), - [aux_sym_required_rsa_size_token1] = ACTIONS(741), - [aux_sym_revoked_host_keys_token1] = ACTIONS(741), - [aux_sym_security_key_provider_token1] = ACTIONS(741), - [aux_sym_send_env_token1] = ACTIONS(741), - [aux_sym_server_alive_count_max_token1] = ACTIONS(741), - [aux_sym_server_alive_interval_token1] = ACTIONS(741), - [aux_sym_session_type_token1] = ACTIONS(741), - [aux_sym_set_env_token1] = ACTIONS(741), - [aux_sym_stdin_null_token1] = ACTIONS(741), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(741), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(741), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(741), - [aux_sym_syslog_facility_token1] = ACTIONS(741), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(741), - [aux_sym_keep_alive_token1] = ACTIONS(741), - [aux_sym_tunnel_token1] = ACTIONS(743), - [aux_sym_tunnel_device_token1] = ACTIONS(741), - [aux_sym_update_host_keys_token1] = ACTIONS(741), - [aux_sym_use_keychain_token1] = ACTIONS(741), - [aux_sym_use_roaming_token1] = ACTIONS(741), - [aux_sym_user_token1] = ACTIONS(743), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(741), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(741), - [aux_sym_visual_host_key_token1] = ACTIONS(741), - [aux_sym_xauth_location_token1] = ACTIONS(741), + [ts_builtin_sym_end] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3358), + [aux_sym_match_token1] = ACTIONS(3356), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3356), + [aux_sym_address_family_token1] = ACTIONS(3356), + [aux_sym_batch_mode_token1] = ACTIONS(3356), + [aux_sym_bind_address_token1] = ACTIONS(3356), + [aux_sym_bind_interface_token1] = ACTIONS(3356), + [aux_sym_canonical_domains_token1] = ACTIONS(3356), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3356), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3356), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3356), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3356), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3356), + [aux_sym_certificate_file_token1] = ACTIONS(3356), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3356), + [aux_sym_check_host_ip_token1] = ACTIONS(3356), + [aux_sym_ciphers_token1] = ACTIONS(3356), + [aux_sym_cipher_token1] = ACTIONS(3358), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3356), + [aux_sym_compression_token1] = ACTIONS(3356), + [aux_sym_connection_attempts_token1] = ACTIONS(3356), + [aux_sym_connect_timeout_token1] = ACTIONS(3356), + [aux_sym_control_master_token1] = ACTIONS(3356), + [aux_sym_control_path_token1] = ACTIONS(3356), + [aux_sym_control_persist_token1] = ACTIONS(3356), + [aux_sym_dynamic_forward_token1] = ACTIONS(3356), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3356), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3356), + [aux_sym_escape_char_token1] = ACTIONS(3356), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3356), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3356), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3356), + [aux_sym_forward_agent_token1] = ACTIONS(3356), + [aux_sym_forward_x11_token1] = ACTIONS(3358), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3356), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3356), + [aux_sym_gateway_ports_token1] = ACTIONS(3356), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3356), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3356), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3356), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3356), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3356), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3356), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3356), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3356), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3356), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3356), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3356), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3356), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3356), + [aux_sym_host_key_alias_token1] = ACTIONS(3356), + [aux_sym_hostname_token1] = ACTIONS(3356), + [aux_sym_identities_only_token1] = ACTIONS(3356), + [aux_sym_identity_agent_token1] = ACTIONS(3356), + [aux_sym_identity_file_token1] = ACTIONS(3356), + [aux_sym_ignore_unknown_token1] = ACTIONS(3356), + [aux_sym_include_token1] = ACTIONS(3356), + [aux_sym_ip_qos_token1] = ACTIONS(3356), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3356), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3356), + [aux_sym_kex_algorithms_token1] = ACTIONS(3356), + [aux_sym_known_hosts_command_token1] = ACTIONS(3356), + [aux_sym_local_command_token1] = ACTIONS(3356), + [aux_sym_local_forward_token1] = ACTIONS(3356), + [aux_sym_log_level_token1] = ACTIONS(3356), + [aux_sym_log_verbose_token1] = ACTIONS(3356), + [aux_sym_macs_token1] = ACTIONS(3356), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3356), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3356), + [aux_sym_password_authentication_token1] = ACTIONS(3356), + [aux_sym_permit_local_command_token1] = ACTIONS(3356), + [aux_sym_permit_remote_open_token1] = ACTIONS(3356), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3356), + [aux_sym_port_token1] = ACTIONS(3356), + [aux_sym_preferred_authentications_token1] = ACTIONS(3356), + [aux_sym_protocol_token1] = ACTIONS(3356), + [aux_sym_proxy_command_token1] = ACTIONS(3356), + [aux_sym_proxy_jump_token1] = ACTIONS(3356), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3356), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3356), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3356), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3356), + [aux_sym_rekey_limit_token1] = ACTIONS(3356), + [aux_sym_remote_command_token1] = ACTIONS(3356), + [aux_sym_remote_forward_token1] = ACTIONS(3356), + [aux_sym_request_tty_token1] = ACTIONS(3356), + [aux_sym_required_rsa_size_token1] = ACTIONS(3356), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3356), + [aux_sym_security_key_provider_token1] = ACTIONS(3356), + [aux_sym_send_env_token1] = ACTIONS(3356), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3356), + [aux_sym_server_alive_interval_token1] = ACTIONS(3356), + [aux_sym_session_type_token1] = ACTIONS(3356), + [aux_sym_set_env_token1] = ACTIONS(3356), + [aux_sym_stdin_null_token1] = ACTIONS(3356), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3356), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3356), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3356), + [aux_sym_syslog_facility_token1] = ACTIONS(3356), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3356), + [aux_sym_keep_alive_token1] = ACTIONS(3356), + [aux_sym_tunnel_token1] = ACTIONS(3358), + [aux_sym_tunnel_device_token1] = ACTIONS(3356), + [aux_sym_update_host_keys_token1] = ACTIONS(3356), + [aux_sym_use_keychain_token1] = ACTIONS(3356), + [aux_sym_use_roaming_token1] = ACTIONS(3356), + [aux_sym_user_token1] = ACTIONS(3358), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3356), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3356), + [aux_sym_visual_host_key_token1] = ACTIONS(3356), + [aux_sym_xauth_location_token1] = ACTIONS(3356), }, [593] = { - [ts_builtin_sym_end] = ACTIONS(747), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(749), - [aux_sym_match_token1] = ACTIONS(747), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(747), - [aux_sym_address_family_token1] = ACTIONS(747), - [aux_sym_batch_mode_token1] = ACTIONS(747), - [aux_sym_bind_address_token1] = ACTIONS(747), - [aux_sym_bind_interface_token1] = ACTIONS(747), - [aux_sym_canonical_domains_token1] = ACTIONS(747), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(747), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(747), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(747), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(747), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(747), - [aux_sym_certificate_file_token1] = ACTIONS(747), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(747), - [aux_sym_check_host_ip_token1] = ACTIONS(747), - [aux_sym_ciphers_token1] = ACTIONS(747), - [aux_sym_cipher_token1] = ACTIONS(749), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(747), - [aux_sym_compression_token1] = ACTIONS(747), - [aux_sym_connection_attempts_token1] = ACTIONS(747), - [aux_sym_connect_timeout_token1] = ACTIONS(747), - [aux_sym_control_master_token1] = ACTIONS(747), - [aux_sym_control_path_token1] = ACTIONS(747), - [aux_sym_control_persist_token1] = ACTIONS(747), - [aux_sym_dynamic_forward_token1] = ACTIONS(747), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(747), - [aux_sym_escape_char_token1] = ACTIONS(747), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(747), - [aux_sym_fingerprint_hash_token1] = ACTIONS(747), - [aux_sym_fork_after_authentication_token1] = ACTIONS(747), - [aux_sym_forward_agent_token1] = ACTIONS(747), - [aux_sym_forward_x11_token1] = ACTIONS(749), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(747), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(747), - [aux_sym_gateway_ports_token1] = ACTIONS(747), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(747), - [aux_sym_gssapi_authentication_token1] = ACTIONS(747), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(747), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(747), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(747), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(747), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(747), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(747), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(747), - [aux_sym_hash_known_hosts_token1] = ACTIONS(747), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(747), - [aux_sym_hostbased_authentication_token1] = ACTIONS(747), - [aux_sym_host_key_algorithms_token1] = ACTIONS(747), - [aux_sym_host_key_alias_token1] = ACTIONS(747), - [aux_sym_hostname_token1] = ACTIONS(747), - [aux_sym_identities_only_token1] = ACTIONS(747), - [aux_sym_identity_agent_token1] = ACTIONS(747), - [aux_sym_identity_file_token1] = ACTIONS(747), - [aux_sym_ignore_unknown_token1] = ACTIONS(747), - [aux_sym_include_token1] = ACTIONS(747), - [aux_sym_ip_qos_token1] = ACTIONS(747), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(747), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(747), - [aux_sym_kex_algorithms_token1] = ACTIONS(747), - [aux_sym_known_hosts_command_token1] = ACTIONS(747), - [aux_sym_local_command_token1] = ACTIONS(747), - [aux_sym_local_forward_token1] = ACTIONS(747), - [aux_sym_log_level_token1] = ACTIONS(747), - [aux_sym_log_verbose_token1] = ACTIONS(747), - [aux_sym_macs_token1] = ACTIONS(747), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(747), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(747), - [aux_sym_password_authentication_token1] = ACTIONS(747), - [aux_sym_permit_local_command_token1] = ACTIONS(747), - [aux_sym_permit_remote_open_token1] = ACTIONS(747), - [aux_sym_pkcs11_provider_token1] = ACTIONS(747), - [aux_sym_port_token1] = ACTIONS(747), - [aux_sym_preferred_authentications_token1] = ACTIONS(747), - [aux_sym_protocol_token1] = ACTIONS(747), - [aux_sym_proxy_command_token1] = ACTIONS(747), - [aux_sym_proxy_jump_token1] = ACTIONS(747), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(747), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(747), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(747), - [aux_sym_pubkey_authentication_token1] = ACTIONS(747), - [aux_sym_rekey_limit_token1] = ACTIONS(747), - [aux_sym_remote_command_token1] = ACTIONS(747), - [aux_sym_remote_forward_token1] = ACTIONS(747), - [aux_sym_request_tty_token1] = ACTIONS(747), - [aux_sym_required_rsa_size_token1] = ACTIONS(747), - [aux_sym_revoked_host_keys_token1] = ACTIONS(747), - [aux_sym_security_key_provider_token1] = ACTIONS(747), - [aux_sym_send_env_token1] = ACTIONS(747), - [aux_sym_server_alive_count_max_token1] = ACTIONS(747), - [aux_sym_server_alive_interval_token1] = ACTIONS(747), - [aux_sym_session_type_token1] = ACTIONS(747), - [aux_sym_set_env_token1] = ACTIONS(747), - [aux_sym_stdin_null_token1] = ACTIONS(747), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(747), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(747), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(747), - [aux_sym_syslog_facility_token1] = ACTIONS(747), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(747), - [aux_sym_keep_alive_token1] = ACTIONS(747), - [aux_sym_tunnel_token1] = ACTIONS(749), - [aux_sym_tunnel_device_token1] = ACTIONS(747), - [aux_sym_update_host_keys_token1] = ACTIONS(747), - [aux_sym_use_keychain_token1] = ACTIONS(747), - [aux_sym_use_roaming_token1] = ACTIONS(747), - [aux_sym_user_token1] = ACTIONS(749), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(747), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(747), - [aux_sym_visual_host_key_token1] = ACTIONS(747), - [aux_sym_xauth_location_token1] = ACTIONS(747), + [ts_builtin_sym_end] = ACTIONS(3360), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3362), + [aux_sym_match_token1] = ACTIONS(3360), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3360), + [aux_sym_address_family_token1] = ACTIONS(3360), + [aux_sym_batch_mode_token1] = ACTIONS(3360), + [aux_sym_bind_address_token1] = ACTIONS(3360), + [aux_sym_bind_interface_token1] = ACTIONS(3360), + [aux_sym_canonical_domains_token1] = ACTIONS(3360), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3360), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3360), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3360), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3360), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3360), + [aux_sym_certificate_file_token1] = ACTIONS(3360), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3360), + [aux_sym_check_host_ip_token1] = ACTIONS(3360), + [aux_sym_ciphers_token1] = ACTIONS(3360), + [aux_sym_cipher_token1] = ACTIONS(3362), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3360), + [aux_sym_compression_token1] = ACTIONS(3360), + [aux_sym_connection_attempts_token1] = ACTIONS(3360), + [aux_sym_connect_timeout_token1] = ACTIONS(3360), + [aux_sym_control_master_token1] = ACTIONS(3360), + [aux_sym_control_path_token1] = ACTIONS(3360), + [aux_sym_control_persist_token1] = ACTIONS(3360), + [aux_sym_dynamic_forward_token1] = ACTIONS(3360), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3360), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3360), + [aux_sym_escape_char_token1] = ACTIONS(3360), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3360), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3360), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3360), + [aux_sym_forward_agent_token1] = ACTIONS(3360), + [aux_sym_forward_x11_token1] = ACTIONS(3362), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3360), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3360), + [aux_sym_gateway_ports_token1] = ACTIONS(3360), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3360), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3360), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3360), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3360), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3360), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3360), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3360), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3360), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3360), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3360), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3360), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3360), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3360), + [aux_sym_host_key_alias_token1] = ACTIONS(3360), + [aux_sym_hostname_token1] = ACTIONS(3360), + [aux_sym_identities_only_token1] = ACTIONS(3360), + [aux_sym_identity_agent_token1] = ACTIONS(3360), + [aux_sym_identity_file_token1] = ACTIONS(3360), + [aux_sym_ignore_unknown_token1] = ACTIONS(3360), + [aux_sym_include_token1] = ACTIONS(3360), + [aux_sym_ip_qos_token1] = ACTIONS(3360), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3360), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3360), + [aux_sym_kex_algorithms_token1] = ACTIONS(3360), + [aux_sym_known_hosts_command_token1] = ACTIONS(3360), + [aux_sym_local_command_token1] = ACTIONS(3360), + [aux_sym_local_forward_token1] = ACTIONS(3360), + [aux_sym_log_level_token1] = ACTIONS(3360), + [aux_sym_log_verbose_token1] = ACTIONS(3360), + [aux_sym_macs_token1] = ACTIONS(3360), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3360), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3360), + [aux_sym_password_authentication_token1] = ACTIONS(3360), + [aux_sym_permit_local_command_token1] = ACTIONS(3360), + [aux_sym_permit_remote_open_token1] = ACTIONS(3360), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3360), + [aux_sym_port_token1] = ACTIONS(3360), + [aux_sym_preferred_authentications_token1] = ACTIONS(3360), + [aux_sym_protocol_token1] = ACTIONS(3360), + [aux_sym_proxy_command_token1] = ACTIONS(3360), + [aux_sym_proxy_jump_token1] = ACTIONS(3360), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3360), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3360), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3360), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3360), + [aux_sym_rekey_limit_token1] = ACTIONS(3360), + [aux_sym_remote_command_token1] = ACTIONS(3360), + [aux_sym_remote_forward_token1] = ACTIONS(3360), + [aux_sym_request_tty_token1] = ACTIONS(3360), + [aux_sym_required_rsa_size_token1] = ACTIONS(3360), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3360), + [aux_sym_security_key_provider_token1] = ACTIONS(3360), + [aux_sym_send_env_token1] = ACTIONS(3360), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3360), + [aux_sym_server_alive_interval_token1] = ACTIONS(3360), + [aux_sym_session_type_token1] = ACTIONS(3360), + [aux_sym_set_env_token1] = ACTIONS(3360), + [aux_sym_stdin_null_token1] = ACTIONS(3360), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3360), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3360), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3360), + [aux_sym_syslog_facility_token1] = ACTIONS(3360), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3360), + [aux_sym_keep_alive_token1] = ACTIONS(3360), + [aux_sym_tunnel_token1] = ACTIONS(3362), + [aux_sym_tunnel_device_token1] = ACTIONS(3360), + [aux_sym_update_host_keys_token1] = ACTIONS(3360), + [aux_sym_use_keychain_token1] = ACTIONS(3360), + [aux_sym_use_roaming_token1] = ACTIONS(3360), + [aux_sym_user_token1] = ACTIONS(3362), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3360), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3360), + [aux_sym_visual_host_key_token1] = ACTIONS(3360), + [aux_sym_xauth_location_token1] = ACTIONS(3360), }, [594] = { - [ts_builtin_sym_end] = ACTIONS(753), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(755), - [aux_sym_match_token1] = ACTIONS(753), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(753), - [aux_sym_address_family_token1] = ACTIONS(753), - [aux_sym_batch_mode_token1] = ACTIONS(753), - [aux_sym_bind_address_token1] = ACTIONS(753), - [aux_sym_bind_interface_token1] = ACTIONS(753), - [aux_sym_canonical_domains_token1] = ACTIONS(753), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(753), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(753), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(753), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(753), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(753), - [aux_sym_certificate_file_token1] = ACTIONS(753), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(753), - [aux_sym_check_host_ip_token1] = ACTIONS(753), - [aux_sym_ciphers_token1] = ACTIONS(753), - [aux_sym_cipher_token1] = ACTIONS(755), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(753), - [aux_sym_compression_token1] = ACTIONS(753), - [aux_sym_connection_attempts_token1] = ACTIONS(753), - [aux_sym_connect_timeout_token1] = ACTIONS(753), - [aux_sym_control_master_token1] = ACTIONS(753), - [aux_sym_control_path_token1] = ACTIONS(753), - [aux_sym_control_persist_token1] = ACTIONS(753), - [aux_sym_dynamic_forward_token1] = ACTIONS(753), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(753), - [aux_sym_escape_char_token1] = ACTIONS(753), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(753), - [aux_sym_fingerprint_hash_token1] = ACTIONS(753), - [aux_sym_fork_after_authentication_token1] = ACTIONS(753), - [aux_sym_forward_agent_token1] = ACTIONS(753), - [aux_sym_forward_x11_token1] = ACTIONS(755), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(753), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(753), - [aux_sym_gateway_ports_token1] = ACTIONS(753), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(753), - [aux_sym_gssapi_authentication_token1] = ACTIONS(753), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(753), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(753), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(753), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(753), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(753), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(753), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(753), - [aux_sym_hash_known_hosts_token1] = ACTIONS(753), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(753), - [aux_sym_hostbased_authentication_token1] = ACTIONS(753), - [aux_sym_host_key_algorithms_token1] = ACTIONS(753), - [aux_sym_host_key_alias_token1] = ACTIONS(753), - [aux_sym_hostname_token1] = ACTIONS(753), - [aux_sym_identities_only_token1] = ACTIONS(753), - [aux_sym_identity_agent_token1] = ACTIONS(753), - [aux_sym_identity_file_token1] = ACTIONS(753), - [aux_sym_ignore_unknown_token1] = ACTIONS(753), - [aux_sym_include_token1] = ACTIONS(753), - [aux_sym_ip_qos_token1] = ACTIONS(753), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(753), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(753), - [aux_sym_kex_algorithms_token1] = ACTIONS(753), - [aux_sym_known_hosts_command_token1] = ACTIONS(753), - [aux_sym_local_command_token1] = ACTIONS(753), - [aux_sym_local_forward_token1] = ACTIONS(753), - [aux_sym_log_level_token1] = ACTIONS(753), - [aux_sym_log_verbose_token1] = ACTIONS(753), - [aux_sym_macs_token1] = ACTIONS(753), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(753), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(753), - [aux_sym_password_authentication_token1] = ACTIONS(753), - [aux_sym_permit_local_command_token1] = ACTIONS(753), - [aux_sym_permit_remote_open_token1] = ACTIONS(753), - [aux_sym_pkcs11_provider_token1] = ACTIONS(753), - [aux_sym_port_token1] = ACTIONS(753), - [aux_sym_preferred_authentications_token1] = ACTIONS(753), - [aux_sym_protocol_token1] = ACTIONS(753), - [aux_sym_proxy_command_token1] = ACTIONS(753), - [aux_sym_proxy_jump_token1] = ACTIONS(753), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(753), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(753), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(753), - [aux_sym_pubkey_authentication_token1] = ACTIONS(753), - [aux_sym_rekey_limit_token1] = ACTIONS(753), - [aux_sym_remote_command_token1] = ACTIONS(753), - [aux_sym_remote_forward_token1] = ACTIONS(753), - [aux_sym_request_tty_token1] = ACTIONS(753), - [aux_sym_required_rsa_size_token1] = ACTIONS(753), - [aux_sym_revoked_host_keys_token1] = ACTIONS(753), - [aux_sym_security_key_provider_token1] = ACTIONS(753), - [aux_sym_send_env_token1] = ACTIONS(753), - [aux_sym_server_alive_count_max_token1] = ACTIONS(753), - [aux_sym_server_alive_interval_token1] = ACTIONS(753), - [aux_sym_session_type_token1] = ACTIONS(753), - [aux_sym_set_env_token1] = ACTIONS(753), - [aux_sym_stdin_null_token1] = ACTIONS(753), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(753), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(753), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(753), - [aux_sym_syslog_facility_token1] = ACTIONS(753), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(753), - [aux_sym_keep_alive_token1] = ACTIONS(753), - [aux_sym_tunnel_token1] = ACTIONS(755), - [aux_sym_tunnel_device_token1] = ACTIONS(753), - [aux_sym_update_host_keys_token1] = ACTIONS(753), - [aux_sym_use_keychain_token1] = ACTIONS(753), - [aux_sym_use_roaming_token1] = ACTIONS(753), - [aux_sym_user_token1] = ACTIONS(755), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(753), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(753), - [aux_sym_visual_host_key_token1] = ACTIONS(753), - [aux_sym_xauth_location_token1] = ACTIONS(753), + [ts_builtin_sym_end] = ACTIONS(3364), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3366), + [aux_sym_match_token1] = ACTIONS(3364), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3364), + [aux_sym_address_family_token1] = ACTIONS(3364), + [aux_sym_batch_mode_token1] = ACTIONS(3364), + [aux_sym_bind_address_token1] = ACTIONS(3364), + [aux_sym_bind_interface_token1] = ACTIONS(3364), + [aux_sym_canonical_domains_token1] = ACTIONS(3364), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3364), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3364), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3364), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3364), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3364), + [aux_sym_certificate_file_token1] = ACTIONS(3364), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3364), + [aux_sym_check_host_ip_token1] = ACTIONS(3364), + [aux_sym_ciphers_token1] = ACTIONS(3364), + [aux_sym_cipher_token1] = ACTIONS(3366), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3364), + [aux_sym_compression_token1] = ACTIONS(3364), + [aux_sym_connection_attempts_token1] = ACTIONS(3364), + [aux_sym_connect_timeout_token1] = ACTIONS(3364), + [aux_sym_control_master_token1] = ACTIONS(3364), + [aux_sym_control_path_token1] = ACTIONS(3364), + [aux_sym_control_persist_token1] = ACTIONS(3364), + [aux_sym_dynamic_forward_token1] = ACTIONS(3364), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3364), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3364), + [aux_sym_escape_char_token1] = ACTIONS(3364), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3364), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3364), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3364), + [aux_sym_forward_agent_token1] = ACTIONS(3364), + [aux_sym_forward_x11_token1] = ACTIONS(3366), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3364), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3364), + [aux_sym_gateway_ports_token1] = ACTIONS(3364), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3364), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3364), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3364), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3364), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3364), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3364), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3364), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3364), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3364), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3364), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3364), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3364), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3364), + [aux_sym_host_key_alias_token1] = ACTIONS(3364), + [aux_sym_hostname_token1] = ACTIONS(3364), + [aux_sym_identities_only_token1] = ACTIONS(3364), + [aux_sym_identity_agent_token1] = ACTIONS(3364), + [aux_sym_identity_file_token1] = ACTIONS(3364), + [aux_sym_ignore_unknown_token1] = ACTIONS(3364), + [aux_sym_include_token1] = ACTIONS(3364), + [aux_sym_ip_qos_token1] = ACTIONS(3364), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3364), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3364), + [aux_sym_kex_algorithms_token1] = ACTIONS(3364), + [aux_sym_known_hosts_command_token1] = ACTIONS(3364), + [aux_sym_local_command_token1] = ACTIONS(3364), + [aux_sym_local_forward_token1] = ACTIONS(3364), + [aux_sym_log_level_token1] = ACTIONS(3364), + [aux_sym_log_verbose_token1] = ACTIONS(3364), + [aux_sym_macs_token1] = ACTIONS(3364), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3364), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3364), + [aux_sym_password_authentication_token1] = ACTIONS(3364), + [aux_sym_permit_local_command_token1] = ACTIONS(3364), + [aux_sym_permit_remote_open_token1] = ACTIONS(3364), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3364), + [aux_sym_port_token1] = ACTIONS(3364), + [aux_sym_preferred_authentications_token1] = ACTIONS(3364), + [aux_sym_protocol_token1] = ACTIONS(3364), + [aux_sym_proxy_command_token1] = ACTIONS(3364), + [aux_sym_proxy_jump_token1] = ACTIONS(3364), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3364), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3364), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3364), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3364), + [aux_sym_rekey_limit_token1] = ACTIONS(3364), + [aux_sym_remote_command_token1] = ACTIONS(3364), + [aux_sym_remote_forward_token1] = ACTIONS(3364), + [aux_sym_request_tty_token1] = ACTIONS(3364), + [aux_sym_required_rsa_size_token1] = ACTIONS(3364), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3364), + [aux_sym_security_key_provider_token1] = ACTIONS(3364), + [aux_sym_send_env_token1] = ACTIONS(3364), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3364), + [aux_sym_server_alive_interval_token1] = ACTIONS(3364), + [aux_sym_session_type_token1] = ACTIONS(3364), + [aux_sym_set_env_token1] = ACTIONS(3364), + [aux_sym_stdin_null_token1] = ACTIONS(3364), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3364), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3364), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3364), + [aux_sym_syslog_facility_token1] = ACTIONS(3364), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3364), + [aux_sym_keep_alive_token1] = ACTIONS(3364), + [aux_sym_tunnel_token1] = ACTIONS(3366), + [aux_sym_tunnel_device_token1] = ACTIONS(3364), + [aux_sym_update_host_keys_token1] = ACTIONS(3364), + [aux_sym_use_keychain_token1] = ACTIONS(3364), + [aux_sym_use_roaming_token1] = ACTIONS(3364), + [aux_sym_user_token1] = ACTIONS(3366), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3364), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3364), + [aux_sym_visual_host_key_token1] = ACTIONS(3364), + [aux_sym_xauth_location_token1] = ACTIONS(3364), }, [595] = { - [ts_builtin_sym_end] = ACTIONS(759), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(761), - [aux_sym_match_token1] = ACTIONS(759), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(759), - [aux_sym_address_family_token1] = ACTIONS(759), - [aux_sym_batch_mode_token1] = ACTIONS(759), - [aux_sym_bind_address_token1] = ACTIONS(759), - [aux_sym_bind_interface_token1] = ACTIONS(759), - [aux_sym_canonical_domains_token1] = ACTIONS(759), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(759), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(759), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(759), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(759), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(759), - [aux_sym_certificate_file_token1] = ACTIONS(759), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(759), - [aux_sym_check_host_ip_token1] = ACTIONS(759), - [aux_sym_ciphers_token1] = ACTIONS(759), - [aux_sym_cipher_token1] = ACTIONS(761), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(759), - [aux_sym_compression_token1] = ACTIONS(759), - [aux_sym_connection_attempts_token1] = ACTIONS(759), - [aux_sym_connect_timeout_token1] = ACTIONS(759), - [aux_sym_control_master_token1] = ACTIONS(759), - [aux_sym_control_path_token1] = ACTIONS(759), - [aux_sym_control_persist_token1] = ACTIONS(759), - [aux_sym_dynamic_forward_token1] = ACTIONS(759), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(759), - [aux_sym_escape_char_token1] = ACTIONS(759), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(759), - [aux_sym_fingerprint_hash_token1] = ACTIONS(759), - [aux_sym_fork_after_authentication_token1] = ACTIONS(759), - [aux_sym_forward_agent_token1] = ACTIONS(759), - [aux_sym_forward_x11_token1] = ACTIONS(761), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(759), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(759), - [aux_sym_gateway_ports_token1] = ACTIONS(759), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(759), - [aux_sym_gssapi_authentication_token1] = ACTIONS(759), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(759), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(759), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(759), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(759), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(759), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(759), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(759), - [aux_sym_hash_known_hosts_token1] = ACTIONS(759), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(759), - [aux_sym_hostbased_authentication_token1] = ACTIONS(759), - [aux_sym_host_key_algorithms_token1] = ACTIONS(759), - [aux_sym_host_key_alias_token1] = ACTIONS(759), - [aux_sym_hostname_token1] = ACTIONS(759), - [aux_sym_identities_only_token1] = ACTIONS(759), - [aux_sym_identity_agent_token1] = ACTIONS(759), - [aux_sym_identity_file_token1] = ACTIONS(759), - [aux_sym_ignore_unknown_token1] = ACTIONS(759), - [aux_sym_include_token1] = ACTIONS(759), - [aux_sym_ip_qos_token1] = ACTIONS(759), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(759), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(759), - [aux_sym_kex_algorithms_token1] = ACTIONS(759), - [aux_sym_known_hosts_command_token1] = ACTIONS(759), - [aux_sym_local_command_token1] = ACTIONS(759), - [aux_sym_local_forward_token1] = ACTIONS(759), - [aux_sym_log_level_token1] = ACTIONS(759), - [aux_sym_log_verbose_token1] = ACTIONS(759), - [aux_sym_macs_token1] = ACTIONS(759), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(759), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(759), - [aux_sym_password_authentication_token1] = ACTIONS(759), - [aux_sym_permit_local_command_token1] = ACTIONS(759), - [aux_sym_permit_remote_open_token1] = ACTIONS(759), - [aux_sym_pkcs11_provider_token1] = ACTIONS(759), - [aux_sym_port_token1] = ACTIONS(759), - [aux_sym_preferred_authentications_token1] = ACTIONS(759), - [aux_sym_protocol_token1] = ACTIONS(759), - [aux_sym_proxy_command_token1] = ACTIONS(759), - [aux_sym_proxy_jump_token1] = ACTIONS(759), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(759), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(759), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(759), - [aux_sym_pubkey_authentication_token1] = ACTIONS(759), - [aux_sym_rekey_limit_token1] = ACTIONS(759), - [aux_sym_remote_command_token1] = ACTIONS(759), - [aux_sym_remote_forward_token1] = ACTIONS(759), - [aux_sym_request_tty_token1] = ACTIONS(759), - [aux_sym_required_rsa_size_token1] = ACTIONS(759), - [aux_sym_revoked_host_keys_token1] = ACTIONS(759), - [aux_sym_security_key_provider_token1] = ACTIONS(759), - [aux_sym_send_env_token1] = ACTIONS(759), - [aux_sym_server_alive_count_max_token1] = ACTIONS(759), - [aux_sym_server_alive_interval_token1] = ACTIONS(759), - [aux_sym_session_type_token1] = ACTIONS(759), - [aux_sym_set_env_token1] = ACTIONS(759), - [aux_sym_stdin_null_token1] = ACTIONS(759), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(759), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(759), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(759), - [aux_sym_syslog_facility_token1] = ACTIONS(759), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(759), - [aux_sym_keep_alive_token1] = ACTIONS(759), - [aux_sym_tunnel_token1] = ACTIONS(761), - [aux_sym_tunnel_device_token1] = ACTIONS(759), - [aux_sym_update_host_keys_token1] = ACTIONS(759), - [aux_sym_use_keychain_token1] = ACTIONS(759), - [aux_sym_use_roaming_token1] = ACTIONS(759), - [aux_sym_user_token1] = ACTIONS(761), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(759), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(759), - [aux_sym_visual_host_key_token1] = ACTIONS(759), - [aux_sym_xauth_location_token1] = ACTIONS(759), + [ts_builtin_sym_end] = ACTIONS(3368), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3370), + [aux_sym_match_token1] = ACTIONS(3368), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3368), + [aux_sym_address_family_token1] = ACTIONS(3368), + [aux_sym_batch_mode_token1] = ACTIONS(3368), + [aux_sym_bind_address_token1] = ACTIONS(3368), + [aux_sym_bind_interface_token1] = ACTIONS(3368), + [aux_sym_canonical_domains_token1] = ACTIONS(3368), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3368), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3368), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3368), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3368), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3368), + [aux_sym_certificate_file_token1] = ACTIONS(3368), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3368), + [aux_sym_check_host_ip_token1] = ACTIONS(3368), + [aux_sym_ciphers_token1] = ACTIONS(3368), + [aux_sym_cipher_token1] = ACTIONS(3370), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3368), + [aux_sym_compression_token1] = ACTIONS(3368), + [aux_sym_connection_attempts_token1] = ACTIONS(3368), + [aux_sym_connect_timeout_token1] = ACTIONS(3368), + [aux_sym_control_master_token1] = ACTIONS(3368), + [aux_sym_control_path_token1] = ACTIONS(3368), + [aux_sym_control_persist_token1] = ACTIONS(3368), + [aux_sym_dynamic_forward_token1] = ACTIONS(3368), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3368), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3368), + [aux_sym_escape_char_token1] = ACTIONS(3368), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3368), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3368), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3368), + [aux_sym_forward_agent_token1] = ACTIONS(3368), + [aux_sym_forward_x11_token1] = ACTIONS(3370), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3368), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3368), + [aux_sym_gateway_ports_token1] = ACTIONS(3368), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3368), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3368), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3368), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3368), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3368), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3368), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3368), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3368), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3368), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3368), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3368), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3368), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3368), + [aux_sym_host_key_alias_token1] = ACTIONS(3368), + [aux_sym_hostname_token1] = ACTIONS(3368), + [aux_sym_identities_only_token1] = ACTIONS(3368), + [aux_sym_identity_agent_token1] = ACTIONS(3368), + [aux_sym_identity_file_token1] = ACTIONS(3368), + [aux_sym_ignore_unknown_token1] = ACTIONS(3368), + [aux_sym_include_token1] = ACTIONS(3368), + [aux_sym_ip_qos_token1] = ACTIONS(3368), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3368), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3368), + [aux_sym_kex_algorithms_token1] = ACTIONS(3368), + [aux_sym_known_hosts_command_token1] = ACTIONS(3368), + [aux_sym_local_command_token1] = ACTIONS(3368), + [aux_sym_local_forward_token1] = ACTIONS(3368), + [aux_sym_log_level_token1] = ACTIONS(3368), + [aux_sym_log_verbose_token1] = ACTIONS(3368), + [aux_sym_macs_token1] = ACTIONS(3368), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3368), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3368), + [aux_sym_password_authentication_token1] = ACTIONS(3368), + [aux_sym_permit_local_command_token1] = ACTIONS(3368), + [aux_sym_permit_remote_open_token1] = ACTIONS(3368), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3368), + [aux_sym_port_token1] = ACTIONS(3368), + [aux_sym_preferred_authentications_token1] = ACTIONS(3368), + [aux_sym_protocol_token1] = ACTIONS(3368), + [aux_sym_proxy_command_token1] = ACTIONS(3368), + [aux_sym_proxy_jump_token1] = ACTIONS(3368), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3368), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3368), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3368), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3368), + [aux_sym_rekey_limit_token1] = ACTIONS(3368), + [aux_sym_remote_command_token1] = ACTIONS(3368), + [aux_sym_remote_forward_token1] = ACTIONS(3368), + [aux_sym_request_tty_token1] = ACTIONS(3368), + [aux_sym_required_rsa_size_token1] = ACTIONS(3368), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3368), + [aux_sym_security_key_provider_token1] = ACTIONS(3368), + [aux_sym_send_env_token1] = ACTIONS(3368), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3368), + [aux_sym_server_alive_interval_token1] = ACTIONS(3368), + [aux_sym_session_type_token1] = ACTIONS(3368), + [aux_sym_set_env_token1] = ACTIONS(3368), + [aux_sym_stdin_null_token1] = ACTIONS(3368), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3368), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3368), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3368), + [aux_sym_syslog_facility_token1] = ACTIONS(3368), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3368), + [aux_sym_keep_alive_token1] = ACTIONS(3368), + [aux_sym_tunnel_token1] = ACTIONS(3370), + [aux_sym_tunnel_device_token1] = ACTIONS(3368), + [aux_sym_update_host_keys_token1] = ACTIONS(3368), + [aux_sym_use_keychain_token1] = ACTIONS(3368), + [aux_sym_use_roaming_token1] = ACTIONS(3368), + [aux_sym_user_token1] = ACTIONS(3370), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3368), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3368), + [aux_sym_visual_host_key_token1] = ACTIONS(3368), + [aux_sym_xauth_location_token1] = ACTIONS(3368), }, [596] = { - [ts_builtin_sym_end] = ACTIONS(765), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(767), - [aux_sym_match_token1] = ACTIONS(765), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(765), - [aux_sym_address_family_token1] = ACTIONS(765), - [aux_sym_batch_mode_token1] = ACTIONS(765), - [aux_sym_bind_address_token1] = ACTIONS(765), - [aux_sym_bind_interface_token1] = ACTIONS(765), - [aux_sym_canonical_domains_token1] = ACTIONS(765), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(765), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(765), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(765), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(765), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(765), - [aux_sym_certificate_file_token1] = ACTIONS(765), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(765), - [aux_sym_check_host_ip_token1] = ACTIONS(765), - [aux_sym_ciphers_token1] = ACTIONS(765), - [aux_sym_cipher_token1] = ACTIONS(767), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(765), - [aux_sym_compression_token1] = ACTIONS(765), - [aux_sym_connection_attempts_token1] = ACTIONS(765), - [aux_sym_connect_timeout_token1] = ACTIONS(765), - [aux_sym_control_master_token1] = ACTIONS(765), - [aux_sym_control_path_token1] = ACTIONS(765), - [aux_sym_control_persist_token1] = ACTIONS(765), - [aux_sym_dynamic_forward_token1] = ACTIONS(765), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(765), - [aux_sym_escape_char_token1] = ACTIONS(765), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(765), - [aux_sym_fingerprint_hash_token1] = ACTIONS(765), - [aux_sym_fork_after_authentication_token1] = ACTIONS(765), - [aux_sym_forward_agent_token1] = ACTIONS(765), - [aux_sym_forward_x11_token1] = ACTIONS(767), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(765), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(765), - [aux_sym_gateway_ports_token1] = ACTIONS(765), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(765), - [aux_sym_gssapi_authentication_token1] = ACTIONS(765), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(765), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(765), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(765), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(765), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(765), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(765), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(765), - [aux_sym_hash_known_hosts_token1] = ACTIONS(765), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(765), - [aux_sym_hostbased_authentication_token1] = ACTIONS(765), - [aux_sym_host_key_algorithms_token1] = ACTIONS(765), - [aux_sym_host_key_alias_token1] = ACTIONS(765), - [aux_sym_hostname_token1] = ACTIONS(765), - [aux_sym_identities_only_token1] = ACTIONS(765), - [aux_sym_identity_agent_token1] = ACTIONS(765), - [aux_sym_identity_file_token1] = ACTIONS(765), - [aux_sym_ignore_unknown_token1] = ACTIONS(765), - [aux_sym_include_token1] = ACTIONS(765), - [aux_sym_ip_qos_token1] = ACTIONS(765), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(765), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(765), - [aux_sym_kex_algorithms_token1] = ACTIONS(765), - [aux_sym_known_hosts_command_token1] = ACTIONS(765), - [aux_sym_local_command_token1] = ACTIONS(765), - [aux_sym_local_forward_token1] = ACTIONS(765), - [aux_sym_log_level_token1] = ACTIONS(765), - [aux_sym_log_verbose_token1] = ACTIONS(765), - [aux_sym_macs_token1] = ACTIONS(765), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(765), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(765), - [aux_sym_password_authentication_token1] = ACTIONS(765), - [aux_sym_permit_local_command_token1] = ACTIONS(765), - [aux_sym_permit_remote_open_token1] = ACTIONS(765), - [aux_sym_pkcs11_provider_token1] = ACTIONS(765), - [aux_sym_port_token1] = ACTIONS(765), - [aux_sym_preferred_authentications_token1] = ACTIONS(765), - [aux_sym_protocol_token1] = ACTIONS(765), - [aux_sym_proxy_command_token1] = ACTIONS(765), - [aux_sym_proxy_jump_token1] = ACTIONS(765), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(765), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(765), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(765), - [aux_sym_pubkey_authentication_token1] = ACTIONS(765), - [aux_sym_rekey_limit_token1] = ACTIONS(765), - [aux_sym_remote_command_token1] = ACTIONS(765), - [aux_sym_remote_forward_token1] = ACTIONS(765), - [aux_sym_request_tty_token1] = ACTIONS(765), - [aux_sym_required_rsa_size_token1] = ACTIONS(765), - [aux_sym_revoked_host_keys_token1] = ACTIONS(765), - [aux_sym_security_key_provider_token1] = ACTIONS(765), - [aux_sym_send_env_token1] = ACTIONS(765), - [aux_sym_server_alive_count_max_token1] = ACTIONS(765), - [aux_sym_server_alive_interval_token1] = ACTIONS(765), - [aux_sym_session_type_token1] = ACTIONS(765), - [aux_sym_set_env_token1] = ACTIONS(765), - [aux_sym_stdin_null_token1] = ACTIONS(765), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(765), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(765), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(765), - [aux_sym_syslog_facility_token1] = ACTIONS(765), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(765), - [aux_sym_keep_alive_token1] = ACTIONS(765), - [aux_sym_tunnel_token1] = ACTIONS(767), - [aux_sym_tunnel_device_token1] = ACTIONS(765), - [aux_sym_update_host_keys_token1] = ACTIONS(765), - [aux_sym_use_keychain_token1] = ACTIONS(765), - [aux_sym_use_roaming_token1] = ACTIONS(765), - [aux_sym_user_token1] = ACTIONS(767), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(765), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(765), - [aux_sym_visual_host_key_token1] = ACTIONS(765), - [aux_sym_xauth_location_token1] = ACTIONS(765), + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1324), + [aux_sym_match_token1] = ACTIONS(1322), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1322), + [aux_sym_address_family_token1] = ACTIONS(1322), + [aux_sym_batch_mode_token1] = ACTIONS(1322), + [aux_sym_bind_address_token1] = ACTIONS(1322), + [aux_sym_bind_interface_token1] = ACTIONS(1322), + [aux_sym_canonical_domains_token1] = ACTIONS(1322), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1322), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1322), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1322), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1322), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1322), + [aux_sym_certificate_file_token1] = ACTIONS(1322), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1322), + [aux_sym_check_host_ip_token1] = ACTIONS(1322), + [aux_sym_ciphers_token1] = ACTIONS(1322), + [aux_sym_cipher_token1] = ACTIONS(1324), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1322), + [aux_sym_compression_token1] = ACTIONS(1322), + [aux_sym_connection_attempts_token1] = ACTIONS(1322), + [aux_sym_connect_timeout_token1] = ACTIONS(1322), + [aux_sym_control_master_token1] = ACTIONS(1322), + [aux_sym_control_path_token1] = ACTIONS(1322), + [aux_sym_control_persist_token1] = ACTIONS(1322), + [aux_sym_dynamic_forward_token1] = ACTIONS(1322), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1322), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1322), + [aux_sym_escape_char_token1] = ACTIONS(1322), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1322), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1322), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1322), + [aux_sym_forward_agent_token1] = ACTIONS(1322), + [aux_sym_forward_x11_token1] = ACTIONS(1324), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1322), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1322), + [aux_sym_gateway_ports_token1] = ACTIONS(1322), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1322), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1322), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1322), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1322), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1322), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1322), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1322), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1322), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1322), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1322), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1322), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1322), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1322), + [aux_sym_host_key_alias_token1] = ACTIONS(1322), + [aux_sym_hostname_token1] = ACTIONS(1322), + [aux_sym_identities_only_token1] = ACTIONS(1322), + [aux_sym_identity_agent_token1] = ACTIONS(1322), + [aux_sym_identity_file_token1] = ACTIONS(1322), + [aux_sym_ignore_unknown_token1] = ACTIONS(1322), + [aux_sym_include_token1] = ACTIONS(1322), + [aux_sym_ip_qos_token1] = ACTIONS(1322), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1322), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1322), + [aux_sym_kex_algorithms_token1] = ACTIONS(1322), + [aux_sym_known_hosts_command_token1] = ACTIONS(1322), + [aux_sym_local_command_token1] = ACTIONS(1322), + [aux_sym_local_forward_token1] = ACTIONS(1322), + [aux_sym_log_level_token1] = ACTIONS(1322), + [aux_sym_log_verbose_token1] = ACTIONS(1322), + [aux_sym_macs_token1] = ACTIONS(1322), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1322), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1322), + [aux_sym_password_authentication_token1] = ACTIONS(1322), + [aux_sym_permit_local_command_token1] = ACTIONS(1322), + [aux_sym_permit_remote_open_token1] = ACTIONS(1322), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1322), + [aux_sym_port_token1] = ACTIONS(1322), + [aux_sym_preferred_authentications_token1] = ACTIONS(1322), + [aux_sym_protocol_token1] = ACTIONS(1322), + [aux_sym_proxy_command_token1] = ACTIONS(1322), + [aux_sym_proxy_jump_token1] = ACTIONS(1322), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1322), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1322), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1322), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1322), + [aux_sym_rekey_limit_token1] = ACTIONS(1322), + [aux_sym_remote_command_token1] = ACTIONS(1322), + [aux_sym_remote_forward_token1] = ACTIONS(1322), + [aux_sym_request_tty_token1] = ACTIONS(1322), + [aux_sym_required_rsa_size_token1] = ACTIONS(1322), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1322), + [aux_sym_security_key_provider_token1] = ACTIONS(1322), + [aux_sym_send_env_token1] = ACTIONS(1322), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1322), + [aux_sym_server_alive_interval_token1] = ACTIONS(1322), + [aux_sym_session_type_token1] = ACTIONS(1322), + [aux_sym_set_env_token1] = ACTIONS(1322), + [aux_sym_stdin_null_token1] = ACTIONS(1322), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1322), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1322), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1322), + [aux_sym_syslog_facility_token1] = ACTIONS(1322), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1322), + [aux_sym_keep_alive_token1] = ACTIONS(1322), + [aux_sym_tunnel_token1] = ACTIONS(1324), + [aux_sym_tunnel_device_token1] = ACTIONS(1322), + [aux_sym_update_host_keys_token1] = ACTIONS(1322), + [aux_sym_use_keychain_token1] = ACTIONS(1322), + [aux_sym_use_roaming_token1] = ACTIONS(1322), + [aux_sym_user_token1] = ACTIONS(1324), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1322), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1322), + [aux_sym_visual_host_key_token1] = ACTIONS(1322), + [aux_sym_xauth_location_token1] = ACTIONS(1322), }, [597] = { - [ts_builtin_sym_end] = ACTIONS(771), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(773), - [aux_sym_match_token1] = ACTIONS(771), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(771), - [aux_sym_address_family_token1] = ACTIONS(771), - [aux_sym_batch_mode_token1] = ACTIONS(771), - [aux_sym_bind_address_token1] = ACTIONS(771), - [aux_sym_bind_interface_token1] = ACTIONS(771), - [aux_sym_canonical_domains_token1] = ACTIONS(771), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(771), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(771), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(771), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(771), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(771), - [aux_sym_certificate_file_token1] = ACTIONS(771), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(771), - [aux_sym_check_host_ip_token1] = ACTIONS(771), - [aux_sym_ciphers_token1] = ACTIONS(771), - [aux_sym_cipher_token1] = ACTIONS(773), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(771), - [aux_sym_compression_token1] = ACTIONS(771), - [aux_sym_connection_attempts_token1] = ACTIONS(771), - [aux_sym_connect_timeout_token1] = ACTIONS(771), - [aux_sym_control_master_token1] = ACTIONS(771), - [aux_sym_control_path_token1] = ACTIONS(771), - [aux_sym_control_persist_token1] = ACTIONS(771), - [aux_sym_dynamic_forward_token1] = ACTIONS(771), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(771), - [aux_sym_escape_char_token1] = ACTIONS(771), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(771), - [aux_sym_fingerprint_hash_token1] = ACTIONS(771), - [aux_sym_fork_after_authentication_token1] = ACTIONS(771), - [aux_sym_forward_agent_token1] = ACTIONS(771), - [aux_sym_forward_x11_token1] = ACTIONS(773), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(771), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(771), - [aux_sym_gateway_ports_token1] = ACTIONS(771), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(771), - [aux_sym_gssapi_authentication_token1] = ACTIONS(771), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(771), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(771), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(771), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(771), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(771), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(771), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(771), - [aux_sym_hash_known_hosts_token1] = ACTIONS(771), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(771), - [aux_sym_hostbased_authentication_token1] = ACTIONS(771), - [aux_sym_host_key_algorithms_token1] = ACTIONS(771), - [aux_sym_host_key_alias_token1] = ACTIONS(771), - [aux_sym_hostname_token1] = ACTIONS(771), - [aux_sym_identities_only_token1] = ACTIONS(771), - [aux_sym_identity_agent_token1] = ACTIONS(771), - [aux_sym_identity_file_token1] = ACTIONS(771), - [aux_sym_ignore_unknown_token1] = ACTIONS(771), - [aux_sym_include_token1] = ACTIONS(771), - [aux_sym_ip_qos_token1] = ACTIONS(771), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(771), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(771), - [aux_sym_kex_algorithms_token1] = ACTIONS(771), - [aux_sym_known_hosts_command_token1] = ACTIONS(771), - [aux_sym_local_command_token1] = ACTIONS(771), - [aux_sym_local_forward_token1] = ACTIONS(771), - [aux_sym_log_level_token1] = ACTIONS(771), - [aux_sym_log_verbose_token1] = ACTIONS(771), - [aux_sym_macs_token1] = ACTIONS(771), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(771), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(771), - [aux_sym_password_authentication_token1] = ACTIONS(771), - [aux_sym_permit_local_command_token1] = ACTIONS(771), - [aux_sym_permit_remote_open_token1] = ACTIONS(771), - [aux_sym_pkcs11_provider_token1] = ACTIONS(771), - [aux_sym_port_token1] = ACTIONS(771), - [aux_sym_preferred_authentications_token1] = ACTIONS(771), - [aux_sym_protocol_token1] = ACTIONS(771), - [aux_sym_proxy_command_token1] = ACTIONS(771), - [aux_sym_proxy_jump_token1] = ACTIONS(771), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(771), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(771), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(771), - [aux_sym_pubkey_authentication_token1] = ACTIONS(771), - [aux_sym_rekey_limit_token1] = ACTIONS(771), - [aux_sym_remote_command_token1] = ACTIONS(771), - [aux_sym_remote_forward_token1] = ACTIONS(771), - [aux_sym_request_tty_token1] = ACTIONS(771), - [aux_sym_required_rsa_size_token1] = ACTIONS(771), - [aux_sym_revoked_host_keys_token1] = ACTIONS(771), - [aux_sym_security_key_provider_token1] = ACTIONS(771), - [aux_sym_send_env_token1] = ACTIONS(771), - [aux_sym_server_alive_count_max_token1] = ACTIONS(771), - [aux_sym_server_alive_interval_token1] = ACTIONS(771), - [aux_sym_session_type_token1] = ACTIONS(771), - [aux_sym_set_env_token1] = ACTIONS(771), - [aux_sym_stdin_null_token1] = ACTIONS(771), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(771), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(771), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(771), - [aux_sym_syslog_facility_token1] = ACTIONS(771), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(771), - [aux_sym_keep_alive_token1] = ACTIONS(771), - [aux_sym_tunnel_token1] = ACTIONS(773), - [aux_sym_tunnel_device_token1] = ACTIONS(771), - [aux_sym_update_host_keys_token1] = ACTIONS(771), - [aux_sym_use_keychain_token1] = ACTIONS(771), - [aux_sym_use_roaming_token1] = ACTIONS(771), - [aux_sym_user_token1] = ACTIONS(773), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(771), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(771), - [aux_sym_visual_host_key_token1] = ACTIONS(771), - [aux_sym_xauth_location_token1] = ACTIONS(771), + [ts_builtin_sym_end] = ACTIONS(1328), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1330), + [aux_sym_match_token1] = ACTIONS(1328), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1328), + [aux_sym_address_family_token1] = ACTIONS(1328), + [aux_sym_batch_mode_token1] = ACTIONS(1328), + [aux_sym_bind_address_token1] = ACTIONS(1328), + [aux_sym_bind_interface_token1] = ACTIONS(1328), + [aux_sym_canonical_domains_token1] = ACTIONS(1328), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1328), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1328), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1328), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1328), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1328), + [aux_sym_certificate_file_token1] = ACTIONS(1328), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1328), + [aux_sym_check_host_ip_token1] = ACTIONS(1328), + [aux_sym_ciphers_token1] = ACTIONS(1328), + [aux_sym_cipher_token1] = ACTIONS(1330), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1328), + [aux_sym_compression_token1] = ACTIONS(1328), + [aux_sym_connection_attempts_token1] = ACTIONS(1328), + [aux_sym_connect_timeout_token1] = ACTIONS(1328), + [aux_sym_control_master_token1] = ACTIONS(1328), + [aux_sym_control_path_token1] = ACTIONS(1328), + [aux_sym_control_persist_token1] = ACTIONS(1328), + [aux_sym_dynamic_forward_token1] = ACTIONS(1328), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1328), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1328), + [aux_sym_escape_char_token1] = ACTIONS(1328), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1328), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1328), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1328), + [aux_sym_forward_agent_token1] = ACTIONS(1328), + [aux_sym_forward_x11_token1] = ACTIONS(1330), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1328), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1328), + [aux_sym_gateway_ports_token1] = ACTIONS(1328), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1328), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1328), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1328), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1328), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1328), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1328), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1328), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1328), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1328), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1328), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1328), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1328), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1328), + [aux_sym_host_key_alias_token1] = ACTIONS(1328), + [aux_sym_hostname_token1] = ACTIONS(1328), + [aux_sym_identities_only_token1] = ACTIONS(1328), + [aux_sym_identity_agent_token1] = ACTIONS(1328), + [aux_sym_identity_file_token1] = ACTIONS(1328), + [aux_sym_ignore_unknown_token1] = ACTIONS(1328), + [aux_sym_include_token1] = ACTIONS(1328), + [aux_sym_ip_qos_token1] = ACTIONS(1328), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1328), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1328), + [aux_sym_kex_algorithms_token1] = ACTIONS(1328), + [aux_sym_known_hosts_command_token1] = ACTIONS(1328), + [aux_sym_local_command_token1] = ACTIONS(1328), + [aux_sym_local_forward_token1] = ACTIONS(1328), + [aux_sym_log_level_token1] = ACTIONS(1328), + [aux_sym_log_verbose_token1] = ACTIONS(1328), + [aux_sym_macs_token1] = ACTIONS(1328), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1328), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1328), + [aux_sym_password_authentication_token1] = ACTIONS(1328), + [aux_sym_permit_local_command_token1] = ACTIONS(1328), + [aux_sym_permit_remote_open_token1] = ACTIONS(1328), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1328), + [aux_sym_port_token1] = ACTIONS(1328), + [aux_sym_preferred_authentications_token1] = ACTIONS(1328), + [aux_sym_protocol_token1] = ACTIONS(1328), + [aux_sym_proxy_command_token1] = ACTIONS(1328), + [aux_sym_proxy_jump_token1] = ACTIONS(1328), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1328), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1328), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1328), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1328), + [aux_sym_rekey_limit_token1] = ACTIONS(1328), + [aux_sym_remote_command_token1] = ACTIONS(1328), + [aux_sym_remote_forward_token1] = ACTIONS(1328), + [aux_sym_request_tty_token1] = ACTIONS(1328), + [aux_sym_required_rsa_size_token1] = ACTIONS(1328), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1328), + [aux_sym_security_key_provider_token1] = ACTIONS(1328), + [aux_sym_send_env_token1] = ACTIONS(1328), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1328), + [aux_sym_server_alive_interval_token1] = ACTIONS(1328), + [aux_sym_session_type_token1] = ACTIONS(1328), + [aux_sym_set_env_token1] = ACTIONS(1328), + [aux_sym_stdin_null_token1] = ACTIONS(1328), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1328), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1328), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1328), + [aux_sym_syslog_facility_token1] = ACTIONS(1328), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1328), + [aux_sym_keep_alive_token1] = ACTIONS(1328), + [aux_sym_tunnel_token1] = ACTIONS(1330), + [aux_sym_tunnel_device_token1] = ACTIONS(1328), + [aux_sym_update_host_keys_token1] = ACTIONS(1328), + [aux_sym_use_keychain_token1] = ACTIONS(1328), + [aux_sym_use_roaming_token1] = ACTIONS(1328), + [aux_sym_user_token1] = ACTIONS(1330), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1328), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1328), + [aux_sym_visual_host_key_token1] = ACTIONS(1328), + [aux_sym_xauth_location_token1] = ACTIONS(1328), }, [598] = { - [ts_builtin_sym_end] = ACTIONS(777), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(779), - [aux_sym_match_token1] = ACTIONS(777), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(777), - [aux_sym_address_family_token1] = ACTIONS(777), - [aux_sym_batch_mode_token1] = ACTIONS(777), - [aux_sym_bind_address_token1] = ACTIONS(777), - [aux_sym_bind_interface_token1] = ACTIONS(777), - [aux_sym_canonical_domains_token1] = ACTIONS(777), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(777), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(777), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(777), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(777), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(777), - [aux_sym_certificate_file_token1] = ACTIONS(777), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(777), - [aux_sym_check_host_ip_token1] = ACTIONS(777), - [aux_sym_ciphers_token1] = ACTIONS(777), - [aux_sym_cipher_token1] = ACTIONS(779), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(777), - [aux_sym_compression_token1] = ACTIONS(777), - [aux_sym_connection_attempts_token1] = ACTIONS(777), - [aux_sym_connect_timeout_token1] = ACTIONS(777), - [aux_sym_control_master_token1] = ACTIONS(777), - [aux_sym_control_path_token1] = ACTIONS(777), - [aux_sym_control_persist_token1] = ACTIONS(777), - [aux_sym_dynamic_forward_token1] = ACTIONS(777), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(777), - [aux_sym_escape_char_token1] = ACTIONS(777), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(777), - [aux_sym_fingerprint_hash_token1] = ACTIONS(777), - [aux_sym_fork_after_authentication_token1] = ACTIONS(777), - [aux_sym_forward_agent_token1] = ACTIONS(777), - [aux_sym_forward_x11_token1] = ACTIONS(779), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(777), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(777), - [aux_sym_gateway_ports_token1] = ACTIONS(777), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(777), - [aux_sym_gssapi_authentication_token1] = ACTIONS(777), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(777), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(777), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(777), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(777), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(777), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(777), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(777), - [aux_sym_hash_known_hosts_token1] = ACTIONS(777), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(777), - [aux_sym_hostbased_authentication_token1] = ACTIONS(777), - [aux_sym_host_key_algorithms_token1] = ACTIONS(777), - [aux_sym_host_key_alias_token1] = ACTIONS(777), - [aux_sym_hostname_token1] = ACTIONS(777), - [aux_sym_identities_only_token1] = ACTIONS(777), - [aux_sym_identity_agent_token1] = ACTIONS(777), - [aux_sym_identity_file_token1] = ACTIONS(777), - [aux_sym_ignore_unknown_token1] = ACTIONS(777), - [aux_sym_include_token1] = ACTIONS(777), - [aux_sym_ip_qos_token1] = ACTIONS(777), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(777), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(777), - [aux_sym_kex_algorithms_token1] = ACTIONS(777), - [aux_sym_known_hosts_command_token1] = ACTIONS(777), - [aux_sym_local_command_token1] = ACTIONS(777), - [aux_sym_local_forward_token1] = ACTIONS(777), - [aux_sym_log_level_token1] = ACTIONS(777), - [aux_sym_log_verbose_token1] = ACTIONS(777), - [aux_sym_macs_token1] = ACTIONS(777), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(777), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(777), - [aux_sym_password_authentication_token1] = ACTIONS(777), - [aux_sym_permit_local_command_token1] = ACTIONS(777), - [aux_sym_permit_remote_open_token1] = ACTIONS(777), - [aux_sym_pkcs11_provider_token1] = ACTIONS(777), - [aux_sym_port_token1] = ACTIONS(777), - [aux_sym_preferred_authentications_token1] = ACTIONS(777), - [aux_sym_protocol_token1] = ACTIONS(777), - [aux_sym_proxy_command_token1] = ACTIONS(777), - [aux_sym_proxy_jump_token1] = ACTIONS(777), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(777), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(777), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(777), - [aux_sym_pubkey_authentication_token1] = ACTIONS(777), - [aux_sym_rekey_limit_token1] = ACTIONS(777), - [aux_sym_remote_command_token1] = ACTIONS(777), - [aux_sym_remote_forward_token1] = ACTIONS(777), - [aux_sym_request_tty_token1] = ACTIONS(777), - [aux_sym_required_rsa_size_token1] = ACTIONS(777), - [aux_sym_revoked_host_keys_token1] = ACTIONS(777), - [aux_sym_security_key_provider_token1] = ACTIONS(777), - [aux_sym_send_env_token1] = ACTIONS(777), - [aux_sym_server_alive_count_max_token1] = ACTIONS(777), - [aux_sym_server_alive_interval_token1] = ACTIONS(777), - [aux_sym_session_type_token1] = ACTIONS(777), - [aux_sym_set_env_token1] = ACTIONS(777), - [aux_sym_stdin_null_token1] = ACTIONS(777), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(777), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(777), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(777), - [aux_sym_syslog_facility_token1] = ACTIONS(777), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(777), - [aux_sym_keep_alive_token1] = ACTIONS(777), - [aux_sym_tunnel_token1] = ACTIONS(779), - [aux_sym_tunnel_device_token1] = ACTIONS(777), - [aux_sym_update_host_keys_token1] = ACTIONS(777), - [aux_sym_use_keychain_token1] = ACTIONS(777), - [aux_sym_use_roaming_token1] = ACTIONS(777), - [aux_sym_user_token1] = ACTIONS(779), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(777), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(777), - [aux_sym_visual_host_key_token1] = ACTIONS(777), - [aux_sym_xauth_location_token1] = ACTIONS(777), + [ts_builtin_sym_end] = ACTIONS(974), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(976), + [aux_sym_match_token1] = ACTIONS(974), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(974), + [aux_sym_address_family_token1] = ACTIONS(974), + [aux_sym_batch_mode_token1] = ACTIONS(974), + [aux_sym_bind_address_token1] = ACTIONS(974), + [aux_sym_bind_interface_token1] = ACTIONS(974), + [aux_sym_canonical_domains_token1] = ACTIONS(974), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(974), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(974), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(974), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(974), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(974), + [aux_sym_certificate_file_token1] = ACTIONS(974), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(974), + [aux_sym_check_host_ip_token1] = ACTIONS(974), + [aux_sym_ciphers_token1] = ACTIONS(974), + [aux_sym_cipher_token1] = ACTIONS(976), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(974), + [aux_sym_compression_token1] = ACTIONS(974), + [aux_sym_connection_attempts_token1] = ACTIONS(974), + [aux_sym_connect_timeout_token1] = ACTIONS(974), + [aux_sym_control_master_token1] = ACTIONS(974), + [aux_sym_control_path_token1] = ACTIONS(974), + [aux_sym_control_persist_token1] = ACTIONS(974), + [aux_sym_dynamic_forward_token1] = ACTIONS(974), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(974), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(974), + [aux_sym_escape_char_token1] = ACTIONS(974), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(974), + [aux_sym_fingerprint_hash_token1] = ACTIONS(974), + [aux_sym_fork_after_authentication_token1] = ACTIONS(974), + [aux_sym_forward_agent_token1] = ACTIONS(974), + [aux_sym_forward_x11_token1] = ACTIONS(976), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(974), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(974), + [aux_sym_gateway_ports_token1] = ACTIONS(974), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(974), + [aux_sym_gssapi_authentication_token1] = ACTIONS(974), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(974), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(974), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(974), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(974), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(974), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(974), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(974), + [aux_sym_hash_known_hosts_token1] = ACTIONS(974), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(974), + [aux_sym_hostbased_authentication_token1] = ACTIONS(974), + [aux_sym_host_key_algorithms_token1] = ACTIONS(974), + [aux_sym_host_key_alias_token1] = ACTIONS(974), + [aux_sym_hostname_token1] = ACTIONS(974), + [aux_sym_identities_only_token1] = ACTIONS(974), + [aux_sym_identity_agent_token1] = ACTIONS(974), + [aux_sym_identity_file_token1] = ACTIONS(974), + [aux_sym_ignore_unknown_token1] = ACTIONS(974), + [aux_sym_include_token1] = ACTIONS(974), + [aux_sym_ip_qos_token1] = ACTIONS(974), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(974), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(974), + [aux_sym_kex_algorithms_token1] = ACTIONS(974), + [aux_sym_known_hosts_command_token1] = ACTIONS(974), + [aux_sym_local_command_token1] = ACTIONS(974), + [aux_sym_local_forward_token1] = ACTIONS(974), + [aux_sym_log_level_token1] = ACTIONS(974), + [aux_sym_log_verbose_token1] = ACTIONS(974), + [aux_sym_macs_token1] = ACTIONS(974), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(974), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(974), + [aux_sym_password_authentication_token1] = ACTIONS(974), + [aux_sym_permit_local_command_token1] = ACTIONS(974), + [aux_sym_permit_remote_open_token1] = ACTIONS(974), + [aux_sym_pkcs11_provider_token1] = ACTIONS(974), + [aux_sym_port_token1] = ACTIONS(974), + [aux_sym_preferred_authentications_token1] = ACTIONS(974), + [aux_sym_protocol_token1] = ACTIONS(974), + [aux_sym_proxy_command_token1] = ACTIONS(974), + [aux_sym_proxy_jump_token1] = ACTIONS(974), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(974), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(974), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(974), + [aux_sym_pubkey_authentication_token1] = ACTIONS(974), + [aux_sym_rekey_limit_token1] = ACTIONS(974), + [aux_sym_remote_command_token1] = ACTIONS(974), + [aux_sym_remote_forward_token1] = ACTIONS(974), + [aux_sym_request_tty_token1] = ACTIONS(974), + [aux_sym_required_rsa_size_token1] = ACTIONS(974), + [aux_sym_revoked_host_keys_token1] = ACTIONS(974), + [aux_sym_security_key_provider_token1] = ACTIONS(974), + [aux_sym_send_env_token1] = ACTIONS(974), + [aux_sym_server_alive_count_max_token1] = ACTIONS(974), + [aux_sym_server_alive_interval_token1] = ACTIONS(974), + [aux_sym_session_type_token1] = ACTIONS(974), + [aux_sym_set_env_token1] = ACTIONS(974), + [aux_sym_stdin_null_token1] = ACTIONS(974), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(974), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(974), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(974), + [aux_sym_syslog_facility_token1] = ACTIONS(974), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(974), + [aux_sym_keep_alive_token1] = ACTIONS(974), + [aux_sym_tunnel_token1] = ACTIONS(976), + [aux_sym_tunnel_device_token1] = ACTIONS(974), + [aux_sym_update_host_keys_token1] = ACTIONS(974), + [aux_sym_use_keychain_token1] = ACTIONS(974), + [aux_sym_use_roaming_token1] = ACTIONS(974), + [aux_sym_user_token1] = ACTIONS(976), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(974), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(974), + [aux_sym_visual_host_key_token1] = ACTIONS(974), + [aux_sym_xauth_location_token1] = ACTIONS(974), }, [599] = { - [ts_builtin_sym_end] = ACTIONS(783), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(785), - [aux_sym_match_token1] = ACTIONS(783), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(783), - [aux_sym_address_family_token1] = ACTIONS(783), - [aux_sym_batch_mode_token1] = ACTIONS(783), - [aux_sym_bind_address_token1] = ACTIONS(783), - [aux_sym_bind_interface_token1] = ACTIONS(783), - [aux_sym_canonical_domains_token1] = ACTIONS(783), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(783), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(783), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(783), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(783), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(783), - [aux_sym_certificate_file_token1] = ACTIONS(783), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(783), - [aux_sym_check_host_ip_token1] = ACTIONS(783), - [aux_sym_ciphers_token1] = ACTIONS(783), - [aux_sym_cipher_token1] = ACTIONS(785), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(783), - [aux_sym_compression_token1] = ACTIONS(783), - [aux_sym_connection_attempts_token1] = ACTIONS(783), - [aux_sym_connect_timeout_token1] = ACTIONS(783), - [aux_sym_control_master_token1] = ACTIONS(783), - [aux_sym_control_path_token1] = ACTIONS(783), - [aux_sym_control_persist_token1] = ACTIONS(783), - [aux_sym_dynamic_forward_token1] = ACTIONS(783), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(783), - [aux_sym_escape_char_token1] = ACTIONS(783), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(783), - [aux_sym_fingerprint_hash_token1] = ACTIONS(783), - [aux_sym_fork_after_authentication_token1] = ACTIONS(783), - [aux_sym_forward_agent_token1] = ACTIONS(783), - [aux_sym_forward_x11_token1] = ACTIONS(785), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(783), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(783), - [aux_sym_gateway_ports_token1] = ACTIONS(783), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(783), - [aux_sym_gssapi_authentication_token1] = ACTIONS(783), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(783), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(783), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(783), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(783), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(783), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(783), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(783), - [aux_sym_hash_known_hosts_token1] = ACTIONS(783), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(783), - [aux_sym_hostbased_authentication_token1] = ACTIONS(783), - [aux_sym_host_key_algorithms_token1] = ACTIONS(783), - [aux_sym_host_key_alias_token1] = ACTIONS(783), - [aux_sym_hostname_token1] = ACTIONS(783), - [aux_sym_identities_only_token1] = ACTIONS(783), - [aux_sym_identity_agent_token1] = ACTIONS(783), - [aux_sym_identity_file_token1] = ACTIONS(783), - [aux_sym_ignore_unknown_token1] = ACTIONS(783), - [aux_sym_include_token1] = ACTIONS(783), - [aux_sym_ip_qos_token1] = ACTIONS(783), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(783), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(783), - [aux_sym_kex_algorithms_token1] = ACTIONS(783), - [aux_sym_known_hosts_command_token1] = ACTIONS(783), - [aux_sym_local_command_token1] = ACTIONS(783), - [aux_sym_local_forward_token1] = ACTIONS(783), - [aux_sym_log_level_token1] = ACTIONS(783), - [aux_sym_log_verbose_token1] = ACTIONS(783), - [aux_sym_macs_token1] = ACTIONS(783), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(783), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(783), - [aux_sym_password_authentication_token1] = ACTIONS(783), - [aux_sym_permit_local_command_token1] = ACTIONS(783), - [aux_sym_permit_remote_open_token1] = ACTIONS(783), - [aux_sym_pkcs11_provider_token1] = ACTIONS(783), - [aux_sym_port_token1] = ACTIONS(783), - [aux_sym_preferred_authentications_token1] = ACTIONS(783), - [aux_sym_protocol_token1] = ACTIONS(783), - [aux_sym_proxy_command_token1] = ACTIONS(783), - [aux_sym_proxy_jump_token1] = ACTIONS(783), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(783), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(783), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(783), - [aux_sym_pubkey_authentication_token1] = ACTIONS(783), - [aux_sym_rekey_limit_token1] = ACTIONS(783), - [aux_sym_remote_command_token1] = ACTIONS(783), - [aux_sym_remote_forward_token1] = ACTIONS(783), - [aux_sym_request_tty_token1] = ACTIONS(783), - [aux_sym_required_rsa_size_token1] = ACTIONS(783), - [aux_sym_revoked_host_keys_token1] = ACTIONS(783), - [aux_sym_security_key_provider_token1] = ACTIONS(783), - [aux_sym_send_env_token1] = ACTIONS(783), - [aux_sym_server_alive_count_max_token1] = ACTIONS(783), - [aux_sym_server_alive_interval_token1] = ACTIONS(783), - [aux_sym_session_type_token1] = ACTIONS(783), - [aux_sym_set_env_token1] = ACTIONS(783), - [aux_sym_stdin_null_token1] = ACTIONS(783), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(783), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(783), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(783), - [aux_sym_syslog_facility_token1] = ACTIONS(783), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(783), - [aux_sym_keep_alive_token1] = ACTIONS(783), - [aux_sym_tunnel_token1] = ACTIONS(785), - [aux_sym_tunnel_device_token1] = ACTIONS(783), - [aux_sym_update_host_keys_token1] = ACTIONS(783), - [aux_sym_use_keychain_token1] = ACTIONS(783), - [aux_sym_use_roaming_token1] = ACTIONS(783), - [aux_sym_user_token1] = ACTIONS(785), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(783), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(783), - [aux_sym_visual_host_key_token1] = ACTIONS(783), - [aux_sym_xauth_location_token1] = ACTIONS(783), + [ts_builtin_sym_end] = ACTIONS(1334), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1336), + [aux_sym_match_token1] = ACTIONS(1334), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1334), + [aux_sym_address_family_token1] = ACTIONS(1334), + [aux_sym_batch_mode_token1] = ACTIONS(1334), + [aux_sym_bind_address_token1] = ACTIONS(1334), + [aux_sym_bind_interface_token1] = ACTIONS(1334), + [aux_sym_canonical_domains_token1] = ACTIONS(1334), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1334), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1334), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1334), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1334), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1334), + [aux_sym_certificate_file_token1] = ACTIONS(1334), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1334), + [aux_sym_check_host_ip_token1] = ACTIONS(1334), + [aux_sym_ciphers_token1] = ACTIONS(1334), + [aux_sym_cipher_token1] = ACTIONS(1336), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1334), + [aux_sym_compression_token1] = ACTIONS(1334), + [aux_sym_connection_attempts_token1] = ACTIONS(1334), + [aux_sym_connect_timeout_token1] = ACTIONS(1334), + [aux_sym_control_master_token1] = ACTIONS(1334), + [aux_sym_control_path_token1] = ACTIONS(1334), + [aux_sym_control_persist_token1] = ACTIONS(1334), + [aux_sym_dynamic_forward_token1] = ACTIONS(1334), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1334), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1334), + [aux_sym_escape_char_token1] = ACTIONS(1334), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1334), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1334), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1334), + [aux_sym_forward_agent_token1] = ACTIONS(1334), + [aux_sym_forward_x11_token1] = ACTIONS(1336), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1334), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1334), + [aux_sym_gateway_ports_token1] = ACTIONS(1334), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1334), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1334), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1334), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1334), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1334), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1334), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1334), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1334), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1334), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1334), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1334), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1334), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1334), + [aux_sym_host_key_alias_token1] = ACTIONS(1334), + [aux_sym_hostname_token1] = ACTIONS(1334), + [aux_sym_identities_only_token1] = ACTIONS(1334), + [aux_sym_identity_agent_token1] = ACTIONS(1334), + [aux_sym_identity_file_token1] = ACTIONS(1334), + [aux_sym_ignore_unknown_token1] = ACTIONS(1334), + [aux_sym_include_token1] = ACTIONS(1334), + [aux_sym_ip_qos_token1] = ACTIONS(1334), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1334), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1334), + [aux_sym_kex_algorithms_token1] = ACTIONS(1334), + [aux_sym_known_hosts_command_token1] = ACTIONS(1334), + [aux_sym_local_command_token1] = ACTIONS(1334), + [aux_sym_local_forward_token1] = ACTIONS(1334), + [aux_sym_log_level_token1] = ACTIONS(1334), + [aux_sym_log_verbose_token1] = ACTIONS(1334), + [aux_sym_macs_token1] = ACTIONS(1334), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1334), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1334), + [aux_sym_password_authentication_token1] = ACTIONS(1334), + [aux_sym_permit_local_command_token1] = ACTIONS(1334), + [aux_sym_permit_remote_open_token1] = ACTIONS(1334), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1334), + [aux_sym_port_token1] = ACTIONS(1334), + [aux_sym_preferred_authentications_token1] = ACTIONS(1334), + [aux_sym_protocol_token1] = ACTIONS(1334), + [aux_sym_proxy_command_token1] = ACTIONS(1334), + [aux_sym_proxy_jump_token1] = ACTIONS(1334), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1334), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1334), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1334), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1334), + [aux_sym_rekey_limit_token1] = ACTIONS(1334), + [aux_sym_remote_command_token1] = ACTIONS(1334), + [aux_sym_remote_forward_token1] = ACTIONS(1334), + [aux_sym_request_tty_token1] = ACTIONS(1334), + [aux_sym_required_rsa_size_token1] = ACTIONS(1334), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1334), + [aux_sym_security_key_provider_token1] = ACTIONS(1334), + [aux_sym_send_env_token1] = ACTIONS(1334), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1334), + [aux_sym_server_alive_interval_token1] = ACTIONS(1334), + [aux_sym_session_type_token1] = ACTIONS(1334), + [aux_sym_set_env_token1] = ACTIONS(1334), + [aux_sym_stdin_null_token1] = ACTIONS(1334), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1334), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1334), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1334), + [aux_sym_syslog_facility_token1] = ACTIONS(1334), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1334), + [aux_sym_keep_alive_token1] = ACTIONS(1334), + [aux_sym_tunnel_token1] = ACTIONS(1336), + [aux_sym_tunnel_device_token1] = ACTIONS(1334), + [aux_sym_update_host_keys_token1] = ACTIONS(1334), + [aux_sym_use_keychain_token1] = ACTIONS(1334), + [aux_sym_use_roaming_token1] = ACTIONS(1334), + [aux_sym_user_token1] = ACTIONS(1336), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1334), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1334), + [aux_sym_visual_host_key_token1] = ACTIONS(1334), + [aux_sym_xauth_location_token1] = ACTIONS(1334), }, [600] = { - [ts_builtin_sym_end] = ACTIONS(789), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(791), - [aux_sym_match_token1] = ACTIONS(789), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(789), - [aux_sym_address_family_token1] = ACTIONS(789), - [aux_sym_batch_mode_token1] = ACTIONS(789), - [aux_sym_bind_address_token1] = ACTIONS(789), - [aux_sym_bind_interface_token1] = ACTIONS(789), - [aux_sym_canonical_domains_token1] = ACTIONS(789), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(789), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(789), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(789), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(789), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(789), - [aux_sym_certificate_file_token1] = ACTIONS(789), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(789), - [aux_sym_check_host_ip_token1] = ACTIONS(789), - [aux_sym_ciphers_token1] = ACTIONS(789), - [aux_sym_cipher_token1] = ACTIONS(791), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(789), - [aux_sym_compression_token1] = ACTIONS(789), - [aux_sym_connection_attempts_token1] = ACTIONS(789), - [aux_sym_connect_timeout_token1] = ACTIONS(789), - [aux_sym_control_master_token1] = ACTIONS(789), - [aux_sym_control_path_token1] = ACTIONS(789), - [aux_sym_control_persist_token1] = ACTIONS(789), - [aux_sym_dynamic_forward_token1] = ACTIONS(789), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(789), - [aux_sym_escape_char_token1] = ACTIONS(789), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(789), - [aux_sym_fingerprint_hash_token1] = ACTIONS(789), - [aux_sym_fork_after_authentication_token1] = ACTIONS(789), - [aux_sym_forward_agent_token1] = ACTIONS(789), - [aux_sym_forward_x11_token1] = ACTIONS(791), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(789), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(789), - [aux_sym_gateway_ports_token1] = ACTIONS(789), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(789), - [aux_sym_gssapi_authentication_token1] = ACTIONS(789), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(789), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(789), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(789), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(789), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(789), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(789), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(789), - [aux_sym_hash_known_hosts_token1] = ACTIONS(789), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(789), - [aux_sym_hostbased_authentication_token1] = ACTIONS(789), - [aux_sym_host_key_algorithms_token1] = ACTIONS(789), - [aux_sym_host_key_alias_token1] = ACTIONS(789), - [aux_sym_hostname_token1] = ACTIONS(789), - [aux_sym_identities_only_token1] = ACTIONS(789), - [aux_sym_identity_agent_token1] = ACTIONS(789), - [aux_sym_identity_file_token1] = ACTIONS(789), - [aux_sym_ignore_unknown_token1] = ACTIONS(789), - [aux_sym_include_token1] = ACTIONS(789), - [aux_sym_ip_qos_token1] = ACTIONS(789), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(789), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(789), - [aux_sym_kex_algorithms_token1] = ACTIONS(789), - [aux_sym_known_hosts_command_token1] = ACTIONS(789), - [aux_sym_local_command_token1] = ACTIONS(789), - [aux_sym_local_forward_token1] = ACTIONS(789), - [aux_sym_log_level_token1] = ACTIONS(789), - [aux_sym_log_verbose_token1] = ACTIONS(789), - [aux_sym_macs_token1] = ACTIONS(789), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(789), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(789), - [aux_sym_password_authentication_token1] = ACTIONS(789), - [aux_sym_permit_local_command_token1] = ACTIONS(789), - [aux_sym_permit_remote_open_token1] = ACTIONS(789), - [aux_sym_pkcs11_provider_token1] = ACTIONS(789), - [aux_sym_port_token1] = ACTIONS(789), - [aux_sym_preferred_authentications_token1] = ACTIONS(789), - [aux_sym_protocol_token1] = ACTIONS(789), - [aux_sym_proxy_command_token1] = ACTIONS(789), - [aux_sym_proxy_jump_token1] = ACTIONS(789), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(789), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(789), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(789), - [aux_sym_pubkey_authentication_token1] = ACTIONS(789), - [aux_sym_rekey_limit_token1] = ACTIONS(789), - [aux_sym_remote_command_token1] = ACTIONS(789), - [aux_sym_remote_forward_token1] = ACTIONS(789), - [aux_sym_request_tty_token1] = ACTIONS(789), - [aux_sym_required_rsa_size_token1] = ACTIONS(789), - [aux_sym_revoked_host_keys_token1] = ACTIONS(789), - [aux_sym_security_key_provider_token1] = ACTIONS(789), - [aux_sym_send_env_token1] = ACTIONS(789), - [aux_sym_server_alive_count_max_token1] = ACTIONS(789), - [aux_sym_server_alive_interval_token1] = ACTIONS(789), - [aux_sym_session_type_token1] = ACTIONS(789), - [aux_sym_set_env_token1] = ACTIONS(789), - [aux_sym_stdin_null_token1] = ACTIONS(789), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(789), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(789), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(789), - [aux_sym_syslog_facility_token1] = ACTIONS(789), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(789), - [aux_sym_keep_alive_token1] = ACTIONS(789), - [aux_sym_tunnel_token1] = ACTIONS(791), - [aux_sym_tunnel_device_token1] = ACTIONS(789), - [aux_sym_update_host_keys_token1] = ACTIONS(789), - [aux_sym_use_keychain_token1] = ACTIONS(789), - [aux_sym_use_roaming_token1] = ACTIONS(789), - [aux_sym_user_token1] = ACTIONS(791), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(789), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(789), - [aux_sym_visual_host_key_token1] = ACTIONS(789), - [aux_sym_xauth_location_token1] = ACTIONS(789), + [ts_builtin_sym_end] = ACTIONS(1340), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1342), + [aux_sym_match_token1] = ACTIONS(1340), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1340), + [aux_sym_address_family_token1] = ACTIONS(1340), + [aux_sym_batch_mode_token1] = ACTIONS(1340), + [aux_sym_bind_address_token1] = ACTIONS(1340), + [aux_sym_bind_interface_token1] = ACTIONS(1340), + [aux_sym_canonical_domains_token1] = ACTIONS(1340), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1340), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1340), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1340), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1340), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1340), + [aux_sym_certificate_file_token1] = ACTIONS(1340), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1340), + [aux_sym_check_host_ip_token1] = ACTIONS(1340), + [aux_sym_ciphers_token1] = ACTIONS(1340), + [aux_sym_cipher_token1] = ACTIONS(1342), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1340), + [aux_sym_compression_token1] = ACTIONS(1340), + [aux_sym_connection_attempts_token1] = ACTIONS(1340), + [aux_sym_connect_timeout_token1] = ACTIONS(1340), + [aux_sym_control_master_token1] = ACTIONS(1340), + [aux_sym_control_path_token1] = ACTIONS(1340), + [aux_sym_control_persist_token1] = ACTIONS(1340), + [aux_sym_dynamic_forward_token1] = ACTIONS(1340), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1340), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1340), + [aux_sym_escape_char_token1] = ACTIONS(1340), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1340), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1340), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1340), + [aux_sym_forward_agent_token1] = ACTIONS(1340), + [aux_sym_forward_x11_token1] = ACTIONS(1342), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1340), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1340), + [aux_sym_gateway_ports_token1] = ACTIONS(1340), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1340), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1340), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1340), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1340), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1340), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1340), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1340), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1340), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1340), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1340), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1340), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1340), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1340), + [aux_sym_host_key_alias_token1] = ACTIONS(1340), + [aux_sym_hostname_token1] = ACTIONS(1340), + [aux_sym_identities_only_token1] = ACTIONS(1340), + [aux_sym_identity_agent_token1] = ACTIONS(1340), + [aux_sym_identity_file_token1] = ACTIONS(1340), + [aux_sym_ignore_unknown_token1] = ACTIONS(1340), + [aux_sym_include_token1] = ACTIONS(1340), + [aux_sym_ip_qos_token1] = ACTIONS(1340), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1340), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1340), + [aux_sym_kex_algorithms_token1] = ACTIONS(1340), + [aux_sym_known_hosts_command_token1] = ACTIONS(1340), + [aux_sym_local_command_token1] = ACTIONS(1340), + [aux_sym_local_forward_token1] = ACTIONS(1340), + [aux_sym_log_level_token1] = ACTIONS(1340), + [aux_sym_log_verbose_token1] = ACTIONS(1340), + [aux_sym_macs_token1] = ACTIONS(1340), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1340), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1340), + [aux_sym_password_authentication_token1] = ACTIONS(1340), + [aux_sym_permit_local_command_token1] = ACTIONS(1340), + [aux_sym_permit_remote_open_token1] = ACTIONS(1340), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1340), + [aux_sym_port_token1] = ACTIONS(1340), + [aux_sym_preferred_authentications_token1] = ACTIONS(1340), + [aux_sym_protocol_token1] = ACTIONS(1340), + [aux_sym_proxy_command_token1] = ACTIONS(1340), + [aux_sym_proxy_jump_token1] = ACTIONS(1340), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1340), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1340), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1340), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1340), + [aux_sym_rekey_limit_token1] = ACTIONS(1340), + [aux_sym_remote_command_token1] = ACTIONS(1340), + [aux_sym_remote_forward_token1] = ACTIONS(1340), + [aux_sym_request_tty_token1] = ACTIONS(1340), + [aux_sym_required_rsa_size_token1] = ACTIONS(1340), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1340), + [aux_sym_security_key_provider_token1] = ACTIONS(1340), + [aux_sym_send_env_token1] = ACTIONS(1340), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1340), + [aux_sym_server_alive_interval_token1] = ACTIONS(1340), + [aux_sym_session_type_token1] = ACTIONS(1340), + [aux_sym_set_env_token1] = ACTIONS(1340), + [aux_sym_stdin_null_token1] = ACTIONS(1340), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1340), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1340), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1340), + [aux_sym_syslog_facility_token1] = ACTIONS(1340), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1340), + [aux_sym_keep_alive_token1] = ACTIONS(1340), + [aux_sym_tunnel_token1] = ACTIONS(1342), + [aux_sym_tunnel_device_token1] = ACTIONS(1340), + [aux_sym_update_host_keys_token1] = ACTIONS(1340), + [aux_sym_use_keychain_token1] = ACTIONS(1340), + [aux_sym_use_roaming_token1] = ACTIONS(1340), + [aux_sym_user_token1] = ACTIONS(1342), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1340), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1340), + [aux_sym_visual_host_key_token1] = ACTIONS(1340), + [aux_sym_xauth_location_token1] = ACTIONS(1340), }, [601] = { - [ts_builtin_sym_end] = ACTIONS(795), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(797), - [aux_sym_match_token1] = ACTIONS(795), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(795), - [aux_sym_address_family_token1] = ACTIONS(795), - [aux_sym_batch_mode_token1] = ACTIONS(795), - [aux_sym_bind_address_token1] = ACTIONS(795), - [aux_sym_bind_interface_token1] = ACTIONS(795), - [aux_sym_canonical_domains_token1] = ACTIONS(795), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(795), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(795), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(795), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(795), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(795), - [aux_sym_certificate_file_token1] = ACTIONS(795), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(795), - [aux_sym_check_host_ip_token1] = ACTIONS(795), - [aux_sym_ciphers_token1] = ACTIONS(795), - [aux_sym_cipher_token1] = ACTIONS(797), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(795), - [aux_sym_compression_token1] = ACTIONS(795), - [aux_sym_connection_attempts_token1] = ACTIONS(795), - [aux_sym_connect_timeout_token1] = ACTIONS(795), - [aux_sym_control_master_token1] = ACTIONS(795), - [aux_sym_control_path_token1] = ACTIONS(795), - [aux_sym_control_persist_token1] = ACTIONS(795), - [aux_sym_dynamic_forward_token1] = ACTIONS(795), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(795), - [aux_sym_escape_char_token1] = ACTIONS(795), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(795), - [aux_sym_fingerprint_hash_token1] = ACTIONS(795), - [aux_sym_fork_after_authentication_token1] = ACTIONS(795), - [aux_sym_forward_agent_token1] = ACTIONS(795), - [aux_sym_forward_x11_token1] = ACTIONS(797), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(795), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(795), - [aux_sym_gateway_ports_token1] = ACTIONS(795), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(795), - [aux_sym_gssapi_authentication_token1] = ACTIONS(795), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(795), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(795), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(795), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(795), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(795), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(795), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(795), - [aux_sym_hash_known_hosts_token1] = ACTIONS(795), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(795), - [aux_sym_hostbased_authentication_token1] = ACTIONS(795), - [aux_sym_host_key_algorithms_token1] = ACTIONS(795), - [aux_sym_host_key_alias_token1] = ACTIONS(795), - [aux_sym_hostname_token1] = ACTIONS(795), - [aux_sym_identities_only_token1] = ACTIONS(795), - [aux_sym_identity_agent_token1] = ACTIONS(795), - [aux_sym_identity_file_token1] = ACTIONS(795), - [aux_sym_ignore_unknown_token1] = ACTIONS(795), - [aux_sym_include_token1] = ACTIONS(795), - [aux_sym_ip_qos_token1] = ACTIONS(795), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(795), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(795), - [aux_sym_kex_algorithms_token1] = ACTIONS(795), - [aux_sym_known_hosts_command_token1] = ACTIONS(795), - [aux_sym_local_command_token1] = ACTIONS(795), - [aux_sym_local_forward_token1] = ACTIONS(795), - [aux_sym_log_level_token1] = ACTIONS(795), - [aux_sym_log_verbose_token1] = ACTIONS(795), - [aux_sym_macs_token1] = ACTIONS(795), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(795), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(795), - [aux_sym_password_authentication_token1] = ACTIONS(795), - [aux_sym_permit_local_command_token1] = ACTIONS(795), - [aux_sym_permit_remote_open_token1] = ACTIONS(795), - [aux_sym_pkcs11_provider_token1] = ACTIONS(795), - [aux_sym_port_token1] = ACTIONS(795), - [aux_sym_preferred_authentications_token1] = ACTIONS(795), - [aux_sym_protocol_token1] = ACTIONS(795), - [aux_sym_proxy_command_token1] = ACTIONS(795), - [aux_sym_proxy_jump_token1] = ACTIONS(795), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(795), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(795), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(795), - [aux_sym_pubkey_authentication_token1] = ACTIONS(795), - [aux_sym_rekey_limit_token1] = ACTIONS(795), - [aux_sym_remote_command_token1] = ACTIONS(795), - [aux_sym_remote_forward_token1] = ACTIONS(795), - [aux_sym_request_tty_token1] = ACTIONS(795), - [aux_sym_required_rsa_size_token1] = ACTIONS(795), - [aux_sym_revoked_host_keys_token1] = ACTIONS(795), - [aux_sym_security_key_provider_token1] = ACTIONS(795), - [aux_sym_send_env_token1] = ACTIONS(795), - [aux_sym_server_alive_count_max_token1] = ACTIONS(795), - [aux_sym_server_alive_interval_token1] = ACTIONS(795), - [aux_sym_session_type_token1] = ACTIONS(795), - [aux_sym_set_env_token1] = ACTIONS(795), - [aux_sym_stdin_null_token1] = ACTIONS(795), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(795), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(795), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(795), - [aux_sym_syslog_facility_token1] = ACTIONS(795), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(795), - [aux_sym_keep_alive_token1] = ACTIONS(795), - [aux_sym_tunnel_token1] = ACTIONS(797), - [aux_sym_tunnel_device_token1] = ACTIONS(795), - [aux_sym_update_host_keys_token1] = ACTIONS(795), - [aux_sym_use_keychain_token1] = ACTIONS(795), - [aux_sym_use_roaming_token1] = ACTIONS(795), - [aux_sym_user_token1] = ACTIONS(797), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(795), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(795), - [aux_sym_visual_host_key_token1] = ACTIONS(795), - [aux_sym_xauth_location_token1] = ACTIONS(795), + [ts_builtin_sym_end] = ACTIONS(968), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(970), + [aux_sym_match_token1] = ACTIONS(968), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(968), + [aux_sym_address_family_token1] = ACTIONS(968), + [aux_sym_batch_mode_token1] = ACTIONS(968), + [aux_sym_bind_address_token1] = ACTIONS(968), + [aux_sym_bind_interface_token1] = ACTIONS(968), + [aux_sym_canonical_domains_token1] = ACTIONS(968), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(968), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(968), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(968), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(968), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(968), + [aux_sym_certificate_file_token1] = ACTIONS(968), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(968), + [aux_sym_check_host_ip_token1] = ACTIONS(968), + [aux_sym_ciphers_token1] = ACTIONS(968), + [aux_sym_cipher_token1] = ACTIONS(970), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(968), + [aux_sym_compression_token1] = ACTIONS(968), + [aux_sym_connection_attempts_token1] = ACTIONS(968), + [aux_sym_connect_timeout_token1] = ACTIONS(968), + [aux_sym_control_master_token1] = ACTIONS(968), + [aux_sym_control_path_token1] = ACTIONS(968), + [aux_sym_control_persist_token1] = ACTIONS(968), + [aux_sym_dynamic_forward_token1] = ACTIONS(968), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(968), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(968), + [aux_sym_escape_char_token1] = ACTIONS(968), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(968), + [aux_sym_fingerprint_hash_token1] = ACTIONS(968), + [aux_sym_fork_after_authentication_token1] = ACTIONS(968), + [aux_sym_forward_agent_token1] = ACTIONS(968), + [aux_sym_forward_x11_token1] = ACTIONS(970), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(968), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(968), + [aux_sym_gateway_ports_token1] = ACTIONS(968), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(968), + [aux_sym_gssapi_authentication_token1] = ACTIONS(968), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(968), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(968), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(968), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(968), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(968), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(968), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(968), + [aux_sym_hash_known_hosts_token1] = ACTIONS(968), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(968), + [aux_sym_hostbased_authentication_token1] = ACTIONS(968), + [aux_sym_host_key_algorithms_token1] = ACTIONS(968), + [aux_sym_host_key_alias_token1] = ACTIONS(968), + [aux_sym_hostname_token1] = ACTIONS(968), + [aux_sym_identities_only_token1] = ACTIONS(968), + [aux_sym_identity_agent_token1] = ACTIONS(968), + [aux_sym_identity_file_token1] = ACTIONS(968), + [aux_sym_ignore_unknown_token1] = ACTIONS(968), + [aux_sym_include_token1] = ACTIONS(968), + [aux_sym_ip_qos_token1] = ACTIONS(968), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(968), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(968), + [aux_sym_kex_algorithms_token1] = ACTIONS(968), + [aux_sym_known_hosts_command_token1] = ACTIONS(968), + [aux_sym_local_command_token1] = ACTIONS(968), + [aux_sym_local_forward_token1] = ACTIONS(968), + [aux_sym_log_level_token1] = ACTIONS(968), + [aux_sym_log_verbose_token1] = ACTIONS(968), + [aux_sym_macs_token1] = ACTIONS(968), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(968), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(968), + [aux_sym_password_authentication_token1] = ACTIONS(968), + [aux_sym_permit_local_command_token1] = ACTIONS(968), + [aux_sym_permit_remote_open_token1] = ACTIONS(968), + [aux_sym_pkcs11_provider_token1] = ACTIONS(968), + [aux_sym_port_token1] = ACTIONS(968), + [aux_sym_preferred_authentications_token1] = ACTIONS(968), + [aux_sym_protocol_token1] = ACTIONS(968), + [aux_sym_proxy_command_token1] = ACTIONS(968), + [aux_sym_proxy_jump_token1] = ACTIONS(968), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(968), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(968), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(968), + [aux_sym_pubkey_authentication_token1] = ACTIONS(968), + [aux_sym_rekey_limit_token1] = ACTIONS(968), + [aux_sym_remote_command_token1] = ACTIONS(968), + [aux_sym_remote_forward_token1] = ACTIONS(968), + [aux_sym_request_tty_token1] = ACTIONS(968), + [aux_sym_required_rsa_size_token1] = ACTIONS(968), + [aux_sym_revoked_host_keys_token1] = ACTIONS(968), + [aux_sym_security_key_provider_token1] = ACTIONS(968), + [aux_sym_send_env_token1] = ACTIONS(968), + [aux_sym_server_alive_count_max_token1] = ACTIONS(968), + [aux_sym_server_alive_interval_token1] = ACTIONS(968), + [aux_sym_session_type_token1] = ACTIONS(968), + [aux_sym_set_env_token1] = ACTIONS(968), + [aux_sym_stdin_null_token1] = ACTIONS(968), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(968), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(968), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(968), + [aux_sym_syslog_facility_token1] = ACTIONS(968), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(968), + [aux_sym_keep_alive_token1] = ACTIONS(968), + [aux_sym_tunnel_token1] = ACTIONS(970), + [aux_sym_tunnel_device_token1] = ACTIONS(968), + [aux_sym_update_host_keys_token1] = ACTIONS(968), + [aux_sym_use_keychain_token1] = ACTIONS(968), + [aux_sym_use_roaming_token1] = ACTIONS(968), + [aux_sym_user_token1] = ACTIONS(970), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(968), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(968), + [aux_sym_visual_host_key_token1] = ACTIONS(968), + [aux_sym_xauth_location_token1] = ACTIONS(968), }, [602] = { - [ts_builtin_sym_end] = ACTIONS(801), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(803), - [aux_sym_match_token1] = ACTIONS(801), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(801), - [aux_sym_address_family_token1] = ACTIONS(801), - [aux_sym_batch_mode_token1] = ACTIONS(801), - [aux_sym_bind_address_token1] = ACTIONS(801), - [aux_sym_bind_interface_token1] = ACTIONS(801), - [aux_sym_canonical_domains_token1] = ACTIONS(801), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(801), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(801), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(801), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(801), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(801), - [aux_sym_certificate_file_token1] = ACTIONS(801), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(801), - [aux_sym_check_host_ip_token1] = ACTIONS(801), - [aux_sym_ciphers_token1] = ACTIONS(801), - [aux_sym_cipher_token1] = ACTIONS(803), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(801), - [aux_sym_compression_token1] = ACTIONS(801), - [aux_sym_connection_attempts_token1] = ACTIONS(801), - [aux_sym_connect_timeout_token1] = ACTIONS(801), - [aux_sym_control_master_token1] = ACTIONS(801), - [aux_sym_control_path_token1] = ACTIONS(801), - [aux_sym_control_persist_token1] = ACTIONS(801), - [aux_sym_dynamic_forward_token1] = ACTIONS(801), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(801), - [aux_sym_escape_char_token1] = ACTIONS(801), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(801), - [aux_sym_fingerprint_hash_token1] = ACTIONS(801), - [aux_sym_fork_after_authentication_token1] = ACTIONS(801), - [aux_sym_forward_agent_token1] = ACTIONS(801), - [aux_sym_forward_x11_token1] = ACTIONS(803), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(801), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(801), - [aux_sym_gateway_ports_token1] = ACTIONS(801), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(801), - [aux_sym_gssapi_authentication_token1] = ACTIONS(801), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(801), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(801), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(801), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(801), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(801), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(801), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(801), - [aux_sym_hash_known_hosts_token1] = ACTIONS(801), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(801), - [aux_sym_hostbased_authentication_token1] = ACTIONS(801), - [aux_sym_host_key_algorithms_token1] = ACTIONS(801), - [aux_sym_host_key_alias_token1] = ACTIONS(801), - [aux_sym_hostname_token1] = ACTIONS(801), - [aux_sym_identities_only_token1] = ACTIONS(801), - [aux_sym_identity_agent_token1] = ACTIONS(801), - [aux_sym_identity_file_token1] = ACTIONS(801), - [aux_sym_ignore_unknown_token1] = ACTIONS(801), - [aux_sym_include_token1] = ACTIONS(801), - [aux_sym_ip_qos_token1] = ACTIONS(801), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(801), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(801), - [aux_sym_kex_algorithms_token1] = ACTIONS(801), - [aux_sym_known_hosts_command_token1] = ACTIONS(801), - [aux_sym_local_command_token1] = ACTIONS(801), - [aux_sym_local_forward_token1] = ACTIONS(801), - [aux_sym_log_level_token1] = ACTIONS(801), - [aux_sym_log_verbose_token1] = ACTIONS(801), - [aux_sym_macs_token1] = ACTIONS(801), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(801), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(801), - [aux_sym_password_authentication_token1] = ACTIONS(801), - [aux_sym_permit_local_command_token1] = ACTIONS(801), - [aux_sym_permit_remote_open_token1] = ACTIONS(801), - [aux_sym_pkcs11_provider_token1] = ACTIONS(801), - [aux_sym_port_token1] = ACTIONS(801), - [aux_sym_preferred_authentications_token1] = ACTIONS(801), - [aux_sym_protocol_token1] = ACTIONS(801), - [aux_sym_proxy_command_token1] = ACTIONS(801), - [aux_sym_proxy_jump_token1] = ACTIONS(801), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(801), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(801), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(801), - [aux_sym_pubkey_authentication_token1] = ACTIONS(801), - [aux_sym_rekey_limit_token1] = ACTIONS(801), - [aux_sym_remote_command_token1] = ACTIONS(801), - [aux_sym_remote_forward_token1] = ACTIONS(801), - [aux_sym_request_tty_token1] = ACTIONS(801), - [aux_sym_required_rsa_size_token1] = ACTIONS(801), - [aux_sym_revoked_host_keys_token1] = ACTIONS(801), - [aux_sym_security_key_provider_token1] = ACTIONS(801), - [aux_sym_send_env_token1] = ACTIONS(801), - [aux_sym_server_alive_count_max_token1] = ACTIONS(801), - [aux_sym_server_alive_interval_token1] = ACTIONS(801), - [aux_sym_session_type_token1] = ACTIONS(801), - [aux_sym_set_env_token1] = ACTIONS(801), - [aux_sym_stdin_null_token1] = ACTIONS(801), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(801), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(801), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(801), - [aux_sym_syslog_facility_token1] = ACTIONS(801), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(801), - [aux_sym_keep_alive_token1] = ACTIONS(801), - [aux_sym_tunnel_token1] = ACTIONS(803), - [aux_sym_tunnel_device_token1] = ACTIONS(801), - [aux_sym_update_host_keys_token1] = ACTIONS(801), - [aux_sym_use_keychain_token1] = ACTIONS(801), - [aux_sym_use_roaming_token1] = ACTIONS(801), - [aux_sym_user_token1] = ACTIONS(803), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(801), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(801), - [aux_sym_visual_host_key_token1] = ACTIONS(801), - [aux_sym_xauth_location_token1] = ACTIONS(801), + [ts_builtin_sym_end] = ACTIONS(3372), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3374), + [aux_sym_match_token1] = ACTIONS(3372), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3372), + [aux_sym_address_family_token1] = ACTIONS(3372), + [aux_sym_batch_mode_token1] = ACTIONS(3372), + [aux_sym_bind_address_token1] = ACTIONS(3372), + [aux_sym_bind_interface_token1] = ACTIONS(3372), + [aux_sym_canonical_domains_token1] = ACTIONS(3372), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3372), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3372), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3372), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3372), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3372), + [aux_sym_certificate_file_token1] = ACTIONS(3372), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3372), + [aux_sym_check_host_ip_token1] = ACTIONS(3372), + [aux_sym_ciphers_token1] = ACTIONS(3372), + [aux_sym_cipher_token1] = ACTIONS(3374), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3372), + [aux_sym_compression_token1] = ACTIONS(3372), + [aux_sym_connection_attempts_token1] = ACTIONS(3372), + [aux_sym_connect_timeout_token1] = ACTIONS(3372), + [aux_sym_control_master_token1] = ACTIONS(3372), + [aux_sym_control_path_token1] = ACTIONS(3372), + [aux_sym_control_persist_token1] = ACTIONS(3372), + [aux_sym_dynamic_forward_token1] = ACTIONS(3372), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3372), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3372), + [aux_sym_escape_char_token1] = ACTIONS(3372), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3372), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3372), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3372), + [aux_sym_forward_agent_token1] = ACTIONS(3372), + [aux_sym_forward_x11_token1] = ACTIONS(3374), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3372), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3372), + [aux_sym_gateway_ports_token1] = ACTIONS(3372), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3372), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3372), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3372), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3372), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3372), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3372), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3372), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3372), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3372), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3372), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3372), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3372), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3372), + [aux_sym_host_key_alias_token1] = ACTIONS(3372), + [aux_sym_hostname_token1] = ACTIONS(3372), + [aux_sym_identities_only_token1] = ACTIONS(3372), + [aux_sym_identity_agent_token1] = ACTIONS(3372), + [aux_sym_identity_file_token1] = ACTIONS(3372), + [aux_sym_ignore_unknown_token1] = ACTIONS(3372), + [aux_sym_include_token1] = ACTIONS(3372), + [aux_sym_ip_qos_token1] = ACTIONS(3372), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3372), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3372), + [aux_sym_kex_algorithms_token1] = ACTIONS(3372), + [aux_sym_known_hosts_command_token1] = ACTIONS(3372), + [aux_sym_local_command_token1] = ACTIONS(3372), + [aux_sym_local_forward_token1] = ACTIONS(3372), + [aux_sym_log_level_token1] = ACTIONS(3372), + [aux_sym_log_verbose_token1] = ACTIONS(3372), + [aux_sym_macs_token1] = ACTIONS(3372), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3372), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3372), + [aux_sym_password_authentication_token1] = ACTIONS(3372), + [aux_sym_permit_local_command_token1] = ACTIONS(3372), + [aux_sym_permit_remote_open_token1] = ACTIONS(3372), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3372), + [aux_sym_port_token1] = ACTIONS(3372), + [aux_sym_preferred_authentications_token1] = ACTIONS(3372), + [aux_sym_protocol_token1] = ACTIONS(3372), + [aux_sym_proxy_command_token1] = ACTIONS(3372), + [aux_sym_proxy_jump_token1] = ACTIONS(3372), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3372), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3372), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3372), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3372), + [aux_sym_rekey_limit_token1] = ACTIONS(3372), + [aux_sym_remote_command_token1] = ACTIONS(3372), + [aux_sym_remote_forward_token1] = ACTIONS(3372), + [aux_sym_request_tty_token1] = ACTIONS(3372), + [aux_sym_required_rsa_size_token1] = ACTIONS(3372), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3372), + [aux_sym_security_key_provider_token1] = ACTIONS(3372), + [aux_sym_send_env_token1] = ACTIONS(3372), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3372), + [aux_sym_server_alive_interval_token1] = ACTIONS(3372), + [aux_sym_session_type_token1] = ACTIONS(3372), + [aux_sym_set_env_token1] = ACTIONS(3372), + [aux_sym_stdin_null_token1] = ACTIONS(3372), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3372), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3372), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3372), + [aux_sym_syslog_facility_token1] = ACTIONS(3372), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3372), + [aux_sym_keep_alive_token1] = ACTIONS(3372), + [aux_sym_tunnel_token1] = ACTIONS(3374), + [aux_sym_tunnel_device_token1] = ACTIONS(3372), + [aux_sym_update_host_keys_token1] = ACTIONS(3372), + [aux_sym_use_keychain_token1] = ACTIONS(3372), + [aux_sym_use_roaming_token1] = ACTIONS(3372), + [aux_sym_user_token1] = ACTIONS(3374), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3372), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3372), + [aux_sym_visual_host_key_token1] = ACTIONS(3372), + [aux_sym_xauth_location_token1] = ACTIONS(3372), }, [603] = { - [ts_builtin_sym_end] = ACTIONS(807), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(809), - [aux_sym_match_token1] = ACTIONS(807), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(807), - [aux_sym_address_family_token1] = ACTIONS(807), - [aux_sym_batch_mode_token1] = ACTIONS(807), - [aux_sym_bind_address_token1] = ACTIONS(807), - [aux_sym_bind_interface_token1] = ACTIONS(807), - [aux_sym_canonical_domains_token1] = ACTIONS(807), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(807), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(807), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(807), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(807), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(807), - [aux_sym_certificate_file_token1] = ACTIONS(807), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(807), - [aux_sym_check_host_ip_token1] = ACTIONS(807), - [aux_sym_ciphers_token1] = ACTIONS(807), - [aux_sym_cipher_token1] = ACTIONS(809), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(807), - [aux_sym_compression_token1] = ACTIONS(807), - [aux_sym_connection_attempts_token1] = ACTIONS(807), - [aux_sym_connect_timeout_token1] = ACTIONS(807), - [aux_sym_control_master_token1] = ACTIONS(807), - [aux_sym_control_path_token1] = ACTIONS(807), - [aux_sym_control_persist_token1] = ACTIONS(807), - [aux_sym_dynamic_forward_token1] = ACTIONS(807), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(807), - [aux_sym_escape_char_token1] = ACTIONS(807), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(807), - [aux_sym_fingerprint_hash_token1] = ACTIONS(807), - [aux_sym_fork_after_authentication_token1] = ACTIONS(807), - [aux_sym_forward_agent_token1] = ACTIONS(807), - [aux_sym_forward_x11_token1] = ACTIONS(809), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(807), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(807), - [aux_sym_gateway_ports_token1] = ACTIONS(807), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(807), - [aux_sym_gssapi_authentication_token1] = ACTIONS(807), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(807), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(807), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(807), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(807), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(807), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(807), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(807), - [aux_sym_hash_known_hosts_token1] = ACTIONS(807), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(807), - [aux_sym_hostbased_authentication_token1] = ACTIONS(807), - [aux_sym_host_key_algorithms_token1] = ACTIONS(807), - [aux_sym_host_key_alias_token1] = ACTIONS(807), - [aux_sym_hostname_token1] = ACTIONS(807), - [aux_sym_identities_only_token1] = ACTIONS(807), - [aux_sym_identity_agent_token1] = ACTIONS(807), - [aux_sym_identity_file_token1] = ACTIONS(807), - [aux_sym_ignore_unknown_token1] = ACTIONS(807), - [aux_sym_include_token1] = ACTIONS(807), - [aux_sym_ip_qos_token1] = ACTIONS(807), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(807), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(807), - [aux_sym_kex_algorithms_token1] = ACTIONS(807), - [aux_sym_known_hosts_command_token1] = ACTIONS(807), - [aux_sym_local_command_token1] = ACTIONS(807), - [aux_sym_local_forward_token1] = ACTIONS(807), - [aux_sym_log_level_token1] = ACTIONS(807), - [aux_sym_log_verbose_token1] = ACTIONS(807), - [aux_sym_macs_token1] = ACTIONS(807), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(807), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(807), - [aux_sym_password_authentication_token1] = ACTIONS(807), - [aux_sym_permit_local_command_token1] = ACTIONS(807), - [aux_sym_permit_remote_open_token1] = ACTIONS(807), - [aux_sym_pkcs11_provider_token1] = ACTIONS(807), - [aux_sym_port_token1] = ACTIONS(807), - [aux_sym_preferred_authentications_token1] = ACTIONS(807), - [aux_sym_protocol_token1] = ACTIONS(807), - [aux_sym_proxy_command_token1] = ACTIONS(807), - [aux_sym_proxy_jump_token1] = ACTIONS(807), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(807), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(807), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(807), - [aux_sym_pubkey_authentication_token1] = ACTIONS(807), - [aux_sym_rekey_limit_token1] = ACTIONS(807), - [aux_sym_remote_command_token1] = ACTIONS(807), - [aux_sym_remote_forward_token1] = ACTIONS(807), - [aux_sym_request_tty_token1] = ACTIONS(807), - [aux_sym_required_rsa_size_token1] = ACTIONS(807), - [aux_sym_revoked_host_keys_token1] = ACTIONS(807), - [aux_sym_security_key_provider_token1] = ACTIONS(807), - [aux_sym_send_env_token1] = ACTIONS(807), - [aux_sym_server_alive_count_max_token1] = ACTIONS(807), - [aux_sym_server_alive_interval_token1] = ACTIONS(807), - [aux_sym_session_type_token1] = ACTIONS(807), - [aux_sym_set_env_token1] = ACTIONS(807), - [aux_sym_stdin_null_token1] = ACTIONS(807), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(807), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(807), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(807), - [aux_sym_syslog_facility_token1] = ACTIONS(807), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(807), - [aux_sym_keep_alive_token1] = ACTIONS(807), - [aux_sym_tunnel_token1] = ACTIONS(809), - [aux_sym_tunnel_device_token1] = ACTIONS(807), - [aux_sym_update_host_keys_token1] = ACTIONS(807), - [aux_sym_use_keychain_token1] = ACTIONS(807), - [aux_sym_use_roaming_token1] = ACTIONS(807), - [aux_sym_user_token1] = ACTIONS(809), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(807), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(807), - [aux_sym_visual_host_key_token1] = ACTIONS(807), - [aux_sym_xauth_location_token1] = ACTIONS(807), + [ts_builtin_sym_end] = ACTIONS(3376), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3378), + [aux_sym_match_token1] = ACTIONS(3376), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3376), + [aux_sym_address_family_token1] = ACTIONS(3376), + [aux_sym_batch_mode_token1] = ACTIONS(3376), + [aux_sym_bind_address_token1] = ACTIONS(3376), + [aux_sym_bind_interface_token1] = ACTIONS(3376), + [aux_sym_canonical_domains_token1] = ACTIONS(3376), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3376), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3376), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3376), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3376), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3376), + [aux_sym_certificate_file_token1] = ACTIONS(3376), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3376), + [aux_sym_check_host_ip_token1] = ACTIONS(3376), + [aux_sym_ciphers_token1] = ACTIONS(3376), + [aux_sym_cipher_token1] = ACTIONS(3378), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3376), + [aux_sym_compression_token1] = ACTIONS(3376), + [aux_sym_connection_attempts_token1] = ACTIONS(3376), + [aux_sym_connect_timeout_token1] = ACTIONS(3376), + [aux_sym_control_master_token1] = ACTIONS(3376), + [aux_sym_control_path_token1] = ACTIONS(3376), + [aux_sym_control_persist_token1] = ACTIONS(3376), + [aux_sym_dynamic_forward_token1] = ACTIONS(3376), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3376), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3376), + [aux_sym_escape_char_token1] = ACTIONS(3376), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3376), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3376), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3376), + [aux_sym_forward_agent_token1] = ACTIONS(3376), + [aux_sym_forward_x11_token1] = ACTIONS(3378), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3376), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3376), + [aux_sym_gateway_ports_token1] = ACTIONS(3376), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3376), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3376), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3376), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3376), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3376), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3376), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3376), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3376), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3376), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3376), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3376), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3376), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3376), + [aux_sym_host_key_alias_token1] = ACTIONS(3376), + [aux_sym_hostname_token1] = ACTIONS(3376), + [aux_sym_identities_only_token1] = ACTIONS(3376), + [aux_sym_identity_agent_token1] = ACTIONS(3376), + [aux_sym_identity_file_token1] = ACTIONS(3376), + [aux_sym_ignore_unknown_token1] = ACTIONS(3376), + [aux_sym_include_token1] = ACTIONS(3376), + [aux_sym_ip_qos_token1] = ACTIONS(3376), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3376), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3376), + [aux_sym_kex_algorithms_token1] = ACTIONS(3376), + [aux_sym_known_hosts_command_token1] = ACTIONS(3376), + [aux_sym_local_command_token1] = ACTIONS(3376), + [aux_sym_local_forward_token1] = ACTIONS(3376), + [aux_sym_log_level_token1] = ACTIONS(3376), + [aux_sym_log_verbose_token1] = ACTIONS(3376), + [aux_sym_macs_token1] = ACTIONS(3376), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3376), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3376), + [aux_sym_password_authentication_token1] = ACTIONS(3376), + [aux_sym_permit_local_command_token1] = ACTIONS(3376), + [aux_sym_permit_remote_open_token1] = ACTIONS(3376), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3376), + [aux_sym_port_token1] = ACTIONS(3376), + [aux_sym_preferred_authentications_token1] = ACTIONS(3376), + [aux_sym_protocol_token1] = ACTIONS(3376), + [aux_sym_proxy_command_token1] = ACTIONS(3376), + [aux_sym_proxy_jump_token1] = ACTIONS(3376), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3376), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3376), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3376), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3376), + [aux_sym_rekey_limit_token1] = ACTIONS(3376), + [aux_sym_remote_command_token1] = ACTIONS(3376), + [aux_sym_remote_forward_token1] = ACTIONS(3376), + [aux_sym_request_tty_token1] = ACTIONS(3376), + [aux_sym_required_rsa_size_token1] = ACTIONS(3376), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3376), + [aux_sym_security_key_provider_token1] = ACTIONS(3376), + [aux_sym_send_env_token1] = ACTIONS(3376), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3376), + [aux_sym_server_alive_interval_token1] = ACTIONS(3376), + [aux_sym_session_type_token1] = ACTIONS(3376), + [aux_sym_set_env_token1] = ACTIONS(3376), + [aux_sym_stdin_null_token1] = ACTIONS(3376), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3376), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3376), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3376), + [aux_sym_syslog_facility_token1] = ACTIONS(3376), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3376), + [aux_sym_keep_alive_token1] = ACTIONS(3376), + [aux_sym_tunnel_token1] = ACTIONS(3378), + [aux_sym_tunnel_device_token1] = ACTIONS(3376), + [aux_sym_update_host_keys_token1] = ACTIONS(3376), + [aux_sym_use_keychain_token1] = ACTIONS(3376), + [aux_sym_use_roaming_token1] = ACTIONS(3376), + [aux_sym_user_token1] = ACTIONS(3378), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3376), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3376), + [aux_sym_visual_host_key_token1] = ACTIONS(3376), + [aux_sym_xauth_location_token1] = ACTIONS(3376), }, [604] = { - [ts_builtin_sym_end] = ACTIONS(813), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(815), - [aux_sym_match_token1] = ACTIONS(813), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(813), - [aux_sym_address_family_token1] = ACTIONS(813), - [aux_sym_batch_mode_token1] = ACTIONS(813), - [aux_sym_bind_address_token1] = ACTIONS(813), - [aux_sym_bind_interface_token1] = ACTIONS(813), - [aux_sym_canonical_domains_token1] = ACTIONS(813), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(813), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(813), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(813), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(813), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(813), - [aux_sym_certificate_file_token1] = ACTIONS(813), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(813), - [aux_sym_check_host_ip_token1] = ACTIONS(813), - [aux_sym_ciphers_token1] = ACTIONS(813), - [aux_sym_cipher_token1] = ACTIONS(815), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(813), - [aux_sym_compression_token1] = ACTIONS(813), - [aux_sym_connection_attempts_token1] = ACTIONS(813), - [aux_sym_connect_timeout_token1] = ACTIONS(813), - [aux_sym_control_master_token1] = ACTIONS(813), - [aux_sym_control_path_token1] = ACTIONS(813), - [aux_sym_control_persist_token1] = ACTIONS(813), - [aux_sym_dynamic_forward_token1] = ACTIONS(813), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(813), - [aux_sym_escape_char_token1] = ACTIONS(813), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(813), - [aux_sym_fingerprint_hash_token1] = ACTIONS(813), - [aux_sym_fork_after_authentication_token1] = ACTIONS(813), - [aux_sym_forward_agent_token1] = ACTIONS(813), - [aux_sym_forward_x11_token1] = ACTIONS(815), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(813), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(813), - [aux_sym_gateway_ports_token1] = ACTIONS(813), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(813), - [aux_sym_gssapi_authentication_token1] = ACTIONS(813), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(813), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(813), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(813), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(813), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(813), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(813), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(813), - [aux_sym_hash_known_hosts_token1] = ACTIONS(813), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(813), - [aux_sym_hostbased_authentication_token1] = ACTIONS(813), - [aux_sym_host_key_algorithms_token1] = ACTIONS(813), - [aux_sym_host_key_alias_token1] = ACTIONS(813), - [aux_sym_hostname_token1] = ACTIONS(813), - [aux_sym_identities_only_token1] = ACTIONS(813), - [aux_sym_identity_agent_token1] = ACTIONS(813), - [aux_sym_identity_file_token1] = ACTIONS(813), - [aux_sym_ignore_unknown_token1] = ACTIONS(813), - [aux_sym_include_token1] = ACTIONS(813), - [aux_sym_ip_qos_token1] = ACTIONS(813), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(813), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(813), - [aux_sym_kex_algorithms_token1] = ACTIONS(813), - [aux_sym_known_hosts_command_token1] = ACTIONS(813), - [aux_sym_local_command_token1] = ACTIONS(813), - [aux_sym_local_forward_token1] = ACTIONS(813), - [aux_sym_log_level_token1] = ACTIONS(813), - [aux_sym_log_verbose_token1] = ACTIONS(813), - [aux_sym_macs_token1] = ACTIONS(813), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(813), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(813), - [aux_sym_password_authentication_token1] = ACTIONS(813), - [aux_sym_permit_local_command_token1] = ACTIONS(813), - [aux_sym_permit_remote_open_token1] = ACTIONS(813), - [aux_sym_pkcs11_provider_token1] = ACTIONS(813), - [aux_sym_port_token1] = ACTIONS(813), - [aux_sym_preferred_authentications_token1] = ACTIONS(813), - [aux_sym_protocol_token1] = ACTIONS(813), - [aux_sym_proxy_command_token1] = ACTIONS(813), - [aux_sym_proxy_jump_token1] = ACTIONS(813), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(813), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(813), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(813), - [aux_sym_pubkey_authentication_token1] = ACTIONS(813), - [aux_sym_rekey_limit_token1] = ACTIONS(813), - [aux_sym_remote_command_token1] = ACTIONS(813), - [aux_sym_remote_forward_token1] = ACTIONS(813), - [aux_sym_request_tty_token1] = ACTIONS(813), - [aux_sym_required_rsa_size_token1] = ACTIONS(813), - [aux_sym_revoked_host_keys_token1] = ACTIONS(813), - [aux_sym_security_key_provider_token1] = ACTIONS(813), - [aux_sym_send_env_token1] = ACTIONS(813), - [aux_sym_server_alive_count_max_token1] = ACTIONS(813), - [aux_sym_server_alive_interval_token1] = ACTIONS(813), - [aux_sym_session_type_token1] = ACTIONS(813), - [aux_sym_set_env_token1] = ACTIONS(813), - [aux_sym_stdin_null_token1] = ACTIONS(813), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(813), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(813), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(813), - [aux_sym_syslog_facility_token1] = ACTIONS(813), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(813), - [aux_sym_keep_alive_token1] = ACTIONS(813), - [aux_sym_tunnel_token1] = ACTIONS(815), - [aux_sym_tunnel_device_token1] = ACTIONS(813), - [aux_sym_update_host_keys_token1] = ACTIONS(813), - [aux_sym_use_keychain_token1] = ACTIONS(813), - [aux_sym_use_roaming_token1] = ACTIONS(813), - [aux_sym_user_token1] = ACTIONS(815), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(813), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(813), - [aux_sym_visual_host_key_token1] = ACTIONS(813), - [aux_sym_xauth_location_token1] = ACTIONS(813), + [ts_builtin_sym_end] = ACTIONS(3380), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3382), + [aux_sym_match_token1] = ACTIONS(3380), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3380), + [aux_sym_address_family_token1] = ACTIONS(3380), + [aux_sym_batch_mode_token1] = ACTIONS(3380), + [aux_sym_bind_address_token1] = ACTIONS(3380), + [aux_sym_bind_interface_token1] = ACTIONS(3380), + [aux_sym_canonical_domains_token1] = ACTIONS(3380), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3380), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3380), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3380), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3380), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3380), + [aux_sym_certificate_file_token1] = ACTIONS(3380), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3380), + [aux_sym_check_host_ip_token1] = ACTIONS(3380), + [aux_sym_ciphers_token1] = ACTIONS(3380), + [aux_sym_cipher_token1] = ACTIONS(3382), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3380), + [aux_sym_compression_token1] = ACTIONS(3380), + [aux_sym_connection_attempts_token1] = ACTIONS(3380), + [aux_sym_connect_timeout_token1] = ACTIONS(3380), + [aux_sym_control_master_token1] = ACTIONS(3380), + [aux_sym_control_path_token1] = ACTIONS(3380), + [aux_sym_control_persist_token1] = ACTIONS(3380), + [aux_sym_dynamic_forward_token1] = ACTIONS(3380), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3380), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3380), + [aux_sym_escape_char_token1] = ACTIONS(3380), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3380), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3380), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3380), + [aux_sym_forward_agent_token1] = ACTIONS(3380), + [aux_sym_forward_x11_token1] = ACTIONS(3382), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3380), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3380), + [aux_sym_gateway_ports_token1] = ACTIONS(3380), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3380), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3380), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3380), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3380), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3380), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3380), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3380), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3380), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3380), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3380), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3380), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3380), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3380), + [aux_sym_host_key_alias_token1] = ACTIONS(3380), + [aux_sym_hostname_token1] = ACTIONS(3380), + [aux_sym_identities_only_token1] = ACTIONS(3380), + [aux_sym_identity_agent_token1] = ACTIONS(3380), + [aux_sym_identity_file_token1] = ACTIONS(3380), + [aux_sym_ignore_unknown_token1] = ACTIONS(3380), + [aux_sym_include_token1] = ACTIONS(3380), + [aux_sym_ip_qos_token1] = ACTIONS(3380), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3380), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3380), + [aux_sym_kex_algorithms_token1] = ACTIONS(3380), + [aux_sym_known_hosts_command_token1] = ACTIONS(3380), + [aux_sym_local_command_token1] = ACTIONS(3380), + [aux_sym_local_forward_token1] = ACTIONS(3380), + [aux_sym_log_level_token1] = ACTIONS(3380), + [aux_sym_log_verbose_token1] = ACTIONS(3380), + [aux_sym_macs_token1] = ACTIONS(3380), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3380), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3380), + [aux_sym_password_authentication_token1] = ACTIONS(3380), + [aux_sym_permit_local_command_token1] = ACTIONS(3380), + [aux_sym_permit_remote_open_token1] = ACTIONS(3380), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3380), + [aux_sym_port_token1] = ACTIONS(3380), + [aux_sym_preferred_authentications_token1] = ACTIONS(3380), + [aux_sym_protocol_token1] = ACTIONS(3380), + [aux_sym_proxy_command_token1] = ACTIONS(3380), + [aux_sym_proxy_jump_token1] = ACTIONS(3380), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3380), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3380), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3380), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3380), + [aux_sym_rekey_limit_token1] = ACTIONS(3380), + [aux_sym_remote_command_token1] = ACTIONS(3380), + [aux_sym_remote_forward_token1] = ACTIONS(3380), + [aux_sym_request_tty_token1] = ACTIONS(3380), + [aux_sym_required_rsa_size_token1] = ACTIONS(3380), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3380), + [aux_sym_security_key_provider_token1] = ACTIONS(3380), + [aux_sym_send_env_token1] = ACTIONS(3380), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3380), + [aux_sym_server_alive_interval_token1] = ACTIONS(3380), + [aux_sym_session_type_token1] = ACTIONS(3380), + [aux_sym_set_env_token1] = ACTIONS(3380), + [aux_sym_stdin_null_token1] = ACTIONS(3380), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3380), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3380), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3380), + [aux_sym_syslog_facility_token1] = ACTIONS(3380), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3380), + [aux_sym_keep_alive_token1] = ACTIONS(3380), + [aux_sym_tunnel_token1] = ACTIONS(3382), + [aux_sym_tunnel_device_token1] = ACTIONS(3380), + [aux_sym_update_host_keys_token1] = ACTIONS(3380), + [aux_sym_use_keychain_token1] = ACTIONS(3380), + [aux_sym_use_roaming_token1] = ACTIONS(3380), + [aux_sym_user_token1] = ACTIONS(3382), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3380), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3380), + [aux_sym_visual_host_key_token1] = ACTIONS(3380), + [aux_sym_xauth_location_token1] = ACTIONS(3380), }, [605] = { - [ts_builtin_sym_end] = ACTIONS(819), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(821), - [aux_sym_match_token1] = ACTIONS(819), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(819), - [aux_sym_address_family_token1] = ACTIONS(819), - [aux_sym_batch_mode_token1] = ACTIONS(819), - [aux_sym_bind_address_token1] = ACTIONS(819), - [aux_sym_bind_interface_token1] = ACTIONS(819), - [aux_sym_canonical_domains_token1] = ACTIONS(819), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(819), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(819), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(819), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(819), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(819), - [aux_sym_certificate_file_token1] = ACTIONS(819), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(819), - [aux_sym_check_host_ip_token1] = ACTIONS(819), - [aux_sym_ciphers_token1] = ACTIONS(819), - [aux_sym_cipher_token1] = ACTIONS(821), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(819), - [aux_sym_compression_token1] = ACTIONS(819), - [aux_sym_connection_attempts_token1] = ACTIONS(819), - [aux_sym_connect_timeout_token1] = ACTIONS(819), - [aux_sym_control_master_token1] = ACTIONS(819), - [aux_sym_control_path_token1] = ACTIONS(819), - [aux_sym_control_persist_token1] = ACTIONS(819), - [aux_sym_dynamic_forward_token1] = ACTIONS(819), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(819), - [aux_sym_escape_char_token1] = ACTIONS(819), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(819), - [aux_sym_fingerprint_hash_token1] = ACTIONS(819), - [aux_sym_fork_after_authentication_token1] = ACTIONS(819), - [aux_sym_forward_agent_token1] = ACTIONS(819), - [aux_sym_forward_x11_token1] = ACTIONS(821), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(819), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(819), - [aux_sym_gateway_ports_token1] = ACTIONS(819), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(819), - [aux_sym_gssapi_authentication_token1] = ACTIONS(819), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(819), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(819), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(819), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(819), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(819), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(819), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(819), - [aux_sym_hash_known_hosts_token1] = ACTIONS(819), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(819), - [aux_sym_hostbased_authentication_token1] = ACTIONS(819), - [aux_sym_host_key_algorithms_token1] = ACTIONS(819), - [aux_sym_host_key_alias_token1] = ACTIONS(819), - [aux_sym_hostname_token1] = ACTIONS(819), - [aux_sym_identities_only_token1] = ACTIONS(819), - [aux_sym_identity_agent_token1] = ACTIONS(819), - [aux_sym_identity_file_token1] = ACTIONS(819), - [aux_sym_ignore_unknown_token1] = ACTIONS(819), - [aux_sym_include_token1] = ACTIONS(819), - [aux_sym_ip_qos_token1] = ACTIONS(819), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(819), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(819), - [aux_sym_kex_algorithms_token1] = ACTIONS(819), - [aux_sym_known_hosts_command_token1] = ACTIONS(819), - [aux_sym_local_command_token1] = ACTIONS(819), - [aux_sym_local_forward_token1] = ACTIONS(819), - [aux_sym_log_level_token1] = ACTIONS(819), - [aux_sym_log_verbose_token1] = ACTIONS(819), - [aux_sym_macs_token1] = ACTIONS(819), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(819), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(819), - [aux_sym_password_authentication_token1] = ACTIONS(819), - [aux_sym_permit_local_command_token1] = ACTIONS(819), - [aux_sym_permit_remote_open_token1] = ACTIONS(819), - [aux_sym_pkcs11_provider_token1] = ACTIONS(819), - [aux_sym_port_token1] = ACTIONS(819), - [aux_sym_preferred_authentications_token1] = ACTIONS(819), - [aux_sym_protocol_token1] = ACTIONS(819), - [aux_sym_proxy_command_token1] = ACTIONS(819), - [aux_sym_proxy_jump_token1] = ACTIONS(819), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(819), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(819), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(819), - [aux_sym_pubkey_authentication_token1] = ACTIONS(819), - [aux_sym_rekey_limit_token1] = ACTIONS(819), - [aux_sym_remote_command_token1] = ACTIONS(819), - [aux_sym_remote_forward_token1] = ACTIONS(819), - [aux_sym_request_tty_token1] = ACTIONS(819), - [aux_sym_required_rsa_size_token1] = ACTIONS(819), - [aux_sym_revoked_host_keys_token1] = ACTIONS(819), - [aux_sym_security_key_provider_token1] = ACTIONS(819), - [aux_sym_send_env_token1] = ACTIONS(819), - [aux_sym_server_alive_count_max_token1] = ACTIONS(819), - [aux_sym_server_alive_interval_token1] = ACTIONS(819), - [aux_sym_session_type_token1] = ACTIONS(819), - [aux_sym_set_env_token1] = ACTIONS(819), - [aux_sym_stdin_null_token1] = ACTIONS(819), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(819), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(819), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(819), - [aux_sym_syslog_facility_token1] = ACTIONS(819), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(819), - [aux_sym_keep_alive_token1] = ACTIONS(819), - [aux_sym_tunnel_token1] = ACTIONS(821), - [aux_sym_tunnel_device_token1] = ACTIONS(819), - [aux_sym_update_host_keys_token1] = ACTIONS(819), - [aux_sym_use_keychain_token1] = ACTIONS(819), - [aux_sym_use_roaming_token1] = ACTIONS(819), - [aux_sym_user_token1] = ACTIONS(821), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(819), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(819), - [aux_sym_visual_host_key_token1] = ACTIONS(819), - [aux_sym_xauth_location_token1] = ACTIONS(819), + [ts_builtin_sym_end] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1348), + [aux_sym_match_token1] = ACTIONS(1346), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1346), + [aux_sym_address_family_token1] = ACTIONS(1346), + [aux_sym_batch_mode_token1] = ACTIONS(1346), + [aux_sym_bind_address_token1] = ACTIONS(1346), + [aux_sym_bind_interface_token1] = ACTIONS(1346), + [aux_sym_canonical_domains_token1] = ACTIONS(1346), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1346), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1346), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1346), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1346), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1346), + [aux_sym_certificate_file_token1] = ACTIONS(1346), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1346), + [aux_sym_check_host_ip_token1] = ACTIONS(1346), + [aux_sym_ciphers_token1] = ACTIONS(1346), + [aux_sym_cipher_token1] = ACTIONS(1348), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1346), + [aux_sym_compression_token1] = ACTIONS(1346), + [aux_sym_connection_attempts_token1] = ACTIONS(1346), + [aux_sym_connect_timeout_token1] = ACTIONS(1346), + [aux_sym_control_master_token1] = ACTIONS(1346), + [aux_sym_control_path_token1] = ACTIONS(1346), + [aux_sym_control_persist_token1] = ACTIONS(1346), + [aux_sym_dynamic_forward_token1] = ACTIONS(1346), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1346), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1346), + [aux_sym_escape_char_token1] = ACTIONS(1346), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1346), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1346), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1346), + [aux_sym_forward_agent_token1] = ACTIONS(1346), + [aux_sym_forward_x11_token1] = ACTIONS(1348), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1346), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1346), + [aux_sym_gateway_ports_token1] = ACTIONS(1346), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1346), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1346), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1346), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1346), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1346), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1346), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1346), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1346), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1346), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1346), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1346), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1346), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1346), + [aux_sym_host_key_alias_token1] = ACTIONS(1346), + [aux_sym_hostname_token1] = ACTIONS(1346), + [aux_sym_identities_only_token1] = ACTIONS(1346), + [aux_sym_identity_agent_token1] = ACTIONS(1346), + [aux_sym_identity_file_token1] = ACTIONS(1346), + [aux_sym_ignore_unknown_token1] = ACTIONS(1346), + [aux_sym_include_token1] = ACTIONS(1346), + [aux_sym_ip_qos_token1] = ACTIONS(1346), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1346), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1346), + [aux_sym_kex_algorithms_token1] = ACTIONS(1346), + [aux_sym_known_hosts_command_token1] = ACTIONS(1346), + [aux_sym_local_command_token1] = ACTIONS(1346), + [aux_sym_local_forward_token1] = ACTIONS(1346), + [aux_sym_log_level_token1] = ACTIONS(1346), + [aux_sym_log_verbose_token1] = ACTIONS(1346), + [aux_sym_macs_token1] = ACTIONS(1346), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1346), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1346), + [aux_sym_password_authentication_token1] = ACTIONS(1346), + [aux_sym_permit_local_command_token1] = ACTIONS(1346), + [aux_sym_permit_remote_open_token1] = ACTIONS(1346), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1346), + [aux_sym_port_token1] = ACTIONS(1346), + [aux_sym_preferred_authentications_token1] = ACTIONS(1346), + [aux_sym_protocol_token1] = ACTIONS(1346), + [aux_sym_proxy_command_token1] = ACTIONS(1346), + [aux_sym_proxy_jump_token1] = ACTIONS(1346), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1346), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1346), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1346), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1346), + [aux_sym_rekey_limit_token1] = ACTIONS(1346), + [aux_sym_remote_command_token1] = ACTIONS(1346), + [aux_sym_remote_forward_token1] = ACTIONS(1346), + [aux_sym_request_tty_token1] = ACTIONS(1346), + [aux_sym_required_rsa_size_token1] = ACTIONS(1346), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1346), + [aux_sym_security_key_provider_token1] = ACTIONS(1346), + [aux_sym_send_env_token1] = ACTIONS(1346), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1346), + [aux_sym_server_alive_interval_token1] = ACTIONS(1346), + [aux_sym_session_type_token1] = ACTIONS(1346), + [aux_sym_set_env_token1] = ACTIONS(1346), + [aux_sym_stdin_null_token1] = ACTIONS(1346), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1346), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1346), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1346), + [aux_sym_syslog_facility_token1] = ACTIONS(1346), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1346), + [aux_sym_keep_alive_token1] = ACTIONS(1346), + [aux_sym_tunnel_token1] = ACTIONS(1348), + [aux_sym_tunnel_device_token1] = ACTIONS(1346), + [aux_sym_update_host_keys_token1] = ACTIONS(1346), + [aux_sym_use_keychain_token1] = ACTIONS(1346), + [aux_sym_use_roaming_token1] = ACTIONS(1346), + [aux_sym_user_token1] = ACTIONS(1348), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1346), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1346), + [aux_sym_visual_host_key_token1] = ACTIONS(1346), + [aux_sym_xauth_location_token1] = ACTIONS(1346), }, [606] = { - [ts_builtin_sym_end] = ACTIONS(825), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(827), - [aux_sym_match_token1] = ACTIONS(825), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(825), - [aux_sym_address_family_token1] = ACTIONS(825), - [aux_sym_batch_mode_token1] = ACTIONS(825), - [aux_sym_bind_address_token1] = ACTIONS(825), - [aux_sym_bind_interface_token1] = ACTIONS(825), - [aux_sym_canonical_domains_token1] = ACTIONS(825), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(825), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(825), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(825), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(825), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(825), - [aux_sym_certificate_file_token1] = ACTIONS(825), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(825), - [aux_sym_check_host_ip_token1] = ACTIONS(825), - [aux_sym_ciphers_token1] = ACTIONS(825), - [aux_sym_cipher_token1] = ACTIONS(827), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(825), - [aux_sym_compression_token1] = ACTIONS(825), - [aux_sym_connection_attempts_token1] = ACTIONS(825), - [aux_sym_connect_timeout_token1] = ACTIONS(825), - [aux_sym_control_master_token1] = ACTIONS(825), - [aux_sym_control_path_token1] = ACTIONS(825), - [aux_sym_control_persist_token1] = ACTIONS(825), - [aux_sym_dynamic_forward_token1] = ACTIONS(825), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(825), - [aux_sym_escape_char_token1] = ACTIONS(825), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(825), - [aux_sym_fingerprint_hash_token1] = ACTIONS(825), - [aux_sym_fork_after_authentication_token1] = ACTIONS(825), - [aux_sym_forward_agent_token1] = ACTIONS(825), - [aux_sym_forward_x11_token1] = ACTIONS(827), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(825), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(825), - [aux_sym_gateway_ports_token1] = ACTIONS(825), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(825), - [aux_sym_gssapi_authentication_token1] = ACTIONS(825), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(825), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(825), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(825), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(825), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(825), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(825), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(825), - [aux_sym_hash_known_hosts_token1] = ACTIONS(825), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(825), - [aux_sym_hostbased_authentication_token1] = ACTIONS(825), - [aux_sym_host_key_algorithms_token1] = ACTIONS(825), - [aux_sym_host_key_alias_token1] = ACTIONS(825), - [aux_sym_hostname_token1] = ACTIONS(825), - [aux_sym_identities_only_token1] = ACTIONS(825), - [aux_sym_identity_agent_token1] = ACTIONS(825), - [aux_sym_identity_file_token1] = ACTIONS(825), - [aux_sym_ignore_unknown_token1] = ACTIONS(825), - [aux_sym_include_token1] = ACTIONS(825), - [aux_sym_ip_qos_token1] = ACTIONS(825), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(825), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(825), - [aux_sym_kex_algorithms_token1] = ACTIONS(825), - [aux_sym_known_hosts_command_token1] = ACTIONS(825), - [aux_sym_local_command_token1] = ACTIONS(825), - [aux_sym_local_forward_token1] = ACTIONS(825), - [aux_sym_log_level_token1] = ACTIONS(825), - [aux_sym_log_verbose_token1] = ACTIONS(825), - [aux_sym_macs_token1] = ACTIONS(825), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(825), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(825), - [aux_sym_password_authentication_token1] = ACTIONS(825), - [aux_sym_permit_local_command_token1] = ACTIONS(825), - [aux_sym_permit_remote_open_token1] = ACTIONS(825), - [aux_sym_pkcs11_provider_token1] = ACTIONS(825), - [aux_sym_port_token1] = ACTIONS(825), - [aux_sym_preferred_authentications_token1] = ACTIONS(825), - [aux_sym_protocol_token1] = ACTIONS(825), - [aux_sym_proxy_command_token1] = ACTIONS(825), - [aux_sym_proxy_jump_token1] = ACTIONS(825), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(825), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(825), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(825), - [aux_sym_pubkey_authentication_token1] = ACTIONS(825), - [aux_sym_rekey_limit_token1] = ACTIONS(825), - [aux_sym_remote_command_token1] = ACTIONS(825), - [aux_sym_remote_forward_token1] = ACTIONS(825), - [aux_sym_request_tty_token1] = ACTIONS(825), - [aux_sym_required_rsa_size_token1] = ACTIONS(825), - [aux_sym_revoked_host_keys_token1] = ACTIONS(825), - [aux_sym_security_key_provider_token1] = ACTIONS(825), - [aux_sym_send_env_token1] = ACTIONS(825), - [aux_sym_server_alive_count_max_token1] = ACTIONS(825), - [aux_sym_server_alive_interval_token1] = ACTIONS(825), - [aux_sym_session_type_token1] = ACTIONS(825), - [aux_sym_set_env_token1] = ACTIONS(825), - [aux_sym_stdin_null_token1] = ACTIONS(825), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(825), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(825), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(825), - [aux_sym_syslog_facility_token1] = ACTIONS(825), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(825), - [aux_sym_keep_alive_token1] = ACTIONS(825), - [aux_sym_tunnel_token1] = ACTIONS(827), - [aux_sym_tunnel_device_token1] = ACTIONS(825), - [aux_sym_update_host_keys_token1] = ACTIONS(825), - [aux_sym_use_keychain_token1] = ACTIONS(825), - [aux_sym_use_roaming_token1] = ACTIONS(825), - [aux_sym_user_token1] = ACTIONS(827), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(825), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(825), - [aux_sym_visual_host_key_token1] = ACTIONS(825), - [aux_sym_xauth_location_token1] = ACTIONS(825), + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1354), + [aux_sym_match_token1] = ACTIONS(1352), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1352), + [aux_sym_address_family_token1] = ACTIONS(1352), + [aux_sym_batch_mode_token1] = ACTIONS(1352), + [aux_sym_bind_address_token1] = ACTIONS(1352), + [aux_sym_bind_interface_token1] = ACTIONS(1352), + [aux_sym_canonical_domains_token1] = ACTIONS(1352), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1352), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1352), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1352), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1352), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1352), + [aux_sym_certificate_file_token1] = ACTIONS(1352), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1352), + [aux_sym_check_host_ip_token1] = ACTIONS(1352), + [aux_sym_ciphers_token1] = ACTIONS(1352), + [aux_sym_cipher_token1] = ACTIONS(1354), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1352), + [aux_sym_compression_token1] = ACTIONS(1352), + [aux_sym_connection_attempts_token1] = ACTIONS(1352), + [aux_sym_connect_timeout_token1] = ACTIONS(1352), + [aux_sym_control_master_token1] = ACTIONS(1352), + [aux_sym_control_path_token1] = ACTIONS(1352), + [aux_sym_control_persist_token1] = ACTIONS(1352), + [aux_sym_dynamic_forward_token1] = ACTIONS(1352), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1352), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1352), + [aux_sym_escape_char_token1] = ACTIONS(1352), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1352), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1352), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1352), + [aux_sym_forward_agent_token1] = ACTIONS(1352), + [aux_sym_forward_x11_token1] = ACTIONS(1354), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1352), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1352), + [aux_sym_gateway_ports_token1] = ACTIONS(1352), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1352), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1352), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1352), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1352), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1352), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1352), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1352), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1352), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1352), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1352), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1352), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1352), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1352), + [aux_sym_host_key_alias_token1] = ACTIONS(1352), + [aux_sym_hostname_token1] = ACTIONS(1352), + [aux_sym_identities_only_token1] = ACTIONS(1352), + [aux_sym_identity_agent_token1] = ACTIONS(1352), + [aux_sym_identity_file_token1] = ACTIONS(1352), + [aux_sym_ignore_unknown_token1] = ACTIONS(1352), + [aux_sym_include_token1] = ACTIONS(1352), + [aux_sym_ip_qos_token1] = ACTIONS(1352), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1352), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1352), + [aux_sym_kex_algorithms_token1] = ACTIONS(1352), + [aux_sym_known_hosts_command_token1] = ACTIONS(1352), + [aux_sym_local_command_token1] = ACTIONS(1352), + [aux_sym_local_forward_token1] = ACTIONS(1352), + [aux_sym_log_level_token1] = ACTIONS(1352), + [aux_sym_log_verbose_token1] = ACTIONS(1352), + [aux_sym_macs_token1] = ACTIONS(1352), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1352), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1352), + [aux_sym_password_authentication_token1] = ACTIONS(1352), + [aux_sym_permit_local_command_token1] = ACTIONS(1352), + [aux_sym_permit_remote_open_token1] = ACTIONS(1352), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1352), + [aux_sym_port_token1] = ACTIONS(1352), + [aux_sym_preferred_authentications_token1] = ACTIONS(1352), + [aux_sym_protocol_token1] = ACTIONS(1352), + [aux_sym_proxy_command_token1] = ACTIONS(1352), + [aux_sym_proxy_jump_token1] = ACTIONS(1352), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1352), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1352), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1352), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1352), + [aux_sym_rekey_limit_token1] = ACTIONS(1352), + [aux_sym_remote_command_token1] = ACTIONS(1352), + [aux_sym_remote_forward_token1] = ACTIONS(1352), + [aux_sym_request_tty_token1] = ACTIONS(1352), + [aux_sym_required_rsa_size_token1] = ACTIONS(1352), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1352), + [aux_sym_security_key_provider_token1] = ACTIONS(1352), + [aux_sym_send_env_token1] = ACTIONS(1352), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1352), + [aux_sym_server_alive_interval_token1] = ACTIONS(1352), + [aux_sym_session_type_token1] = ACTIONS(1352), + [aux_sym_set_env_token1] = ACTIONS(1352), + [aux_sym_stdin_null_token1] = ACTIONS(1352), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1352), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1352), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1352), + [aux_sym_syslog_facility_token1] = ACTIONS(1352), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1352), + [aux_sym_keep_alive_token1] = ACTIONS(1352), + [aux_sym_tunnel_token1] = ACTIONS(1354), + [aux_sym_tunnel_device_token1] = ACTIONS(1352), + [aux_sym_update_host_keys_token1] = ACTIONS(1352), + [aux_sym_use_keychain_token1] = ACTIONS(1352), + [aux_sym_use_roaming_token1] = ACTIONS(1352), + [aux_sym_user_token1] = ACTIONS(1354), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1352), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1352), + [aux_sym_visual_host_key_token1] = ACTIONS(1352), + [aux_sym_xauth_location_token1] = ACTIONS(1352), }, [607] = { - [ts_builtin_sym_end] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(833), - [aux_sym_match_token1] = ACTIONS(831), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(831), - [aux_sym_address_family_token1] = ACTIONS(831), - [aux_sym_batch_mode_token1] = ACTIONS(831), - [aux_sym_bind_address_token1] = ACTIONS(831), - [aux_sym_bind_interface_token1] = ACTIONS(831), - [aux_sym_canonical_domains_token1] = ACTIONS(831), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(831), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(831), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(831), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(831), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(831), - [aux_sym_certificate_file_token1] = ACTIONS(831), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(831), - [aux_sym_check_host_ip_token1] = ACTIONS(831), - [aux_sym_ciphers_token1] = ACTIONS(831), - [aux_sym_cipher_token1] = ACTIONS(833), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(831), - [aux_sym_compression_token1] = ACTIONS(831), - [aux_sym_connection_attempts_token1] = ACTIONS(831), - [aux_sym_connect_timeout_token1] = ACTIONS(831), - [aux_sym_control_master_token1] = ACTIONS(831), - [aux_sym_control_path_token1] = ACTIONS(831), - [aux_sym_control_persist_token1] = ACTIONS(831), - [aux_sym_dynamic_forward_token1] = ACTIONS(831), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(831), - [aux_sym_escape_char_token1] = ACTIONS(831), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(831), - [aux_sym_fingerprint_hash_token1] = ACTIONS(831), - [aux_sym_fork_after_authentication_token1] = ACTIONS(831), - [aux_sym_forward_agent_token1] = ACTIONS(831), - [aux_sym_forward_x11_token1] = ACTIONS(833), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(831), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(831), - [aux_sym_gateway_ports_token1] = ACTIONS(831), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(831), - [aux_sym_gssapi_authentication_token1] = ACTIONS(831), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(831), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(831), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(831), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(831), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(831), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(831), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(831), - [aux_sym_hash_known_hosts_token1] = ACTIONS(831), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(831), - [aux_sym_hostbased_authentication_token1] = ACTIONS(831), - [aux_sym_host_key_algorithms_token1] = ACTIONS(831), - [aux_sym_host_key_alias_token1] = ACTIONS(831), - [aux_sym_hostname_token1] = ACTIONS(831), - [aux_sym_identities_only_token1] = ACTIONS(831), - [aux_sym_identity_agent_token1] = ACTIONS(831), - [aux_sym_identity_file_token1] = ACTIONS(831), - [aux_sym_ignore_unknown_token1] = ACTIONS(831), - [aux_sym_include_token1] = ACTIONS(831), - [aux_sym_ip_qos_token1] = ACTIONS(831), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(831), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(831), - [aux_sym_kex_algorithms_token1] = ACTIONS(831), - [aux_sym_known_hosts_command_token1] = ACTIONS(831), - [aux_sym_local_command_token1] = ACTIONS(831), - [aux_sym_local_forward_token1] = ACTIONS(831), - [aux_sym_log_level_token1] = ACTIONS(831), - [aux_sym_log_verbose_token1] = ACTIONS(831), - [aux_sym_macs_token1] = ACTIONS(831), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(831), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(831), - [aux_sym_password_authentication_token1] = ACTIONS(831), - [aux_sym_permit_local_command_token1] = ACTIONS(831), - [aux_sym_permit_remote_open_token1] = ACTIONS(831), - [aux_sym_pkcs11_provider_token1] = ACTIONS(831), - [aux_sym_port_token1] = ACTIONS(831), - [aux_sym_preferred_authentications_token1] = ACTIONS(831), - [aux_sym_protocol_token1] = ACTIONS(831), - [aux_sym_proxy_command_token1] = ACTIONS(831), - [aux_sym_proxy_jump_token1] = ACTIONS(831), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(831), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(831), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(831), - [aux_sym_pubkey_authentication_token1] = ACTIONS(831), - [aux_sym_rekey_limit_token1] = ACTIONS(831), - [aux_sym_remote_command_token1] = ACTIONS(831), - [aux_sym_remote_forward_token1] = ACTIONS(831), - [aux_sym_request_tty_token1] = ACTIONS(831), - [aux_sym_required_rsa_size_token1] = ACTIONS(831), - [aux_sym_revoked_host_keys_token1] = ACTIONS(831), - [aux_sym_security_key_provider_token1] = ACTIONS(831), - [aux_sym_send_env_token1] = ACTIONS(831), - [aux_sym_server_alive_count_max_token1] = ACTIONS(831), - [aux_sym_server_alive_interval_token1] = ACTIONS(831), - [aux_sym_session_type_token1] = ACTIONS(831), - [aux_sym_set_env_token1] = ACTIONS(831), - [aux_sym_stdin_null_token1] = ACTIONS(831), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(831), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(831), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(831), - [aux_sym_syslog_facility_token1] = ACTIONS(831), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(831), - [aux_sym_keep_alive_token1] = ACTIONS(831), - [aux_sym_tunnel_token1] = ACTIONS(833), - [aux_sym_tunnel_device_token1] = ACTIONS(831), - [aux_sym_update_host_keys_token1] = ACTIONS(831), - [aux_sym_use_keychain_token1] = ACTIONS(831), - [aux_sym_use_roaming_token1] = ACTIONS(831), - [aux_sym_user_token1] = ACTIONS(833), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(831), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(831), - [aux_sym_visual_host_key_token1] = ACTIONS(831), - [aux_sym_xauth_location_token1] = ACTIONS(831), + [ts_builtin_sym_end] = ACTIONS(3384), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3386), + [aux_sym_match_token1] = ACTIONS(3384), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3384), + [aux_sym_address_family_token1] = ACTIONS(3384), + [aux_sym_batch_mode_token1] = ACTIONS(3384), + [aux_sym_bind_address_token1] = ACTIONS(3384), + [aux_sym_bind_interface_token1] = ACTIONS(3384), + [aux_sym_canonical_domains_token1] = ACTIONS(3384), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3384), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3384), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3384), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3384), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3384), + [aux_sym_certificate_file_token1] = ACTIONS(3384), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3384), + [aux_sym_check_host_ip_token1] = ACTIONS(3384), + [aux_sym_ciphers_token1] = ACTIONS(3384), + [aux_sym_cipher_token1] = ACTIONS(3386), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3384), + [aux_sym_compression_token1] = ACTIONS(3384), + [aux_sym_connection_attempts_token1] = ACTIONS(3384), + [aux_sym_connect_timeout_token1] = ACTIONS(3384), + [aux_sym_control_master_token1] = ACTIONS(3384), + [aux_sym_control_path_token1] = ACTIONS(3384), + [aux_sym_control_persist_token1] = ACTIONS(3384), + [aux_sym_dynamic_forward_token1] = ACTIONS(3384), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3384), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3384), + [aux_sym_escape_char_token1] = ACTIONS(3384), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3384), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3384), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3384), + [aux_sym_forward_agent_token1] = ACTIONS(3384), + [aux_sym_forward_x11_token1] = ACTIONS(3386), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3384), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3384), + [aux_sym_gateway_ports_token1] = ACTIONS(3384), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3384), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3384), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3384), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3384), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3384), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3384), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3384), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3384), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3384), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3384), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3384), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3384), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3384), + [aux_sym_host_key_alias_token1] = ACTIONS(3384), + [aux_sym_hostname_token1] = ACTIONS(3384), + [aux_sym_identities_only_token1] = ACTIONS(3384), + [aux_sym_identity_agent_token1] = ACTIONS(3384), + [aux_sym_identity_file_token1] = ACTIONS(3384), + [aux_sym_ignore_unknown_token1] = ACTIONS(3384), + [aux_sym_include_token1] = ACTIONS(3384), + [aux_sym_ip_qos_token1] = ACTIONS(3384), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3384), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3384), + [aux_sym_kex_algorithms_token1] = ACTIONS(3384), + [aux_sym_known_hosts_command_token1] = ACTIONS(3384), + [aux_sym_local_command_token1] = ACTIONS(3384), + [aux_sym_local_forward_token1] = ACTIONS(3384), + [aux_sym_log_level_token1] = ACTIONS(3384), + [aux_sym_log_verbose_token1] = ACTIONS(3384), + [aux_sym_macs_token1] = ACTIONS(3384), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3384), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3384), + [aux_sym_password_authentication_token1] = ACTIONS(3384), + [aux_sym_permit_local_command_token1] = ACTIONS(3384), + [aux_sym_permit_remote_open_token1] = ACTIONS(3384), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3384), + [aux_sym_port_token1] = ACTIONS(3384), + [aux_sym_preferred_authentications_token1] = ACTIONS(3384), + [aux_sym_protocol_token1] = ACTIONS(3384), + [aux_sym_proxy_command_token1] = ACTIONS(3384), + [aux_sym_proxy_jump_token1] = ACTIONS(3384), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3384), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3384), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3384), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3384), + [aux_sym_rekey_limit_token1] = ACTIONS(3384), + [aux_sym_remote_command_token1] = ACTIONS(3384), + [aux_sym_remote_forward_token1] = ACTIONS(3384), + [aux_sym_request_tty_token1] = ACTIONS(3384), + [aux_sym_required_rsa_size_token1] = ACTIONS(3384), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3384), + [aux_sym_security_key_provider_token1] = ACTIONS(3384), + [aux_sym_send_env_token1] = ACTIONS(3384), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3384), + [aux_sym_server_alive_interval_token1] = ACTIONS(3384), + [aux_sym_session_type_token1] = ACTIONS(3384), + [aux_sym_set_env_token1] = ACTIONS(3384), + [aux_sym_stdin_null_token1] = ACTIONS(3384), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3384), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3384), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3384), + [aux_sym_syslog_facility_token1] = ACTIONS(3384), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3384), + [aux_sym_keep_alive_token1] = ACTIONS(3384), + [aux_sym_tunnel_token1] = ACTIONS(3386), + [aux_sym_tunnel_device_token1] = ACTIONS(3384), + [aux_sym_update_host_keys_token1] = ACTIONS(3384), + [aux_sym_use_keychain_token1] = ACTIONS(3384), + [aux_sym_use_roaming_token1] = ACTIONS(3384), + [aux_sym_user_token1] = ACTIONS(3386), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3384), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3384), + [aux_sym_visual_host_key_token1] = ACTIONS(3384), + [aux_sym_xauth_location_token1] = ACTIONS(3384), }, [608] = { - [ts_builtin_sym_end] = ACTIONS(837), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(839), - [aux_sym_match_token1] = ACTIONS(837), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(837), - [aux_sym_address_family_token1] = ACTIONS(837), - [aux_sym_batch_mode_token1] = ACTIONS(837), - [aux_sym_bind_address_token1] = ACTIONS(837), - [aux_sym_bind_interface_token1] = ACTIONS(837), - [aux_sym_canonical_domains_token1] = ACTIONS(837), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(837), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(837), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(837), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(837), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(837), - [aux_sym_certificate_file_token1] = ACTIONS(837), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(837), - [aux_sym_check_host_ip_token1] = ACTIONS(837), - [aux_sym_ciphers_token1] = ACTIONS(837), - [aux_sym_cipher_token1] = ACTIONS(839), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(837), - [aux_sym_compression_token1] = ACTIONS(837), - [aux_sym_connection_attempts_token1] = ACTIONS(837), - [aux_sym_connect_timeout_token1] = ACTIONS(837), - [aux_sym_control_master_token1] = ACTIONS(837), - [aux_sym_control_path_token1] = ACTIONS(837), - [aux_sym_control_persist_token1] = ACTIONS(837), - [aux_sym_dynamic_forward_token1] = ACTIONS(837), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(837), - [aux_sym_escape_char_token1] = ACTIONS(837), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(837), - [aux_sym_fingerprint_hash_token1] = ACTIONS(837), - [aux_sym_fork_after_authentication_token1] = ACTIONS(837), - [aux_sym_forward_agent_token1] = ACTIONS(837), - [aux_sym_forward_x11_token1] = ACTIONS(839), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(837), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(837), - [aux_sym_gateway_ports_token1] = ACTIONS(837), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(837), - [aux_sym_gssapi_authentication_token1] = ACTIONS(837), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(837), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(837), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(837), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(837), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(837), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(837), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(837), - [aux_sym_hash_known_hosts_token1] = ACTIONS(837), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(837), - [aux_sym_hostbased_authentication_token1] = ACTIONS(837), - [aux_sym_host_key_algorithms_token1] = ACTIONS(837), - [aux_sym_host_key_alias_token1] = ACTIONS(837), - [aux_sym_hostname_token1] = ACTIONS(837), - [aux_sym_identities_only_token1] = ACTIONS(837), - [aux_sym_identity_agent_token1] = ACTIONS(837), - [aux_sym_identity_file_token1] = ACTIONS(837), - [aux_sym_ignore_unknown_token1] = ACTIONS(837), - [aux_sym_include_token1] = ACTIONS(837), - [aux_sym_ip_qos_token1] = ACTIONS(837), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(837), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(837), - [aux_sym_kex_algorithms_token1] = ACTIONS(837), - [aux_sym_known_hosts_command_token1] = ACTIONS(837), - [aux_sym_local_command_token1] = ACTIONS(837), - [aux_sym_local_forward_token1] = ACTIONS(837), - [aux_sym_log_level_token1] = ACTIONS(837), - [aux_sym_log_verbose_token1] = ACTIONS(837), - [aux_sym_macs_token1] = ACTIONS(837), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(837), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(837), - [aux_sym_password_authentication_token1] = ACTIONS(837), - [aux_sym_permit_local_command_token1] = ACTIONS(837), - [aux_sym_permit_remote_open_token1] = ACTIONS(837), - [aux_sym_pkcs11_provider_token1] = ACTIONS(837), - [aux_sym_port_token1] = ACTIONS(837), - [aux_sym_preferred_authentications_token1] = ACTIONS(837), - [aux_sym_protocol_token1] = ACTIONS(837), - [aux_sym_proxy_command_token1] = ACTIONS(837), - [aux_sym_proxy_jump_token1] = ACTIONS(837), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(837), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(837), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(837), - [aux_sym_pubkey_authentication_token1] = ACTIONS(837), - [aux_sym_rekey_limit_token1] = ACTIONS(837), - [aux_sym_remote_command_token1] = ACTIONS(837), - [aux_sym_remote_forward_token1] = ACTIONS(837), - [aux_sym_request_tty_token1] = ACTIONS(837), - [aux_sym_required_rsa_size_token1] = ACTIONS(837), - [aux_sym_revoked_host_keys_token1] = ACTIONS(837), - [aux_sym_security_key_provider_token1] = ACTIONS(837), - [aux_sym_send_env_token1] = ACTIONS(837), - [aux_sym_server_alive_count_max_token1] = ACTIONS(837), - [aux_sym_server_alive_interval_token1] = ACTIONS(837), - [aux_sym_session_type_token1] = ACTIONS(837), - [aux_sym_set_env_token1] = ACTIONS(837), - [aux_sym_stdin_null_token1] = ACTIONS(837), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(837), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(837), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(837), - [aux_sym_syslog_facility_token1] = ACTIONS(837), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(837), - [aux_sym_keep_alive_token1] = ACTIONS(837), - [aux_sym_tunnel_token1] = ACTIONS(839), - [aux_sym_tunnel_device_token1] = ACTIONS(837), - [aux_sym_update_host_keys_token1] = ACTIONS(837), - [aux_sym_use_keychain_token1] = ACTIONS(837), - [aux_sym_use_roaming_token1] = ACTIONS(837), - [aux_sym_user_token1] = ACTIONS(839), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(837), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(837), - [aux_sym_visual_host_key_token1] = ACTIONS(837), - [aux_sym_xauth_location_token1] = ACTIONS(837), + [ts_builtin_sym_end] = ACTIONS(3388), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3390), + [aux_sym_match_token1] = ACTIONS(3388), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3388), + [aux_sym_address_family_token1] = ACTIONS(3388), + [aux_sym_batch_mode_token1] = ACTIONS(3388), + [aux_sym_bind_address_token1] = ACTIONS(3388), + [aux_sym_bind_interface_token1] = ACTIONS(3388), + [aux_sym_canonical_domains_token1] = ACTIONS(3388), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3388), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3388), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3388), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3388), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3388), + [aux_sym_certificate_file_token1] = ACTIONS(3388), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3388), + [aux_sym_check_host_ip_token1] = ACTIONS(3388), + [aux_sym_ciphers_token1] = ACTIONS(3388), + [aux_sym_cipher_token1] = ACTIONS(3390), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3388), + [aux_sym_compression_token1] = ACTIONS(3388), + [aux_sym_connection_attempts_token1] = ACTIONS(3388), + [aux_sym_connect_timeout_token1] = ACTIONS(3388), + [aux_sym_control_master_token1] = ACTIONS(3388), + [aux_sym_control_path_token1] = ACTIONS(3388), + [aux_sym_control_persist_token1] = ACTIONS(3388), + [aux_sym_dynamic_forward_token1] = ACTIONS(3388), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3388), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3388), + [aux_sym_escape_char_token1] = ACTIONS(3388), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3388), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3388), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3388), + [aux_sym_forward_agent_token1] = ACTIONS(3388), + [aux_sym_forward_x11_token1] = ACTIONS(3390), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3388), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3388), + [aux_sym_gateway_ports_token1] = ACTIONS(3388), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3388), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3388), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3388), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3388), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3388), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3388), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3388), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3388), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3388), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3388), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3388), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3388), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3388), + [aux_sym_host_key_alias_token1] = ACTIONS(3388), + [aux_sym_hostname_token1] = ACTIONS(3388), + [aux_sym_identities_only_token1] = ACTIONS(3388), + [aux_sym_identity_agent_token1] = ACTIONS(3388), + [aux_sym_identity_file_token1] = ACTIONS(3388), + [aux_sym_ignore_unknown_token1] = ACTIONS(3388), + [aux_sym_include_token1] = ACTIONS(3388), + [aux_sym_ip_qos_token1] = ACTIONS(3388), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3388), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3388), + [aux_sym_kex_algorithms_token1] = ACTIONS(3388), + [aux_sym_known_hosts_command_token1] = ACTIONS(3388), + [aux_sym_local_command_token1] = ACTIONS(3388), + [aux_sym_local_forward_token1] = ACTIONS(3388), + [aux_sym_log_level_token1] = ACTIONS(3388), + [aux_sym_log_verbose_token1] = ACTIONS(3388), + [aux_sym_macs_token1] = ACTIONS(3388), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3388), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3388), + [aux_sym_password_authentication_token1] = ACTIONS(3388), + [aux_sym_permit_local_command_token1] = ACTIONS(3388), + [aux_sym_permit_remote_open_token1] = ACTIONS(3388), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3388), + [aux_sym_port_token1] = ACTIONS(3388), + [aux_sym_preferred_authentications_token1] = ACTIONS(3388), + [aux_sym_protocol_token1] = ACTIONS(3388), + [aux_sym_proxy_command_token1] = ACTIONS(3388), + [aux_sym_proxy_jump_token1] = ACTIONS(3388), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3388), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3388), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3388), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3388), + [aux_sym_rekey_limit_token1] = ACTIONS(3388), + [aux_sym_remote_command_token1] = ACTIONS(3388), + [aux_sym_remote_forward_token1] = ACTIONS(3388), + [aux_sym_request_tty_token1] = ACTIONS(3388), + [aux_sym_required_rsa_size_token1] = ACTIONS(3388), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3388), + [aux_sym_security_key_provider_token1] = ACTIONS(3388), + [aux_sym_send_env_token1] = ACTIONS(3388), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3388), + [aux_sym_server_alive_interval_token1] = ACTIONS(3388), + [aux_sym_session_type_token1] = ACTIONS(3388), + [aux_sym_set_env_token1] = ACTIONS(3388), + [aux_sym_stdin_null_token1] = ACTIONS(3388), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3388), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3388), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3388), + [aux_sym_syslog_facility_token1] = ACTIONS(3388), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3388), + [aux_sym_keep_alive_token1] = ACTIONS(3388), + [aux_sym_tunnel_token1] = ACTIONS(3390), + [aux_sym_tunnel_device_token1] = ACTIONS(3388), + [aux_sym_update_host_keys_token1] = ACTIONS(3388), + [aux_sym_use_keychain_token1] = ACTIONS(3388), + [aux_sym_use_roaming_token1] = ACTIONS(3388), + [aux_sym_user_token1] = ACTIONS(3390), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3388), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3388), + [aux_sym_visual_host_key_token1] = ACTIONS(3388), + [aux_sym_xauth_location_token1] = ACTIONS(3388), }, [609] = { - [ts_builtin_sym_end] = ACTIONS(843), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(845), - [aux_sym_match_token1] = ACTIONS(843), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(843), - [aux_sym_address_family_token1] = ACTIONS(843), - [aux_sym_batch_mode_token1] = ACTIONS(843), - [aux_sym_bind_address_token1] = ACTIONS(843), - [aux_sym_bind_interface_token1] = ACTIONS(843), - [aux_sym_canonical_domains_token1] = ACTIONS(843), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(843), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(843), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(843), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(843), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(843), - [aux_sym_certificate_file_token1] = ACTIONS(843), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(843), - [aux_sym_check_host_ip_token1] = ACTIONS(843), - [aux_sym_ciphers_token1] = ACTIONS(843), - [aux_sym_cipher_token1] = ACTIONS(845), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(843), - [aux_sym_compression_token1] = ACTIONS(843), - [aux_sym_connection_attempts_token1] = ACTIONS(843), - [aux_sym_connect_timeout_token1] = ACTIONS(843), - [aux_sym_control_master_token1] = ACTIONS(843), - [aux_sym_control_path_token1] = ACTIONS(843), - [aux_sym_control_persist_token1] = ACTIONS(843), - [aux_sym_dynamic_forward_token1] = ACTIONS(843), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(843), - [aux_sym_escape_char_token1] = ACTIONS(843), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(843), - [aux_sym_fingerprint_hash_token1] = ACTIONS(843), - [aux_sym_fork_after_authentication_token1] = ACTIONS(843), - [aux_sym_forward_agent_token1] = ACTIONS(843), - [aux_sym_forward_x11_token1] = ACTIONS(845), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(843), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(843), - [aux_sym_gateway_ports_token1] = ACTIONS(843), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(843), - [aux_sym_gssapi_authentication_token1] = ACTIONS(843), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(843), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(843), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(843), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(843), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(843), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(843), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(843), - [aux_sym_hash_known_hosts_token1] = ACTIONS(843), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(843), - [aux_sym_hostbased_authentication_token1] = ACTIONS(843), - [aux_sym_host_key_algorithms_token1] = ACTIONS(843), - [aux_sym_host_key_alias_token1] = ACTIONS(843), - [aux_sym_hostname_token1] = ACTIONS(843), - [aux_sym_identities_only_token1] = ACTIONS(843), - [aux_sym_identity_agent_token1] = ACTIONS(843), - [aux_sym_identity_file_token1] = ACTIONS(843), - [aux_sym_ignore_unknown_token1] = ACTIONS(843), - [aux_sym_include_token1] = ACTIONS(843), - [aux_sym_ip_qos_token1] = ACTIONS(843), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(843), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(843), - [aux_sym_kex_algorithms_token1] = ACTIONS(843), - [aux_sym_known_hosts_command_token1] = ACTIONS(843), - [aux_sym_local_command_token1] = ACTIONS(843), - [aux_sym_local_forward_token1] = ACTIONS(843), - [aux_sym_log_level_token1] = ACTIONS(843), - [aux_sym_log_verbose_token1] = ACTIONS(843), - [aux_sym_macs_token1] = ACTIONS(843), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(843), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(843), - [aux_sym_password_authentication_token1] = ACTIONS(843), - [aux_sym_permit_local_command_token1] = ACTIONS(843), - [aux_sym_permit_remote_open_token1] = ACTIONS(843), - [aux_sym_pkcs11_provider_token1] = ACTIONS(843), - [aux_sym_port_token1] = ACTIONS(843), - [aux_sym_preferred_authentications_token1] = ACTIONS(843), - [aux_sym_protocol_token1] = ACTIONS(843), - [aux_sym_proxy_command_token1] = ACTIONS(843), - [aux_sym_proxy_jump_token1] = ACTIONS(843), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(843), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(843), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(843), - [aux_sym_pubkey_authentication_token1] = ACTIONS(843), - [aux_sym_rekey_limit_token1] = ACTIONS(843), - [aux_sym_remote_command_token1] = ACTIONS(843), - [aux_sym_remote_forward_token1] = ACTIONS(843), - [aux_sym_request_tty_token1] = ACTIONS(843), - [aux_sym_required_rsa_size_token1] = ACTIONS(843), - [aux_sym_revoked_host_keys_token1] = ACTIONS(843), - [aux_sym_security_key_provider_token1] = ACTIONS(843), - [aux_sym_send_env_token1] = ACTIONS(843), - [aux_sym_server_alive_count_max_token1] = ACTIONS(843), - [aux_sym_server_alive_interval_token1] = ACTIONS(843), - [aux_sym_session_type_token1] = ACTIONS(843), - [aux_sym_set_env_token1] = ACTIONS(843), - [aux_sym_stdin_null_token1] = ACTIONS(843), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(843), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(843), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(843), - [aux_sym_syslog_facility_token1] = ACTIONS(843), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(843), - [aux_sym_keep_alive_token1] = ACTIONS(843), - [aux_sym_tunnel_token1] = ACTIONS(845), - [aux_sym_tunnel_device_token1] = ACTIONS(843), - [aux_sym_update_host_keys_token1] = ACTIONS(843), - [aux_sym_use_keychain_token1] = ACTIONS(843), - [aux_sym_use_roaming_token1] = ACTIONS(843), - [aux_sym_user_token1] = ACTIONS(845), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(843), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(843), - [aux_sym_visual_host_key_token1] = ACTIONS(843), - [aux_sym_xauth_location_token1] = ACTIONS(843), + [ts_builtin_sym_end] = ACTIONS(3392), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3394), + [aux_sym_match_token1] = ACTIONS(3392), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3392), + [aux_sym_address_family_token1] = ACTIONS(3392), + [aux_sym_batch_mode_token1] = ACTIONS(3392), + [aux_sym_bind_address_token1] = ACTIONS(3392), + [aux_sym_bind_interface_token1] = ACTIONS(3392), + [aux_sym_canonical_domains_token1] = ACTIONS(3392), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3392), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3392), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3392), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3392), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3392), + [aux_sym_certificate_file_token1] = ACTIONS(3392), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3392), + [aux_sym_check_host_ip_token1] = ACTIONS(3392), + [aux_sym_ciphers_token1] = ACTIONS(3392), + [aux_sym_cipher_token1] = ACTIONS(3394), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3392), + [aux_sym_compression_token1] = ACTIONS(3392), + [aux_sym_connection_attempts_token1] = ACTIONS(3392), + [aux_sym_connect_timeout_token1] = ACTIONS(3392), + [aux_sym_control_master_token1] = ACTIONS(3392), + [aux_sym_control_path_token1] = ACTIONS(3392), + [aux_sym_control_persist_token1] = ACTIONS(3392), + [aux_sym_dynamic_forward_token1] = ACTIONS(3392), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3392), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3392), + [aux_sym_escape_char_token1] = ACTIONS(3392), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3392), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3392), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3392), + [aux_sym_forward_agent_token1] = ACTIONS(3392), + [aux_sym_forward_x11_token1] = ACTIONS(3394), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3392), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3392), + [aux_sym_gateway_ports_token1] = ACTIONS(3392), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3392), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3392), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3392), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3392), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3392), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3392), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3392), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3392), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3392), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3392), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3392), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3392), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3392), + [aux_sym_host_key_alias_token1] = ACTIONS(3392), + [aux_sym_hostname_token1] = ACTIONS(3392), + [aux_sym_identities_only_token1] = ACTIONS(3392), + [aux_sym_identity_agent_token1] = ACTIONS(3392), + [aux_sym_identity_file_token1] = ACTIONS(3392), + [aux_sym_ignore_unknown_token1] = ACTIONS(3392), + [aux_sym_include_token1] = ACTIONS(3392), + [aux_sym_ip_qos_token1] = ACTIONS(3392), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3392), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3392), + [aux_sym_kex_algorithms_token1] = ACTIONS(3392), + [aux_sym_known_hosts_command_token1] = ACTIONS(3392), + [aux_sym_local_command_token1] = ACTIONS(3392), + [aux_sym_local_forward_token1] = ACTIONS(3392), + [aux_sym_log_level_token1] = ACTIONS(3392), + [aux_sym_log_verbose_token1] = ACTIONS(3392), + [aux_sym_macs_token1] = ACTIONS(3392), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3392), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3392), + [aux_sym_password_authentication_token1] = ACTIONS(3392), + [aux_sym_permit_local_command_token1] = ACTIONS(3392), + [aux_sym_permit_remote_open_token1] = ACTIONS(3392), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3392), + [aux_sym_port_token1] = ACTIONS(3392), + [aux_sym_preferred_authentications_token1] = ACTIONS(3392), + [aux_sym_protocol_token1] = ACTIONS(3392), + [aux_sym_proxy_command_token1] = ACTIONS(3392), + [aux_sym_proxy_jump_token1] = ACTIONS(3392), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3392), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3392), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3392), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3392), + [aux_sym_rekey_limit_token1] = ACTIONS(3392), + [aux_sym_remote_command_token1] = ACTIONS(3392), + [aux_sym_remote_forward_token1] = ACTIONS(3392), + [aux_sym_request_tty_token1] = ACTIONS(3392), + [aux_sym_required_rsa_size_token1] = ACTIONS(3392), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3392), + [aux_sym_security_key_provider_token1] = ACTIONS(3392), + [aux_sym_send_env_token1] = ACTIONS(3392), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3392), + [aux_sym_server_alive_interval_token1] = ACTIONS(3392), + [aux_sym_session_type_token1] = ACTIONS(3392), + [aux_sym_set_env_token1] = ACTIONS(3392), + [aux_sym_stdin_null_token1] = ACTIONS(3392), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3392), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3392), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3392), + [aux_sym_syslog_facility_token1] = ACTIONS(3392), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3392), + [aux_sym_keep_alive_token1] = ACTIONS(3392), + [aux_sym_tunnel_token1] = ACTIONS(3394), + [aux_sym_tunnel_device_token1] = ACTIONS(3392), + [aux_sym_update_host_keys_token1] = ACTIONS(3392), + [aux_sym_use_keychain_token1] = ACTIONS(3392), + [aux_sym_use_roaming_token1] = ACTIONS(3392), + [aux_sym_user_token1] = ACTIONS(3394), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3392), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3392), + [aux_sym_visual_host_key_token1] = ACTIONS(3392), + [aux_sym_xauth_location_token1] = ACTIONS(3392), }, [610] = { - [ts_builtin_sym_end] = ACTIONS(849), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(851), - [aux_sym_match_token1] = ACTIONS(849), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(849), - [aux_sym_address_family_token1] = ACTIONS(849), - [aux_sym_batch_mode_token1] = ACTIONS(849), - [aux_sym_bind_address_token1] = ACTIONS(849), - [aux_sym_bind_interface_token1] = ACTIONS(849), - [aux_sym_canonical_domains_token1] = ACTIONS(849), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(849), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(849), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(849), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(849), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(849), - [aux_sym_certificate_file_token1] = ACTIONS(849), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(849), - [aux_sym_check_host_ip_token1] = ACTIONS(849), - [aux_sym_ciphers_token1] = ACTIONS(849), - [aux_sym_cipher_token1] = ACTIONS(851), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(849), - [aux_sym_compression_token1] = ACTIONS(849), - [aux_sym_connection_attempts_token1] = ACTIONS(849), - [aux_sym_connect_timeout_token1] = ACTIONS(849), - [aux_sym_control_master_token1] = ACTIONS(849), - [aux_sym_control_path_token1] = ACTIONS(849), - [aux_sym_control_persist_token1] = ACTIONS(849), - [aux_sym_dynamic_forward_token1] = ACTIONS(849), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(849), - [aux_sym_escape_char_token1] = ACTIONS(849), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(849), - [aux_sym_fingerprint_hash_token1] = ACTIONS(849), - [aux_sym_fork_after_authentication_token1] = ACTIONS(849), - [aux_sym_forward_agent_token1] = ACTIONS(849), - [aux_sym_forward_x11_token1] = ACTIONS(851), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(849), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(849), - [aux_sym_gateway_ports_token1] = ACTIONS(849), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(849), - [aux_sym_gssapi_authentication_token1] = ACTIONS(849), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(849), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(849), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(849), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(849), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(849), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(849), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(849), - [aux_sym_hash_known_hosts_token1] = ACTIONS(849), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(849), - [aux_sym_hostbased_authentication_token1] = ACTIONS(849), - [aux_sym_host_key_algorithms_token1] = ACTIONS(849), - [aux_sym_host_key_alias_token1] = ACTIONS(849), - [aux_sym_hostname_token1] = ACTIONS(849), - [aux_sym_identities_only_token1] = ACTIONS(849), - [aux_sym_identity_agent_token1] = ACTIONS(849), - [aux_sym_identity_file_token1] = ACTIONS(849), - [aux_sym_ignore_unknown_token1] = ACTIONS(849), - [aux_sym_include_token1] = ACTIONS(849), - [aux_sym_ip_qos_token1] = ACTIONS(849), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(849), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(849), - [aux_sym_kex_algorithms_token1] = ACTIONS(849), - [aux_sym_known_hosts_command_token1] = ACTIONS(849), - [aux_sym_local_command_token1] = ACTIONS(849), - [aux_sym_local_forward_token1] = ACTIONS(849), - [aux_sym_log_level_token1] = ACTIONS(849), - [aux_sym_log_verbose_token1] = ACTIONS(849), - [aux_sym_macs_token1] = ACTIONS(849), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(849), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(849), - [aux_sym_password_authentication_token1] = ACTIONS(849), - [aux_sym_permit_local_command_token1] = ACTIONS(849), - [aux_sym_permit_remote_open_token1] = ACTIONS(849), - [aux_sym_pkcs11_provider_token1] = ACTIONS(849), - [aux_sym_port_token1] = ACTIONS(849), - [aux_sym_preferred_authentications_token1] = ACTIONS(849), - [aux_sym_protocol_token1] = ACTIONS(849), - [aux_sym_proxy_command_token1] = ACTIONS(849), - [aux_sym_proxy_jump_token1] = ACTIONS(849), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(849), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(849), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(849), - [aux_sym_pubkey_authentication_token1] = ACTIONS(849), - [aux_sym_rekey_limit_token1] = ACTIONS(849), - [aux_sym_remote_command_token1] = ACTIONS(849), - [aux_sym_remote_forward_token1] = ACTIONS(849), - [aux_sym_request_tty_token1] = ACTIONS(849), - [aux_sym_required_rsa_size_token1] = ACTIONS(849), - [aux_sym_revoked_host_keys_token1] = ACTIONS(849), - [aux_sym_security_key_provider_token1] = ACTIONS(849), - [aux_sym_send_env_token1] = ACTIONS(849), - [aux_sym_server_alive_count_max_token1] = ACTIONS(849), - [aux_sym_server_alive_interval_token1] = ACTIONS(849), - [aux_sym_session_type_token1] = ACTIONS(849), - [aux_sym_set_env_token1] = ACTIONS(849), - [aux_sym_stdin_null_token1] = ACTIONS(849), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(849), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(849), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(849), - [aux_sym_syslog_facility_token1] = ACTIONS(849), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(849), - [aux_sym_keep_alive_token1] = ACTIONS(849), - [aux_sym_tunnel_token1] = ACTIONS(851), - [aux_sym_tunnel_device_token1] = ACTIONS(849), - [aux_sym_update_host_keys_token1] = ACTIONS(849), - [aux_sym_use_keychain_token1] = ACTIONS(849), - [aux_sym_use_roaming_token1] = ACTIONS(849), - [aux_sym_user_token1] = ACTIONS(851), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(849), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(849), - [aux_sym_visual_host_key_token1] = ACTIONS(849), - [aux_sym_xauth_location_token1] = ACTIONS(849), + [ts_builtin_sym_end] = ACTIONS(3396), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3398), + [aux_sym_match_token1] = ACTIONS(3396), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3396), + [aux_sym_address_family_token1] = ACTIONS(3396), + [aux_sym_batch_mode_token1] = ACTIONS(3396), + [aux_sym_bind_address_token1] = ACTIONS(3396), + [aux_sym_bind_interface_token1] = ACTIONS(3396), + [aux_sym_canonical_domains_token1] = ACTIONS(3396), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3396), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3396), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3396), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3396), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3396), + [aux_sym_certificate_file_token1] = ACTIONS(3396), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3396), + [aux_sym_check_host_ip_token1] = ACTIONS(3396), + [aux_sym_ciphers_token1] = ACTIONS(3396), + [aux_sym_cipher_token1] = ACTIONS(3398), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3396), + [aux_sym_compression_token1] = ACTIONS(3396), + [aux_sym_connection_attempts_token1] = ACTIONS(3396), + [aux_sym_connect_timeout_token1] = ACTIONS(3396), + [aux_sym_control_master_token1] = ACTIONS(3396), + [aux_sym_control_path_token1] = ACTIONS(3396), + [aux_sym_control_persist_token1] = ACTIONS(3396), + [aux_sym_dynamic_forward_token1] = ACTIONS(3396), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3396), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3396), + [aux_sym_escape_char_token1] = ACTIONS(3396), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3396), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3396), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3396), + [aux_sym_forward_agent_token1] = ACTIONS(3396), + [aux_sym_forward_x11_token1] = ACTIONS(3398), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3396), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3396), + [aux_sym_gateway_ports_token1] = ACTIONS(3396), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3396), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3396), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3396), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3396), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3396), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3396), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3396), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3396), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3396), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3396), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3396), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3396), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3396), + [aux_sym_host_key_alias_token1] = ACTIONS(3396), + [aux_sym_hostname_token1] = ACTIONS(3396), + [aux_sym_identities_only_token1] = ACTIONS(3396), + [aux_sym_identity_agent_token1] = ACTIONS(3396), + [aux_sym_identity_file_token1] = ACTIONS(3396), + [aux_sym_ignore_unknown_token1] = ACTIONS(3396), + [aux_sym_include_token1] = ACTIONS(3396), + [aux_sym_ip_qos_token1] = ACTIONS(3396), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3396), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3396), + [aux_sym_kex_algorithms_token1] = ACTIONS(3396), + [aux_sym_known_hosts_command_token1] = ACTIONS(3396), + [aux_sym_local_command_token1] = ACTIONS(3396), + [aux_sym_local_forward_token1] = ACTIONS(3396), + [aux_sym_log_level_token1] = ACTIONS(3396), + [aux_sym_log_verbose_token1] = ACTIONS(3396), + [aux_sym_macs_token1] = ACTIONS(3396), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3396), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3396), + [aux_sym_password_authentication_token1] = ACTIONS(3396), + [aux_sym_permit_local_command_token1] = ACTIONS(3396), + [aux_sym_permit_remote_open_token1] = ACTIONS(3396), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3396), + [aux_sym_port_token1] = ACTIONS(3396), + [aux_sym_preferred_authentications_token1] = ACTIONS(3396), + [aux_sym_protocol_token1] = ACTIONS(3396), + [aux_sym_proxy_command_token1] = ACTIONS(3396), + [aux_sym_proxy_jump_token1] = ACTIONS(3396), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3396), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3396), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3396), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3396), + [aux_sym_rekey_limit_token1] = ACTIONS(3396), + [aux_sym_remote_command_token1] = ACTIONS(3396), + [aux_sym_remote_forward_token1] = ACTIONS(3396), + [aux_sym_request_tty_token1] = ACTIONS(3396), + [aux_sym_required_rsa_size_token1] = ACTIONS(3396), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3396), + [aux_sym_security_key_provider_token1] = ACTIONS(3396), + [aux_sym_send_env_token1] = ACTIONS(3396), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3396), + [aux_sym_server_alive_interval_token1] = ACTIONS(3396), + [aux_sym_session_type_token1] = ACTIONS(3396), + [aux_sym_set_env_token1] = ACTIONS(3396), + [aux_sym_stdin_null_token1] = ACTIONS(3396), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3396), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3396), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3396), + [aux_sym_syslog_facility_token1] = ACTIONS(3396), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3396), + [aux_sym_keep_alive_token1] = ACTIONS(3396), + [aux_sym_tunnel_token1] = ACTIONS(3398), + [aux_sym_tunnel_device_token1] = ACTIONS(3396), + [aux_sym_update_host_keys_token1] = ACTIONS(3396), + [aux_sym_use_keychain_token1] = ACTIONS(3396), + [aux_sym_use_roaming_token1] = ACTIONS(3396), + [aux_sym_user_token1] = ACTIONS(3398), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3396), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3396), + [aux_sym_visual_host_key_token1] = ACTIONS(3396), + [aux_sym_xauth_location_token1] = ACTIONS(3396), }, [611] = { - [ts_builtin_sym_end] = ACTIONS(855), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(857), - [aux_sym_match_token1] = ACTIONS(855), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(855), - [aux_sym_address_family_token1] = ACTIONS(855), - [aux_sym_batch_mode_token1] = ACTIONS(855), - [aux_sym_bind_address_token1] = ACTIONS(855), - [aux_sym_bind_interface_token1] = ACTIONS(855), - [aux_sym_canonical_domains_token1] = ACTIONS(855), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(855), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(855), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(855), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(855), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(855), - [aux_sym_certificate_file_token1] = ACTIONS(855), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(855), - [aux_sym_check_host_ip_token1] = ACTIONS(855), - [aux_sym_ciphers_token1] = ACTIONS(855), - [aux_sym_cipher_token1] = ACTIONS(857), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(855), - [aux_sym_compression_token1] = ACTIONS(855), - [aux_sym_connection_attempts_token1] = ACTIONS(855), - [aux_sym_connect_timeout_token1] = ACTIONS(855), - [aux_sym_control_master_token1] = ACTIONS(855), - [aux_sym_control_path_token1] = ACTIONS(855), - [aux_sym_control_persist_token1] = ACTIONS(855), - [aux_sym_dynamic_forward_token1] = ACTIONS(855), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(855), - [aux_sym_escape_char_token1] = ACTIONS(855), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(855), - [aux_sym_fingerprint_hash_token1] = ACTIONS(855), - [aux_sym_fork_after_authentication_token1] = ACTIONS(855), - [aux_sym_forward_agent_token1] = ACTIONS(855), - [aux_sym_forward_x11_token1] = ACTIONS(857), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(855), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(855), - [aux_sym_gateway_ports_token1] = ACTIONS(855), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(855), - [aux_sym_gssapi_authentication_token1] = ACTIONS(855), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(855), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(855), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(855), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(855), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(855), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(855), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(855), - [aux_sym_hash_known_hosts_token1] = ACTIONS(855), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(855), - [aux_sym_hostbased_authentication_token1] = ACTIONS(855), - [aux_sym_host_key_algorithms_token1] = ACTIONS(855), - [aux_sym_host_key_alias_token1] = ACTIONS(855), - [aux_sym_hostname_token1] = ACTIONS(855), - [aux_sym_identities_only_token1] = ACTIONS(855), - [aux_sym_identity_agent_token1] = ACTIONS(855), - [aux_sym_identity_file_token1] = ACTIONS(855), - [aux_sym_ignore_unknown_token1] = ACTIONS(855), - [aux_sym_include_token1] = ACTIONS(855), - [aux_sym_ip_qos_token1] = ACTIONS(855), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(855), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(855), - [aux_sym_kex_algorithms_token1] = ACTIONS(855), - [aux_sym_known_hosts_command_token1] = ACTIONS(855), - [aux_sym_local_command_token1] = ACTIONS(855), - [aux_sym_local_forward_token1] = ACTIONS(855), - [aux_sym_log_level_token1] = ACTIONS(855), - [aux_sym_log_verbose_token1] = ACTIONS(855), - [aux_sym_macs_token1] = ACTIONS(855), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(855), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(855), - [aux_sym_password_authentication_token1] = ACTIONS(855), - [aux_sym_permit_local_command_token1] = ACTIONS(855), - [aux_sym_permit_remote_open_token1] = ACTIONS(855), - [aux_sym_pkcs11_provider_token1] = ACTIONS(855), - [aux_sym_port_token1] = ACTIONS(855), - [aux_sym_preferred_authentications_token1] = ACTIONS(855), - [aux_sym_protocol_token1] = ACTIONS(855), - [aux_sym_proxy_command_token1] = ACTIONS(855), - [aux_sym_proxy_jump_token1] = ACTIONS(855), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(855), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(855), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(855), - [aux_sym_pubkey_authentication_token1] = ACTIONS(855), - [aux_sym_rekey_limit_token1] = ACTIONS(855), - [aux_sym_remote_command_token1] = ACTIONS(855), - [aux_sym_remote_forward_token1] = ACTIONS(855), - [aux_sym_request_tty_token1] = ACTIONS(855), - [aux_sym_required_rsa_size_token1] = ACTIONS(855), - [aux_sym_revoked_host_keys_token1] = ACTIONS(855), - [aux_sym_security_key_provider_token1] = ACTIONS(855), - [aux_sym_send_env_token1] = ACTIONS(855), - [aux_sym_server_alive_count_max_token1] = ACTIONS(855), - [aux_sym_server_alive_interval_token1] = ACTIONS(855), - [aux_sym_session_type_token1] = ACTIONS(855), - [aux_sym_set_env_token1] = ACTIONS(855), - [aux_sym_stdin_null_token1] = ACTIONS(855), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(855), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(855), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(855), - [aux_sym_syslog_facility_token1] = ACTIONS(855), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(855), - [aux_sym_keep_alive_token1] = ACTIONS(855), - [aux_sym_tunnel_token1] = ACTIONS(857), - [aux_sym_tunnel_device_token1] = ACTIONS(855), - [aux_sym_update_host_keys_token1] = ACTIONS(855), - [aux_sym_use_keychain_token1] = ACTIONS(855), - [aux_sym_use_roaming_token1] = ACTIONS(855), - [aux_sym_user_token1] = ACTIONS(857), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(855), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(855), - [aux_sym_visual_host_key_token1] = ACTIONS(855), - [aux_sym_xauth_location_token1] = ACTIONS(855), + [ts_builtin_sym_end] = ACTIONS(3400), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3402), + [aux_sym_match_token1] = ACTIONS(3400), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3400), + [aux_sym_address_family_token1] = ACTIONS(3400), + [aux_sym_batch_mode_token1] = ACTIONS(3400), + [aux_sym_bind_address_token1] = ACTIONS(3400), + [aux_sym_bind_interface_token1] = ACTIONS(3400), + [aux_sym_canonical_domains_token1] = ACTIONS(3400), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3400), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3400), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3400), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3400), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3400), + [aux_sym_certificate_file_token1] = ACTIONS(3400), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3400), + [aux_sym_check_host_ip_token1] = ACTIONS(3400), + [aux_sym_ciphers_token1] = ACTIONS(3400), + [aux_sym_cipher_token1] = ACTIONS(3402), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3400), + [aux_sym_compression_token1] = ACTIONS(3400), + [aux_sym_connection_attempts_token1] = ACTIONS(3400), + [aux_sym_connect_timeout_token1] = ACTIONS(3400), + [aux_sym_control_master_token1] = ACTIONS(3400), + [aux_sym_control_path_token1] = ACTIONS(3400), + [aux_sym_control_persist_token1] = ACTIONS(3400), + [aux_sym_dynamic_forward_token1] = ACTIONS(3400), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3400), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3400), + [aux_sym_escape_char_token1] = ACTIONS(3400), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3400), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3400), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3400), + [aux_sym_forward_agent_token1] = ACTIONS(3400), + [aux_sym_forward_x11_token1] = ACTIONS(3402), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3400), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3400), + [aux_sym_gateway_ports_token1] = ACTIONS(3400), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3400), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3400), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3400), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3400), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3400), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3400), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3400), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3400), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3400), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3400), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3400), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3400), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3400), + [aux_sym_host_key_alias_token1] = ACTIONS(3400), + [aux_sym_hostname_token1] = ACTIONS(3400), + [aux_sym_identities_only_token1] = ACTIONS(3400), + [aux_sym_identity_agent_token1] = ACTIONS(3400), + [aux_sym_identity_file_token1] = ACTIONS(3400), + [aux_sym_ignore_unknown_token1] = ACTIONS(3400), + [aux_sym_include_token1] = ACTIONS(3400), + [aux_sym_ip_qos_token1] = ACTIONS(3400), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3400), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3400), + [aux_sym_kex_algorithms_token1] = ACTIONS(3400), + [aux_sym_known_hosts_command_token1] = ACTIONS(3400), + [aux_sym_local_command_token1] = ACTIONS(3400), + [aux_sym_local_forward_token1] = ACTIONS(3400), + [aux_sym_log_level_token1] = ACTIONS(3400), + [aux_sym_log_verbose_token1] = ACTIONS(3400), + [aux_sym_macs_token1] = ACTIONS(3400), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3400), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3400), + [aux_sym_password_authentication_token1] = ACTIONS(3400), + [aux_sym_permit_local_command_token1] = ACTIONS(3400), + [aux_sym_permit_remote_open_token1] = ACTIONS(3400), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3400), + [aux_sym_port_token1] = ACTIONS(3400), + [aux_sym_preferred_authentications_token1] = ACTIONS(3400), + [aux_sym_protocol_token1] = ACTIONS(3400), + [aux_sym_proxy_command_token1] = ACTIONS(3400), + [aux_sym_proxy_jump_token1] = ACTIONS(3400), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3400), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3400), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3400), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3400), + [aux_sym_rekey_limit_token1] = ACTIONS(3400), + [aux_sym_remote_command_token1] = ACTIONS(3400), + [aux_sym_remote_forward_token1] = ACTIONS(3400), + [aux_sym_request_tty_token1] = ACTIONS(3400), + [aux_sym_required_rsa_size_token1] = ACTIONS(3400), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3400), + [aux_sym_security_key_provider_token1] = ACTIONS(3400), + [aux_sym_send_env_token1] = ACTIONS(3400), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3400), + [aux_sym_server_alive_interval_token1] = ACTIONS(3400), + [aux_sym_session_type_token1] = ACTIONS(3400), + [aux_sym_set_env_token1] = ACTIONS(3400), + [aux_sym_stdin_null_token1] = ACTIONS(3400), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3400), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3400), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3400), + [aux_sym_syslog_facility_token1] = ACTIONS(3400), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3400), + [aux_sym_keep_alive_token1] = ACTIONS(3400), + [aux_sym_tunnel_token1] = ACTIONS(3402), + [aux_sym_tunnel_device_token1] = ACTIONS(3400), + [aux_sym_update_host_keys_token1] = ACTIONS(3400), + [aux_sym_use_keychain_token1] = ACTIONS(3400), + [aux_sym_use_roaming_token1] = ACTIONS(3400), + [aux_sym_user_token1] = ACTIONS(3402), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3400), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3400), + [aux_sym_visual_host_key_token1] = ACTIONS(3400), + [aux_sym_xauth_location_token1] = ACTIONS(3400), }, [612] = { - [ts_builtin_sym_end] = ACTIONS(1587), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1589), - [aux_sym_match_token1] = ACTIONS(1587), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1587), - [aux_sym_address_family_token1] = ACTIONS(1587), - [aux_sym_batch_mode_token1] = ACTIONS(1587), - [aux_sym_bind_address_token1] = ACTIONS(1587), - [aux_sym_bind_interface_token1] = ACTIONS(1587), - [aux_sym_canonical_domains_token1] = ACTIONS(1587), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1587), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1587), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1587), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1587), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1587), - [aux_sym_certificate_file_token1] = ACTIONS(1587), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1587), - [aux_sym_check_host_ip_token1] = ACTIONS(1587), - [aux_sym_ciphers_token1] = ACTIONS(1587), - [aux_sym_cipher_token1] = ACTIONS(1589), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1587), - [aux_sym_compression_token1] = ACTIONS(1587), - [aux_sym_connection_attempts_token1] = ACTIONS(1587), - [aux_sym_connect_timeout_token1] = ACTIONS(1587), - [aux_sym_control_master_token1] = ACTIONS(1587), - [aux_sym_control_path_token1] = ACTIONS(1587), - [aux_sym_control_persist_token1] = ACTIONS(1587), - [aux_sym_dynamic_forward_token1] = ACTIONS(1587), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1587), - [aux_sym_escape_char_token1] = ACTIONS(1587), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1587), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1587), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1587), - [aux_sym_forward_agent_token1] = ACTIONS(1587), - [aux_sym_forward_x11_token1] = ACTIONS(1589), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1587), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1587), - [aux_sym_gateway_ports_token1] = ACTIONS(1587), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1587), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1587), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1587), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1587), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1587), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1587), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1587), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1587), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1587), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1587), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1587), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1587), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1587), - [aux_sym_host_key_alias_token1] = ACTIONS(1587), - [aux_sym_hostname_token1] = ACTIONS(1587), - [aux_sym_identities_only_token1] = ACTIONS(1587), - [aux_sym_identity_agent_token1] = ACTIONS(1587), - [aux_sym_identity_file_token1] = ACTIONS(1587), - [aux_sym_ignore_unknown_token1] = ACTIONS(1587), - [aux_sym_include_token1] = ACTIONS(1587), - [aux_sym_ip_qos_token1] = ACTIONS(1587), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1587), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1587), - [aux_sym_kex_algorithms_token1] = ACTIONS(1587), - [aux_sym_known_hosts_command_token1] = ACTIONS(1587), - [aux_sym_local_command_token1] = ACTIONS(1587), - [aux_sym_local_forward_token1] = ACTIONS(1587), - [aux_sym_log_level_token1] = ACTIONS(1587), - [aux_sym_log_verbose_token1] = ACTIONS(1587), - [aux_sym_macs_token1] = ACTIONS(1587), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1587), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1587), - [aux_sym_password_authentication_token1] = ACTIONS(1587), - [aux_sym_permit_local_command_token1] = ACTIONS(1587), - [aux_sym_permit_remote_open_token1] = ACTIONS(1587), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1587), - [aux_sym_port_token1] = ACTIONS(1587), - [aux_sym_preferred_authentications_token1] = ACTIONS(1587), - [aux_sym_protocol_token1] = ACTIONS(1587), - [aux_sym_proxy_command_token1] = ACTIONS(1587), - [aux_sym_proxy_jump_token1] = ACTIONS(1587), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1587), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1587), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1587), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1587), - [aux_sym_rekey_limit_token1] = ACTIONS(1587), - [aux_sym_remote_command_token1] = ACTIONS(1587), - [aux_sym_remote_forward_token1] = ACTIONS(1587), - [aux_sym_request_tty_token1] = ACTIONS(1587), - [aux_sym_required_rsa_size_token1] = ACTIONS(1587), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1587), - [aux_sym_security_key_provider_token1] = ACTIONS(1587), - [aux_sym_send_env_token1] = ACTIONS(1587), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1587), - [aux_sym_server_alive_interval_token1] = ACTIONS(1587), - [aux_sym_session_type_token1] = ACTIONS(1587), - [aux_sym_set_env_token1] = ACTIONS(1587), - [aux_sym_stdin_null_token1] = ACTIONS(1587), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1587), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1587), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1587), - [aux_sym_syslog_facility_token1] = ACTIONS(1587), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1587), - [aux_sym_keep_alive_token1] = ACTIONS(1587), - [aux_sym_tunnel_token1] = ACTIONS(1589), - [aux_sym_tunnel_device_token1] = ACTIONS(1587), - [aux_sym_update_host_keys_token1] = ACTIONS(1587), - [aux_sym_use_keychain_token1] = ACTIONS(1587), - [aux_sym_use_roaming_token1] = ACTIONS(1587), - [aux_sym_user_token1] = ACTIONS(1589), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1587), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1587), - [aux_sym_visual_host_key_token1] = ACTIONS(1587), - [aux_sym_xauth_location_token1] = ACTIONS(1587), + [ts_builtin_sym_end] = ACTIONS(962), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(964), + [aux_sym_match_token1] = ACTIONS(962), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(962), + [aux_sym_address_family_token1] = ACTIONS(962), + [aux_sym_batch_mode_token1] = ACTIONS(962), + [aux_sym_bind_address_token1] = ACTIONS(962), + [aux_sym_bind_interface_token1] = ACTIONS(962), + [aux_sym_canonical_domains_token1] = ACTIONS(962), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(962), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(962), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(962), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(962), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(962), + [aux_sym_certificate_file_token1] = ACTIONS(962), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(962), + [aux_sym_check_host_ip_token1] = ACTIONS(962), + [aux_sym_ciphers_token1] = ACTIONS(962), + [aux_sym_cipher_token1] = ACTIONS(964), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(962), + [aux_sym_compression_token1] = ACTIONS(962), + [aux_sym_connection_attempts_token1] = ACTIONS(962), + [aux_sym_connect_timeout_token1] = ACTIONS(962), + [aux_sym_control_master_token1] = ACTIONS(962), + [aux_sym_control_path_token1] = ACTIONS(962), + [aux_sym_control_persist_token1] = ACTIONS(962), + [aux_sym_dynamic_forward_token1] = ACTIONS(962), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(962), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(962), + [aux_sym_escape_char_token1] = ACTIONS(962), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(962), + [aux_sym_fingerprint_hash_token1] = ACTIONS(962), + [aux_sym_fork_after_authentication_token1] = ACTIONS(962), + [aux_sym_forward_agent_token1] = ACTIONS(962), + [aux_sym_forward_x11_token1] = ACTIONS(964), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(962), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(962), + [aux_sym_gateway_ports_token1] = ACTIONS(962), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(962), + [aux_sym_gssapi_authentication_token1] = ACTIONS(962), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(962), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(962), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(962), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(962), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(962), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(962), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(962), + [aux_sym_hash_known_hosts_token1] = ACTIONS(962), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(962), + [aux_sym_hostbased_authentication_token1] = ACTIONS(962), + [aux_sym_host_key_algorithms_token1] = ACTIONS(962), + [aux_sym_host_key_alias_token1] = ACTIONS(962), + [aux_sym_hostname_token1] = ACTIONS(962), + [aux_sym_identities_only_token1] = ACTIONS(962), + [aux_sym_identity_agent_token1] = ACTIONS(962), + [aux_sym_identity_file_token1] = ACTIONS(962), + [aux_sym_ignore_unknown_token1] = ACTIONS(962), + [aux_sym_include_token1] = ACTIONS(962), + [aux_sym_ip_qos_token1] = ACTIONS(962), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(962), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(962), + [aux_sym_kex_algorithms_token1] = ACTIONS(962), + [aux_sym_known_hosts_command_token1] = ACTIONS(962), + [aux_sym_local_command_token1] = ACTIONS(962), + [aux_sym_local_forward_token1] = ACTIONS(962), + [aux_sym_log_level_token1] = ACTIONS(962), + [aux_sym_log_verbose_token1] = ACTIONS(962), + [aux_sym_macs_token1] = ACTIONS(962), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(962), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(962), + [aux_sym_password_authentication_token1] = ACTIONS(962), + [aux_sym_permit_local_command_token1] = ACTIONS(962), + [aux_sym_permit_remote_open_token1] = ACTIONS(962), + [aux_sym_pkcs11_provider_token1] = ACTIONS(962), + [aux_sym_port_token1] = ACTIONS(962), + [aux_sym_preferred_authentications_token1] = ACTIONS(962), + [aux_sym_protocol_token1] = ACTIONS(962), + [aux_sym_proxy_command_token1] = ACTIONS(962), + [aux_sym_proxy_jump_token1] = ACTIONS(962), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(962), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(962), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(962), + [aux_sym_pubkey_authentication_token1] = ACTIONS(962), + [aux_sym_rekey_limit_token1] = ACTIONS(962), + [aux_sym_remote_command_token1] = ACTIONS(962), + [aux_sym_remote_forward_token1] = ACTIONS(962), + [aux_sym_request_tty_token1] = ACTIONS(962), + [aux_sym_required_rsa_size_token1] = ACTIONS(962), + [aux_sym_revoked_host_keys_token1] = ACTIONS(962), + [aux_sym_security_key_provider_token1] = ACTIONS(962), + [aux_sym_send_env_token1] = ACTIONS(962), + [aux_sym_server_alive_count_max_token1] = ACTIONS(962), + [aux_sym_server_alive_interval_token1] = ACTIONS(962), + [aux_sym_session_type_token1] = ACTIONS(962), + [aux_sym_set_env_token1] = ACTIONS(962), + [aux_sym_stdin_null_token1] = ACTIONS(962), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(962), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(962), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(962), + [aux_sym_syslog_facility_token1] = ACTIONS(962), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(962), + [aux_sym_keep_alive_token1] = ACTIONS(962), + [aux_sym_tunnel_token1] = ACTIONS(964), + [aux_sym_tunnel_device_token1] = ACTIONS(962), + [aux_sym_update_host_keys_token1] = ACTIONS(962), + [aux_sym_use_keychain_token1] = ACTIONS(962), + [aux_sym_use_roaming_token1] = ACTIONS(962), + [aux_sym_user_token1] = ACTIONS(964), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(962), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(962), + [aux_sym_visual_host_key_token1] = ACTIONS(962), + [aux_sym_xauth_location_token1] = ACTIONS(962), }, [613] = { - [ts_builtin_sym_end] = ACTIONS(861), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(863), - [aux_sym_match_token1] = ACTIONS(861), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(861), - [aux_sym_address_family_token1] = ACTIONS(861), - [aux_sym_batch_mode_token1] = ACTIONS(861), - [aux_sym_bind_address_token1] = ACTIONS(861), - [aux_sym_bind_interface_token1] = ACTIONS(861), - [aux_sym_canonical_domains_token1] = ACTIONS(861), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(861), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(861), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(861), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(861), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(861), - [aux_sym_certificate_file_token1] = ACTIONS(861), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(861), - [aux_sym_check_host_ip_token1] = ACTIONS(861), - [aux_sym_ciphers_token1] = ACTIONS(861), - [aux_sym_cipher_token1] = ACTIONS(863), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(861), - [aux_sym_compression_token1] = ACTIONS(861), - [aux_sym_connection_attempts_token1] = ACTIONS(861), - [aux_sym_connect_timeout_token1] = ACTIONS(861), - [aux_sym_control_master_token1] = ACTIONS(861), - [aux_sym_control_path_token1] = ACTIONS(861), - [aux_sym_control_persist_token1] = ACTIONS(861), - [aux_sym_dynamic_forward_token1] = ACTIONS(861), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(861), - [aux_sym_escape_char_token1] = ACTIONS(861), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(861), - [aux_sym_fingerprint_hash_token1] = ACTIONS(861), - [aux_sym_fork_after_authentication_token1] = ACTIONS(861), - [aux_sym_forward_agent_token1] = ACTIONS(861), - [aux_sym_forward_x11_token1] = ACTIONS(863), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(861), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(861), - [aux_sym_gateway_ports_token1] = ACTIONS(861), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(861), - [aux_sym_gssapi_authentication_token1] = ACTIONS(861), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(861), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(861), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(861), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(861), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(861), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(861), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(861), - [aux_sym_hash_known_hosts_token1] = ACTIONS(861), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(861), - [aux_sym_hostbased_authentication_token1] = ACTIONS(861), - [aux_sym_host_key_algorithms_token1] = ACTIONS(861), - [aux_sym_host_key_alias_token1] = ACTIONS(861), - [aux_sym_hostname_token1] = ACTIONS(861), - [aux_sym_identities_only_token1] = ACTIONS(861), - [aux_sym_identity_agent_token1] = ACTIONS(861), - [aux_sym_identity_file_token1] = ACTIONS(861), - [aux_sym_ignore_unknown_token1] = ACTIONS(861), - [aux_sym_include_token1] = ACTIONS(861), - [aux_sym_ip_qos_token1] = ACTIONS(861), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(861), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(861), - [aux_sym_kex_algorithms_token1] = ACTIONS(861), - [aux_sym_known_hosts_command_token1] = ACTIONS(861), - [aux_sym_local_command_token1] = ACTIONS(861), - [aux_sym_local_forward_token1] = ACTIONS(861), - [aux_sym_log_level_token1] = ACTIONS(861), - [aux_sym_log_verbose_token1] = ACTIONS(861), - [aux_sym_macs_token1] = ACTIONS(861), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(861), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(861), - [aux_sym_password_authentication_token1] = ACTIONS(861), - [aux_sym_permit_local_command_token1] = ACTIONS(861), - [aux_sym_permit_remote_open_token1] = ACTIONS(861), - [aux_sym_pkcs11_provider_token1] = ACTIONS(861), - [aux_sym_port_token1] = ACTIONS(861), - [aux_sym_preferred_authentications_token1] = ACTIONS(861), - [aux_sym_protocol_token1] = ACTIONS(861), - [aux_sym_proxy_command_token1] = ACTIONS(861), - [aux_sym_proxy_jump_token1] = ACTIONS(861), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(861), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(861), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(861), - [aux_sym_pubkey_authentication_token1] = ACTIONS(861), - [aux_sym_rekey_limit_token1] = ACTIONS(861), - [aux_sym_remote_command_token1] = ACTIONS(861), - [aux_sym_remote_forward_token1] = ACTIONS(861), - [aux_sym_request_tty_token1] = ACTIONS(861), - [aux_sym_required_rsa_size_token1] = ACTIONS(861), - [aux_sym_revoked_host_keys_token1] = ACTIONS(861), - [aux_sym_security_key_provider_token1] = ACTIONS(861), - [aux_sym_send_env_token1] = ACTIONS(861), - [aux_sym_server_alive_count_max_token1] = ACTIONS(861), - [aux_sym_server_alive_interval_token1] = ACTIONS(861), - [aux_sym_session_type_token1] = ACTIONS(861), - [aux_sym_set_env_token1] = ACTIONS(861), - [aux_sym_stdin_null_token1] = ACTIONS(861), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(861), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(861), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(861), - [aux_sym_syslog_facility_token1] = ACTIONS(861), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(861), - [aux_sym_keep_alive_token1] = ACTIONS(861), - [aux_sym_tunnel_token1] = ACTIONS(863), - [aux_sym_tunnel_device_token1] = ACTIONS(861), - [aux_sym_update_host_keys_token1] = ACTIONS(861), - [aux_sym_use_keychain_token1] = ACTIONS(861), - [aux_sym_use_roaming_token1] = ACTIONS(861), - [aux_sym_user_token1] = ACTIONS(863), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(861), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(861), - [aux_sym_visual_host_key_token1] = ACTIONS(861), - [aux_sym_xauth_location_token1] = ACTIONS(861), + [ts_builtin_sym_end] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1360), + [aux_sym_match_token1] = ACTIONS(1358), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1358), + [aux_sym_address_family_token1] = ACTIONS(1358), + [aux_sym_batch_mode_token1] = ACTIONS(1358), + [aux_sym_bind_address_token1] = ACTIONS(1358), + [aux_sym_bind_interface_token1] = ACTIONS(1358), + [aux_sym_canonical_domains_token1] = ACTIONS(1358), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1358), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1358), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1358), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1358), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1358), + [aux_sym_certificate_file_token1] = ACTIONS(1358), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1358), + [aux_sym_check_host_ip_token1] = ACTIONS(1358), + [aux_sym_ciphers_token1] = ACTIONS(1358), + [aux_sym_cipher_token1] = ACTIONS(1360), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1358), + [aux_sym_compression_token1] = ACTIONS(1358), + [aux_sym_connection_attempts_token1] = ACTIONS(1358), + [aux_sym_connect_timeout_token1] = ACTIONS(1358), + [aux_sym_control_master_token1] = ACTIONS(1358), + [aux_sym_control_path_token1] = ACTIONS(1358), + [aux_sym_control_persist_token1] = ACTIONS(1358), + [aux_sym_dynamic_forward_token1] = ACTIONS(1358), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1358), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1358), + [aux_sym_escape_char_token1] = ACTIONS(1358), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1358), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1358), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1358), + [aux_sym_forward_agent_token1] = ACTIONS(1358), + [aux_sym_forward_x11_token1] = ACTIONS(1360), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1358), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1358), + [aux_sym_gateway_ports_token1] = ACTIONS(1358), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1358), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1358), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1358), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1358), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1358), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1358), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1358), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1358), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1358), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1358), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1358), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1358), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1358), + [aux_sym_host_key_alias_token1] = ACTIONS(1358), + [aux_sym_hostname_token1] = ACTIONS(1358), + [aux_sym_identities_only_token1] = ACTIONS(1358), + [aux_sym_identity_agent_token1] = ACTIONS(1358), + [aux_sym_identity_file_token1] = ACTIONS(1358), + [aux_sym_ignore_unknown_token1] = ACTIONS(1358), + [aux_sym_include_token1] = ACTIONS(1358), + [aux_sym_ip_qos_token1] = ACTIONS(1358), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1358), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1358), + [aux_sym_kex_algorithms_token1] = ACTIONS(1358), + [aux_sym_known_hosts_command_token1] = ACTIONS(1358), + [aux_sym_local_command_token1] = ACTIONS(1358), + [aux_sym_local_forward_token1] = ACTIONS(1358), + [aux_sym_log_level_token1] = ACTIONS(1358), + [aux_sym_log_verbose_token1] = ACTIONS(1358), + [aux_sym_macs_token1] = ACTIONS(1358), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1358), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1358), + [aux_sym_password_authentication_token1] = ACTIONS(1358), + [aux_sym_permit_local_command_token1] = ACTIONS(1358), + [aux_sym_permit_remote_open_token1] = ACTIONS(1358), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1358), + [aux_sym_port_token1] = ACTIONS(1358), + [aux_sym_preferred_authentications_token1] = ACTIONS(1358), + [aux_sym_protocol_token1] = ACTIONS(1358), + [aux_sym_proxy_command_token1] = ACTIONS(1358), + [aux_sym_proxy_jump_token1] = ACTIONS(1358), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1358), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1358), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1358), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1358), + [aux_sym_rekey_limit_token1] = ACTIONS(1358), + [aux_sym_remote_command_token1] = ACTIONS(1358), + [aux_sym_remote_forward_token1] = ACTIONS(1358), + [aux_sym_request_tty_token1] = ACTIONS(1358), + [aux_sym_required_rsa_size_token1] = ACTIONS(1358), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1358), + [aux_sym_security_key_provider_token1] = ACTIONS(1358), + [aux_sym_send_env_token1] = ACTIONS(1358), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1358), + [aux_sym_server_alive_interval_token1] = ACTIONS(1358), + [aux_sym_session_type_token1] = ACTIONS(1358), + [aux_sym_set_env_token1] = ACTIONS(1358), + [aux_sym_stdin_null_token1] = ACTIONS(1358), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1358), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1358), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1358), + [aux_sym_syslog_facility_token1] = ACTIONS(1358), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1358), + [aux_sym_keep_alive_token1] = ACTIONS(1358), + [aux_sym_tunnel_token1] = ACTIONS(1360), + [aux_sym_tunnel_device_token1] = ACTIONS(1358), + [aux_sym_update_host_keys_token1] = ACTIONS(1358), + [aux_sym_use_keychain_token1] = ACTIONS(1358), + [aux_sym_use_roaming_token1] = ACTIONS(1358), + [aux_sym_user_token1] = ACTIONS(1360), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1358), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1358), + [aux_sym_visual_host_key_token1] = ACTIONS(1358), + [aux_sym_xauth_location_token1] = ACTIONS(1358), }, [614] = { - [ts_builtin_sym_end] = ACTIONS(867), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(869), - [aux_sym_match_token1] = ACTIONS(867), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(867), - [aux_sym_address_family_token1] = ACTIONS(867), - [aux_sym_batch_mode_token1] = ACTIONS(867), - [aux_sym_bind_address_token1] = ACTIONS(867), - [aux_sym_bind_interface_token1] = ACTIONS(867), - [aux_sym_canonical_domains_token1] = ACTIONS(867), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(867), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(867), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(867), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(867), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(867), - [aux_sym_certificate_file_token1] = ACTIONS(867), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(867), - [aux_sym_check_host_ip_token1] = ACTIONS(867), - [aux_sym_ciphers_token1] = ACTIONS(867), - [aux_sym_cipher_token1] = ACTIONS(869), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(867), - [aux_sym_compression_token1] = ACTIONS(867), - [aux_sym_connection_attempts_token1] = ACTIONS(867), - [aux_sym_connect_timeout_token1] = ACTIONS(867), - [aux_sym_control_master_token1] = ACTIONS(867), - [aux_sym_control_path_token1] = ACTIONS(867), - [aux_sym_control_persist_token1] = ACTIONS(867), - [aux_sym_dynamic_forward_token1] = ACTIONS(867), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(867), - [aux_sym_escape_char_token1] = ACTIONS(867), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(867), - [aux_sym_fingerprint_hash_token1] = ACTIONS(867), - [aux_sym_fork_after_authentication_token1] = ACTIONS(867), - [aux_sym_forward_agent_token1] = ACTIONS(867), - [aux_sym_forward_x11_token1] = ACTIONS(869), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(867), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(867), - [aux_sym_gateway_ports_token1] = ACTIONS(867), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(867), - [aux_sym_gssapi_authentication_token1] = ACTIONS(867), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(867), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(867), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(867), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(867), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(867), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(867), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(867), - [aux_sym_hash_known_hosts_token1] = ACTIONS(867), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(867), - [aux_sym_hostbased_authentication_token1] = ACTIONS(867), - [aux_sym_host_key_algorithms_token1] = ACTIONS(867), - [aux_sym_host_key_alias_token1] = ACTIONS(867), - [aux_sym_hostname_token1] = ACTIONS(867), - [aux_sym_identities_only_token1] = ACTIONS(867), - [aux_sym_identity_agent_token1] = ACTIONS(867), - [aux_sym_identity_file_token1] = ACTIONS(867), - [aux_sym_ignore_unknown_token1] = ACTIONS(867), - [aux_sym_include_token1] = ACTIONS(867), - [aux_sym_ip_qos_token1] = ACTIONS(867), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(867), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(867), - [aux_sym_kex_algorithms_token1] = ACTIONS(867), - [aux_sym_known_hosts_command_token1] = ACTIONS(867), - [aux_sym_local_command_token1] = ACTIONS(867), - [aux_sym_local_forward_token1] = ACTIONS(867), - [aux_sym_log_level_token1] = ACTIONS(867), - [aux_sym_log_verbose_token1] = ACTIONS(867), - [aux_sym_macs_token1] = ACTIONS(867), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(867), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(867), - [aux_sym_password_authentication_token1] = ACTIONS(867), - [aux_sym_permit_local_command_token1] = ACTIONS(867), - [aux_sym_permit_remote_open_token1] = ACTIONS(867), - [aux_sym_pkcs11_provider_token1] = ACTIONS(867), - [aux_sym_port_token1] = ACTIONS(867), - [aux_sym_preferred_authentications_token1] = ACTIONS(867), - [aux_sym_protocol_token1] = ACTIONS(867), - [aux_sym_proxy_command_token1] = ACTIONS(867), - [aux_sym_proxy_jump_token1] = ACTIONS(867), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(867), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(867), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(867), - [aux_sym_pubkey_authentication_token1] = ACTIONS(867), - [aux_sym_rekey_limit_token1] = ACTIONS(867), - [aux_sym_remote_command_token1] = ACTIONS(867), - [aux_sym_remote_forward_token1] = ACTIONS(867), - [aux_sym_request_tty_token1] = ACTIONS(867), - [aux_sym_required_rsa_size_token1] = ACTIONS(867), - [aux_sym_revoked_host_keys_token1] = ACTIONS(867), - [aux_sym_security_key_provider_token1] = ACTIONS(867), - [aux_sym_send_env_token1] = ACTIONS(867), - [aux_sym_server_alive_count_max_token1] = ACTIONS(867), - [aux_sym_server_alive_interval_token1] = ACTIONS(867), - [aux_sym_session_type_token1] = ACTIONS(867), - [aux_sym_set_env_token1] = ACTIONS(867), - [aux_sym_stdin_null_token1] = ACTIONS(867), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(867), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(867), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(867), - [aux_sym_syslog_facility_token1] = ACTIONS(867), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(867), - [aux_sym_keep_alive_token1] = ACTIONS(867), - [aux_sym_tunnel_token1] = ACTIONS(869), - [aux_sym_tunnel_device_token1] = ACTIONS(867), - [aux_sym_update_host_keys_token1] = ACTIONS(867), - [aux_sym_use_keychain_token1] = ACTIONS(867), - [aux_sym_use_roaming_token1] = ACTIONS(867), - [aux_sym_user_token1] = ACTIONS(869), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(867), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(867), - [aux_sym_visual_host_key_token1] = ACTIONS(867), - [aux_sym_xauth_location_token1] = ACTIONS(867), + [ts_builtin_sym_end] = ACTIONS(956), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(958), + [aux_sym_match_token1] = ACTIONS(956), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(956), + [aux_sym_address_family_token1] = ACTIONS(956), + [aux_sym_batch_mode_token1] = ACTIONS(956), + [aux_sym_bind_address_token1] = ACTIONS(956), + [aux_sym_bind_interface_token1] = ACTIONS(956), + [aux_sym_canonical_domains_token1] = ACTIONS(956), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(956), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(956), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(956), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(956), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(956), + [aux_sym_certificate_file_token1] = ACTIONS(956), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(956), + [aux_sym_check_host_ip_token1] = ACTIONS(956), + [aux_sym_ciphers_token1] = ACTIONS(956), + [aux_sym_cipher_token1] = ACTIONS(958), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(956), + [aux_sym_compression_token1] = ACTIONS(956), + [aux_sym_connection_attempts_token1] = ACTIONS(956), + [aux_sym_connect_timeout_token1] = ACTIONS(956), + [aux_sym_control_master_token1] = ACTIONS(956), + [aux_sym_control_path_token1] = ACTIONS(956), + [aux_sym_control_persist_token1] = ACTIONS(956), + [aux_sym_dynamic_forward_token1] = ACTIONS(956), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(956), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(956), + [aux_sym_escape_char_token1] = ACTIONS(956), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(956), + [aux_sym_fingerprint_hash_token1] = ACTIONS(956), + [aux_sym_fork_after_authentication_token1] = ACTIONS(956), + [aux_sym_forward_agent_token1] = ACTIONS(956), + [aux_sym_forward_x11_token1] = ACTIONS(958), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(956), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(956), + [aux_sym_gateway_ports_token1] = ACTIONS(956), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(956), + [aux_sym_gssapi_authentication_token1] = ACTIONS(956), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(956), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(956), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(956), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(956), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(956), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(956), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(956), + [aux_sym_hash_known_hosts_token1] = ACTIONS(956), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(956), + [aux_sym_hostbased_authentication_token1] = ACTIONS(956), + [aux_sym_host_key_algorithms_token1] = ACTIONS(956), + [aux_sym_host_key_alias_token1] = ACTIONS(956), + [aux_sym_hostname_token1] = ACTIONS(956), + [aux_sym_identities_only_token1] = ACTIONS(956), + [aux_sym_identity_agent_token1] = ACTIONS(956), + [aux_sym_identity_file_token1] = ACTIONS(956), + [aux_sym_ignore_unknown_token1] = ACTIONS(956), + [aux_sym_include_token1] = ACTIONS(956), + [aux_sym_ip_qos_token1] = ACTIONS(956), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(956), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(956), + [aux_sym_kex_algorithms_token1] = ACTIONS(956), + [aux_sym_known_hosts_command_token1] = ACTIONS(956), + [aux_sym_local_command_token1] = ACTIONS(956), + [aux_sym_local_forward_token1] = ACTIONS(956), + [aux_sym_log_level_token1] = ACTIONS(956), + [aux_sym_log_verbose_token1] = ACTIONS(956), + [aux_sym_macs_token1] = ACTIONS(956), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(956), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(956), + [aux_sym_password_authentication_token1] = ACTIONS(956), + [aux_sym_permit_local_command_token1] = ACTIONS(956), + [aux_sym_permit_remote_open_token1] = ACTIONS(956), + [aux_sym_pkcs11_provider_token1] = ACTIONS(956), + [aux_sym_port_token1] = ACTIONS(956), + [aux_sym_preferred_authentications_token1] = ACTIONS(956), + [aux_sym_protocol_token1] = ACTIONS(956), + [aux_sym_proxy_command_token1] = ACTIONS(956), + [aux_sym_proxy_jump_token1] = ACTIONS(956), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(956), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(956), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(956), + [aux_sym_pubkey_authentication_token1] = ACTIONS(956), + [aux_sym_rekey_limit_token1] = ACTIONS(956), + [aux_sym_remote_command_token1] = ACTIONS(956), + [aux_sym_remote_forward_token1] = ACTIONS(956), + [aux_sym_request_tty_token1] = ACTIONS(956), + [aux_sym_required_rsa_size_token1] = ACTIONS(956), + [aux_sym_revoked_host_keys_token1] = ACTIONS(956), + [aux_sym_security_key_provider_token1] = ACTIONS(956), + [aux_sym_send_env_token1] = ACTIONS(956), + [aux_sym_server_alive_count_max_token1] = ACTIONS(956), + [aux_sym_server_alive_interval_token1] = ACTIONS(956), + [aux_sym_session_type_token1] = ACTIONS(956), + [aux_sym_set_env_token1] = ACTIONS(956), + [aux_sym_stdin_null_token1] = ACTIONS(956), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(956), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(956), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(956), + [aux_sym_syslog_facility_token1] = ACTIONS(956), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(956), + [aux_sym_keep_alive_token1] = ACTIONS(956), + [aux_sym_tunnel_token1] = ACTIONS(958), + [aux_sym_tunnel_device_token1] = ACTIONS(956), + [aux_sym_update_host_keys_token1] = ACTIONS(956), + [aux_sym_use_keychain_token1] = ACTIONS(956), + [aux_sym_use_roaming_token1] = ACTIONS(956), + [aux_sym_user_token1] = ACTIONS(958), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(956), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(956), + [aux_sym_visual_host_key_token1] = ACTIONS(956), + [aux_sym_xauth_location_token1] = ACTIONS(956), }, [615] = { - [ts_builtin_sym_end] = ACTIONS(1611), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1613), - [aux_sym_match_token1] = ACTIONS(1611), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1611), - [aux_sym_address_family_token1] = ACTIONS(1611), - [aux_sym_batch_mode_token1] = ACTIONS(1611), - [aux_sym_bind_address_token1] = ACTIONS(1611), - [aux_sym_bind_interface_token1] = ACTIONS(1611), - [aux_sym_canonical_domains_token1] = ACTIONS(1611), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1611), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1611), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1611), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1611), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1611), - [aux_sym_certificate_file_token1] = ACTIONS(1611), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1611), - [aux_sym_check_host_ip_token1] = ACTIONS(1611), - [aux_sym_ciphers_token1] = ACTIONS(1611), - [aux_sym_cipher_token1] = ACTIONS(1613), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1611), - [aux_sym_compression_token1] = ACTIONS(1611), - [aux_sym_connection_attempts_token1] = ACTIONS(1611), - [aux_sym_connect_timeout_token1] = ACTIONS(1611), - [aux_sym_control_master_token1] = ACTIONS(1611), - [aux_sym_control_path_token1] = ACTIONS(1611), - [aux_sym_control_persist_token1] = ACTIONS(1611), - [aux_sym_dynamic_forward_token1] = ACTIONS(1611), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1611), - [aux_sym_escape_char_token1] = ACTIONS(1611), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1611), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1611), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1611), - [aux_sym_forward_agent_token1] = ACTIONS(1611), - [aux_sym_forward_x11_token1] = ACTIONS(1613), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1611), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1611), - [aux_sym_gateway_ports_token1] = ACTIONS(1611), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1611), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1611), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1611), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1611), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1611), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1611), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1611), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1611), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1611), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1611), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1611), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1611), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1611), - [aux_sym_host_key_alias_token1] = ACTIONS(1611), - [aux_sym_hostname_token1] = ACTIONS(1611), - [aux_sym_identities_only_token1] = ACTIONS(1611), - [aux_sym_identity_agent_token1] = ACTIONS(1611), - [aux_sym_identity_file_token1] = ACTIONS(1611), - [aux_sym_ignore_unknown_token1] = ACTIONS(1611), - [aux_sym_include_token1] = ACTIONS(1611), - [aux_sym_ip_qos_token1] = ACTIONS(1611), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1611), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1611), - [aux_sym_kex_algorithms_token1] = ACTIONS(1611), - [aux_sym_known_hosts_command_token1] = ACTIONS(1611), - [aux_sym_local_command_token1] = ACTIONS(1611), - [aux_sym_local_forward_token1] = ACTIONS(1611), - [aux_sym_log_level_token1] = ACTIONS(1611), - [aux_sym_log_verbose_token1] = ACTIONS(1611), - [aux_sym_macs_token1] = ACTIONS(1611), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1611), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1611), - [aux_sym_password_authentication_token1] = ACTIONS(1611), - [aux_sym_permit_local_command_token1] = ACTIONS(1611), - [aux_sym_permit_remote_open_token1] = ACTIONS(1611), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1611), - [aux_sym_port_token1] = ACTIONS(1611), - [aux_sym_preferred_authentications_token1] = ACTIONS(1611), - [aux_sym_protocol_token1] = ACTIONS(1611), - [aux_sym_proxy_command_token1] = ACTIONS(1611), - [aux_sym_proxy_jump_token1] = ACTIONS(1611), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1611), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1611), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1611), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1611), - [aux_sym_rekey_limit_token1] = ACTIONS(1611), - [aux_sym_remote_command_token1] = ACTIONS(1611), - [aux_sym_remote_forward_token1] = ACTIONS(1611), - [aux_sym_request_tty_token1] = ACTIONS(1611), - [aux_sym_required_rsa_size_token1] = ACTIONS(1611), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1611), - [aux_sym_security_key_provider_token1] = ACTIONS(1611), - [aux_sym_send_env_token1] = ACTIONS(1611), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1611), - [aux_sym_server_alive_interval_token1] = ACTIONS(1611), - [aux_sym_session_type_token1] = ACTIONS(1611), - [aux_sym_set_env_token1] = ACTIONS(1611), - [aux_sym_stdin_null_token1] = ACTIONS(1611), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1611), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1611), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1611), - [aux_sym_syslog_facility_token1] = ACTIONS(1611), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1611), - [aux_sym_keep_alive_token1] = ACTIONS(1611), - [aux_sym_tunnel_token1] = ACTIONS(1613), - [aux_sym_tunnel_device_token1] = ACTIONS(1611), - [aux_sym_update_host_keys_token1] = ACTIONS(1611), - [aux_sym_use_keychain_token1] = ACTIONS(1611), - [aux_sym_use_roaming_token1] = ACTIONS(1611), - [aux_sym_user_token1] = ACTIONS(1613), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1611), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1611), - [aux_sym_visual_host_key_token1] = ACTIONS(1611), - [aux_sym_xauth_location_token1] = ACTIONS(1611), + [ts_builtin_sym_end] = ACTIONS(1364), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1366), + [aux_sym_match_token1] = ACTIONS(1364), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1364), + [aux_sym_address_family_token1] = ACTIONS(1364), + [aux_sym_batch_mode_token1] = ACTIONS(1364), + [aux_sym_bind_address_token1] = ACTIONS(1364), + [aux_sym_bind_interface_token1] = ACTIONS(1364), + [aux_sym_canonical_domains_token1] = ACTIONS(1364), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1364), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1364), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1364), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1364), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1364), + [aux_sym_certificate_file_token1] = ACTIONS(1364), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1364), + [aux_sym_check_host_ip_token1] = ACTIONS(1364), + [aux_sym_ciphers_token1] = ACTIONS(1364), + [aux_sym_cipher_token1] = ACTIONS(1366), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1364), + [aux_sym_compression_token1] = ACTIONS(1364), + [aux_sym_connection_attempts_token1] = ACTIONS(1364), + [aux_sym_connect_timeout_token1] = ACTIONS(1364), + [aux_sym_control_master_token1] = ACTIONS(1364), + [aux_sym_control_path_token1] = ACTIONS(1364), + [aux_sym_control_persist_token1] = ACTIONS(1364), + [aux_sym_dynamic_forward_token1] = ACTIONS(1364), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1364), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1364), + [aux_sym_escape_char_token1] = ACTIONS(1364), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1364), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1364), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1364), + [aux_sym_forward_agent_token1] = ACTIONS(1364), + [aux_sym_forward_x11_token1] = ACTIONS(1366), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1364), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1364), + [aux_sym_gateway_ports_token1] = ACTIONS(1364), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1364), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1364), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1364), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1364), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1364), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1364), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1364), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1364), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1364), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1364), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1364), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1364), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1364), + [aux_sym_host_key_alias_token1] = ACTIONS(1364), + [aux_sym_hostname_token1] = ACTIONS(1364), + [aux_sym_identities_only_token1] = ACTIONS(1364), + [aux_sym_identity_agent_token1] = ACTIONS(1364), + [aux_sym_identity_file_token1] = ACTIONS(1364), + [aux_sym_ignore_unknown_token1] = ACTIONS(1364), + [aux_sym_include_token1] = ACTIONS(1364), + [aux_sym_ip_qos_token1] = ACTIONS(1364), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1364), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1364), + [aux_sym_kex_algorithms_token1] = ACTIONS(1364), + [aux_sym_known_hosts_command_token1] = ACTIONS(1364), + [aux_sym_local_command_token1] = ACTIONS(1364), + [aux_sym_local_forward_token1] = ACTIONS(1364), + [aux_sym_log_level_token1] = ACTIONS(1364), + [aux_sym_log_verbose_token1] = ACTIONS(1364), + [aux_sym_macs_token1] = ACTIONS(1364), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1364), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1364), + [aux_sym_password_authentication_token1] = ACTIONS(1364), + [aux_sym_permit_local_command_token1] = ACTIONS(1364), + [aux_sym_permit_remote_open_token1] = ACTIONS(1364), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1364), + [aux_sym_port_token1] = ACTIONS(1364), + [aux_sym_preferred_authentications_token1] = ACTIONS(1364), + [aux_sym_protocol_token1] = ACTIONS(1364), + [aux_sym_proxy_command_token1] = ACTIONS(1364), + [aux_sym_proxy_jump_token1] = ACTIONS(1364), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1364), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1364), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1364), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1364), + [aux_sym_rekey_limit_token1] = ACTIONS(1364), + [aux_sym_remote_command_token1] = ACTIONS(1364), + [aux_sym_remote_forward_token1] = ACTIONS(1364), + [aux_sym_request_tty_token1] = ACTIONS(1364), + [aux_sym_required_rsa_size_token1] = ACTIONS(1364), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1364), + [aux_sym_security_key_provider_token1] = ACTIONS(1364), + [aux_sym_send_env_token1] = ACTIONS(1364), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1364), + [aux_sym_server_alive_interval_token1] = ACTIONS(1364), + [aux_sym_session_type_token1] = ACTIONS(1364), + [aux_sym_set_env_token1] = ACTIONS(1364), + [aux_sym_stdin_null_token1] = ACTIONS(1364), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1364), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1364), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1364), + [aux_sym_syslog_facility_token1] = ACTIONS(1364), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1364), + [aux_sym_keep_alive_token1] = ACTIONS(1364), + [aux_sym_tunnel_token1] = ACTIONS(1366), + [aux_sym_tunnel_device_token1] = ACTIONS(1364), + [aux_sym_update_host_keys_token1] = ACTIONS(1364), + [aux_sym_use_keychain_token1] = ACTIONS(1364), + [aux_sym_use_roaming_token1] = ACTIONS(1364), + [aux_sym_user_token1] = ACTIONS(1366), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1364), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1364), + [aux_sym_visual_host_key_token1] = ACTIONS(1364), + [aux_sym_xauth_location_token1] = ACTIONS(1364), }, [616] = { - [ts_builtin_sym_end] = ACTIONS(1647), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1649), - [aux_sym_match_token1] = ACTIONS(1647), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1647), - [aux_sym_address_family_token1] = ACTIONS(1647), - [aux_sym_batch_mode_token1] = ACTIONS(1647), - [aux_sym_bind_address_token1] = ACTIONS(1647), - [aux_sym_bind_interface_token1] = ACTIONS(1647), - [aux_sym_canonical_domains_token1] = ACTIONS(1647), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1647), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1647), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1647), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1647), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1647), - [aux_sym_certificate_file_token1] = ACTIONS(1647), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1647), - [aux_sym_check_host_ip_token1] = ACTIONS(1647), - [aux_sym_ciphers_token1] = ACTIONS(1647), - [aux_sym_cipher_token1] = ACTIONS(1649), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1647), - [aux_sym_compression_token1] = ACTIONS(1647), - [aux_sym_connection_attempts_token1] = ACTIONS(1647), - [aux_sym_connect_timeout_token1] = ACTIONS(1647), - [aux_sym_control_master_token1] = ACTIONS(1647), - [aux_sym_control_path_token1] = ACTIONS(1647), - [aux_sym_control_persist_token1] = ACTIONS(1647), - [aux_sym_dynamic_forward_token1] = ACTIONS(1647), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1647), - [aux_sym_escape_char_token1] = ACTIONS(1647), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1647), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1647), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1647), - [aux_sym_forward_agent_token1] = ACTIONS(1647), - [aux_sym_forward_x11_token1] = ACTIONS(1649), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1647), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1647), - [aux_sym_gateway_ports_token1] = ACTIONS(1647), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1647), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1647), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1647), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1647), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1647), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1647), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1647), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1647), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1647), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1647), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1647), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1647), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1647), - [aux_sym_host_key_alias_token1] = ACTIONS(1647), - [aux_sym_hostname_token1] = ACTIONS(1647), - [aux_sym_identities_only_token1] = ACTIONS(1647), - [aux_sym_identity_agent_token1] = ACTIONS(1647), - [aux_sym_identity_file_token1] = ACTIONS(1647), - [aux_sym_ignore_unknown_token1] = ACTIONS(1647), - [aux_sym_include_token1] = ACTIONS(1647), - [aux_sym_ip_qos_token1] = ACTIONS(1647), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1647), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1647), - [aux_sym_kex_algorithms_token1] = ACTIONS(1647), - [aux_sym_known_hosts_command_token1] = ACTIONS(1647), - [aux_sym_local_command_token1] = ACTIONS(1647), - [aux_sym_local_forward_token1] = ACTIONS(1647), - [aux_sym_log_level_token1] = ACTIONS(1647), - [aux_sym_log_verbose_token1] = ACTIONS(1647), - [aux_sym_macs_token1] = ACTIONS(1647), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1647), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1647), - [aux_sym_password_authentication_token1] = ACTIONS(1647), - [aux_sym_permit_local_command_token1] = ACTIONS(1647), - [aux_sym_permit_remote_open_token1] = ACTIONS(1647), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1647), - [aux_sym_port_token1] = ACTIONS(1647), - [aux_sym_preferred_authentications_token1] = ACTIONS(1647), - [aux_sym_protocol_token1] = ACTIONS(1647), - [aux_sym_proxy_command_token1] = ACTIONS(1647), - [aux_sym_proxy_jump_token1] = ACTIONS(1647), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1647), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1647), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1647), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1647), - [aux_sym_rekey_limit_token1] = ACTIONS(1647), - [aux_sym_remote_command_token1] = ACTIONS(1647), - [aux_sym_remote_forward_token1] = ACTIONS(1647), - [aux_sym_request_tty_token1] = ACTIONS(1647), - [aux_sym_required_rsa_size_token1] = ACTIONS(1647), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1647), - [aux_sym_security_key_provider_token1] = ACTIONS(1647), - [aux_sym_send_env_token1] = ACTIONS(1647), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1647), - [aux_sym_server_alive_interval_token1] = ACTIONS(1647), - [aux_sym_session_type_token1] = ACTIONS(1647), - [aux_sym_set_env_token1] = ACTIONS(1647), - [aux_sym_stdin_null_token1] = ACTIONS(1647), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1647), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1647), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1647), - [aux_sym_syslog_facility_token1] = ACTIONS(1647), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1647), - [aux_sym_keep_alive_token1] = ACTIONS(1647), - [aux_sym_tunnel_token1] = ACTIONS(1649), - [aux_sym_tunnel_device_token1] = ACTIONS(1647), - [aux_sym_update_host_keys_token1] = ACTIONS(1647), - [aux_sym_use_keychain_token1] = ACTIONS(1647), - [aux_sym_use_roaming_token1] = ACTIONS(1647), - [aux_sym_user_token1] = ACTIONS(1649), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1647), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1647), - [aux_sym_visual_host_key_token1] = ACTIONS(1647), - [aux_sym_xauth_location_token1] = ACTIONS(1647), + [ts_builtin_sym_end] = ACTIONS(950), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(952), + [aux_sym_match_token1] = ACTIONS(950), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(950), + [aux_sym_address_family_token1] = ACTIONS(950), + [aux_sym_batch_mode_token1] = ACTIONS(950), + [aux_sym_bind_address_token1] = ACTIONS(950), + [aux_sym_bind_interface_token1] = ACTIONS(950), + [aux_sym_canonical_domains_token1] = ACTIONS(950), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(950), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(950), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(950), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(950), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(950), + [aux_sym_certificate_file_token1] = ACTIONS(950), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(950), + [aux_sym_check_host_ip_token1] = ACTIONS(950), + [aux_sym_ciphers_token1] = ACTIONS(950), + [aux_sym_cipher_token1] = ACTIONS(952), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(950), + [aux_sym_compression_token1] = ACTIONS(950), + [aux_sym_connection_attempts_token1] = ACTIONS(950), + [aux_sym_connect_timeout_token1] = ACTIONS(950), + [aux_sym_control_master_token1] = ACTIONS(950), + [aux_sym_control_path_token1] = ACTIONS(950), + [aux_sym_control_persist_token1] = ACTIONS(950), + [aux_sym_dynamic_forward_token1] = ACTIONS(950), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(950), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(950), + [aux_sym_escape_char_token1] = ACTIONS(950), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(950), + [aux_sym_fingerprint_hash_token1] = ACTIONS(950), + [aux_sym_fork_after_authentication_token1] = ACTIONS(950), + [aux_sym_forward_agent_token1] = ACTIONS(950), + [aux_sym_forward_x11_token1] = ACTIONS(952), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(950), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(950), + [aux_sym_gateway_ports_token1] = ACTIONS(950), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(950), + [aux_sym_gssapi_authentication_token1] = ACTIONS(950), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(950), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(950), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(950), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(950), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(950), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(950), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(950), + [aux_sym_hash_known_hosts_token1] = ACTIONS(950), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(950), + [aux_sym_hostbased_authentication_token1] = ACTIONS(950), + [aux_sym_host_key_algorithms_token1] = ACTIONS(950), + [aux_sym_host_key_alias_token1] = ACTIONS(950), + [aux_sym_hostname_token1] = ACTIONS(950), + [aux_sym_identities_only_token1] = ACTIONS(950), + [aux_sym_identity_agent_token1] = ACTIONS(950), + [aux_sym_identity_file_token1] = ACTIONS(950), + [aux_sym_ignore_unknown_token1] = ACTIONS(950), + [aux_sym_include_token1] = ACTIONS(950), + [aux_sym_ip_qos_token1] = ACTIONS(950), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(950), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(950), + [aux_sym_kex_algorithms_token1] = ACTIONS(950), + [aux_sym_known_hosts_command_token1] = ACTIONS(950), + [aux_sym_local_command_token1] = ACTIONS(950), + [aux_sym_local_forward_token1] = ACTIONS(950), + [aux_sym_log_level_token1] = ACTIONS(950), + [aux_sym_log_verbose_token1] = ACTIONS(950), + [aux_sym_macs_token1] = ACTIONS(950), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(950), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(950), + [aux_sym_password_authentication_token1] = ACTIONS(950), + [aux_sym_permit_local_command_token1] = ACTIONS(950), + [aux_sym_permit_remote_open_token1] = ACTIONS(950), + [aux_sym_pkcs11_provider_token1] = ACTIONS(950), + [aux_sym_port_token1] = ACTIONS(950), + [aux_sym_preferred_authentications_token1] = ACTIONS(950), + [aux_sym_protocol_token1] = ACTIONS(950), + [aux_sym_proxy_command_token1] = ACTIONS(950), + [aux_sym_proxy_jump_token1] = ACTIONS(950), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(950), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(950), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(950), + [aux_sym_pubkey_authentication_token1] = ACTIONS(950), + [aux_sym_rekey_limit_token1] = ACTIONS(950), + [aux_sym_remote_command_token1] = ACTIONS(950), + [aux_sym_remote_forward_token1] = ACTIONS(950), + [aux_sym_request_tty_token1] = ACTIONS(950), + [aux_sym_required_rsa_size_token1] = ACTIONS(950), + [aux_sym_revoked_host_keys_token1] = ACTIONS(950), + [aux_sym_security_key_provider_token1] = ACTIONS(950), + [aux_sym_send_env_token1] = ACTIONS(950), + [aux_sym_server_alive_count_max_token1] = ACTIONS(950), + [aux_sym_server_alive_interval_token1] = ACTIONS(950), + [aux_sym_session_type_token1] = ACTIONS(950), + [aux_sym_set_env_token1] = ACTIONS(950), + [aux_sym_stdin_null_token1] = ACTIONS(950), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(950), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(950), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(950), + [aux_sym_syslog_facility_token1] = ACTIONS(950), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(950), + [aux_sym_keep_alive_token1] = ACTIONS(950), + [aux_sym_tunnel_token1] = ACTIONS(952), + [aux_sym_tunnel_device_token1] = ACTIONS(950), + [aux_sym_update_host_keys_token1] = ACTIONS(950), + [aux_sym_use_keychain_token1] = ACTIONS(950), + [aux_sym_use_roaming_token1] = ACTIONS(950), + [aux_sym_user_token1] = ACTIONS(952), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(950), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(950), + [aux_sym_visual_host_key_token1] = ACTIONS(950), + [aux_sym_xauth_location_token1] = ACTIONS(950), }, [617] = { - [ts_builtin_sym_end] = ACTIONS(873), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(875), - [aux_sym_match_token1] = ACTIONS(873), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(873), - [aux_sym_address_family_token1] = ACTIONS(873), - [aux_sym_batch_mode_token1] = ACTIONS(873), - [aux_sym_bind_address_token1] = ACTIONS(873), - [aux_sym_bind_interface_token1] = ACTIONS(873), - [aux_sym_canonical_domains_token1] = ACTIONS(873), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(873), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(873), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(873), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(873), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(873), - [aux_sym_certificate_file_token1] = ACTIONS(873), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(873), - [aux_sym_check_host_ip_token1] = ACTIONS(873), - [aux_sym_ciphers_token1] = ACTIONS(873), - [aux_sym_cipher_token1] = ACTIONS(875), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(873), - [aux_sym_compression_token1] = ACTIONS(873), - [aux_sym_connection_attempts_token1] = ACTIONS(873), - [aux_sym_connect_timeout_token1] = ACTIONS(873), - [aux_sym_control_master_token1] = ACTIONS(873), - [aux_sym_control_path_token1] = ACTIONS(873), - [aux_sym_control_persist_token1] = ACTIONS(873), - [aux_sym_dynamic_forward_token1] = ACTIONS(873), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(873), - [aux_sym_escape_char_token1] = ACTIONS(873), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(873), - [aux_sym_fingerprint_hash_token1] = ACTIONS(873), - [aux_sym_fork_after_authentication_token1] = ACTIONS(873), - [aux_sym_forward_agent_token1] = ACTIONS(873), - [aux_sym_forward_x11_token1] = ACTIONS(875), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(873), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(873), - [aux_sym_gateway_ports_token1] = ACTIONS(873), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(873), - [aux_sym_gssapi_authentication_token1] = ACTIONS(873), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(873), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(873), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(873), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(873), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(873), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(873), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(873), - [aux_sym_hash_known_hosts_token1] = ACTIONS(873), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(873), - [aux_sym_hostbased_authentication_token1] = ACTIONS(873), - [aux_sym_host_key_algorithms_token1] = ACTIONS(873), - [aux_sym_host_key_alias_token1] = ACTIONS(873), - [aux_sym_hostname_token1] = ACTIONS(873), - [aux_sym_identities_only_token1] = ACTIONS(873), - [aux_sym_identity_agent_token1] = ACTIONS(873), - [aux_sym_identity_file_token1] = ACTIONS(873), - [aux_sym_ignore_unknown_token1] = ACTIONS(873), - [aux_sym_include_token1] = ACTIONS(873), - [aux_sym_ip_qos_token1] = ACTIONS(873), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(873), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(873), - [aux_sym_kex_algorithms_token1] = ACTIONS(873), - [aux_sym_known_hosts_command_token1] = ACTIONS(873), - [aux_sym_local_command_token1] = ACTIONS(873), - [aux_sym_local_forward_token1] = ACTIONS(873), - [aux_sym_log_level_token1] = ACTIONS(873), - [aux_sym_log_verbose_token1] = ACTIONS(873), - [aux_sym_macs_token1] = ACTIONS(873), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(873), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(873), - [aux_sym_password_authentication_token1] = ACTIONS(873), - [aux_sym_permit_local_command_token1] = ACTIONS(873), - [aux_sym_permit_remote_open_token1] = ACTIONS(873), - [aux_sym_pkcs11_provider_token1] = ACTIONS(873), - [aux_sym_port_token1] = ACTIONS(873), - [aux_sym_preferred_authentications_token1] = ACTIONS(873), - [aux_sym_protocol_token1] = ACTIONS(873), - [aux_sym_proxy_command_token1] = ACTIONS(873), - [aux_sym_proxy_jump_token1] = ACTIONS(873), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(873), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(873), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(873), - [aux_sym_pubkey_authentication_token1] = ACTIONS(873), - [aux_sym_rekey_limit_token1] = ACTIONS(873), - [aux_sym_remote_command_token1] = ACTIONS(873), - [aux_sym_remote_forward_token1] = ACTIONS(873), - [aux_sym_request_tty_token1] = ACTIONS(873), - [aux_sym_required_rsa_size_token1] = ACTIONS(873), - [aux_sym_revoked_host_keys_token1] = ACTIONS(873), - [aux_sym_security_key_provider_token1] = ACTIONS(873), - [aux_sym_send_env_token1] = ACTIONS(873), - [aux_sym_server_alive_count_max_token1] = ACTIONS(873), - [aux_sym_server_alive_interval_token1] = ACTIONS(873), - [aux_sym_session_type_token1] = ACTIONS(873), - [aux_sym_set_env_token1] = ACTIONS(873), - [aux_sym_stdin_null_token1] = ACTIONS(873), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(873), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(873), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(873), - [aux_sym_syslog_facility_token1] = ACTIONS(873), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(873), - [aux_sym_keep_alive_token1] = ACTIONS(873), - [aux_sym_tunnel_token1] = ACTIONS(875), - [aux_sym_tunnel_device_token1] = ACTIONS(873), - [aux_sym_update_host_keys_token1] = ACTIONS(873), - [aux_sym_use_keychain_token1] = ACTIONS(873), - [aux_sym_use_roaming_token1] = ACTIONS(873), - [aux_sym_user_token1] = ACTIONS(875), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(873), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(873), - [aux_sym_visual_host_key_token1] = ACTIONS(873), - [aux_sym_xauth_location_token1] = ACTIONS(873), + [ts_builtin_sym_end] = ACTIONS(1370), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1372), + [aux_sym_match_token1] = ACTIONS(1370), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1370), + [aux_sym_address_family_token1] = ACTIONS(1370), + [aux_sym_batch_mode_token1] = ACTIONS(1370), + [aux_sym_bind_address_token1] = ACTIONS(1370), + [aux_sym_bind_interface_token1] = ACTIONS(1370), + [aux_sym_canonical_domains_token1] = ACTIONS(1370), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1370), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1370), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1370), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1370), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1370), + [aux_sym_certificate_file_token1] = ACTIONS(1370), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1370), + [aux_sym_check_host_ip_token1] = ACTIONS(1370), + [aux_sym_ciphers_token1] = ACTIONS(1370), + [aux_sym_cipher_token1] = ACTIONS(1372), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1370), + [aux_sym_compression_token1] = ACTIONS(1370), + [aux_sym_connection_attempts_token1] = ACTIONS(1370), + [aux_sym_connect_timeout_token1] = ACTIONS(1370), + [aux_sym_control_master_token1] = ACTIONS(1370), + [aux_sym_control_path_token1] = ACTIONS(1370), + [aux_sym_control_persist_token1] = ACTIONS(1370), + [aux_sym_dynamic_forward_token1] = ACTIONS(1370), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1370), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1370), + [aux_sym_escape_char_token1] = ACTIONS(1370), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1370), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1370), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1370), + [aux_sym_forward_agent_token1] = ACTIONS(1370), + [aux_sym_forward_x11_token1] = ACTIONS(1372), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1370), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1370), + [aux_sym_gateway_ports_token1] = ACTIONS(1370), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1370), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1370), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1370), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1370), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1370), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1370), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1370), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1370), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1370), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1370), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1370), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1370), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1370), + [aux_sym_host_key_alias_token1] = ACTIONS(1370), + [aux_sym_hostname_token1] = ACTIONS(1370), + [aux_sym_identities_only_token1] = ACTIONS(1370), + [aux_sym_identity_agent_token1] = ACTIONS(1370), + [aux_sym_identity_file_token1] = ACTIONS(1370), + [aux_sym_ignore_unknown_token1] = ACTIONS(1370), + [aux_sym_include_token1] = ACTIONS(1370), + [aux_sym_ip_qos_token1] = ACTIONS(1370), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1370), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1370), + [aux_sym_kex_algorithms_token1] = ACTIONS(1370), + [aux_sym_known_hosts_command_token1] = ACTIONS(1370), + [aux_sym_local_command_token1] = ACTIONS(1370), + [aux_sym_local_forward_token1] = ACTIONS(1370), + [aux_sym_log_level_token1] = ACTIONS(1370), + [aux_sym_log_verbose_token1] = ACTIONS(1370), + [aux_sym_macs_token1] = ACTIONS(1370), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1370), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1370), + [aux_sym_password_authentication_token1] = ACTIONS(1370), + [aux_sym_permit_local_command_token1] = ACTIONS(1370), + [aux_sym_permit_remote_open_token1] = ACTIONS(1370), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1370), + [aux_sym_port_token1] = ACTIONS(1370), + [aux_sym_preferred_authentications_token1] = ACTIONS(1370), + [aux_sym_protocol_token1] = ACTIONS(1370), + [aux_sym_proxy_command_token1] = ACTIONS(1370), + [aux_sym_proxy_jump_token1] = ACTIONS(1370), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1370), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1370), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1370), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1370), + [aux_sym_rekey_limit_token1] = ACTIONS(1370), + [aux_sym_remote_command_token1] = ACTIONS(1370), + [aux_sym_remote_forward_token1] = ACTIONS(1370), + [aux_sym_request_tty_token1] = ACTIONS(1370), + [aux_sym_required_rsa_size_token1] = ACTIONS(1370), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1370), + [aux_sym_security_key_provider_token1] = ACTIONS(1370), + [aux_sym_send_env_token1] = ACTIONS(1370), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1370), + [aux_sym_server_alive_interval_token1] = ACTIONS(1370), + [aux_sym_session_type_token1] = ACTIONS(1370), + [aux_sym_set_env_token1] = ACTIONS(1370), + [aux_sym_stdin_null_token1] = ACTIONS(1370), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1370), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1370), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1370), + [aux_sym_syslog_facility_token1] = ACTIONS(1370), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1370), + [aux_sym_keep_alive_token1] = ACTIONS(1370), + [aux_sym_tunnel_token1] = ACTIONS(1372), + [aux_sym_tunnel_device_token1] = ACTIONS(1370), + [aux_sym_update_host_keys_token1] = ACTIONS(1370), + [aux_sym_use_keychain_token1] = ACTIONS(1370), + [aux_sym_use_roaming_token1] = ACTIONS(1370), + [aux_sym_user_token1] = ACTIONS(1372), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1370), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1370), + [aux_sym_visual_host_key_token1] = ACTIONS(1370), + [aux_sym_xauth_location_token1] = ACTIONS(1370), }, [618] = { - [ts_builtin_sym_end] = ACTIONS(879), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(881), - [aux_sym_match_token1] = ACTIONS(879), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(879), - [aux_sym_address_family_token1] = ACTIONS(879), - [aux_sym_batch_mode_token1] = ACTIONS(879), - [aux_sym_bind_address_token1] = ACTIONS(879), - [aux_sym_bind_interface_token1] = ACTIONS(879), - [aux_sym_canonical_domains_token1] = ACTIONS(879), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(879), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(879), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(879), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(879), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(879), - [aux_sym_certificate_file_token1] = ACTIONS(879), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(879), - [aux_sym_check_host_ip_token1] = ACTIONS(879), - [aux_sym_ciphers_token1] = ACTIONS(879), - [aux_sym_cipher_token1] = ACTIONS(881), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(879), - [aux_sym_compression_token1] = ACTIONS(879), - [aux_sym_connection_attempts_token1] = ACTIONS(879), - [aux_sym_connect_timeout_token1] = ACTIONS(879), - [aux_sym_control_master_token1] = ACTIONS(879), - [aux_sym_control_path_token1] = ACTIONS(879), - [aux_sym_control_persist_token1] = ACTIONS(879), - [aux_sym_dynamic_forward_token1] = ACTIONS(879), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(879), - [aux_sym_escape_char_token1] = ACTIONS(879), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(879), - [aux_sym_fingerprint_hash_token1] = ACTIONS(879), - [aux_sym_fork_after_authentication_token1] = ACTIONS(879), - [aux_sym_forward_agent_token1] = ACTIONS(879), - [aux_sym_forward_x11_token1] = ACTIONS(881), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(879), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(879), - [aux_sym_gateway_ports_token1] = ACTIONS(879), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(879), - [aux_sym_gssapi_authentication_token1] = ACTIONS(879), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(879), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(879), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(879), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(879), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(879), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(879), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(879), - [aux_sym_hash_known_hosts_token1] = ACTIONS(879), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(879), - [aux_sym_hostbased_authentication_token1] = ACTIONS(879), - [aux_sym_host_key_algorithms_token1] = ACTIONS(879), - [aux_sym_host_key_alias_token1] = ACTIONS(879), - [aux_sym_hostname_token1] = ACTIONS(879), - [aux_sym_identities_only_token1] = ACTIONS(879), - [aux_sym_identity_agent_token1] = ACTIONS(879), - [aux_sym_identity_file_token1] = ACTIONS(879), - [aux_sym_ignore_unknown_token1] = ACTIONS(879), - [aux_sym_include_token1] = ACTIONS(879), - [aux_sym_ip_qos_token1] = ACTIONS(879), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(879), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(879), - [aux_sym_kex_algorithms_token1] = ACTIONS(879), - [aux_sym_known_hosts_command_token1] = ACTIONS(879), - [aux_sym_local_command_token1] = ACTIONS(879), - [aux_sym_local_forward_token1] = ACTIONS(879), - [aux_sym_log_level_token1] = ACTIONS(879), - [aux_sym_log_verbose_token1] = ACTIONS(879), - [aux_sym_macs_token1] = ACTIONS(879), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(879), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(879), - [aux_sym_password_authentication_token1] = ACTIONS(879), - [aux_sym_permit_local_command_token1] = ACTIONS(879), - [aux_sym_permit_remote_open_token1] = ACTIONS(879), - [aux_sym_pkcs11_provider_token1] = ACTIONS(879), - [aux_sym_port_token1] = ACTIONS(879), - [aux_sym_preferred_authentications_token1] = ACTIONS(879), - [aux_sym_protocol_token1] = ACTIONS(879), - [aux_sym_proxy_command_token1] = ACTIONS(879), - [aux_sym_proxy_jump_token1] = ACTIONS(879), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(879), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(879), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(879), - [aux_sym_pubkey_authentication_token1] = ACTIONS(879), - [aux_sym_rekey_limit_token1] = ACTIONS(879), - [aux_sym_remote_command_token1] = ACTIONS(879), - [aux_sym_remote_forward_token1] = ACTIONS(879), - [aux_sym_request_tty_token1] = ACTIONS(879), - [aux_sym_required_rsa_size_token1] = ACTIONS(879), - [aux_sym_revoked_host_keys_token1] = ACTIONS(879), - [aux_sym_security_key_provider_token1] = ACTIONS(879), - [aux_sym_send_env_token1] = ACTIONS(879), - [aux_sym_server_alive_count_max_token1] = ACTIONS(879), - [aux_sym_server_alive_interval_token1] = ACTIONS(879), - [aux_sym_session_type_token1] = ACTIONS(879), - [aux_sym_set_env_token1] = ACTIONS(879), - [aux_sym_stdin_null_token1] = ACTIONS(879), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(879), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(879), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(879), - [aux_sym_syslog_facility_token1] = ACTIONS(879), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(879), - [aux_sym_keep_alive_token1] = ACTIONS(879), - [aux_sym_tunnel_token1] = ACTIONS(881), - [aux_sym_tunnel_device_token1] = ACTIONS(879), - [aux_sym_update_host_keys_token1] = ACTIONS(879), - [aux_sym_use_keychain_token1] = ACTIONS(879), - [aux_sym_use_roaming_token1] = ACTIONS(879), - [aux_sym_user_token1] = ACTIONS(881), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(879), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(879), - [aux_sym_visual_host_key_token1] = ACTIONS(879), - [aux_sym_xauth_location_token1] = ACTIONS(879), + [ts_builtin_sym_end] = ACTIONS(944), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(946), + [aux_sym_match_token1] = ACTIONS(944), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(944), + [aux_sym_address_family_token1] = ACTIONS(944), + [aux_sym_batch_mode_token1] = ACTIONS(944), + [aux_sym_bind_address_token1] = ACTIONS(944), + [aux_sym_bind_interface_token1] = ACTIONS(944), + [aux_sym_canonical_domains_token1] = ACTIONS(944), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(944), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(944), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(944), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(944), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(944), + [aux_sym_certificate_file_token1] = ACTIONS(944), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(944), + [aux_sym_check_host_ip_token1] = ACTIONS(944), + [aux_sym_ciphers_token1] = ACTIONS(944), + [aux_sym_cipher_token1] = ACTIONS(946), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(944), + [aux_sym_compression_token1] = ACTIONS(944), + [aux_sym_connection_attempts_token1] = ACTIONS(944), + [aux_sym_connect_timeout_token1] = ACTIONS(944), + [aux_sym_control_master_token1] = ACTIONS(944), + [aux_sym_control_path_token1] = ACTIONS(944), + [aux_sym_control_persist_token1] = ACTIONS(944), + [aux_sym_dynamic_forward_token1] = ACTIONS(944), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(944), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(944), + [aux_sym_escape_char_token1] = ACTIONS(944), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(944), + [aux_sym_fingerprint_hash_token1] = ACTIONS(944), + [aux_sym_fork_after_authentication_token1] = ACTIONS(944), + [aux_sym_forward_agent_token1] = ACTIONS(944), + [aux_sym_forward_x11_token1] = ACTIONS(946), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(944), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(944), + [aux_sym_gateway_ports_token1] = ACTIONS(944), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(944), + [aux_sym_gssapi_authentication_token1] = ACTIONS(944), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(944), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(944), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(944), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(944), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(944), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(944), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(944), + [aux_sym_hash_known_hosts_token1] = ACTIONS(944), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(944), + [aux_sym_hostbased_authentication_token1] = ACTIONS(944), + [aux_sym_host_key_algorithms_token1] = ACTIONS(944), + [aux_sym_host_key_alias_token1] = ACTIONS(944), + [aux_sym_hostname_token1] = ACTIONS(944), + [aux_sym_identities_only_token1] = ACTIONS(944), + [aux_sym_identity_agent_token1] = ACTIONS(944), + [aux_sym_identity_file_token1] = ACTIONS(944), + [aux_sym_ignore_unknown_token1] = ACTIONS(944), + [aux_sym_include_token1] = ACTIONS(944), + [aux_sym_ip_qos_token1] = ACTIONS(944), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(944), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(944), + [aux_sym_kex_algorithms_token1] = ACTIONS(944), + [aux_sym_known_hosts_command_token1] = ACTIONS(944), + [aux_sym_local_command_token1] = ACTIONS(944), + [aux_sym_local_forward_token1] = ACTIONS(944), + [aux_sym_log_level_token1] = ACTIONS(944), + [aux_sym_log_verbose_token1] = ACTIONS(944), + [aux_sym_macs_token1] = ACTIONS(944), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(944), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(944), + [aux_sym_password_authentication_token1] = ACTIONS(944), + [aux_sym_permit_local_command_token1] = ACTIONS(944), + [aux_sym_permit_remote_open_token1] = ACTIONS(944), + [aux_sym_pkcs11_provider_token1] = ACTIONS(944), + [aux_sym_port_token1] = ACTIONS(944), + [aux_sym_preferred_authentications_token1] = ACTIONS(944), + [aux_sym_protocol_token1] = ACTIONS(944), + [aux_sym_proxy_command_token1] = ACTIONS(944), + [aux_sym_proxy_jump_token1] = ACTIONS(944), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(944), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(944), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(944), + [aux_sym_pubkey_authentication_token1] = ACTIONS(944), + [aux_sym_rekey_limit_token1] = ACTIONS(944), + [aux_sym_remote_command_token1] = ACTIONS(944), + [aux_sym_remote_forward_token1] = ACTIONS(944), + [aux_sym_request_tty_token1] = ACTIONS(944), + [aux_sym_required_rsa_size_token1] = ACTIONS(944), + [aux_sym_revoked_host_keys_token1] = ACTIONS(944), + [aux_sym_security_key_provider_token1] = ACTIONS(944), + [aux_sym_send_env_token1] = ACTIONS(944), + [aux_sym_server_alive_count_max_token1] = ACTIONS(944), + [aux_sym_server_alive_interval_token1] = ACTIONS(944), + [aux_sym_session_type_token1] = ACTIONS(944), + [aux_sym_set_env_token1] = ACTIONS(944), + [aux_sym_stdin_null_token1] = ACTIONS(944), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(944), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(944), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(944), + [aux_sym_syslog_facility_token1] = ACTIONS(944), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(944), + [aux_sym_keep_alive_token1] = ACTIONS(944), + [aux_sym_tunnel_token1] = ACTIONS(946), + [aux_sym_tunnel_device_token1] = ACTIONS(944), + [aux_sym_update_host_keys_token1] = ACTIONS(944), + [aux_sym_use_keychain_token1] = ACTIONS(944), + [aux_sym_use_roaming_token1] = ACTIONS(944), + [aux_sym_user_token1] = ACTIONS(946), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(944), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(944), + [aux_sym_visual_host_key_token1] = ACTIONS(944), + [aux_sym_xauth_location_token1] = ACTIONS(944), }, [619] = { - [ts_builtin_sym_end] = ACTIONS(885), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(887), - [aux_sym_match_token1] = ACTIONS(885), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(885), - [aux_sym_address_family_token1] = ACTIONS(885), - [aux_sym_batch_mode_token1] = ACTIONS(885), - [aux_sym_bind_address_token1] = ACTIONS(885), - [aux_sym_bind_interface_token1] = ACTIONS(885), - [aux_sym_canonical_domains_token1] = ACTIONS(885), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(885), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(885), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(885), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(885), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(885), - [aux_sym_certificate_file_token1] = ACTIONS(885), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(885), - [aux_sym_check_host_ip_token1] = ACTIONS(885), - [aux_sym_ciphers_token1] = ACTIONS(885), - [aux_sym_cipher_token1] = ACTIONS(887), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(885), - [aux_sym_compression_token1] = ACTIONS(885), - [aux_sym_connection_attempts_token1] = ACTIONS(885), - [aux_sym_connect_timeout_token1] = ACTIONS(885), - [aux_sym_control_master_token1] = ACTIONS(885), - [aux_sym_control_path_token1] = ACTIONS(885), - [aux_sym_control_persist_token1] = ACTIONS(885), - [aux_sym_dynamic_forward_token1] = ACTIONS(885), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(885), - [aux_sym_escape_char_token1] = ACTIONS(885), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(885), - [aux_sym_fingerprint_hash_token1] = ACTIONS(885), - [aux_sym_fork_after_authentication_token1] = ACTIONS(885), - [aux_sym_forward_agent_token1] = ACTIONS(885), - [aux_sym_forward_x11_token1] = ACTIONS(887), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(885), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(885), - [aux_sym_gateway_ports_token1] = ACTIONS(885), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(885), - [aux_sym_gssapi_authentication_token1] = ACTIONS(885), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(885), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(885), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(885), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(885), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(885), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(885), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(885), - [aux_sym_hash_known_hosts_token1] = ACTIONS(885), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(885), - [aux_sym_hostbased_authentication_token1] = ACTIONS(885), - [aux_sym_host_key_algorithms_token1] = ACTIONS(885), - [aux_sym_host_key_alias_token1] = ACTIONS(885), - [aux_sym_hostname_token1] = ACTIONS(885), - [aux_sym_identities_only_token1] = ACTIONS(885), - [aux_sym_identity_agent_token1] = ACTIONS(885), - [aux_sym_identity_file_token1] = ACTIONS(885), - [aux_sym_ignore_unknown_token1] = ACTIONS(885), - [aux_sym_include_token1] = ACTIONS(885), - [aux_sym_ip_qos_token1] = ACTIONS(885), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(885), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(885), - [aux_sym_kex_algorithms_token1] = ACTIONS(885), - [aux_sym_known_hosts_command_token1] = ACTIONS(885), - [aux_sym_local_command_token1] = ACTIONS(885), - [aux_sym_local_forward_token1] = ACTIONS(885), - [aux_sym_log_level_token1] = ACTIONS(885), - [aux_sym_log_verbose_token1] = ACTIONS(885), - [aux_sym_macs_token1] = ACTIONS(885), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(885), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(885), - [aux_sym_password_authentication_token1] = ACTIONS(885), - [aux_sym_permit_local_command_token1] = ACTIONS(885), - [aux_sym_permit_remote_open_token1] = ACTIONS(885), - [aux_sym_pkcs11_provider_token1] = ACTIONS(885), - [aux_sym_port_token1] = ACTIONS(885), - [aux_sym_preferred_authentications_token1] = ACTIONS(885), - [aux_sym_protocol_token1] = ACTIONS(885), - [aux_sym_proxy_command_token1] = ACTIONS(885), - [aux_sym_proxy_jump_token1] = ACTIONS(885), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(885), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(885), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(885), - [aux_sym_pubkey_authentication_token1] = ACTIONS(885), - [aux_sym_rekey_limit_token1] = ACTIONS(885), - [aux_sym_remote_command_token1] = ACTIONS(885), - [aux_sym_remote_forward_token1] = ACTIONS(885), - [aux_sym_request_tty_token1] = ACTIONS(885), - [aux_sym_required_rsa_size_token1] = ACTIONS(885), - [aux_sym_revoked_host_keys_token1] = ACTIONS(885), - [aux_sym_security_key_provider_token1] = ACTIONS(885), - [aux_sym_send_env_token1] = ACTIONS(885), - [aux_sym_server_alive_count_max_token1] = ACTIONS(885), - [aux_sym_server_alive_interval_token1] = ACTIONS(885), - [aux_sym_session_type_token1] = ACTIONS(885), - [aux_sym_set_env_token1] = ACTIONS(885), - [aux_sym_stdin_null_token1] = ACTIONS(885), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(885), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(885), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(885), - [aux_sym_syslog_facility_token1] = ACTIONS(885), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(885), - [aux_sym_keep_alive_token1] = ACTIONS(885), - [aux_sym_tunnel_token1] = ACTIONS(887), - [aux_sym_tunnel_device_token1] = ACTIONS(885), - [aux_sym_update_host_keys_token1] = ACTIONS(885), - [aux_sym_use_keychain_token1] = ACTIONS(885), - [aux_sym_use_roaming_token1] = ACTIONS(885), - [aux_sym_user_token1] = ACTIONS(887), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(885), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(885), - [aux_sym_visual_host_key_token1] = ACTIONS(885), - [aux_sym_xauth_location_token1] = ACTIONS(885), + [ts_builtin_sym_end] = ACTIONS(1376), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1378), + [aux_sym_match_token1] = ACTIONS(1376), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1376), + [aux_sym_address_family_token1] = ACTIONS(1376), + [aux_sym_batch_mode_token1] = ACTIONS(1376), + [aux_sym_bind_address_token1] = ACTIONS(1376), + [aux_sym_bind_interface_token1] = ACTIONS(1376), + [aux_sym_canonical_domains_token1] = ACTIONS(1376), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1376), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1376), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1376), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1376), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1376), + [aux_sym_certificate_file_token1] = ACTIONS(1376), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1376), + [aux_sym_check_host_ip_token1] = ACTIONS(1376), + [aux_sym_ciphers_token1] = ACTIONS(1376), + [aux_sym_cipher_token1] = ACTIONS(1378), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1376), + [aux_sym_compression_token1] = ACTIONS(1376), + [aux_sym_connection_attempts_token1] = ACTIONS(1376), + [aux_sym_connect_timeout_token1] = ACTIONS(1376), + [aux_sym_control_master_token1] = ACTIONS(1376), + [aux_sym_control_path_token1] = ACTIONS(1376), + [aux_sym_control_persist_token1] = ACTIONS(1376), + [aux_sym_dynamic_forward_token1] = ACTIONS(1376), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1376), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1376), + [aux_sym_escape_char_token1] = ACTIONS(1376), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1376), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1376), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1376), + [aux_sym_forward_agent_token1] = ACTIONS(1376), + [aux_sym_forward_x11_token1] = ACTIONS(1378), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1376), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1376), + [aux_sym_gateway_ports_token1] = ACTIONS(1376), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1376), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1376), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1376), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1376), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1376), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1376), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1376), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1376), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1376), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1376), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1376), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1376), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1376), + [aux_sym_host_key_alias_token1] = ACTIONS(1376), + [aux_sym_hostname_token1] = ACTIONS(1376), + [aux_sym_identities_only_token1] = ACTIONS(1376), + [aux_sym_identity_agent_token1] = ACTIONS(1376), + [aux_sym_identity_file_token1] = ACTIONS(1376), + [aux_sym_ignore_unknown_token1] = ACTIONS(1376), + [aux_sym_include_token1] = ACTIONS(1376), + [aux_sym_ip_qos_token1] = ACTIONS(1376), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1376), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1376), + [aux_sym_kex_algorithms_token1] = ACTIONS(1376), + [aux_sym_known_hosts_command_token1] = ACTIONS(1376), + [aux_sym_local_command_token1] = ACTIONS(1376), + [aux_sym_local_forward_token1] = ACTIONS(1376), + [aux_sym_log_level_token1] = ACTIONS(1376), + [aux_sym_log_verbose_token1] = ACTIONS(1376), + [aux_sym_macs_token1] = ACTIONS(1376), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1376), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1376), + [aux_sym_password_authentication_token1] = ACTIONS(1376), + [aux_sym_permit_local_command_token1] = ACTIONS(1376), + [aux_sym_permit_remote_open_token1] = ACTIONS(1376), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1376), + [aux_sym_port_token1] = ACTIONS(1376), + [aux_sym_preferred_authentications_token1] = ACTIONS(1376), + [aux_sym_protocol_token1] = ACTIONS(1376), + [aux_sym_proxy_command_token1] = ACTIONS(1376), + [aux_sym_proxy_jump_token1] = ACTIONS(1376), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1376), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1376), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1376), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1376), + [aux_sym_rekey_limit_token1] = ACTIONS(1376), + [aux_sym_remote_command_token1] = ACTIONS(1376), + [aux_sym_remote_forward_token1] = ACTIONS(1376), + [aux_sym_request_tty_token1] = ACTIONS(1376), + [aux_sym_required_rsa_size_token1] = ACTIONS(1376), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1376), + [aux_sym_security_key_provider_token1] = ACTIONS(1376), + [aux_sym_send_env_token1] = ACTIONS(1376), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1376), + [aux_sym_server_alive_interval_token1] = ACTIONS(1376), + [aux_sym_session_type_token1] = ACTIONS(1376), + [aux_sym_set_env_token1] = ACTIONS(1376), + [aux_sym_stdin_null_token1] = ACTIONS(1376), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1376), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1376), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1376), + [aux_sym_syslog_facility_token1] = ACTIONS(1376), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1376), + [aux_sym_keep_alive_token1] = ACTIONS(1376), + [aux_sym_tunnel_token1] = ACTIONS(1378), + [aux_sym_tunnel_device_token1] = ACTIONS(1376), + [aux_sym_update_host_keys_token1] = ACTIONS(1376), + [aux_sym_use_keychain_token1] = ACTIONS(1376), + [aux_sym_use_roaming_token1] = ACTIONS(1376), + [aux_sym_user_token1] = ACTIONS(1378), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1376), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1376), + [aux_sym_visual_host_key_token1] = ACTIONS(1376), + [aux_sym_xauth_location_token1] = ACTIONS(1376), }, [620] = { - [ts_builtin_sym_end] = ACTIONS(891), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(893), - [aux_sym_match_token1] = ACTIONS(891), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(891), - [aux_sym_address_family_token1] = ACTIONS(891), - [aux_sym_batch_mode_token1] = ACTIONS(891), - [aux_sym_bind_address_token1] = ACTIONS(891), - [aux_sym_bind_interface_token1] = ACTIONS(891), - [aux_sym_canonical_domains_token1] = ACTIONS(891), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(891), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(891), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(891), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(891), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(891), - [aux_sym_certificate_file_token1] = ACTIONS(891), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(891), - [aux_sym_check_host_ip_token1] = ACTIONS(891), - [aux_sym_ciphers_token1] = ACTIONS(891), - [aux_sym_cipher_token1] = ACTIONS(893), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(891), - [aux_sym_compression_token1] = ACTIONS(891), - [aux_sym_connection_attempts_token1] = ACTIONS(891), - [aux_sym_connect_timeout_token1] = ACTIONS(891), - [aux_sym_control_master_token1] = ACTIONS(891), - [aux_sym_control_path_token1] = ACTIONS(891), - [aux_sym_control_persist_token1] = ACTIONS(891), - [aux_sym_dynamic_forward_token1] = ACTIONS(891), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(891), - [aux_sym_escape_char_token1] = ACTIONS(891), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(891), - [aux_sym_fingerprint_hash_token1] = ACTIONS(891), - [aux_sym_fork_after_authentication_token1] = ACTIONS(891), - [aux_sym_forward_agent_token1] = ACTIONS(891), - [aux_sym_forward_x11_token1] = ACTIONS(893), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(891), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(891), - [aux_sym_gateway_ports_token1] = ACTIONS(891), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(891), - [aux_sym_gssapi_authentication_token1] = ACTIONS(891), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(891), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(891), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(891), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(891), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(891), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(891), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(891), - [aux_sym_hash_known_hosts_token1] = ACTIONS(891), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(891), - [aux_sym_hostbased_authentication_token1] = ACTIONS(891), - [aux_sym_host_key_algorithms_token1] = ACTIONS(891), - [aux_sym_host_key_alias_token1] = ACTIONS(891), - [aux_sym_hostname_token1] = ACTIONS(891), - [aux_sym_identities_only_token1] = ACTIONS(891), - [aux_sym_identity_agent_token1] = ACTIONS(891), - [aux_sym_identity_file_token1] = ACTIONS(891), - [aux_sym_ignore_unknown_token1] = ACTIONS(891), - [aux_sym_include_token1] = ACTIONS(891), - [aux_sym_ip_qos_token1] = ACTIONS(891), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(891), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(891), - [aux_sym_kex_algorithms_token1] = ACTIONS(891), - [aux_sym_known_hosts_command_token1] = ACTIONS(891), - [aux_sym_local_command_token1] = ACTIONS(891), - [aux_sym_local_forward_token1] = ACTIONS(891), - [aux_sym_log_level_token1] = ACTIONS(891), - [aux_sym_log_verbose_token1] = ACTIONS(891), - [aux_sym_macs_token1] = ACTIONS(891), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(891), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(891), - [aux_sym_password_authentication_token1] = ACTIONS(891), - [aux_sym_permit_local_command_token1] = ACTIONS(891), - [aux_sym_permit_remote_open_token1] = ACTIONS(891), - [aux_sym_pkcs11_provider_token1] = ACTIONS(891), - [aux_sym_port_token1] = ACTIONS(891), - [aux_sym_preferred_authentications_token1] = ACTIONS(891), - [aux_sym_protocol_token1] = ACTIONS(891), - [aux_sym_proxy_command_token1] = ACTIONS(891), - [aux_sym_proxy_jump_token1] = ACTIONS(891), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(891), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(891), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(891), - [aux_sym_pubkey_authentication_token1] = ACTIONS(891), - [aux_sym_rekey_limit_token1] = ACTIONS(891), - [aux_sym_remote_command_token1] = ACTIONS(891), - [aux_sym_remote_forward_token1] = ACTIONS(891), - [aux_sym_request_tty_token1] = ACTIONS(891), - [aux_sym_required_rsa_size_token1] = ACTIONS(891), - [aux_sym_revoked_host_keys_token1] = ACTIONS(891), - [aux_sym_security_key_provider_token1] = ACTIONS(891), - [aux_sym_send_env_token1] = ACTIONS(891), - [aux_sym_server_alive_count_max_token1] = ACTIONS(891), - [aux_sym_server_alive_interval_token1] = ACTIONS(891), - [aux_sym_session_type_token1] = ACTIONS(891), - [aux_sym_set_env_token1] = ACTIONS(891), - [aux_sym_stdin_null_token1] = ACTIONS(891), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(891), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(891), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(891), - [aux_sym_syslog_facility_token1] = ACTIONS(891), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(891), - [aux_sym_keep_alive_token1] = ACTIONS(891), - [aux_sym_tunnel_token1] = ACTIONS(893), - [aux_sym_tunnel_device_token1] = ACTIONS(891), - [aux_sym_update_host_keys_token1] = ACTIONS(891), - [aux_sym_use_keychain_token1] = ACTIONS(891), - [aux_sym_use_roaming_token1] = ACTIONS(891), - [aux_sym_user_token1] = ACTIONS(893), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(891), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(891), - [aux_sym_visual_host_key_token1] = ACTIONS(891), - [aux_sym_xauth_location_token1] = ACTIONS(891), + [ts_builtin_sym_end] = ACTIONS(3404), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3406), + [aux_sym_match_token1] = ACTIONS(3404), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3404), + [aux_sym_address_family_token1] = ACTIONS(3404), + [aux_sym_batch_mode_token1] = ACTIONS(3404), + [aux_sym_bind_address_token1] = ACTIONS(3404), + [aux_sym_bind_interface_token1] = ACTIONS(3404), + [aux_sym_canonical_domains_token1] = ACTIONS(3404), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3404), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3404), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3404), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3404), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3404), + [aux_sym_certificate_file_token1] = ACTIONS(3404), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3404), + [aux_sym_check_host_ip_token1] = ACTIONS(3404), + [aux_sym_ciphers_token1] = ACTIONS(3404), + [aux_sym_cipher_token1] = ACTIONS(3406), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3404), + [aux_sym_compression_token1] = ACTIONS(3404), + [aux_sym_connection_attempts_token1] = ACTIONS(3404), + [aux_sym_connect_timeout_token1] = ACTIONS(3404), + [aux_sym_control_master_token1] = ACTIONS(3404), + [aux_sym_control_path_token1] = ACTIONS(3404), + [aux_sym_control_persist_token1] = ACTIONS(3404), + [aux_sym_dynamic_forward_token1] = ACTIONS(3404), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3404), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3404), + [aux_sym_escape_char_token1] = ACTIONS(3404), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3404), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3404), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3404), + [aux_sym_forward_agent_token1] = ACTIONS(3404), + [aux_sym_forward_x11_token1] = ACTIONS(3406), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3404), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3404), + [aux_sym_gateway_ports_token1] = ACTIONS(3404), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3404), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3404), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3404), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3404), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3404), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3404), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3404), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3404), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3404), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3404), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3404), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3404), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3404), + [aux_sym_host_key_alias_token1] = ACTIONS(3404), + [aux_sym_hostname_token1] = ACTIONS(3404), + [aux_sym_identities_only_token1] = ACTIONS(3404), + [aux_sym_identity_agent_token1] = ACTIONS(3404), + [aux_sym_identity_file_token1] = ACTIONS(3404), + [aux_sym_ignore_unknown_token1] = ACTIONS(3404), + [aux_sym_include_token1] = ACTIONS(3404), + [aux_sym_ip_qos_token1] = ACTIONS(3404), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3404), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3404), + [aux_sym_kex_algorithms_token1] = ACTIONS(3404), + [aux_sym_known_hosts_command_token1] = ACTIONS(3404), + [aux_sym_local_command_token1] = ACTIONS(3404), + [aux_sym_local_forward_token1] = ACTIONS(3404), + [aux_sym_log_level_token1] = ACTIONS(3404), + [aux_sym_log_verbose_token1] = ACTIONS(3404), + [aux_sym_macs_token1] = ACTIONS(3404), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3404), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3404), + [aux_sym_password_authentication_token1] = ACTIONS(3404), + [aux_sym_permit_local_command_token1] = ACTIONS(3404), + [aux_sym_permit_remote_open_token1] = ACTIONS(3404), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3404), + [aux_sym_port_token1] = ACTIONS(3404), + [aux_sym_preferred_authentications_token1] = ACTIONS(3404), + [aux_sym_protocol_token1] = ACTIONS(3404), + [aux_sym_proxy_command_token1] = ACTIONS(3404), + [aux_sym_proxy_jump_token1] = ACTIONS(3404), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3404), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3404), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3404), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3404), + [aux_sym_rekey_limit_token1] = ACTIONS(3404), + [aux_sym_remote_command_token1] = ACTIONS(3404), + [aux_sym_remote_forward_token1] = ACTIONS(3404), + [aux_sym_request_tty_token1] = ACTIONS(3404), + [aux_sym_required_rsa_size_token1] = ACTIONS(3404), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3404), + [aux_sym_security_key_provider_token1] = ACTIONS(3404), + [aux_sym_send_env_token1] = ACTIONS(3404), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3404), + [aux_sym_server_alive_interval_token1] = ACTIONS(3404), + [aux_sym_session_type_token1] = ACTIONS(3404), + [aux_sym_set_env_token1] = ACTIONS(3404), + [aux_sym_stdin_null_token1] = ACTIONS(3404), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3404), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3404), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3404), + [aux_sym_syslog_facility_token1] = ACTIONS(3404), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3404), + [aux_sym_keep_alive_token1] = ACTIONS(3404), + [aux_sym_tunnel_token1] = ACTIONS(3406), + [aux_sym_tunnel_device_token1] = ACTIONS(3404), + [aux_sym_update_host_keys_token1] = ACTIONS(3404), + [aux_sym_use_keychain_token1] = ACTIONS(3404), + [aux_sym_use_roaming_token1] = ACTIONS(3404), + [aux_sym_user_token1] = ACTIONS(3406), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3404), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3404), + [aux_sym_visual_host_key_token1] = ACTIONS(3404), + [aux_sym_xauth_location_token1] = ACTIONS(3404), }, [621] = { - [ts_builtin_sym_end] = ACTIONS(1599), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1601), - [aux_sym_match_token1] = ACTIONS(1599), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1599), - [aux_sym_address_family_token1] = ACTIONS(1599), - [aux_sym_batch_mode_token1] = ACTIONS(1599), - [aux_sym_bind_address_token1] = ACTIONS(1599), - [aux_sym_bind_interface_token1] = ACTIONS(1599), - [aux_sym_canonical_domains_token1] = ACTIONS(1599), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1599), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1599), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1599), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1599), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1599), - [aux_sym_certificate_file_token1] = ACTIONS(1599), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1599), - [aux_sym_check_host_ip_token1] = ACTIONS(1599), - [aux_sym_ciphers_token1] = ACTIONS(1599), - [aux_sym_cipher_token1] = ACTIONS(1601), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1599), - [aux_sym_compression_token1] = ACTIONS(1599), - [aux_sym_connection_attempts_token1] = ACTIONS(1599), - [aux_sym_connect_timeout_token1] = ACTIONS(1599), - [aux_sym_control_master_token1] = ACTIONS(1599), - [aux_sym_control_path_token1] = ACTIONS(1599), - [aux_sym_control_persist_token1] = ACTIONS(1599), - [aux_sym_dynamic_forward_token1] = ACTIONS(1599), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1599), - [aux_sym_escape_char_token1] = ACTIONS(1599), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1599), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1599), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1599), - [aux_sym_forward_agent_token1] = ACTIONS(1599), - [aux_sym_forward_x11_token1] = ACTIONS(1601), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1599), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1599), - [aux_sym_gateway_ports_token1] = ACTIONS(1599), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1599), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1599), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1599), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1599), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1599), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1599), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1599), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1599), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1599), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1599), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1599), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1599), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1599), - [aux_sym_host_key_alias_token1] = ACTIONS(1599), - [aux_sym_hostname_token1] = ACTIONS(1599), - [aux_sym_identities_only_token1] = ACTIONS(1599), - [aux_sym_identity_agent_token1] = ACTIONS(1599), - [aux_sym_identity_file_token1] = ACTIONS(1599), - [aux_sym_ignore_unknown_token1] = ACTIONS(1599), - [aux_sym_include_token1] = ACTIONS(1599), - [aux_sym_ip_qos_token1] = ACTIONS(1599), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1599), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1599), - [aux_sym_kex_algorithms_token1] = ACTIONS(1599), - [aux_sym_known_hosts_command_token1] = ACTIONS(1599), - [aux_sym_local_command_token1] = ACTIONS(1599), - [aux_sym_local_forward_token1] = ACTIONS(1599), - [aux_sym_log_level_token1] = ACTIONS(1599), - [aux_sym_log_verbose_token1] = ACTIONS(1599), - [aux_sym_macs_token1] = ACTIONS(1599), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1599), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1599), - [aux_sym_password_authentication_token1] = ACTIONS(1599), - [aux_sym_permit_local_command_token1] = ACTIONS(1599), - [aux_sym_permit_remote_open_token1] = ACTIONS(1599), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1599), - [aux_sym_port_token1] = ACTIONS(1599), - [aux_sym_preferred_authentications_token1] = ACTIONS(1599), - [aux_sym_protocol_token1] = ACTIONS(1599), - [aux_sym_proxy_command_token1] = ACTIONS(1599), - [aux_sym_proxy_jump_token1] = ACTIONS(1599), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1599), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1599), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1599), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1599), - [aux_sym_rekey_limit_token1] = ACTIONS(1599), - [aux_sym_remote_command_token1] = ACTIONS(1599), - [aux_sym_remote_forward_token1] = ACTIONS(1599), - [aux_sym_request_tty_token1] = ACTIONS(1599), - [aux_sym_required_rsa_size_token1] = ACTIONS(1599), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1599), - [aux_sym_security_key_provider_token1] = ACTIONS(1599), - [aux_sym_send_env_token1] = ACTIONS(1599), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1599), - [aux_sym_server_alive_interval_token1] = ACTIONS(1599), - [aux_sym_session_type_token1] = ACTIONS(1599), - [aux_sym_set_env_token1] = ACTIONS(1599), - [aux_sym_stdin_null_token1] = ACTIONS(1599), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1599), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1599), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1599), - [aux_sym_syslog_facility_token1] = ACTIONS(1599), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1599), - [aux_sym_keep_alive_token1] = ACTIONS(1599), - [aux_sym_tunnel_token1] = ACTIONS(1601), - [aux_sym_tunnel_device_token1] = ACTIONS(1599), - [aux_sym_update_host_keys_token1] = ACTIONS(1599), - [aux_sym_use_keychain_token1] = ACTIONS(1599), - [aux_sym_use_roaming_token1] = ACTIONS(1599), - [aux_sym_user_token1] = ACTIONS(1601), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1599), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1599), - [aux_sym_visual_host_key_token1] = ACTIONS(1599), - [aux_sym_xauth_location_token1] = ACTIONS(1599), + [ts_builtin_sym_end] = ACTIONS(938), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(940), + [aux_sym_match_token1] = ACTIONS(938), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(938), + [aux_sym_address_family_token1] = ACTIONS(938), + [aux_sym_batch_mode_token1] = ACTIONS(938), + [aux_sym_bind_address_token1] = ACTIONS(938), + [aux_sym_bind_interface_token1] = ACTIONS(938), + [aux_sym_canonical_domains_token1] = ACTIONS(938), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(938), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(938), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(938), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(938), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(938), + [aux_sym_certificate_file_token1] = ACTIONS(938), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(938), + [aux_sym_check_host_ip_token1] = ACTIONS(938), + [aux_sym_ciphers_token1] = ACTIONS(938), + [aux_sym_cipher_token1] = ACTIONS(940), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(938), + [aux_sym_compression_token1] = ACTIONS(938), + [aux_sym_connection_attempts_token1] = ACTIONS(938), + [aux_sym_connect_timeout_token1] = ACTIONS(938), + [aux_sym_control_master_token1] = ACTIONS(938), + [aux_sym_control_path_token1] = ACTIONS(938), + [aux_sym_control_persist_token1] = ACTIONS(938), + [aux_sym_dynamic_forward_token1] = ACTIONS(938), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(938), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(938), + [aux_sym_escape_char_token1] = ACTIONS(938), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(938), + [aux_sym_fingerprint_hash_token1] = ACTIONS(938), + [aux_sym_fork_after_authentication_token1] = ACTIONS(938), + [aux_sym_forward_agent_token1] = ACTIONS(938), + [aux_sym_forward_x11_token1] = ACTIONS(940), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(938), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(938), + [aux_sym_gateway_ports_token1] = ACTIONS(938), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(938), + [aux_sym_gssapi_authentication_token1] = ACTIONS(938), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(938), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(938), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(938), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(938), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(938), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(938), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(938), + [aux_sym_hash_known_hosts_token1] = ACTIONS(938), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(938), + [aux_sym_hostbased_authentication_token1] = ACTIONS(938), + [aux_sym_host_key_algorithms_token1] = ACTIONS(938), + [aux_sym_host_key_alias_token1] = ACTIONS(938), + [aux_sym_hostname_token1] = ACTIONS(938), + [aux_sym_identities_only_token1] = ACTIONS(938), + [aux_sym_identity_agent_token1] = ACTIONS(938), + [aux_sym_identity_file_token1] = ACTIONS(938), + [aux_sym_ignore_unknown_token1] = ACTIONS(938), + [aux_sym_include_token1] = ACTIONS(938), + [aux_sym_ip_qos_token1] = ACTIONS(938), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(938), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(938), + [aux_sym_kex_algorithms_token1] = ACTIONS(938), + [aux_sym_known_hosts_command_token1] = ACTIONS(938), + [aux_sym_local_command_token1] = ACTIONS(938), + [aux_sym_local_forward_token1] = ACTIONS(938), + [aux_sym_log_level_token1] = ACTIONS(938), + [aux_sym_log_verbose_token1] = ACTIONS(938), + [aux_sym_macs_token1] = ACTIONS(938), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(938), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(938), + [aux_sym_password_authentication_token1] = ACTIONS(938), + [aux_sym_permit_local_command_token1] = ACTIONS(938), + [aux_sym_permit_remote_open_token1] = ACTIONS(938), + [aux_sym_pkcs11_provider_token1] = ACTIONS(938), + [aux_sym_port_token1] = ACTIONS(938), + [aux_sym_preferred_authentications_token1] = ACTIONS(938), + [aux_sym_protocol_token1] = ACTIONS(938), + [aux_sym_proxy_command_token1] = ACTIONS(938), + [aux_sym_proxy_jump_token1] = ACTIONS(938), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(938), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(938), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(938), + [aux_sym_pubkey_authentication_token1] = ACTIONS(938), + [aux_sym_rekey_limit_token1] = ACTIONS(938), + [aux_sym_remote_command_token1] = ACTIONS(938), + [aux_sym_remote_forward_token1] = ACTIONS(938), + [aux_sym_request_tty_token1] = ACTIONS(938), + [aux_sym_required_rsa_size_token1] = ACTIONS(938), + [aux_sym_revoked_host_keys_token1] = ACTIONS(938), + [aux_sym_security_key_provider_token1] = ACTIONS(938), + [aux_sym_send_env_token1] = ACTIONS(938), + [aux_sym_server_alive_count_max_token1] = ACTIONS(938), + [aux_sym_server_alive_interval_token1] = ACTIONS(938), + [aux_sym_session_type_token1] = ACTIONS(938), + [aux_sym_set_env_token1] = ACTIONS(938), + [aux_sym_stdin_null_token1] = ACTIONS(938), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(938), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(938), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(938), + [aux_sym_syslog_facility_token1] = ACTIONS(938), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(938), + [aux_sym_keep_alive_token1] = ACTIONS(938), + [aux_sym_tunnel_token1] = ACTIONS(940), + [aux_sym_tunnel_device_token1] = ACTIONS(938), + [aux_sym_update_host_keys_token1] = ACTIONS(938), + [aux_sym_use_keychain_token1] = ACTIONS(938), + [aux_sym_use_roaming_token1] = ACTIONS(938), + [aux_sym_user_token1] = ACTIONS(940), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(938), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(938), + [aux_sym_visual_host_key_token1] = ACTIONS(938), + [aux_sym_xauth_location_token1] = ACTIONS(938), }, [622] = { - [ts_builtin_sym_end] = ACTIONS(903), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(905), - [aux_sym_match_token1] = ACTIONS(903), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(903), - [aux_sym_address_family_token1] = ACTIONS(903), - [aux_sym_batch_mode_token1] = ACTIONS(903), - [aux_sym_bind_address_token1] = ACTIONS(903), - [aux_sym_bind_interface_token1] = ACTIONS(903), - [aux_sym_canonical_domains_token1] = ACTIONS(903), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(903), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(903), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(903), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(903), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(903), - [aux_sym_certificate_file_token1] = ACTIONS(903), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(903), - [aux_sym_check_host_ip_token1] = ACTIONS(903), - [aux_sym_ciphers_token1] = ACTIONS(903), - [aux_sym_cipher_token1] = ACTIONS(905), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(903), - [aux_sym_compression_token1] = ACTIONS(903), - [aux_sym_connection_attempts_token1] = ACTIONS(903), - [aux_sym_connect_timeout_token1] = ACTIONS(903), - [aux_sym_control_master_token1] = ACTIONS(903), - [aux_sym_control_path_token1] = ACTIONS(903), - [aux_sym_control_persist_token1] = ACTIONS(903), - [aux_sym_dynamic_forward_token1] = ACTIONS(903), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(903), - [aux_sym_escape_char_token1] = ACTIONS(903), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(903), - [aux_sym_fingerprint_hash_token1] = ACTIONS(903), - [aux_sym_fork_after_authentication_token1] = ACTIONS(903), - [aux_sym_forward_agent_token1] = ACTIONS(903), - [aux_sym_forward_x11_token1] = ACTIONS(905), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(903), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(903), - [aux_sym_gateway_ports_token1] = ACTIONS(903), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(903), - [aux_sym_gssapi_authentication_token1] = ACTIONS(903), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(903), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(903), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(903), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(903), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(903), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(903), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(903), - [aux_sym_hash_known_hosts_token1] = ACTIONS(903), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(903), - [aux_sym_hostbased_authentication_token1] = ACTIONS(903), - [aux_sym_host_key_algorithms_token1] = ACTIONS(903), - [aux_sym_host_key_alias_token1] = ACTIONS(903), - [aux_sym_hostname_token1] = ACTIONS(903), - [aux_sym_identities_only_token1] = ACTIONS(903), - [aux_sym_identity_agent_token1] = ACTIONS(903), - [aux_sym_identity_file_token1] = ACTIONS(903), - [aux_sym_ignore_unknown_token1] = ACTIONS(903), - [aux_sym_include_token1] = ACTIONS(903), - [aux_sym_ip_qos_token1] = ACTIONS(903), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(903), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(903), - [aux_sym_kex_algorithms_token1] = ACTIONS(903), - [aux_sym_known_hosts_command_token1] = ACTIONS(903), - [aux_sym_local_command_token1] = ACTIONS(903), - [aux_sym_local_forward_token1] = ACTIONS(903), - [aux_sym_log_level_token1] = ACTIONS(903), - [aux_sym_log_verbose_token1] = ACTIONS(903), - [aux_sym_macs_token1] = ACTIONS(903), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(903), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(903), - [aux_sym_password_authentication_token1] = ACTIONS(903), - [aux_sym_permit_local_command_token1] = ACTIONS(903), - [aux_sym_permit_remote_open_token1] = ACTIONS(903), - [aux_sym_pkcs11_provider_token1] = ACTIONS(903), - [aux_sym_port_token1] = ACTIONS(903), - [aux_sym_preferred_authentications_token1] = ACTIONS(903), - [aux_sym_protocol_token1] = ACTIONS(903), - [aux_sym_proxy_command_token1] = ACTIONS(903), - [aux_sym_proxy_jump_token1] = ACTIONS(903), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(903), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(903), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(903), - [aux_sym_pubkey_authentication_token1] = ACTIONS(903), - [aux_sym_rekey_limit_token1] = ACTIONS(903), - [aux_sym_remote_command_token1] = ACTIONS(903), - [aux_sym_remote_forward_token1] = ACTIONS(903), - [aux_sym_request_tty_token1] = ACTIONS(903), - [aux_sym_required_rsa_size_token1] = ACTIONS(903), - [aux_sym_revoked_host_keys_token1] = ACTIONS(903), - [aux_sym_security_key_provider_token1] = ACTIONS(903), - [aux_sym_send_env_token1] = ACTIONS(903), - [aux_sym_server_alive_count_max_token1] = ACTIONS(903), - [aux_sym_server_alive_interval_token1] = ACTIONS(903), - [aux_sym_session_type_token1] = ACTIONS(903), - [aux_sym_set_env_token1] = ACTIONS(903), - [aux_sym_stdin_null_token1] = ACTIONS(903), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(903), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(903), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(903), - [aux_sym_syslog_facility_token1] = ACTIONS(903), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(903), - [aux_sym_keep_alive_token1] = ACTIONS(903), - [aux_sym_tunnel_token1] = ACTIONS(905), - [aux_sym_tunnel_device_token1] = ACTIONS(903), - [aux_sym_update_host_keys_token1] = ACTIONS(903), - [aux_sym_use_keychain_token1] = ACTIONS(903), - [aux_sym_use_roaming_token1] = ACTIONS(903), - [aux_sym_user_token1] = ACTIONS(905), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(903), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(903), - [aux_sym_visual_host_key_token1] = ACTIONS(903), - [aux_sym_xauth_location_token1] = ACTIONS(903), + [ts_builtin_sym_end] = ACTIONS(1382), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1384), + [aux_sym_match_token1] = ACTIONS(1382), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1382), + [aux_sym_address_family_token1] = ACTIONS(1382), + [aux_sym_batch_mode_token1] = ACTIONS(1382), + [aux_sym_bind_address_token1] = ACTIONS(1382), + [aux_sym_bind_interface_token1] = ACTIONS(1382), + [aux_sym_canonical_domains_token1] = ACTIONS(1382), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1382), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1382), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1382), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1382), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1382), + [aux_sym_certificate_file_token1] = ACTIONS(1382), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1382), + [aux_sym_check_host_ip_token1] = ACTIONS(1382), + [aux_sym_ciphers_token1] = ACTIONS(1382), + [aux_sym_cipher_token1] = ACTIONS(1384), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1382), + [aux_sym_compression_token1] = ACTIONS(1382), + [aux_sym_connection_attempts_token1] = ACTIONS(1382), + [aux_sym_connect_timeout_token1] = ACTIONS(1382), + [aux_sym_control_master_token1] = ACTIONS(1382), + [aux_sym_control_path_token1] = ACTIONS(1382), + [aux_sym_control_persist_token1] = ACTIONS(1382), + [aux_sym_dynamic_forward_token1] = ACTIONS(1382), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1382), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1382), + [aux_sym_escape_char_token1] = ACTIONS(1382), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1382), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1382), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1382), + [aux_sym_forward_agent_token1] = ACTIONS(1382), + [aux_sym_forward_x11_token1] = ACTIONS(1384), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1382), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1382), + [aux_sym_gateway_ports_token1] = ACTIONS(1382), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1382), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1382), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1382), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1382), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1382), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1382), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1382), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1382), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1382), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1382), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1382), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1382), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1382), + [aux_sym_host_key_alias_token1] = ACTIONS(1382), + [aux_sym_hostname_token1] = ACTIONS(1382), + [aux_sym_identities_only_token1] = ACTIONS(1382), + [aux_sym_identity_agent_token1] = ACTIONS(1382), + [aux_sym_identity_file_token1] = ACTIONS(1382), + [aux_sym_ignore_unknown_token1] = ACTIONS(1382), + [aux_sym_include_token1] = ACTIONS(1382), + [aux_sym_ip_qos_token1] = ACTIONS(1382), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1382), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1382), + [aux_sym_kex_algorithms_token1] = ACTIONS(1382), + [aux_sym_known_hosts_command_token1] = ACTIONS(1382), + [aux_sym_local_command_token1] = ACTIONS(1382), + [aux_sym_local_forward_token1] = ACTIONS(1382), + [aux_sym_log_level_token1] = ACTIONS(1382), + [aux_sym_log_verbose_token1] = ACTIONS(1382), + [aux_sym_macs_token1] = ACTIONS(1382), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1382), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1382), + [aux_sym_password_authentication_token1] = ACTIONS(1382), + [aux_sym_permit_local_command_token1] = ACTIONS(1382), + [aux_sym_permit_remote_open_token1] = ACTIONS(1382), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1382), + [aux_sym_port_token1] = ACTIONS(1382), + [aux_sym_preferred_authentications_token1] = ACTIONS(1382), + [aux_sym_protocol_token1] = ACTIONS(1382), + [aux_sym_proxy_command_token1] = ACTIONS(1382), + [aux_sym_proxy_jump_token1] = ACTIONS(1382), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1382), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1382), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1382), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1382), + [aux_sym_rekey_limit_token1] = ACTIONS(1382), + [aux_sym_remote_command_token1] = ACTIONS(1382), + [aux_sym_remote_forward_token1] = ACTIONS(1382), + [aux_sym_request_tty_token1] = ACTIONS(1382), + [aux_sym_required_rsa_size_token1] = ACTIONS(1382), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1382), + [aux_sym_security_key_provider_token1] = ACTIONS(1382), + [aux_sym_send_env_token1] = ACTIONS(1382), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1382), + [aux_sym_server_alive_interval_token1] = ACTIONS(1382), + [aux_sym_session_type_token1] = ACTIONS(1382), + [aux_sym_set_env_token1] = ACTIONS(1382), + [aux_sym_stdin_null_token1] = ACTIONS(1382), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1382), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1382), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1382), + [aux_sym_syslog_facility_token1] = ACTIONS(1382), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1382), + [aux_sym_keep_alive_token1] = ACTIONS(1382), + [aux_sym_tunnel_token1] = ACTIONS(1384), + [aux_sym_tunnel_device_token1] = ACTIONS(1382), + [aux_sym_update_host_keys_token1] = ACTIONS(1382), + [aux_sym_use_keychain_token1] = ACTIONS(1382), + [aux_sym_use_roaming_token1] = ACTIONS(1382), + [aux_sym_user_token1] = ACTIONS(1384), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1382), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1382), + [aux_sym_visual_host_key_token1] = ACTIONS(1382), + [aux_sym_xauth_location_token1] = ACTIONS(1382), }, [623] = { - [ts_builtin_sym_end] = ACTIONS(909), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(911), - [aux_sym_match_token1] = ACTIONS(909), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(909), - [aux_sym_address_family_token1] = ACTIONS(909), - [aux_sym_batch_mode_token1] = ACTIONS(909), - [aux_sym_bind_address_token1] = ACTIONS(909), - [aux_sym_bind_interface_token1] = ACTIONS(909), - [aux_sym_canonical_domains_token1] = ACTIONS(909), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(909), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(909), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(909), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(909), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(909), - [aux_sym_certificate_file_token1] = ACTIONS(909), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(909), - [aux_sym_check_host_ip_token1] = ACTIONS(909), - [aux_sym_ciphers_token1] = ACTIONS(909), - [aux_sym_cipher_token1] = ACTIONS(911), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(909), - [aux_sym_compression_token1] = ACTIONS(909), - [aux_sym_connection_attempts_token1] = ACTIONS(909), - [aux_sym_connect_timeout_token1] = ACTIONS(909), - [aux_sym_control_master_token1] = ACTIONS(909), - [aux_sym_control_path_token1] = ACTIONS(909), - [aux_sym_control_persist_token1] = ACTIONS(909), - [aux_sym_dynamic_forward_token1] = ACTIONS(909), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(909), - [aux_sym_escape_char_token1] = ACTIONS(909), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(909), - [aux_sym_fingerprint_hash_token1] = ACTIONS(909), - [aux_sym_fork_after_authentication_token1] = ACTIONS(909), - [aux_sym_forward_agent_token1] = ACTIONS(909), - [aux_sym_forward_x11_token1] = ACTIONS(911), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(909), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(909), - [aux_sym_gateway_ports_token1] = ACTIONS(909), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(909), - [aux_sym_gssapi_authentication_token1] = ACTIONS(909), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(909), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(909), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(909), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(909), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(909), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(909), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(909), - [aux_sym_hash_known_hosts_token1] = ACTIONS(909), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(909), - [aux_sym_hostbased_authentication_token1] = ACTIONS(909), - [aux_sym_host_key_algorithms_token1] = ACTIONS(909), - [aux_sym_host_key_alias_token1] = ACTIONS(909), - [aux_sym_hostname_token1] = ACTIONS(909), - [aux_sym_identities_only_token1] = ACTIONS(909), - [aux_sym_identity_agent_token1] = ACTIONS(909), - [aux_sym_identity_file_token1] = ACTIONS(909), - [aux_sym_ignore_unknown_token1] = ACTIONS(909), - [aux_sym_include_token1] = ACTIONS(909), - [aux_sym_ip_qos_token1] = ACTIONS(909), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(909), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(909), - [aux_sym_kex_algorithms_token1] = ACTIONS(909), - [aux_sym_known_hosts_command_token1] = ACTIONS(909), - [aux_sym_local_command_token1] = ACTIONS(909), - [aux_sym_local_forward_token1] = ACTIONS(909), - [aux_sym_log_level_token1] = ACTIONS(909), - [aux_sym_log_verbose_token1] = ACTIONS(909), - [aux_sym_macs_token1] = ACTIONS(909), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(909), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(909), - [aux_sym_password_authentication_token1] = ACTIONS(909), - [aux_sym_permit_local_command_token1] = ACTIONS(909), - [aux_sym_permit_remote_open_token1] = ACTIONS(909), - [aux_sym_pkcs11_provider_token1] = ACTIONS(909), - [aux_sym_port_token1] = ACTIONS(909), - [aux_sym_preferred_authentications_token1] = ACTIONS(909), - [aux_sym_protocol_token1] = ACTIONS(909), - [aux_sym_proxy_command_token1] = ACTIONS(909), - [aux_sym_proxy_jump_token1] = ACTIONS(909), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(909), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(909), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(909), - [aux_sym_pubkey_authentication_token1] = ACTIONS(909), - [aux_sym_rekey_limit_token1] = ACTIONS(909), - [aux_sym_remote_command_token1] = ACTIONS(909), - [aux_sym_remote_forward_token1] = ACTIONS(909), - [aux_sym_request_tty_token1] = ACTIONS(909), - [aux_sym_required_rsa_size_token1] = ACTIONS(909), - [aux_sym_revoked_host_keys_token1] = ACTIONS(909), - [aux_sym_security_key_provider_token1] = ACTIONS(909), - [aux_sym_send_env_token1] = ACTIONS(909), - [aux_sym_server_alive_count_max_token1] = ACTIONS(909), - [aux_sym_server_alive_interval_token1] = ACTIONS(909), - [aux_sym_session_type_token1] = ACTIONS(909), - [aux_sym_set_env_token1] = ACTIONS(909), - [aux_sym_stdin_null_token1] = ACTIONS(909), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(909), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(909), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(909), - [aux_sym_syslog_facility_token1] = ACTIONS(909), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(909), - [aux_sym_keep_alive_token1] = ACTIONS(909), - [aux_sym_tunnel_token1] = ACTIONS(911), - [aux_sym_tunnel_device_token1] = ACTIONS(909), - [aux_sym_update_host_keys_token1] = ACTIONS(909), - [aux_sym_use_keychain_token1] = ACTIONS(909), - [aux_sym_use_roaming_token1] = ACTIONS(909), - [aux_sym_user_token1] = ACTIONS(911), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(909), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(909), - [aux_sym_visual_host_key_token1] = ACTIONS(909), - [aux_sym_xauth_location_token1] = ACTIONS(909), + [ts_builtin_sym_end] = ACTIONS(3408), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3410), + [aux_sym_match_token1] = ACTIONS(3408), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3408), + [aux_sym_address_family_token1] = ACTIONS(3408), + [aux_sym_batch_mode_token1] = ACTIONS(3408), + [aux_sym_bind_address_token1] = ACTIONS(3408), + [aux_sym_bind_interface_token1] = ACTIONS(3408), + [aux_sym_canonical_domains_token1] = ACTIONS(3408), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3408), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3408), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3408), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3408), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3408), + [aux_sym_certificate_file_token1] = ACTIONS(3408), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3408), + [aux_sym_check_host_ip_token1] = ACTIONS(3408), + [aux_sym_ciphers_token1] = ACTIONS(3408), + [aux_sym_cipher_token1] = ACTIONS(3410), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3408), + [aux_sym_compression_token1] = ACTIONS(3408), + [aux_sym_connection_attempts_token1] = ACTIONS(3408), + [aux_sym_connect_timeout_token1] = ACTIONS(3408), + [aux_sym_control_master_token1] = ACTIONS(3408), + [aux_sym_control_path_token1] = ACTIONS(3408), + [aux_sym_control_persist_token1] = ACTIONS(3408), + [aux_sym_dynamic_forward_token1] = ACTIONS(3408), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3408), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3408), + [aux_sym_escape_char_token1] = ACTIONS(3408), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3408), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3408), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3408), + [aux_sym_forward_agent_token1] = ACTIONS(3408), + [aux_sym_forward_x11_token1] = ACTIONS(3410), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3408), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3408), + [aux_sym_gateway_ports_token1] = ACTIONS(3408), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3408), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3408), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3408), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3408), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3408), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3408), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3408), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3408), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3408), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3408), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3408), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3408), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3408), + [aux_sym_host_key_alias_token1] = ACTIONS(3408), + [aux_sym_hostname_token1] = ACTIONS(3408), + [aux_sym_identities_only_token1] = ACTIONS(3408), + [aux_sym_identity_agent_token1] = ACTIONS(3408), + [aux_sym_identity_file_token1] = ACTIONS(3408), + [aux_sym_ignore_unknown_token1] = ACTIONS(3408), + [aux_sym_include_token1] = ACTIONS(3408), + [aux_sym_ip_qos_token1] = ACTIONS(3408), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3408), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3408), + [aux_sym_kex_algorithms_token1] = ACTIONS(3408), + [aux_sym_known_hosts_command_token1] = ACTIONS(3408), + [aux_sym_local_command_token1] = ACTIONS(3408), + [aux_sym_local_forward_token1] = ACTIONS(3408), + [aux_sym_log_level_token1] = ACTIONS(3408), + [aux_sym_log_verbose_token1] = ACTIONS(3408), + [aux_sym_macs_token1] = ACTIONS(3408), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3408), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3408), + [aux_sym_password_authentication_token1] = ACTIONS(3408), + [aux_sym_permit_local_command_token1] = ACTIONS(3408), + [aux_sym_permit_remote_open_token1] = ACTIONS(3408), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3408), + [aux_sym_port_token1] = ACTIONS(3408), + [aux_sym_preferred_authentications_token1] = ACTIONS(3408), + [aux_sym_protocol_token1] = ACTIONS(3408), + [aux_sym_proxy_command_token1] = ACTIONS(3408), + [aux_sym_proxy_jump_token1] = ACTIONS(3408), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3408), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3408), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3408), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3408), + [aux_sym_rekey_limit_token1] = ACTIONS(3408), + [aux_sym_remote_command_token1] = ACTIONS(3408), + [aux_sym_remote_forward_token1] = ACTIONS(3408), + [aux_sym_request_tty_token1] = ACTIONS(3408), + [aux_sym_required_rsa_size_token1] = ACTIONS(3408), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3408), + [aux_sym_security_key_provider_token1] = ACTIONS(3408), + [aux_sym_send_env_token1] = ACTIONS(3408), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3408), + [aux_sym_server_alive_interval_token1] = ACTIONS(3408), + [aux_sym_session_type_token1] = ACTIONS(3408), + [aux_sym_set_env_token1] = ACTIONS(3408), + [aux_sym_stdin_null_token1] = ACTIONS(3408), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3408), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3408), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3408), + [aux_sym_syslog_facility_token1] = ACTIONS(3408), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3408), + [aux_sym_keep_alive_token1] = ACTIONS(3408), + [aux_sym_tunnel_token1] = ACTIONS(3410), + [aux_sym_tunnel_device_token1] = ACTIONS(3408), + [aux_sym_update_host_keys_token1] = ACTIONS(3408), + [aux_sym_use_keychain_token1] = ACTIONS(3408), + [aux_sym_use_roaming_token1] = ACTIONS(3408), + [aux_sym_user_token1] = ACTIONS(3410), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3408), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3408), + [aux_sym_visual_host_key_token1] = ACTIONS(3408), + [aux_sym_xauth_location_token1] = ACTIONS(3408), }, [624] = { - [ts_builtin_sym_end] = ACTIONS(915), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(917), - [aux_sym_match_token1] = ACTIONS(915), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(915), - [aux_sym_address_family_token1] = ACTIONS(915), - [aux_sym_batch_mode_token1] = ACTIONS(915), - [aux_sym_bind_address_token1] = ACTIONS(915), - [aux_sym_bind_interface_token1] = ACTIONS(915), - [aux_sym_canonical_domains_token1] = ACTIONS(915), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(915), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(915), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(915), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(915), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(915), - [aux_sym_certificate_file_token1] = ACTIONS(915), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(915), - [aux_sym_check_host_ip_token1] = ACTIONS(915), - [aux_sym_ciphers_token1] = ACTIONS(915), - [aux_sym_cipher_token1] = ACTIONS(917), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(915), - [aux_sym_compression_token1] = ACTIONS(915), - [aux_sym_connection_attempts_token1] = ACTIONS(915), - [aux_sym_connect_timeout_token1] = ACTIONS(915), - [aux_sym_control_master_token1] = ACTIONS(915), - [aux_sym_control_path_token1] = ACTIONS(915), - [aux_sym_control_persist_token1] = ACTIONS(915), - [aux_sym_dynamic_forward_token1] = ACTIONS(915), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(915), - [aux_sym_escape_char_token1] = ACTIONS(915), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(915), - [aux_sym_fingerprint_hash_token1] = ACTIONS(915), - [aux_sym_fork_after_authentication_token1] = ACTIONS(915), - [aux_sym_forward_agent_token1] = ACTIONS(915), - [aux_sym_forward_x11_token1] = ACTIONS(917), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(915), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(915), - [aux_sym_gateway_ports_token1] = ACTIONS(915), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(915), - [aux_sym_gssapi_authentication_token1] = ACTIONS(915), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(915), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(915), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(915), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(915), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(915), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(915), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(915), - [aux_sym_hash_known_hosts_token1] = ACTIONS(915), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(915), - [aux_sym_hostbased_authentication_token1] = ACTIONS(915), - [aux_sym_host_key_algorithms_token1] = ACTIONS(915), - [aux_sym_host_key_alias_token1] = ACTIONS(915), - [aux_sym_hostname_token1] = ACTIONS(915), - [aux_sym_identities_only_token1] = ACTIONS(915), - [aux_sym_identity_agent_token1] = ACTIONS(915), - [aux_sym_identity_file_token1] = ACTIONS(915), - [aux_sym_ignore_unknown_token1] = ACTIONS(915), - [aux_sym_include_token1] = ACTIONS(915), - [aux_sym_ip_qos_token1] = ACTIONS(915), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(915), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(915), - [aux_sym_kex_algorithms_token1] = ACTIONS(915), - [aux_sym_known_hosts_command_token1] = ACTIONS(915), - [aux_sym_local_command_token1] = ACTIONS(915), - [aux_sym_local_forward_token1] = ACTIONS(915), - [aux_sym_log_level_token1] = ACTIONS(915), - [aux_sym_log_verbose_token1] = ACTIONS(915), - [aux_sym_macs_token1] = ACTIONS(915), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(915), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(915), - [aux_sym_password_authentication_token1] = ACTIONS(915), - [aux_sym_permit_local_command_token1] = ACTIONS(915), - [aux_sym_permit_remote_open_token1] = ACTIONS(915), - [aux_sym_pkcs11_provider_token1] = ACTIONS(915), - [aux_sym_port_token1] = ACTIONS(915), - [aux_sym_preferred_authentications_token1] = ACTIONS(915), - [aux_sym_protocol_token1] = ACTIONS(915), - [aux_sym_proxy_command_token1] = ACTIONS(915), - [aux_sym_proxy_jump_token1] = ACTIONS(915), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(915), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(915), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(915), - [aux_sym_pubkey_authentication_token1] = ACTIONS(915), - [aux_sym_rekey_limit_token1] = ACTIONS(915), - [aux_sym_remote_command_token1] = ACTIONS(915), - [aux_sym_remote_forward_token1] = ACTIONS(915), - [aux_sym_request_tty_token1] = ACTIONS(915), - [aux_sym_required_rsa_size_token1] = ACTIONS(915), - [aux_sym_revoked_host_keys_token1] = ACTIONS(915), - [aux_sym_security_key_provider_token1] = ACTIONS(915), - [aux_sym_send_env_token1] = ACTIONS(915), - [aux_sym_server_alive_count_max_token1] = ACTIONS(915), - [aux_sym_server_alive_interval_token1] = ACTIONS(915), - [aux_sym_session_type_token1] = ACTIONS(915), - [aux_sym_set_env_token1] = ACTIONS(915), - [aux_sym_stdin_null_token1] = ACTIONS(915), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(915), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(915), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(915), - [aux_sym_syslog_facility_token1] = ACTIONS(915), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(915), - [aux_sym_keep_alive_token1] = ACTIONS(915), - [aux_sym_tunnel_token1] = ACTIONS(917), - [aux_sym_tunnel_device_token1] = ACTIONS(915), - [aux_sym_update_host_keys_token1] = ACTIONS(915), - [aux_sym_use_keychain_token1] = ACTIONS(915), - [aux_sym_use_roaming_token1] = ACTIONS(915), - [aux_sym_user_token1] = ACTIONS(917), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(915), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(915), - [aux_sym_visual_host_key_token1] = ACTIONS(915), - [aux_sym_xauth_location_token1] = ACTIONS(915), + [ts_builtin_sym_end] = ACTIONS(3412), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3414), + [aux_sym_match_token1] = ACTIONS(3412), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3412), + [aux_sym_address_family_token1] = ACTIONS(3412), + [aux_sym_batch_mode_token1] = ACTIONS(3412), + [aux_sym_bind_address_token1] = ACTIONS(3412), + [aux_sym_bind_interface_token1] = ACTIONS(3412), + [aux_sym_canonical_domains_token1] = ACTIONS(3412), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3412), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3412), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3412), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3412), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3412), + [aux_sym_certificate_file_token1] = ACTIONS(3412), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3412), + [aux_sym_check_host_ip_token1] = ACTIONS(3412), + [aux_sym_ciphers_token1] = ACTIONS(3412), + [aux_sym_cipher_token1] = ACTIONS(3414), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3412), + [aux_sym_compression_token1] = ACTIONS(3412), + [aux_sym_connection_attempts_token1] = ACTIONS(3412), + [aux_sym_connect_timeout_token1] = ACTIONS(3412), + [aux_sym_control_master_token1] = ACTIONS(3412), + [aux_sym_control_path_token1] = ACTIONS(3412), + [aux_sym_control_persist_token1] = ACTIONS(3412), + [aux_sym_dynamic_forward_token1] = ACTIONS(3412), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3412), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3412), + [aux_sym_escape_char_token1] = ACTIONS(3412), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3412), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3412), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3412), + [aux_sym_forward_agent_token1] = ACTIONS(3412), + [aux_sym_forward_x11_token1] = ACTIONS(3414), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3412), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3412), + [aux_sym_gateway_ports_token1] = ACTIONS(3412), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3412), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3412), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3412), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3412), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3412), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3412), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3412), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3412), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3412), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3412), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3412), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3412), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3412), + [aux_sym_host_key_alias_token1] = ACTIONS(3412), + [aux_sym_hostname_token1] = ACTIONS(3412), + [aux_sym_identities_only_token1] = ACTIONS(3412), + [aux_sym_identity_agent_token1] = ACTIONS(3412), + [aux_sym_identity_file_token1] = ACTIONS(3412), + [aux_sym_ignore_unknown_token1] = ACTIONS(3412), + [aux_sym_include_token1] = ACTIONS(3412), + [aux_sym_ip_qos_token1] = ACTIONS(3412), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3412), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3412), + [aux_sym_kex_algorithms_token1] = ACTIONS(3412), + [aux_sym_known_hosts_command_token1] = ACTIONS(3412), + [aux_sym_local_command_token1] = ACTIONS(3412), + [aux_sym_local_forward_token1] = ACTIONS(3412), + [aux_sym_log_level_token1] = ACTIONS(3412), + [aux_sym_log_verbose_token1] = ACTIONS(3412), + [aux_sym_macs_token1] = ACTIONS(3412), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3412), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3412), + [aux_sym_password_authentication_token1] = ACTIONS(3412), + [aux_sym_permit_local_command_token1] = ACTIONS(3412), + [aux_sym_permit_remote_open_token1] = ACTIONS(3412), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3412), + [aux_sym_port_token1] = ACTIONS(3412), + [aux_sym_preferred_authentications_token1] = ACTIONS(3412), + [aux_sym_protocol_token1] = ACTIONS(3412), + [aux_sym_proxy_command_token1] = ACTIONS(3412), + [aux_sym_proxy_jump_token1] = ACTIONS(3412), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3412), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3412), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3412), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3412), + [aux_sym_rekey_limit_token1] = ACTIONS(3412), + [aux_sym_remote_command_token1] = ACTIONS(3412), + [aux_sym_remote_forward_token1] = ACTIONS(3412), + [aux_sym_request_tty_token1] = ACTIONS(3412), + [aux_sym_required_rsa_size_token1] = ACTIONS(3412), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3412), + [aux_sym_security_key_provider_token1] = ACTIONS(3412), + [aux_sym_send_env_token1] = ACTIONS(3412), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3412), + [aux_sym_server_alive_interval_token1] = ACTIONS(3412), + [aux_sym_session_type_token1] = ACTIONS(3412), + [aux_sym_set_env_token1] = ACTIONS(3412), + [aux_sym_stdin_null_token1] = ACTIONS(3412), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3412), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3412), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3412), + [aux_sym_syslog_facility_token1] = ACTIONS(3412), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3412), + [aux_sym_keep_alive_token1] = ACTIONS(3412), + [aux_sym_tunnel_token1] = ACTIONS(3414), + [aux_sym_tunnel_device_token1] = ACTIONS(3412), + [aux_sym_update_host_keys_token1] = ACTIONS(3412), + [aux_sym_use_keychain_token1] = ACTIONS(3412), + [aux_sym_use_roaming_token1] = ACTIONS(3412), + [aux_sym_user_token1] = ACTIONS(3414), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3412), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3412), + [aux_sym_visual_host_key_token1] = ACTIONS(3412), + [aux_sym_xauth_location_token1] = ACTIONS(3412), }, [625] = { - [ts_builtin_sym_end] = ACTIONS(921), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(923), - [aux_sym_match_token1] = ACTIONS(921), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(921), - [aux_sym_address_family_token1] = ACTIONS(921), - [aux_sym_batch_mode_token1] = ACTIONS(921), - [aux_sym_bind_address_token1] = ACTIONS(921), - [aux_sym_bind_interface_token1] = ACTIONS(921), - [aux_sym_canonical_domains_token1] = ACTIONS(921), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(921), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(921), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(921), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(921), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(921), - [aux_sym_certificate_file_token1] = ACTIONS(921), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(921), - [aux_sym_check_host_ip_token1] = ACTIONS(921), - [aux_sym_ciphers_token1] = ACTIONS(921), - [aux_sym_cipher_token1] = ACTIONS(923), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(921), - [aux_sym_compression_token1] = ACTIONS(921), - [aux_sym_connection_attempts_token1] = ACTIONS(921), - [aux_sym_connect_timeout_token1] = ACTIONS(921), - [aux_sym_control_master_token1] = ACTIONS(921), - [aux_sym_control_path_token1] = ACTIONS(921), - [aux_sym_control_persist_token1] = ACTIONS(921), - [aux_sym_dynamic_forward_token1] = ACTIONS(921), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(921), - [aux_sym_escape_char_token1] = ACTIONS(921), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(921), - [aux_sym_fingerprint_hash_token1] = ACTIONS(921), - [aux_sym_fork_after_authentication_token1] = ACTIONS(921), - [aux_sym_forward_agent_token1] = ACTIONS(921), - [aux_sym_forward_x11_token1] = ACTIONS(923), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(921), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(921), - [aux_sym_gateway_ports_token1] = ACTIONS(921), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(921), - [aux_sym_gssapi_authentication_token1] = ACTIONS(921), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(921), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(921), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(921), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(921), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(921), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(921), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(921), - [aux_sym_hash_known_hosts_token1] = ACTIONS(921), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(921), - [aux_sym_hostbased_authentication_token1] = ACTIONS(921), - [aux_sym_host_key_algorithms_token1] = ACTIONS(921), - [aux_sym_host_key_alias_token1] = ACTIONS(921), - [aux_sym_hostname_token1] = ACTIONS(921), - [aux_sym_identities_only_token1] = ACTIONS(921), - [aux_sym_identity_agent_token1] = ACTIONS(921), - [aux_sym_identity_file_token1] = ACTIONS(921), - [aux_sym_ignore_unknown_token1] = ACTIONS(921), - [aux_sym_include_token1] = ACTIONS(921), - [aux_sym_ip_qos_token1] = ACTIONS(921), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(921), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(921), - [aux_sym_kex_algorithms_token1] = ACTIONS(921), - [aux_sym_known_hosts_command_token1] = ACTIONS(921), - [aux_sym_local_command_token1] = ACTIONS(921), - [aux_sym_local_forward_token1] = ACTIONS(921), - [aux_sym_log_level_token1] = ACTIONS(921), - [aux_sym_log_verbose_token1] = ACTIONS(921), - [aux_sym_macs_token1] = ACTIONS(921), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(921), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(921), - [aux_sym_password_authentication_token1] = ACTIONS(921), - [aux_sym_permit_local_command_token1] = ACTIONS(921), - [aux_sym_permit_remote_open_token1] = ACTIONS(921), - [aux_sym_pkcs11_provider_token1] = ACTIONS(921), - [aux_sym_port_token1] = ACTIONS(921), - [aux_sym_preferred_authentications_token1] = ACTIONS(921), - [aux_sym_protocol_token1] = ACTIONS(921), - [aux_sym_proxy_command_token1] = ACTIONS(921), - [aux_sym_proxy_jump_token1] = ACTIONS(921), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(921), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(921), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(921), - [aux_sym_pubkey_authentication_token1] = ACTIONS(921), - [aux_sym_rekey_limit_token1] = ACTIONS(921), - [aux_sym_remote_command_token1] = ACTIONS(921), - [aux_sym_remote_forward_token1] = ACTIONS(921), - [aux_sym_request_tty_token1] = ACTIONS(921), - [aux_sym_required_rsa_size_token1] = ACTIONS(921), - [aux_sym_revoked_host_keys_token1] = ACTIONS(921), - [aux_sym_security_key_provider_token1] = ACTIONS(921), - [aux_sym_send_env_token1] = ACTIONS(921), - [aux_sym_server_alive_count_max_token1] = ACTIONS(921), - [aux_sym_server_alive_interval_token1] = ACTIONS(921), - [aux_sym_session_type_token1] = ACTIONS(921), - [aux_sym_set_env_token1] = ACTIONS(921), - [aux_sym_stdin_null_token1] = ACTIONS(921), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(921), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(921), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(921), - [aux_sym_syslog_facility_token1] = ACTIONS(921), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(921), - [aux_sym_keep_alive_token1] = ACTIONS(921), - [aux_sym_tunnel_token1] = ACTIONS(923), - [aux_sym_tunnel_device_token1] = ACTIONS(921), - [aux_sym_update_host_keys_token1] = ACTIONS(921), - [aux_sym_use_keychain_token1] = ACTIONS(921), - [aux_sym_use_roaming_token1] = ACTIONS(921), - [aux_sym_user_token1] = ACTIONS(923), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(921), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(921), - [aux_sym_visual_host_key_token1] = ACTIONS(921), - [aux_sym_xauth_location_token1] = ACTIONS(921), + [ts_builtin_sym_end] = ACTIONS(932), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(934), + [aux_sym_match_token1] = ACTIONS(932), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(932), + [aux_sym_address_family_token1] = ACTIONS(932), + [aux_sym_batch_mode_token1] = ACTIONS(932), + [aux_sym_bind_address_token1] = ACTIONS(932), + [aux_sym_bind_interface_token1] = ACTIONS(932), + [aux_sym_canonical_domains_token1] = ACTIONS(932), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(932), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(932), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(932), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(932), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(932), + [aux_sym_certificate_file_token1] = ACTIONS(932), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(932), + [aux_sym_check_host_ip_token1] = ACTIONS(932), + [aux_sym_ciphers_token1] = ACTIONS(932), + [aux_sym_cipher_token1] = ACTIONS(934), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(932), + [aux_sym_compression_token1] = ACTIONS(932), + [aux_sym_connection_attempts_token1] = ACTIONS(932), + [aux_sym_connect_timeout_token1] = ACTIONS(932), + [aux_sym_control_master_token1] = ACTIONS(932), + [aux_sym_control_path_token1] = ACTIONS(932), + [aux_sym_control_persist_token1] = ACTIONS(932), + [aux_sym_dynamic_forward_token1] = ACTIONS(932), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(932), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(932), + [aux_sym_escape_char_token1] = ACTIONS(932), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(932), + [aux_sym_fingerprint_hash_token1] = ACTIONS(932), + [aux_sym_fork_after_authentication_token1] = ACTIONS(932), + [aux_sym_forward_agent_token1] = ACTIONS(932), + [aux_sym_forward_x11_token1] = ACTIONS(934), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(932), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(932), + [aux_sym_gateway_ports_token1] = ACTIONS(932), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(932), + [aux_sym_gssapi_authentication_token1] = ACTIONS(932), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(932), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(932), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(932), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(932), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(932), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(932), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(932), + [aux_sym_hash_known_hosts_token1] = ACTIONS(932), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(932), + [aux_sym_hostbased_authentication_token1] = ACTIONS(932), + [aux_sym_host_key_algorithms_token1] = ACTIONS(932), + [aux_sym_host_key_alias_token1] = ACTIONS(932), + [aux_sym_hostname_token1] = ACTIONS(932), + [aux_sym_identities_only_token1] = ACTIONS(932), + [aux_sym_identity_agent_token1] = ACTIONS(932), + [aux_sym_identity_file_token1] = ACTIONS(932), + [aux_sym_ignore_unknown_token1] = ACTIONS(932), + [aux_sym_include_token1] = ACTIONS(932), + [aux_sym_ip_qos_token1] = ACTIONS(932), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(932), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(932), + [aux_sym_kex_algorithms_token1] = ACTIONS(932), + [aux_sym_known_hosts_command_token1] = ACTIONS(932), + [aux_sym_local_command_token1] = ACTIONS(932), + [aux_sym_local_forward_token1] = ACTIONS(932), + [aux_sym_log_level_token1] = ACTIONS(932), + [aux_sym_log_verbose_token1] = ACTIONS(932), + [aux_sym_macs_token1] = ACTIONS(932), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(932), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(932), + [aux_sym_password_authentication_token1] = ACTIONS(932), + [aux_sym_permit_local_command_token1] = ACTIONS(932), + [aux_sym_permit_remote_open_token1] = ACTIONS(932), + [aux_sym_pkcs11_provider_token1] = ACTIONS(932), + [aux_sym_port_token1] = ACTIONS(932), + [aux_sym_preferred_authentications_token1] = ACTIONS(932), + [aux_sym_protocol_token1] = ACTIONS(932), + [aux_sym_proxy_command_token1] = ACTIONS(932), + [aux_sym_proxy_jump_token1] = ACTIONS(932), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(932), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(932), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(932), + [aux_sym_pubkey_authentication_token1] = ACTIONS(932), + [aux_sym_rekey_limit_token1] = ACTIONS(932), + [aux_sym_remote_command_token1] = ACTIONS(932), + [aux_sym_remote_forward_token1] = ACTIONS(932), + [aux_sym_request_tty_token1] = ACTIONS(932), + [aux_sym_required_rsa_size_token1] = ACTIONS(932), + [aux_sym_revoked_host_keys_token1] = ACTIONS(932), + [aux_sym_security_key_provider_token1] = ACTIONS(932), + [aux_sym_send_env_token1] = ACTIONS(932), + [aux_sym_server_alive_count_max_token1] = ACTIONS(932), + [aux_sym_server_alive_interval_token1] = ACTIONS(932), + [aux_sym_session_type_token1] = ACTIONS(932), + [aux_sym_set_env_token1] = ACTIONS(932), + [aux_sym_stdin_null_token1] = ACTIONS(932), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(932), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(932), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(932), + [aux_sym_syslog_facility_token1] = ACTIONS(932), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(932), + [aux_sym_keep_alive_token1] = ACTIONS(932), + [aux_sym_tunnel_token1] = ACTIONS(934), + [aux_sym_tunnel_device_token1] = ACTIONS(932), + [aux_sym_update_host_keys_token1] = ACTIONS(932), + [aux_sym_use_keychain_token1] = ACTIONS(932), + [aux_sym_use_roaming_token1] = ACTIONS(932), + [aux_sym_user_token1] = ACTIONS(934), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(932), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(932), + [aux_sym_visual_host_key_token1] = ACTIONS(932), + [aux_sym_xauth_location_token1] = ACTIONS(932), }, [626] = { - [ts_builtin_sym_end] = ACTIONS(927), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(929), - [aux_sym_match_token1] = ACTIONS(927), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(927), - [aux_sym_address_family_token1] = ACTIONS(927), - [aux_sym_batch_mode_token1] = ACTIONS(927), - [aux_sym_bind_address_token1] = ACTIONS(927), - [aux_sym_bind_interface_token1] = ACTIONS(927), - [aux_sym_canonical_domains_token1] = ACTIONS(927), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(927), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(927), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(927), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(927), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(927), - [aux_sym_certificate_file_token1] = ACTIONS(927), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(927), - [aux_sym_check_host_ip_token1] = ACTIONS(927), - [aux_sym_ciphers_token1] = ACTIONS(927), - [aux_sym_cipher_token1] = ACTIONS(929), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(927), - [aux_sym_compression_token1] = ACTIONS(927), - [aux_sym_connection_attempts_token1] = ACTIONS(927), - [aux_sym_connect_timeout_token1] = ACTIONS(927), - [aux_sym_control_master_token1] = ACTIONS(927), - [aux_sym_control_path_token1] = ACTIONS(927), - [aux_sym_control_persist_token1] = ACTIONS(927), - [aux_sym_dynamic_forward_token1] = ACTIONS(927), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(927), - [aux_sym_escape_char_token1] = ACTIONS(927), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(927), - [aux_sym_fingerprint_hash_token1] = ACTIONS(927), - [aux_sym_fork_after_authentication_token1] = ACTIONS(927), - [aux_sym_forward_agent_token1] = ACTIONS(927), - [aux_sym_forward_x11_token1] = ACTIONS(929), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(927), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(927), - [aux_sym_gateway_ports_token1] = ACTIONS(927), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(927), - [aux_sym_gssapi_authentication_token1] = ACTIONS(927), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(927), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(927), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(927), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(927), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(927), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(927), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(927), - [aux_sym_hash_known_hosts_token1] = ACTIONS(927), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(927), - [aux_sym_hostbased_authentication_token1] = ACTIONS(927), - [aux_sym_host_key_algorithms_token1] = ACTIONS(927), - [aux_sym_host_key_alias_token1] = ACTIONS(927), - [aux_sym_hostname_token1] = ACTIONS(927), - [aux_sym_identities_only_token1] = ACTIONS(927), - [aux_sym_identity_agent_token1] = ACTIONS(927), - [aux_sym_identity_file_token1] = ACTIONS(927), - [aux_sym_ignore_unknown_token1] = ACTIONS(927), - [aux_sym_include_token1] = ACTIONS(927), - [aux_sym_ip_qos_token1] = ACTIONS(927), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(927), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(927), - [aux_sym_kex_algorithms_token1] = ACTIONS(927), - [aux_sym_known_hosts_command_token1] = ACTIONS(927), - [aux_sym_local_command_token1] = ACTIONS(927), - [aux_sym_local_forward_token1] = ACTIONS(927), - [aux_sym_log_level_token1] = ACTIONS(927), - [aux_sym_log_verbose_token1] = ACTIONS(927), - [aux_sym_macs_token1] = ACTIONS(927), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(927), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(927), - [aux_sym_password_authentication_token1] = ACTIONS(927), - [aux_sym_permit_local_command_token1] = ACTIONS(927), - [aux_sym_permit_remote_open_token1] = ACTIONS(927), - [aux_sym_pkcs11_provider_token1] = ACTIONS(927), - [aux_sym_port_token1] = ACTIONS(927), - [aux_sym_preferred_authentications_token1] = ACTIONS(927), - [aux_sym_protocol_token1] = ACTIONS(927), - [aux_sym_proxy_command_token1] = ACTIONS(927), - [aux_sym_proxy_jump_token1] = ACTIONS(927), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(927), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(927), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(927), - [aux_sym_pubkey_authentication_token1] = ACTIONS(927), - [aux_sym_rekey_limit_token1] = ACTIONS(927), - [aux_sym_remote_command_token1] = ACTIONS(927), - [aux_sym_remote_forward_token1] = ACTIONS(927), - [aux_sym_request_tty_token1] = ACTIONS(927), - [aux_sym_required_rsa_size_token1] = ACTIONS(927), - [aux_sym_revoked_host_keys_token1] = ACTIONS(927), - [aux_sym_security_key_provider_token1] = ACTIONS(927), - [aux_sym_send_env_token1] = ACTIONS(927), - [aux_sym_server_alive_count_max_token1] = ACTIONS(927), - [aux_sym_server_alive_interval_token1] = ACTIONS(927), - [aux_sym_session_type_token1] = ACTIONS(927), - [aux_sym_set_env_token1] = ACTIONS(927), - [aux_sym_stdin_null_token1] = ACTIONS(927), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(927), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(927), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(927), - [aux_sym_syslog_facility_token1] = ACTIONS(927), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(927), - [aux_sym_keep_alive_token1] = ACTIONS(927), - [aux_sym_tunnel_token1] = ACTIONS(929), - [aux_sym_tunnel_device_token1] = ACTIONS(927), - [aux_sym_update_host_keys_token1] = ACTIONS(927), - [aux_sym_use_keychain_token1] = ACTIONS(927), - [aux_sym_use_roaming_token1] = ACTIONS(927), - [aux_sym_user_token1] = ACTIONS(929), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(927), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(927), - [aux_sym_visual_host_key_token1] = ACTIONS(927), - [aux_sym_xauth_location_token1] = ACTIONS(927), + [ts_builtin_sym_end] = ACTIONS(1388), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1390), + [aux_sym_match_token1] = ACTIONS(1388), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1388), + [aux_sym_address_family_token1] = ACTIONS(1388), + [aux_sym_batch_mode_token1] = ACTIONS(1388), + [aux_sym_bind_address_token1] = ACTIONS(1388), + [aux_sym_bind_interface_token1] = ACTIONS(1388), + [aux_sym_canonical_domains_token1] = ACTIONS(1388), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1388), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1388), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1388), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1388), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1388), + [aux_sym_certificate_file_token1] = ACTIONS(1388), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1388), + [aux_sym_check_host_ip_token1] = ACTIONS(1388), + [aux_sym_ciphers_token1] = ACTIONS(1388), + [aux_sym_cipher_token1] = ACTIONS(1390), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1388), + [aux_sym_compression_token1] = ACTIONS(1388), + [aux_sym_connection_attempts_token1] = ACTIONS(1388), + [aux_sym_connect_timeout_token1] = ACTIONS(1388), + [aux_sym_control_master_token1] = ACTIONS(1388), + [aux_sym_control_path_token1] = ACTIONS(1388), + [aux_sym_control_persist_token1] = ACTIONS(1388), + [aux_sym_dynamic_forward_token1] = ACTIONS(1388), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1388), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1388), + [aux_sym_escape_char_token1] = ACTIONS(1388), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1388), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1388), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1388), + [aux_sym_forward_agent_token1] = ACTIONS(1388), + [aux_sym_forward_x11_token1] = ACTIONS(1390), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1388), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1388), + [aux_sym_gateway_ports_token1] = ACTIONS(1388), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1388), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1388), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1388), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1388), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1388), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1388), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1388), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1388), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1388), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1388), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1388), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1388), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1388), + [aux_sym_host_key_alias_token1] = ACTIONS(1388), + [aux_sym_hostname_token1] = ACTIONS(1388), + [aux_sym_identities_only_token1] = ACTIONS(1388), + [aux_sym_identity_agent_token1] = ACTIONS(1388), + [aux_sym_identity_file_token1] = ACTIONS(1388), + [aux_sym_ignore_unknown_token1] = ACTIONS(1388), + [aux_sym_include_token1] = ACTIONS(1388), + [aux_sym_ip_qos_token1] = ACTIONS(1388), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1388), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1388), + [aux_sym_kex_algorithms_token1] = ACTIONS(1388), + [aux_sym_known_hosts_command_token1] = ACTIONS(1388), + [aux_sym_local_command_token1] = ACTIONS(1388), + [aux_sym_local_forward_token1] = ACTIONS(1388), + [aux_sym_log_level_token1] = ACTIONS(1388), + [aux_sym_log_verbose_token1] = ACTIONS(1388), + [aux_sym_macs_token1] = ACTIONS(1388), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1388), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1388), + [aux_sym_password_authentication_token1] = ACTIONS(1388), + [aux_sym_permit_local_command_token1] = ACTIONS(1388), + [aux_sym_permit_remote_open_token1] = ACTIONS(1388), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1388), + [aux_sym_port_token1] = ACTIONS(1388), + [aux_sym_preferred_authentications_token1] = ACTIONS(1388), + [aux_sym_protocol_token1] = ACTIONS(1388), + [aux_sym_proxy_command_token1] = ACTIONS(1388), + [aux_sym_proxy_jump_token1] = ACTIONS(1388), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1388), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1388), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1388), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1388), + [aux_sym_rekey_limit_token1] = ACTIONS(1388), + [aux_sym_remote_command_token1] = ACTIONS(1388), + [aux_sym_remote_forward_token1] = ACTIONS(1388), + [aux_sym_request_tty_token1] = ACTIONS(1388), + [aux_sym_required_rsa_size_token1] = ACTIONS(1388), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1388), + [aux_sym_security_key_provider_token1] = ACTIONS(1388), + [aux_sym_send_env_token1] = ACTIONS(1388), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1388), + [aux_sym_server_alive_interval_token1] = ACTIONS(1388), + [aux_sym_session_type_token1] = ACTIONS(1388), + [aux_sym_set_env_token1] = ACTIONS(1388), + [aux_sym_stdin_null_token1] = ACTIONS(1388), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1388), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1388), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1388), + [aux_sym_syslog_facility_token1] = ACTIONS(1388), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1388), + [aux_sym_keep_alive_token1] = ACTIONS(1388), + [aux_sym_tunnel_token1] = ACTIONS(1390), + [aux_sym_tunnel_device_token1] = ACTIONS(1388), + [aux_sym_update_host_keys_token1] = ACTIONS(1388), + [aux_sym_use_keychain_token1] = ACTIONS(1388), + [aux_sym_use_roaming_token1] = ACTIONS(1388), + [aux_sym_user_token1] = ACTIONS(1390), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1388), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1388), + [aux_sym_visual_host_key_token1] = ACTIONS(1388), + [aux_sym_xauth_location_token1] = ACTIONS(1388), }, [627] = { - [ts_builtin_sym_end] = ACTIONS(933), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(935), - [aux_sym_match_token1] = ACTIONS(933), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(933), - [aux_sym_address_family_token1] = ACTIONS(933), - [aux_sym_batch_mode_token1] = ACTIONS(933), - [aux_sym_bind_address_token1] = ACTIONS(933), - [aux_sym_bind_interface_token1] = ACTIONS(933), - [aux_sym_canonical_domains_token1] = ACTIONS(933), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(933), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(933), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(933), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(933), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(933), - [aux_sym_certificate_file_token1] = ACTIONS(933), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(933), - [aux_sym_check_host_ip_token1] = ACTIONS(933), - [aux_sym_ciphers_token1] = ACTIONS(933), - [aux_sym_cipher_token1] = ACTIONS(935), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(933), - [aux_sym_compression_token1] = ACTIONS(933), - [aux_sym_connection_attempts_token1] = ACTIONS(933), - [aux_sym_connect_timeout_token1] = ACTIONS(933), - [aux_sym_control_master_token1] = ACTIONS(933), - [aux_sym_control_path_token1] = ACTIONS(933), - [aux_sym_control_persist_token1] = ACTIONS(933), - [aux_sym_dynamic_forward_token1] = ACTIONS(933), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(933), - [aux_sym_escape_char_token1] = ACTIONS(933), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(933), - [aux_sym_fingerprint_hash_token1] = ACTIONS(933), - [aux_sym_fork_after_authentication_token1] = ACTIONS(933), - [aux_sym_forward_agent_token1] = ACTIONS(933), - [aux_sym_forward_x11_token1] = ACTIONS(935), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(933), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(933), - [aux_sym_gateway_ports_token1] = ACTIONS(933), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(933), - [aux_sym_gssapi_authentication_token1] = ACTIONS(933), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(933), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(933), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(933), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(933), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(933), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(933), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(933), - [aux_sym_hash_known_hosts_token1] = ACTIONS(933), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(933), - [aux_sym_hostbased_authentication_token1] = ACTIONS(933), - [aux_sym_host_key_algorithms_token1] = ACTIONS(933), - [aux_sym_host_key_alias_token1] = ACTIONS(933), - [aux_sym_hostname_token1] = ACTIONS(933), - [aux_sym_identities_only_token1] = ACTIONS(933), - [aux_sym_identity_agent_token1] = ACTIONS(933), - [aux_sym_identity_file_token1] = ACTIONS(933), - [aux_sym_ignore_unknown_token1] = ACTIONS(933), - [aux_sym_include_token1] = ACTIONS(933), - [aux_sym_ip_qos_token1] = ACTIONS(933), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(933), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(933), - [aux_sym_kex_algorithms_token1] = ACTIONS(933), - [aux_sym_known_hosts_command_token1] = ACTIONS(933), - [aux_sym_local_command_token1] = ACTIONS(933), - [aux_sym_local_forward_token1] = ACTIONS(933), - [aux_sym_log_level_token1] = ACTIONS(933), - [aux_sym_log_verbose_token1] = ACTIONS(933), - [aux_sym_macs_token1] = ACTIONS(933), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(933), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(933), - [aux_sym_password_authentication_token1] = ACTIONS(933), - [aux_sym_permit_local_command_token1] = ACTIONS(933), - [aux_sym_permit_remote_open_token1] = ACTIONS(933), - [aux_sym_pkcs11_provider_token1] = ACTIONS(933), - [aux_sym_port_token1] = ACTIONS(933), - [aux_sym_preferred_authentications_token1] = ACTIONS(933), - [aux_sym_protocol_token1] = ACTIONS(933), - [aux_sym_proxy_command_token1] = ACTIONS(933), - [aux_sym_proxy_jump_token1] = ACTIONS(933), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(933), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(933), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(933), - [aux_sym_pubkey_authentication_token1] = ACTIONS(933), - [aux_sym_rekey_limit_token1] = ACTIONS(933), - [aux_sym_remote_command_token1] = ACTIONS(933), - [aux_sym_remote_forward_token1] = ACTIONS(933), - [aux_sym_request_tty_token1] = ACTIONS(933), - [aux_sym_required_rsa_size_token1] = ACTIONS(933), - [aux_sym_revoked_host_keys_token1] = ACTIONS(933), - [aux_sym_security_key_provider_token1] = ACTIONS(933), - [aux_sym_send_env_token1] = ACTIONS(933), - [aux_sym_server_alive_count_max_token1] = ACTIONS(933), - [aux_sym_server_alive_interval_token1] = ACTIONS(933), - [aux_sym_session_type_token1] = ACTIONS(933), - [aux_sym_set_env_token1] = ACTIONS(933), - [aux_sym_stdin_null_token1] = ACTIONS(933), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(933), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(933), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(933), - [aux_sym_syslog_facility_token1] = ACTIONS(933), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(933), - [aux_sym_keep_alive_token1] = ACTIONS(933), - [aux_sym_tunnel_token1] = ACTIONS(935), - [aux_sym_tunnel_device_token1] = ACTIONS(933), - [aux_sym_update_host_keys_token1] = ACTIONS(933), - [aux_sym_use_keychain_token1] = ACTIONS(933), - [aux_sym_use_roaming_token1] = ACTIONS(933), - [aux_sym_user_token1] = ACTIONS(935), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(933), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(933), - [aux_sym_visual_host_key_token1] = ACTIONS(933), - [aux_sym_xauth_location_token1] = ACTIONS(933), + [ts_builtin_sym_end] = ACTIONS(3416), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3418), + [aux_sym_match_token1] = ACTIONS(3416), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3416), + [aux_sym_address_family_token1] = ACTIONS(3416), + [aux_sym_batch_mode_token1] = ACTIONS(3416), + [aux_sym_bind_address_token1] = ACTIONS(3416), + [aux_sym_bind_interface_token1] = ACTIONS(3416), + [aux_sym_canonical_domains_token1] = ACTIONS(3416), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3416), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3416), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3416), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3416), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3416), + [aux_sym_certificate_file_token1] = ACTIONS(3416), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3416), + [aux_sym_check_host_ip_token1] = ACTIONS(3416), + [aux_sym_ciphers_token1] = ACTIONS(3416), + [aux_sym_cipher_token1] = ACTIONS(3418), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3416), + [aux_sym_compression_token1] = ACTIONS(3416), + [aux_sym_connection_attempts_token1] = ACTIONS(3416), + [aux_sym_connect_timeout_token1] = ACTIONS(3416), + [aux_sym_control_master_token1] = ACTIONS(3416), + [aux_sym_control_path_token1] = ACTIONS(3416), + [aux_sym_control_persist_token1] = ACTIONS(3416), + [aux_sym_dynamic_forward_token1] = ACTIONS(3416), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3416), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3416), + [aux_sym_escape_char_token1] = ACTIONS(3416), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3416), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3416), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3416), + [aux_sym_forward_agent_token1] = ACTIONS(3416), + [aux_sym_forward_x11_token1] = ACTIONS(3418), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3416), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3416), + [aux_sym_gateway_ports_token1] = ACTIONS(3416), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3416), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3416), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3416), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3416), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3416), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3416), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3416), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3416), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3416), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3416), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3416), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3416), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3416), + [aux_sym_host_key_alias_token1] = ACTIONS(3416), + [aux_sym_hostname_token1] = ACTIONS(3416), + [aux_sym_identities_only_token1] = ACTIONS(3416), + [aux_sym_identity_agent_token1] = ACTIONS(3416), + [aux_sym_identity_file_token1] = ACTIONS(3416), + [aux_sym_ignore_unknown_token1] = ACTIONS(3416), + [aux_sym_include_token1] = ACTIONS(3416), + [aux_sym_ip_qos_token1] = ACTIONS(3416), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3416), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3416), + [aux_sym_kex_algorithms_token1] = ACTIONS(3416), + [aux_sym_known_hosts_command_token1] = ACTIONS(3416), + [aux_sym_local_command_token1] = ACTIONS(3416), + [aux_sym_local_forward_token1] = ACTIONS(3416), + [aux_sym_log_level_token1] = ACTIONS(3416), + [aux_sym_log_verbose_token1] = ACTIONS(3416), + [aux_sym_macs_token1] = ACTIONS(3416), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3416), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3416), + [aux_sym_password_authentication_token1] = ACTIONS(3416), + [aux_sym_permit_local_command_token1] = ACTIONS(3416), + [aux_sym_permit_remote_open_token1] = ACTIONS(3416), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3416), + [aux_sym_port_token1] = ACTIONS(3416), + [aux_sym_preferred_authentications_token1] = ACTIONS(3416), + [aux_sym_protocol_token1] = ACTIONS(3416), + [aux_sym_proxy_command_token1] = ACTIONS(3416), + [aux_sym_proxy_jump_token1] = ACTIONS(3416), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3416), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3416), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3416), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3416), + [aux_sym_rekey_limit_token1] = ACTIONS(3416), + [aux_sym_remote_command_token1] = ACTIONS(3416), + [aux_sym_remote_forward_token1] = ACTIONS(3416), + [aux_sym_request_tty_token1] = ACTIONS(3416), + [aux_sym_required_rsa_size_token1] = ACTIONS(3416), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3416), + [aux_sym_security_key_provider_token1] = ACTIONS(3416), + [aux_sym_send_env_token1] = ACTIONS(3416), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3416), + [aux_sym_server_alive_interval_token1] = ACTIONS(3416), + [aux_sym_session_type_token1] = ACTIONS(3416), + [aux_sym_set_env_token1] = ACTIONS(3416), + [aux_sym_stdin_null_token1] = ACTIONS(3416), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3416), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3416), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3416), + [aux_sym_syslog_facility_token1] = ACTIONS(3416), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3416), + [aux_sym_keep_alive_token1] = ACTIONS(3416), + [aux_sym_tunnel_token1] = ACTIONS(3418), + [aux_sym_tunnel_device_token1] = ACTIONS(3416), + [aux_sym_update_host_keys_token1] = ACTIONS(3416), + [aux_sym_use_keychain_token1] = ACTIONS(3416), + [aux_sym_use_roaming_token1] = ACTIONS(3416), + [aux_sym_user_token1] = ACTIONS(3418), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3416), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3416), + [aux_sym_visual_host_key_token1] = ACTIONS(3416), + [aux_sym_xauth_location_token1] = ACTIONS(3416), }, [628] = { - [ts_builtin_sym_end] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(941), - [aux_sym_match_token1] = ACTIONS(939), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(939), - [aux_sym_address_family_token1] = ACTIONS(939), - [aux_sym_batch_mode_token1] = ACTIONS(939), - [aux_sym_bind_address_token1] = ACTIONS(939), - [aux_sym_bind_interface_token1] = ACTIONS(939), - [aux_sym_canonical_domains_token1] = ACTIONS(939), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(939), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(939), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(939), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(939), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(939), - [aux_sym_certificate_file_token1] = ACTIONS(939), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(939), - [aux_sym_check_host_ip_token1] = ACTIONS(939), - [aux_sym_ciphers_token1] = ACTIONS(939), - [aux_sym_cipher_token1] = ACTIONS(941), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(939), - [aux_sym_compression_token1] = ACTIONS(939), - [aux_sym_connection_attempts_token1] = ACTIONS(939), - [aux_sym_connect_timeout_token1] = ACTIONS(939), - [aux_sym_control_master_token1] = ACTIONS(939), - [aux_sym_control_path_token1] = ACTIONS(939), - [aux_sym_control_persist_token1] = ACTIONS(939), - [aux_sym_dynamic_forward_token1] = ACTIONS(939), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(939), - [aux_sym_escape_char_token1] = ACTIONS(939), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(939), - [aux_sym_fingerprint_hash_token1] = ACTIONS(939), - [aux_sym_fork_after_authentication_token1] = ACTIONS(939), - [aux_sym_forward_agent_token1] = ACTIONS(939), - [aux_sym_forward_x11_token1] = ACTIONS(941), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(939), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(939), - [aux_sym_gateway_ports_token1] = ACTIONS(939), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(939), - [aux_sym_gssapi_authentication_token1] = ACTIONS(939), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(939), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(939), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(939), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(939), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(939), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(939), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(939), - [aux_sym_hash_known_hosts_token1] = ACTIONS(939), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(939), - [aux_sym_hostbased_authentication_token1] = ACTIONS(939), - [aux_sym_host_key_algorithms_token1] = ACTIONS(939), - [aux_sym_host_key_alias_token1] = ACTIONS(939), - [aux_sym_hostname_token1] = ACTIONS(939), - [aux_sym_identities_only_token1] = ACTIONS(939), - [aux_sym_identity_agent_token1] = ACTIONS(939), - [aux_sym_identity_file_token1] = ACTIONS(939), - [aux_sym_ignore_unknown_token1] = ACTIONS(939), - [aux_sym_include_token1] = ACTIONS(939), - [aux_sym_ip_qos_token1] = ACTIONS(939), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(939), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(939), - [aux_sym_kex_algorithms_token1] = ACTIONS(939), - [aux_sym_known_hosts_command_token1] = ACTIONS(939), - [aux_sym_local_command_token1] = ACTIONS(939), - [aux_sym_local_forward_token1] = ACTIONS(939), - [aux_sym_log_level_token1] = ACTIONS(939), - [aux_sym_log_verbose_token1] = ACTIONS(939), - [aux_sym_macs_token1] = ACTIONS(939), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(939), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(939), - [aux_sym_password_authentication_token1] = ACTIONS(939), - [aux_sym_permit_local_command_token1] = ACTIONS(939), - [aux_sym_permit_remote_open_token1] = ACTIONS(939), - [aux_sym_pkcs11_provider_token1] = ACTIONS(939), - [aux_sym_port_token1] = ACTIONS(939), - [aux_sym_preferred_authentications_token1] = ACTIONS(939), - [aux_sym_protocol_token1] = ACTIONS(939), - [aux_sym_proxy_command_token1] = ACTIONS(939), - [aux_sym_proxy_jump_token1] = ACTIONS(939), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(939), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(939), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(939), - [aux_sym_pubkey_authentication_token1] = ACTIONS(939), - [aux_sym_rekey_limit_token1] = ACTIONS(939), - [aux_sym_remote_command_token1] = ACTIONS(939), - [aux_sym_remote_forward_token1] = ACTIONS(939), - [aux_sym_request_tty_token1] = ACTIONS(939), - [aux_sym_required_rsa_size_token1] = ACTIONS(939), - [aux_sym_revoked_host_keys_token1] = ACTIONS(939), - [aux_sym_security_key_provider_token1] = ACTIONS(939), - [aux_sym_send_env_token1] = ACTIONS(939), - [aux_sym_server_alive_count_max_token1] = ACTIONS(939), - [aux_sym_server_alive_interval_token1] = ACTIONS(939), - [aux_sym_session_type_token1] = ACTIONS(939), - [aux_sym_set_env_token1] = ACTIONS(939), - [aux_sym_stdin_null_token1] = ACTIONS(939), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(939), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(939), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(939), - [aux_sym_syslog_facility_token1] = ACTIONS(939), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(939), - [aux_sym_keep_alive_token1] = ACTIONS(939), - [aux_sym_tunnel_token1] = ACTIONS(941), - [aux_sym_tunnel_device_token1] = ACTIONS(939), - [aux_sym_update_host_keys_token1] = ACTIONS(939), - [aux_sym_use_keychain_token1] = ACTIONS(939), - [aux_sym_use_roaming_token1] = ACTIONS(939), - [aux_sym_user_token1] = ACTIONS(941), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(939), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(939), - [aux_sym_visual_host_key_token1] = ACTIONS(939), - [aux_sym_xauth_location_token1] = ACTIONS(939), + [ts_builtin_sym_end] = ACTIONS(3420), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3422), + [aux_sym_match_token1] = ACTIONS(3420), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3420), + [aux_sym_address_family_token1] = ACTIONS(3420), + [aux_sym_batch_mode_token1] = ACTIONS(3420), + [aux_sym_bind_address_token1] = ACTIONS(3420), + [aux_sym_bind_interface_token1] = ACTIONS(3420), + [aux_sym_canonical_domains_token1] = ACTIONS(3420), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3420), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3420), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3420), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3420), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3420), + [aux_sym_certificate_file_token1] = ACTIONS(3420), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3420), + [aux_sym_check_host_ip_token1] = ACTIONS(3420), + [aux_sym_ciphers_token1] = ACTIONS(3420), + [aux_sym_cipher_token1] = ACTIONS(3422), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3420), + [aux_sym_compression_token1] = ACTIONS(3420), + [aux_sym_connection_attempts_token1] = ACTIONS(3420), + [aux_sym_connect_timeout_token1] = ACTIONS(3420), + [aux_sym_control_master_token1] = ACTIONS(3420), + [aux_sym_control_path_token1] = ACTIONS(3420), + [aux_sym_control_persist_token1] = ACTIONS(3420), + [aux_sym_dynamic_forward_token1] = ACTIONS(3420), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3420), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3420), + [aux_sym_escape_char_token1] = ACTIONS(3420), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3420), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3420), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3420), + [aux_sym_forward_agent_token1] = ACTIONS(3420), + [aux_sym_forward_x11_token1] = ACTIONS(3422), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3420), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3420), + [aux_sym_gateway_ports_token1] = ACTIONS(3420), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3420), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3420), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3420), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3420), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3420), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3420), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3420), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3420), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3420), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3420), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3420), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3420), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3420), + [aux_sym_host_key_alias_token1] = ACTIONS(3420), + [aux_sym_hostname_token1] = ACTIONS(3420), + [aux_sym_identities_only_token1] = ACTIONS(3420), + [aux_sym_identity_agent_token1] = ACTIONS(3420), + [aux_sym_identity_file_token1] = ACTIONS(3420), + [aux_sym_ignore_unknown_token1] = ACTIONS(3420), + [aux_sym_include_token1] = ACTIONS(3420), + [aux_sym_ip_qos_token1] = ACTIONS(3420), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3420), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3420), + [aux_sym_kex_algorithms_token1] = ACTIONS(3420), + [aux_sym_known_hosts_command_token1] = ACTIONS(3420), + [aux_sym_local_command_token1] = ACTIONS(3420), + [aux_sym_local_forward_token1] = ACTIONS(3420), + [aux_sym_log_level_token1] = ACTIONS(3420), + [aux_sym_log_verbose_token1] = ACTIONS(3420), + [aux_sym_macs_token1] = ACTIONS(3420), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3420), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3420), + [aux_sym_password_authentication_token1] = ACTIONS(3420), + [aux_sym_permit_local_command_token1] = ACTIONS(3420), + [aux_sym_permit_remote_open_token1] = ACTIONS(3420), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3420), + [aux_sym_port_token1] = ACTIONS(3420), + [aux_sym_preferred_authentications_token1] = ACTIONS(3420), + [aux_sym_protocol_token1] = ACTIONS(3420), + [aux_sym_proxy_command_token1] = ACTIONS(3420), + [aux_sym_proxy_jump_token1] = ACTIONS(3420), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3420), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3420), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3420), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3420), + [aux_sym_rekey_limit_token1] = ACTIONS(3420), + [aux_sym_remote_command_token1] = ACTIONS(3420), + [aux_sym_remote_forward_token1] = ACTIONS(3420), + [aux_sym_request_tty_token1] = ACTIONS(3420), + [aux_sym_required_rsa_size_token1] = ACTIONS(3420), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3420), + [aux_sym_security_key_provider_token1] = ACTIONS(3420), + [aux_sym_send_env_token1] = ACTIONS(3420), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3420), + [aux_sym_server_alive_interval_token1] = ACTIONS(3420), + [aux_sym_session_type_token1] = ACTIONS(3420), + [aux_sym_set_env_token1] = ACTIONS(3420), + [aux_sym_stdin_null_token1] = ACTIONS(3420), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3420), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3420), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3420), + [aux_sym_syslog_facility_token1] = ACTIONS(3420), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3420), + [aux_sym_keep_alive_token1] = ACTIONS(3420), + [aux_sym_tunnel_token1] = ACTIONS(3422), + [aux_sym_tunnel_device_token1] = ACTIONS(3420), + [aux_sym_update_host_keys_token1] = ACTIONS(3420), + [aux_sym_use_keychain_token1] = ACTIONS(3420), + [aux_sym_use_roaming_token1] = ACTIONS(3420), + [aux_sym_user_token1] = ACTIONS(3422), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3420), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3420), + [aux_sym_visual_host_key_token1] = ACTIONS(3420), + [aux_sym_xauth_location_token1] = ACTIONS(3420), }, [629] = { - [ts_builtin_sym_end] = ACTIONS(945), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(947), - [aux_sym_match_token1] = ACTIONS(945), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(945), - [aux_sym_address_family_token1] = ACTIONS(945), - [aux_sym_batch_mode_token1] = ACTIONS(945), - [aux_sym_bind_address_token1] = ACTIONS(945), - [aux_sym_bind_interface_token1] = ACTIONS(945), - [aux_sym_canonical_domains_token1] = ACTIONS(945), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(945), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(945), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(945), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(945), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(945), - [aux_sym_certificate_file_token1] = ACTIONS(945), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(945), - [aux_sym_check_host_ip_token1] = ACTIONS(945), - [aux_sym_ciphers_token1] = ACTIONS(945), - [aux_sym_cipher_token1] = ACTIONS(947), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(945), - [aux_sym_compression_token1] = ACTIONS(945), - [aux_sym_connection_attempts_token1] = ACTIONS(945), - [aux_sym_connect_timeout_token1] = ACTIONS(945), - [aux_sym_control_master_token1] = ACTIONS(945), - [aux_sym_control_path_token1] = ACTIONS(945), - [aux_sym_control_persist_token1] = ACTIONS(945), - [aux_sym_dynamic_forward_token1] = ACTIONS(945), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(945), - [aux_sym_escape_char_token1] = ACTIONS(945), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(945), - [aux_sym_fingerprint_hash_token1] = ACTIONS(945), - [aux_sym_fork_after_authentication_token1] = ACTIONS(945), - [aux_sym_forward_agent_token1] = ACTIONS(945), - [aux_sym_forward_x11_token1] = ACTIONS(947), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(945), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(945), - [aux_sym_gateway_ports_token1] = ACTIONS(945), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(945), - [aux_sym_gssapi_authentication_token1] = ACTIONS(945), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(945), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(945), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(945), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(945), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(945), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(945), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(945), - [aux_sym_hash_known_hosts_token1] = ACTIONS(945), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(945), - [aux_sym_hostbased_authentication_token1] = ACTIONS(945), - [aux_sym_host_key_algorithms_token1] = ACTIONS(945), - [aux_sym_host_key_alias_token1] = ACTIONS(945), - [aux_sym_hostname_token1] = ACTIONS(945), - [aux_sym_identities_only_token1] = ACTIONS(945), - [aux_sym_identity_agent_token1] = ACTIONS(945), - [aux_sym_identity_file_token1] = ACTIONS(945), - [aux_sym_ignore_unknown_token1] = ACTIONS(945), - [aux_sym_include_token1] = ACTIONS(945), - [aux_sym_ip_qos_token1] = ACTIONS(945), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(945), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(945), - [aux_sym_kex_algorithms_token1] = ACTIONS(945), - [aux_sym_known_hosts_command_token1] = ACTIONS(945), - [aux_sym_local_command_token1] = ACTIONS(945), - [aux_sym_local_forward_token1] = ACTIONS(945), - [aux_sym_log_level_token1] = ACTIONS(945), - [aux_sym_log_verbose_token1] = ACTIONS(945), - [aux_sym_macs_token1] = ACTIONS(945), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(945), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(945), - [aux_sym_password_authentication_token1] = ACTIONS(945), - [aux_sym_permit_local_command_token1] = ACTIONS(945), - [aux_sym_permit_remote_open_token1] = ACTIONS(945), - [aux_sym_pkcs11_provider_token1] = ACTIONS(945), - [aux_sym_port_token1] = ACTIONS(945), - [aux_sym_preferred_authentications_token1] = ACTIONS(945), - [aux_sym_protocol_token1] = ACTIONS(945), - [aux_sym_proxy_command_token1] = ACTIONS(945), - [aux_sym_proxy_jump_token1] = ACTIONS(945), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(945), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(945), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(945), - [aux_sym_pubkey_authentication_token1] = ACTIONS(945), - [aux_sym_rekey_limit_token1] = ACTIONS(945), - [aux_sym_remote_command_token1] = ACTIONS(945), - [aux_sym_remote_forward_token1] = ACTIONS(945), - [aux_sym_request_tty_token1] = ACTIONS(945), - [aux_sym_required_rsa_size_token1] = ACTIONS(945), - [aux_sym_revoked_host_keys_token1] = ACTIONS(945), - [aux_sym_security_key_provider_token1] = ACTIONS(945), - [aux_sym_send_env_token1] = ACTIONS(945), - [aux_sym_server_alive_count_max_token1] = ACTIONS(945), - [aux_sym_server_alive_interval_token1] = ACTIONS(945), - [aux_sym_session_type_token1] = ACTIONS(945), - [aux_sym_set_env_token1] = ACTIONS(945), - [aux_sym_stdin_null_token1] = ACTIONS(945), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(945), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(945), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(945), - [aux_sym_syslog_facility_token1] = ACTIONS(945), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(945), - [aux_sym_keep_alive_token1] = ACTIONS(945), - [aux_sym_tunnel_token1] = ACTIONS(947), - [aux_sym_tunnel_device_token1] = ACTIONS(945), - [aux_sym_update_host_keys_token1] = ACTIONS(945), - [aux_sym_use_keychain_token1] = ACTIONS(945), - [aux_sym_use_roaming_token1] = ACTIONS(945), - [aux_sym_user_token1] = ACTIONS(947), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(945), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(945), - [aux_sym_visual_host_key_token1] = ACTIONS(945), - [aux_sym_xauth_location_token1] = ACTIONS(945), + [ts_builtin_sym_end] = ACTIONS(1394), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1396), + [aux_sym_match_token1] = ACTIONS(1394), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1394), + [aux_sym_address_family_token1] = ACTIONS(1394), + [aux_sym_batch_mode_token1] = ACTIONS(1394), + [aux_sym_bind_address_token1] = ACTIONS(1394), + [aux_sym_bind_interface_token1] = ACTIONS(1394), + [aux_sym_canonical_domains_token1] = ACTIONS(1394), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1394), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1394), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1394), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1394), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1394), + [aux_sym_certificate_file_token1] = ACTIONS(1394), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1394), + [aux_sym_check_host_ip_token1] = ACTIONS(1394), + [aux_sym_ciphers_token1] = ACTIONS(1394), + [aux_sym_cipher_token1] = ACTIONS(1396), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1394), + [aux_sym_compression_token1] = ACTIONS(1394), + [aux_sym_connection_attempts_token1] = ACTIONS(1394), + [aux_sym_connect_timeout_token1] = ACTIONS(1394), + [aux_sym_control_master_token1] = ACTIONS(1394), + [aux_sym_control_path_token1] = ACTIONS(1394), + [aux_sym_control_persist_token1] = ACTIONS(1394), + [aux_sym_dynamic_forward_token1] = ACTIONS(1394), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1394), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1394), + [aux_sym_escape_char_token1] = ACTIONS(1394), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1394), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1394), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1394), + [aux_sym_forward_agent_token1] = ACTIONS(1394), + [aux_sym_forward_x11_token1] = ACTIONS(1396), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1394), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1394), + [aux_sym_gateway_ports_token1] = ACTIONS(1394), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1394), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1394), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1394), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1394), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1394), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1394), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1394), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1394), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1394), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1394), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1394), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1394), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1394), + [aux_sym_host_key_alias_token1] = ACTIONS(1394), + [aux_sym_hostname_token1] = ACTIONS(1394), + [aux_sym_identities_only_token1] = ACTIONS(1394), + [aux_sym_identity_agent_token1] = ACTIONS(1394), + [aux_sym_identity_file_token1] = ACTIONS(1394), + [aux_sym_ignore_unknown_token1] = ACTIONS(1394), + [aux_sym_include_token1] = ACTIONS(1394), + [aux_sym_ip_qos_token1] = ACTIONS(1394), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1394), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1394), + [aux_sym_kex_algorithms_token1] = ACTIONS(1394), + [aux_sym_known_hosts_command_token1] = ACTIONS(1394), + [aux_sym_local_command_token1] = ACTIONS(1394), + [aux_sym_local_forward_token1] = ACTIONS(1394), + [aux_sym_log_level_token1] = ACTIONS(1394), + [aux_sym_log_verbose_token1] = ACTIONS(1394), + [aux_sym_macs_token1] = ACTIONS(1394), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1394), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1394), + [aux_sym_password_authentication_token1] = ACTIONS(1394), + [aux_sym_permit_local_command_token1] = ACTIONS(1394), + [aux_sym_permit_remote_open_token1] = ACTIONS(1394), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1394), + [aux_sym_port_token1] = ACTIONS(1394), + [aux_sym_preferred_authentications_token1] = ACTIONS(1394), + [aux_sym_protocol_token1] = ACTIONS(1394), + [aux_sym_proxy_command_token1] = ACTIONS(1394), + [aux_sym_proxy_jump_token1] = ACTIONS(1394), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1394), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1394), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1394), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1394), + [aux_sym_rekey_limit_token1] = ACTIONS(1394), + [aux_sym_remote_command_token1] = ACTIONS(1394), + [aux_sym_remote_forward_token1] = ACTIONS(1394), + [aux_sym_request_tty_token1] = ACTIONS(1394), + [aux_sym_required_rsa_size_token1] = ACTIONS(1394), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1394), + [aux_sym_security_key_provider_token1] = ACTIONS(1394), + [aux_sym_send_env_token1] = ACTIONS(1394), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1394), + [aux_sym_server_alive_interval_token1] = ACTIONS(1394), + [aux_sym_session_type_token1] = ACTIONS(1394), + [aux_sym_set_env_token1] = ACTIONS(1394), + [aux_sym_stdin_null_token1] = ACTIONS(1394), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1394), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1394), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1394), + [aux_sym_syslog_facility_token1] = ACTIONS(1394), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1394), + [aux_sym_keep_alive_token1] = ACTIONS(1394), + [aux_sym_tunnel_token1] = ACTIONS(1396), + [aux_sym_tunnel_device_token1] = ACTIONS(1394), + [aux_sym_update_host_keys_token1] = ACTIONS(1394), + [aux_sym_use_keychain_token1] = ACTIONS(1394), + [aux_sym_use_roaming_token1] = ACTIONS(1394), + [aux_sym_user_token1] = ACTIONS(1396), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1394), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1394), + [aux_sym_visual_host_key_token1] = ACTIONS(1394), + [aux_sym_xauth_location_token1] = ACTIONS(1394), }, [630] = { - [ts_builtin_sym_end] = ACTIONS(951), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(953), - [aux_sym_match_token1] = ACTIONS(951), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(951), - [aux_sym_address_family_token1] = ACTIONS(951), - [aux_sym_batch_mode_token1] = ACTIONS(951), - [aux_sym_bind_address_token1] = ACTIONS(951), - [aux_sym_bind_interface_token1] = ACTIONS(951), - [aux_sym_canonical_domains_token1] = ACTIONS(951), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(951), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(951), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(951), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(951), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(951), - [aux_sym_certificate_file_token1] = ACTIONS(951), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(951), - [aux_sym_check_host_ip_token1] = ACTIONS(951), - [aux_sym_ciphers_token1] = ACTIONS(951), - [aux_sym_cipher_token1] = ACTIONS(953), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(951), - [aux_sym_compression_token1] = ACTIONS(951), - [aux_sym_connection_attempts_token1] = ACTIONS(951), - [aux_sym_connect_timeout_token1] = ACTIONS(951), - [aux_sym_control_master_token1] = ACTIONS(951), - [aux_sym_control_path_token1] = ACTIONS(951), - [aux_sym_control_persist_token1] = ACTIONS(951), - [aux_sym_dynamic_forward_token1] = ACTIONS(951), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(951), - [aux_sym_escape_char_token1] = ACTIONS(951), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(951), - [aux_sym_fingerprint_hash_token1] = ACTIONS(951), - [aux_sym_fork_after_authentication_token1] = ACTIONS(951), - [aux_sym_forward_agent_token1] = ACTIONS(951), - [aux_sym_forward_x11_token1] = ACTIONS(953), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(951), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(951), - [aux_sym_gateway_ports_token1] = ACTIONS(951), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(951), - [aux_sym_gssapi_authentication_token1] = ACTIONS(951), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(951), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(951), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(951), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(951), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(951), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(951), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(951), - [aux_sym_hash_known_hosts_token1] = ACTIONS(951), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(951), - [aux_sym_hostbased_authentication_token1] = ACTIONS(951), - [aux_sym_host_key_algorithms_token1] = ACTIONS(951), - [aux_sym_host_key_alias_token1] = ACTIONS(951), - [aux_sym_hostname_token1] = ACTIONS(951), - [aux_sym_identities_only_token1] = ACTIONS(951), - [aux_sym_identity_agent_token1] = ACTIONS(951), - [aux_sym_identity_file_token1] = ACTIONS(951), - [aux_sym_ignore_unknown_token1] = ACTIONS(951), - [aux_sym_include_token1] = ACTIONS(951), - [aux_sym_ip_qos_token1] = ACTIONS(951), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(951), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(951), - [aux_sym_kex_algorithms_token1] = ACTIONS(951), - [aux_sym_known_hosts_command_token1] = ACTIONS(951), - [aux_sym_local_command_token1] = ACTIONS(951), - [aux_sym_local_forward_token1] = ACTIONS(951), - [aux_sym_log_level_token1] = ACTIONS(951), - [aux_sym_log_verbose_token1] = ACTIONS(951), - [aux_sym_macs_token1] = ACTIONS(951), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(951), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(951), - [aux_sym_password_authentication_token1] = ACTIONS(951), - [aux_sym_permit_local_command_token1] = ACTIONS(951), - [aux_sym_permit_remote_open_token1] = ACTIONS(951), - [aux_sym_pkcs11_provider_token1] = ACTIONS(951), - [aux_sym_port_token1] = ACTIONS(951), - [aux_sym_preferred_authentications_token1] = ACTIONS(951), - [aux_sym_protocol_token1] = ACTIONS(951), - [aux_sym_proxy_command_token1] = ACTIONS(951), - [aux_sym_proxy_jump_token1] = ACTIONS(951), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(951), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(951), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(951), - [aux_sym_pubkey_authentication_token1] = ACTIONS(951), - [aux_sym_rekey_limit_token1] = ACTIONS(951), - [aux_sym_remote_command_token1] = ACTIONS(951), - [aux_sym_remote_forward_token1] = ACTIONS(951), - [aux_sym_request_tty_token1] = ACTIONS(951), - [aux_sym_required_rsa_size_token1] = ACTIONS(951), - [aux_sym_revoked_host_keys_token1] = ACTIONS(951), - [aux_sym_security_key_provider_token1] = ACTIONS(951), - [aux_sym_send_env_token1] = ACTIONS(951), - [aux_sym_server_alive_count_max_token1] = ACTIONS(951), - [aux_sym_server_alive_interval_token1] = ACTIONS(951), - [aux_sym_session_type_token1] = ACTIONS(951), - [aux_sym_set_env_token1] = ACTIONS(951), - [aux_sym_stdin_null_token1] = ACTIONS(951), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(951), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(951), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(951), - [aux_sym_syslog_facility_token1] = ACTIONS(951), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(951), - [aux_sym_keep_alive_token1] = ACTIONS(951), - [aux_sym_tunnel_token1] = ACTIONS(953), - [aux_sym_tunnel_device_token1] = ACTIONS(951), - [aux_sym_update_host_keys_token1] = ACTIONS(951), - [aux_sym_use_keychain_token1] = ACTIONS(951), - [aux_sym_use_roaming_token1] = ACTIONS(951), - [aux_sym_user_token1] = ACTIONS(953), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(951), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(951), - [aux_sym_visual_host_key_token1] = ACTIONS(951), - [aux_sym_xauth_location_token1] = ACTIONS(951), + [ts_builtin_sym_end] = ACTIONS(926), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(928), + [aux_sym_match_token1] = ACTIONS(926), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(926), + [aux_sym_address_family_token1] = ACTIONS(926), + [aux_sym_batch_mode_token1] = ACTIONS(926), + [aux_sym_bind_address_token1] = ACTIONS(926), + [aux_sym_bind_interface_token1] = ACTIONS(926), + [aux_sym_canonical_domains_token1] = ACTIONS(926), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(926), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(926), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(926), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(926), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(926), + [aux_sym_certificate_file_token1] = ACTIONS(926), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(926), + [aux_sym_check_host_ip_token1] = ACTIONS(926), + [aux_sym_ciphers_token1] = ACTIONS(926), + [aux_sym_cipher_token1] = ACTIONS(928), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(926), + [aux_sym_compression_token1] = ACTIONS(926), + [aux_sym_connection_attempts_token1] = ACTIONS(926), + [aux_sym_connect_timeout_token1] = ACTIONS(926), + [aux_sym_control_master_token1] = ACTIONS(926), + [aux_sym_control_path_token1] = ACTIONS(926), + [aux_sym_control_persist_token1] = ACTIONS(926), + [aux_sym_dynamic_forward_token1] = ACTIONS(926), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(926), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(926), + [aux_sym_escape_char_token1] = ACTIONS(926), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(926), + [aux_sym_fingerprint_hash_token1] = ACTIONS(926), + [aux_sym_fork_after_authentication_token1] = ACTIONS(926), + [aux_sym_forward_agent_token1] = ACTIONS(926), + [aux_sym_forward_x11_token1] = ACTIONS(928), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(926), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(926), + [aux_sym_gateway_ports_token1] = ACTIONS(926), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(926), + [aux_sym_gssapi_authentication_token1] = ACTIONS(926), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(926), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(926), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(926), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(926), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(926), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(926), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(926), + [aux_sym_hash_known_hosts_token1] = ACTIONS(926), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(926), + [aux_sym_hostbased_authentication_token1] = ACTIONS(926), + [aux_sym_host_key_algorithms_token1] = ACTIONS(926), + [aux_sym_host_key_alias_token1] = ACTIONS(926), + [aux_sym_hostname_token1] = ACTIONS(926), + [aux_sym_identities_only_token1] = ACTIONS(926), + [aux_sym_identity_agent_token1] = ACTIONS(926), + [aux_sym_identity_file_token1] = ACTIONS(926), + [aux_sym_ignore_unknown_token1] = ACTIONS(926), + [aux_sym_include_token1] = ACTIONS(926), + [aux_sym_ip_qos_token1] = ACTIONS(926), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(926), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(926), + [aux_sym_kex_algorithms_token1] = ACTIONS(926), + [aux_sym_known_hosts_command_token1] = ACTIONS(926), + [aux_sym_local_command_token1] = ACTIONS(926), + [aux_sym_local_forward_token1] = ACTIONS(926), + [aux_sym_log_level_token1] = ACTIONS(926), + [aux_sym_log_verbose_token1] = ACTIONS(926), + [aux_sym_macs_token1] = ACTIONS(926), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(926), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(926), + [aux_sym_password_authentication_token1] = ACTIONS(926), + [aux_sym_permit_local_command_token1] = ACTIONS(926), + [aux_sym_permit_remote_open_token1] = ACTIONS(926), + [aux_sym_pkcs11_provider_token1] = ACTIONS(926), + [aux_sym_port_token1] = ACTIONS(926), + [aux_sym_preferred_authentications_token1] = ACTIONS(926), + [aux_sym_protocol_token1] = ACTIONS(926), + [aux_sym_proxy_command_token1] = ACTIONS(926), + [aux_sym_proxy_jump_token1] = ACTIONS(926), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(926), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(926), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(926), + [aux_sym_pubkey_authentication_token1] = ACTIONS(926), + [aux_sym_rekey_limit_token1] = ACTIONS(926), + [aux_sym_remote_command_token1] = ACTIONS(926), + [aux_sym_remote_forward_token1] = ACTIONS(926), + [aux_sym_request_tty_token1] = ACTIONS(926), + [aux_sym_required_rsa_size_token1] = ACTIONS(926), + [aux_sym_revoked_host_keys_token1] = ACTIONS(926), + [aux_sym_security_key_provider_token1] = ACTIONS(926), + [aux_sym_send_env_token1] = ACTIONS(926), + [aux_sym_server_alive_count_max_token1] = ACTIONS(926), + [aux_sym_server_alive_interval_token1] = ACTIONS(926), + [aux_sym_session_type_token1] = ACTIONS(926), + [aux_sym_set_env_token1] = ACTIONS(926), + [aux_sym_stdin_null_token1] = ACTIONS(926), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(926), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(926), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(926), + [aux_sym_syslog_facility_token1] = ACTIONS(926), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(926), + [aux_sym_keep_alive_token1] = ACTIONS(926), + [aux_sym_tunnel_token1] = ACTIONS(928), + [aux_sym_tunnel_device_token1] = ACTIONS(926), + [aux_sym_update_host_keys_token1] = ACTIONS(926), + [aux_sym_use_keychain_token1] = ACTIONS(926), + [aux_sym_use_roaming_token1] = ACTIONS(926), + [aux_sym_user_token1] = ACTIONS(928), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(926), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(926), + [aux_sym_visual_host_key_token1] = ACTIONS(926), + [aux_sym_xauth_location_token1] = ACTIONS(926), }, [631] = { - [ts_builtin_sym_end] = ACTIONS(957), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(959), - [aux_sym_match_token1] = ACTIONS(957), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(957), - [aux_sym_address_family_token1] = ACTIONS(957), - [aux_sym_batch_mode_token1] = ACTIONS(957), - [aux_sym_bind_address_token1] = ACTIONS(957), - [aux_sym_bind_interface_token1] = ACTIONS(957), - [aux_sym_canonical_domains_token1] = ACTIONS(957), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(957), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(957), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(957), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(957), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(957), - [aux_sym_certificate_file_token1] = ACTIONS(957), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(957), - [aux_sym_check_host_ip_token1] = ACTIONS(957), - [aux_sym_ciphers_token1] = ACTIONS(957), - [aux_sym_cipher_token1] = ACTIONS(959), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(957), - [aux_sym_compression_token1] = ACTIONS(957), - [aux_sym_connection_attempts_token1] = ACTIONS(957), - [aux_sym_connect_timeout_token1] = ACTIONS(957), - [aux_sym_control_master_token1] = ACTIONS(957), - [aux_sym_control_path_token1] = ACTIONS(957), - [aux_sym_control_persist_token1] = ACTIONS(957), - [aux_sym_dynamic_forward_token1] = ACTIONS(957), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(957), - [aux_sym_escape_char_token1] = ACTIONS(957), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(957), - [aux_sym_fingerprint_hash_token1] = ACTIONS(957), - [aux_sym_fork_after_authentication_token1] = ACTIONS(957), - [aux_sym_forward_agent_token1] = ACTIONS(957), - [aux_sym_forward_x11_token1] = ACTIONS(959), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(957), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(957), - [aux_sym_gateway_ports_token1] = ACTIONS(957), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(957), - [aux_sym_gssapi_authentication_token1] = ACTIONS(957), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(957), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(957), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(957), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(957), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(957), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(957), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(957), - [aux_sym_hash_known_hosts_token1] = ACTIONS(957), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(957), - [aux_sym_hostbased_authentication_token1] = ACTIONS(957), - [aux_sym_host_key_algorithms_token1] = ACTIONS(957), - [aux_sym_host_key_alias_token1] = ACTIONS(957), - [aux_sym_hostname_token1] = ACTIONS(957), - [aux_sym_identities_only_token1] = ACTIONS(957), - [aux_sym_identity_agent_token1] = ACTIONS(957), - [aux_sym_identity_file_token1] = ACTIONS(957), - [aux_sym_ignore_unknown_token1] = ACTIONS(957), - [aux_sym_include_token1] = ACTIONS(957), - [aux_sym_ip_qos_token1] = ACTIONS(957), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(957), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(957), - [aux_sym_kex_algorithms_token1] = ACTIONS(957), - [aux_sym_known_hosts_command_token1] = ACTIONS(957), - [aux_sym_local_command_token1] = ACTIONS(957), - [aux_sym_local_forward_token1] = ACTIONS(957), - [aux_sym_log_level_token1] = ACTIONS(957), - [aux_sym_log_verbose_token1] = ACTIONS(957), - [aux_sym_macs_token1] = ACTIONS(957), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(957), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(957), - [aux_sym_password_authentication_token1] = ACTIONS(957), - [aux_sym_permit_local_command_token1] = ACTIONS(957), - [aux_sym_permit_remote_open_token1] = ACTIONS(957), - [aux_sym_pkcs11_provider_token1] = ACTIONS(957), - [aux_sym_port_token1] = ACTIONS(957), - [aux_sym_preferred_authentications_token1] = ACTIONS(957), - [aux_sym_protocol_token1] = ACTIONS(957), - [aux_sym_proxy_command_token1] = ACTIONS(957), - [aux_sym_proxy_jump_token1] = ACTIONS(957), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(957), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(957), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(957), - [aux_sym_pubkey_authentication_token1] = ACTIONS(957), - [aux_sym_rekey_limit_token1] = ACTIONS(957), - [aux_sym_remote_command_token1] = ACTIONS(957), - [aux_sym_remote_forward_token1] = ACTIONS(957), - [aux_sym_request_tty_token1] = ACTIONS(957), - [aux_sym_required_rsa_size_token1] = ACTIONS(957), - [aux_sym_revoked_host_keys_token1] = ACTIONS(957), - [aux_sym_security_key_provider_token1] = ACTIONS(957), - [aux_sym_send_env_token1] = ACTIONS(957), - [aux_sym_server_alive_count_max_token1] = ACTIONS(957), - [aux_sym_server_alive_interval_token1] = ACTIONS(957), - [aux_sym_session_type_token1] = ACTIONS(957), - [aux_sym_set_env_token1] = ACTIONS(957), - [aux_sym_stdin_null_token1] = ACTIONS(957), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(957), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(957), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(957), - [aux_sym_syslog_facility_token1] = ACTIONS(957), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(957), - [aux_sym_keep_alive_token1] = ACTIONS(957), - [aux_sym_tunnel_token1] = ACTIONS(959), - [aux_sym_tunnel_device_token1] = ACTIONS(957), - [aux_sym_update_host_keys_token1] = ACTIONS(957), - [aux_sym_use_keychain_token1] = ACTIONS(957), - [aux_sym_use_roaming_token1] = ACTIONS(957), - [aux_sym_user_token1] = ACTIONS(959), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(957), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(957), - [aux_sym_visual_host_key_token1] = ACTIONS(957), - [aux_sym_xauth_location_token1] = ACTIONS(957), + [ts_builtin_sym_end] = ACTIONS(3424), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3426), + [aux_sym_match_token1] = ACTIONS(3424), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3424), + [aux_sym_address_family_token1] = ACTIONS(3424), + [aux_sym_batch_mode_token1] = ACTIONS(3424), + [aux_sym_bind_address_token1] = ACTIONS(3424), + [aux_sym_bind_interface_token1] = ACTIONS(3424), + [aux_sym_canonical_domains_token1] = ACTIONS(3424), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3424), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3424), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3424), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3424), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3424), + [aux_sym_certificate_file_token1] = ACTIONS(3424), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3424), + [aux_sym_check_host_ip_token1] = ACTIONS(3424), + [aux_sym_ciphers_token1] = ACTIONS(3424), + [aux_sym_cipher_token1] = ACTIONS(3426), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3424), + [aux_sym_compression_token1] = ACTIONS(3424), + [aux_sym_connection_attempts_token1] = ACTIONS(3424), + [aux_sym_connect_timeout_token1] = ACTIONS(3424), + [aux_sym_control_master_token1] = ACTIONS(3424), + [aux_sym_control_path_token1] = ACTIONS(3424), + [aux_sym_control_persist_token1] = ACTIONS(3424), + [aux_sym_dynamic_forward_token1] = ACTIONS(3424), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3424), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3424), + [aux_sym_escape_char_token1] = ACTIONS(3424), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3424), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3424), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3424), + [aux_sym_forward_agent_token1] = ACTIONS(3424), + [aux_sym_forward_x11_token1] = ACTIONS(3426), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3424), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3424), + [aux_sym_gateway_ports_token1] = ACTIONS(3424), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3424), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3424), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3424), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3424), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3424), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3424), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3424), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3424), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3424), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3424), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3424), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3424), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3424), + [aux_sym_host_key_alias_token1] = ACTIONS(3424), + [aux_sym_hostname_token1] = ACTIONS(3424), + [aux_sym_identities_only_token1] = ACTIONS(3424), + [aux_sym_identity_agent_token1] = ACTIONS(3424), + [aux_sym_identity_file_token1] = ACTIONS(3424), + [aux_sym_ignore_unknown_token1] = ACTIONS(3424), + [aux_sym_include_token1] = ACTIONS(3424), + [aux_sym_ip_qos_token1] = ACTIONS(3424), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3424), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3424), + [aux_sym_kex_algorithms_token1] = ACTIONS(3424), + [aux_sym_known_hosts_command_token1] = ACTIONS(3424), + [aux_sym_local_command_token1] = ACTIONS(3424), + [aux_sym_local_forward_token1] = ACTIONS(3424), + [aux_sym_log_level_token1] = ACTIONS(3424), + [aux_sym_log_verbose_token1] = ACTIONS(3424), + [aux_sym_macs_token1] = ACTIONS(3424), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3424), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3424), + [aux_sym_password_authentication_token1] = ACTIONS(3424), + [aux_sym_permit_local_command_token1] = ACTIONS(3424), + [aux_sym_permit_remote_open_token1] = ACTIONS(3424), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3424), + [aux_sym_port_token1] = ACTIONS(3424), + [aux_sym_preferred_authentications_token1] = ACTIONS(3424), + [aux_sym_protocol_token1] = ACTIONS(3424), + [aux_sym_proxy_command_token1] = ACTIONS(3424), + [aux_sym_proxy_jump_token1] = ACTIONS(3424), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3424), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3424), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3424), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3424), + [aux_sym_rekey_limit_token1] = ACTIONS(3424), + [aux_sym_remote_command_token1] = ACTIONS(3424), + [aux_sym_remote_forward_token1] = ACTIONS(3424), + [aux_sym_request_tty_token1] = ACTIONS(3424), + [aux_sym_required_rsa_size_token1] = ACTIONS(3424), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3424), + [aux_sym_security_key_provider_token1] = ACTIONS(3424), + [aux_sym_send_env_token1] = ACTIONS(3424), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3424), + [aux_sym_server_alive_interval_token1] = ACTIONS(3424), + [aux_sym_session_type_token1] = ACTIONS(3424), + [aux_sym_set_env_token1] = ACTIONS(3424), + [aux_sym_stdin_null_token1] = ACTIONS(3424), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3424), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3424), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3424), + [aux_sym_syslog_facility_token1] = ACTIONS(3424), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3424), + [aux_sym_keep_alive_token1] = ACTIONS(3424), + [aux_sym_tunnel_token1] = ACTIONS(3426), + [aux_sym_tunnel_device_token1] = ACTIONS(3424), + [aux_sym_update_host_keys_token1] = ACTIONS(3424), + [aux_sym_use_keychain_token1] = ACTIONS(3424), + [aux_sym_use_roaming_token1] = ACTIONS(3424), + [aux_sym_user_token1] = ACTIONS(3426), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3424), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3424), + [aux_sym_visual_host_key_token1] = ACTIONS(3424), + [aux_sym_xauth_location_token1] = ACTIONS(3424), }, [632] = { - [ts_builtin_sym_end] = ACTIONS(963), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(965), - [aux_sym_match_token1] = ACTIONS(963), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(963), - [aux_sym_address_family_token1] = ACTIONS(963), - [aux_sym_batch_mode_token1] = ACTIONS(963), - [aux_sym_bind_address_token1] = ACTIONS(963), - [aux_sym_bind_interface_token1] = ACTIONS(963), - [aux_sym_canonical_domains_token1] = ACTIONS(963), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(963), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(963), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(963), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(963), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(963), - [aux_sym_certificate_file_token1] = ACTIONS(963), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(963), - [aux_sym_check_host_ip_token1] = ACTIONS(963), - [aux_sym_ciphers_token1] = ACTIONS(963), - [aux_sym_cipher_token1] = ACTIONS(965), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(963), - [aux_sym_compression_token1] = ACTIONS(963), - [aux_sym_connection_attempts_token1] = ACTIONS(963), - [aux_sym_connect_timeout_token1] = ACTIONS(963), - [aux_sym_control_master_token1] = ACTIONS(963), - [aux_sym_control_path_token1] = ACTIONS(963), - [aux_sym_control_persist_token1] = ACTIONS(963), - [aux_sym_dynamic_forward_token1] = ACTIONS(963), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(963), - [aux_sym_escape_char_token1] = ACTIONS(963), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(963), - [aux_sym_fingerprint_hash_token1] = ACTIONS(963), - [aux_sym_fork_after_authentication_token1] = ACTIONS(963), - [aux_sym_forward_agent_token1] = ACTIONS(963), - [aux_sym_forward_x11_token1] = ACTIONS(965), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(963), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(963), - [aux_sym_gateway_ports_token1] = ACTIONS(963), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(963), - [aux_sym_gssapi_authentication_token1] = ACTIONS(963), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(963), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(963), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(963), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(963), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(963), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(963), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(963), - [aux_sym_hash_known_hosts_token1] = ACTIONS(963), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(963), - [aux_sym_hostbased_authentication_token1] = ACTIONS(963), - [aux_sym_host_key_algorithms_token1] = ACTIONS(963), - [aux_sym_host_key_alias_token1] = ACTIONS(963), - [aux_sym_hostname_token1] = ACTIONS(963), - [aux_sym_identities_only_token1] = ACTIONS(963), - [aux_sym_identity_agent_token1] = ACTIONS(963), - [aux_sym_identity_file_token1] = ACTIONS(963), - [aux_sym_ignore_unknown_token1] = ACTIONS(963), - [aux_sym_include_token1] = ACTIONS(963), - [aux_sym_ip_qos_token1] = ACTIONS(963), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(963), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(963), - [aux_sym_kex_algorithms_token1] = ACTIONS(963), - [aux_sym_known_hosts_command_token1] = ACTIONS(963), - [aux_sym_local_command_token1] = ACTIONS(963), - [aux_sym_local_forward_token1] = ACTIONS(963), - [aux_sym_log_level_token1] = ACTIONS(963), - [aux_sym_log_verbose_token1] = ACTIONS(963), - [aux_sym_macs_token1] = ACTIONS(963), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(963), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(963), - [aux_sym_password_authentication_token1] = ACTIONS(963), - [aux_sym_permit_local_command_token1] = ACTIONS(963), - [aux_sym_permit_remote_open_token1] = ACTIONS(963), - [aux_sym_pkcs11_provider_token1] = ACTIONS(963), - [aux_sym_port_token1] = ACTIONS(963), - [aux_sym_preferred_authentications_token1] = ACTIONS(963), - [aux_sym_protocol_token1] = ACTIONS(963), - [aux_sym_proxy_command_token1] = ACTIONS(963), - [aux_sym_proxy_jump_token1] = ACTIONS(963), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(963), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(963), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(963), - [aux_sym_pubkey_authentication_token1] = ACTIONS(963), - [aux_sym_rekey_limit_token1] = ACTIONS(963), - [aux_sym_remote_command_token1] = ACTIONS(963), - [aux_sym_remote_forward_token1] = ACTIONS(963), - [aux_sym_request_tty_token1] = ACTIONS(963), - [aux_sym_required_rsa_size_token1] = ACTIONS(963), - [aux_sym_revoked_host_keys_token1] = ACTIONS(963), - [aux_sym_security_key_provider_token1] = ACTIONS(963), - [aux_sym_send_env_token1] = ACTIONS(963), - [aux_sym_server_alive_count_max_token1] = ACTIONS(963), - [aux_sym_server_alive_interval_token1] = ACTIONS(963), - [aux_sym_session_type_token1] = ACTIONS(963), - [aux_sym_set_env_token1] = ACTIONS(963), - [aux_sym_stdin_null_token1] = ACTIONS(963), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(963), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(963), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(963), - [aux_sym_syslog_facility_token1] = ACTIONS(963), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(963), - [aux_sym_keep_alive_token1] = ACTIONS(963), - [aux_sym_tunnel_token1] = ACTIONS(965), - [aux_sym_tunnel_device_token1] = ACTIONS(963), - [aux_sym_update_host_keys_token1] = ACTIONS(963), - [aux_sym_use_keychain_token1] = ACTIONS(963), - [aux_sym_use_roaming_token1] = ACTIONS(963), - [aux_sym_user_token1] = ACTIONS(965), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(963), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(963), - [aux_sym_visual_host_key_token1] = ACTIONS(963), - [aux_sym_xauth_location_token1] = ACTIONS(963), + [ts_builtin_sym_end] = ACTIONS(3428), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3430), + [aux_sym_match_token1] = ACTIONS(3428), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3428), + [aux_sym_address_family_token1] = ACTIONS(3428), + [aux_sym_batch_mode_token1] = ACTIONS(3428), + [aux_sym_bind_address_token1] = ACTIONS(3428), + [aux_sym_bind_interface_token1] = ACTIONS(3428), + [aux_sym_canonical_domains_token1] = ACTIONS(3428), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3428), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3428), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3428), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3428), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3428), + [aux_sym_certificate_file_token1] = ACTIONS(3428), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3428), + [aux_sym_check_host_ip_token1] = ACTIONS(3428), + [aux_sym_ciphers_token1] = ACTIONS(3428), + [aux_sym_cipher_token1] = ACTIONS(3430), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3428), + [aux_sym_compression_token1] = ACTIONS(3428), + [aux_sym_connection_attempts_token1] = ACTIONS(3428), + [aux_sym_connect_timeout_token1] = ACTIONS(3428), + [aux_sym_control_master_token1] = ACTIONS(3428), + [aux_sym_control_path_token1] = ACTIONS(3428), + [aux_sym_control_persist_token1] = ACTIONS(3428), + [aux_sym_dynamic_forward_token1] = ACTIONS(3428), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3428), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3428), + [aux_sym_escape_char_token1] = ACTIONS(3428), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3428), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3428), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3428), + [aux_sym_forward_agent_token1] = ACTIONS(3428), + [aux_sym_forward_x11_token1] = ACTIONS(3430), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3428), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3428), + [aux_sym_gateway_ports_token1] = ACTIONS(3428), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3428), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3428), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3428), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3428), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3428), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3428), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3428), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3428), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3428), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3428), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3428), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3428), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3428), + [aux_sym_host_key_alias_token1] = ACTIONS(3428), + [aux_sym_hostname_token1] = ACTIONS(3428), + [aux_sym_identities_only_token1] = ACTIONS(3428), + [aux_sym_identity_agent_token1] = ACTIONS(3428), + [aux_sym_identity_file_token1] = ACTIONS(3428), + [aux_sym_ignore_unknown_token1] = ACTIONS(3428), + [aux_sym_include_token1] = ACTIONS(3428), + [aux_sym_ip_qos_token1] = ACTIONS(3428), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3428), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3428), + [aux_sym_kex_algorithms_token1] = ACTIONS(3428), + [aux_sym_known_hosts_command_token1] = ACTIONS(3428), + [aux_sym_local_command_token1] = ACTIONS(3428), + [aux_sym_local_forward_token1] = ACTIONS(3428), + [aux_sym_log_level_token1] = ACTIONS(3428), + [aux_sym_log_verbose_token1] = ACTIONS(3428), + [aux_sym_macs_token1] = ACTIONS(3428), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3428), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3428), + [aux_sym_password_authentication_token1] = ACTIONS(3428), + [aux_sym_permit_local_command_token1] = ACTIONS(3428), + [aux_sym_permit_remote_open_token1] = ACTIONS(3428), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3428), + [aux_sym_port_token1] = ACTIONS(3428), + [aux_sym_preferred_authentications_token1] = ACTIONS(3428), + [aux_sym_protocol_token1] = ACTIONS(3428), + [aux_sym_proxy_command_token1] = ACTIONS(3428), + [aux_sym_proxy_jump_token1] = ACTIONS(3428), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3428), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3428), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3428), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3428), + [aux_sym_rekey_limit_token1] = ACTIONS(3428), + [aux_sym_remote_command_token1] = ACTIONS(3428), + [aux_sym_remote_forward_token1] = ACTIONS(3428), + [aux_sym_request_tty_token1] = ACTIONS(3428), + [aux_sym_required_rsa_size_token1] = ACTIONS(3428), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3428), + [aux_sym_security_key_provider_token1] = ACTIONS(3428), + [aux_sym_send_env_token1] = ACTIONS(3428), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3428), + [aux_sym_server_alive_interval_token1] = ACTIONS(3428), + [aux_sym_session_type_token1] = ACTIONS(3428), + [aux_sym_set_env_token1] = ACTIONS(3428), + [aux_sym_stdin_null_token1] = ACTIONS(3428), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3428), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3428), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3428), + [aux_sym_syslog_facility_token1] = ACTIONS(3428), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3428), + [aux_sym_keep_alive_token1] = ACTIONS(3428), + [aux_sym_tunnel_token1] = ACTIONS(3430), + [aux_sym_tunnel_device_token1] = ACTIONS(3428), + [aux_sym_update_host_keys_token1] = ACTIONS(3428), + [aux_sym_use_keychain_token1] = ACTIONS(3428), + [aux_sym_use_roaming_token1] = ACTIONS(3428), + [aux_sym_user_token1] = ACTIONS(3430), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3428), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3428), + [aux_sym_visual_host_key_token1] = ACTIONS(3428), + [aux_sym_xauth_location_token1] = ACTIONS(3428), }, [633] = { - [ts_builtin_sym_end] = ACTIONS(969), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(971), - [aux_sym_match_token1] = ACTIONS(969), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(969), - [aux_sym_address_family_token1] = ACTIONS(969), - [aux_sym_batch_mode_token1] = ACTIONS(969), - [aux_sym_bind_address_token1] = ACTIONS(969), - [aux_sym_bind_interface_token1] = ACTIONS(969), - [aux_sym_canonical_domains_token1] = ACTIONS(969), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(969), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(969), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(969), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(969), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(969), - [aux_sym_certificate_file_token1] = ACTIONS(969), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(969), - [aux_sym_check_host_ip_token1] = ACTIONS(969), - [aux_sym_ciphers_token1] = ACTIONS(969), - [aux_sym_cipher_token1] = ACTIONS(971), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(969), - [aux_sym_compression_token1] = ACTIONS(969), - [aux_sym_connection_attempts_token1] = ACTIONS(969), - [aux_sym_connect_timeout_token1] = ACTIONS(969), - [aux_sym_control_master_token1] = ACTIONS(969), - [aux_sym_control_path_token1] = ACTIONS(969), - [aux_sym_control_persist_token1] = ACTIONS(969), - [aux_sym_dynamic_forward_token1] = ACTIONS(969), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(969), - [aux_sym_escape_char_token1] = ACTIONS(969), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(969), - [aux_sym_fingerprint_hash_token1] = ACTIONS(969), - [aux_sym_fork_after_authentication_token1] = ACTIONS(969), - [aux_sym_forward_agent_token1] = ACTIONS(969), - [aux_sym_forward_x11_token1] = ACTIONS(971), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(969), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(969), - [aux_sym_gateway_ports_token1] = ACTIONS(969), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(969), - [aux_sym_gssapi_authentication_token1] = ACTIONS(969), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(969), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(969), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(969), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(969), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(969), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(969), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(969), - [aux_sym_hash_known_hosts_token1] = ACTIONS(969), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(969), - [aux_sym_hostbased_authentication_token1] = ACTIONS(969), - [aux_sym_host_key_algorithms_token1] = ACTIONS(969), - [aux_sym_host_key_alias_token1] = ACTIONS(969), - [aux_sym_hostname_token1] = ACTIONS(969), - [aux_sym_identities_only_token1] = ACTIONS(969), - [aux_sym_identity_agent_token1] = ACTIONS(969), - [aux_sym_identity_file_token1] = ACTIONS(969), - [aux_sym_ignore_unknown_token1] = ACTIONS(969), - [aux_sym_include_token1] = ACTIONS(969), - [aux_sym_ip_qos_token1] = ACTIONS(969), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(969), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(969), - [aux_sym_kex_algorithms_token1] = ACTIONS(969), - [aux_sym_known_hosts_command_token1] = ACTIONS(969), - [aux_sym_local_command_token1] = ACTIONS(969), - [aux_sym_local_forward_token1] = ACTIONS(969), - [aux_sym_log_level_token1] = ACTIONS(969), - [aux_sym_log_verbose_token1] = ACTIONS(969), - [aux_sym_macs_token1] = ACTIONS(969), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(969), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(969), - [aux_sym_password_authentication_token1] = ACTIONS(969), - [aux_sym_permit_local_command_token1] = ACTIONS(969), - [aux_sym_permit_remote_open_token1] = ACTIONS(969), - [aux_sym_pkcs11_provider_token1] = ACTIONS(969), - [aux_sym_port_token1] = ACTIONS(969), - [aux_sym_preferred_authentications_token1] = ACTIONS(969), - [aux_sym_protocol_token1] = ACTIONS(969), - [aux_sym_proxy_command_token1] = ACTIONS(969), - [aux_sym_proxy_jump_token1] = ACTIONS(969), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(969), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(969), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(969), - [aux_sym_pubkey_authentication_token1] = ACTIONS(969), - [aux_sym_rekey_limit_token1] = ACTIONS(969), - [aux_sym_remote_command_token1] = ACTIONS(969), - [aux_sym_remote_forward_token1] = ACTIONS(969), - [aux_sym_request_tty_token1] = ACTIONS(969), - [aux_sym_required_rsa_size_token1] = ACTIONS(969), - [aux_sym_revoked_host_keys_token1] = ACTIONS(969), - [aux_sym_security_key_provider_token1] = ACTIONS(969), - [aux_sym_send_env_token1] = ACTIONS(969), - [aux_sym_server_alive_count_max_token1] = ACTIONS(969), - [aux_sym_server_alive_interval_token1] = ACTIONS(969), - [aux_sym_session_type_token1] = ACTIONS(969), - [aux_sym_set_env_token1] = ACTIONS(969), - [aux_sym_stdin_null_token1] = ACTIONS(969), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(969), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(969), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(969), - [aux_sym_syslog_facility_token1] = ACTIONS(969), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(969), - [aux_sym_keep_alive_token1] = ACTIONS(969), - [aux_sym_tunnel_token1] = ACTIONS(971), - [aux_sym_tunnel_device_token1] = ACTIONS(969), - [aux_sym_update_host_keys_token1] = ACTIONS(969), - [aux_sym_use_keychain_token1] = ACTIONS(969), - [aux_sym_use_roaming_token1] = ACTIONS(969), - [aux_sym_user_token1] = ACTIONS(971), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(969), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(969), - [aux_sym_visual_host_key_token1] = ACTIONS(969), - [aux_sym_xauth_location_token1] = ACTIONS(969), + [ts_builtin_sym_end] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1402), + [aux_sym_match_token1] = ACTIONS(1400), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1400), + [aux_sym_address_family_token1] = ACTIONS(1400), + [aux_sym_batch_mode_token1] = ACTIONS(1400), + [aux_sym_bind_address_token1] = ACTIONS(1400), + [aux_sym_bind_interface_token1] = ACTIONS(1400), + [aux_sym_canonical_domains_token1] = ACTIONS(1400), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1400), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1400), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1400), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1400), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1400), + [aux_sym_certificate_file_token1] = ACTIONS(1400), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1400), + [aux_sym_check_host_ip_token1] = ACTIONS(1400), + [aux_sym_ciphers_token1] = ACTIONS(1400), + [aux_sym_cipher_token1] = ACTIONS(1402), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1400), + [aux_sym_compression_token1] = ACTIONS(1400), + [aux_sym_connection_attempts_token1] = ACTIONS(1400), + [aux_sym_connect_timeout_token1] = ACTIONS(1400), + [aux_sym_control_master_token1] = ACTIONS(1400), + [aux_sym_control_path_token1] = ACTIONS(1400), + [aux_sym_control_persist_token1] = ACTIONS(1400), + [aux_sym_dynamic_forward_token1] = ACTIONS(1400), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1400), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1400), + [aux_sym_escape_char_token1] = ACTIONS(1400), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1400), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1400), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1400), + [aux_sym_forward_agent_token1] = ACTIONS(1400), + [aux_sym_forward_x11_token1] = ACTIONS(1402), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1400), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1400), + [aux_sym_gateway_ports_token1] = ACTIONS(1400), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1400), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1400), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1400), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1400), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1400), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1400), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1400), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1400), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1400), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1400), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1400), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1400), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1400), + [aux_sym_host_key_alias_token1] = ACTIONS(1400), + [aux_sym_hostname_token1] = ACTIONS(1400), + [aux_sym_identities_only_token1] = ACTIONS(1400), + [aux_sym_identity_agent_token1] = ACTIONS(1400), + [aux_sym_identity_file_token1] = ACTIONS(1400), + [aux_sym_ignore_unknown_token1] = ACTIONS(1400), + [aux_sym_include_token1] = ACTIONS(1400), + [aux_sym_ip_qos_token1] = ACTIONS(1400), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1400), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1400), + [aux_sym_kex_algorithms_token1] = ACTIONS(1400), + [aux_sym_known_hosts_command_token1] = ACTIONS(1400), + [aux_sym_local_command_token1] = ACTIONS(1400), + [aux_sym_local_forward_token1] = ACTIONS(1400), + [aux_sym_log_level_token1] = ACTIONS(1400), + [aux_sym_log_verbose_token1] = ACTIONS(1400), + [aux_sym_macs_token1] = ACTIONS(1400), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1400), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1400), + [aux_sym_password_authentication_token1] = ACTIONS(1400), + [aux_sym_permit_local_command_token1] = ACTIONS(1400), + [aux_sym_permit_remote_open_token1] = ACTIONS(1400), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1400), + [aux_sym_port_token1] = ACTIONS(1400), + [aux_sym_preferred_authentications_token1] = ACTIONS(1400), + [aux_sym_protocol_token1] = ACTIONS(1400), + [aux_sym_proxy_command_token1] = ACTIONS(1400), + [aux_sym_proxy_jump_token1] = ACTIONS(1400), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1400), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1400), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1400), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1400), + [aux_sym_rekey_limit_token1] = ACTIONS(1400), + [aux_sym_remote_command_token1] = ACTIONS(1400), + [aux_sym_remote_forward_token1] = ACTIONS(1400), + [aux_sym_request_tty_token1] = ACTIONS(1400), + [aux_sym_required_rsa_size_token1] = ACTIONS(1400), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1400), + [aux_sym_security_key_provider_token1] = ACTIONS(1400), + [aux_sym_send_env_token1] = ACTIONS(1400), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1400), + [aux_sym_server_alive_interval_token1] = ACTIONS(1400), + [aux_sym_session_type_token1] = ACTIONS(1400), + [aux_sym_set_env_token1] = ACTIONS(1400), + [aux_sym_stdin_null_token1] = ACTIONS(1400), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1400), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1400), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1400), + [aux_sym_syslog_facility_token1] = ACTIONS(1400), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1400), + [aux_sym_keep_alive_token1] = ACTIONS(1400), + [aux_sym_tunnel_token1] = ACTIONS(1402), + [aux_sym_tunnel_device_token1] = ACTIONS(1400), + [aux_sym_update_host_keys_token1] = ACTIONS(1400), + [aux_sym_use_keychain_token1] = ACTIONS(1400), + [aux_sym_use_roaming_token1] = ACTIONS(1400), + [aux_sym_user_token1] = ACTIONS(1402), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1400), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1400), + [aux_sym_visual_host_key_token1] = ACTIONS(1400), + [aux_sym_xauth_location_token1] = ACTIONS(1400), }, [634] = { - [ts_builtin_sym_end] = ACTIONS(975), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(977), - [aux_sym_match_token1] = ACTIONS(975), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(975), - [aux_sym_address_family_token1] = ACTIONS(975), - [aux_sym_batch_mode_token1] = ACTIONS(975), - [aux_sym_bind_address_token1] = ACTIONS(975), - [aux_sym_bind_interface_token1] = ACTIONS(975), - [aux_sym_canonical_domains_token1] = ACTIONS(975), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(975), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(975), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(975), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(975), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(975), - [aux_sym_certificate_file_token1] = ACTIONS(975), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(975), - [aux_sym_check_host_ip_token1] = ACTIONS(975), - [aux_sym_ciphers_token1] = ACTIONS(975), - [aux_sym_cipher_token1] = ACTIONS(977), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(975), - [aux_sym_compression_token1] = ACTIONS(975), - [aux_sym_connection_attempts_token1] = ACTIONS(975), - [aux_sym_connect_timeout_token1] = ACTIONS(975), - [aux_sym_control_master_token1] = ACTIONS(975), - [aux_sym_control_path_token1] = ACTIONS(975), - [aux_sym_control_persist_token1] = ACTIONS(975), - [aux_sym_dynamic_forward_token1] = ACTIONS(975), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(975), - [aux_sym_escape_char_token1] = ACTIONS(975), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(975), - [aux_sym_fingerprint_hash_token1] = ACTIONS(975), - [aux_sym_fork_after_authentication_token1] = ACTIONS(975), - [aux_sym_forward_agent_token1] = ACTIONS(975), - [aux_sym_forward_x11_token1] = ACTIONS(977), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(975), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(975), - [aux_sym_gateway_ports_token1] = ACTIONS(975), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(975), - [aux_sym_gssapi_authentication_token1] = ACTIONS(975), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(975), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(975), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(975), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(975), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(975), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(975), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(975), - [aux_sym_hash_known_hosts_token1] = ACTIONS(975), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(975), - [aux_sym_hostbased_authentication_token1] = ACTIONS(975), - [aux_sym_host_key_algorithms_token1] = ACTIONS(975), - [aux_sym_host_key_alias_token1] = ACTIONS(975), - [aux_sym_hostname_token1] = ACTIONS(975), - [aux_sym_identities_only_token1] = ACTIONS(975), - [aux_sym_identity_agent_token1] = ACTIONS(975), - [aux_sym_identity_file_token1] = ACTIONS(975), - [aux_sym_ignore_unknown_token1] = ACTIONS(975), - [aux_sym_include_token1] = ACTIONS(975), - [aux_sym_ip_qos_token1] = ACTIONS(975), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(975), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(975), - [aux_sym_kex_algorithms_token1] = ACTIONS(975), - [aux_sym_known_hosts_command_token1] = ACTIONS(975), - [aux_sym_local_command_token1] = ACTIONS(975), - [aux_sym_local_forward_token1] = ACTIONS(975), - [aux_sym_log_level_token1] = ACTIONS(975), - [aux_sym_log_verbose_token1] = ACTIONS(975), - [aux_sym_macs_token1] = ACTIONS(975), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(975), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(975), - [aux_sym_password_authentication_token1] = ACTIONS(975), - [aux_sym_permit_local_command_token1] = ACTIONS(975), - [aux_sym_permit_remote_open_token1] = ACTIONS(975), - [aux_sym_pkcs11_provider_token1] = ACTIONS(975), - [aux_sym_port_token1] = ACTIONS(975), - [aux_sym_preferred_authentications_token1] = ACTIONS(975), - [aux_sym_protocol_token1] = ACTIONS(975), - [aux_sym_proxy_command_token1] = ACTIONS(975), - [aux_sym_proxy_jump_token1] = ACTIONS(975), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(975), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(975), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(975), - [aux_sym_pubkey_authentication_token1] = ACTIONS(975), - [aux_sym_rekey_limit_token1] = ACTIONS(975), - [aux_sym_remote_command_token1] = ACTIONS(975), - [aux_sym_remote_forward_token1] = ACTIONS(975), - [aux_sym_request_tty_token1] = ACTIONS(975), - [aux_sym_required_rsa_size_token1] = ACTIONS(975), - [aux_sym_revoked_host_keys_token1] = ACTIONS(975), - [aux_sym_security_key_provider_token1] = ACTIONS(975), - [aux_sym_send_env_token1] = ACTIONS(975), - [aux_sym_server_alive_count_max_token1] = ACTIONS(975), - [aux_sym_server_alive_interval_token1] = ACTIONS(975), - [aux_sym_session_type_token1] = ACTIONS(975), - [aux_sym_set_env_token1] = ACTIONS(975), - [aux_sym_stdin_null_token1] = ACTIONS(975), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(975), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(975), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(975), - [aux_sym_syslog_facility_token1] = ACTIONS(975), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(975), - [aux_sym_keep_alive_token1] = ACTIONS(975), - [aux_sym_tunnel_token1] = ACTIONS(977), - [aux_sym_tunnel_device_token1] = ACTIONS(975), - [aux_sym_update_host_keys_token1] = ACTIONS(975), - [aux_sym_use_keychain_token1] = ACTIONS(975), - [aux_sym_use_roaming_token1] = ACTIONS(975), - [aux_sym_user_token1] = ACTIONS(977), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(975), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(975), - [aux_sym_visual_host_key_token1] = ACTIONS(975), - [aux_sym_xauth_location_token1] = ACTIONS(975), + [ts_builtin_sym_end] = ACTIONS(920), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(922), + [aux_sym_match_token1] = ACTIONS(920), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(920), + [aux_sym_address_family_token1] = ACTIONS(920), + [aux_sym_batch_mode_token1] = ACTIONS(920), + [aux_sym_bind_address_token1] = ACTIONS(920), + [aux_sym_bind_interface_token1] = ACTIONS(920), + [aux_sym_canonical_domains_token1] = ACTIONS(920), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(920), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(920), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(920), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(920), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(920), + [aux_sym_certificate_file_token1] = ACTIONS(920), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(920), + [aux_sym_check_host_ip_token1] = ACTIONS(920), + [aux_sym_ciphers_token1] = ACTIONS(920), + [aux_sym_cipher_token1] = ACTIONS(922), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(920), + [aux_sym_compression_token1] = ACTIONS(920), + [aux_sym_connection_attempts_token1] = ACTIONS(920), + [aux_sym_connect_timeout_token1] = ACTIONS(920), + [aux_sym_control_master_token1] = ACTIONS(920), + [aux_sym_control_path_token1] = ACTIONS(920), + [aux_sym_control_persist_token1] = ACTIONS(920), + [aux_sym_dynamic_forward_token1] = ACTIONS(920), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(920), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(920), + [aux_sym_escape_char_token1] = ACTIONS(920), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(920), + [aux_sym_fingerprint_hash_token1] = ACTIONS(920), + [aux_sym_fork_after_authentication_token1] = ACTIONS(920), + [aux_sym_forward_agent_token1] = ACTIONS(920), + [aux_sym_forward_x11_token1] = ACTIONS(922), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(920), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(920), + [aux_sym_gateway_ports_token1] = ACTIONS(920), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(920), + [aux_sym_gssapi_authentication_token1] = ACTIONS(920), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(920), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(920), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(920), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(920), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(920), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(920), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(920), + [aux_sym_hash_known_hosts_token1] = ACTIONS(920), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(920), + [aux_sym_hostbased_authentication_token1] = ACTIONS(920), + [aux_sym_host_key_algorithms_token1] = ACTIONS(920), + [aux_sym_host_key_alias_token1] = ACTIONS(920), + [aux_sym_hostname_token1] = ACTIONS(920), + [aux_sym_identities_only_token1] = ACTIONS(920), + [aux_sym_identity_agent_token1] = ACTIONS(920), + [aux_sym_identity_file_token1] = ACTIONS(920), + [aux_sym_ignore_unknown_token1] = ACTIONS(920), + [aux_sym_include_token1] = ACTIONS(920), + [aux_sym_ip_qos_token1] = ACTIONS(920), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(920), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(920), + [aux_sym_kex_algorithms_token1] = ACTIONS(920), + [aux_sym_known_hosts_command_token1] = ACTIONS(920), + [aux_sym_local_command_token1] = ACTIONS(920), + [aux_sym_local_forward_token1] = ACTIONS(920), + [aux_sym_log_level_token1] = ACTIONS(920), + [aux_sym_log_verbose_token1] = ACTIONS(920), + [aux_sym_macs_token1] = ACTIONS(920), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(920), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(920), + [aux_sym_password_authentication_token1] = ACTIONS(920), + [aux_sym_permit_local_command_token1] = ACTIONS(920), + [aux_sym_permit_remote_open_token1] = ACTIONS(920), + [aux_sym_pkcs11_provider_token1] = ACTIONS(920), + [aux_sym_port_token1] = ACTIONS(920), + [aux_sym_preferred_authentications_token1] = ACTIONS(920), + [aux_sym_protocol_token1] = ACTIONS(920), + [aux_sym_proxy_command_token1] = ACTIONS(920), + [aux_sym_proxy_jump_token1] = ACTIONS(920), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(920), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(920), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(920), + [aux_sym_pubkey_authentication_token1] = ACTIONS(920), + [aux_sym_rekey_limit_token1] = ACTIONS(920), + [aux_sym_remote_command_token1] = ACTIONS(920), + [aux_sym_remote_forward_token1] = ACTIONS(920), + [aux_sym_request_tty_token1] = ACTIONS(920), + [aux_sym_required_rsa_size_token1] = ACTIONS(920), + [aux_sym_revoked_host_keys_token1] = ACTIONS(920), + [aux_sym_security_key_provider_token1] = ACTIONS(920), + [aux_sym_send_env_token1] = ACTIONS(920), + [aux_sym_server_alive_count_max_token1] = ACTIONS(920), + [aux_sym_server_alive_interval_token1] = ACTIONS(920), + [aux_sym_session_type_token1] = ACTIONS(920), + [aux_sym_set_env_token1] = ACTIONS(920), + [aux_sym_stdin_null_token1] = ACTIONS(920), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(920), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(920), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(920), + [aux_sym_syslog_facility_token1] = ACTIONS(920), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(920), + [aux_sym_keep_alive_token1] = ACTIONS(920), + [aux_sym_tunnel_token1] = ACTIONS(922), + [aux_sym_tunnel_device_token1] = ACTIONS(920), + [aux_sym_update_host_keys_token1] = ACTIONS(920), + [aux_sym_use_keychain_token1] = ACTIONS(920), + [aux_sym_use_roaming_token1] = ACTIONS(920), + [aux_sym_user_token1] = ACTIONS(922), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(920), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(920), + [aux_sym_visual_host_key_token1] = ACTIONS(920), + [aux_sym_xauth_location_token1] = ACTIONS(920), }, [635] = { - [ts_builtin_sym_end] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(983), - [aux_sym_match_token1] = ACTIONS(981), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(981), - [aux_sym_address_family_token1] = ACTIONS(981), - [aux_sym_batch_mode_token1] = ACTIONS(981), - [aux_sym_bind_address_token1] = ACTIONS(981), - [aux_sym_bind_interface_token1] = ACTIONS(981), - [aux_sym_canonical_domains_token1] = ACTIONS(981), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(981), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(981), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(981), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(981), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(981), - [aux_sym_certificate_file_token1] = ACTIONS(981), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(981), - [aux_sym_check_host_ip_token1] = ACTIONS(981), - [aux_sym_ciphers_token1] = ACTIONS(981), - [aux_sym_cipher_token1] = ACTIONS(983), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(981), - [aux_sym_compression_token1] = ACTIONS(981), - [aux_sym_connection_attempts_token1] = ACTIONS(981), - [aux_sym_connect_timeout_token1] = ACTIONS(981), - [aux_sym_control_master_token1] = ACTIONS(981), - [aux_sym_control_path_token1] = ACTIONS(981), - [aux_sym_control_persist_token1] = ACTIONS(981), - [aux_sym_dynamic_forward_token1] = ACTIONS(981), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(981), - [aux_sym_escape_char_token1] = ACTIONS(981), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(981), - [aux_sym_fingerprint_hash_token1] = ACTIONS(981), - [aux_sym_fork_after_authentication_token1] = ACTIONS(981), - [aux_sym_forward_agent_token1] = ACTIONS(981), - [aux_sym_forward_x11_token1] = ACTIONS(983), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(981), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(981), - [aux_sym_gateway_ports_token1] = ACTIONS(981), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(981), - [aux_sym_gssapi_authentication_token1] = ACTIONS(981), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(981), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(981), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(981), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(981), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(981), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(981), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(981), - [aux_sym_hash_known_hosts_token1] = ACTIONS(981), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(981), - [aux_sym_hostbased_authentication_token1] = ACTIONS(981), - [aux_sym_host_key_algorithms_token1] = ACTIONS(981), - [aux_sym_host_key_alias_token1] = ACTIONS(981), - [aux_sym_hostname_token1] = ACTIONS(981), - [aux_sym_identities_only_token1] = ACTIONS(981), - [aux_sym_identity_agent_token1] = ACTIONS(981), - [aux_sym_identity_file_token1] = ACTIONS(981), - [aux_sym_ignore_unknown_token1] = ACTIONS(981), - [aux_sym_include_token1] = ACTIONS(981), - [aux_sym_ip_qos_token1] = ACTIONS(981), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(981), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(981), - [aux_sym_kex_algorithms_token1] = ACTIONS(981), - [aux_sym_known_hosts_command_token1] = ACTIONS(981), - [aux_sym_local_command_token1] = ACTIONS(981), - [aux_sym_local_forward_token1] = ACTIONS(981), - [aux_sym_log_level_token1] = ACTIONS(981), - [aux_sym_log_verbose_token1] = ACTIONS(981), - [aux_sym_macs_token1] = ACTIONS(981), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(981), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(981), - [aux_sym_password_authentication_token1] = ACTIONS(981), - [aux_sym_permit_local_command_token1] = ACTIONS(981), - [aux_sym_permit_remote_open_token1] = ACTIONS(981), - [aux_sym_pkcs11_provider_token1] = ACTIONS(981), - [aux_sym_port_token1] = ACTIONS(981), - [aux_sym_preferred_authentications_token1] = ACTIONS(981), - [aux_sym_protocol_token1] = ACTIONS(981), - [aux_sym_proxy_command_token1] = ACTIONS(981), - [aux_sym_proxy_jump_token1] = ACTIONS(981), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(981), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(981), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(981), - [aux_sym_pubkey_authentication_token1] = ACTIONS(981), - [aux_sym_rekey_limit_token1] = ACTIONS(981), - [aux_sym_remote_command_token1] = ACTIONS(981), - [aux_sym_remote_forward_token1] = ACTIONS(981), - [aux_sym_request_tty_token1] = ACTIONS(981), - [aux_sym_required_rsa_size_token1] = ACTIONS(981), - [aux_sym_revoked_host_keys_token1] = ACTIONS(981), - [aux_sym_security_key_provider_token1] = ACTIONS(981), - [aux_sym_send_env_token1] = ACTIONS(981), - [aux_sym_server_alive_count_max_token1] = ACTIONS(981), - [aux_sym_server_alive_interval_token1] = ACTIONS(981), - [aux_sym_session_type_token1] = ACTIONS(981), - [aux_sym_set_env_token1] = ACTIONS(981), - [aux_sym_stdin_null_token1] = ACTIONS(981), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(981), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(981), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(981), - [aux_sym_syslog_facility_token1] = ACTIONS(981), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(981), - [aux_sym_keep_alive_token1] = ACTIONS(981), - [aux_sym_tunnel_token1] = ACTIONS(983), - [aux_sym_tunnel_device_token1] = ACTIONS(981), - [aux_sym_update_host_keys_token1] = ACTIONS(981), - [aux_sym_use_keychain_token1] = ACTIONS(981), - [aux_sym_use_roaming_token1] = ACTIONS(981), - [aux_sym_user_token1] = ACTIONS(983), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(981), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(981), - [aux_sym_visual_host_key_token1] = ACTIONS(981), - [aux_sym_xauth_location_token1] = ACTIONS(981), + [ts_builtin_sym_end] = ACTIONS(3432), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3434), + [aux_sym_match_token1] = ACTIONS(3432), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3432), + [aux_sym_address_family_token1] = ACTIONS(3432), + [aux_sym_batch_mode_token1] = ACTIONS(3432), + [aux_sym_bind_address_token1] = ACTIONS(3432), + [aux_sym_bind_interface_token1] = ACTIONS(3432), + [aux_sym_canonical_domains_token1] = ACTIONS(3432), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3432), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3432), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3432), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3432), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3432), + [aux_sym_certificate_file_token1] = ACTIONS(3432), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3432), + [aux_sym_check_host_ip_token1] = ACTIONS(3432), + [aux_sym_ciphers_token1] = ACTIONS(3432), + [aux_sym_cipher_token1] = ACTIONS(3434), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3432), + [aux_sym_compression_token1] = ACTIONS(3432), + [aux_sym_connection_attempts_token1] = ACTIONS(3432), + [aux_sym_connect_timeout_token1] = ACTIONS(3432), + [aux_sym_control_master_token1] = ACTIONS(3432), + [aux_sym_control_path_token1] = ACTIONS(3432), + [aux_sym_control_persist_token1] = ACTIONS(3432), + [aux_sym_dynamic_forward_token1] = ACTIONS(3432), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3432), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3432), + [aux_sym_escape_char_token1] = ACTIONS(3432), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3432), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3432), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3432), + [aux_sym_forward_agent_token1] = ACTIONS(3432), + [aux_sym_forward_x11_token1] = ACTIONS(3434), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3432), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3432), + [aux_sym_gateway_ports_token1] = ACTIONS(3432), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3432), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3432), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3432), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3432), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3432), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3432), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3432), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3432), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3432), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3432), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3432), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3432), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3432), + [aux_sym_host_key_alias_token1] = ACTIONS(3432), + [aux_sym_hostname_token1] = ACTIONS(3432), + [aux_sym_identities_only_token1] = ACTIONS(3432), + [aux_sym_identity_agent_token1] = ACTIONS(3432), + [aux_sym_identity_file_token1] = ACTIONS(3432), + [aux_sym_ignore_unknown_token1] = ACTIONS(3432), + [aux_sym_include_token1] = ACTIONS(3432), + [aux_sym_ip_qos_token1] = ACTIONS(3432), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3432), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3432), + [aux_sym_kex_algorithms_token1] = ACTIONS(3432), + [aux_sym_known_hosts_command_token1] = ACTIONS(3432), + [aux_sym_local_command_token1] = ACTIONS(3432), + [aux_sym_local_forward_token1] = ACTIONS(3432), + [aux_sym_log_level_token1] = ACTIONS(3432), + [aux_sym_log_verbose_token1] = ACTIONS(3432), + [aux_sym_macs_token1] = ACTIONS(3432), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3432), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3432), + [aux_sym_password_authentication_token1] = ACTIONS(3432), + [aux_sym_permit_local_command_token1] = ACTIONS(3432), + [aux_sym_permit_remote_open_token1] = ACTIONS(3432), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3432), + [aux_sym_port_token1] = ACTIONS(3432), + [aux_sym_preferred_authentications_token1] = ACTIONS(3432), + [aux_sym_protocol_token1] = ACTIONS(3432), + [aux_sym_proxy_command_token1] = ACTIONS(3432), + [aux_sym_proxy_jump_token1] = ACTIONS(3432), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3432), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3432), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3432), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3432), + [aux_sym_rekey_limit_token1] = ACTIONS(3432), + [aux_sym_remote_command_token1] = ACTIONS(3432), + [aux_sym_remote_forward_token1] = ACTIONS(3432), + [aux_sym_request_tty_token1] = ACTIONS(3432), + [aux_sym_required_rsa_size_token1] = ACTIONS(3432), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3432), + [aux_sym_security_key_provider_token1] = ACTIONS(3432), + [aux_sym_send_env_token1] = ACTIONS(3432), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3432), + [aux_sym_server_alive_interval_token1] = ACTIONS(3432), + [aux_sym_session_type_token1] = ACTIONS(3432), + [aux_sym_set_env_token1] = ACTIONS(3432), + [aux_sym_stdin_null_token1] = ACTIONS(3432), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3432), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3432), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3432), + [aux_sym_syslog_facility_token1] = ACTIONS(3432), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3432), + [aux_sym_keep_alive_token1] = ACTIONS(3432), + [aux_sym_tunnel_token1] = ACTIONS(3434), + [aux_sym_tunnel_device_token1] = ACTIONS(3432), + [aux_sym_update_host_keys_token1] = ACTIONS(3432), + [aux_sym_use_keychain_token1] = ACTIONS(3432), + [aux_sym_use_roaming_token1] = ACTIONS(3432), + [aux_sym_user_token1] = ACTIONS(3434), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3432), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3432), + [aux_sym_visual_host_key_token1] = ACTIONS(3432), + [aux_sym_xauth_location_token1] = ACTIONS(3432), }, [636] = { - [ts_builtin_sym_end] = ACTIONS(987), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(989), - [aux_sym_match_token1] = ACTIONS(987), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(987), - [aux_sym_address_family_token1] = ACTIONS(987), - [aux_sym_batch_mode_token1] = ACTIONS(987), - [aux_sym_bind_address_token1] = ACTIONS(987), - [aux_sym_bind_interface_token1] = ACTIONS(987), - [aux_sym_canonical_domains_token1] = ACTIONS(987), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(987), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(987), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(987), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(987), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(987), - [aux_sym_certificate_file_token1] = ACTIONS(987), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(987), - [aux_sym_check_host_ip_token1] = ACTIONS(987), - [aux_sym_ciphers_token1] = ACTIONS(987), - [aux_sym_cipher_token1] = ACTIONS(989), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(987), - [aux_sym_compression_token1] = ACTIONS(987), - [aux_sym_connection_attempts_token1] = ACTIONS(987), - [aux_sym_connect_timeout_token1] = ACTIONS(987), - [aux_sym_control_master_token1] = ACTIONS(987), - [aux_sym_control_path_token1] = ACTIONS(987), - [aux_sym_control_persist_token1] = ACTIONS(987), - [aux_sym_dynamic_forward_token1] = ACTIONS(987), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(987), - [aux_sym_escape_char_token1] = ACTIONS(987), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(987), - [aux_sym_fingerprint_hash_token1] = ACTIONS(987), - [aux_sym_fork_after_authentication_token1] = ACTIONS(987), - [aux_sym_forward_agent_token1] = ACTIONS(987), - [aux_sym_forward_x11_token1] = ACTIONS(989), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(987), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(987), - [aux_sym_gateway_ports_token1] = ACTIONS(987), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(987), - [aux_sym_gssapi_authentication_token1] = ACTIONS(987), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(987), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(987), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(987), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(987), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(987), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(987), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(987), - [aux_sym_hash_known_hosts_token1] = ACTIONS(987), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(987), - [aux_sym_hostbased_authentication_token1] = ACTIONS(987), - [aux_sym_host_key_algorithms_token1] = ACTIONS(987), - [aux_sym_host_key_alias_token1] = ACTIONS(987), - [aux_sym_hostname_token1] = ACTIONS(987), - [aux_sym_identities_only_token1] = ACTIONS(987), - [aux_sym_identity_agent_token1] = ACTIONS(987), - [aux_sym_identity_file_token1] = ACTIONS(987), - [aux_sym_ignore_unknown_token1] = ACTIONS(987), - [aux_sym_include_token1] = ACTIONS(987), - [aux_sym_ip_qos_token1] = ACTIONS(987), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(987), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(987), - [aux_sym_kex_algorithms_token1] = ACTIONS(987), - [aux_sym_known_hosts_command_token1] = ACTIONS(987), - [aux_sym_local_command_token1] = ACTIONS(987), - [aux_sym_local_forward_token1] = ACTIONS(987), - [aux_sym_log_level_token1] = ACTIONS(987), - [aux_sym_log_verbose_token1] = ACTIONS(987), - [aux_sym_macs_token1] = ACTIONS(987), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(987), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(987), - [aux_sym_password_authentication_token1] = ACTIONS(987), - [aux_sym_permit_local_command_token1] = ACTIONS(987), - [aux_sym_permit_remote_open_token1] = ACTIONS(987), - [aux_sym_pkcs11_provider_token1] = ACTIONS(987), - [aux_sym_port_token1] = ACTIONS(987), - [aux_sym_preferred_authentications_token1] = ACTIONS(987), - [aux_sym_protocol_token1] = ACTIONS(987), - [aux_sym_proxy_command_token1] = ACTIONS(987), - [aux_sym_proxy_jump_token1] = ACTIONS(987), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(987), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(987), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(987), - [aux_sym_pubkey_authentication_token1] = ACTIONS(987), - [aux_sym_rekey_limit_token1] = ACTIONS(987), - [aux_sym_remote_command_token1] = ACTIONS(987), - [aux_sym_remote_forward_token1] = ACTIONS(987), - [aux_sym_request_tty_token1] = ACTIONS(987), - [aux_sym_required_rsa_size_token1] = ACTIONS(987), - [aux_sym_revoked_host_keys_token1] = ACTIONS(987), - [aux_sym_security_key_provider_token1] = ACTIONS(987), - [aux_sym_send_env_token1] = ACTIONS(987), - [aux_sym_server_alive_count_max_token1] = ACTIONS(987), - [aux_sym_server_alive_interval_token1] = ACTIONS(987), - [aux_sym_session_type_token1] = ACTIONS(987), - [aux_sym_set_env_token1] = ACTIONS(987), - [aux_sym_stdin_null_token1] = ACTIONS(987), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(987), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(987), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(987), - [aux_sym_syslog_facility_token1] = ACTIONS(987), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(987), - [aux_sym_keep_alive_token1] = ACTIONS(987), - [aux_sym_tunnel_token1] = ACTIONS(989), - [aux_sym_tunnel_device_token1] = ACTIONS(987), - [aux_sym_update_host_keys_token1] = ACTIONS(987), - [aux_sym_use_keychain_token1] = ACTIONS(987), - [aux_sym_use_roaming_token1] = ACTIONS(987), - [aux_sym_user_token1] = ACTIONS(989), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(987), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(987), - [aux_sym_visual_host_key_token1] = ACTIONS(987), - [aux_sym_xauth_location_token1] = ACTIONS(987), + [ts_builtin_sym_end] = ACTIONS(1406), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1408), + [aux_sym_match_token1] = ACTIONS(1406), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1406), + [aux_sym_address_family_token1] = ACTIONS(1406), + [aux_sym_batch_mode_token1] = ACTIONS(1406), + [aux_sym_bind_address_token1] = ACTIONS(1406), + [aux_sym_bind_interface_token1] = ACTIONS(1406), + [aux_sym_canonical_domains_token1] = ACTIONS(1406), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1406), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1406), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1406), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1406), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1406), + [aux_sym_certificate_file_token1] = ACTIONS(1406), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1406), + [aux_sym_check_host_ip_token1] = ACTIONS(1406), + [aux_sym_ciphers_token1] = ACTIONS(1406), + [aux_sym_cipher_token1] = ACTIONS(1408), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1406), + [aux_sym_compression_token1] = ACTIONS(1406), + [aux_sym_connection_attempts_token1] = ACTIONS(1406), + [aux_sym_connect_timeout_token1] = ACTIONS(1406), + [aux_sym_control_master_token1] = ACTIONS(1406), + [aux_sym_control_path_token1] = ACTIONS(1406), + [aux_sym_control_persist_token1] = ACTIONS(1406), + [aux_sym_dynamic_forward_token1] = ACTIONS(1406), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1406), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1406), + [aux_sym_escape_char_token1] = ACTIONS(1406), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1406), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1406), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1406), + [aux_sym_forward_agent_token1] = ACTIONS(1406), + [aux_sym_forward_x11_token1] = ACTIONS(1408), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1406), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1406), + [aux_sym_gateway_ports_token1] = ACTIONS(1406), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1406), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1406), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1406), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1406), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1406), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1406), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1406), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1406), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1406), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1406), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1406), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1406), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1406), + [aux_sym_host_key_alias_token1] = ACTIONS(1406), + [aux_sym_hostname_token1] = ACTIONS(1406), + [aux_sym_identities_only_token1] = ACTIONS(1406), + [aux_sym_identity_agent_token1] = ACTIONS(1406), + [aux_sym_identity_file_token1] = ACTIONS(1406), + [aux_sym_ignore_unknown_token1] = ACTIONS(1406), + [aux_sym_include_token1] = ACTIONS(1406), + [aux_sym_ip_qos_token1] = ACTIONS(1406), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1406), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1406), + [aux_sym_kex_algorithms_token1] = ACTIONS(1406), + [aux_sym_known_hosts_command_token1] = ACTIONS(1406), + [aux_sym_local_command_token1] = ACTIONS(1406), + [aux_sym_local_forward_token1] = ACTIONS(1406), + [aux_sym_log_level_token1] = ACTIONS(1406), + [aux_sym_log_verbose_token1] = ACTIONS(1406), + [aux_sym_macs_token1] = ACTIONS(1406), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1406), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1406), + [aux_sym_password_authentication_token1] = ACTIONS(1406), + [aux_sym_permit_local_command_token1] = ACTIONS(1406), + [aux_sym_permit_remote_open_token1] = ACTIONS(1406), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1406), + [aux_sym_port_token1] = ACTIONS(1406), + [aux_sym_preferred_authentications_token1] = ACTIONS(1406), + [aux_sym_protocol_token1] = ACTIONS(1406), + [aux_sym_proxy_command_token1] = ACTIONS(1406), + [aux_sym_proxy_jump_token1] = ACTIONS(1406), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1406), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1406), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1406), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1406), + [aux_sym_rekey_limit_token1] = ACTIONS(1406), + [aux_sym_remote_command_token1] = ACTIONS(1406), + [aux_sym_remote_forward_token1] = ACTIONS(1406), + [aux_sym_request_tty_token1] = ACTIONS(1406), + [aux_sym_required_rsa_size_token1] = ACTIONS(1406), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1406), + [aux_sym_security_key_provider_token1] = ACTIONS(1406), + [aux_sym_send_env_token1] = ACTIONS(1406), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1406), + [aux_sym_server_alive_interval_token1] = ACTIONS(1406), + [aux_sym_session_type_token1] = ACTIONS(1406), + [aux_sym_set_env_token1] = ACTIONS(1406), + [aux_sym_stdin_null_token1] = ACTIONS(1406), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1406), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1406), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1406), + [aux_sym_syslog_facility_token1] = ACTIONS(1406), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1406), + [aux_sym_keep_alive_token1] = ACTIONS(1406), + [aux_sym_tunnel_token1] = ACTIONS(1408), + [aux_sym_tunnel_device_token1] = ACTIONS(1406), + [aux_sym_update_host_keys_token1] = ACTIONS(1406), + [aux_sym_use_keychain_token1] = ACTIONS(1406), + [aux_sym_use_roaming_token1] = ACTIONS(1406), + [aux_sym_user_token1] = ACTIONS(1408), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1406), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1406), + [aux_sym_visual_host_key_token1] = ACTIONS(1406), + [aux_sym_xauth_location_token1] = ACTIONS(1406), }, [637] = { - [ts_builtin_sym_end] = ACTIONS(993), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(995), - [aux_sym_match_token1] = ACTIONS(993), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(993), - [aux_sym_address_family_token1] = ACTIONS(993), - [aux_sym_batch_mode_token1] = ACTIONS(993), - [aux_sym_bind_address_token1] = ACTIONS(993), - [aux_sym_bind_interface_token1] = ACTIONS(993), - [aux_sym_canonical_domains_token1] = ACTIONS(993), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(993), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(993), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(993), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(993), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(993), - [aux_sym_certificate_file_token1] = ACTIONS(993), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(993), - [aux_sym_check_host_ip_token1] = ACTIONS(993), - [aux_sym_ciphers_token1] = ACTIONS(993), - [aux_sym_cipher_token1] = ACTIONS(995), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(993), - [aux_sym_compression_token1] = ACTIONS(993), - [aux_sym_connection_attempts_token1] = ACTIONS(993), - [aux_sym_connect_timeout_token1] = ACTIONS(993), - [aux_sym_control_master_token1] = ACTIONS(993), - [aux_sym_control_path_token1] = ACTIONS(993), - [aux_sym_control_persist_token1] = ACTIONS(993), - [aux_sym_dynamic_forward_token1] = ACTIONS(993), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(993), - [aux_sym_escape_char_token1] = ACTIONS(993), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(993), - [aux_sym_fingerprint_hash_token1] = ACTIONS(993), - [aux_sym_fork_after_authentication_token1] = ACTIONS(993), - [aux_sym_forward_agent_token1] = ACTIONS(993), - [aux_sym_forward_x11_token1] = ACTIONS(995), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(993), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(993), - [aux_sym_gateway_ports_token1] = ACTIONS(993), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(993), - [aux_sym_gssapi_authentication_token1] = ACTIONS(993), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(993), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(993), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(993), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(993), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(993), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(993), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(993), - [aux_sym_hash_known_hosts_token1] = ACTIONS(993), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(993), - [aux_sym_hostbased_authentication_token1] = ACTIONS(993), - [aux_sym_host_key_algorithms_token1] = ACTIONS(993), - [aux_sym_host_key_alias_token1] = ACTIONS(993), - [aux_sym_hostname_token1] = ACTIONS(993), - [aux_sym_identities_only_token1] = ACTIONS(993), - [aux_sym_identity_agent_token1] = ACTIONS(993), - [aux_sym_identity_file_token1] = ACTIONS(993), - [aux_sym_ignore_unknown_token1] = ACTIONS(993), - [aux_sym_include_token1] = ACTIONS(993), - [aux_sym_ip_qos_token1] = ACTIONS(993), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(993), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(993), - [aux_sym_kex_algorithms_token1] = ACTIONS(993), - [aux_sym_known_hosts_command_token1] = ACTIONS(993), - [aux_sym_local_command_token1] = ACTIONS(993), - [aux_sym_local_forward_token1] = ACTIONS(993), - [aux_sym_log_level_token1] = ACTIONS(993), - [aux_sym_log_verbose_token1] = ACTIONS(993), - [aux_sym_macs_token1] = ACTIONS(993), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(993), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(993), - [aux_sym_password_authentication_token1] = ACTIONS(993), - [aux_sym_permit_local_command_token1] = ACTIONS(993), - [aux_sym_permit_remote_open_token1] = ACTIONS(993), - [aux_sym_pkcs11_provider_token1] = ACTIONS(993), - [aux_sym_port_token1] = ACTIONS(993), - [aux_sym_preferred_authentications_token1] = ACTIONS(993), - [aux_sym_protocol_token1] = ACTIONS(993), - [aux_sym_proxy_command_token1] = ACTIONS(993), - [aux_sym_proxy_jump_token1] = ACTIONS(993), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(993), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(993), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(993), - [aux_sym_pubkey_authentication_token1] = ACTIONS(993), - [aux_sym_rekey_limit_token1] = ACTIONS(993), - [aux_sym_remote_command_token1] = ACTIONS(993), - [aux_sym_remote_forward_token1] = ACTIONS(993), - [aux_sym_request_tty_token1] = ACTIONS(993), - [aux_sym_required_rsa_size_token1] = ACTIONS(993), - [aux_sym_revoked_host_keys_token1] = ACTIONS(993), - [aux_sym_security_key_provider_token1] = ACTIONS(993), - [aux_sym_send_env_token1] = ACTIONS(993), - [aux_sym_server_alive_count_max_token1] = ACTIONS(993), - [aux_sym_server_alive_interval_token1] = ACTIONS(993), - [aux_sym_session_type_token1] = ACTIONS(993), - [aux_sym_set_env_token1] = ACTIONS(993), - [aux_sym_stdin_null_token1] = ACTIONS(993), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(993), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(993), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(993), - [aux_sym_syslog_facility_token1] = ACTIONS(993), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(993), - [aux_sym_keep_alive_token1] = ACTIONS(993), - [aux_sym_tunnel_token1] = ACTIONS(995), - [aux_sym_tunnel_device_token1] = ACTIONS(993), - [aux_sym_update_host_keys_token1] = ACTIONS(993), - [aux_sym_use_keychain_token1] = ACTIONS(993), - [aux_sym_use_roaming_token1] = ACTIONS(993), - [aux_sym_user_token1] = ACTIONS(995), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(993), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(993), - [aux_sym_visual_host_key_token1] = ACTIONS(993), - [aux_sym_xauth_location_token1] = ACTIONS(993), + [ts_builtin_sym_end] = ACTIONS(914), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(916), + [aux_sym_match_token1] = ACTIONS(914), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(914), + [aux_sym_address_family_token1] = ACTIONS(914), + [aux_sym_batch_mode_token1] = ACTIONS(914), + [aux_sym_bind_address_token1] = ACTIONS(914), + [aux_sym_bind_interface_token1] = ACTIONS(914), + [aux_sym_canonical_domains_token1] = ACTIONS(914), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(914), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(914), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(914), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(914), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(914), + [aux_sym_certificate_file_token1] = ACTIONS(914), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(914), + [aux_sym_check_host_ip_token1] = ACTIONS(914), + [aux_sym_ciphers_token1] = ACTIONS(914), + [aux_sym_cipher_token1] = ACTIONS(916), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(914), + [aux_sym_compression_token1] = ACTIONS(914), + [aux_sym_connection_attempts_token1] = ACTIONS(914), + [aux_sym_connect_timeout_token1] = ACTIONS(914), + [aux_sym_control_master_token1] = ACTIONS(914), + [aux_sym_control_path_token1] = ACTIONS(914), + [aux_sym_control_persist_token1] = ACTIONS(914), + [aux_sym_dynamic_forward_token1] = ACTIONS(914), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(914), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(914), + [aux_sym_escape_char_token1] = ACTIONS(914), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(914), + [aux_sym_fingerprint_hash_token1] = ACTIONS(914), + [aux_sym_fork_after_authentication_token1] = ACTIONS(914), + [aux_sym_forward_agent_token1] = ACTIONS(914), + [aux_sym_forward_x11_token1] = ACTIONS(916), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(914), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(914), + [aux_sym_gateway_ports_token1] = ACTIONS(914), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(914), + [aux_sym_gssapi_authentication_token1] = ACTIONS(914), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(914), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(914), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(914), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(914), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(914), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(914), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(914), + [aux_sym_hash_known_hosts_token1] = ACTIONS(914), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(914), + [aux_sym_hostbased_authentication_token1] = ACTIONS(914), + [aux_sym_host_key_algorithms_token1] = ACTIONS(914), + [aux_sym_host_key_alias_token1] = ACTIONS(914), + [aux_sym_hostname_token1] = ACTIONS(914), + [aux_sym_identities_only_token1] = ACTIONS(914), + [aux_sym_identity_agent_token1] = ACTIONS(914), + [aux_sym_identity_file_token1] = ACTIONS(914), + [aux_sym_ignore_unknown_token1] = ACTIONS(914), + [aux_sym_include_token1] = ACTIONS(914), + [aux_sym_ip_qos_token1] = ACTIONS(914), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(914), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(914), + [aux_sym_kex_algorithms_token1] = ACTIONS(914), + [aux_sym_known_hosts_command_token1] = ACTIONS(914), + [aux_sym_local_command_token1] = ACTIONS(914), + [aux_sym_local_forward_token1] = ACTIONS(914), + [aux_sym_log_level_token1] = ACTIONS(914), + [aux_sym_log_verbose_token1] = ACTIONS(914), + [aux_sym_macs_token1] = ACTIONS(914), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(914), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(914), + [aux_sym_password_authentication_token1] = ACTIONS(914), + [aux_sym_permit_local_command_token1] = ACTIONS(914), + [aux_sym_permit_remote_open_token1] = ACTIONS(914), + [aux_sym_pkcs11_provider_token1] = ACTIONS(914), + [aux_sym_port_token1] = ACTIONS(914), + [aux_sym_preferred_authentications_token1] = ACTIONS(914), + [aux_sym_protocol_token1] = ACTIONS(914), + [aux_sym_proxy_command_token1] = ACTIONS(914), + [aux_sym_proxy_jump_token1] = ACTIONS(914), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(914), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(914), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(914), + [aux_sym_pubkey_authentication_token1] = ACTIONS(914), + [aux_sym_rekey_limit_token1] = ACTIONS(914), + [aux_sym_remote_command_token1] = ACTIONS(914), + [aux_sym_remote_forward_token1] = ACTIONS(914), + [aux_sym_request_tty_token1] = ACTIONS(914), + [aux_sym_required_rsa_size_token1] = ACTIONS(914), + [aux_sym_revoked_host_keys_token1] = ACTIONS(914), + [aux_sym_security_key_provider_token1] = ACTIONS(914), + [aux_sym_send_env_token1] = ACTIONS(914), + [aux_sym_server_alive_count_max_token1] = ACTIONS(914), + [aux_sym_server_alive_interval_token1] = ACTIONS(914), + [aux_sym_session_type_token1] = ACTIONS(914), + [aux_sym_set_env_token1] = ACTIONS(914), + [aux_sym_stdin_null_token1] = ACTIONS(914), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(914), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(914), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(914), + [aux_sym_syslog_facility_token1] = ACTIONS(914), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(914), + [aux_sym_keep_alive_token1] = ACTIONS(914), + [aux_sym_tunnel_token1] = ACTIONS(916), + [aux_sym_tunnel_device_token1] = ACTIONS(914), + [aux_sym_update_host_keys_token1] = ACTIONS(914), + [aux_sym_use_keychain_token1] = ACTIONS(914), + [aux_sym_use_roaming_token1] = ACTIONS(914), + [aux_sym_user_token1] = ACTIONS(916), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(914), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(914), + [aux_sym_visual_host_key_token1] = ACTIONS(914), + [aux_sym_xauth_location_token1] = ACTIONS(914), }, [638] = { - [ts_builtin_sym_end] = ACTIONS(999), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1001), - [aux_sym_match_token1] = ACTIONS(999), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(999), - [aux_sym_address_family_token1] = ACTIONS(999), - [aux_sym_batch_mode_token1] = ACTIONS(999), - [aux_sym_bind_address_token1] = ACTIONS(999), - [aux_sym_bind_interface_token1] = ACTIONS(999), - [aux_sym_canonical_domains_token1] = ACTIONS(999), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(999), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(999), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(999), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(999), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(999), - [aux_sym_certificate_file_token1] = ACTIONS(999), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(999), - [aux_sym_check_host_ip_token1] = ACTIONS(999), - [aux_sym_ciphers_token1] = ACTIONS(999), - [aux_sym_cipher_token1] = ACTIONS(1001), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(999), - [aux_sym_compression_token1] = ACTIONS(999), - [aux_sym_connection_attempts_token1] = ACTIONS(999), - [aux_sym_connect_timeout_token1] = ACTIONS(999), - [aux_sym_control_master_token1] = ACTIONS(999), - [aux_sym_control_path_token1] = ACTIONS(999), - [aux_sym_control_persist_token1] = ACTIONS(999), - [aux_sym_dynamic_forward_token1] = ACTIONS(999), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(999), - [aux_sym_escape_char_token1] = ACTIONS(999), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(999), - [aux_sym_fingerprint_hash_token1] = ACTIONS(999), - [aux_sym_fork_after_authentication_token1] = ACTIONS(999), - [aux_sym_forward_agent_token1] = ACTIONS(999), - [aux_sym_forward_x11_token1] = ACTIONS(1001), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(999), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(999), - [aux_sym_gateway_ports_token1] = ACTIONS(999), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(999), - [aux_sym_gssapi_authentication_token1] = ACTIONS(999), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(999), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(999), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(999), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(999), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(999), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(999), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(999), - [aux_sym_hash_known_hosts_token1] = ACTIONS(999), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(999), - [aux_sym_hostbased_authentication_token1] = ACTIONS(999), - [aux_sym_host_key_algorithms_token1] = ACTIONS(999), - [aux_sym_host_key_alias_token1] = ACTIONS(999), - [aux_sym_hostname_token1] = ACTIONS(999), - [aux_sym_identities_only_token1] = ACTIONS(999), - [aux_sym_identity_agent_token1] = ACTIONS(999), - [aux_sym_identity_file_token1] = ACTIONS(999), - [aux_sym_ignore_unknown_token1] = ACTIONS(999), - [aux_sym_include_token1] = ACTIONS(999), - [aux_sym_ip_qos_token1] = ACTIONS(999), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(999), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(999), - [aux_sym_kex_algorithms_token1] = ACTIONS(999), - [aux_sym_known_hosts_command_token1] = ACTIONS(999), - [aux_sym_local_command_token1] = ACTIONS(999), - [aux_sym_local_forward_token1] = ACTIONS(999), - [aux_sym_log_level_token1] = ACTIONS(999), - [aux_sym_log_verbose_token1] = ACTIONS(999), - [aux_sym_macs_token1] = ACTIONS(999), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(999), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(999), - [aux_sym_password_authentication_token1] = ACTIONS(999), - [aux_sym_permit_local_command_token1] = ACTIONS(999), - [aux_sym_permit_remote_open_token1] = ACTIONS(999), - [aux_sym_pkcs11_provider_token1] = ACTIONS(999), - [aux_sym_port_token1] = ACTIONS(999), - [aux_sym_preferred_authentications_token1] = ACTIONS(999), - [aux_sym_protocol_token1] = ACTIONS(999), - [aux_sym_proxy_command_token1] = ACTIONS(999), - [aux_sym_proxy_jump_token1] = ACTIONS(999), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(999), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(999), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(999), - [aux_sym_pubkey_authentication_token1] = ACTIONS(999), - [aux_sym_rekey_limit_token1] = ACTIONS(999), - [aux_sym_remote_command_token1] = ACTIONS(999), - [aux_sym_remote_forward_token1] = ACTIONS(999), - [aux_sym_request_tty_token1] = ACTIONS(999), - [aux_sym_required_rsa_size_token1] = ACTIONS(999), - [aux_sym_revoked_host_keys_token1] = ACTIONS(999), - [aux_sym_security_key_provider_token1] = ACTIONS(999), - [aux_sym_send_env_token1] = ACTIONS(999), - [aux_sym_server_alive_count_max_token1] = ACTIONS(999), - [aux_sym_server_alive_interval_token1] = ACTIONS(999), - [aux_sym_session_type_token1] = ACTIONS(999), - [aux_sym_set_env_token1] = ACTIONS(999), - [aux_sym_stdin_null_token1] = ACTIONS(999), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(999), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(999), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(999), - [aux_sym_syslog_facility_token1] = ACTIONS(999), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(999), - [aux_sym_keep_alive_token1] = ACTIONS(999), - [aux_sym_tunnel_token1] = ACTIONS(1001), - [aux_sym_tunnel_device_token1] = ACTIONS(999), - [aux_sym_update_host_keys_token1] = ACTIONS(999), - [aux_sym_use_keychain_token1] = ACTIONS(999), - [aux_sym_use_roaming_token1] = ACTIONS(999), - [aux_sym_user_token1] = ACTIONS(1001), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(999), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(999), - [aux_sym_visual_host_key_token1] = ACTIONS(999), - [aux_sym_xauth_location_token1] = ACTIONS(999), + [ts_builtin_sym_end] = ACTIONS(3436), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3438), + [aux_sym_match_token1] = ACTIONS(3436), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3436), + [aux_sym_address_family_token1] = ACTIONS(3436), + [aux_sym_batch_mode_token1] = ACTIONS(3436), + [aux_sym_bind_address_token1] = ACTIONS(3436), + [aux_sym_bind_interface_token1] = ACTIONS(3436), + [aux_sym_canonical_domains_token1] = ACTIONS(3436), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3436), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3436), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3436), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3436), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3436), + [aux_sym_certificate_file_token1] = ACTIONS(3436), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3436), + [aux_sym_check_host_ip_token1] = ACTIONS(3436), + [aux_sym_ciphers_token1] = ACTIONS(3436), + [aux_sym_cipher_token1] = ACTIONS(3438), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3436), + [aux_sym_compression_token1] = ACTIONS(3436), + [aux_sym_connection_attempts_token1] = ACTIONS(3436), + [aux_sym_connect_timeout_token1] = ACTIONS(3436), + [aux_sym_control_master_token1] = ACTIONS(3436), + [aux_sym_control_path_token1] = ACTIONS(3436), + [aux_sym_control_persist_token1] = ACTIONS(3436), + [aux_sym_dynamic_forward_token1] = ACTIONS(3436), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3436), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3436), + [aux_sym_escape_char_token1] = ACTIONS(3436), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3436), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3436), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3436), + [aux_sym_forward_agent_token1] = ACTIONS(3436), + [aux_sym_forward_x11_token1] = ACTIONS(3438), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3436), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3436), + [aux_sym_gateway_ports_token1] = ACTIONS(3436), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3436), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3436), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3436), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3436), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3436), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3436), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3436), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3436), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3436), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3436), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3436), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3436), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3436), + [aux_sym_host_key_alias_token1] = ACTIONS(3436), + [aux_sym_hostname_token1] = ACTIONS(3436), + [aux_sym_identities_only_token1] = ACTIONS(3436), + [aux_sym_identity_agent_token1] = ACTIONS(3436), + [aux_sym_identity_file_token1] = ACTIONS(3436), + [aux_sym_ignore_unknown_token1] = ACTIONS(3436), + [aux_sym_include_token1] = ACTIONS(3436), + [aux_sym_ip_qos_token1] = ACTIONS(3436), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3436), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3436), + [aux_sym_kex_algorithms_token1] = ACTIONS(3436), + [aux_sym_known_hosts_command_token1] = ACTIONS(3436), + [aux_sym_local_command_token1] = ACTIONS(3436), + [aux_sym_local_forward_token1] = ACTIONS(3436), + [aux_sym_log_level_token1] = ACTIONS(3436), + [aux_sym_log_verbose_token1] = ACTIONS(3436), + [aux_sym_macs_token1] = ACTIONS(3436), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3436), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3436), + [aux_sym_password_authentication_token1] = ACTIONS(3436), + [aux_sym_permit_local_command_token1] = ACTIONS(3436), + [aux_sym_permit_remote_open_token1] = ACTIONS(3436), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3436), + [aux_sym_port_token1] = ACTIONS(3436), + [aux_sym_preferred_authentications_token1] = ACTIONS(3436), + [aux_sym_protocol_token1] = ACTIONS(3436), + [aux_sym_proxy_command_token1] = ACTIONS(3436), + [aux_sym_proxy_jump_token1] = ACTIONS(3436), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3436), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3436), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3436), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3436), + [aux_sym_rekey_limit_token1] = ACTIONS(3436), + [aux_sym_remote_command_token1] = ACTIONS(3436), + [aux_sym_remote_forward_token1] = ACTIONS(3436), + [aux_sym_request_tty_token1] = ACTIONS(3436), + [aux_sym_required_rsa_size_token1] = ACTIONS(3436), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3436), + [aux_sym_security_key_provider_token1] = ACTIONS(3436), + [aux_sym_send_env_token1] = ACTIONS(3436), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3436), + [aux_sym_server_alive_interval_token1] = ACTIONS(3436), + [aux_sym_session_type_token1] = ACTIONS(3436), + [aux_sym_set_env_token1] = ACTIONS(3436), + [aux_sym_stdin_null_token1] = ACTIONS(3436), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3436), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3436), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3436), + [aux_sym_syslog_facility_token1] = ACTIONS(3436), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3436), + [aux_sym_keep_alive_token1] = ACTIONS(3436), + [aux_sym_tunnel_token1] = ACTIONS(3438), + [aux_sym_tunnel_device_token1] = ACTIONS(3436), + [aux_sym_update_host_keys_token1] = ACTIONS(3436), + [aux_sym_use_keychain_token1] = ACTIONS(3436), + [aux_sym_use_roaming_token1] = ACTIONS(3436), + [aux_sym_user_token1] = ACTIONS(3438), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3436), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3436), + [aux_sym_visual_host_key_token1] = ACTIONS(3436), + [aux_sym_xauth_location_token1] = ACTIONS(3436), }, [639] = { - [ts_builtin_sym_end] = ACTIONS(1005), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1007), - [aux_sym_match_token1] = ACTIONS(1005), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1005), - [aux_sym_address_family_token1] = ACTIONS(1005), - [aux_sym_batch_mode_token1] = ACTIONS(1005), - [aux_sym_bind_address_token1] = ACTIONS(1005), - [aux_sym_bind_interface_token1] = ACTIONS(1005), - [aux_sym_canonical_domains_token1] = ACTIONS(1005), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1005), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1005), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1005), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1005), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1005), - [aux_sym_certificate_file_token1] = ACTIONS(1005), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1005), - [aux_sym_check_host_ip_token1] = ACTIONS(1005), - [aux_sym_ciphers_token1] = ACTIONS(1005), - [aux_sym_cipher_token1] = ACTIONS(1007), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1005), - [aux_sym_compression_token1] = ACTIONS(1005), - [aux_sym_connection_attempts_token1] = ACTIONS(1005), - [aux_sym_connect_timeout_token1] = ACTIONS(1005), - [aux_sym_control_master_token1] = ACTIONS(1005), - [aux_sym_control_path_token1] = ACTIONS(1005), - [aux_sym_control_persist_token1] = ACTIONS(1005), - [aux_sym_dynamic_forward_token1] = ACTIONS(1005), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1005), - [aux_sym_escape_char_token1] = ACTIONS(1005), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1005), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1005), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1005), - [aux_sym_forward_agent_token1] = ACTIONS(1005), - [aux_sym_forward_x11_token1] = ACTIONS(1007), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1005), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1005), - [aux_sym_gateway_ports_token1] = ACTIONS(1005), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1005), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1005), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1005), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1005), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1005), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1005), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1005), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1005), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1005), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1005), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1005), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1005), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1005), - [aux_sym_host_key_alias_token1] = ACTIONS(1005), - [aux_sym_hostname_token1] = ACTIONS(1005), - [aux_sym_identities_only_token1] = ACTIONS(1005), - [aux_sym_identity_agent_token1] = ACTIONS(1005), - [aux_sym_identity_file_token1] = ACTIONS(1005), - [aux_sym_ignore_unknown_token1] = ACTIONS(1005), - [aux_sym_include_token1] = ACTIONS(1005), - [aux_sym_ip_qos_token1] = ACTIONS(1005), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1005), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1005), - [aux_sym_kex_algorithms_token1] = ACTIONS(1005), - [aux_sym_known_hosts_command_token1] = ACTIONS(1005), - [aux_sym_local_command_token1] = ACTIONS(1005), - [aux_sym_local_forward_token1] = ACTIONS(1005), - [aux_sym_log_level_token1] = ACTIONS(1005), - [aux_sym_log_verbose_token1] = ACTIONS(1005), - [aux_sym_macs_token1] = ACTIONS(1005), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1005), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1005), - [aux_sym_password_authentication_token1] = ACTIONS(1005), - [aux_sym_permit_local_command_token1] = ACTIONS(1005), - [aux_sym_permit_remote_open_token1] = ACTIONS(1005), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1005), - [aux_sym_port_token1] = ACTIONS(1005), - [aux_sym_preferred_authentications_token1] = ACTIONS(1005), - [aux_sym_protocol_token1] = ACTIONS(1005), - [aux_sym_proxy_command_token1] = ACTIONS(1005), - [aux_sym_proxy_jump_token1] = ACTIONS(1005), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1005), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1005), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1005), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1005), - [aux_sym_rekey_limit_token1] = ACTIONS(1005), - [aux_sym_remote_command_token1] = ACTIONS(1005), - [aux_sym_remote_forward_token1] = ACTIONS(1005), - [aux_sym_request_tty_token1] = ACTIONS(1005), - [aux_sym_required_rsa_size_token1] = ACTIONS(1005), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1005), - [aux_sym_security_key_provider_token1] = ACTIONS(1005), - [aux_sym_send_env_token1] = ACTIONS(1005), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1005), - [aux_sym_server_alive_interval_token1] = ACTIONS(1005), - [aux_sym_session_type_token1] = ACTIONS(1005), - [aux_sym_set_env_token1] = ACTIONS(1005), - [aux_sym_stdin_null_token1] = ACTIONS(1005), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1005), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1005), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1005), - [aux_sym_syslog_facility_token1] = ACTIONS(1005), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1005), - [aux_sym_keep_alive_token1] = ACTIONS(1005), - [aux_sym_tunnel_token1] = ACTIONS(1007), - [aux_sym_tunnel_device_token1] = ACTIONS(1005), - [aux_sym_update_host_keys_token1] = ACTIONS(1005), - [aux_sym_use_keychain_token1] = ACTIONS(1005), - [aux_sym_use_roaming_token1] = ACTIONS(1005), - [aux_sym_user_token1] = ACTIONS(1007), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1005), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1005), - [aux_sym_visual_host_key_token1] = ACTIONS(1005), - [aux_sym_xauth_location_token1] = ACTIONS(1005), + [ts_builtin_sym_end] = ACTIONS(3440), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3442), + [aux_sym_match_token1] = ACTIONS(3440), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3440), + [aux_sym_address_family_token1] = ACTIONS(3440), + [aux_sym_batch_mode_token1] = ACTIONS(3440), + [aux_sym_bind_address_token1] = ACTIONS(3440), + [aux_sym_bind_interface_token1] = ACTIONS(3440), + [aux_sym_canonical_domains_token1] = ACTIONS(3440), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3440), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3440), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3440), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3440), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3440), + [aux_sym_certificate_file_token1] = ACTIONS(3440), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3440), + [aux_sym_check_host_ip_token1] = ACTIONS(3440), + [aux_sym_ciphers_token1] = ACTIONS(3440), + [aux_sym_cipher_token1] = ACTIONS(3442), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3440), + [aux_sym_compression_token1] = ACTIONS(3440), + [aux_sym_connection_attempts_token1] = ACTIONS(3440), + [aux_sym_connect_timeout_token1] = ACTIONS(3440), + [aux_sym_control_master_token1] = ACTIONS(3440), + [aux_sym_control_path_token1] = ACTIONS(3440), + [aux_sym_control_persist_token1] = ACTIONS(3440), + [aux_sym_dynamic_forward_token1] = ACTIONS(3440), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3440), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3440), + [aux_sym_escape_char_token1] = ACTIONS(3440), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3440), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3440), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3440), + [aux_sym_forward_agent_token1] = ACTIONS(3440), + [aux_sym_forward_x11_token1] = ACTIONS(3442), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3440), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3440), + [aux_sym_gateway_ports_token1] = ACTIONS(3440), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3440), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3440), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3440), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3440), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3440), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3440), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3440), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3440), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3440), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3440), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3440), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3440), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3440), + [aux_sym_host_key_alias_token1] = ACTIONS(3440), + [aux_sym_hostname_token1] = ACTIONS(3440), + [aux_sym_identities_only_token1] = ACTIONS(3440), + [aux_sym_identity_agent_token1] = ACTIONS(3440), + [aux_sym_identity_file_token1] = ACTIONS(3440), + [aux_sym_ignore_unknown_token1] = ACTIONS(3440), + [aux_sym_include_token1] = ACTIONS(3440), + [aux_sym_ip_qos_token1] = ACTIONS(3440), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3440), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3440), + [aux_sym_kex_algorithms_token1] = ACTIONS(3440), + [aux_sym_known_hosts_command_token1] = ACTIONS(3440), + [aux_sym_local_command_token1] = ACTIONS(3440), + [aux_sym_local_forward_token1] = ACTIONS(3440), + [aux_sym_log_level_token1] = ACTIONS(3440), + [aux_sym_log_verbose_token1] = ACTIONS(3440), + [aux_sym_macs_token1] = ACTIONS(3440), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3440), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3440), + [aux_sym_password_authentication_token1] = ACTIONS(3440), + [aux_sym_permit_local_command_token1] = ACTIONS(3440), + [aux_sym_permit_remote_open_token1] = ACTIONS(3440), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3440), + [aux_sym_port_token1] = ACTIONS(3440), + [aux_sym_preferred_authentications_token1] = ACTIONS(3440), + [aux_sym_protocol_token1] = ACTIONS(3440), + [aux_sym_proxy_command_token1] = ACTIONS(3440), + [aux_sym_proxy_jump_token1] = ACTIONS(3440), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3440), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3440), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3440), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3440), + [aux_sym_rekey_limit_token1] = ACTIONS(3440), + [aux_sym_remote_command_token1] = ACTIONS(3440), + [aux_sym_remote_forward_token1] = ACTIONS(3440), + [aux_sym_request_tty_token1] = ACTIONS(3440), + [aux_sym_required_rsa_size_token1] = ACTIONS(3440), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3440), + [aux_sym_security_key_provider_token1] = ACTIONS(3440), + [aux_sym_send_env_token1] = ACTIONS(3440), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3440), + [aux_sym_server_alive_interval_token1] = ACTIONS(3440), + [aux_sym_session_type_token1] = ACTIONS(3440), + [aux_sym_set_env_token1] = ACTIONS(3440), + [aux_sym_stdin_null_token1] = ACTIONS(3440), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3440), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3440), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3440), + [aux_sym_syslog_facility_token1] = ACTIONS(3440), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3440), + [aux_sym_keep_alive_token1] = ACTIONS(3440), + [aux_sym_tunnel_token1] = ACTIONS(3442), + [aux_sym_tunnel_device_token1] = ACTIONS(3440), + [aux_sym_update_host_keys_token1] = ACTIONS(3440), + [aux_sym_use_keychain_token1] = ACTIONS(3440), + [aux_sym_use_roaming_token1] = ACTIONS(3440), + [aux_sym_user_token1] = ACTIONS(3442), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3440), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3440), + [aux_sym_visual_host_key_token1] = ACTIONS(3440), + [aux_sym_xauth_location_token1] = ACTIONS(3440), }, [640] = { - [ts_builtin_sym_end] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1013), - [aux_sym_match_token1] = ACTIONS(1011), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1011), - [aux_sym_address_family_token1] = ACTIONS(1011), - [aux_sym_batch_mode_token1] = ACTIONS(1011), - [aux_sym_bind_address_token1] = ACTIONS(1011), - [aux_sym_bind_interface_token1] = ACTIONS(1011), - [aux_sym_canonical_domains_token1] = ACTIONS(1011), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1011), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1011), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1011), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1011), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1011), - [aux_sym_certificate_file_token1] = ACTIONS(1011), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1011), - [aux_sym_check_host_ip_token1] = ACTIONS(1011), - [aux_sym_ciphers_token1] = ACTIONS(1011), - [aux_sym_cipher_token1] = ACTIONS(1013), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1011), - [aux_sym_compression_token1] = ACTIONS(1011), - [aux_sym_connection_attempts_token1] = ACTIONS(1011), - [aux_sym_connect_timeout_token1] = ACTIONS(1011), - [aux_sym_control_master_token1] = ACTIONS(1011), - [aux_sym_control_path_token1] = ACTIONS(1011), - [aux_sym_control_persist_token1] = ACTIONS(1011), - [aux_sym_dynamic_forward_token1] = ACTIONS(1011), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1011), - [aux_sym_escape_char_token1] = ACTIONS(1011), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1011), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1011), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1011), - [aux_sym_forward_agent_token1] = ACTIONS(1011), - [aux_sym_forward_x11_token1] = ACTIONS(1013), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1011), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1011), - [aux_sym_gateway_ports_token1] = ACTIONS(1011), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1011), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1011), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1011), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1011), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1011), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1011), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1011), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1011), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1011), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1011), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1011), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1011), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1011), - [aux_sym_host_key_alias_token1] = ACTIONS(1011), - [aux_sym_hostname_token1] = ACTIONS(1011), - [aux_sym_identities_only_token1] = ACTIONS(1011), - [aux_sym_identity_agent_token1] = ACTIONS(1011), - [aux_sym_identity_file_token1] = ACTIONS(1011), - [aux_sym_ignore_unknown_token1] = ACTIONS(1011), - [aux_sym_include_token1] = ACTIONS(1011), - [aux_sym_ip_qos_token1] = ACTIONS(1011), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1011), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1011), - [aux_sym_kex_algorithms_token1] = ACTIONS(1011), - [aux_sym_known_hosts_command_token1] = ACTIONS(1011), - [aux_sym_local_command_token1] = ACTIONS(1011), - [aux_sym_local_forward_token1] = ACTIONS(1011), - [aux_sym_log_level_token1] = ACTIONS(1011), - [aux_sym_log_verbose_token1] = ACTIONS(1011), - [aux_sym_macs_token1] = ACTIONS(1011), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1011), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1011), - [aux_sym_password_authentication_token1] = ACTIONS(1011), - [aux_sym_permit_local_command_token1] = ACTIONS(1011), - [aux_sym_permit_remote_open_token1] = ACTIONS(1011), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1011), - [aux_sym_port_token1] = ACTIONS(1011), - [aux_sym_preferred_authentications_token1] = ACTIONS(1011), - [aux_sym_protocol_token1] = ACTIONS(1011), - [aux_sym_proxy_command_token1] = ACTIONS(1011), - [aux_sym_proxy_jump_token1] = ACTIONS(1011), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1011), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1011), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1011), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1011), - [aux_sym_rekey_limit_token1] = ACTIONS(1011), - [aux_sym_remote_command_token1] = ACTIONS(1011), - [aux_sym_remote_forward_token1] = ACTIONS(1011), - [aux_sym_request_tty_token1] = ACTIONS(1011), - [aux_sym_required_rsa_size_token1] = ACTIONS(1011), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1011), - [aux_sym_security_key_provider_token1] = ACTIONS(1011), - [aux_sym_send_env_token1] = ACTIONS(1011), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1011), - [aux_sym_server_alive_interval_token1] = ACTIONS(1011), - [aux_sym_session_type_token1] = ACTIONS(1011), - [aux_sym_set_env_token1] = ACTIONS(1011), - [aux_sym_stdin_null_token1] = ACTIONS(1011), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1011), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1011), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1011), - [aux_sym_syslog_facility_token1] = ACTIONS(1011), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1011), - [aux_sym_keep_alive_token1] = ACTIONS(1011), - [aux_sym_tunnel_token1] = ACTIONS(1013), - [aux_sym_tunnel_device_token1] = ACTIONS(1011), - [aux_sym_update_host_keys_token1] = ACTIONS(1011), - [aux_sym_use_keychain_token1] = ACTIONS(1011), - [aux_sym_use_roaming_token1] = ACTIONS(1011), - [aux_sym_user_token1] = ACTIONS(1013), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1011), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1011), - [aux_sym_visual_host_key_token1] = ACTIONS(1011), - [aux_sym_xauth_location_token1] = ACTIONS(1011), + [ts_builtin_sym_end] = ACTIONS(1412), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1414), + [aux_sym_match_token1] = ACTIONS(1412), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1412), + [aux_sym_address_family_token1] = ACTIONS(1412), + [aux_sym_batch_mode_token1] = ACTIONS(1412), + [aux_sym_bind_address_token1] = ACTIONS(1412), + [aux_sym_bind_interface_token1] = ACTIONS(1412), + [aux_sym_canonical_domains_token1] = ACTIONS(1412), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1412), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1412), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1412), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1412), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1412), + [aux_sym_certificate_file_token1] = ACTIONS(1412), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1412), + [aux_sym_check_host_ip_token1] = ACTIONS(1412), + [aux_sym_ciphers_token1] = ACTIONS(1412), + [aux_sym_cipher_token1] = ACTIONS(1414), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1412), + [aux_sym_compression_token1] = ACTIONS(1412), + [aux_sym_connection_attempts_token1] = ACTIONS(1412), + [aux_sym_connect_timeout_token1] = ACTIONS(1412), + [aux_sym_control_master_token1] = ACTIONS(1412), + [aux_sym_control_path_token1] = ACTIONS(1412), + [aux_sym_control_persist_token1] = ACTIONS(1412), + [aux_sym_dynamic_forward_token1] = ACTIONS(1412), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1412), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1412), + [aux_sym_escape_char_token1] = ACTIONS(1412), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1412), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1412), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1412), + [aux_sym_forward_agent_token1] = ACTIONS(1412), + [aux_sym_forward_x11_token1] = ACTIONS(1414), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1412), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1412), + [aux_sym_gateway_ports_token1] = ACTIONS(1412), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1412), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1412), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1412), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1412), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1412), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1412), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1412), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1412), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1412), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1412), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1412), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1412), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1412), + [aux_sym_host_key_alias_token1] = ACTIONS(1412), + [aux_sym_hostname_token1] = ACTIONS(1412), + [aux_sym_identities_only_token1] = ACTIONS(1412), + [aux_sym_identity_agent_token1] = ACTIONS(1412), + [aux_sym_identity_file_token1] = ACTIONS(1412), + [aux_sym_ignore_unknown_token1] = ACTIONS(1412), + [aux_sym_include_token1] = ACTIONS(1412), + [aux_sym_ip_qos_token1] = ACTIONS(1412), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1412), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1412), + [aux_sym_kex_algorithms_token1] = ACTIONS(1412), + [aux_sym_known_hosts_command_token1] = ACTIONS(1412), + [aux_sym_local_command_token1] = ACTIONS(1412), + [aux_sym_local_forward_token1] = ACTIONS(1412), + [aux_sym_log_level_token1] = ACTIONS(1412), + [aux_sym_log_verbose_token1] = ACTIONS(1412), + [aux_sym_macs_token1] = ACTIONS(1412), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1412), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1412), + [aux_sym_password_authentication_token1] = ACTIONS(1412), + [aux_sym_permit_local_command_token1] = ACTIONS(1412), + [aux_sym_permit_remote_open_token1] = ACTIONS(1412), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1412), + [aux_sym_port_token1] = ACTIONS(1412), + [aux_sym_preferred_authentications_token1] = ACTIONS(1412), + [aux_sym_protocol_token1] = ACTIONS(1412), + [aux_sym_proxy_command_token1] = ACTIONS(1412), + [aux_sym_proxy_jump_token1] = ACTIONS(1412), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1412), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1412), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1412), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1412), + [aux_sym_rekey_limit_token1] = ACTIONS(1412), + [aux_sym_remote_command_token1] = ACTIONS(1412), + [aux_sym_remote_forward_token1] = ACTIONS(1412), + [aux_sym_request_tty_token1] = ACTIONS(1412), + [aux_sym_required_rsa_size_token1] = ACTIONS(1412), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1412), + [aux_sym_security_key_provider_token1] = ACTIONS(1412), + [aux_sym_send_env_token1] = ACTIONS(1412), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1412), + [aux_sym_server_alive_interval_token1] = ACTIONS(1412), + [aux_sym_session_type_token1] = ACTIONS(1412), + [aux_sym_set_env_token1] = ACTIONS(1412), + [aux_sym_stdin_null_token1] = ACTIONS(1412), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1412), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1412), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1412), + [aux_sym_syslog_facility_token1] = ACTIONS(1412), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1412), + [aux_sym_keep_alive_token1] = ACTIONS(1412), + [aux_sym_tunnel_token1] = ACTIONS(1414), + [aux_sym_tunnel_device_token1] = ACTIONS(1412), + [aux_sym_update_host_keys_token1] = ACTIONS(1412), + [aux_sym_use_keychain_token1] = ACTIONS(1412), + [aux_sym_use_roaming_token1] = ACTIONS(1412), + [aux_sym_user_token1] = ACTIONS(1414), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1412), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1412), + [aux_sym_visual_host_key_token1] = ACTIONS(1412), + [aux_sym_xauth_location_token1] = ACTIONS(1412), }, [641] = { - [ts_builtin_sym_end] = ACTIONS(1017), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1019), - [aux_sym_match_token1] = ACTIONS(1017), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1017), - [aux_sym_address_family_token1] = ACTIONS(1017), - [aux_sym_batch_mode_token1] = ACTIONS(1017), - [aux_sym_bind_address_token1] = ACTIONS(1017), - [aux_sym_bind_interface_token1] = ACTIONS(1017), - [aux_sym_canonical_domains_token1] = ACTIONS(1017), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1017), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1017), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1017), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1017), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1017), - [aux_sym_certificate_file_token1] = ACTIONS(1017), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1017), - [aux_sym_check_host_ip_token1] = ACTIONS(1017), - [aux_sym_ciphers_token1] = ACTIONS(1017), - [aux_sym_cipher_token1] = ACTIONS(1019), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1017), - [aux_sym_compression_token1] = ACTIONS(1017), - [aux_sym_connection_attempts_token1] = ACTIONS(1017), - [aux_sym_connect_timeout_token1] = ACTIONS(1017), - [aux_sym_control_master_token1] = ACTIONS(1017), - [aux_sym_control_path_token1] = ACTIONS(1017), - [aux_sym_control_persist_token1] = ACTIONS(1017), - [aux_sym_dynamic_forward_token1] = ACTIONS(1017), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1017), - [aux_sym_escape_char_token1] = ACTIONS(1017), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1017), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1017), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1017), - [aux_sym_forward_agent_token1] = ACTIONS(1017), - [aux_sym_forward_x11_token1] = ACTIONS(1019), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1017), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1017), - [aux_sym_gateway_ports_token1] = ACTIONS(1017), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1017), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1017), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1017), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1017), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1017), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1017), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1017), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1017), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1017), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1017), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1017), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1017), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1017), - [aux_sym_host_key_alias_token1] = ACTIONS(1017), - [aux_sym_hostname_token1] = ACTIONS(1017), - [aux_sym_identities_only_token1] = ACTIONS(1017), - [aux_sym_identity_agent_token1] = ACTIONS(1017), - [aux_sym_identity_file_token1] = ACTIONS(1017), - [aux_sym_ignore_unknown_token1] = ACTIONS(1017), - [aux_sym_include_token1] = ACTIONS(1017), - [aux_sym_ip_qos_token1] = ACTIONS(1017), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1017), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1017), - [aux_sym_kex_algorithms_token1] = ACTIONS(1017), - [aux_sym_known_hosts_command_token1] = ACTIONS(1017), - [aux_sym_local_command_token1] = ACTIONS(1017), - [aux_sym_local_forward_token1] = ACTIONS(1017), - [aux_sym_log_level_token1] = ACTIONS(1017), - [aux_sym_log_verbose_token1] = ACTIONS(1017), - [aux_sym_macs_token1] = ACTIONS(1017), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1017), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1017), - [aux_sym_password_authentication_token1] = ACTIONS(1017), - [aux_sym_permit_local_command_token1] = ACTIONS(1017), - [aux_sym_permit_remote_open_token1] = ACTIONS(1017), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1017), - [aux_sym_port_token1] = ACTIONS(1017), - [aux_sym_preferred_authentications_token1] = ACTIONS(1017), - [aux_sym_protocol_token1] = ACTIONS(1017), - [aux_sym_proxy_command_token1] = ACTIONS(1017), - [aux_sym_proxy_jump_token1] = ACTIONS(1017), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1017), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1017), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1017), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1017), - [aux_sym_rekey_limit_token1] = ACTIONS(1017), - [aux_sym_remote_command_token1] = ACTIONS(1017), - [aux_sym_remote_forward_token1] = ACTIONS(1017), - [aux_sym_request_tty_token1] = ACTIONS(1017), - [aux_sym_required_rsa_size_token1] = ACTIONS(1017), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1017), - [aux_sym_security_key_provider_token1] = ACTIONS(1017), - [aux_sym_send_env_token1] = ACTIONS(1017), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1017), - [aux_sym_server_alive_interval_token1] = ACTIONS(1017), - [aux_sym_session_type_token1] = ACTIONS(1017), - [aux_sym_set_env_token1] = ACTIONS(1017), - [aux_sym_stdin_null_token1] = ACTIONS(1017), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1017), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1017), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1017), - [aux_sym_syslog_facility_token1] = ACTIONS(1017), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1017), - [aux_sym_keep_alive_token1] = ACTIONS(1017), - [aux_sym_tunnel_token1] = ACTIONS(1019), - [aux_sym_tunnel_device_token1] = ACTIONS(1017), - [aux_sym_update_host_keys_token1] = ACTIONS(1017), - [aux_sym_use_keychain_token1] = ACTIONS(1017), - [aux_sym_use_roaming_token1] = ACTIONS(1017), - [aux_sym_user_token1] = ACTIONS(1019), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1017), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1017), - [aux_sym_visual_host_key_token1] = ACTIONS(1017), - [aux_sym_xauth_location_token1] = ACTIONS(1017), + [ts_builtin_sym_end] = ACTIONS(1418), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1420), + [aux_sym_match_token1] = ACTIONS(1418), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1418), + [aux_sym_address_family_token1] = ACTIONS(1418), + [aux_sym_batch_mode_token1] = ACTIONS(1418), + [aux_sym_bind_address_token1] = ACTIONS(1418), + [aux_sym_bind_interface_token1] = ACTIONS(1418), + [aux_sym_canonical_domains_token1] = ACTIONS(1418), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1418), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1418), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1418), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1418), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1418), + [aux_sym_certificate_file_token1] = ACTIONS(1418), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1418), + [aux_sym_check_host_ip_token1] = ACTIONS(1418), + [aux_sym_ciphers_token1] = ACTIONS(1418), + [aux_sym_cipher_token1] = ACTIONS(1420), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1418), + [aux_sym_compression_token1] = ACTIONS(1418), + [aux_sym_connection_attempts_token1] = ACTIONS(1418), + [aux_sym_connect_timeout_token1] = ACTIONS(1418), + [aux_sym_control_master_token1] = ACTIONS(1418), + [aux_sym_control_path_token1] = ACTIONS(1418), + [aux_sym_control_persist_token1] = ACTIONS(1418), + [aux_sym_dynamic_forward_token1] = ACTIONS(1418), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1418), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1418), + [aux_sym_escape_char_token1] = ACTIONS(1418), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1418), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1418), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1418), + [aux_sym_forward_agent_token1] = ACTIONS(1418), + [aux_sym_forward_x11_token1] = ACTIONS(1420), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1418), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1418), + [aux_sym_gateway_ports_token1] = ACTIONS(1418), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1418), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1418), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1418), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1418), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1418), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1418), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1418), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1418), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1418), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1418), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1418), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1418), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1418), + [aux_sym_host_key_alias_token1] = ACTIONS(1418), + [aux_sym_hostname_token1] = ACTIONS(1418), + [aux_sym_identities_only_token1] = ACTIONS(1418), + [aux_sym_identity_agent_token1] = ACTIONS(1418), + [aux_sym_identity_file_token1] = ACTIONS(1418), + [aux_sym_ignore_unknown_token1] = ACTIONS(1418), + [aux_sym_include_token1] = ACTIONS(1418), + [aux_sym_ip_qos_token1] = ACTIONS(1418), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1418), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1418), + [aux_sym_kex_algorithms_token1] = ACTIONS(1418), + [aux_sym_known_hosts_command_token1] = ACTIONS(1418), + [aux_sym_local_command_token1] = ACTIONS(1418), + [aux_sym_local_forward_token1] = ACTIONS(1418), + [aux_sym_log_level_token1] = ACTIONS(1418), + [aux_sym_log_verbose_token1] = ACTIONS(1418), + [aux_sym_macs_token1] = ACTIONS(1418), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1418), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1418), + [aux_sym_password_authentication_token1] = ACTIONS(1418), + [aux_sym_permit_local_command_token1] = ACTIONS(1418), + [aux_sym_permit_remote_open_token1] = ACTIONS(1418), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1418), + [aux_sym_port_token1] = ACTIONS(1418), + [aux_sym_preferred_authentications_token1] = ACTIONS(1418), + [aux_sym_protocol_token1] = ACTIONS(1418), + [aux_sym_proxy_command_token1] = ACTIONS(1418), + [aux_sym_proxy_jump_token1] = ACTIONS(1418), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1418), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1418), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1418), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1418), + [aux_sym_rekey_limit_token1] = ACTIONS(1418), + [aux_sym_remote_command_token1] = ACTIONS(1418), + [aux_sym_remote_forward_token1] = ACTIONS(1418), + [aux_sym_request_tty_token1] = ACTIONS(1418), + [aux_sym_required_rsa_size_token1] = ACTIONS(1418), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1418), + [aux_sym_security_key_provider_token1] = ACTIONS(1418), + [aux_sym_send_env_token1] = ACTIONS(1418), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1418), + [aux_sym_server_alive_interval_token1] = ACTIONS(1418), + [aux_sym_session_type_token1] = ACTIONS(1418), + [aux_sym_set_env_token1] = ACTIONS(1418), + [aux_sym_stdin_null_token1] = ACTIONS(1418), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1418), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1418), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1418), + [aux_sym_syslog_facility_token1] = ACTIONS(1418), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1418), + [aux_sym_keep_alive_token1] = ACTIONS(1418), + [aux_sym_tunnel_token1] = ACTIONS(1420), + [aux_sym_tunnel_device_token1] = ACTIONS(1418), + [aux_sym_update_host_keys_token1] = ACTIONS(1418), + [aux_sym_use_keychain_token1] = ACTIONS(1418), + [aux_sym_use_roaming_token1] = ACTIONS(1418), + [aux_sym_user_token1] = ACTIONS(1420), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1418), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1418), + [aux_sym_visual_host_key_token1] = ACTIONS(1418), + [aux_sym_xauth_location_token1] = ACTIONS(1418), }, [642] = { - [ts_builtin_sym_end] = ACTIONS(1023), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1025), - [aux_sym_match_token1] = ACTIONS(1023), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1023), - [aux_sym_address_family_token1] = ACTIONS(1023), - [aux_sym_batch_mode_token1] = ACTIONS(1023), - [aux_sym_bind_address_token1] = ACTIONS(1023), - [aux_sym_bind_interface_token1] = ACTIONS(1023), - [aux_sym_canonical_domains_token1] = ACTIONS(1023), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1023), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1023), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1023), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1023), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1023), - [aux_sym_certificate_file_token1] = ACTIONS(1023), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1023), - [aux_sym_check_host_ip_token1] = ACTIONS(1023), - [aux_sym_ciphers_token1] = ACTIONS(1023), - [aux_sym_cipher_token1] = ACTIONS(1025), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1023), - [aux_sym_compression_token1] = ACTIONS(1023), - [aux_sym_connection_attempts_token1] = ACTIONS(1023), - [aux_sym_connect_timeout_token1] = ACTIONS(1023), - [aux_sym_control_master_token1] = ACTIONS(1023), - [aux_sym_control_path_token1] = ACTIONS(1023), - [aux_sym_control_persist_token1] = ACTIONS(1023), - [aux_sym_dynamic_forward_token1] = ACTIONS(1023), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1023), - [aux_sym_escape_char_token1] = ACTIONS(1023), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1023), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1023), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1023), - [aux_sym_forward_agent_token1] = ACTIONS(1023), - [aux_sym_forward_x11_token1] = ACTIONS(1025), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1023), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1023), - [aux_sym_gateway_ports_token1] = ACTIONS(1023), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1023), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1023), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1023), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1023), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1023), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1023), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1023), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1023), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1023), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1023), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1023), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1023), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1023), - [aux_sym_host_key_alias_token1] = ACTIONS(1023), - [aux_sym_hostname_token1] = ACTIONS(1023), - [aux_sym_identities_only_token1] = ACTIONS(1023), - [aux_sym_identity_agent_token1] = ACTIONS(1023), - [aux_sym_identity_file_token1] = ACTIONS(1023), - [aux_sym_ignore_unknown_token1] = ACTIONS(1023), - [aux_sym_include_token1] = ACTIONS(1023), - [aux_sym_ip_qos_token1] = ACTIONS(1023), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1023), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1023), - [aux_sym_kex_algorithms_token1] = ACTIONS(1023), - [aux_sym_known_hosts_command_token1] = ACTIONS(1023), - [aux_sym_local_command_token1] = ACTIONS(1023), - [aux_sym_local_forward_token1] = ACTIONS(1023), - [aux_sym_log_level_token1] = ACTIONS(1023), - [aux_sym_log_verbose_token1] = ACTIONS(1023), - [aux_sym_macs_token1] = ACTIONS(1023), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1023), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1023), - [aux_sym_password_authentication_token1] = ACTIONS(1023), - [aux_sym_permit_local_command_token1] = ACTIONS(1023), - [aux_sym_permit_remote_open_token1] = ACTIONS(1023), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1023), - [aux_sym_port_token1] = ACTIONS(1023), - [aux_sym_preferred_authentications_token1] = ACTIONS(1023), - [aux_sym_protocol_token1] = ACTIONS(1023), - [aux_sym_proxy_command_token1] = ACTIONS(1023), - [aux_sym_proxy_jump_token1] = ACTIONS(1023), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1023), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1023), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1023), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1023), - [aux_sym_rekey_limit_token1] = ACTIONS(1023), - [aux_sym_remote_command_token1] = ACTIONS(1023), - [aux_sym_remote_forward_token1] = ACTIONS(1023), - [aux_sym_request_tty_token1] = ACTIONS(1023), - [aux_sym_required_rsa_size_token1] = ACTIONS(1023), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1023), - [aux_sym_security_key_provider_token1] = ACTIONS(1023), - [aux_sym_send_env_token1] = ACTIONS(1023), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1023), - [aux_sym_server_alive_interval_token1] = ACTIONS(1023), - [aux_sym_session_type_token1] = ACTIONS(1023), - [aux_sym_set_env_token1] = ACTIONS(1023), - [aux_sym_stdin_null_token1] = ACTIONS(1023), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1023), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1023), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1023), - [aux_sym_syslog_facility_token1] = ACTIONS(1023), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1023), - [aux_sym_keep_alive_token1] = ACTIONS(1023), - [aux_sym_tunnel_token1] = ACTIONS(1025), - [aux_sym_tunnel_device_token1] = ACTIONS(1023), - [aux_sym_update_host_keys_token1] = ACTIONS(1023), - [aux_sym_use_keychain_token1] = ACTIONS(1023), - [aux_sym_use_roaming_token1] = ACTIONS(1023), - [aux_sym_user_token1] = ACTIONS(1025), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1023), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1023), - [aux_sym_visual_host_key_token1] = ACTIONS(1023), - [aux_sym_xauth_location_token1] = ACTIONS(1023), + [ts_builtin_sym_end] = ACTIONS(908), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(910), + [aux_sym_match_token1] = ACTIONS(908), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(908), + [aux_sym_address_family_token1] = ACTIONS(908), + [aux_sym_batch_mode_token1] = ACTIONS(908), + [aux_sym_bind_address_token1] = ACTIONS(908), + [aux_sym_bind_interface_token1] = ACTIONS(908), + [aux_sym_canonical_domains_token1] = ACTIONS(908), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(908), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(908), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(908), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(908), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(908), + [aux_sym_certificate_file_token1] = ACTIONS(908), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(908), + [aux_sym_check_host_ip_token1] = ACTIONS(908), + [aux_sym_ciphers_token1] = ACTIONS(908), + [aux_sym_cipher_token1] = ACTIONS(910), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(908), + [aux_sym_compression_token1] = ACTIONS(908), + [aux_sym_connection_attempts_token1] = ACTIONS(908), + [aux_sym_connect_timeout_token1] = ACTIONS(908), + [aux_sym_control_master_token1] = ACTIONS(908), + [aux_sym_control_path_token1] = ACTIONS(908), + [aux_sym_control_persist_token1] = ACTIONS(908), + [aux_sym_dynamic_forward_token1] = ACTIONS(908), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(908), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(908), + [aux_sym_escape_char_token1] = ACTIONS(908), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(908), + [aux_sym_fingerprint_hash_token1] = ACTIONS(908), + [aux_sym_fork_after_authentication_token1] = ACTIONS(908), + [aux_sym_forward_agent_token1] = ACTIONS(908), + [aux_sym_forward_x11_token1] = ACTIONS(910), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(908), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(908), + [aux_sym_gateway_ports_token1] = ACTIONS(908), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(908), + [aux_sym_gssapi_authentication_token1] = ACTIONS(908), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(908), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(908), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(908), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(908), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(908), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(908), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(908), + [aux_sym_hash_known_hosts_token1] = ACTIONS(908), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(908), + [aux_sym_hostbased_authentication_token1] = ACTIONS(908), + [aux_sym_host_key_algorithms_token1] = ACTIONS(908), + [aux_sym_host_key_alias_token1] = ACTIONS(908), + [aux_sym_hostname_token1] = ACTIONS(908), + [aux_sym_identities_only_token1] = ACTIONS(908), + [aux_sym_identity_agent_token1] = ACTIONS(908), + [aux_sym_identity_file_token1] = ACTIONS(908), + [aux_sym_ignore_unknown_token1] = ACTIONS(908), + [aux_sym_include_token1] = ACTIONS(908), + [aux_sym_ip_qos_token1] = ACTIONS(908), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(908), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(908), + [aux_sym_kex_algorithms_token1] = ACTIONS(908), + [aux_sym_known_hosts_command_token1] = ACTIONS(908), + [aux_sym_local_command_token1] = ACTIONS(908), + [aux_sym_local_forward_token1] = ACTIONS(908), + [aux_sym_log_level_token1] = ACTIONS(908), + [aux_sym_log_verbose_token1] = ACTIONS(908), + [aux_sym_macs_token1] = ACTIONS(908), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(908), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(908), + [aux_sym_password_authentication_token1] = ACTIONS(908), + [aux_sym_permit_local_command_token1] = ACTIONS(908), + [aux_sym_permit_remote_open_token1] = ACTIONS(908), + [aux_sym_pkcs11_provider_token1] = ACTIONS(908), + [aux_sym_port_token1] = ACTIONS(908), + [aux_sym_preferred_authentications_token1] = ACTIONS(908), + [aux_sym_protocol_token1] = ACTIONS(908), + [aux_sym_proxy_command_token1] = ACTIONS(908), + [aux_sym_proxy_jump_token1] = ACTIONS(908), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(908), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(908), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(908), + [aux_sym_pubkey_authentication_token1] = ACTIONS(908), + [aux_sym_rekey_limit_token1] = ACTIONS(908), + [aux_sym_remote_command_token1] = ACTIONS(908), + [aux_sym_remote_forward_token1] = ACTIONS(908), + [aux_sym_request_tty_token1] = ACTIONS(908), + [aux_sym_required_rsa_size_token1] = ACTIONS(908), + [aux_sym_revoked_host_keys_token1] = ACTIONS(908), + [aux_sym_security_key_provider_token1] = ACTIONS(908), + [aux_sym_send_env_token1] = ACTIONS(908), + [aux_sym_server_alive_count_max_token1] = ACTIONS(908), + [aux_sym_server_alive_interval_token1] = ACTIONS(908), + [aux_sym_session_type_token1] = ACTIONS(908), + [aux_sym_set_env_token1] = ACTIONS(908), + [aux_sym_stdin_null_token1] = ACTIONS(908), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(908), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(908), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(908), + [aux_sym_syslog_facility_token1] = ACTIONS(908), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(908), + [aux_sym_keep_alive_token1] = ACTIONS(908), + [aux_sym_tunnel_token1] = ACTIONS(910), + [aux_sym_tunnel_device_token1] = ACTIONS(908), + [aux_sym_update_host_keys_token1] = ACTIONS(908), + [aux_sym_use_keychain_token1] = ACTIONS(908), + [aux_sym_use_roaming_token1] = ACTIONS(908), + [aux_sym_user_token1] = ACTIONS(910), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(908), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(908), + [aux_sym_visual_host_key_token1] = ACTIONS(908), + [aux_sym_xauth_location_token1] = ACTIONS(908), }, [643] = { - [ts_builtin_sym_end] = ACTIONS(1029), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1031), - [aux_sym_match_token1] = ACTIONS(1029), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1029), - [aux_sym_address_family_token1] = ACTIONS(1029), - [aux_sym_batch_mode_token1] = ACTIONS(1029), - [aux_sym_bind_address_token1] = ACTIONS(1029), - [aux_sym_bind_interface_token1] = ACTIONS(1029), - [aux_sym_canonical_domains_token1] = ACTIONS(1029), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1029), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1029), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1029), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1029), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1029), - [aux_sym_certificate_file_token1] = ACTIONS(1029), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1029), - [aux_sym_check_host_ip_token1] = ACTIONS(1029), - [aux_sym_ciphers_token1] = ACTIONS(1029), - [aux_sym_cipher_token1] = ACTIONS(1031), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1029), - [aux_sym_compression_token1] = ACTIONS(1029), - [aux_sym_connection_attempts_token1] = ACTIONS(1029), - [aux_sym_connect_timeout_token1] = ACTIONS(1029), - [aux_sym_control_master_token1] = ACTIONS(1029), - [aux_sym_control_path_token1] = ACTIONS(1029), - [aux_sym_control_persist_token1] = ACTIONS(1029), - [aux_sym_dynamic_forward_token1] = ACTIONS(1029), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1029), - [aux_sym_escape_char_token1] = ACTIONS(1029), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1029), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1029), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1029), - [aux_sym_forward_agent_token1] = ACTIONS(1029), - [aux_sym_forward_x11_token1] = ACTIONS(1031), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1029), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1029), - [aux_sym_gateway_ports_token1] = ACTIONS(1029), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1029), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1029), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1029), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1029), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1029), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1029), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1029), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1029), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1029), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1029), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1029), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1029), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1029), - [aux_sym_host_key_alias_token1] = ACTIONS(1029), - [aux_sym_hostname_token1] = ACTIONS(1029), - [aux_sym_identities_only_token1] = ACTIONS(1029), - [aux_sym_identity_agent_token1] = ACTIONS(1029), - [aux_sym_identity_file_token1] = ACTIONS(1029), - [aux_sym_ignore_unknown_token1] = ACTIONS(1029), - [aux_sym_include_token1] = ACTIONS(1029), - [aux_sym_ip_qos_token1] = ACTIONS(1029), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1029), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1029), - [aux_sym_kex_algorithms_token1] = ACTIONS(1029), - [aux_sym_known_hosts_command_token1] = ACTIONS(1029), - [aux_sym_local_command_token1] = ACTIONS(1029), - [aux_sym_local_forward_token1] = ACTIONS(1029), - [aux_sym_log_level_token1] = ACTIONS(1029), - [aux_sym_log_verbose_token1] = ACTIONS(1029), - [aux_sym_macs_token1] = ACTIONS(1029), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1029), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1029), - [aux_sym_password_authentication_token1] = ACTIONS(1029), - [aux_sym_permit_local_command_token1] = ACTIONS(1029), - [aux_sym_permit_remote_open_token1] = ACTIONS(1029), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1029), - [aux_sym_port_token1] = ACTIONS(1029), - [aux_sym_preferred_authentications_token1] = ACTIONS(1029), - [aux_sym_protocol_token1] = ACTIONS(1029), - [aux_sym_proxy_command_token1] = ACTIONS(1029), - [aux_sym_proxy_jump_token1] = ACTIONS(1029), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1029), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1029), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1029), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1029), - [aux_sym_rekey_limit_token1] = ACTIONS(1029), - [aux_sym_remote_command_token1] = ACTIONS(1029), - [aux_sym_remote_forward_token1] = ACTIONS(1029), - [aux_sym_request_tty_token1] = ACTIONS(1029), - [aux_sym_required_rsa_size_token1] = ACTIONS(1029), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1029), - [aux_sym_security_key_provider_token1] = ACTIONS(1029), - [aux_sym_send_env_token1] = ACTIONS(1029), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1029), - [aux_sym_server_alive_interval_token1] = ACTIONS(1029), - [aux_sym_session_type_token1] = ACTIONS(1029), - [aux_sym_set_env_token1] = ACTIONS(1029), - [aux_sym_stdin_null_token1] = ACTIONS(1029), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1029), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1029), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1029), - [aux_sym_syslog_facility_token1] = ACTIONS(1029), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1029), - [aux_sym_keep_alive_token1] = ACTIONS(1029), - [aux_sym_tunnel_token1] = ACTIONS(1031), - [aux_sym_tunnel_device_token1] = ACTIONS(1029), - [aux_sym_update_host_keys_token1] = ACTIONS(1029), - [aux_sym_use_keychain_token1] = ACTIONS(1029), - [aux_sym_use_roaming_token1] = ACTIONS(1029), - [aux_sym_user_token1] = ACTIONS(1031), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1029), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1029), - [aux_sym_visual_host_key_token1] = ACTIONS(1029), - [aux_sym_xauth_location_token1] = ACTIONS(1029), + [ts_builtin_sym_end] = ACTIONS(1424), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1426), + [aux_sym_match_token1] = ACTIONS(1424), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1424), + [aux_sym_address_family_token1] = ACTIONS(1424), + [aux_sym_batch_mode_token1] = ACTIONS(1424), + [aux_sym_bind_address_token1] = ACTIONS(1424), + [aux_sym_bind_interface_token1] = ACTIONS(1424), + [aux_sym_canonical_domains_token1] = ACTIONS(1424), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1424), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1424), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1424), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1424), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1424), + [aux_sym_certificate_file_token1] = ACTIONS(1424), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1424), + [aux_sym_check_host_ip_token1] = ACTIONS(1424), + [aux_sym_ciphers_token1] = ACTIONS(1424), + [aux_sym_cipher_token1] = ACTIONS(1426), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1424), + [aux_sym_compression_token1] = ACTIONS(1424), + [aux_sym_connection_attempts_token1] = ACTIONS(1424), + [aux_sym_connect_timeout_token1] = ACTIONS(1424), + [aux_sym_control_master_token1] = ACTIONS(1424), + [aux_sym_control_path_token1] = ACTIONS(1424), + [aux_sym_control_persist_token1] = ACTIONS(1424), + [aux_sym_dynamic_forward_token1] = ACTIONS(1424), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1424), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1424), + [aux_sym_escape_char_token1] = ACTIONS(1424), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1424), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1424), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1424), + [aux_sym_forward_agent_token1] = ACTIONS(1424), + [aux_sym_forward_x11_token1] = ACTIONS(1426), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1424), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1424), + [aux_sym_gateway_ports_token1] = ACTIONS(1424), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1424), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1424), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1424), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1424), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1424), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1424), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1424), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1424), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1424), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1424), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1424), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1424), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1424), + [aux_sym_host_key_alias_token1] = ACTIONS(1424), + [aux_sym_hostname_token1] = ACTIONS(1424), + [aux_sym_identities_only_token1] = ACTIONS(1424), + [aux_sym_identity_agent_token1] = ACTIONS(1424), + [aux_sym_identity_file_token1] = ACTIONS(1424), + [aux_sym_ignore_unknown_token1] = ACTIONS(1424), + [aux_sym_include_token1] = ACTIONS(1424), + [aux_sym_ip_qos_token1] = ACTIONS(1424), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1424), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1424), + [aux_sym_kex_algorithms_token1] = ACTIONS(1424), + [aux_sym_known_hosts_command_token1] = ACTIONS(1424), + [aux_sym_local_command_token1] = ACTIONS(1424), + [aux_sym_local_forward_token1] = ACTIONS(1424), + [aux_sym_log_level_token1] = ACTIONS(1424), + [aux_sym_log_verbose_token1] = ACTIONS(1424), + [aux_sym_macs_token1] = ACTIONS(1424), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1424), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1424), + [aux_sym_password_authentication_token1] = ACTIONS(1424), + [aux_sym_permit_local_command_token1] = ACTIONS(1424), + [aux_sym_permit_remote_open_token1] = ACTIONS(1424), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1424), + [aux_sym_port_token1] = ACTIONS(1424), + [aux_sym_preferred_authentications_token1] = ACTIONS(1424), + [aux_sym_protocol_token1] = ACTIONS(1424), + [aux_sym_proxy_command_token1] = ACTIONS(1424), + [aux_sym_proxy_jump_token1] = ACTIONS(1424), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1424), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1424), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1424), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1424), + [aux_sym_rekey_limit_token1] = ACTIONS(1424), + [aux_sym_remote_command_token1] = ACTIONS(1424), + [aux_sym_remote_forward_token1] = ACTIONS(1424), + [aux_sym_request_tty_token1] = ACTIONS(1424), + [aux_sym_required_rsa_size_token1] = ACTIONS(1424), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1424), + [aux_sym_security_key_provider_token1] = ACTIONS(1424), + [aux_sym_send_env_token1] = ACTIONS(1424), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1424), + [aux_sym_server_alive_interval_token1] = ACTIONS(1424), + [aux_sym_session_type_token1] = ACTIONS(1424), + [aux_sym_set_env_token1] = ACTIONS(1424), + [aux_sym_stdin_null_token1] = ACTIONS(1424), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1424), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1424), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1424), + [aux_sym_syslog_facility_token1] = ACTIONS(1424), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1424), + [aux_sym_keep_alive_token1] = ACTIONS(1424), + [aux_sym_tunnel_token1] = ACTIONS(1426), + [aux_sym_tunnel_device_token1] = ACTIONS(1424), + [aux_sym_update_host_keys_token1] = ACTIONS(1424), + [aux_sym_use_keychain_token1] = ACTIONS(1424), + [aux_sym_use_roaming_token1] = ACTIONS(1424), + [aux_sym_user_token1] = ACTIONS(1426), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1424), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1424), + [aux_sym_visual_host_key_token1] = ACTIONS(1424), + [aux_sym_xauth_location_token1] = ACTIONS(1424), }, [644] = { - [ts_builtin_sym_end] = ACTIONS(1035), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1037), - [aux_sym_match_token1] = ACTIONS(1035), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1035), - [aux_sym_address_family_token1] = ACTIONS(1035), - [aux_sym_batch_mode_token1] = ACTIONS(1035), - [aux_sym_bind_address_token1] = ACTIONS(1035), - [aux_sym_bind_interface_token1] = ACTIONS(1035), - [aux_sym_canonical_domains_token1] = ACTIONS(1035), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1035), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1035), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1035), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1035), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1035), - [aux_sym_certificate_file_token1] = ACTIONS(1035), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1035), - [aux_sym_check_host_ip_token1] = ACTIONS(1035), - [aux_sym_ciphers_token1] = ACTIONS(1035), - [aux_sym_cipher_token1] = ACTIONS(1037), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1035), - [aux_sym_compression_token1] = ACTIONS(1035), - [aux_sym_connection_attempts_token1] = ACTIONS(1035), - [aux_sym_connect_timeout_token1] = ACTIONS(1035), - [aux_sym_control_master_token1] = ACTIONS(1035), - [aux_sym_control_path_token1] = ACTIONS(1035), - [aux_sym_control_persist_token1] = ACTIONS(1035), - [aux_sym_dynamic_forward_token1] = ACTIONS(1035), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1035), - [aux_sym_escape_char_token1] = ACTIONS(1035), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1035), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1035), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1035), - [aux_sym_forward_agent_token1] = ACTIONS(1035), - [aux_sym_forward_x11_token1] = ACTIONS(1037), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1035), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1035), - [aux_sym_gateway_ports_token1] = ACTIONS(1035), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1035), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1035), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1035), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1035), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1035), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1035), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1035), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1035), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1035), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1035), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1035), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1035), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1035), - [aux_sym_host_key_alias_token1] = ACTIONS(1035), - [aux_sym_hostname_token1] = ACTIONS(1035), - [aux_sym_identities_only_token1] = ACTIONS(1035), - [aux_sym_identity_agent_token1] = ACTIONS(1035), - [aux_sym_identity_file_token1] = ACTIONS(1035), - [aux_sym_ignore_unknown_token1] = ACTIONS(1035), - [aux_sym_include_token1] = ACTIONS(1035), - [aux_sym_ip_qos_token1] = ACTIONS(1035), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1035), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1035), - [aux_sym_kex_algorithms_token1] = ACTIONS(1035), - [aux_sym_known_hosts_command_token1] = ACTIONS(1035), - [aux_sym_local_command_token1] = ACTIONS(1035), - [aux_sym_local_forward_token1] = ACTIONS(1035), - [aux_sym_log_level_token1] = ACTIONS(1035), - [aux_sym_log_verbose_token1] = ACTIONS(1035), - [aux_sym_macs_token1] = ACTIONS(1035), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1035), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1035), - [aux_sym_password_authentication_token1] = ACTIONS(1035), - [aux_sym_permit_local_command_token1] = ACTIONS(1035), - [aux_sym_permit_remote_open_token1] = ACTIONS(1035), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1035), - [aux_sym_port_token1] = ACTIONS(1035), - [aux_sym_preferred_authentications_token1] = ACTIONS(1035), - [aux_sym_protocol_token1] = ACTIONS(1035), - [aux_sym_proxy_command_token1] = ACTIONS(1035), - [aux_sym_proxy_jump_token1] = ACTIONS(1035), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1035), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1035), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1035), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1035), - [aux_sym_rekey_limit_token1] = ACTIONS(1035), - [aux_sym_remote_command_token1] = ACTIONS(1035), - [aux_sym_remote_forward_token1] = ACTIONS(1035), - [aux_sym_request_tty_token1] = ACTIONS(1035), - [aux_sym_required_rsa_size_token1] = ACTIONS(1035), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1035), - [aux_sym_security_key_provider_token1] = ACTIONS(1035), - [aux_sym_send_env_token1] = ACTIONS(1035), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1035), - [aux_sym_server_alive_interval_token1] = ACTIONS(1035), - [aux_sym_session_type_token1] = ACTIONS(1035), - [aux_sym_set_env_token1] = ACTIONS(1035), - [aux_sym_stdin_null_token1] = ACTIONS(1035), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1035), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1035), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1035), - [aux_sym_syslog_facility_token1] = ACTIONS(1035), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1035), - [aux_sym_keep_alive_token1] = ACTIONS(1035), - [aux_sym_tunnel_token1] = ACTIONS(1037), - [aux_sym_tunnel_device_token1] = ACTIONS(1035), - [aux_sym_update_host_keys_token1] = ACTIONS(1035), - [aux_sym_use_keychain_token1] = ACTIONS(1035), - [aux_sym_use_roaming_token1] = ACTIONS(1035), - [aux_sym_user_token1] = ACTIONS(1037), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1035), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1035), - [aux_sym_visual_host_key_token1] = ACTIONS(1035), - [aux_sym_xauth_location_token1] = ACTIONS(1035), + [ts_builtin_sym_end] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3446), + [aux_sym_match_token1] = ACTIONS(3444), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3444), + [aux_sym_address_family_token1] = ACTIONS(3444), + [aux_sym_batch_mode_token1] = ACTIONS(3444), + [aux_sym_bind_address_token1] = ACTIONS(3444), + [aux_sym_bind_interface_token1] = ACTIONS(3444), + [aux_sym_canonical_domains_token1] = ACTIONS(3444), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3444), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3444), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3444), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3444), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3444), + [aux_sym_certificate_file_token1] = ACTIONS(3444), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3444), + [aux_sym_check_host_ip_token1] = ACTIONS(3444), + [aux_sym_ciphers_token1] = ACTIONS(3444), + [aux_sym_cipher_token1] = ACTIONS(3446), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3444), + [aux_sym_compression_token1] = ACTIONS(3444), + [aux_sym_connection_attempts_token1] = ACTIONS(3444), + [aux_sym_connect_timeout_token1] = ACTIONS(3444), + [aux_sym_control_master_token1] = ACTIONS(3444), + [aux_sym_control_path_token1] = ACTIONS(3444), + [aux_sym_control_persist_token1] = ACTIONS(3444), + [aux_sym_dynamic_forward_token1] = ACTIONS(3444), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3444), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3444), + [aux_sym_escape_char_token1] = ACTIONS(3444), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3444), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3444), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3444), + [aux_sym_forward_agent_token1] = ACTIONS(3444), + [aux_sym_forward_x11_token1] = ACTIONS(3446), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3444), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3444), + [aux_sym_gateway_ports_token1] = ACTIONS(3444), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3444), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3444), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3444), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3444), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3444), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3444), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3444), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3444), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3444), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3444), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3444), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3444), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3444), + [aux_sym_host_key_alias_token1] = ACTIONS(3444), + [aux_sym_hostname_token1] = ACTIONS(3444), + [aux_sym_identities_only_token1] = ACTIONS(3444), + [aux_sym_identity_agent_token1] = ACTIONS(3444), + [aux_sym_identity_file_token1] = ACTIONS(3444), + [aux_sym_ignore_unknown_token1] = ACTIONS(3444), + [aux_sym_include_token1] = ACTIONS(3444), + [aux_sym_ip_qos_token1] = ACTIONS(3444), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3444), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3444), + [aux_sym_kex_algorithms_token1] = ACTIONS(3444), + [aux_sym_known_hosts_command_token1] = ACTIONS(3444), + [aux_sym_local_command_token1] = ACTIONS(3444), + [aux_sym_local_forward_token1] = ACTIONS(3444), + [aux_sym_log_level_token1] = ACTIONS(3444), + [aux_sym_log_verbose_token1] = ACTIONS(3444), + [aux_sym_macs_token1] = ACTIONS(3444), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3444), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3444), + [aux_sym_password_authentication_token1] = ACTIONS(3444), + [aux_sym_permit_local_command_token1] = ACTIONS(3444), + [aux_sym_permit_remote_open_token1] = ACTIONS(3444), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3444), + [aux_sym_port_token1] = ACTIONS(3444), + [aux_sym_preferred_authentications_token1] = ACTIONS(3444), + [aux_sym_protocol_token1] = ACTIONS(3444), + [aux_sym_proxy_command_token1] = ACTIONS(3444), + [aux_sym_proxy_jump_token1] = ACTIONS(3444), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3444), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3444), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3444), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3444), + [aux_sym_rekey_limit_token1] = ACTIONS(3444), + [aux_sym_remote_command_token1] = ACTIONS(3444), + [aux_sym_remote_forward_token1] = ACTIONS(3444), + [aux_sym_request_tty_token1] = ACTIONS(3444), + [aux_sym_required_rsa_size_token1] = ACTIONS(3444), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3444), + [aux_sym_security_key_provider_token1] = ACTIONS(3444), + [aux_sym_send_env_token1] = ACTIONS(3444), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3444), + [aux_sym_server_alive_interval_token1] = ACTIONS(3444), + [aux_sym_session_type_token1] = ACTIONS(3444), + [aux_sym_set_env_token1] = ACTIONS(3444), + [aux_sym_stdin_null_token1] = ACTIONS(3444), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3444), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3444), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3444), + [aux_sym_syslog_facility_token1] = ACTIONS(3444), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3444), + [aux_sym_keep_alive_token1] = ACTIONS(3444), + [aux_sym_tunnel_token1] = ACTIONS(3446), + [aux_sym_tunnel_device_token1] = ACTIONS(3444), + [aux_sym_update_host_keys_token1] = ACTIONS(3444), + [aux_sym_use_keychain_token1] = ACTIONS(3444), + [aux_sym_use_roaming_token1] = ACTIONS(3444), + [aux_sym_user_token1] = ACTIONS(3446), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3444), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3444), + [aux_sym_visual_host_key_token1] = ACTIONS(3444), + [aux_sym_xauth_location_token1] = ACTIONS(3444), }, [645] = { - [ts_builtin_sym_end] = ACTIONS(1041), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1043), - [aux_sym_match_token1] = ACTIONS(1041), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1041), - [aux_sym_address_family_token1] = ACTIONS(1041), - [aux_sym_batch_mode_token1] = ACTIONS(1041), - [aux_sym_bind_address_token1] = ACTIONS(1041), - [aux_sym_bind_interface_token1] = ACTIONS(1041), - [aux_sym_canonical_domains_token1] = ACTIONS(1041), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1041), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1041), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1041), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1041), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1041), - [aux_sym_certificate_file_token1] = ACTIONS(1041), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1041), - [aux_sym_check_host_ip_token1] = ACTIONS(1041), - [aux_sym_ciphers_token1] = ACTIONS(1041), - [aux_sym_cipher_token1] = ACTIONS(1043), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1041), - [aux_sym_compression_token1] = ACTIONS(1041), - [aux_sym_connection_attempts_token1] = ACTIONS(1041), - [aux_sym_connect_timeout_token1] = ACTIONS(1041), - [aux_sym_control_master_token1] = ACTIONS(1041), - [aux_sym_control_path_token1] = ACTIONS(1041), - [aux_sym_control_persist_token1] = ACTIONS(1041), - [aux_sym_dynamic_forward_token1] = ACTIONS(1041), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1041), - [aux_sym_escape_char_token1] = ACTIONS(1041), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1041), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1041), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1041), - [aux_sym_forward_agent_token1] = ACTIONS(1041), - [aux_sym_forward_x11_token1] = ACTIONS(1043), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1041), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1041), - [aux_sym_gateway_ports_token1] = ACTIONS(1041), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1041), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1041), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1041), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1041), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1041), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1041), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1041), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1041), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1041), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1041), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1041), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1041), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1041), - [aux_sym_host_key_alias_token1] = ACTIONS(1041), - [aux_sym_hostname_token1] = ACTIONS(1041), - [aux_sym_identities_only_token1] = ACTIONS(1041), - [aux_sym_identity_agent_token1] = ACTIONS(1041), - [aux_sym_identity_file_token1] = ACTIONS(1041), - [aux_sym_ignore_unknown_token1] = ACTIONS(1041), - [aux_sym_include_token1] = ACTIONS(1041), - [aux_sym_ip_qos_token1] = ACTIONS(1041), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1041), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1041), - [aux_sym_kex_algorithms_token1] = ACTIONS(1041), - [aux_sym_known_hosts_command_token1] = ACTIONS(1041), - [aux_sym_local_command_token1] = ACTIONS(1041), - [aux_sym_local_forward_token1] = ACTIONS(1041), - [aux_sym_log_level_token1] = ACTIONS(1041), - [aux_sym_log_verbose_token1] = ACTIONS(1041), - [aux_sym_macs_token1] = ACTIONS(1041), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1041), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1041), - [aux_sym_password_authentication_token1] = ACTIONS(1041), - [aux_sym_permit_local_command_token1] = ACTIONS(1041), - [aux_sym_permit_remote_open_token1] = ACTIONS(1041), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1041), - [aux_sym_port_token1] = ACTIONS(1041), - [aux_sym_preferred_authentications_token1] = ACTIONS(1041), - [aux_sym_protocol_token1] = ACTIONS(1041), - [aux_sym_proxy_command_token1] = ACTIONS(1041), - [aux_sym_proxy_jump_token1] = ACTIONS(1041), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1041), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1041), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1041), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1041), - [aux_sym_rekey_limit_token1] = ACTIONS(1041), - [aux_sym_remote_command_token1] = ACTIONS(1041), - [aux_sym_remote_forward_token1] = ACTIONS(1041), - [aux_sym_request_tty_token1] = ACTIONS(1041), - [aux_sym_required_rsa_size_token1] = ACTIONS(1041), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1041), - [aux_sym_security_key_provider_token1] = ACTIONS(1041), - [aux_sym_send_env_token1] = ACTIONS(1041), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1041), - [aux_sym_server_alive_interval_token1] = ACTIONS(1041), - [aux_sym_session_type_token1] = ACTIONS(1041), - [aux_sym_set_env_token1] = ACTIONS(1041), - [aux_sym_stdin_null_token1] = ACTIONS(1041), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1041), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1041), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1041), - [aux_sym_syslog_facility_token1] = ACTIONS(1041), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1041), - [aux_sym_keep_alive_token1] = ACTIONS(1041), - [aux_sym_tunnel_token1] = ACTIONS(1043), - [aux_sym_tunnel_device_token1] = ACTIONS(1041), - [aux_sym_update_host_keys_token1] = ACTIONS(1041), - [aux_sym_use_keychain_token1] = ACTIONS(1041), - [aux_sym_use_roaming_token1] = ACTIONS(1041), - [aux_sym_user_token1] = ACTIONS(1043), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1041), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1041), - [aux_sym_visual_host_key_token1] = ACTIONS(1041), - [aux_sym_xauth_location_token1] = ACTIONS(1041), + [ts_builtin_sym_end] = ACTIONS(902), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(904), + [aux_sym_match_token1] = ACTIONS(902), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(902), + [aux_sym_address_family_token1] = ACTIONS(902), + [aux_sym_batch_mode_token1] = ACTIONS(902), + [aux_sym_bind_address_token1] = ACTIONS(902), + [aux_sym_bind_interface_token1] = ACTIONS(902), + [aux_sym_canonical_domains_token1] = ACTIONS(902), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(902), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(902), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(902), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(902), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(902), + [aux_sym_certificate_file_token1] = ACTIONS(902), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(902), + [aux_sym_check_host_ip_token1] = ACTIONS(902), + [aux_sym_ciphers_token1] = ACTIONS(902), + [aux_sym_cipher_token1] = ACTIONS(904), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(902), + [aux_sym_compression_token1] = ACTIONS(902), + [aux_sym_connection_attempts_token1] = ACTIONS(902), + [aux_sym_connect_timeout_token1] = ACTIONS(902), + [aux_sym_control_master_token1] = ACTIONS(902), + [aux_sym_control_path_token1] = ACTIONS(902), + [aux_sym_control_persist_token1] = ACTIONS(902), + [aux_sym_dynamic_forward_token1] = ACTIONS(902), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(902), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(902), + [aux_sym_escape_char_token1] = ACTIONS(902), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(902), + [aux_sym_fingerprint_hash_token1] = ACTIONS(902), + [aux_sym_fork_after_authentication_token1] = ACTIONS(902), + [aux_sym_forward_agent_token1] = ACTIONS(902), + [aux_sym_forward_x11_token1] = ACTIONS(904), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(902), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(902), + [aux_sym_gateway_ports_token1] = ACTIONS(902), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(902), + [aux_sym_gssapi_authentication_token1] = ACTIONS(902), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(902), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(902), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(902), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(902), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(902), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(902), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(902), + [aux_sym_hash_known_hosts_token1] = ACTIONS(902), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(902), + [aux_sym_hostbased_authentication_token1] = ACTIONS(902), + [aux_sym_host_key_algorithms_token1] = ACTIONS(902), + [aux_sym_host_key_alias_token1] = ACTIONS(902), + [aux_sym_hostname_token1] = ACTIONS(902), + [aux_sym_identities_only_token1] = ACTIONS(902), + [aux_sym_identity_agent_token1] = ACTIONS(902), + [aux_sym_identity_file_token1] = ACTIONS(902), + [aux_sym_ignore_unknown_token1] = ACTIONS(902), + [aux_sym_include_token1] = ACTIONS(902), + [aux_sym_ip_qos_token1] = ACTIONS(902), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(902), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(902), + [aux_sym_kex_algorithms_token1] = ACTIONS(902), + [aux_sym_known_hosts_command_token1] = ACTIONS(902), + [aux_sym_local_command_token1] = ACTIONS(902), + [aux_sym_local_forward_token1] = ACTIONS(902), + [aux_sym_log_level_token1] = ACTIONS(902), + [aux_sym_log_verbose_token1] = ACTIONS(902), + [aux_sym_macs_token1] = ACTIONS(902), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(902), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(902), + [aux_sym_password_authentication_token1] = ACTIONS(902), + [aux_sym_permit_local_command_token1] = ACTIONS(902), + [aux_sym_permit_remote_open_token1] = ACTIONS(902), + [aux_sym_pkcs11_provider_token1] = ACTIONS(902), + [aux_sym_port_token1] = ACTIONS(902), + [aux_sym_preferred_authentications_token1] = ACTIONS(902), + [aux_sym_protocol_token1] = ACTIONS(902), + [aux_sym_proxy_command_token1] = ACTIONS(902), + [aux_sym_proxy_jump_token1] = ACTIONS(902), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(902), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(902), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(902), + [aux_sym_pubkey_authentication_token1] = ACTIONS(902), + [aux_sym_rekey_limit_token1] = ACTIONS(902), + [aux_sym_remote_command_token1] = ACTIONS(902), + [aux_sym_remote_forward_token1] = ACTIONS(902), + [aux_sym_request_tty_token1] = ACTIONS(902), + [aux_sym_required_rsa_size_token1] = ACTIONS(902), + [aux_sym_revoked_host_keys_token1] = ACTIONS(902), + [aux_sym_security_key_provider_token1] = ACTIONS(902), + [aux_sym_send_env_token1] = ACTIONS(902), + [aux_sym_server_alive_count_max_token1] = ACTIONS(902), + [aux_sym_server_alive_interval_token1] = ACTIONS(902), + [aux_sym_session_type_token1] = ACTIONS(902), + [aux_sym_set_env_token1] = ACTIONS(902), + [aux_sym_stdin_null_token1] = ACTIONS(902), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(902), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(902), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(902), + [aux_sym_syslog_facility_token1] = ACTIONS(902), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(902), + [aux_sym_keep_alive_token1] = ACTIONS(902), + [aux_sym_tunnel_token1] = ACTIONS(904), + [aux_sym_tunnel_device_token1] = ACTIONS(902), + [aux_sym_update_host_keys_token1] = ACTIONS(902), + [aux_sym_use_keychain_token1] = ACTIONS(902), + [aux_sym_use_roaming_token1] = ACTIONS(902), + [aux_sym_user_token1] = ACTIONS(904), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(902), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(902), + [aux_sym_visual_host_key_token1] = ACTIONS(902), + [aux_sym_xauth_location_token1] = ACTIONS(902), }, [646] = { - [ts_builtin_sym_end] = ACTIONS(1047), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1049), - [aux_sym_match_token1] = ACTIONS(1047), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1047), - [aux_sym_address_family_token1] = ACTIONS(1047), - [aux_sym_batch_mode_token1] = ACTIONS(1047), - [aux_sym_bind_address_token1] = ACTIONS(1047), - [aux_sym_bind_interface_token1] = ACTIONS(1047), - [aux_sym_canonical_domains_token1] = ACTIONS(1047), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1047), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1047), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1047), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1047), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1047), - [aux_sym_certificate_file_token1] = ACTIONS(1047), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1047), - [aux_sym_check_host_ip_token1] = ACTIONS(1047), - [aux_sym_ciphers_token1] = ACTIONS(1047), - [aux_sym_cipher_token1] = ACTIONS(1049), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1047), - [aux_sym_compression_token1] = ACTIONS(1047), - [aux_sym_connection_attempts_token1] = ACTIONS(1047), - [aux_sym_connect_timeout_token1] = ACTIONS(1047), - [aux_sym_control_master_token1] = ACTIONS(1047), - [aux_sym_control_path_token1] = ACTIONS(1047), - [aux_sym_control_persist_token1] = ACTIONS(1047), - [aux_sym_dynamic_forward_token1] = ACTIONS(1047), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1047), - [aux_sym_escape_char_token1] = ACTIONS(1047), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1047), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1047), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1047), - [aux_sym_forward_agent_token1] = ACTIONS(1047), - [aux_sym_forward_x11_token1] = ACTIONS(1049), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1047), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1047), - [aux_sym_gateway_ports_token1] = ACTIONS(1047), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1047), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1047), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1047), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1047), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1047), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1047), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1047), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1047), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1047), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1047), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1047), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1047), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1047), - [aux_sym_host_key_alias_token1] = ACTIONS(1047), - [aux_sym_hostname_token1] = ACTIONS(1047), - [aux_sym_identities_only_token1] = ACTIONS(1047), - [aux_sym_identity_agent_token1] = ACTIONS(1047), - [aux_sym_identity_file_token1] = ACTIONS(1047), - [aux_sym_ignore_unknown_token1] = ACTIONS(1047), - [aux_sym_include_token1] = ACTIONS(1047), - [aux_sym_ip_qos_token1] = ACTIONS(1047), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1047), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1047), - [aux_sym_kex_algorithms_token1] = ACTIONS(1047), - [aux_sym_known_hosts_command_token1] = ACTIONS(1047), - [aux_sym_local_command_token1] = ACTIONS(1047), - [aux_sym_local_forward_token1] = ACTIONS(1047), - [aux_sym_log_level_token1] = ACTIONS(1047), - [aux_sym_log_verbose_token1] = ACTIONS(1047), - [aux_sym_macs_token1] = ACTIONS(1047), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1047), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1047), - [aux_sym_password_authentication_token1] = ACTIONS(1047), - [aux_sym_permit_local_command_token1] = ACTIONS(1047), - [aux_sym_permit_remote_open_token1] = ACTIONS(1047), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1047), - [aux_sym_port_token1] = ACTIONS(1047), - [aux_sym_preferred_authentications_token1] = ACTIONS(1047), - [aux_sym_protocol_token1] = ACTIONS(1047), - [aux_sym_proxy_command_token1] = ACTIONS(1047), - [aux_sym_proxy_jump_token1] = ACTIONS(1047), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1047), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1047), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1047), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1047), - [aux_sym_rekey_limit_token1] = ACTIONS(1047), - [aux_sym_remote_command_token1] = ACTIONS(1047), - [aux_sym_remote_forward_token1] = ACTIONS(1047), - [aux_sym_request_tty_token1] = ACTIONS(1047), - [aux_sym_required_rsa_size_token1] = ACTIONS(1047), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1047), - [aux_sym_security_key_provider_token1] = ACTIONS(1047), - [aux_sym_send_env_token1] = ACTIONS(1047), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1047), - [aux_sym_server_alive_interval_token1] = ACTIONS(1047), - [aux_sym_session_type_token1] = ACTIONS(1047), - [aux_sym_set_env_token1] = ACTIONS(1047), - [aux_sym_stdin_null_token1] = ACTIONS(1047), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1047), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1047), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1047), - [aux_sym_syslog_facility_token1] = ACTIONS(1047), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1047), - [aux_sym_keep_alive_token1] = ACTIONS(1047), - [aux_sym_tunnel_token1] = ACTIONS(1049), - [aux_sym_tunnel_device_token1] = ACTIONS(1047), - [aux_sym_update_host_keys_token1] = ACTIONS(1047), - [aux_sym_use_keychain_token1] = ACTIONS(1047), - [aux_sym_use_roaming_token1] = ACTIONS(1047), - [aux_sym_user_token1] = ACTIONS(1049), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1047), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1047), - [aux_sym_visual_host_key_token1] = ACTIONS(1047), - [aux_sym_xauth_location_token1] = ACTIONS(1047), + [ts_builtin_sym_end] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1432), + [aux_sym_match_token1] = ACTIONS(1430), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1430), + [aux_sym_address_family_token1] = ACTIONS(1430), + [aux_sym_batch_mode_token1] = ACTIONS(1430), + [aux_sym_bind_address_token1] = ACTIONS(1430), + [aux_sym_bind_interface_token1] = ACTIONS(1430), + [aux_sym_canonical_domains_token1] = ACTIONS(1430), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1430), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1430), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1430), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1430), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1430), + [aux_sym_certificate_file_token1] = ACTIONS(1430), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1430), + [aux_sym_check_host_ip_token1] = ACTIONS(1430), + [aux_sym_ciphers_token1] = ACTIONS(1430), + [aux_sym_cipher_token1] = ACTIONS(1432), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1430), + [aux_sym_compression_token1] = ACTIONS(1430), + [aux_sym_connection_attempts_token1] = ACTIONS(1430), + [aux_sym_connect_timeout_token1] = ACTIONS(1430), + [aux_sym_control_master_token1] = ACTIONS(1430), + [aux_sym_control_path_token1] = ACTIONS(1430), + [aux_sym_control_persist_token1] = ACTIONS(1430), + [aux_sym_dynamic_forward_token1] = ACTIONS(1430), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1430), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1430), + [aux_sym_escape_char_token1] = ACTIONS(1430), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1430), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1430), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1430), + [aux_sym_forward_agent_token1] = ACTIONS(1430), + [aux_sym_forward_x11_token1] = ACTIONS(1432), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1430), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1430), + [aux_sym_gateway_ports_token1] = ACTIONS(1430), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1430), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1430), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1430), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1430), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1430), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1430), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1430), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1430), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1430), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1430), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1430), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1430), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1430), + [aux_sym_host_key_alias_token1] = ACTIONS(1430), + [aux_sym_hostname_token1] = ACTIONS(1430), + [aux_sym_identities_only_token1] = ACTIONS(1430), + [aux_sym_identity_agent_token1] = ACTIONS(1430), + [aux_sym_identity_file_token1] = ACTIONS(1430), + [aux_sym_ignore_unknown_token1] = ACTIONS(1430), + [aux_sym_include_token1] = ACTIONS(1430), + [aux_sym_ip_qos_token1] = ACTIONS(1430), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1430), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1430), + [aux_sym_kex_algorithms_token1] = ACTIONS(1430), + [aux_sym_known_hosts_command_token1] = ACTIONS(1430), + [aux_sym_local_command_token1] = ACTIONS(1430), + [aux_sym_local_forward_token1] = ACTIONS(1430), + [aux_sym_log_level_token1] = ACTIONS(1430), + [aux_sym_log_verbose_token1] = ACTIONS(1430), + [aux_sym_macs_token1] = ACTIONS(1430), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1430), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1430), + [aux_sym_password_authentication_token1] = ACTIONS(1430), + [aux_sym_permit_local_command_token1] = ACTIONS(1430), + [aux_sym_permit_remote_open_token1] = ACTIONS(1430), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1430), + [aux_sym_port_token1] = ACTIONS(1430), + [aux_sym_preferred_authentications_token1] = ACTIONS(1430), + [aux_sym_protocol_token1] = ACTIONS(1430), + [aux_sym_proxy_command_token1] = ACTIONS(1430), + [aux_sym_proxy_jump_token1] = ACTIONS(1430), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1430), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1430), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1430), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1430), + [aux_sym_rekey_limit_token1] = ACTIONS(1430), + [aux_sym_remote_command_token1] = ACTIONS(1430), + [aux_sym_remote_forward_token1] = ACTIONS(1430), + [aux_sym_request_tty_token1] = ACTIONS(1430), + [aux_sym_required_rsa_size_token1] = ACTIONS(1430), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1430), + [aux_sym_security_key_provider_token1] = ACTIONS(1430), + [aux_sym_send_env_token1] = ACTIONS(1430), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1430), + [aux_sym_server_alive_interval_token1] = ACTIONS(1430), + [aux_sym_session_type_token1] = ACTIONS(1430), + [aux_sym_set_env_token1] = ACTIONS(1430), + [aux_sym_stdin_null_token1] = ACTIONS(1430), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1430), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1430), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1430), + [aux_sym_syslog_facility_token1] = ACTIONS(1430), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1430), + [aux_sym_keep_alive_token1] = ACTIONS(1430), + [aux_sym_tunnel_token1] = ACTIONS(1432), + [aux_sym_tunnel_device_token1] = ACTIONS(1430), + [aux_sym_update_host_keys_token1] = ACTIONS(1430), + [aux_sym_use_keychain_token1] = ACTIONS(1430), + [aux_sym_use_roaming_token1] = ACTIONS(1430), + [aux_sym_user_token1] = ACTIONS(1432), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1430), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1430), + [aux_sym_visual_host_key_token1] = ACTIONS(1430), + [aux_sym_xauth_location_token1] = ACTIONS(1430), }, [647] = { - [ts_builtin_sym_end] = ACTIONS(1053), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1055), - [aux_sym_match_token1] = ACTIONS(1053), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1053), - [aux_sym_address_family_token1] = ACTIONS(1053), - [aux_sym_batch_mode_token1] = ACTIONS(1053), - [aux_sym_bind_address_token1] = ACTIONS(1053), - [aux_sym_bind_interface_token1] = ACTIONS(1053), - [aux_sym_canonical_domains_token1] = ACTIONS(1053), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1053), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1053), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1053), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1053), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1053), - [aux_sym_certificate_file_token1] = ACTIONS(1053), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1053), - [aux_sym_check_host_ip_token1] = ACTIONS(1053), - [aux_sym_ciphers_token1] = ACTIONS(1053), - [aux_sym_cipher_token1] = ACTIONS(1055), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1053), - [aux_sym_compression_token1] = ACTIONS(1053), - [aux_sym_connection_attempts_token1] = ACTIONS(1053), - [aux_sym_connect_timeout_token1] = ACTIONS(1053), - [aux_sym_control_master_token1] = ACTIONS(1053), - [aux_sym_control_path_token1] = ACTIONS(1053), - [aux_sym_control_persist_token1] = ACTIONS(1053), - [aux_sym_dynamic_forward_token1] = ACTIONS(1053), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1053), - [aux_sym_escape_char_token1] = ACTIONS(1053), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1053), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1053), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1053), - [aux_sym_forward_agent_token1] = ACTIONS(1053), - [aux_sym_forward_x11_token1] = ACTIONS(1055), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1053), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1053), - [aux_sym_gateway_ports_token1] = ACTIONS(1053), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1053), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1053), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1053), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1053), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1053), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1053), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1053), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1053), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1053), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1053), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1053), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1053), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1053), - [aux_sym_host_key_alias_token1] = ACTIONS(1053), - [aux_sym_hostname_token1] = ACTIONS(1053), - [aux_sym_identities_only_token1] = ACTIONS(1053), - [aux_sym_identity_agent_token1] = ACTIONS(1053), - [aux_sym_identity_file_token1] = ACTIONS(1053), - [aux_sym_ignore_unknown_token1] = ACTIONS(1053), - [aux_sym_include_token1] = ACTIONS(1053), - [aux_sym_ip_qos_token1] = ACTIONS(1053), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1053), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1053), - [aux_sym_kex_algorithms_token1] = ACTIONS(1053), - [aux_sym_known_hosts_command_token1] = ACTIONS(1053), - [aux_sym_local_command_token1] = ACTIONS(1053), - [aux_sym_local_forward_token1] = ACTIONS(1053), - [aux_sym_log_level_token1] = ACTIONS(1053), - [aux_sym_log_verbose_token1] = ACTIONS(1053), - [aux_sym_macs_token1] = ACTIONS(1053), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1053), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1053), - [aux_sym_password_authentication_token1] = ACTIONS(1053), - [aux_sym_permit_local_command_token1] = ACTIONS(1053), - [aux_sym_permit_remote_open_token1] = ACTIONS(1053), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1053), - [aux_sym_port_token1] = ACTIONS(1053), - [aux_sym_preferred_authentications_token1] = ACTIONS(1053), - [aux_sym_protocol_token1] = ACTIONS(1053), - [aux_sym_proxy_command_token1] = ACTIONS(1053), - [aux_sym_proxy_jump_token1] = ACTIONS(1053), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1053), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1053), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1053), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1053), - [aux_sym_rekey_limit_token1] = ACTIONS(1053), - [aux_sym_remote_command_token1] = ACTIONS(1053), - [aux_sym_remote_forward_token1] = ACTIONS(1053), - [aux_sym_request_tty_token1] = ACTIONS(1053), - [aux_sym_required_rsa_size_token1] = ACTIONS(1053), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1053), - [aux_sym_security_key_provider_token1] = ACTIONS(1053), - [aux_sym_send_env_token1] = ACTIONS(1053), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1053), - [aux_sym_server_alive_interval_token1] = ACTIONS(1053), - [aux_sym_session_type_token1] = ACTIONS(1053), - [aux_sym_set_env_token1] = ACTIONS(1053), - [aux_sym_stdin_null_token1] = ACTIONS(1053), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1053), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1053), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1053), - [aux_sym_syslog_facility_token1] = ACTIONS(1053), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1053), - [aux_sym_keep_alive_token1] = ACTIONS(1053), - [aux_sym_tunnel_token1] = ACTIONS(1055), - [aux_sym_tunnel_device_token1] = ACTIONS(1053), - [aux_sym_update_host_keys_token1] = ACTIONS(1053), - [aux_sym_use_keychain_token1] = ACTIONS(1053), - [aux_sym_use_roaming_token1] = ACTIONS(1053), - [aux_sym_user_token1] = ACTIONS(1055), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1053), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1053), - [aux_sym_visual_host_key_token1] = ACTIONS(1053), - [aux_sym_xauth_location_token1] = ACTIONS(1053), + [ts_builtin_sym_end] = ACTIONS(1436), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1438), + [aux_sym_match_token1] = ACTIONS(1436), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1436), + [aux_sym_address_family_token1] = ACTIONS(1436), + [aux_sym_batch_mode_token1] = ACTIONS(1436), + [aux_sym_bind_address_token1] = ACTIONS(1436), + [aux_sym_bind_interface_token1] = ACTIONS(1436), + [aux_sym_canonical_domains_token1] = ACTIONS(1436), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1436), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1436), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1436), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1436), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1436), + [aux_sym_certificate_file_token1] = ACTIONS(1436), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1436), + [aux_sym_check_host_ip_token1] = ACTIONS(1436), + [aux_sym_ciphers_token1] = ACTIONS(1436), + [aux_sym_cipher_token1] = ACTIONS(1438), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1436), + [aux_sym_compression_token1] = ACTIONS(1436), + [aux_sym_connection_attempts_token1] = ACTIONS(1436), + [aux_sym_connect_timeout_token1] = ACTIONS(1436), + [aux_sym_control_master_token1] = ACTIONS(1436), + [aux_sym_control_path_token1] = ACTIONS(1436), + [aux_sym_control_persist_token1] = ACTIONS(1436), + [aux_sym_dynamic_forward_token1] = ACTIONS(1436), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1436), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1436), + [aux_sym_escape_char_token1] = ACTIONS(1436), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1436), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1436), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1436), + [aux_sym_forward_agent_token1] = ACTIONS(1436), + [aux_sym_forward_x11_token1] = ACTIONS(1438), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1436), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1436), + [aux_sym_gateway_ports_token1] = ACTIONS(1436), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1436), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1436), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1436), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1436), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1436), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1436), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1436), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1436), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1436), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1436), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1436), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1436), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1436), + [aux_sym_host_key_alias_token1] = ACTIONS(1436), + [aux_sym_hostname_token1] = ACTIONS(1436), + [aux_sym_identities_only_token1] = ACTIONS(1436), + [aux_sym_identity_agent_token1] = ACTIONS(1436), + [aux_sym_identity_file_token1] = ACTIONS(1436), + [aux_sym_ignore_unknown_token1] = ACTIONS(1436), + [aux_sym_include_token1] = ACTIONS(1436), + [aux_sym_ip_qos_token1] = ACTIONS(1436), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1436), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1436), + [aux_sym_kex_algorithms_token1] = ACTIONS(1436), + [aux_sym_known_hosts_command_token1] = ACTIONS(1436), + [aux_sym_local_command_token1] = ACTIONS(1436), + [aux_sym_local_forward_token1] = ACTIONS(1436), + [aux_sym_log_level_token1] = ACTIONS(1436), + [aux_sym_log_verbose_token1] = ACTIONS(1436), + [aux_sym_macs_token1] = ACTIONS(1436), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1436), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1436), + [aux_sym_password_authentication_token1] = ACTIONS(1436), + [aux_sym_permit_local_command_token1] = ACTIONS(1436), + [aux_sym_permit_remote_open_token1] = ACTIONS(1436), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1436), + [aux_sym_port_token1] = ACTIONS(1436), + [aux_sym_preferred_authentications_token1] = ACTIONS(1436), + [aux_sym_protocol_token1] = ACTIONS(1436), + [aux_sym_proxy_command_token1] = ACTIONS(1436), + [aux_sym_proxy_jump_token1] = ACTIONS(1436), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1436), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1436), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1436), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1436), + [aux_sym_rekey_limit_token1] = ACTIONS(1436), + [aux_sym_remote_command_token1] = ACTIONS(1436), + [aux_sym_remote_forward_token1] = ACTIONS(1436), + [aux_sym_request_tty_token1] = ACTIONS(1436), + [aux_sym_required_rsa_size_token1] = ACTIONS(1436), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1436), + [aux_sym_security_key_provider_token1] = ACTIONS(1436), + [aux_sym_send_env_token1] = ACTIONS(1436), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1436), + [aux_sym_server_alive_interval_token1] = ACTIONS(1436), + [aux_sym_session_type_token1] = ACTIONS(1436), + [aux_sym_set_env_token1] = ACTIONS(1436), + [aux_sym_stdin_null_token1] = ACTIONS(1436), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1436), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1436), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1436), + [aux_sym_syslog_facility_token1] = ACTIONS(1436), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1436), + [aux_sym_keep_alive_token1] = ACTIONS(1436), + [aux_sym_tunnel_token1] = ACTIONS(1438), + [aux_sym_tunnel_device_token1] = ACTIONS(1436), + [aux_sym_update_host_keys_token1] = ACTIONS(1436), + [aux_sym_use_keychain_token1] = ACTIONS(1436), + [aux_sym_use_roaming_token1] = ACTIONS(1436), + [aux_sym_user_token1] = ACTIONS(1438), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1436), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1436), + [aux_sym_visual_host_key_token1] = ACTIONS(1436), + [aux_sym_xauth_location_token1] = ACTIONS(1436), }, [648] = { - [ts_builtin_sym_end] = ACTIONS(1059), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1061), - [aux_sym_match_token1] = ACTIONS(1059), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1059), - [aux_sym_address_family_token1] = ACTIONS(1059), - [aux_sym_batch_mode_token1] = ACTIONS(1059), - [aux_sym_bind_address_token1] = ACTIONS(1059), - [aux_sym_bind_interface_token1] = ACTIONS(1059), - [aux_sym_canonical_domains_token1] = ACTIONS(1059), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1059), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1059), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1059), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1059), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1059), - [aux_sym_certificate_file_token1] = ACTIONS(1059), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1059), - [aux_sym_check_host_ip_token1] = ACTIONS(1059), - [aux_sym_ciphers_token1] = ACTIONS(1059), - [aux_sym_cipher_token1] = ACTIONS(1061), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1059), - [aux_sym_compression_token1] = ACTIONS(1059), - [aux_sym_connection_attempts_token1] = ACTIONS(1059), - [aux_sym_connect_timeout_token1] = ACTIONS(1059), - [aux_sym_control_master_token1] = ACTIONS(1059), - [aux_sym_control_path_token1] = ACTIONS(1059), - [aux_sym_control_persist_token1] = ACTIONS(1059), - [aux_sym_dynamic_forward_token1] = ACTIONS(1059), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1059), - [aux_sym_escape_char_token1] = ACTIONS(1059), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1059), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1059), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1059), - [aux_sym_forward_agent_token1] = ACTIONS(1059), - [aux_sym_forward_x11_token1] = ACTIONS(1061), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1059), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1059), - [aux_sym_gateway_ports_token1] = ACTIONS(1059), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1059), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1059), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1059), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1059), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1059), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1059), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1059), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1059), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1059), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1059), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1059), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1059), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1059), - [aux_sym_host_key_alias_token1] = ACTIONS(1059), - [aux_sym_hostname_token1] = ACTIONS(1059), - [aux_sym_identities_only_token1] = ACTIONS(1059), - [aux_sym_identity_agent_token1] = ACTIONS(1059), - [aux_sym_identity_file_token1] = ACTIONS(1059), - [aux_sym_ignore_unknown_token1] = ACTIONS(1059), - [aux_sym_include_token1] = ACTIONS(1059), - [aux_sym_ip_qos_token1] = ACTIONS(1059), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1059), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1059), - [aux_sym_kex_algorithms_token1] = ACTIONS(1059), - [aux_sym_known_hosts_command_token1] = ACTIONS(1059), - [aux_sym_local_command_token1] = ACTIONS(1059), - [aux_sym_local_forward_token1] = ACTIONS(1059), - [aux_sym_log_level_token1] = ACTIONS(1059), - [aux_sym_log_verbose_token1] = ACTIONS(1059), - [aux_sym_macs_token1] = ACTIONS(1059), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1059), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1059), - [aux_sym_password_authentication_token1] = ACTIONS(1059), - [aux_sym_permit_local_command_token1] = ACTIONS(1059), - [aux_sym_permit_remote_open_token1] = ACTIONS(1059), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1059), - [aux_sym_port_token1] = ACTIONS(1059), - [aux_sym_preferred_authentications_token1] = ACTIONS(1059), - [aux_sym_protocol_token1] = ACTIONS(1059), - [aux_sym_proxy_command_token1] = ACTIONS(1059), - [aux_sym_proxy_jump_token1] = ACTIONS(1059), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1059), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1059), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1059), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1059), - [aux_sym_rekey_limit_token1] = ACTIONS(1059), - [aux_sym_remote_command_token1] = ACTIONS(1059), - [aux_sym_remote_forward_token1] = ACTIONS(1059), - [aux_sym_request_tty_token1] = ACTIONS(1059), - [aux_sym_required_rsa_size_token1] = ACTIONS(1059), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1059), - [aux_sym_security_key_provider_token1] = ACTIONS(1059), - [aux_sym_send_env_token1] = ACTIONS(1059), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1059), - [aux_sym_server_alive_interval_token1] = ACTIONS(1059), - [aux_sym_session_type_token1] = ACTIONS(1059), - [aux_sym_set_env_token1] = ACTIONS(1059), - [aux_sym_stdin_null_token1] = ACTIONS(1059), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1059), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1059), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1059), - [aux_sym_syslog_facility_token1] = ACTIONS(1059), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1059), - [aux_sym_keep_alive_token1] = ACTIONS(1059), - [aux_sym_tunnel_token1] = ACTIONS(1061), - [aux_sym_tunnel_device_token1] = ACTIONS(1059), - [aux_sym_update_host_keys_token1] = ACTIONS(1059), - [aux_sym_use_keychain_token1] = ACTIONS(1059), - [aux_sym_use_roaming_token1] = ACTIONS(1059), - [aux_sym_user_token1] = ACTIONS(1061), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1059), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1059), - [aux_sym_visual_host_key_token1] = ACTIONS(1059), - [aux_sym_xauth_location_token1] = ACTIONS(1059), + [ts_builtin_sym_end] = ACTIONS(3448), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3450), + [aux_sym_match_token1] = ACTIONS(3448), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3448), + [aux_sym_address_family_token1] = ACTIONS(3448), + [aux_sym_batch_mode_token1] = ACTIONS(3448), + [aux_sym_bind_address_token1] = ACTIONS(3448), + [aux_sym_bind_interface_token1] = ACTIONS(3448), + [aux_sym_canonical_domains_token1] = ACTIONS(3448), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3448), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3448), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3448), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3448), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3448), + [aux_sym_certificate_file_token1] = ACTIONS(3448), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3448), + [aux_sym_check_host_ip_token1] = ACTIONS(3448), + [aux_sym_ciphers_token1] = ACTIONS(3448), + [aux_sym_cipher_token1] = ACTIONS(3450), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3448), + [aux_sym_compression_token1] = ACTIONS(3448), + [aux_sym_connection_attempts_token1] = ACTIONS(3448), + [aux_sym_connect_timeout_token1] = ACTIONS(3448), + [aux_sym_control_master_token1] = ACTIONS(3448), + [aux_sym_control_path_token1] = ACTIONS(3448), + [aux_sym_control_persist_token1] = ACTIONS(3448), + [aux_sym_dynamic_forward_token1] = ACTIONS(3448), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3448), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3448), + [aux_sym_escape_char_token1] = ACTIONS(3448), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3448), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3448), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3448), + [aux_sym_forward_agent_token1] = ACTIONS(3448), + [aux_sym_forward_x11_token1] = ACTIONS(3450), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3448), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3448), + [aux_sym_gateway_ports_token1] = ACTIONS(3448), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3448), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3448), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3448), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3448), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3448), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3448), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3448), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3448), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3448), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3448), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3448), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3448), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3448), + [aux_sym_host_key_alias_token1] = ACTIONS(3448), + [aux_sym_hostname_token1] = ACTIONS(3448), + [aux_sym_identities_only_token1] = ACTIONS(3448), + [aux_sym_identity_agent_token1] = ACTIONS(3448), + [aux_sym_identity_file_token1] = ACTIONS(3448), + [aux_sym_ignore_unknown_token1] = ACTIONS(3448), + [aux_sym_include_token1] = ACTIONS(3448), + [aux_sym_ip_qos_token1] = ACTIONS(3448), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3448), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3448), + [aux_sym_kex_algorithms_token1] = ACTIONS(3448), + [aux_sym_known_hosts_command_token1] = ACTIONS(3448), + [aux_sym_local_command_token1] = ACTIONS(3448), + [aux_sym_local_forward_token1] = ACTIONS(3448), + [aux_sym_log_level_token1] = ACTIONS(3448), + [aux_sym_log_verbose_token1] = ACTIONS(3448), + [aux_sym_macs_token1] = ACTIONS(3448), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3448), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3448), + [aux_sym_password_authentication_token1] = ACTIONS(3448), + [aux_sym_permit_local_command_token1] = ACTIONS(3448), + [aux_sym_permit_remote_open_token1] = ACTIONS(3448), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3448), + [aux_sym_port_token1] = ACTIONS(3448), + [aux_sym_preferred_authentications_token1] = ACTIONS(3448), + [aux_sym_protocol_token1] = ACTIONS(3448), + [aux_sym_proxy_command_token1] = ACTIONS(3448), + [aux_sym_proxy_jump_token1] = ACTIONS(3448), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3448), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3448), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3448), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3448), + [aux_sym_rekey_limit_token1] = ACTIONS(3448), + [aux_sym_remote_command_token1] = ACTIONS(3448), + [aux_sym_remote_forward_token1] = ACTIONS(3448), + [aux_sym_request_tty_token1] = ACTIONS(3448), + [aux_sym_required_rsa_size_token1] = ACTIONS(3448), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3448), + [aux_sym_security_key_provider_token1] = ACTIONS(3448), + [aux_sym_send_env_token1] = ACTIONS(3448), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3448), + [aux_sym_server_alive_interval_token1] = ACTIONS(3448), + [aux_sym_session_type_token1] = ACTIONS(3448), + [aux_sym_set_env_token1] = ACTIONS(3448), + [aux_sym_stdin_null_token1] = ACTIONS(3448), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3448), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3448), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3448), + [aux_sym_syslog_facility_token1] = ACTIONS(3448), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3448), + [aux_sym_keep_alive_token1] = ACTIONS(3448), + [aux_sym_tunnel_token1] = ACTIONS(3450), + [aux_sym_tunnel_device_token1] = ACTIONS(3448), + [aux_sym_update_host_keys_token1] = ACTIONS(3448), + [aux_sym_use_keychain_token1] = ACTIONS(3448), + [aux_sym_use_roaming_token1] = ACTIONS(3448), + [aux_sym_user_token1] = ACTIONS(3450), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3448), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3448), + [aux_sym_visual_host_key_token1] = ACTIONS(3448), + [aux_sym_xauth_location_token1] = ACTIONS(3448), }, [649] = { - [ts_builtin_sym_end] = ACTIONS(1065), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1067), - [aux_sym_match_token1] = ACTIONS(1065), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1065), - [aux_sym_address_family_token1] = ACTIONS(1065), - [aux_sym_batch_mode_token1] = ACTIONS(1065), - [aux_sym_bind_address_token1] = ACTIONS(1065), - [aux_sym_bind_interface_token1] = ACTIONS(1065), - [aux_sym_canonical_domains_token1] = ACTIONS(1065), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1065), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1065), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1065), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1065), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1065), - [aux_sym_certificate_file_token1] = ACTIONS(1065), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1065), - [aux_sym_check_host_ip_token1] = ACTIONS(1065), - [aux_sym_ciphers_token1] = ACTIONS(1065), - [aux_sym_cipher_token1] = ACTIONS(1067), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1065), - [aux_sym_compression_token1] = ACTIONS(1065), - [aux_sym_connection_attempts_token1] = ACTIONS(1065), - [aux_sym_connect_timeout_token1] = ACTIONS(1065), - [aux_sym_control_master_token1] = ACTIONS(1065), - [aux_sym_control_path_token1] = ACTIONS(1065), - [aux_sym_control_persist_token1] = ACTIONS(1065), - [aux_sym_dynamic_forward_token1] = ACTIONS(1065), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1065), - [aux_sym_escape_char_token1] = ACTIONS(1065), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1065), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1065), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1065), - [aux_sym_forward_agent_token1] = ACTIONS(1065), - [aux_sym_forward_x11_token1] = ACTIONS(1067), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1065), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1065), - [aux_sym_gateway_ports_token1] = ACTIONS(1065), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1065), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1065), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1065), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1065), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1065), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1065), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1065), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1065), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1065), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1065), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1065), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1065), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1065), - [aux_sym_host_key_alias_token1] = ACTIONS(1065), - [aux_sym_hostname_token1] = ACTIONS(1065), - [aux_sym_identities_only_token1] = ACTIONS(1065), - [aux_sym_identity_agent_token1] = ACTIONS(1065), - [aux_sym_identity_file_token1] = ACTIONS(1065), - [aux_sym_ignore_unknown_token1] = ACTIONS(1065), - [aux_sym_include_token1] = ACTIONS(1065), - [aux_sym_ip_qos_token1] = ACTIONS(1065), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1065), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1065), - [aux_sym_kex_algorithms_token1] = ACTIONS(1065), - [aux_sym_known_hosts_command_token1] = ACTIONS(1065), - [aux_sym_local_command_token1] = ACTIONS(1065), - [aux_sym_local_forward_token1] = ACTIONS(1065), - [aux_sym_log_level_token1] = ACTIONS(1065), - [aux_sym_log_verbose_token1] = ACTIONS(1065), - [aux_sym_macs_token1] = ACTIONS(1065), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1065), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1065), - [aux_sym_password_authentication_token1] = ACTIONS(1065), - [aux_sym_permit_local_command_token1] = ACTIONS(1065), - [aux_sym_permit_remote_open_token1] = ACTIONS(1065), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1065), - [aux_sym_port_token1] = ACTIONS(1065), - [aux_sym_preferred_authentications_token1] = ACTIONS(1065), - [aux_sym_protocol_token1] = ACTIONS(1065), - [aux_sym_proxy_command_token1] = ACTIONS(1065), - [aux_sym_proxy_jump_token1] = ACTIONS(1065), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1065), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1065), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1065), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1065), - [aux_sym_rekey_limit_token1] = ACTIONS(1065), - [aux_sym_remote_command_token1] = ACTIONS(1065), - [aux_sym_remote_forward_token1] = ACTIONS(1065), - [aux_sym_request_tty_token1] = ACTIONS(1065), - [aux_sym_required_rsa_size_token1] = ACTIONS(1065), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1065), - [aux_sym_security_key_provider_token1] = ACTIONS(1065), - [aux_sym_send_env_token1] = ACTIONS(1065), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1065), - [aux_sym_server_alive_interval_token1] = ACTIONS(1065), - [aux_sym_session_type_token1] = ACTIONS(1065), - [aux_sym_set_env_token1] = ACTIONS(1065), - [aux_sym_stdin_null_token1] = ACTIONS(1065), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1065), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1065), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1065), - [aux_sym_syslog_facility_token1] = ACTIONS(1065), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1065), - [aux_sym_keep_alive_token1] = ACTIONS(1065), - [aux_sym_tunnel_token1] = ACTIONS(1067), - [aux_sym_tunnel_device_token1] = ACTIONS(1065), - [aux_sym_update_host_keys_token1] = ACTIONS(1065), - [aux_sym_use_keychain_token1] = ACTIONS(1065), - [aux_sym_use_roaming_token1] = ACTIONS(1065), - [aux_sym_user_token1] = ACTIONS(1067), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1065), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1065), - [aux_sym_visual_host_key_token1] = ACTIONS(1065), - [aux_sym_xauth_location_token1] = ACTIONS(1065), + [ts_builtin_sym_end] = ACTIONS(896), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(898), + [aux_sym_match_token1] = ACTIONS(896), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(896), + [aux_sym_address_family_token1] = ACTIONS(896), + [aux_sym_batch_mode_token1] = ACTIONS(896), + [aux_sym_bind_address_token1] = ACTIONS(896), + [aux_sym_bind_interface_token1] = ACTIONS(896), + [aux_sym_canonical_domains_token1] = ACTIONS(896), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(896), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(896), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(896), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(896), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(896), + [aux_sym_certificate_file_token1] = ACTIONS(896), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(896), + [aux_sym_check_host_ip_token1] = ACTIONS(896), + [aux_sym_ciphers_token1] = ACTIONS(896), + [aux_sym_cipher_token1] = ACTIONS(898), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(896), + [aux_sym_compression_token1] = ACTIONS(896), + [aux_sym_connection_attempts_token1] = ACTIONS(896), + [aux_sym_connect_timeout_token1] = ACTIONS(896), + [aux_sym_control_master_token1] = ACTIONS(896), + [aux_sym_control_path_token1] = ACTIONS(896), + [aux_sym_control_persist_token1] = ACTIONS(896), + [aux_sym_dynamic_forward_token1] = ACTIONS(896), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(896), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(896), + [aux_sym_escape_char_token1] = ACTIONS(896), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(896), + [aux_sym_fingerprint_hash_token1] = ACTIONS(896), + [aux_sym_fork_after_authentication_token1] = ACTIONS(896), + [aux_sym_forward_agent_token1] = ACTIONS(896), + [aux_sym_forward_x11_token1] = ACTIONS(898), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(896), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(896), + [aux_sym_gateway_ports_token1] = ACTIONS(896), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(896), + [aux_sym_gssapi_authentication_token1] = ACTIONS(896), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(896), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(896), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(896), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(896), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(896), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(896), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(896), + [aux_sym_hash_known_hosts_token1] = ACTIONS(896), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(896), + [aux_sym_hostbased_authentication_token1] = ACTIONS(896), + [aux_sym_host_key_algorithms_token1] = ACTIONS(896), + [aux_sym_host_key_alias_token1] = ACTIONS(896), + [aux_sym_hostname_token1] = ACTIONS(896), + [aux_sym_identities_only_token1] = ACTIONS(896), + [aux_sym_identity_agent_token1] = ACTIONS(896), + [aux_sym_identity_file_token1] = ACTIONS(896), + [aux_sym_ignore_unknown_token1] = ACTIONS(896), + [aux_sym_include_token1] = ACTIONS(896), + [aux_sym_ip_qos_token1] = ACTIONS(896), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(896), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(896), + [aux_sym_kex_algorithms_token1] = ACTIONS(896), + [aux_sym_known_hosts_command_token1] = ACTIONS(896), + [aux_sym_local_command_token1] = ACTIONS(896), + [aux_sym_local_forward_token1] = ACTIONS(896), + [aux_sym_log_level_token1] = ACTIONS(896), + [aux_sym_log_verbose_token1] = ACTIONS(896), + [aux_sym_macs_token1] = ACTIONS(896), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(896), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(896), + [aux_sym_password_authentication_token1] = ACTIONS(896), + [aux_sym_permit_local_command_token1] = ACTIONS(896), + [aux_sym_permit_remote_open_token1] = ACTIONS(896), + [aux_sym_pkcs11_provider_token1] = ACTIONS(896), + [aux_sym_port_token1] = ACTIONS(896), + [aux_sym_preferred_authentications_token1] = ACTIONS(896), + [aux_sym_protocol_token1] = ACTIONS(896), + [aux_sym_proxy_command_token1] = ACTIONS(896), + [aux_sym_proxy_jump_token1] = ACTIONS(896), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(896), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(896), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(896), + [aux_sym_pubkey_authentication_token1] = ACTIONS(896), + [aux_sym_rekey_limit_token1] = ACTIONS(896), + [aux_sym_remote_command_token1] = ACTIONS(896), + [aux_sym_remote_forward_token1] = ACTIONS(896), + [aux_sym_request_tty_token1] = ACTIONS(896), + [aux_sym_required_rsa_size_token1] = ACTIONS(896), + [aux_sym_revoked_host_keys_token1] = ACTIONS(896), + [aux_sym_security_key_provider_token1] = ACTIONS(896), + [aux_sym_send_env_token1] = ACTIONS(896), + [aux_sym_server_alive_count_max_token1] = ACTIONS(896), + [aux_sym_server_alive_interval_token1] = ACTIONS(896), + [aux_sym_session_type_token1] = ACTIONS(896), + [aux_sym_set_env_token1] = ACTIONS(896), + [aux_sym_stdin_null_token1] = ACTIONS(896), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(896), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(896), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(896), + [aux_sym_syslog_facility_token1] = ACTIONS(896), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(896), + [aux_sym_keep_alive_token1] = ACTIONS(896), + [aux_sym_tunnel_token1] = ACTIONS(898), + [aux_sym_tunnel_device_token1] = ACTIONS(896), + [aux_sym_update_host_keys_token1] = ACTIONS(896), + [aux_sym_use_keychain_token1] = ACTIONS(896), + [aux_sym_use_roaming_token1] = ACTIONS(896), + [aux_sym_user_token1] = ACTIONS(898), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(896), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(896), + [aux_sym_visual_host_key_token1] = ACTIONS(896), + [aux_sym_xauth_location_token1] = ACTIONS(896), }, [650] = { - [ts_builtin_sym_end] = ACTIONS(1071), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1073), - [aux_sym_match_token1] = ACTIONS(1071), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1071), - [aux_sym_address_family_token1] = ACTIONS(1071), - [aux_sym_batch_mode_token1] = ACTIONS(1071), - [aux_sym_bind_address_token1] = ACTIONS(1071), - [aux_sym_bind_interface_token1] = ACTIONS(1071), - [aux_sym_canonical_domains_token1] = ACTIONS(1071), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1071), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1071), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1071), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1071), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1071), - [aux_sym_certificate_file_token1] = ACTIONS(1071), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1071), - [aux_sym_check_host_ip_token1] = ACTIONS(1071), - [aux_sym_ciphers_token1] = ACTIONS(1071), - [aux_sym_cipher_token1] = ACTIONS(1073), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1071), - [aux_sym_compression_token1] = ACTIONS(1071), - [aux_sym_connection_attempts_token1] = ACTIONS(1071), - [aux_sym_connect_timeout_token1] = ACTIONS(1071), - [aux_sym_control_master_token1] = ACTIONS(1071), - [aux_sym_control_path_token1] = ACTIONS(1071), - [aux_sym_control_persist_token1] = ACTIONS(1071), - [aux_sym_dynamic_forward_token1] = ACTIONS(1071), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1071), - [aux_sym_escape_char_token1] = ACTIONS(1071), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1071), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1071), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1071), - [aux_sym_forward_agent_token1] = ACTIONS(1071), - [aux_sym_forward_x11_token1] = ACTIONS(1073), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1071), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1071), - [aux_sym_gateway_ports_token1] = ACTIONS(1071), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1071), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1071), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1071), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1071), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1071), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1071), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1071), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1071), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1071), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1071), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1071), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1071), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1071), - [aux_sym_host_key_alias_token1] = ACTIONS(1071), - [aux_sym_hostname_token1] = ACTIONS(1071), - [aux_sym_identities_only_token1] = ACTIONS(1071), - [aux_sym_identity_agent_token1] = ACTIONS(1071), - [aux_sym_identity_file_token1] = ACTIONS(1071), - [aux_sym_ignore_unknown_token1] = ACTIONS(1071), - [aux_sym_include_token1] = ACTIONS(1071), - [aux_sym_ip_qos_token1] = ACTIONS(1071), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1071), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1071), - [aux_sym_kex_algorithms_token1] = ACTIONS(1071), - [aux_sym_known_hosts_command_token1] = ACTIONS(1071), - [aux_sym_local_command_token1] = ACTIONS(1071), - [aux_sym_local_forward_token1] = ACTIONS(1071), - [aux_sym_log_level_token1] = ACTIONS(1071), - [aux_sym_log_verbose_token1] = ACTIONS(1071), - [aux_sym_macs_token1] = ACTIONS(1071), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1071), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1071), - [aux_sym_password_authentication_token1] = ACTIONS(1071), - [aux_sym_permit_local_command_token1] = ACTIONS(1071), - [aux_sym_permit_remote_open_token1] = ACTIONS(1071), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1071), - [aux_sym_port_token1] = ACTIONS(1071), - [aux_sym_preferred_authentications_token1] = ACTIONS(1071), - [aux_sym_protocol_token1] = ACTIONS(1071), - [aux_sym_proxy_command_token1] = ACTIONS(1071), - [aux_sym_proxy_jump_token1] = ACTIONS(1071), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1071), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1071), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1071), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1071), - [aux_sym_rekey_limit_token1] = ACTIONS(1071), - [aux_sym_remote_command_token1] = ACTIONS(1071), - [aux_sym_remote_forward_token1] = ACTIONS(1071), - [aux_sym_request_tty_token1] = ACTIONS(1071), - [aux_sym_required_rsa_size_token1] = ACTIONS(1071), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1071), - [aux_sym_security_key_provider_token1] = ACTIONS(1071), - [aux_sym_send_env_token1] = ACTIONS(1071), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1071), - [aux_sym_server_alive_interval_token1] = ACTIONS(1071), - [aux_sym_session_type_token1] = ACTIONS(1071), - [aux_sym_set_env_token1] = ACTIONS(1071), - [aux_sym_stdin_null_token1] = ACTIONS(1071), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1071), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1071), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1071), - [aux_sym_syslog_facility_token1] = ACTIONS(1071), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1071), - [aux_sym_keep_alive_token1] = ACTIONS(1071), - [aux_sym_tunnel_token1] = ACTIONS(1073), - [aux_sym_tunnel_device_token1] = ACTIONS(1071), - [aux_sym_update_host_keys_token1] = ACTIONS(1071), - [aux_sym_use_keychain_token1] = ACTIONS(1071), - [aux_sym_use_roaming_token1] = ACTIONS(1071), - [aux_sym_user_token1] = ACTIONS(1073), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1071), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1071), - [aux_sym_visual_host_key_token1] = ACTIONS(1071), - [aux_sym_xauth_location_token1] = ACTIONS(1071), + [ts_builtin_sym_end] = ACTIONS(1442), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1444), + [aux_sym_match_token1] = ACTIONS(1442), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1442), + [aux_sym_address_family_token1] = ACTIONS(1442), + [aux_sym_batch_mode_token1] = ACTIONS(1442), + [aux_sym_bind_address_token1] = ACTIONS(1442), + [aux_sym_bind_interface_token1] = ACTIONS(1442), + [aux_sym_canonical_domains_token1] = ACTIONS(1442), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1442), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1442), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1442), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1442), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1442), + [aux_sym_certificate_file_token1] = ACTIONS(1442), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1442), + [aux_sym_check_host_ip_token1] = ACTIONS(1442), + [aux_sym_ciphers_token1] = ACTIONS(1442), + [aux_sym_cipher_token1] = ACTIONS(1444), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1442), + [aux_sym_compression_token1] = ACTIONS(1442), + [aux_sym_connection_attempts_token1] = ACTIONS(1442), + [aux_sym_connect_timeout_token1] = ACTIONS(1442), + [aux_sym_control_master_token1] = ACTIONS(1442), + [aux_sym_control_path_token1] = ACTIONS(1442), + [aux_sym_control_persist_token1] = ACTIONS(1442), + [aux_sym_dynamic_forward_token1] = ACTIONS(1442), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1442), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1442), + [aux_sym_escape_char_token1] = ACTIONS(1442), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1442), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1442), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1442), + [aux_sym_forward_agent_token1] = ACTIONS(1442), + [aux_sym_forward_x11_token1] = ACTIONS(1444), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1442), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1442), + [aux_sym_gateway_ports_token1] = ACTIONS(1442), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1442), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1442), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1442), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1442), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1442), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1442), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1442), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1442), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1442), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1442), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1442), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1442), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1442), + [aux_sym_host_key_alias_token1] = ACTIONS(1442), + [aux_sym_hostname_token1] = ACTIONS(1442), + [aux_sym_identities_only_token1] = ACTIONS(1442), + [aux_sym_identity_agent_token1] = ACTIONS(1442), + [aux_sym_identity_file_token1] = ACTIONS(1442), + [aux_sym_ignore_unknown_token1] = ACTIONS(1442), + [aux_sym_include_token1] = ACTIONS(1442), + [aux_sym_ip_qos_token1] = ACTIONS(1442), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1442), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1442), + [aux_sym_kex_algorithms_token1] = ACTIONS(1442), + [aux_sym_known_hosts_command_token1] = ACTIONS(1442), + [aux_sym_local_command_token1] = ACTIONS(1442), + [aux_sym_local_forward_token1] = ACTIONS(1442), + [aux_sym_log_level_token1] = ACTIONS(1442), + [aux_sym_log_verbose_token1] = ACTIONS(1442), + [aux_sym_macs_token1] = ACTIONS(1442), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1442), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1442), + [aux_sym_password_authentication_token1] = ACTIONS(1442), + [aux_sym_permit_local_command_token1] = ACTIONS(1442), + [aux_sym_permit_remote_open_token1] = ACTIONS(1442), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1442), + [aux_sym_port_token1] = ACTIONS(1442), + [aux_sym_preferred_authentications_token1] = ACTIONS(1442), + [aux_sym_protocol_token1] = ACTIONS(1442), + [aux_sym_proxy_command_token1] = ACTIONS(1442), + [aux_sym_proxy_jump_token1] = ACTIONS(1442), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1442), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1442), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1442), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1442), + [aux_sym_rekey_limit_token1] = ACTIONS(1442), + [aux_sym_remote_command_token1] = ACTIONS(1442), + [aux_sym_remote_forward_token1] = ACTIONS(1442), + [aux_sym_request_tty_token1] = ACTIONS(1442), + [aux_sym_required_rsa_size_token1] = ACTIONS(1442), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1442), + [aux_sym_security_key_provider_token1] = ACTIONS(1442), + [aux_sym_send_env_token1] = ACTIONS(1442), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1442), + [aux_sym_server_alive_interval_token1] = ACTIONS(1442), + [aux_sym_session_type_token1] = ACTIONS(1442), + [aux_sym_set_env_token1] = ACTIONS(1442), + [aux_sym_stdin_null_token1] = ACTIONS(1442), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1442), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1442), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1442), + [aux_sym_syslog_facility_token1] = ACTIONS(1442), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1442), + [aux_sym_keep_alive_token1] = ACTIONS(1442), + [aux_sym_tunnel_token1] = ACTIONS(1444), + [aux_sym_tunnel_device_token1] = ACTIONS(1442), + [aux_sym_update_host_keys_token1] = ACTIONS(1442), + [aux_sym_use_keychain_token1] = ACTIONS(1442), + [aux_sym_use_roaming_token1] = ACTIONS(1442), + [aux_sym_user_token1] = ACTIONS(1444), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1442), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1442), + [aux_sym_visual_host_key_token1] = ACTIONS(1442), + [aux_sym_xauth_location_token1] = ACTIONS(1442), }, [651] = { - [ts_builtin_sym_end] = ACTIONS(1077), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1079), - [aux_sym_match_token1] = ACTIONS(1077), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1077), - [aux_sym_address_family_token1] = ACTIONS(1077), - [aux_sym_batch_mode_token1] = ACTIONS(1077), - [aux_sym_bind_address_token1] = ACTIONS(1077), - [aux_sym_bind_interface_token1] = ACTIONS(1077), - [aux_sym_canonical_domains_token1] = ACTIONS(1077), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1077), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1077), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1077), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1077), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1077), - [aux_sym_certificate_file_token1] = ACTIONS(1077), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1077), - [aux_sym_check_host_ip_token1] = ACTIONS(1077), - [aux_sym_ciphers_token1] = ACTIONS(1077), - [aux_sym_cipher_token1] = ACTIONS(1079), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1077), - [aux_sym_compression_token1] = ACTIONS(1077), - [aux_sym_connection_attempts_token1] = ACTIONS(1077), - [aux_sym_connect_timeout_token1] = ACTIONS(1077), - [aux_sym_control_master_token1] = ACTIONS(1077), - [aux_sym_control_path_token1] = ACTIONS(1077), - [aux_sym_control_persist_token1] = ACTIONS(1077), - [aux_sym_dynamic_forward_token1] = ACTIONS(1077), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1077), - [aux_sym_escape_char_token1] = ACTIONS(1077), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1077), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1077), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1077), - [aux_sym_forward_agent_token1] = ACTIONS(1077), - [aux_sym_forward_x11_token1] = ACTIONS(1079), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1077), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1077), - [aux_sym_gateway_ports_token1] = ACTIONS(1077), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1077), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1077), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1077), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1077), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1077), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1077), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1077), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1077), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1077), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1077), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1077), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1077), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1077), - [aux_sym_host_key_alias_token1] = ACTIONS(1077), - [aux_sym_hostname_token1] = ACTIONS(1077), - [aux_sym_identities_only_token1] = ACTIONS(1077), - [aux_sym_identity_agent_token1] = ACTIONS(1077), - [aux_sym_identity_file_token1] = ACTIONS(1077), - [aux_sym_ignore_unknown_token1] = ACTIONS(1077), - [aux_sym_include_token1] = ACTIONS(1077), - [aux_sym_ip_qos_token1] = ACTIONS(1077), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1077), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1077), - [aux_sym_kex_algorithms_token1] = ACTIONS(1077), - [aux_sym_known_hosts_command_token1] = ACTIONS(1077), - [aux_sym_local_command_token1] = ACTIONS(1077), - [aux_sym_local_forward_token1] = ACTIONS(1077), - [aux_sym_log_level_token1] = ACTIONS(1077), - [aux_sym_log_verbose_token1] = ACTIONS(1077), - [aux_sym_macs_token1] = ACTIONS(1077), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1077), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1077), - [aux_sym_password_authentication_token1] = ACTIONS(1077), - [aux_sym_permit_local_command_token1] = ACTIONS(1077), - [aux_sym_permit_remote_open_token1] = ACTIONS(1077), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1077), - [aux_sym_port_token1] = ACTIONS(1077), - [aux_sym_preferred_authentications_token1] = ACTIONS(1077), - [aux_sym_protocol_token1] = ACTIONS(1077), - [aux_sym_proxy_command_token1] = ACTIONS(1077), - [aux_sym_proxy_jump_token1] = ACTIONS(1077), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1077), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1077), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1077), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1077), - [aux_sym_rekey_limit_token1] = ACTIONS(1077), - [aux_sym_remote_command_token1] = ACTIONS(1077), - [aux_sym_remote_forward_token1] = ACTIONS(1077), - [aux_sym_request_tty_token1] = ACTIONS(1077), - [aux_sym_required_rsa_size_token1] = ACTIONS(1077), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1077), - [aux_sym_security_key_provider_token1] = ACTIONS(1077), - [aux_sym_send_env_token1] = ACTIONS(1077), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1077), - [aux_sym_server_alive_interval_token1] = ACTIONS(1077), - [aux_sym_session_type_token1] = ACTIONS(1077), - [aux_sym_set_env_token1] = ACTIONS(1077), - [aux_sym_stdin_null_token1] = ACTIONS(1077), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1077), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1077), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1077), - [aux_sym_syslog_facility_token1] = ACTIONS(1077), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1077), - [aux_sym_keep_alive_token1] = ACTIONS(1077), - [aux_sym_tunnel_token1] = ACTIONS(1079), - [aux_sym_tunnel_device_token1] = ACTIONS(1077), - [aux_sym_update_host_keys_token1] = ACTIONS(1077), - [aux_sym_use_keychain_token1] = ACTIONS(1077), - [aux_sym_use_roaming_token1] = ACTIONS(1077), - [aux_sym_user_token1] = ACTIONS(1079), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1077), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1077), - [aux_sym_visual_host_key_token1] = ACTIONS(1077), - [aux_sym_xauth_location_token1] = ACTIONS(1077), + [ts_builtin_sym_end] = ACTIONS(3452), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3454), + [aux_sym_match_token1] = ACTIONS(3452), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3452), + [aux_sym_address_family_token1] = ACTIONS(3452), + [aux_sym_batch_mode_token1] = ACTIONS(3452), + [aux_sym_bind_address_token1] = ACTIONS(3452), + [aux_sym_bind_interface_token1] = ACTIONS(3452), + [aux_sym_canonical_domains_token1] = ACTIONS(3452), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3452), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3452), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3452), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3452), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3452), + [aux_sym_certificate_file_token1] = ACTIONS(3452), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3452), + [aux_sym_check_host_ip_token1] = ACTIONS(3452), + [aux_sym_ciphers_token1] = ACTIONS(3452), + [aux_sym_cipher_token1] = ACTIONS(3454), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3452), + [aux_sym_compression_token1] = ACTIONS(3452), + [aux_sym_connection_attempts_token1] = ACTIONS(3452), + [aux_sym_connect_timeout_token1] = ACTIONS(3452), + [aux_sym_control_master_token1] = ACTIONS(3452), + [aux_sym_control_path_token1] = ACTIONS(3452), + [aux_sym_control_persist_token1] = ACTIONS(3452), + [aux_sym_dynamic_forward_token1] = ACTIONS(3452), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3452), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3452), + [aux_sym_escape_char_token1] = ACTIONS(3452), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3452), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3452), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3452), + [aux_sym_forward_agent_token1] = ACTIONS(3452), + [aux_sym_forward_x11_token1] = ACTIONS(3454), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3452), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3452), + [aux_sym_gateway_ports_token1] = ACTIONS(3452), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3452), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3452), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3452), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3452), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3452), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3452), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3452), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3452), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3452), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3452), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3452), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3452), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3452), + [aux_sym_host_key_alias_token1] = ACTIONS(3452), + [aux_sym_hostname_token1] = ACTIONS(3452), + [aux_sym_identities_only_token1] = ACTIONS(3452), + [aux_sym_identity_agent_token1] = ACTIONS(3452), + [aux_sym_identity_file_token1] = ACTIONS(3452), + [aux_sym_ignore_unknown_token1] = ACTIONS(3452), + [aux_sym_include_token1] = ACTIONS(3452), + [aux_sym_ip_qos_token1] = ACTIONS(3452), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3452), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3452), + [aux_sym_kex_algorithms_token1] = ACTIONS(3452), + [aux_sym_known_hosts_command_token1] = ACTIONS(3452), + [aux_sym_local_command_token1] = ACTIONS(3452), + [aux_sym_local_forward_token1] = ACTIONS(3452), + [aux_sym_log_level_token1] = ACTIONS(3452), + [aux_sym_log_verbose_token1] = ACTIONS(3452), + [aux_sym_macs_token1] = ACTIONS(3452), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3452), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3452), + [aux_sym_password_authentication_token1] = ACTIONS(3452), + [aux_sym_permit_local_command_token1] = ACTIONS(3452), + [aux_sym_permit_remote_open_token1] = ACTIONS(3452), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3452), + [aux_sym_port_token1] = ACTIONS(3452), + [aux_sym_preferred_authentications_token1] = ACTIONS(3452), + [aux_sym_protocol_token1] = ACTIONS(3452), + [aux_sym_proxy_command_token1] = ACTIONS(3452), + [aux_sym_proxy_jump_token1] = ACTIONS(3452), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3452), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3452), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3452), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3452), + [aux_sym_rekey_limit_token1] = ACTIONS(3452), + [aux_sym_remote_command_token1] = ACTIONS(3452), + [aux_sym_remote_forward_token1] = ACTIONS(3452), + [aux_sym_request_tty_token1] = ACTIONS(3452), + [aux_sym_required_rsa_size_token1] = ACTIONS(3452), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3452), + [aux_sym_security_key_provider_token1] = ACTIONS(3452), + [aux_sym_send_env_token1] = ACTIONS(3452), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3452), + [aux_sym_server_alive_interval_token1] = ACTIONS(3452), + [aux_sym_session_type_token1] = ACTIONS(3452), + [aux_sym_set_env_token1] = ACTIONS(3452), + [aux_sym_stdin_null_token1] = ACTIONS(3452), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3452), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3452), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3452), + [aux_sym_syslog_facility_token1] = ACTIONS(3452), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3452), + [aux_sym_keep_alive_token1] = ACTIONS(3452), + [aux_sym_tunnel_token1] = ACTIONS(3454), + [aux_sym_tunnel_device_token1] = ACTIONS(3452), + [aux_sym_update_host_keys_token1] = ACTIONS(3452), + [aux_sym_use_keychain_token1] = ACTIONS(3452), + [aux_sym_use_roaming_token1] = ACTIONS(3452), + [aux_sym_user_token1] = ACTIONS(3454), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3452), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3452), + [aux_sym_visual_host_key_token1] = ACTIONS(3452), + [aux_sym_xauth_location_token1] = ACTIONS(3452), }, [652] = { - [ts_builtin_sym_end] = ACTIONS(1083), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1085), - [aux_sym_match_token1] = ACTIONS(1083), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1083), - [aux_sym_address_family_token1] = ACTIONS(1083), - [aux_sym_batch_mode_token1] = ACTIONS(1083), - [aux_sym_bind_address_token1] = ACTIONS(1083), - [aux_sym_bind_interface_token1] = ACTIONS(1083), - [aux_sym_canonical_domains_token1] = ACTIONS(1083), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1083), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1083), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1083), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1083), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1083), - [aux_sym_certificate_file_token1] = ACTIONS(1083), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1083), - [aux_sym_check_host_ip_token1] = ACTIONS(1083), - [aux_sym_ciphers_token1] = ACTIONS(1083), - [aux_sym_cipher_token1] = ACTIONS(1085), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1083), - [aux_sym_compression_token1] = ACTIONS(1083), - [aux_sym_connection_attempts_token1] = ACTIONS(1083), - [aux_sym_connect_timeout_token1] = ACTIONS(1083), - [aux_sym_control_master_token1] = ACTIONS(1083), - [aux_sym_control_path_token1] = ACTIONS(1083), - [aux_sym_control_persist_token1] = ACTIONS(1083), - [aux_sym_dynamic_forward_token1] = ACTIONS(1083), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1083), - [aux_sym_escape_char_token1] = ACTIONS(1083), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1083), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1083), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1083), - [aux_sym_forward_agent_token1] = ACTIONS(1083), - [aux_sym_forward_x11_token1] = ACTIONS(1085), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1083), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1083), - [aux_sym_gateway_ports_token1] = ACTIONS(1083), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1083), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1083), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1083), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1083), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1083), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1083), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1083), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1083), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1083), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1083), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1083), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1083), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1083), - [aux_sym_host_key_alias_token1] = ACTIONS(1083), - [aux_sym_hostname_token1] = ACTIONS(1083), - [aux_sym_identities_only_token1] = ACTIONS(1083), - [aux_sym_identity_agent_token1] = ACTIONS(1083), - [aux_sym_identity_file_token1] = ACTIONS(1083), - [aux_sym_ignore_unknown_token1] = ACTIONS(1083), - [aux_sym_include_token1] = ACTIONS(1083), - [aux_sym_ip_qos_token1] = ACTIONS(1083), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1083), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1083), - [aux_sym_kex_algorithms_token1] = ACTIONS(1083), - [aux_sym_known_hosts_command_token1] = ACTIONS(1083), - [aux_sym_local_command_token1] = ACTIONS(1083), - [aux_sym_local_forward_token1] = ACTIONS(1083), - [aux_sym_log_level_token1] = ACTIONS(1083), - [aux_sym_log_verbose_token1] = ACTIONS(1083), - [aux_sym_macs_token1] = ACTIONS(1083), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1083), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1083), - [aux_sym_password_authentication_token1] = ACTIONS(1083), - [aux_sym_permit_local_command_token1] = ACTIONS(1083), - [aux_sym_permit_remote_open_token1] = ACTIONS(1083), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1083), - [aux_sym_port_token1] = ACTIONS(1083), - [aux_sym_preferred_authentications_token1] = ACTIONS(1083), - [aux_sym_protocol_token1] = ACTIONS(1083), - [aux_sym_proxy_command_token1] = ACTIONS(1083), - [aux_sym_proxy_jump_token1] = ACTIONS(1083), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1083), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1083), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1083), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1083), - [aux_sym_rekey_limit_token1] = ACTIONS(1083), - [aux_sym_remote_command_token1] = ACTIONS(1083), - [aux_sym_remote_forward_token1] = ACTIONS(1083), - [aux_sym_request_tty_token1] = ACTIONS(1083), - [aux_sym_required_rsa_size_token1] = ACTIONS(1083), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1083), - [aux_sym_security_key_provider_token1] = ACTIONS(1083), - [aux_sym_send_env_token1] = ACTIONS(1083), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1083), - [aux_sym_server_alive_interval_token1] = ACTIONS(1083), - [aux_sym_session_type_token1] = ACTIONS(1083), - [aux_sym_set_env_token1] = ACTIONS(1083), - [aux_sym_stdin_null_token1] = ACTIONS(1083), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1083), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1083), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1083), - [aux_sym_syslog_facility_token1] = ACTIONS(1083), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1083), - [aux_sym_keep_alive_token1] = ACTIONS(1083), - [aux_sym_tunnel_token1] = ACTIONS(1085), - [aux_sym_tunnel_device_token1] = ACTIONS(1083), - [aux_sym_update_host_keys_token1] = ACTIONS(1083), - [aux_sym_use_keychain_token1] = ACTIONS(1083), - [aux_sym_use_roaming_token1] = ACTIONS(1083), - [aux_sym_user_token1] = ACTIONS(1085), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1083), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1083), - [aux_sym_visual_host_key_token1] = ACTIONS(1083), - [aux_sym_xauth_location_token1] = ACTIONS(1083), + [ts_builtin_sym_end] = ACTIONS(3456), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3458), + [aux_sym_match_token1] = ACTIONS(3456), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3456), + [aux_sym_address_family_token1] = ACTIONS(3456), + [aux_sym_batch_mode_token1] = ACTIONS(3456), + [aux_sym_bind_address_token1] = ACTIONS(3456), + [aux_sym_bind_interface_token1] = ACTIONS(3456), + [aux_sym_canonical_domains_token1] = ACTIONS(3456), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3456), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3456), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3456), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3456), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3456), + [aux_sym_certificate_file_token1] = ACTIONS(3456), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3456), + [aux_sym_check_host_ip_token1] = ACTIONS(3456), + [aux_sym_ciphers_token1] = ACTIONS(3456), + [aux_sym_cipher_token1] = ACTIONS(3458), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3456), + [aux_sym_compression_token1] = ACTIONS(3456), + [aux_sym_connection_attempts_token1] = ACTIONS(3456), + [aux_sym_connect_timeout_token1] = ACTIONS(3456), + [aux_sym_control_master_token1] = ACTIONS(3456), + [aux_sym_control_path_token1] = ACTIONS(3456), + [aux_sym_control_persist_token1] = ACTIONS(3456), + [aux_sym_dynamic_forward_token1] = ACTIONS(3456), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3456), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3456), + [aux_sym_escape_char_token1] = ACTIONS(3456), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3456), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3456), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3456), + [aux_sym_forward_agent_token1] = ACTIONS(3456), + [aux_sym_forward_x11_token1] = ACTIONS(3458), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3456), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3456), + [aux_sym_gateway_ports_token1] = ACTIONS(3456), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3456), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3456), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3456), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3456), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3456), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3456), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3456), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3456), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3456), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3456), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3456), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3456), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3456), + [aux_sym_host_key_alias_token1] = ACTIONS(3456), + [aux_sym_hostname_token1] = ACTIONS(3456), + [aux_sym_identities_only_token1] = ACTIONS(3456), + [aux_sym_identity_agent_token1] = ACTIONS(3456), + [aux_sym_identity_file_token1] = ACTIONS(3456), + [aux_sym_ignore_unknown_token1] = ACTIONS(3456), + [aux_sym_include_token1] = ACTIONS(3456), + [aux_sym_ip_qos_token1] = ACTIONS(3456), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3456), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3456), + [aux_sym_kex_algorithms_token1] = ACTIONS(3456), + [aux_sym_known_hosts_command_token1] = ACTIONS(3456), + [aux_sym_local_command_token1] = ACTIONS(3456), + [aux_sym_local_forward_token1] = ACTIONS(3456), + [aux_sym_log_level_token1] = ACTIONS(3456), + [aux_sym_log_verbose_token1] = ACTIONS(3456), + [aux_sym_macs_token1] = ACTIONS(3456), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3456), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3456), + [aux_sym_password_authentication_token1] = ACTIONS(3456), + [aux_sym_permit_local_command_token1] = ACTIONS(3456), + [aux_sym_permit_remote_open_token1] = ACTIONS(3456), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3456), + [aux_sym_port_token1] = ACTIONS(3456), + [aux_sym_preferred_authentications_token1] = ACTIONS(3456), + [aux_sym_protocol_token1] = ACTIONS(3456), + [aux_sym_proxy_command_token1] = ACTIONS(3456), + [aux_sym_proxy_jump_token1] = ACTIONS(3456), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3456), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3456), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3456), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3456), + [aux_sym_rekey_limit_token1] = ACTIONS(3456), + [aux_sym_remote_command_token1] = ACTIONS(3456), + [aux_sym_remote_forward_token1] = ACTIONS(3456), + [aux_sym_request_tty_token1] = ACTIONS(3456), + [aux_sym_required_rsa_size_token1] = ACTIONS(3456), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3456), + [aux_sym_security_key_provider_token1] = ACTIONS(3456), + [aux_sym_send_env_token1] = ACTIONS(3456), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3456), + [aux_sym_server_alive_interval_token1] = ACTIONS(3456), + [aux_sym_session_type_token1] = ACTIONS(3456), + [aux_sym_set_env_token1] = ACTIONS(3456), + [aux_sym_stdin_null_token1] = ACTIONS(3456), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3456), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3456), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3456), + [aux_sym_syslog_facility_token1] = ACTIONS(3456), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3456), + [aux_sym_keep_alive_token1] = ACTIONS(3456), + [aux_sym_tunnel_token1] = ACTIONS(3458), + [aux_sym_tunnel_device_token1] = ACTIONS(3456), + [aux_sym_update_host_keys_token1] = ACTIONS(3456), + [aux_sym_use_keychain_token1] = ACTIONS(3456), + [aux_sym_use_roaming_token1] = ACTIONS(3456), + [aux_sym_user_token1] = ACTIONS(3458), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3456), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3456), + [aux_sym_visual_host_key_token1] = ACTIONS(3456), + [aux_sym_xauth_location_token1] = ACTIONS(3456), }, [653] = { - [ts_builtin_sym_end] = ACTIONS(1089), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1091), - [aux_sym_match_token1] = ACTIONS(1089), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1089), - [aux_sym_address_family_token1] = ACTIONS(1089), - [aux_sym_batch_mode_token1] = ACTIONS(1089), - [aux_sym_bind_address_token1] = ACTIONS(1089), - [aux_sym_bind_interface_token1] = ACTIONS(1089), - [aux_sym_canonical_domains_token1] = ACTIONS(1089), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1089), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1089), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1089), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1089), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1089), - [aux_sym_certificate_file_token1] = ACTIONS(1089), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1089), - [aux_sym_check_host_ip_token1] = ACTIONS(1089), - [aux_sym_ciphers_token1] = ACTIONS(1089), - [aux_sym_cipher_token1] = ACTIONS(1091), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1089), - [aux_sym_compression_token1] = ACTIONS(1089), - [aux_sym_connection_attempts_token1] = ACTIONS(1089), - [aux_sym_connect_timeout_token1] = ACTIONS(1089), - [aux_sym_control_master_token1] = ACTIONS(1089), - [aux_sym_control_path_token1] = ACTIONS(1089), - [aux_sym_control_persist_token1] = ACTIONS(1089), - [aux_sym_dynamic_forward_token1] = ACTIONS(1089), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1089), - [aux_sym_escape_char_token1] = ACTIONS(1089), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1089), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1089), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1089), - [aux_sym_forward_agent_token1] = ACTIONS(1089), - [aux_sym_forward_x11_token1] = ACTIONS(1091), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1089), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1089), - [aux_sym_gateway_ports_token1] = ACTIONS(1089), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1089), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1089), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1089), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1089), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1089), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1089), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1089), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1089), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1089), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1089), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1089), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1089), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1089), - [aux_sym_host_key_alias_token1] = ACTIONS(1089), - [aux_sym_hostname_token1] = ACTIONS(1089), - [aux_sym_identities_only_token1] = ACTIONS(1089), - [aux_sym_identity_agent_token1] = ACTIONS(1089), - [aux_sym_identity_file_token1] = ACTIONS(1089), - [aux_sym_ignore_unknown_token1] = ACTIONS(1089), - [aux_sym_include_token1] = ACTIONS(1089), - [aux_sym_ip_qos_token1] = ACTIONS(1089), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1089), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1089), - [aux_sym_kex_algorithms_token1] = ACTIONS(1089), - [aux_sym_known_hosts_command_token1] = ACTIONS(1089), - [aux_sym_local_command_token1] = ACTIONS(1089), - [aux_sym_local_forward_token1] = ACTIONS(1089), - [aux_sym_log_level_token1] = ACTIONS(1089), - [aux_sym_log_verbose_token1] = ACTIONS(1089), - [aux_sym_macs_token1] = ACTIONS(1089), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1089), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1089), - [aux_sym_password_authentication_token1] = ACTIONS(1089), - [aux_sym_permit_local_command_token1] = ACTIONS(1089), - [aux_sym_permit_remote_open_token1] = ACTIONS(1089), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1089), - [aux_sym_port_token1] = ACTIONS(1089), - [aux_sym_preferred_authentications_token1] = ACTIONS(1089), - [aux_sym_protocol_token1] = ACTIONS(1089), - [aux_sym_proxy_command_token1] = ACTIONS(1089), - [aux_sym_proxy_jump_token1] = ACTIONS(1089), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1089), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1089), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1089), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1089), - [aux_sym_rekey_limit_token1] = ACTIONS(1089), - [aux_sym_remote_command_token1] = ACTIONS(1089), - [aux_sym_remote_forward_token1] = ACTIONS(1089), - [aux_sym_request_tty_token1] = ACTIONS(1089), - [aux_sym_required_rsa_size_token1] = ACTIONS(1089), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1089), - [aux_sym_security_key_provider_token1] = ACTIONS(1089), - [aux_sym_send_env_token1] = ACTIONS(1089), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1089), - [aux_sym_server_alive_interval_token1] = ACTIONS(1089), - [aux_sym_session_type_token1] = ACTIONS(1089), - [aux_sym_set_env_token1] = ACTIONS(1089), - [aux_sym_stdin_null_token1] = ACTIONS(1089), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1089), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1089), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1089), - [aux_sym_syslog_facility_token1] = ACTIONS(1089), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1089), - [aux_sym_keep_alive_token1] = ACTIONS(1089), - [aux_sym_tunnel_token1] = ACTIONS(1091), - [aux_sym_tunnel_device_token1] = ACTIONS(1089), - [aux_sym_update_host_keys_token1] = ACTIONS(1089), - [aux_sym_use_keychain_token1] = ACTIONS(1089), - [aux_sym_use_roaming_token1] = ACTIONS(1089), - [aux_sym_user_token1] = ACTIONS(1091), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1089), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1089), - [aux_sym_visual_host_key_token1] = ACTIONS(1089), - [aux_sym_xauth_location_token1] = ACTIONS(1089), + [ts_builtin_sym_end] = ACTIONS(572), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(574), + [aux_sym_match_token1] = ACTIONS(572), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(572), + [aux_sym_address_family_token1] = ACTIONS(572), + [aux_sym_batch_mode_token1] = ACTIONS(572), + [aux_sym_bind_address_token1] = ACTIONS(572), + [aux_sym_bind_interface_token1] = ACTIONS(572), + [aux_sym_canonical_domains_token1] = ACTIONS(572), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(572), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(572), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(572), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(572), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(572), + [aux_sym_certificate_file_token1] = ACTIONS(572), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(572), + [aux_sym_check_host_ip_token1] = ACTIONS(572), + [aux_sym_ciphers_token1] = ACTIONS(572), + [aux_sym_cipher_token1] = ACTIONS(574), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(572), + [aux_sym_compression_token1] = ACTIONS(572), + [aux_sym_connection_attempts_token1] = ACTIONS(572), + [aux_sym_connect_timeout_token1] = ACTIONS(572), + [aux_sym_control_master_token1] = ACTIONS(572), + [aux_sym_control_path_token1] = ACTIONS(572), + [aux_sym_control_persist_token1] = ACTIONS(572), + [aux_sym_dynamic_forward_token1] = ACTIONS(572), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(572), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(572), + [aux_sym_escape_char_token1] = ACTIONS(572), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(572), + [aux_sym_fingerprint_hash_token1] = ACTIONS(572), + [aux_sym_fork_after_authentication_token1] = ACTIONS(572), + [aux_sym_forward_agent_token1] = ACTIONS(572), + [aux_sym_forward_x11_token1] = ACTIONS(574), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(572), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(572), + [aux_sym_gateway_ports_token1] = ACTIONS(572), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(572), + [aux_sym_gssapi_authentication_token1] = ACTIONS(572), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(572), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(572), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(572), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(572), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(572), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(572), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(572), + [aux_sym_hash_known_hosts_token1] = ACTIONS(572), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(572), + [aux_sym_hostbased_authentication_token1] = ACTIONS(572), + [aux_sym_host_key_algorithms_token1] = ACTIONS(572), + [aux_sym_host_key_alias_token1] = ACTIONS(572), + [aux_sym_hostname_token1] = ACTIONS(572), + [aux_sym_identities_only_token1] = ACTIONS(572), + [aux_sym_identity_agent_token1] = ACTIONS(572), + [aux_sym_identity_file_token1] = ACTIONS(572), + [aux_sym_ignore_unknown_token1] = ACTIONS(572), + [aux_sym_include_token1] = ACTIONS(572), + [aux_sym_ip_qos_token1] = ACTIONS(572), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(572), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(572), + [aux_sym_kex_algorithms_token1] = ACTIONS(572), + [aux_sym_known_hosts_command_token1] = ACTIONS(572), + [aux_sym_local_command_token1] = ACTIONS(572), + [aux_sym_local_forward_token1] = ACTIONS(572), + [aux_sym_log_level_token1] = ACTIONS(572), + [aux_sym_log_verbose_token1] = ACTIONS(572), + [aux_sym_macs_token1] = ACTIONS(572), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(572), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(572), + [aux_sym_password_authentication_token1] = ACTIONS(572), + [aux_sym_permit_local_command_token1] = ACTIONS(572), + [aux_sym_permit_remote_open_token1] = ACTIONS(572), + [aux_sym_pkcs11_provider_token1] = ACTIONS(572), + [aux_sym_port_token1] = ACTIONS(572), + [aux_sym_preferred_authentications_token1] = ACTIONS(572), + [aux_sym_protocol_token1] = ACTIONS(572), + [aux_sym_proxy_command_token1] = ACTIONS(572), + [aux_sym_proxy_jump_token1] = ACTIONS(572), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(572), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(572), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(572), + [aux_sym_pubkey_authentication_token1] = ACTIONS(572), + [aux_sym_rekey_limit_token1] = ACTIONS(572), + [aux_sym_remote_command_token1] = ACTIONS(572), + [aux_sym_remote_forward_token1] = ACTIONS(572), + [aux_sym_request_tty_token1] = ACTIONS(572), + [aux_sym_required_rsa_size_token1] = ACTIONS(572), + [aux_sym_revoked_host_keys_token1] = ACTIONS(572), + [aux_sym_security_key_provider_token1] = ACTIONS(572), + [aux_sym_send_env_token1] = ACTIONS(572), + [aux_sym_server_alive_count_max_token1] = ACTIONS(572), + [aux_sym_server_alive_interval_token1] = ACTIONS(572), + [aux_sym_session_type_token1] = ACTIONS(572), + [aux_sym_set_env_token1] = ACTIONS(572), + [aux_sym_stdin_null_token1] = ACTIONS(572), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(572), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(572), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(572), + [aux_sym_syslog_facility_token1] = ACTIONS(572), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(572), + [aux_sym_keep_alive_token1] = ACTIONS(572), + [aux_sym_tunnel_token1] = ACTIONS(574), + [aux_sym_tunnel_device_token1] = ACTIONS(572), + [aux_sym_update_host_keys_token1] = ACTIONS(572), + [aux_sym_use_keychain_token1] = ACTIONS(572), + [aux_sym_use_roaming_token1] = ACTIONS(572), + [aux_sym_user_token1] = ACTIONS(574), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(572), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(572), + [aux_sym_visual_host_key_token1] = ACTIONS(572), + [aux_sym_xauth_location_token1] = ACTIONS(572), }, [654] = { - [ts_builtin_sym_end] = ACTIONS(1095), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1097), - [aux_sym_match_token1] = ACTIONS(1095), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1095), - [aux_sym_address_family_token1] = ACTIONS(1095), - [aux_sym_batch_mode_token1] = ACTIONS(1095), - [aux_sym_bind_address_token1] = ACTIONS(1095), - [aux_sym_bind_interface_token1] = ACTIONS(1095), - [aux_sym_canonical_domains_token1] = ACTIONS(1095), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1095), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1095), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1095), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1095), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1095), - [aux_sym_certificate_file_token1] = ACTIONS(1095), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1095), - [aux_sym_check_host_ip_token1] = ACTIONS(1095), - [aux_sym_ciphers_token1] = ACTIONS(1095), - [aux_sym_cipher_token1] = ACTIONS(1097), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1095), - [aux_sym_compression_token1] = ACTIONS(1095), - [aux_sym_connection_attempts_token1] = ACTIONS(1095), - [aux_sym_connect_timeout_token1] = ACTIONS(1095), - [aux_sym_control_master_token1] = ACTIONS(1095), - [aux_sym_control_path_token1] = ACTIONS(1095), - [aux_sym_control_persist_token1] = ACTIONS(1095), - [aux_sym_dynamic_forward_token1] = ACTIONS(1095), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1095), - [aux_sym_escape_char_token1] = ACTIONS(1095), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1095), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1095), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1095), - [aux_sym_forward_agent_token1] = ACTIONS(1095), - [aux_sym_forward_x11_token1] = ACTIONS(1097), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1095), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1095), - [aux_sym_gateway_ports_token1] = ACTIONS(1095), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1095), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1095), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1095), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1095), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1095), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1095), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1095), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1095), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1095), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1095), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1095), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1095), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1095), - [aux_sym_host_key_alias_token1] = ACTIONS(1095), - [aux_sym_hostname_token1] = ACTIONS(1095), - [aux_sym_identities_only_token1] = ACTIONS(1095), - [aux_sym_identity_agent_token1] = ACTIONS(1095), - [aux_sym_identity_file_token1] = ACTIONS(1095), - [aux_sym_ignore_unknown_token1] = ACTIONS(1095), - [aux_sym_include_token1] = ACTIONS(1095), - [aux_sym_ip_qos_token1] = ACTIONS(1095), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1095), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1095), - [aux_sym_kex_algorithms_token1] = ACTIONS(1095), - [aux_sym_known_hosts_command_token1] = ACTIONS(1095), - [aux_sym_local_command_token1] = ACTIONS(1095), - [aux_sym_local_forward_token1] = ACTIONS(1095), - [aux_sym_log_level_token1] = ACTIONS(1095), - [aux_sym_log_verbose_token1] = ACTIONS(1095), - [aux_sym_macs_token1] = ACTIONS(1095), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1095), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1095), - [aux_sym_password_authentication_token1] = ACTIONS(1095), - [aux_sym_permit_local_command_token1] = ACTIONS(1095), - [aux_sym_permit_remote_open_token1] = ACTIONS(1095), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1095), - [aux_sym_port_token1] = ACTIONS(1095), - [aux_sym_preferred_authentications_token1] = ACTIONS(1095), - [aux_sym_protocol_token1] = ACTIONS(1095), - [aux_sym_proxy_command_token1] = ACTIONS(1095), - [aux_sym_proxy_jump_token1] = ACTIONS(1095), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1095), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1095), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1095), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1095), - [aux_sym_rekey_limit_token1] = ACTIONS(1095), - [aux_sym_remote_command_token1] = ACTIONS(1095), - [aux_sym_remote_forward_token1] = ACTIONS(1095), - [aux_sym_request_tty_token1] = ACTIONS(1095), - [aux_sym_required_rsa_size_token1] = ACTIONS(1095), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1095), - [aux_sym_security_key_provider_token1] = ACTIONS(1095), - [aux_sym_send_env_token1] = ACTIONS(1095), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1095), - [aux_sym_server_alive_interval_token1] = ACTIONS(1095), - [aux_sym_session_type_token1] = ACTIONS(1095), - [aux_sym_set_env_token1] = ACTIONS(1095), - [aux_sym_stdin_null_token1] = ACTIONS(1095), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1095), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1095), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1095), - [aux_sym_syslog_facility_token1] = ACTIONS(1095), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1095), - [aux_sym_keep_alive_token1] = ACTIONS(1095), - [aux_sym_tunnel_token1] = ACTIONS(1097), - [aux_sym_tunnel_device_token1] = ACTIONS(1095), - [aux_sym_update_host_keys_token1] = ACTIONS(1095), - [aux_sym_use_keychain_token1] = ACTIONS(1095), - [aux_sym_use_roaming_token1] = ACTIONS(1095), - [aux_sym_user_token1] = ACTIONS(1097), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1095), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1095), - [aux_sym_visual_host_key_token1] = ACTIONS(1095), - [aux_sym_xauth_location_token1] = ACTIONS(1095), + [ts_builtin_sym_end] = ACTIONS(578), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(580), + [aux_sym_match_token1] = ACTIONS(578), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(578), + [aux_sym_address_family_token1] = ACTIONS(578), + [aux_sym_batch_mode_token1] = ACTIONS(578), + [aux_sym_bind_address_token1] = ACTIONS(578), + [aux_sym_bind_interface_token1] = ACTIONS(578), + [aux_sym_canonical_domains_token1] = ACTIONS(578), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(578), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(578), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(578), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(578), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(578), + [aux_sym_certificate_file_token1] = ACTIONS(578), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(578), + [aux_sym_check_host_ip_token1] = ACTIONS(578), + [aux_sym_ciphers_token1] = ACTIONS(578), + [aux_sym_cipher_token1] = ACTIONS(580), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(578), + [aux_sym_compression_token1] = ACTIONS(578), + [aux_sym_connection_attempts_token1] = ACTIONS(578), + [aux_sym_connect_timeout_token1] = ACTIONS(578), + [aux_sym_control_master_token1] = ACTIONS(578), + [aux_sym_control_path_token1] = ACTIONS(578), + [aux_sym_control_persist_token1] = ACTIONS(578), + [aux_sym_dynamic_forward_token1] = ACTIONS(578), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(578), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(578), + [aux_sym_escape_char_token1] = ACTIONS(578), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(578), + [aux_sym_fingerprint_hash_token1] = ACTIONS(578), + [aux_sym_fork_after_authentication_token1] = ACTIONS(578), + [aux_sym_forward_agent_token1] = ACTIONS(578), + [aux_sym_forward_x11_token1] = ACTIONS(580), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(578), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(578), + [aux_sym_gateway_ports_token1] = ACTIONS(578), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(578), + [aux_sym_gssapi_authentication_token1] = ACTIONS(578), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(578), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(578), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(578), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(578), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(578), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(578), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(578), + [aux_sym_hash_known_hosts_token1] = ACTIONS(578), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(578), + [aux_sym_hostbased_authentication_token1] = ACTIONS(578), + [aux_sym_host_key_algorithms_token1] = ACTIONS(578), + [aux_sym_host_key_alias_token1] = ACTIONS(578), + [aux_sym_hostname_token1] = ACTIONS(578), + [aux_sym_identities_only_token1] = ACTIONS(578), + [aux_sym_identity_agent_token1] = ACTIONS(578), + [aux_sym_identity_file_token1] = ACTIONS(578), + [aux_sym_ignore_unknown_token1] = ACTIONS(578), + [aux_sym_include_token1] = ACTIONS(578), + [aux_sym_ip_qos_token1] = ACTIONS(578), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(578), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(578), + [aux_sym_kex_algorithms_token1] = ACTIONS(578), + [aux_sym_known_hosts_command_token1] = ACTIONS(578), + [aux_sym_local_command_token1] = ACTIONS(578), + [aux_sym_local_forward_token1] = ACTIONS(578), + [aux_sym_log_level_token1] = ACTIONS(578), + [aux_sym_log_verbose_token1] = ACTIONS(578), + [aux_sym_macs_token1] = ACTIONS(578), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(578), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(578), + [aux_sym_password_authentication_token1] = ACTIONS(578), + [aux_sym_permit_local_command_token1] = ACTIONS(578), + [aux_sym_permit_remote_open_token1] = ACTIONS(578), + [aux_sym_pkcs11_provider_token1] = ACTIONS(578), + [aux_sym_port_token1] = ACTIONS(578), + [aux_sym_preferred_authentications_token1] = ACTIONS(578), + [aux_sym_protocol_token1] = ACTIONS(578), + [aux_sym_proxy_command_token1] = ACTIONS(578), + [aux_sym_proxy_jump_token1] = ACTIONS(578), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(578), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(578), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(578), + [aux_sym_pubkey_authentication_token1] = ACTIONS(578), + [aux_sym_rekey_limit_token1] = ACTIONS(578), + [aux_sym_remote_command_token1] = ACTIONS(578), + [aux_sym_remote_forward_token1] = ACTIONS(578), + [aux_sym_request_tty_token1] = ACTIONS(578), + [aux_sym_required_rsa_size_token1] = ACTIONS(578), + [aux_sym_revoked_host_keys_token1] = ACTIONS(578), + [aux_sym_security_key_provider_token1] = ACTIONS(578), + [aux_sym_send_env_token1] = ACTIONS(578), + [aux_sym_server_alive_count_max_token1] = ACTIONS(578), + [aux_sym_server_alive_interval_token1] = ACTIONS(578), + [aux_sym_session_type_token1] = ACTIONS(578), + [aux_sym_set_env_token1] = ACTIONS(578), + [aux_sym_stdin_null_token1] = ACTIONS(578), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(578), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(578), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(578), + [aux_sym_syslog_facility_token1] = ACTIONS(578), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(578), + [aux_sym_keep_alive_token1] = ACTIONS(578), + [aux_sym_tunnel_token1] = ACTIONS(580), + [aux_sym_tunnel_device_token1] = ACTIONS(578), + [aux_sym_update_host_keys_token1] = ACTIONS(578), + [aux_sym_use_keychain_token1] = ACTIONS(578), + [aux_sym_use_roaming_token1] = ACTIONS(578), + [aux_sym_user_token1] = ACTIONS(580), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(578), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(578), + [aux_sym_visual_host_key_token1] = ACTIONS(578), + [aux_sym_xauth_location_token1] = ACTIONS(578), }, [655] = { - [ts_builtin_sym_end] = ACTIONS(1101), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1103), - [aux_sym_match_token1] = ACTIONS(1101), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1101), - [aux_sym_address_family_token1] = ACTIONS(1101), - [aux_sym_batch_mode_token1] = ACTIONS(1101), - [aux_sym_bind_address_token1] = ACTIONS(1101), - [aux_sym_bind_interface_token1] = ACTIONS(1101), - [aux_sym_canonical_domains_token1] = ACTIONS(1101), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1101), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1101), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1101), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1101), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1101), - [aux_sym_certificate_file_token1] = ACTIONS(1101), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1101), - [aux_sym_check_host_ip_token1] = ACTIONS(1101), - [aux_sym_ciphers_token1] = ACTIONS(1101), - [aux_sym_cipher_token1] = ACTIONS(1103), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1101), - [aux_sym_compression_token1] = ACTIONS(1101), - [aux_sym_connection_attempts_token1] = ACTIONS(1101), - [aux_sym_connect_timeout_token1] = ACTIONS(1101), - [aux_sym_control_master_token1] = ACTIONS(1101), - [aux_sym_control_path_token1] = ACTIONS(1101), - [aux_sym_control_persist_token1] = ACTIONS(1101), - [aux_sym_dynamic_forward_token1] = ACTIONS(1101), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1101), - [aux_sym_escape_char_token1] = ACTIONS(1101), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1101), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1101), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1101), - [aux_sym_forward_agent_token1] = ACTIONS(1101), - [aux_sym_forward_x11_token1] = ACTIONS(1103), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1101), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1101), - [aux_sym_gateway_ports_token1] = ACTIONS(1101), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1101), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1101), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1101), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1101), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1101), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1101), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1101), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1101), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1101), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1101), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1101), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1101), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1101), - [aux_sym_host_key_alias_token1] = ACTIONS(1101), - [aux_sym_hostname_token1] = ACTIONS(1101), - [aux_sym_identities_only_token1] = ACTIONS(1101), - [aux_sym_identity_agent_token1] = ACTIONS(1101), - [aux_sym_identity_file_token1] = ACTIONS(1101), - [aux_sym_ignore_unknown_token1] = ACTIONS(1101), - [aux_sym_include_token1] = ACTIONS(1101), - [aux_sym_ip_qos_token1] = ACTIONS(1101), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1101), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1101), - [aux_sym_kex_algorithms_token1] = ACTIONS(1101), - [aux_sym_known_hosts_command_token1] = ACTIONS(1101), - [aux_sym_local_command_token1] = ACTIONS(1101), - [aux_sym_local_forward_token1] = ACTIONS(1101), - [aux_sym_log_level_token1] = ACTIONS(1101), - [aux_sym_log_verbose_token1] = ACTIONS(1101), - [aux_sym_macs_token1] = ACTIONS(1101), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1101), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1101), - [aux_sym_password_authentication_token1] = ACTIONS(1101), - [aux_sym_permit_local_command_token1] = ACTIONS(1101), - [aux_sym_permit_remote_open_token1] = ACTIONS(1101), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1101), - [aux_sym_port_token1] = ACTIONS(1101), - [aux_sym_preferred_authentications_token1] = ACTIONS(1101), - [aux_sym_protocol_token1] = ACTIONS(1101), - [aux_sym_proxy_command_token1] = ACTIONS(1101), - [aux_sym_proxy_jump_token1] = ACTIONS(1101), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1101), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1101), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1101), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1101), - [aux_sym_rekey_limit_token1] = ACTIONS(1101), - [aux_sym_remote_command_token1] = ACTIONS(1101), - [aux_sym_remote_forward_token1] = ACTIONS(1101), - [aux_sym_request_tty_token1] = ACTIONS(1101), - [aux_sym_required_rsa_size_token1] = ACTIONS(1101), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1101), - [aux_sym_security_key_provider_token1] = ACTIONS(1101), - [aux_sym_send_env_token1] = ACTIONS(1101), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1101), - [aux_sym_server_alive_interval_token1] = ACTIONS(1101), - [aux_sym_session_type_token1] = ACTIONS(1101), - [aux_sym_set_env_token1] = ACTIONS(1101), - [aux_sym_stdin_null_token1] = ACTIONS(1101), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1101), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1101), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1101), - [aux_sym_syslog_facility_token1] = ACTIONS(1101), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1101), - [aux_sym_keep_alive_token1] = ACTIONS(1101), - [aux_sym_tunnel_token1] = ACTIONS(1103), - [aux_sym_tunnel_device_token1] = ACTIONS(1101), - [aux_sym_update_host_keys_token1] = ACTIONS(1101), - [aux_sym_use_keychain_token1] = ACTIONS(1101), - [aux_sym_use_roaming_token1] = ACTIONS(1101), - [aux_sym_user_token1] = ACTIONS(1103), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1101), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1101), - [aux_sym_visual_host_key_token1] = ACTIONS(1101), - [aux_sym_xauth_location_token1] = ACTIONS(1101), + [ts_builtin_sym_end] = ACTIONS(584), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(586), + [aux_sym_match_token1] = ACTIONS(584), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(584), + [aux_sym_address_family_token1] = ACTIONS(584), + [aux_sym_batch_mode_token1] = ACTIONS(584), + [aux_sym_bind_address_token1] = ACTIONS(584), + [aux_sym_bind_interface_token1] = ACTIONS(584), + [aux_sym_canonical_domains_token1] = ACTIONS(584), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(584), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(584), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(584), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(584), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(584), + [aux_sym_certificate_file_token1] = ACTIONS(584), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(584), + [aux_sym_check_host_ip_token1] = ACTIONS(584), + [aux_sym_ciphers_token1] = ACTIONS(584), + [aux_sym_cipher_token1] = ACTIONS(586), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(584), + [aux_sym_compression_token1] = ACTIONS(584), + [aux_sym_connection_attempts_token1] = ACTIONS(584), + [aux_sym_connect_timeout_token1] = ACTIONS(584), + [aux_sym_control_master_token1] = ACTIONS(584), + [aux_sym_control_path_token1] = ACTIONS(584), + [aux_sym_control_persist_token1] = ACTIONS(584), + [aux_sym_dynamic_forward_token1] = ACTIONS(584), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(584), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(584), + [aux_sym_escape_char_token1] = ACTIONS(584), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(584), + [aux_sym_fingerprint_hash_token1] = ACTIONS(584), + [aux_sym_fork_after_authentication_token1] = ACTIONS(584), + [aux_sym_forward_agent_token1] = ACTIONS(584), + [aux_sym_forward_x11_token1] = ACTIONS(586), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(584), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(584), + [aux_sym_gateway_ports_token1] = ACTIONS(584), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(584), + [aux_sym_gssapi_authentication_token1] = ACTIONS(584), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(584), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(584), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(584), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(584), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(584), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(584), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(584), + [aux_sym_hash_known_hosts_token1] = ACTIONS(584), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(584), + [aux_sym_hostbased_authentication_token1] = ACTIONS(584), + [aux_sym_host_key_algorithms_token1] = ACTIONS(584), + [aux_sym_host_key_alias_token1] = ACTIONS(584), + [aux_sym_hostname_token1] = ACTIONS(584), + [aux_sym_identities_only_token1] = ACTIONS(584), + [aux_sym_identity_agent_token1] = ACTIONS(584), + [aux_sym_identity_file_token1] = ACTIONS(584), + [aux_sym_ignore_unknown_token1] = ACTIONS(584), + [aux_sym_include_token1] = ACTIONS(584), + [aux_sym_ip_qos_token1] = ACTIONS(584), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(584), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(584), + [aux_sym_kex_algorithms_token1] = ACTIONS(584), + [aux_sym_known_hosts_command_token1] = ACTIONS(584), + [aux_sym_local_command_token1] = ACTIONS(584), + [aux_sym_local_forward_token1] = ACTIONS(584), + [aux_sym_log_level_token1] = ACTIONS(584), + [aux_sym_log_verbose_token1] = ACTIONS(584), + [aux_sym_macs_token1] = ACTIONS(584), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(584), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(584), + [aux_sym_password_authentication_token1] = ACTIONS(584), + [aux_sym_permit_local_command_token1] = ACTIONS(584), + [aux_sym_permit_remote_open_token1] = ACTIONS(584), + [aux_sym_pkcs11_provider_token1] = ACTIONS(584), + [aux_sym_port_token1] = ACTIONS(584), + [aux_sym_preferred_authentications_token1] = ACTIONS(584), + [aux_sym_protocol_token1] = ACTIONS(584), + [aux_sym_proxy_command_token1] = ACTIONS(584), + [aux_sym_proxy_jump_token1] = ACTIONS(584), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(584), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(584), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(584), + [aux_sym_pubkey_authentication_token1] = ACTIONS(584), + [aux_sym_rekey_limit_token1] = ACTIONS(584), + [aux_sym_remote_command_token1] = ACTIONS(584), + [aux_sym_remote_forward_token1] = ACTIONS(584), + [aux_sym_request_tty_token1] = ACTIONS(584), + [aux_sym_required_rsa_size_token1] = ACTIONS(584), + [aux_sym_revoked_host_keys_token1] = ACTIONS(584), + [aux_sym_security_key_provider_token1] = ACTIONS(584), + [aux_sym_send_env_token1] = ACTIONS(584), + [aux_sym_server_alive_count_max_token1] = ACTIONS(584), + [aux_sym_server_alive_interval_token1] = ACTIONS(584), + [aux_sym_session_type_token1] = ACTIONS(584), + [aux_sym_set_env_token1] = ACTIONS(584), + [aux_sym_stdin_null_token1] = ACTIONS(584), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(584), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(584), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(584), + [aux_sym_syslog_facility_token1] = ACTIONS(584), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(584), + [aux_sym_keep_alive_token1] = ACTIONS(584), + [aux_sym_tunnel_token1] = ACTIONS(586), + [aux_sym_tunnel_device_token1] = ACTIONS(584), + [aux_sym_update_host_keys_token1] = ACTIONS(584), + [aux_sym_use_keychain_token1] = ACTIONS(584), + [aux_sym_use_roaming_token1] = ACTIONS(584), + [aux_sym_user_token1] = ACTIONS(586), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(584), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(584), + [aux_sym_visual_host_key_token1] = ACTIONS(584), + [aux_sym_xauth_location_token1] = ACTIONS(584), }, [656] = { - [ts_builtin_sym_end] = ACTIONS(1107), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1109), - [aux_sym_match_token1] = ACTIONS(1107), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1107), - [aux_sym_address_family_token1] = ACTIONS(1107), - [aux_sym_batch_mode_token1] = ACTIONS(1107), - [aux_sym_bind_address_token1] = ACTIONS(1107), - [aux_sym_bind_interface_token1] = ACTIONS(1107), - [aux_sym_canonical_domains_token1] = ACTIONS(1107), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1107), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1107), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1107), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1107), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1107), - [aux_sym_certificate_file_token1] = ACTIONS(1107), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1107), - [aux_sym_check_host_ip_token1] = ACTIONS(1107), - [aux_sym_ciphers_token1] = ACTIONS(1107), - [aux_sym_cipher_token1] = ACTIONS(1109), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1107), - [aux_sym_compression_token1] = ACTIONS(1107), - [aux_sym_connection_attempts_token1] = ACTIONS(1107), - [aux_sym_connect_timeout_token1] = ACTIONS(1107), - [aux_sym_control_master_token1] = ACTIONS(1107), - [aux_sym_control_path_token1] = ACTIONS(1107), - [aux_sym_control_persist_token1] = ACTIONS(1107), - [aux_sym_dynamic_forward_token1] = ACTIONS(1107), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1107), - [aux_sym_escape_char_token1] = ACTIONS(1107), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1107), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1107), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1107), - [aux_sym_forward_agent_token1] = ACTIONS(1107), - [aux_sym_forward_x11_token1] = ACTIONS(1109), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1107), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1107), - [aux_sym_gateway_ports_token1] = ACTIONS(1107), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1107), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1107), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1107), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1107), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1107), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1107), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1107), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1107), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1107), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1107), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1107), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1107), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1107), - [aux_sym_host_key_alias_token1] = ACTIONS(1107), - [aux_sym_hostname_token1] = ACTIONS(1107), - [aux_sym_identities_only_token1] = ACTIONS(1107), - [aux_sym_identity_agent_token1] = ACTIONS(1107), - [aux_sym_identity_file_token1] = ACTIONS(1107), - [aux_sym_ignore_unknown_token1] = ACTIONS(1107), - [aux_sym_include_token1] = ACTIONS(1107), - [aux_sym_ip_qos_token1] = ACTIONS(1107), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1107), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1107), - [aux_sym_kex_algorithms_token1] = ACTIONS(1107), - [aux_sym_known_hosts_command_token1] = ACTIONS(1107), - [aux_sym_local_command_token1] = ACTIONS(1107), - [aux_sym_local_forward_token1] = ACTIONS(1107), - [aux_sym_log_level_token1] = ACTIONS(1107), - [aux_sym_log_verbose_token1] = ACTIONS(1107), - [aux_sym_macs_token1] = ACTIONS(1107), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1107), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1107), - [aux_sym_password_authentication_token1] = ACTIONS(1107), - [aux_sym_permit_local_command_token1] = ACTIONS(1107), - [aux_sym_permit_remote_open_token1] = ACTIONS(1107), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1107), - [aux_sym_port_token1] = ACTIONS(1107), - [aux_sym_preferred_authentications_token1] = ACTIONS(1107), - [aux_sym_protocol_token1] = ACTIONS(1107), - [aux_sym_proxy_command_token1] = ACTIONS(1107), - [aux_sym_proxy_jump_token1] = ACTIONS(1107), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1107), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1107), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1107), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1107), - [aux_sym_rekey_limit_token1] = ACTIONS(1107), - [aux_sym_remote_command_token1] = ACTIONS(1107), - [aux_sym_remote_forward_token1] = ACTIONS(1107), - [aux_sym_request_tty_token1] = ACTIONS(1107), - [aux_sym_required_rsa_size_token1] = ACTIONS(1107), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1107), - [aux_sym_security_key_provider_token1] = ACTIONS(1107), - [aux_sym_send_env_token1] = ACTIONS(1107), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1107), - [aux_sym_server_alive_interval_token1] = ACTIONS(1107), - [aux_sym_session_type_token1] = ACTIONS(1107), - [aux_sym_set_env_token1] = ACTIONS(1107), - [aux_sym_stdin_null_token1] = ACTIONS(1107), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1107), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1107), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1107), - [aux_sym_syslog_facility_token1] = ACTIONS(1107), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1107), - [aux_sym_keep_alive_token1] = ACTIONS(1107), - [aux_sym_tunnel_token1] = ACTIONS(1109), - [aux_sym_tunnel_device_token1] = ACTIONS(1107), - [aux_sym_update_host_keys_token1] = ACTIONS(1107), - [aux_sym_use_keychain_token1] = ACTIONS(1107), - [aux_sym_use_roaming_token1] = ACTIONS(1107), - [aux_sym_user_token1] = ACTIONS(1109), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1107), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1107), - [aux_sym_visual_host_key_token1] = ACTIONS(1107), - [aux_sym_xauth_location_token1] = ACTIONS(1107), + [ts_builtin_sym_end] = ACTIONS(890), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(892), + [aux_sym_match_token1] = ACTIONS(890), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(890), + [aux_sym_address_family_token1] = ACTIONS(890), + [aux_sym_batch_mode_token1] = ACTIONS(890), + [aux_sym_bind_address_token1] = ACTIONS(890), + [aux_sym_bind_interface_token1] = ACTIONS(890), + [aux_sym_canonical_domains_token1] = ACTIONS(890), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(890), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(890), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(890), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(890), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(890), + [aux_sym_certificate_file_token1] = ACTIONS(890), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(890), + [aux_sym_check_host_ip_token1] = ACTIONS(890), + [aux_sym_ciphers_token1] = ACTIONS(890), + [aux_sym_cipher_token1] = ACTIONS(892), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(890), + [aux_sym_compression_token1] = ACTIONS(890), + [aux_sym_connection_attempts_token1] = ACTIONS(890), + [aux_sym_connect_timeout_token1] = ACTIONS(890), + [aux_sym_control_master_token1] = ACTIONS(890), + [aux_sym_control_path_token1] = ACTIONS(890), + [aux_sym_control_persist_token1] = ACTIONS(890), + [aux_sym_dynamic_forward_token1] = ACTIONS(890), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(890), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(890), + [aux_sym_escape_char_token1] = ACTIONS(890), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(890), + [aux_sym_fingerprint_hash_token1] = ACTIONS(890), + [aux_sym_fork_after_authentication_token1] = ACTIONS(890), + [aux_sym_forward_agent_token1] = ACTIONS(890), + [aux_sym_forward_x11_token1] = ACTIONS(892), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(890), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(890), + [aux_sym_gateway_ports_token1] = ACTIONS(890), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(890), + [aux_sym_gssapi_authentication_token1] = ACTIONS(890), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(890), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(890), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(890), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(890), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(890), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(890), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(890), + [aux_sym_hash_known_hosts_token1] = ACTIONS(890), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(890), + [aux_sym_hostbased_authentication_token1] = ACTIONS(890), + [aux_sym_host_key_algorithms_token1] = ACTIONS(890), + [aux_sym_host_key_alias_token1] = ACTIONS(890), + [aux_sym_hostname_token1] = ACTIONS(890), + [aux_sym_identities_only_token1] = ACTIONS(890), + [aux_sym_identity_agent_token1] = ACTIONS(890), + [aux_sym_identity_file_token1] = ACTIONS(890), + [aux_sym_ignore_unknown_token1] = ACTIONS(890), + [aux_sym_include_token1] = ACTIONS(890), + [aux_sym_ip_qos_token1] = ACTIONS(890), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(890), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(890), + [aux_sym_kex_algorithms_token1] = ACTIONS(890), + [aux_sym_known_hosts_command_token1] = ACTIONS(890), + [aux_sym_local_command_token1] = ACTIONS(890), + [aux_sym_local_forward_token1] = ACTIONS(890), + [aux_sym_log_level_token1] = ACTIONS(890), + [aux_sym_log_verbose_token1] = ACTIONS(890), + [aux_sym_macs_token1] = ACTIONS(890), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(890), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(890), + [aux_sym_password_authentication_token1] = ACTIONS(890), + [aux_sym_permit_local_command_token1] = ACTIONS(890), + [aux_sym_permit_remote_open_token1] = ACTIONS(890), + [aux_sym_pkcs11_provider_token1] = ACTIONS(890), + [aux_sym_port_token1] = ACTIONS(890), + [aux_sym_preferred_authentications_token1] = ACTIONS(890), + [aux_sym_protocol_token1] = ACTIONS(890), + [aux_sym_proxy_command_token1] = ACTIONS(890), + [aux_sym_proxy_jump_token1] = ACTIONS(890), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(890), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(890), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(890), + [aux_sym_pubkey_authentication_token1] = ACTIONS(890), + [aux_sym_rekey_limit_token1] = ACTIONS(890), + [aux_sym_remote_command_token1] = ACTIONS(890), + [aux_sym_remote_forward_token1] = ACTIONS(890), + [aux_sym_request_tty_token1] = ACTIONS(890), + [aux_sym_required_rsa_size_token1] = ACTIONS(890), + [aux_sym_revoked_host_keys_token1] = ACTIONS(890), + [aux_sym_security_key_provider_token1] = ACTIONS(890), + [aux_sym_send_env_token1] = ACTIONS(890), + [aux_sym_server_alive_count_max_token1] = ACTIONS(890), + [aux_sym_server_alive_interval_token1] = ACTIONS(890), + [aux_sym_session_type_token1] = ACTIONS(890), + [aux_sym_set_env_token1] = ACTIONS(890), + [aux_sym_stdin_null_token1] = ACTIONS(890), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(890), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(890), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(890), + [aux_sym_syslog_facility_token1] = ACTIONS(890), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(890), + [aux_sym_keep_alive_token1] = ACTIONS(890), + [aux_sym_tunnel_token1] = ACTIONS(892), + [aux_sym_tunnel_device_token1] = ACTIONS(890), + [aux_sym_update_host_keys_token1] = ACTIONS(890), + [aux_sym_use_keychain_token1] = ACTIONS(890), + [aux_sym_use_roaming_token1] = ACTIONS(890), + [aux_sym_user_token1] = ACTIONS(892), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(890), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(890), + [aux_sym_visual_host_key_token1] = ACTIONS(890), + [aux_sym_xauth_location_token1] = ACTIONS(890), }, [657] = { - [ts_builtin_sym_end] = ACTIONS(1113), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1115), - [aux_sym_match_token1] = ACTIONS(1113), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1113), - [aux_sym_address_family_token1] = ACTIONS(1113), - [aux_sym_batch_mode_token1] = ACTIONS(1113), - [aux_sym_bind_address_token1] = ACTIONS(1113), - [aux_sym_bind_interface_token1] = ACTIONS(1113), - [aux_sym_canonical_domains_token1] = ACTIONS(1113), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1113), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1113), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1113), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1113), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1113), - [aux_sym_certificate_file_token1] = ACTIONS(1113), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1113), - [aux_sym_check_host_ip_token1] = ACTIONS(1113), - [aux_sym_ciphers_token1] = ACTIONS(1113), - [aux_sym_cipher_token1] = ACTIONS(1115), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1113), - [aux_sym_compression_token1] = ACTIONS(1113), - [aux_sym_connection_attempts_token1] = ACTIONS(1113), - [aux_sym_connect_timeout_token1] = ACTIONS(1113), - [aux_sym_control_master_token1] = ACTIONS(1113), - [aux_sym_control_path_token1] = ACTIONS(1113), - [aux_sym_control_persist_token1] = ACTIONS(1113), - [aux_sym_dynamic_forward_token1] = ACTIONS(1113), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1113), - [aux_sym_escape_char_token1] = ACTIONS(1113), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1113), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1113), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1113), - [aux_sym_forward_agent_token1] = ACTIONS(1113), - [aux_sym_forward_x11_token1] = ACTIONS(1115), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1113), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1113), - [aux_sym_gateway_ports_token1] = ACTIONS(1113), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1113), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1113), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1113), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1113), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1113), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1113), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1113), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1113), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1113), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1113), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1113), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1113), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1113), - [aux_sym_host_key_alias_token1] = ACTIONS(1113), - [aux_sym_hostname_token1] = ACTIONS(1113), - [aux_sym_identities_only_token1] = ACTIONS(1113), - [aux_sym_identity_agent_token1] = ACTIONS(1113), - [aux_sym_identity_file_token1] = ACTIONS(1113), - [aux_sym_ignore_unknown_token1] = ACTIONS(1113), - [aux_sym_include_token1] = ACTIONS(1113), - [aux_sym_ip_qos_token1] = ACTIONS(1113), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1113), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1113), - [aux_sym_kex_algorithms_token1] = ACTIONS(1113), - [aux_sym_known_hosts_command_token1] = ACTIONS(1113), - [aux_sym_local_command_token1] = ACTIONS(1113), - [aux_sym_local_forward_token1] = ACTIONS(1113), - [aux_sym_log_level_token1] = ACTIONS(1113), - [aux_sym_log_verbose_token1] = ACTIONS(1113), - [aux_sym_macs_token1] = ACTIONS(1113), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1113), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1113), - [aux_sym_password_authentication_token1] = ACTIONS(1113), - [aux_sym_permit_local_command_token1] = ACTIONS(1113), - [aux_sym_permit_remote_open_token1] = ACTIONS(1113), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1113), - [aux_sym_port_token1] = ACTIONS(1113), - [aux_sym_preferred_authentications_token1] = ACTIONS(1113), - [aux_sym_protocol_token1] = ACTIONS(1113), - [aux_sym_proxy_command_token1] = ACTIONS(1113), - [aux_sym_proxy_jump_token1] = ACTIONS(1113), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1113), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1113), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1113), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1113), - [aux_sym_rekey_limit_token1] = ACTIONS(1113), - [aux_sym_remote_command_token1] = ACTIONS(1113), - [aux_sym_remote_forward_token1] = ACTIONS(1113), - [aux_sym_request_tty_token1] = ACTIONS(1113), - [aux_sym_required_rsa_size_token1] = ACTIONS(1113), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1113), - [aux_sym_security_key_provider_token1] = ACTIONS(1113), - [aux_sym_send_env_token1] = ACTIONS(1113), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1113), - [aux_sym_server_alive_interval_token1] = ACTIONS(1113), - [aux_sym_session_type_token1] = ACTIONS(1113), - [aux_sym_set_env_token1] = ACTIONS(1113), - [aux_sym_stdin_null_token1] = ACTIONS(1113), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1113), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1113), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1113), - [aux_sym_syslog_facility_token1] = ACTIONS(1113), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1113), - [aux_sym_keep_alive_token1] = ACTIONS(1113), - [aux_sym_tunnel_token1] = ACTIONS(1115), - [aux_sym_tunnel_device_token1] = ACTIONS(1113), - [aux_sym_update_host_keys_token1] = ACTIONS(1113), - [aux_sym_use_keychain_token1] = ACTIONS(1113), - [aux_sym_use_roaming_token1] = ACTIONS(1113), - [aux_sym_user_token1] = ACTIONS(1115), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1113), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1113), - [aux_sym_visual_host_key_token1] = ACTIONS(1113), - [aux_sym_xauth_location_token1] = ACTIONS(1113), + [ts_builtin_sym_end] = ACTIONS(1448), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1450), + [aux_sym_match_token1] = ACTIONS(1448), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1448), + [aux_sym_address_family_token1] = ACTIONS(1448), + [aux_sym_batch_mode_token1] = ACTIONS(1448), + [aux_sym_bind_address_token1] = ACTIONS(1448), + [aux_sym_bind_interface_token1] = ACTIONS(1448), + [aux_sym_canonical_domains_token1] = ACTIONS(1448), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1448), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1448), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1448), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1448), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1448), + [aux_sym_certificate_file_token1] = ACTIONS(1448), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1448), + [aux_sym_check_host_ip_token1] = ACTIONS(1448), + [aux_sym_ciphers_token1] = ACTIONS(1448), + [aux_sym_cipher_token1] = ACTIONS(1450), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1448), + [aux_sym_compression_token1] = ACTIONS(1448), + [aux_sym_connection_attempts_token1] = ACTIONS(1448), + [aux_sym_connect_timeout_token1] = ACTIONS(1448), + [aux_sym_control_master_token1] = ACTIONS(1448), + [aux_sym_control_path_token1] = ACTIONS(1448), + [aux_sym_control_persist_token1] = ACTIONS(1448), + [aux_sym_dynamic_forward_token1] = ACTIONS(1448), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1448), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1448), + [aux_sym_escape_char_token1] = ACTIONS(1448), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1448), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1448), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1448), + [aux_sym_forward_agent_token1] = ACTIONS(1448), + [aux_sym_forward_x11_token1] = ACTIONS(1450), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1448), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1448), + [aux_sym_gateway_ports_token1] = ACTIONS(1448), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1448), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1448), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1448), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1448), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1448), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1448), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1448), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1448), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1448), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1448), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1448), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1448), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1448), + [aux_sym_host_key_alias_token1] = ACTIONS(1448), + [aux_sym_hostname_token1] = ACTIONS(1448), + [aux_sym_identities_only_token1] = ACTIONS(1448), + [aux_sym_identity_agent_token1] = ACTIONS(1448), + [aux_sym_identity_file_token1] = ACTIONS(1448), + [aux_sym_ignore_unknown_token1] = ACTIONS(1448), + [aux_sym_include_token1] = ACTIONS(1448), + [aux_sym_ip_qos_token1] = ACTIONS(1448), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1448), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1448), + [aux_sym_kex_algorithms_token1] = ACTIONS(1448), + [aux_sym_known_hosts_command_token1] = ACTIONS(1448), + [aux_sym_local_command_token1] = ACTIONS(1448), + [aux_sym_local_forward_token1] = ACTIONS(1448), + [aux_sym_log_level_token1] = ACTIONS(1448), + [aux_sym_log_verbose_token1] = ACTIONS(1448), + [aux_sym_macs_token1] = ACTIONS(1448), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1448), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1448), + [aux_sym_password_authentication_token1] = ACTIONS(1448), + [aux_sym_permit_local_command_token1] = ACTIONS(1448), + [aux_sym_permit_remote_open_token1] = ACTIONS(1448), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1448), + [aux_sym_port_token1] = ACTIONS(1448), + [aux_sym_preferred_authentications_token1] = ACTIONS(1448), + [aux_sym_protocol_token1] = ACTIONS(1448), + [aux_sym_proxy_command_token1] = ACTIONS(1448), + [aux_sym_proxy_jump_token1] = ACTIONS(1448), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1448), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1448), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1448), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1448), + [aux_sym_rekey_limit_token1] = ACTIONS(1448), + [aux_sym_remote_command_token1] = ACTIONS(1448), + [aux_sym_remote_forward_token1] = ACTIONS(1448), + [aux_sym_request_tty_token1] = ACTIONS(1448), + [aux_sym_required_rsa_size_token1] = ACTIONS(1448), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1448), + [aux_sym_security_key_provider_token1] = ACTIONS(1448), + [aux_sym_send_env_token1] = ACTIONS(1448), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1448), + [aux_sym_server_alive_interval_token1] = ACTIONS(1448), + [aux_sym_session_type_token1] = ACTIONS(1448), + [aux_sym_set_env_token1] = ACTIONS(1448), + [aux_sym_stdin_null_token1] = ACTIONS(1448), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1448), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1448), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1448), + [aux_sym_syslog_facility_token1] = ACTIONS(1448), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1448), + [aux_sym_keep_alive_token1] = ACTIONS(1448), + [aux_sym_tunnel_token1] = ACTIONS(1450), + [aux_sym_tunnel_device_token1] = ACTIONS(1448), + [aux_sym_update_host_keys_token1] = ACTIONS(1448), + [aux_sym_use_keychain_token1] = ACTIONS(1448), + [aux_sym_use_roaming_token1] = ACTIONS(1448), + [aux_sym_user_token1] = ACTIONS(1450), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1448), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1448), + [aux_sym_visual_host_key_token1] = ACTIONS(1448), + [aux_sym_xauth_location_token1] = ACTIONS(1448), }, [658] = { - [ts_builtin_sym_end] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1121), - [aux_sym_match_token1] = ACTIONS(1119), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1119), - [aux_sym_address_family_token1] = ACTIONS(1119), - [aux_sym_batch_mode_token1] = ACTIONS(1119), - [aux_sym_bind_address_token1] = ACTIONS(1119), - [aux_sym_bind_interface_token1] = ACTIONS(1119), - [aux_sym_canonical_domains_token1] = ACTIONS(1119), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1119), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1119), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1119), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1119), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1119), - [aux_sym_certificate_file_token1] = ACTIONS(1119), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1119), - [aux_sym_check_host_ip_token1] = ACTIONS(1119), - [aux_sym_ciphers_token1] = ACTIONS(1119), - [aux_sym_cipher_token1] = ACTIONS(1121), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1119), - [aux_sym_compression_token1] = ACTIONS(1119), - [aux_sym_connection_attempts_token1] = ACTIONS(1119), - [aux_sym_connect_timeout_token1] = ACTIONS(1119), - [aux_sym_control_master_token1] = ACTIONS(1119), - [aux_sym_control_path_token1] = ACTIONS(1119), - [aux_sym_control_persist_token1] = ACTIONS(1119), - [aux_sym_dynamic_forward_token1] = ACTIONS(1119), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1119), - [aux_sym_escape_char_token1] = ACTIONS(1119), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1119), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1119), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1119), - [aux_sym_forward_agent_token1] = ACTIONS(1119), - [aux_sym_forward_x11_token1] = ACTIONS(1121), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1119), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1119), - [aux_sym_gateway_ports_token1] = ACTIONS(1119), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1119), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1119), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1119), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1119), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1119), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1119), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1119), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1119), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1119), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1119), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1119), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1119), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1119), - [aux_sym_host_key_alias_token1] = ACTIONS(1119), - [aux_sym_hostname_token1] = ACTIONS(1119), - [aux_sym_identities_only_token1] = ACTIONS(1119), - [aux_sym_identity_agent_token1] = ACTIONS(1119), - [aux_sym_identity_file_token1] = ACTIONS(1119), - [aux_sym_ignore_unknown_token1] = ACTIONS(1119), - [aux_sym_include_token1] = ACTIONS(1119), - [aux_sym_ip_qos_token1] = ACTIONS(1119), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1119), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1119), - [aux_sym_kex_algorithms_token1] = ACTIONS(1119), - [aux_sym_known_hosts_command_token1] = ACTIONS(1119), - [aux_sym_local_command_token1] = ACTIONS(1119), - [aux_sym_local_forward_token1] = ACTIONS(1119), - [aux_sym_log_level_token1] = ACTIONS(1119), - [aux_sym_log_verbose_token1] = ACTIONS(1119), - [aux_sym_macs_token1] = ACTIONS(1119), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1119), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1119), - [aux_sym_password_authentication_token1] = ACTIONS(1119), - [aux_sym_permit_local_command_token1] = ACTIONS(1119), - [aux_sym_permit_remote_open_token1] = ACTIONS(1119), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1119), - [aux_sym_port_token1] = ACTIONS(1119), - [aux_sym_preferred_authentications_token1] = ACTIONS(1119), - [aux_sym_protocol_token1] = ACTIONS(1119), - [aux_sym_proxy_command_token1] = ACTIONS(1119), - [aux_sym_proxy_jump_token1] = ACTIONS(1119), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1119), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1119), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1119), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1119), - [aux_sym_rekey_limit_token1] = ACTIONS(1119), - [aux_sym_remote_command_token1] = ACTIONS(1119), - [aux_sym_remote_forward_token1] = ACTIONS(1119), - [aux_sym_request_tty_token1] = ACTIONS(1119), - [aux_sym_required_rsa_size_token1] = ACTIONS(1119), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1119), - [aux_sym_security_key_provider_token1] = ACTIONS(1119), - [aux_sym_send_env_token1] = ACTIONS(1119), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1119), - [aux_sym_server_alive_interval_token1] = ACTIONS(1119), - [aux_sym_session_type_token1] = ACTIONS(1119), - [aux_sym_set_env_token1] = ACTIONS(1119), - [aux_sym_stdin_null_token1] = ACTIONS(1119), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1119), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1119), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1119), - [aux_sym_syslog_facility_token1] = ACTIONS(1119), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1119), - [aux_sym_keep_alive_token1] = ACTIONS(1119), - [aux_sym_tunnel_token1] = ACTIONS(1121), - [aux_sym_tunnel_device_token1] = ACTIONS(1119), - [aux_sym_update_host_keys_token1] = ACTIONS(1119), - [aux_sym_use_keychain_token1] = ACTIONS(1119), - [aux_sym_use_roaming_token1] = ACTIONS(1119), - [aux_sym_user_token1] = ACTIONS(1121), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1119), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1119), - [aux_sym_visual_host_key_token1] = ACTIONS(1119), - [aux_sym_xauth_location_token1] = ACTIONS(1119), + [ts_builtin_sym_end] = ACTIONS(590), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(592), + [aux_sym_match_token1] = ACTIONS(590), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(590), + [aux_sym_address_family_token1] = ACTIONS(590), + [aux_sym_batch_mode_token1] = ACTIONS(590), + [aux_sym_bind_address_token1] = ACTIONS(590), + [aux_sym_bind_interface_token1] = ACTIONS(590), + [aux_sym_canonical_domains_token1] = ACTIONS(590), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(590), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(590), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(590), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(590), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(590), + [aux_sym_certificate_file_token1] = ACTIONS(590), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(590), + [aux_sym_check_host_ip_token1] = ACTIONS(590), + [aux_sym_ciphers_token1] = ACTIONS(590), + [aux_sym_cipher_token1] = ACTIONS(592), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(590), + [aux_sym_compression_token1] = ACTIONS(590), + [aux_sym_connection_attempts_token1] = ACTIONS(590), + [aux_sym_connect_timeout_token1] = ACTIONS(590), + [aux_sym_control_master_token1] = ACTIONS(590), + [aux_sym_control_path_token1] = ACTIONS(590), + [aux_sym_control_persist_token1] = ACTIONS(590), + [aux_sym_dynamic_forward_token1] = ACTIONS(590), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(590), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(590), + [aux_sym_escape_char_token1] = ACTIONS(590), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(590), + [aux_sym_fingerprint_hash_token1] = ACTIONS(590), + [aux_sym_fork_after_authentication_token1] = ACTIONS(590), + [aux_sym_forward_agent_token1] = ACTIONS(590), + [aux_sym_forward_x11_token1] = ACTIONS(592), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(590), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(590), + [aux_sym_gateway_ports_token1] = ACTIONS(590), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(590), + [aux_sym_gssapi_authentication_token1] = ACTIONS(590), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(590), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(590), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(590), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(590), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(590), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(590), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(590), + [aux_sym_hash_known_hosts_token1] = ACTIONS(590), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(590), + [aux_sym_hostbased_authentication_token1] = ACTIONS(590), + [aux_sym_host_key_algorithms_token1] = ACTIONS(590), + [aux_sym_host_key_alias_token1] = ACTIONS(590), + [aux_sym_hostname_token1] = ACTIONS(590), + [aux_sym_identities_only_token1] = ACTIONS(590), + [aux_sym_identity_agent_token1] = ACTIONS(590), + [aux_sym_identity_file_token1] = ACTIONS(590), + [aux_sym_ignore_unknown_token1] = ACTIONS(590), + [aux_sym_include_token1] = ACTIONS(590), + [aux_sym_ip_qos_token1] = ACTIONS(590), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(590), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(590), + [aux_sym_kex_algorithms_token1] = ACTIONS(590), + [aux_sym_known_hosts_command_token1] = ACTIONS(590), + [aux_sym_local_command_token1] = ACTIONS(590), + [aux_sym_local_forward_token1] = ACTIONS(590), + [aux_sym_log_level_token1] = ACTIONS(590), + [aux_sym_log_verbose_token1] = ACTIONS(590), + [aux_sym_macs_token1] = ACTIONS(590), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(590), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(590), + [aux_sym_password_authentication_token1] = ACTIONS(590), + [aux_sym_permit_local_command_token1] = ACTIONS(590), + [aux_sym_permit_remote_open_token1] = ACTIONS(590), + [aux_sym_pkcs11_provider_token1] = ACTIONS(590), + [aux_sym_port_token1] = ACTIONS(590), + [aux_sym_preferred_authentications_token1] = ACTIONS(590), + [aux_sym_protocol_token1] = ACTIONS(590), + [aux_sym_proxy_command_token1] = ACTIONS(590), + [aux_sym_proxy_jump_token1] = ACTIONS(590), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(590), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(590), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(590), + [aux_sym_pubkey_authentication_token1] = ACTIONS(590), + [aux_sym_rekey_limit_token1] = ACTIONS(590), + [aux_sym_remote_command_token1] = ACTIONS(590), + [aux_sym_remote_forward_token1] = ACTIONS(590), + [aux_sym_request_tty_token1] = ACTIONS(590), + [aux_sym_required_rsa_size_token1] = ACTIONS(590), + [aux_sym_revoked_host_keys_token1] = ACTIONS(590), + [aux_sym_security_key_provider_token1] = ACTIONS(590), + [aux_sym_send_env_token1] = ACTIONS(590), + [aux_sym_server_alive_count_max_token1] = ACTIONS(590), + [aux_sym_server_alive_interval_token1] = ACTIONS(590), + [aux_sym_session_type_token1] = ACTIONS(590), + [aux_sym_set_env_token1] = ACTIONS(590), + [aux_sym_stdin_null_token1] = ACTIONS(590), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(590), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(590), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(590), + [aux_sym_syslog_facility_token1] = ACTIONS(590), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(590), + [aux_sym_keep_alive_token1] = ACTIONS(590), + [aux_sym_tunnel_token1] = ACTIONS(592), + [aux_sym_tunnel_device_token1] = ACTIONS(590), + [aux_sym_update_host_keys_token1] = ACTIONS(590), + [aux_sym_use_keychain_token1] = ACTIONS(590), + [aux_sym_use_roaming_token1] = ACTIONS(590), + [aux_sym_user_token1] = ACTIONS(592), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(590), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(590), + [aux_sym_visual_host_key_token1] = ACTIONS(590), + [aux_sym_xauth_location_token1] = ACTIONS(590), }, [659] = { - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1127), - [aux_sym_match_token1] = ACTIONS(1125), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1125), - [aux_sym_address_family_token1] = ACTIONS(1125), - [aux_sym_batch_mode_token1] = ACTIONS(1125), - [aux_sym_bind_address_token1] = ACTIONS(1125), - [aux_sym_bind_interface_token1] = ACTIONS(1125), - [aux_sym_canonical_domains_token1] = ACTIONS(1125), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1125), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1125), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1125), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1125), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1125), - [aux_sym_certificate_file_token1] = ACTIONS(1125), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1125), - [aux_sym_check_host_ip_token1] = ACTIONS(1125), - [aux_sym_ciphers_token1] = ACTIONS(1125), - [aux_sym_cipher_token1] = ACTIONS(1127), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1125), - [aux_sym_compression_token1] = ACTIONS(1125), - [aux_sym_connection_attempts_token1] = ACTIONS(1125), - [aux_sym_connect_timeout_token1] = ACTIONS(1125), - [aux_sym_control_master_token1] = ACTIONS(1125), - [aux_sym_control_path_token1] = ACTIONS(1125), - [aux_sym_control_persist_token1] = ACTIONS(1125), - [aux_sym_dynamic_forward_token1] = ACTIONS(1125), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1125), - [aux_sym_escape_char_token1] = ACTIONS(1125), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1125), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1125), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1125), - [aux_sym_forward_agent_token1] = ACTIONS(1125), - [aux_sym_forward_x11_token1] = ACTIONS(1127), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1125), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1125), - [aux_sym_gateway_ports_token1] = ACTIONS(1125), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1125), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1125), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1125), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1125), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1125), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1125), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1125), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1125), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1125), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1125), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1125), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1125), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1125), - [aux_sym_host_key_alias_token1] = ACTIONS(1125), - [aux_sym_hostname_token1] = ACTIONS(1125), - [aux_sym_identities_only_token1] = ACTIONS(1125), - [aux_sym_identity_agent_token1] = ACTIONS(1125), - [aux_sym_identity_file_token1] = ACTIONS(1125), - [aux_sym_ignore_unknown_token1] = ACTIONS(1125), - [aux_sym_include_token1] = ACTIONS(1125), - [aux_sym_ip_qos_token1] = ACTIONS(1125), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1125), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1125), - [aux_sym_kex_algorithms_token1] = ACTIONS(1125), - [aux_sym_known_hosts_command_token1] = ACTIONS(1125), - [aux_sym_local_command_token1] = ACTIONS(1125), - [aux_sym_local_forward_token1] = ACTIONS(1125), - [aux_sym_log_level_token1] = ACTIONS(1125), - [aux_sym_log_verbose_token1] = ACTIONS(1125), - [aux_sym_macs_token1] = ACTIONS(1125), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1125), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1125), - [aux_sym_password_authentication_token1] = ACTIONS(1125), - [aux_sym_permit_local_command_token1] = ACTIONS(1125), - [aux_sym_permit_remote_open_token1] = ACTIONS(1125), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1125), - [aux_sym_port_token1] = ACTIONS(1125), - [aux_sym_preferred_authentications_token1] = ACTIONS(1125), - [aux_sym_protocol_token1] = ACTIONS(1125), - [aux_sym_proxy_command_token1] = ACTIONS(1125), - [aux_sym_proxy_jump_token1] = ACTIONS(1125), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1125), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1125), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1125), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1125), - [aux_sym_rekey_limit_token1] = ACTIONS(1125), - [aux_sym_remote_command_token1] = ACTIONS(1125), - [aux_sym_remote_forward_token1] = ACTIONS(1125), - [aux_sym_request_tty_token1] = ACTIONS(1125), - [aux_sym_required_rsa_size_token1] = ACTIONS(1125), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1125), - [aux_sym_security_key_provider_token1] = ACTIONS(1125), - [aux_sym_send_env_token1] = ACTIONS(1125), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1125), - [aux_sym_server_alive_interval_token1] = ACTIONS(1125), - [aux_sym_session_type_token1] = ACTIONS(1125), - [aux_sym_set_env_token1] = ACTIONS(1125), - [aux_sym_stdin_null_token1] = ACTIONS(1125), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1125), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1125), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1125), - [aux_sym_syslog_facility_token1] = ACTIONS(1125), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1125), - [aux_sym_keep_alive_token1] = ACTIONS(1125), - [aux_sym_tunnel_token1] = ACTIONS(1127), - [aux_sym_tunnel_device_token1] = ACTIONS(1125), - [aux_sym_update_host_keys_token1] = ACTIONS(1125), - [aux_sym_use_keychain_token1] = ACTIONS(1125), - [aux_sym_use_roaming_token1] = ACTIONS(1125), - [aux_sym_user_token1] = ACTIONS(1127), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1125), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1125), - [aux_sym_visual_host_key_token1] = ACTIONS(1125), - [aux_sym_xauth_location_token1] = ACTIONS(1125), + [ts_builtin_sym_end] = ACTIONS(596), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(598), + [aux_sym_match_token1] = ACTIONS(596), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(596), + [aux_sym_address_family_token1] = ACTIONS(596), + [aux_sym_batch_mode_token1] = ACTIONS(596), + [aux_sym_bind_address_token1] = ACTIONS(596), + [aux_sym_bind_interface_token1] = ACTIONS(596), + [aux_sym_canonical_domains_token1] = ACTIONS(596), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(596), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(596), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(596), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(596), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(596), + [aux_sym_certificate_file_token1] = ACTIONS(596), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(596), + [aux_sym_check_host_ip_token1] = ACTIONS(596), + [aux_sym_ciphers_token1] = ACTIONS(596), + [aux_sym_cipher_token1] = ACTIONS(598), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(596), + [aux_sym_compression_token1] = ACTIONS(596), + [aux_sym_connection_attempts_token1] = ACTIONS(596), + [aux_sym_connect_timeout_token1] = ACTIONS(596), + [aux_sym_control_master_token1] = ACTIONS(596), + [aux_sym_control_path_token1] = ACTIONS(596), + [aux_sym_control_persist_token1] = ACTIONS(596), + [aux_sym_dynamic_forward_token1] = ACTIONS(596), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(596), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(596), + [aux_sym_escape_char_token1] = ACTIONS(596), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(596), + [aux_sym_fingerprint_hash_token1] = ACTIONS(596), + [aux_sym_fork_after_authentication_token1] = ACTIONS(596), + [aux_sym_forward_agent_token1] = ACTIONS(596), + [aux_sym_forward_x11_token1] = ACTIONS(598), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(596), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(596), + [aux_sym_gateway_ports_token1] = ACTIONS(596), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(596), + [aux_sym_gssapi_authentication_token1] = ACTIONS(596), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(596), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(596), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(596), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(596), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(596), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(596), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(596), + [aux_sym_hash_known_hosts_token1] = ACTIONS(596), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(596), + [aux_sym_hostbased_authentication_token1] = ACTIONS(596), + [aux_sym_host_key_algorithms_token1] = ACTIONS(596), + [aux_sym_host_key_alias_token1] = ACTIONS(596), + [aux_sym_hostname_token1] = ACTIONS(596), + [aux_sym_identities_only_token1] = ACTIONS(596), + [aux_sym_identity_agent_token1] = ACTIONS(596), + [aux_sym_identity_file_token1] = ACTIONS(596), + [aux_sym_ignore_unknown_token1] = ACTIONS(596), + [aux_sym_include_token1] = ACTIONS(596), + [aux_sym_ip_qos_token1] = ACTIONS(596), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(596), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(596), + [aux_sym_kex_algorithms_token1] = ACTIONS(596), + [aux_sym_known_hosts_command_token1] = ACTIONS(596), + [aux_sym_local_command_token1] = ACTIONS(596), + [aux_sym_local_forward_token1] = ACTIONS(596), + [aux_sym_log_level_token1] = ACTIONS(596), + [aux_sym_log_verbose_token1] = ACTIONS(596), + [aux_sym_macs_token1] = ACTIONS(596), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(596), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(596), + [aux_sym_password_authentication_token1] = ACTIONS(596), + [aux_sym_permit_local_command_token1] = ACTIONS(596), + [aux_sym_permit_remote_open_token1] = ACTIONS(596), + [aux_sym_pkcs11_provider_token1] = ACTIONS(596), + [aux_sym_port_token1] = ACTIONS(596), + [aux_sym_preferred_authentications_token1] = ACTIONS(596), + [aux_sym_protocol_token1] = ACTIONS(596), + [aux_sym_proxy_command_token1] = ACTIONS(596), + [aux_sym_proxy_jump_token1] = ACTIONS(596), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(596), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(596), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(596), + [aux_sym_pubkey_authentication_token1] = ACTIONS(596), + [aux_sym_rekey_limit_token1] = ACTIONS(596), + [aux_sym_remote_command_token1] = ACTIONS(596), + [aux_sym_remote_forward_token1] = ACTIONS(596), + [aux_sym_request_tty_token1] = ACTIONS(596), + [aux_sym_required_rsa_size_token1] = ACTIONS(596), + [aux_sym_revoked_host_keys_token1] = ACTIONS(596), + [aux_sym_security_key_provider_token1] = ACTIONS(596), + [aux_sym_send_env_token1] = ACTIONS(596), + [aux_sym_server_alive_count_max_token1] = ACTIONS(596), + [aux_sym_server_alive_interval_token1] = ACTIONS(596), + [aux_sym_session_type_token1] = ACTIONS(596), + [aux_sym_set_env_token1] = ACTIONS(596), + [aux_sym_stdin_null_token1] = ACTIONS(596), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(596), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(596), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(596), + [aux_sym_syslog_facility_token1] = ACTIONS(596), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(596), + [aux_sym_keep_alive_token1] = ACTIONS(596), + [aux_sym_tunnel_token1] = ACTIONS(598), + [aux_sym_tunnel_device_token1] = ACTIONS(596), + [aux_sym_update_host_keys_token1] = ACTIONS(596), + [aux_sym_use_keychain_token1] = ACTIONS(596), + [aux_sym_use_roaming_token1] = ACTIONS(596), + [aux_sym_user_token1] = ACTIONS(598), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(596), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(596), + [aux_sym_visual_host_key_token1] = ACTIONS(596), + [aux_sym_xauth_location_token1] = ACTIONS(596), }, [660] = { - [ts_builtin_sym_end] = ACTIONS(1131), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1133), - [aux_sym_match_token1] = ACTIONS(1131), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1131), - [aux_sym_address_family_token1] = ACTIONS(1131), - [aux_sym_batch_mode_token1] = ACTIONS(1131), - [aux_sym_bind_address_token1] = ACTIONS(1131), - [aux_sym_bind_interface_token1] = ACTIONS(1131), - [aux_sym_canonical_domains_token1] = ACTIONS(1131), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1131), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1131), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1131), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1131), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1131), - [aux_sym_certificate_file_token1] = ACTIONS(1131), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1131), - [aux_sym_check_host_ip_token1] = ACTIONS(1131), - [aux_sym_ciphers_token1] = ACTIONS(1131), - [aux_sym_cipher_token1] = ACTIONS(1133), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1131), - [aux_sym_compression_token1] = ACTIONS(1131), - [aux_sym_connection_attempts_token1] = ACTIONS(1131), - [aux_sym_connect_timeout_token1] = ACTIONS(1131), - [aux_sym_control_master_token1] = ACTIONS(1131), - [aux_sym_control_path_token1] = ACTIONS(1131), - [aux_sym_control_persist_token1] = ACTIONS(1131), - [aux_sym_dynamic_forward_token1] = ACTIONS(1131), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1131), - [aux_sym_escape_char_token1] = ACTIONS(1131), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1131), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1131), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1131), - [aux_sym_forward_agent_token1] = ACTIONS(1131), - [aux_sym_forward_x11_token1] = ACTIONS(1133), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1131), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1131), - [aux_sym_gateway_ports_token1] = ACTIONS(1131), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1131), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1131), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1131), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1131), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1131), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1131), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1131), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1131), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1131), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1131), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1131), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1131), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1131), - [aux_sym_host_key_alias_token1] = ACTIONS(1131), - [aux_sym_hostname_token1] = ACTIONS(1131), - [aux_sym_identities_only_token1] = ACTIONS(1131), - [aux_sym_identity_agent_token1] = ACTIONS(1131), - [aux_sym_identity_file_token1] = ACTIONS(1131), - [aux_sym_ignore_unknown_token1] = ACTIONS(1131), - [aux_sym_include_token1] = ACTIONS(1131), - [aux_sym_ip_qos_token1] = ACTIONS(1131), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1131), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1131), - [aux_sym_kex_algorithms_token1] = ACTIONS(1131), - [aux_sym_known_hosts_command_token1] = ACTIONS(1131), - [aux_sym_local_command_token1] = ACTIONS(1131), - [aux_sym_local_forward_token1] = ACTIONS(1131), - [aux_sym_log_level_token1] = ACTIONS(1131), - [aux_sym_log_verbose_token1] = ACTIONS(1131), - [aux_sym_macs_token1] = ACTIONS(1131), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1131), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1131), - [aux_sym_password_authentication_token1] = ACTIONS(1131), - [aux_sym_permit_local_command_token1] = ACTIONS(1131), - [aux_sym_permit_remote_open_token1] = ACTIONS(1131), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1131), - [aux_sym_port_token1] = ACTIONS(1131), - [aux_sym_preferred_authentications_token1] = ACTIONS(1131), - [aux_sym_protocol_token1] = ACTIONS(1131), - [aux_sym_proxy_command_token1] = ACTIONS(1131), - [aux_sym_proxy_jump_token1] = ACTIONS(1131), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1131), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1131), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1131), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1131), - [aux_sym_rekey_limit_token1] = ACTIONS(1131), - [aux_sym_remote_command_token1] = ACTIONS(1131), - [aux_sym_remote_forward_token1] = ACTIONS(1131), - [aux_sym_request_tty_token1] = ACTIONS(1131), - [aux_sym_required_rsa_size_token1] = ACTIONS(1131), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1131), - [aux_sym_security_key_provider_token1] = ACTIONS(1131), - [aux_sym_send_env_token1] = ACTIONS(1131), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1131), - [aux_sym_server_alive_interval_token1] = ACTIONS(1131), - [aux_sym_session_type_token1] = ACTIONS(1131), - [aux_sym_set_env_token1] = ACTIONS(1131), - [aux_sym_stdin_null_token1] = ACTIONS(1131), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1131), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1131), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1131), - [aux_sym_syslog_facility_token1] = ACTIONS(1131), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1131), - [aux_sym_keep_alive_token1] = ACTIONS(1131), - [aux_sym_tunnel_token1] = ACTIONS(1133), - [aux_sym_tunnel_device_token1] = ACTIONS(1131), - [aux_sym_update_host_keys_token1] = ACTIONS(1131), - [aux_sym_use_keychain_token1] = ACTIONS(1131), - [aux_sym_use_roaming_token1] = ACTIONS(1131), - [aux_sym_user_token1] = ACTIONS(1133), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1131), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1131), - [aux_sym_visual_host_key_token1] = ACTIONS(1131), - [aux_sym_xauth_location_token1] = ACTIONS(1131), + [ts_builtin_sym_end] = ACTIONS(884), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(886), + [aux_sym_match_token1] = ACTIONS(884), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(884), + [aux_sym_address_family_token1] = ACTIONS(884), + [aux_sym_batch_mode_token1] = ACTIONS(884), + [aux_sym_bind_address_token1] = ACTIONS(884), + [aux_sym_bind_interface_token1] = ACTIONS(884), + [aux_sym_canonical_domains_token1] = ACTIONS(884), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(884), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(884), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(884), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(884), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(884), + [aux_sym_certificate_file_token1] = ACTIONS(884), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(884), + [aux_sym_check_host_ip_token1] = ACTIONS(884), + [aux_sym_ciphers_token1] = ACTIONS(884), + [aux_sym_cipher_token1] = ACTIONS(886), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(884), + [aux_sym_compression_token1] = ACTIONS(884), + [aux_sym_connection_attempts_token1] = ACTIONS(884), + [aux_sym_connect_timeout_token1] = ACTIONS(884), + [aux_sym_control_master_token1] = ACTIONS(884), + [aux_sym_control_path_token1] = ACTIONS(884), + [aux_sym_control_persist_token1] = ACTIONS(884), + [aux_sym_dynamic_forward_token1] = ACTIONS(884), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(884), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(884), + [aux_sym_escape_char_token1] = ACTIONS(884), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(884), + [aux_sym_fingerprint_hash_token1] = ACTIONS(884), + [aux_sym_fork_after_authentication_token1] = ACTIONS(884), + [aux_sym_forward_agent_token1] = ACTIONS(884), + [aux_sym_forward_x11_token1] = ACTIONS(886), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(884), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(884), + [aux_sym_gateway_ports_token1] = ACTIONS(884), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(884), + [aux_sym_gssapi_authentication_token1] = ACTIONS(884), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(884), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(884), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(884), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(884), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(884), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(884), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(884), + [aux_sym_hash_known_hosts_token1] = ACTIONS(884), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(884), + [aux_sym_hostbased_authentication_token1] = ACTIONS(884), + [aux_sym_host_key_algorithms_token1] = ACTIONS(884), + [aux_sym_host_key_alias_token1] = ACTIONS(884), + [aux_sym_hostname_token1] = ACTIONS(884), + [aux_sym_identities_only_token1] = ACTIONS(884), + [aux_sym_identity_agent_token1] = ACTIONS(884), + [aux_sym_identity_file_token1] = ACTIONS(884), + [aux_sym_ignore_unknown_token1] = ACTIONS(884), + [aux_sym_include_token1] = ACTIONS(884), + [aux_sym_ip_qos_token1] = ACTIONS(884), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(884), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(884), + [aux_sym_kex_algorithms_token1] = ACTIONS(884), + [aux_sym_known_hosts_command_token1] = ACTIONS(884), + [aux_sym_local_command_token1] = ACTIONS(884), + [aux_sym_local_forward_token1] = ACTIONS(884), + [aux_sym_log_level_token1] = ACTIONS(884), + [aux_sym_log_verbose_token1] = ACTIONS(884), + [aux_sym_macs_token1] = ACTIONS(884), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(884), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(884), + [aux_sym_password_authentication_token1] = ACTIONS(884), + [aux_sym_permit_local_command_token1] = ACTIONS(884), + [aux_sym_permit_remote_open_token1] = ACTIONS(884), + [aux_sym_pkcs11_provider_token1] = ACTIONS(884), + [aux_sym_port_token1] = ACTIONS(884), + [aux_sym_preferred_authentications_token1] = ACTIONS(884), + [aux_sym_protocol_token1] = ACTIONS(884), + [aux_sym_proxy_command_token1] = ACTIONS(884), + [aux_sym_proxy_jump_token1] = ACTIONS(884), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(884), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(884), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(884), + [aux_sym_pubkey_authentication_token1] = ACTIONS(884), + [aux_sym_rekey_limit_token1] = ACTIONS(884), + [aux_sym_remote_command_token1] = ACTIONS(884), + [aux_sym_remote_forward_token1] = ACTIONS(884), + [aux_sym_request_tty_token1] = ACTIONS(884), + [aux_sym_required_rsa_size_token1] = ACTIONS(884), + [aux_sym_revoked_host_keys_token1] = ACTIONS(884), + [aux_sym_security_key_provider_token1] = ACTIONS(884), + [aux_sym_send_env_token1] = ACTIONS(884), + [aux_sym_server_alive_count_max_token1] = ACTIONS(884), + [aux_sym_server_alive_interval_token1] = ACTIONS(884), + [aux_sym_session_type_token1] = ACTIONS(884), + [aux_sym_set_env_token1] = ACTIONS(884), + [aux_sym_stdin_null_token1] = ACTIONS(884), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(884), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(884), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(884), + [aux_sym_syslog_facility_token1] = ACTIONS(884), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(884), + [aux_sym_keep_alive_token1] = ACTIONS(884), + [aux_sym_tunnel_token1] = ACTIONS(886), + [aux_sym_tunnel_device_token1] = ACTIONS(884), + [aux_sym_update_host_keys_token1] = ACTIONS(884), + [aux_sym_use_keychain_token1] = ACTIONS(884), + [aux_sym_use_roaming_token1] = ACTIONS(884), + [aux_sym_user_token1] = ACTIONS(886), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(884), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(884), + [aux_sym_visual_host_key_token1] = ACTIONS(884), + [aux_sym_xauth_location_token1] = ACTIONS(884), }, [661] = { - [ts_builtin_sym_end] = ACTIONS(1137), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1139), - [aux_sym_match_token1] = ACTIONS(1137), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1137), - [aux_sym_address_family_token1] = ACTIONS(1137), - [aux_sym_batch_mode_token1] = ACTIONS(1137), - [aux_sym_bind_address_token1] = ACTIONS(1137), - [aux_sym_bind_interface_token1] = ACTIONS(1137), - [aux_sym_canonical_domains_token1] = ACTIONS(1137), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1137), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1137), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1137), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1137), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1137), - [aux_sym_certificate_file_token1] = ACTIONS(1137), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1137), - [aux_sym_check_host_ip_token1] = ACTIONS(1137), - [aux_sym_ciphers_token1] = ACTIONS(1137), - [aux_sym_cipher_token1] = ACTIONS(1139), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1137), - [aux_sym_compression_token1] = ACTIONS(1137), - [aux_sym_connection_attempts_token1] = ACTIONS(1137), - [aux_sym_connect_timeout_token1] = ACTIONS(1137), - [aux_sym_control_master_token1] = ACTIONS(1137), - [aux_sym_control_path_token1] = ACTIONS(1137), - [aux_sym_control_persist_token1] = ACTIONS(1137), - [aux_sym_dynamic_forward_token1] = ACTIONS(1137), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1137), - [aux_sym_escape_char_token1] = ACTIONS(1137), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1137), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1137), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1137), - [aux_sym_forward_agent_token1] = ACTIONS(1137), - [aux_sym_forward_x11_token1] = ACTIONS(1139), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1137), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1137), - [aux_sym_gateway_ports_token1] = ACTIONS(1137), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1137), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1137), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1137), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1137), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1137), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1137), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1137), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1137), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1137), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1137), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1137), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1137), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1137), - [aux_sym_host_key_alias_token1] = ACTIONS(1137), - [aux_sym_hostname_token1] = ACTIONS(1137), - [aux_sym_identities_only_token1] = ACTIONS(1137), - [aux_sym_identity_agent_token1] = ACTIONS(1137), - [aux_sym_identity_file_token1] = ACTIONS(1137), - [aux_sym_ignore_unknown_token1] = ACTIONS(1137), - [aux_sym_include_token1] = ACTIONS(1137), - [aux_sym_ip_qos_token1] = ACTIONS(1137), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1137), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1137), - [aux_sym_kex_algorithms_token1] = ACTIONS(1137), - [aux_sym_known_hosts_command_token1] = ACTIONS(1137), - [aux_sym_local_command_token1] = ACTIONS(1137), - [aux_sym_local_forward_token1] = ACTIONS(1137), - [aux_sym_log_level_token1] = ACTIONS(1137), - [aux_sym_log_verbose_token1] = ACTIONS(1137), - [aux_sym_macs_token1] = ACTIONS(1137), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1137), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1137), - [aux_sym_password_authentication_token1] = ACTIONS(1137), - [aux_sym_permit_local_command_token1] = ACTIONS(1137), - [aux_sym_permit_remote_open_token1] = ACTIONS(1137), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1137), - [aux_sym_port_token1] = ACTIONS(1137), - [aux_sym_preferred_authentications_token1] = ACTIONS(1137), - [aux_sym_protocol_token1] = ACTIONS(1137), - [aux_sym_proxy_command_token1] = ACTIONS(1137), - [aux_sym_proxy_jump_token1] = ACTIONS(1137), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1137), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1137), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1137), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1137), - [aux_sym_rekey_limit_token1] = ACTIONS(1137), - [aux_sym_remote_command_token1] = ACTIONS(1137), - [aux_sym_remote_forward_token1] = ACTIONS(1137), - [aux_sym_request_tty_token1] = ACTIONS(1137), - [aux_sym_required_rsa_size_token1] = ACTIONS(1137), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1137), - [aux_sym_security_key_provider_token1] = ACTIONS(1137), - [aux_sym_send_env_token1] = ACTIONS(1137), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1137), - [aux_sym_server_alive_interval_token1] = ACTIONS(1137), - [aux_sym_session_type_token1] = ACTIONS(1137), - [aux_sym_set_env_token1] = ACTIONS(1137), - [aux_sym_stdin_null_token1] = ACTIONS(1137), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1137), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1137), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1137), - [aux_sym_syslog_facility_token1] = ACTIONS(1137), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1137), - [aux_sym_keep_alive_token1] = ACTIONS(1137), - [aux_sym_tunnel_token1] = ACTIONS(1139), - [aux_sym_tunnel_device_token1] = ACTIONS(1137), - [aux_sym_update_host_keys_token1] = ACTIONS(1137), - [aux_sym_use_keychain_token1] = ACTIONS(1137), - [aux_sym_use_roaming_token1] = ACTIONS(1137), - [aux_sym_user_token1] = ACTIONS(1139), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1137), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1137), - [aux_sym_visual_host_key_token1] = ACTIONS(1137), - [aux_sym_xauth_location_token1] = ACTIONS(1137), + [ts_builtin_sym_end] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1456), + [aux_sym_match_token1] = ACTIONS(1454), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1454), + [aux_sym_address_family_token1] = ACTIONS(1454), + [aux_sym_batch_mode_token1] = ACTIONS(1454), + [aux_sym_bind_address_token1] = ACTIONS(1454), + [aux_sym_bind_interface_token1] = ACTIONS(1454), + [aux_sym_canonical_domains_token1] = ACTIONS(1454), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1454), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1454), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1454), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1454), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1454), + [aux_sym_certificate_file_token1] = ACTIONS(1454), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1454), + [aux_sym_check_host_ip_token1] = ACTIONS(1454), + [aux_sym_ciphers_token1] = ACTIONS(1454), + [aux_sym_cipher_token1] = ACTIONS(1456), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1454), + [aux_sym_compression_token1] = ACTIONS(1454), + [aux_sym_connection_attempts_token1] = ACTIONS(1454), + [aux_sym_connect_timeout_token1] = ACTIONS(1454), + [aux_sym_control_master_token1] = ACTIONS(1454), + [aux_sym_control_path_token1] = ACTIONS(1454), + [aux_sym_control_persist_token1] = ACTIONS(1454), + [aux_sym_dynamic_forward_token1] = ACTIONS(1454), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1454), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1454), + [aux_sym_escape_char_token1] = ACTIONS(1454), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1454), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1454), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1454), + [aux_sym_forward_agent_token1] = ACTIONS(1454), + [aux_sym_forward_x11_token1] = ACTIONS(1456), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1454), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1454), + [aux_sym_gateway_ports_token1] = ACTIONS(1454), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1454), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1454), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1454), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1454), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1454), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1454), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1454), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1454), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1454), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1454), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1454), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1454), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1454), + [aux_sym_host_key_alias_token1] = ACTIONS(1454), + [aux_sym_hostname_token1] = ACTIONS(1454), + [aux_sym_identities_only_token1] = ACTIONS(1454), + [aux_sym_identity_agent_token1] = ACTIONS(1454), + [aux_sym_identity_file_token1] = ACTIONS(1454), + [aux_sym_ignore_unknown_token1] = ACTIONS(1454), + [aux_sym_include_token1] = ACTIONS(1454), + [aux_sym_ip_qos_token1] = ACTIONS(1454), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1454), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1454), + [aux_sym_kex_algorithms_token1] = ACTIONS(1454), + [aux_sym_known_hosts_command_token1] = ACTIONS(1454), + [aux_sym_local_command_token1] = ACTIONS(1454), + [aux_sym_local_forward_token1] = ACTIONS(1454), + [aux_sym_log_level_token1] = ACTIONS(1454), + [aux_sym_log_verbose_token1] = ACTIONS(1454), + [aux_sym_macs_token1] = ACTIONS(1454), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1454), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1454), + [aux_sym_password_authentication_token1] = ACTIONS(1454), + [aux_sym_permit_local_command_token1] = ACTIONS(1454), + [aux_sym_permit_remote_open_token1] = ACTIONS(1454), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1454), + [aux_sym_port_token1] = ACTIONS(1454), + [aux_sym_preferred_authentications_token1] = ACTIONS(1454), + [aux_sym_protocol_token1] = ACTIONS(1454), + [aux_sym_proxy_command_token1] = ACTIONS(1454), + [aux_sym_proxy_jump_token1] = ACTIONS(1454), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1454), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1454), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1454), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1454), + [aux_sym_rekey_limit_token1] = ACTIONS(1454), + [aux_sym_remote_command_token1] = ACTIONS(1454), + [aux_sym_remote_forward_token1] = ACTIONS(1454), + [aux_sym_request_tty_token1] = ACTIONS(1454), + [aux_sym_required_rsa_size_token1] = ACTIONS(1454), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1454), + [aux_sym_security_key_provider_token1] = ACTIONS(1454), + [aux_sym_send_env_token1] = ACTIONS(1454), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1454), + [aux_sym_server_alive_interval_token1] = ACTIONS(1454), + [aux_sym_session_type_token1] = ACTIONS(1454), + [aux_sym_set_env_token1] = ACTIONS(1454), + [aux_sym_stdin_null_token1] = ACTIONS(1454), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1454), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1454), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1454), + [aux_sym_syslog_facility_token1] = ACTIONS(1454), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1454), + [aux_sym_keep_alive_token1] = ACTIONS(1454), + [aux_sym_tunnel_token1] = ACTIONS(1456), + [aux_sym_tunnel_device_token1] = ACTIONS(1454), + [aux_sym_update_host_keys_token1] = ACTIONS(1454), + [aux_sym_use_keychain_token1] = ACTIONS(1454), + [aux_sym_use_roaming_token1] = ACTIONS(1454), + [aux_sym_user_token1] = ACTIONS(1456), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1454), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1454), + [aux_sym_visual_host_key_token1] = ACTIONS(1454), + [aux_sym_xauth_location_token1] = ACTIONS(1454), }, [662] = { - [ts_builtin_sym_end] = ACTIONS(1143), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1145), - [aux_sym_match_token1] = ACTIONS(1143), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1143), - [aux_sym_address_family_token1] = ACTIONS(1143), - [aux_sym_batch_mode_token1] = ACTIONS(1143), - [aux_sym_bind_address_token1] = ACTIONS(1143), - [aux_sym_bind_interface_token1] = ACTIONS(1143), - [aux_sym_canonical_domains_token1] = ACTIONS(1143), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1143), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1143), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1143), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1143), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1143), - [aux_sym_certificate_file_token1] = ACTIONS(1143), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1143), - [aux_sym_check_host_ip_token1] = ACTIONS(1143), - [aux_sym_ciphers_token1] = ACTIONS(1143), - [aux_sym_cipher_token1] = ACTIONS(1145), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1143), - [aux_sym_compression_token1] = ACTIONS(1143), - [aux_sym_connection_attempts_token1] = ACTIONS(1143), - [aux_sym_connect_timeout_token1] = ACTIONS(1143), - [aux_sym_control_master_token1] = ACTIONS(1143), - [aux_sym_control_path_token1] = ACTIONS(1143), - [aux_sym_control_persist_token1] = ACTIONS(1143), - [aux_sym_dynamic_forward_token1] = ACTIONS(1143), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1143), - [aux_sym_escape_char_token1] = ACTIONS(1143), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1143), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1143), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1143), - [aux_sym_forward_agent_token1] = ACTIONS(1143), - [aux_sym_forward_x11_token1] = ACTIONS(1145), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1143), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1143), - [aux_sym_gateway_ports_token1] = ACTIONS(1143), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1143), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1143), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1143), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1143), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1143), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1143), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1143), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1143), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1143), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1143), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1143), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1143), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1143), - [aux_sym_host_key_alias_token1] = ACTIONS(1143), - [aux_sym_hostname_token1] = ACTIONS(1143), - [aux_sym_identities_only_token1] = ACTIONS(1143), - [aux_sym_identity_agent_token1] = ACTIONS(1143), - [aux_sym_identity_file_token1] = ACTIONS(1143), - [aux_sym_ignore_unknown_token1] = ACTIONS(1143), - [aux_sym_include_token1] = ACTIONS(1143), - [aux_sym_ip_qos_token1] = ACTIONS(1143), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1143), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1143), - [aux_sym_kex_algorithms_token1] = ACTIONS(1143), - [aux_sym_known_hosts_command_token1] = ACTIONS(1143), - [aux_sym_local_command_token1] = ACTIONS(1143), - [aux_sym_local_forward_token1] = ACTIONS(1143), - [aux_sym_log_level_token1] = ACTIONS(1143), - [aux_sym_log_verbose_token1] = ACTIONS(1143), - [aux_sym_macs_token1] = ACTIONS(1143), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1143), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1143), - [aux_sym_password_authentication_token1] = ACTIONS(1143), - [aux_sym_permit_local_command_token1] = ACTIONS(1143), - [aux_sym_permit_remote_open_token1] = ACTIONS(1143), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1143), - [aux_sym_port_token1] = ACTIONS(1143), - [aux_sym_preferred_authentications_token1] = ACTIONS(1143), - [aux_sym_protocol_token1] = ACTIONS(1143), - [aux_sym_proxy_command_token1] = ACTIONS(1143), - [aux_sym_proxy_jump_token1] = ACTIONS(1143), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1143), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1143), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1143), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1143), - [aux_sym_rekey_limit_token1] = ACTIONS(1143), - [aux_sym_remote_command_token1] = ACTIONS(1143), - [aux_sym_remote_forward_token1] = ACTIONS(1143), - [aux_sym_request_tty_token1] = ACTIONS(1143), - [aux_sym_required_rsa_size_token1] = ACTIONS(1143), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1143), - [aux_sym_security_key_provider_token1] = ACTIONS(1143), - [aux_sym_send_env_token1] = ACTIONS(1143), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1143), - [aux_sym_server_alive_interval_token1] = ACTIONS(1143), - [aux_sym_session_type_token1] = ACTIONS(1143), - [aux_sym_set_env_token1] = ACTIONS(1143), - [aux_sym_stdin_null_token1] = ACTIONS(1143), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1143), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1143), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1143), - [aux_sym_syslog_facility_token1] = ACTIONS(1143), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1143), - [aux_sym_keep_alive_token1] = ACTIONS(1143), - [aux_sym_tunnel_token1] = ACTIONS(1145), - [aux_sym_tunnel_device_token1] = ACTIONS(1143), - [aux_sym_update_host_keys_token1] = ACTIONS(1143), - [aux_sym_use_keychain_token1] = ACTIONS(1143), - [aux_sym_use_roaming_token1] = ACTIONS(1143), - [aux_sym_user_token1] = ACTIONS(1145), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1143), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1143), - [aux_sym_visual_host_key_token1] = ACTIONS(1143), - [aux_sym_xauth_location_token1] = ACTIONS(1143), + [ts_builtin_sym_end] = ACTIONS(1124), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1126), + [aux_sym_match_token1] = ACTIONS(1124), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1124), + [aux_sym_address_family_token1] = ACTIONS(1124), + [aux_sym_batch_mode_token1] = ACTIONS(1124), + [aux_sym_bind_address_token1] = ACTIONS(1124), + [aux_sym_bind_interface_token1] = ACTIONS(1124), + [aux_sym_canonical_domains_token1] = ACTIONS(1124), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1124), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1124), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1124), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1124), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1124), + [aux_sym_certificate_file_token1] = ACTIONS(1124), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1124), + [aux_sym_check_host_ip_token1] = ACTIONS(1124), + [aux_sym_ciphers_token1] = ACTIONS(1124), + [aux_sym_cipher_token1] = ACTIONS(1126), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1124), + [aux_sym_compression_token1] = ACTIONS(1124), + [aux_sym_connection_attempts_token1] = ACTIONS(1124), + [aux_sym_connect_timeout_token1] = ACTIONS(1124), + [aux_sym_control_master_token1] = ACTIONS(1124), + [aux_sym_control_path_token1] = ACTIONS(1124), + [aux_sym_control_persist_token1] = ACTIONS(1124), + [aux_sym_dynamic_forward_token1] = ACTIONS(1124), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1124), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1124), + [aux_sym_escape_char_token1] = ACTIONS(1124), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1124), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1124), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1124), + [aux_sym_forward_agent_token1] = ACTIONS(1124), + [aux_sym_forward_x11_token1] = ACTIONS(1126), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1124), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1124), + [aux_sym_gateway_ports_token1] = ACTIONS(1124), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1124), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1124), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1124), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1124), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1124), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1124), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1124), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1124), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1124), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1124), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1124), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1124), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1124), + [aux_sym_host_key_alias_token1] = ACTIONS(1124), + [aux_sym_hostname_token1] = ACTIONS(1124), + [aux_sym_identities_only_token1] = ACTIONS(1124), + [aux_sym_identity_agent_token1] = ACTIONS(1124), + [aux_sym_identity_file_token1] = ACTIONS(1124), + [aux_sym_ignore_unknown_token1] = ACTIONS(1124), + [aux_sym_include_token1] = ACTIONS(1124), + [aux_sym_ip_qos_token1] = ACTIONS(1124), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1124), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1124), + [aux_sym_kex_algorithms_token1] = ACTIONS(1124), + [aux_sym_known_hosts_command_token1] = ACTIONS(1124), + [aux_sym_local_command_token1] = ACTIONS(1124), + [aux_sym_local_forward_token1] = ACTIONS(1124), + [aux_sym_log_level_token1] = ACTIONS(1124), + [aux_sym_log_verbose_token1] = ACTIONS(1124), + [aux_sym_macs_token1] = ACTIONS(1124), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1124), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1124), + [aux_sym_password_authentication_token1] = ACTIONS(1124), + [aux_sym_permit_local_command_token1] = ACTIONS(1124), + [aux_sym_permit_remote_open_token1] = ACTIONS(1124), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1124), + [aux_sym_port_token1] = ACTIONS(1124), + [aux_sym_preferred_authentications_token1] = ACTIONS(1124), + [aux_sym_protocol_token1] = ACTIONS(1124), + [aux_sym_proxy_command_token1] = ACTIONS(1124), + [aux_sym_proxy_jump_token1] = ACTIONS(1124), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1124), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1124), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1124), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1124), + [aux_sym_rekey_limit_token1] = ACTIONS(1124), + [aux_sym_remote_command_token1] = ACTIONS(1124), + [aux_sym_remote_forward_token1] = ACTIONS(1124), + [aux_sym_request_tty_token1] = ACTIONS(1124), + [aux_sym_required_rsa_size_token1] = ACTIONS(1124), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1124), + [aux_sym_security_key_provider_token1] = ACTIONS(1124), + [aux_sym_send_env_token1] = ACTIONS(1124), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1124), + [aux_sym_server_alive_interval_token1] = ACTIONS(1124), + [aux_sym_session_type_token1] = ACTIONS(1124), + [aux_sym_set_env_token1] = ACTIONS(1124), + [aux_sym_stdin_null_token1] = ACTIONS(1124), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1124), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1124), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1124), + [aux_sym_syslog_facility_token1] = ACTIONS(1124), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1124), + [aux_sym_keep_alive_token1] = ACTIONS(1124), + [aux_sym_tunnel_token1] = ACTIONS(1126), + [aux_sym_tunnel_device_token1] = ACTIONS(1124), + [aux_sym_update_host_keys_token1] = ACTIONS(1124), + [aux_sym_use_keychain_token1] = ACTIONS(1124), + [aux_sym_use_roaming_token1] = ACTIONS(1124), + [aux_sym_user_token1] = ACTIONS(1126), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1124), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1124), + [aux_sym_visual_host_key_token1] = ACTIONS(1124), + [aux_sym_xauth_location_token1] = ACTIONS(1124), }, [663] = { - [ts_builtin_sym_end] = ACTIONS(1149), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1151), - [aux_sym_match_token1] = ACTIONS(1149), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1149), - [aux_sym_address_family_token1] = ACTIONS(1149), - [aux_sym_batch_mode_token1] = ACTIONS(1149), - [aux_sym_bind_address_token1] = ACTIONS(1149), - [aux_sym_bind_interface_token1] = ACTIONS(1149), - [aux_sym_canonical_domains_token1] = ACTIONS(1149), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1149), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1149), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1149), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1149), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1149), - [aux_sym_certificate_file_token1] = ACTIONS(1149), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1149), - [aux_sym_check_host_ip_token1] = ACTIONS(1149), - [aux_sym_ciphers_token1] = ACTIONS(1149), - [aux_sym_cipher_token1] = ACTIONS(1151), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1149), - [aux_sym_compression_token1] = ACTIONS(1149), - [aux_sym_connection_attempts_token1] = ACTIONS(1149), - [aux_sym_connect_timeout_token1] = ACTIONS(1149), - [aux_sym_control_master_token1] = ACTIONS(1149), - [aux_sym_control_path_token1] = ACTIONS(1149), - [aux_sym_control_persist_token1] = ACTIONS(1149), - [aux_sym_dynamic_forward_token1] = ACTIONS(1149), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1149), - [aux_sym_escape_char_token1] = ACTIONS(1149), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1149), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1149), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1149), - [aux_sym_forward_agent_token1] = ACTIONS(1149), - [aux_sym_forward_x11_token1] = ACTIONS(1151), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1149), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1149), - [aux_sym_gateway_ports_token1] = ACTIONS(1149), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1149), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1149), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1149), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1149), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1149), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1149), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1149), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1149), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1149), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1149), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1149), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1149), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1149), - [aux_sym_host_key_alias_token1] = ACTIONS(1149), - [aux_sym_hostname_token1] = ACTIONS(1149), - [aux_sym_identities_only_token1] = ACTIONS(1149), - [aux_sym_identity_agent_token1] = ACTIONS(1149), - [aux_sym_identity_file_token1] = ACTIONS(1149), - [aux_sym_ignore_unknown_token1] = ACTIONS(1149), - [aux_sym_include_token1] = ACTIONS(1149), - [aux_sym_ip_qos_token1] = ACTIONS(1149), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1149), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1149), - [aux_sym_kex_algorithms_token1] = ACTIONS(1149), - [aux_sym_known_hosts_command_token1] = ACTIONS(1149), - [aux_sym_local_command_token1] = ACTIONS(1149), - [aux_sym_local_forward_token1] = ACTIONS(1149), - [aux_sym_log_level_token1] = ACTIONS(1149), - [aux_sym_log_verbose_token1] = ACTIONS(1149), - [aux_sym_macs_token1] = ACTIONS(1149), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1149), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1149), - [aux_sym_password_authentication_token1] = ACTIONS(1149), - [aux_sym_permit_local_command_token1] = ACTIONS(1149), - [aux_sym_permit_remote_open_token1] = ACTIONS(1149), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1149), - [aux_sym_port_token1] = ACTIONS(1149), - [aux_sym_preferred_authentications_token1] = ACTIONS(1149), - [aux_sym_protocol_token1] = ACTIONS(1149), - [aux_sym_proxy_command_token1] = ACTIONS(1149), - [aux_sym_proxy_jump_token1] = ACTIONS(1149), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1149), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1149), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1149), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1149), - [aux_sym_rekey_limit_token1] = ACTIONS(1149), - [aux_sym_remote_command_token1] = ACTIONS(1149), - [aux_sym_remote_forward_token1] = ACTIONS(1149), - [aux_sym_request_tty_token1] = ACTIONS(1149), - [aux_sym_required_rsa_size_token1] = ACTIONS(1149), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1149), - [aux_sym_security_key_provider_token1] = ACTIONS(1149), - [aux_sym_send_env_token1] = ACTIONS(1149), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1149), - [aux_sym_server_alive_interval_token1] = ACTIONS(1149), - [aux_sym_session_type_token1] = ACTIONS(1149), - [aux_sym_set_env_token1] = ACTIONS(1149), - [aux_sym_stdin_null_token1] = ACTIONS(1149), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1149), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1149), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1149), - [aux_sym_syslog_facility_token1] = ACTIONS(1149), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1149), - [aux_sym_keep_alive_token1] = ACTIONS(1149), - [aux_sym_tunnel_token1] = ACTIONS(1151), - [aux_sym_tunnel_device_token1] = ACTIONS(1149), - [aux_sym_update_host_keys_token1] = ACTIONS(1149), - [aux_sym_use_keychain_token1] = ACTIONS(1149), - [aux_sym_use_roaming_token1] = ACTIONS(1149), - [aux_sym_user_token1] = ACTIONS(1151), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1149), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1149), - [aux_sym_visual_host_key_token1] = ACTIONS(1149), - [aux_sym_xauth_location_token1] = ACTIONS(1149), + [ts_builtin_sym_end] = ACTIONS(1460), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1462), + [aux_sym_match_token1] = ACTIONS(1460), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1460), + [aux_sym_address_family_token1] = ACTIONS(1460), + [aux_sym_batch_mode_token1] = ACTIONS(1460), + [aux_sym_bind_address_token1] = ACTIONS(1460), + [aux_sym_bind_interface_token1] = ACTIONS(1460), + [aux_sym_canonical_domains_token1] = ACTIONS(1460), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1460), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1460), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1460), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1460), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1460), + [aux_sym_certificate_file_token1] = ACTIONS(1460), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1460), + [aux_sym_check_host_ip_token1] = ACTIONS(1460), + [aux_sym_ciphers_token1] = ACTIONS(1460), + [aux_sym_cipher_token1] = ACTIONS(1462), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1460), + [aux_sym_compression_token1] = ACTIONS(1460), + [aux_sym_connection_attempts_token1] = ACTIONS(1460), + [aux_sym_connect_timeout_token1] = ACTIONS(1460), + [aux_sym_control_master_token1] = ACTIONS(1460), + [aux_sym_control_path_token1] = ACTIONS(1460), + [aux_sym_control_persist_token1] = ACTIONS(1460), + [aux_sym_dynamic_forward_token1] = ACTIONS(1460), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1460), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1460), + [aux_sym_escape_char_token1] = ACTIONS(1460), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1460), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1460), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1460), + [aux_sym_forward_agent_token1] = ACTIONS(1460), + [aux_sym_forward_x11_token1] = ACTIONS(1462), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1460), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1460), + [aux_sym_gateway_ports_token1] = ACTIONS(1460), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1460), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1460), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1460), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1460), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1460), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1460), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1460), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1460), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1460), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1460), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1460), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1460), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1460), + [aux_sym_host_key_alias_token1] = ACTIONS(1460), + [aux_sym_hostname_token1] = ACTIONS(1460), + [aux_sym_identities_only_token1] = ACTIONS(1460), + [aux_sym_identity_agent_token1] = ACTIONS(1460), + [aux_sym_identity_file_token1] = ACTIONS(1460), + [aux_sym_ignore_unknown_token1] = ACTIONS(1460), + [aux_sym_include_token1] = ACTIONS(1460), + [aux_sym_ip_qos_token1] = ACTIONS(1460), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1460), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1460), + [aux_sym_kex_algorithms_token1] = ACTIONS(1460), + [aux_sym_known_hosts_command_token1] = ACTIONS(1460), + [aux_sym_local_command_token1] = ACTIONS(1460), + [aux_sym_local_forward_token1] = ACTIONS(1460), + [aux_sym_log_level_token1] = ACTIONS(1460), + [aux_sym_log_verbose_token1] = ACTIONS(1460), + [aux_sym_macs_token1] = ACTIONS(1460), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1460), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1460), + [aux_sym_password_authentication_token1] = ACTIONS(1460), + [aux_sym_permit_local_command_token1] = ACTIONS(1460), + [aux_sym_permit_remote_open_token1] = ACTIONS(1460), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1460), + [aux_sym_port_token1] = ACTIONS(1460), + [aux_sym_preferred_authentications_token1] = ACTIONS(1460), + [aux_sym_protocol_token1] = ACTIONS(1460), + [aux_sym_proxy_command_token1] = ACTIONS(1460), + [aux_sym_proxy_jump_token1] = ACTIONS(1460), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1460), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1460), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1460), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1460), + [aux_sym_rekey_limit_token1] = ACTIONS(1460), + [aux_sym_remote_command_token1] = ACTIONS(1460), + [aux_sym_remote_forward_token1] = ACTIONS(1460), + [aux_sym_request_tty_token1] = ACTIONS(1460), + [aux_sym_required_rsa_size_token1] = ACTIONS(1460), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1460), + [aux_sym_security_key_provider_token1] = ACTIONS(1460), + [aux_sym_send_env_token1] = ACTIONS(1460), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1460), + [aux_sym_server_alive_interval_token1] = ACTIONS(1460), + [aux_sym_session_type_token1] = ACTIONS(1460), + [aux_sym_set_env_token1] = ACTIONS(1460), + [aux_sym_stdin_null_token1] = ACTIONS(1460), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1460), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1460), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1460), + [aux_sym_syslog_facility_token1] = ACTIONS(1460), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1460), + [aux_sym_keep_alive_token1] = ACTIONS(1460), + [aux_sym_tunnel_token1] = ACTIONS(1462), + [aux_sym_tunnel_device_token1] = ACTIONS(1460), + [aux_sym_update_host_keys_token1] = ACTIONS(1460), + [aux_sym_use_keychain_token1] = ACTIONS(1460), + [aux_sym_use_roaming_token1] = ACTIONS(1460), + [aux_sym_user_token1] = ACTIONS(1462), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1460), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1460), + [aux_sym_visual_host_key_token1] = ACTIONS(1460), + [aux_sym_xauth_location_token1] = ACTIONS(1460), }, [664] = { - [ts_builtin_sym_end] = ACTIONS(1155), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1157), - [aux_sym_match_token1] = ACTIONS(1155), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1155), - [aux_sym_address_family_token1] = ACTIONS(1155), - [aux_sym_batch_mode_token1] = ACTIONS(1155), - [aux_sym_bind_address_token1] = ACTIONS(1155), - [aux_sym_bind_interface_token1] = ACTIONS(1155), - [aux_sym_canonical_domains_token1] = ACTIONS(1155), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1155), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1155), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1155), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1155), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1155), - [aux_sym_certificate_file_token1] = ACTIONS(1155), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1155), - [aux_sym_check_host_ip_token1] = ACTIONS(1155), - [aux_sym_ciphers_token1] = ACTIONS(1155), - [aux_sym_cipher_token1] = ACTIONS(1157), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1155), - [aux_sym_compression_token1] = ACTIONS(1155), - [aux_sym_connection_attempts_token1] = ACTIONS(1155), - [aux_sym_connect_timeout_token1] = ACTIONS(1155), - [aux_sym_control_master_token1] = ACTIONS(1155), - [aux_sym_control_path_token1] = ACTIONS(1155), - [aux_sym_control_persist_token1] = ACTIONS(1155), - [aux_sym_dynamic_forward_token1] = ACTIONS(1155), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1155), - [aux_sym_escape_char_token1] = ACTIONS(1155), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1155), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1155), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1155), - [aux_sym_forward_agent_token1] = ACTIONS(1155), - [aux_sym_forward_x11_token1] = ACTIONS(1157), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1155), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1155), - [aux_sym_gateway_ports_token1] = ACTIONS(1155), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1155), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1155), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1155), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1155), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1155), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1155), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1155), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1155), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1155), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1155), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1155), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1155), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1155), - [aux_sym_host_key_alias_token1] = ACTIONS(1155), - [aux_sym_hostname_token1] = ACTIONS(1155), - [aux_sym_identities_only_token1] = ACTIONS(1155), - [aux_sym_identity_agent_token1] = ACTIONS(1155), - [aux_sym_identity_file_token1] = ACTIONS(1155), - [aux_sym_ignore_unknown_token1] = ACTIONS(1155), - [aux_sym_include_token1] = ACTIONS(1155), - [aux_sym_ip_qos_token1] = ACTIONS(1155), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1155), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1155), - [aux_sym_kex_algorithms_token1] = ACTIONS(1155), - [aux_sym_known_hosts_command_token1] = ACTIONS(1155), - [aux_sym_local_command_token1] = ACTIONS(1155), - [aux_sym_local_forward_token1] = ACTIONS(1155), - [aux_sym_log_level_token1] = ACTIONS(1155), - [aux_sym_log_verbose_token1] = ACTIONS(1155), - [aux_sym_macs_token1] = ACTIONS(1155), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1155), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1155), - [aux_sym_password_authentication_token1] = ACTIONS(1155), - [aux_sym_permit_local_command_token1] = ACTIONS(1155), - [aux_sym_permit_remote_open_token1] = ACTIONS(1155), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1155), - [aux_sym_port_token1] = ACTIONS(1155), - [aux_sym_preferred_authentications_token1] = ACTIONS(1155), - [aux_sym_protocol_token1] = ACTIONS(1155), - [aux_sym_proxy_command_token1] = ACTIONS(1155), - [aux_sym_proxy_jump_token1] = ACTIONS(1155), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1155), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1155), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1155), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1155), - [aux_sym_rekey_limit_token1] = ACTIONS(1155), - [aux_sym_remote_command_token1] = ACTIONS(1155), - [aux_sym_remote_forward_token1] = ACTIONS(1155), - [aux_sym_request_tty_token1] = ACTIONS(1155), - [aux_sym_required_rsa_size_token1] = ACTIONS(1155), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1155), - [aux_sym_security_key_provider_token1] = ACTIONS(1155), - [aux_sym_send_env_token1] = ACTIONS(1155), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1155), - [aux_sym_server_alive_interval_token1] = ACTIONS(1155), - [aux_sym_session_type_token1] = ACTIONS(1155), - [aux_sym_set_env_token1] = ACTIONS(1155), - [aux_sym_stdin_null_token1] = ACTIONS(1155), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1155), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1155), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1155), - [aux_sym_syslog_facility_token1] = ACTIONS(1155), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1155), - [aux_sym_keep_alive_token1] = ACTIONS(1155), - [aux_sym_tunnel_token1] = ACTIONS(1157), - [aux_sym_tunnel_device_token1] = ACTIONS(1155), - [aux_sym_update_host_keys_token1] = ACTIONS(1155), - [aux_sym_use_keychain_token1] = ACTIONS(1155), - [aux_sym_use_roaming_token1] = ACTIONS(1155), - [aux_sym_user_token1] = ACTIONS(1157), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1155), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1155), - [aux_sym_visual_host_key_token1] = ACTIONS(1155), - [aux_sym_xauth_location_token1] = ACTIONS(1155), + [ts_builtin_sym_end] = ACTIONS(872), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(874), + [aux_sym_match_token1] = ACTIONS(872), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(872), + [aux_sym_address_family_token1] = ACTIONS(872), + [aux_sym_batch_mode_token1] = ACTIONS(872), + [aux_sym_bind_address_token1] = ACTIONS(872), + [aux_sym_bind_interface_token1] = ACTIONS(872), + [aux_sym_canonical_domains_token1] = ACTIONS(872), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(872), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(872), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(872), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(872), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(872), + [aux_sym_certificate_file_token1] = ACTIONS(872), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(872), + [aux_sym_check_host_ip_token1] = ACTIONS(872), + [aux_sym_ciphers_token1] = ACTIONS(872), + [aux_sym_cipher_token1] = ACTIONS(874), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(872), + [aux_sym_compression_token1] = ACTIONS(872), + [aux_sym_connection_attempts_token1] = ACTIONS(872), + [aux_sym_connect_timeout_token1] = ACTIONS(872), + [aux_sym_control_master_token1] = ACTIONS(872), + [aux_sym_control_path_token1] = ACTIONS(872), + [aux_sym_control_persist_token1] = ACTIONS(872), + [aux_sym_dynamic_forward_token1] = ACTIONS(872), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(872), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(872), + [aux_sym_escape_char_token1] = ACTIONS(872), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(872), + [aux_sym_fingerprint_hash_token1] = ACTIONS(872), + [aux_sym_fork_after_authentication_token1] = ACTIONS(872), + [aux_sym_forward_agent_token1] = ACTIONS(872), + [aux_sym_forward_x11_token1] = ACTIONS(874), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(872), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(872), + [aux_sym_gateway_ports_token1] = ACTIONS(872), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(872), + [aux_sym_gssapi_authentication_token1] = ACTIONS(872), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(872), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(872), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(872), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(872), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(872), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(872), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(872), + [aux_sym_hash_known_hosts_token1] = ACTIONS(872), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(872), + [aux_sym_hostbased_authentication_token1] = ACTIONS(872), + [aux_sym_host_key_algorithms_token1] = ACTIONS(872), + [aux_sym_host_key_alias_token1] = ACTIONS(872), + [aux_sym_hostname_token1] = ACTIONS(872), + [aux_sym_identities_only_token1] = ACTIONS(872), + [aux_sym_identity_agent_token1] = ACTIONS(872), + [aux_sym_identity_file_token1] = ACTIONS(872), + [aux_sym_ignore_unknown_token1] = ACTIONS(872), + [aux_sym_include_token1] = ACTIONS(872), + [aux_sym_ip_qos_token1] = ACTIONS(872), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(872), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(872), + [aux_sym_kex_algorithms_token1] = ACTIONS(872), + [aux_sym_known_hosts_command_token1] = ACTIONS(872), + [aux_sym_local_command_token1] = ACTIONS(872), + [aux_sym_local_forward_token1] = ACTIONS(872), + [aux_sym_log_level_token1] = ACTIONS(872), + [aux_sym_log_verbose_token1] = ACTIONS(872), + [aux_sym_macs_token1] = ACTIONS(872), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(872), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(872), + [aux_sym_password_authentication_token1] = ACTIONS(872), + [aux_sym_permit_local_command_token1] = ACTIONS(872), + [aux_sym_permit_remote_open_token1] = ACTIONS(872), + [aux_sym_pkcs11_provider_token1] = ACTIONS(872), + [aux_sym_port_token1] = ACTIONS(872), + [aux_sym_preferred_authentications_token1] = ACTIONS(872), + [aux_sym_protocol_token1] = ACTIONS(872), + [aux_sym_proxy_command_token1] = ACTIONS(872), + [aux_sym_proxy_jump_token1] = ACTIONS(872), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(872), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(872), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(872), + [aux_sym_pubkey_authentication_token1] = ACTIONS(872), + [aux_sym_rekey_limit_token1] = ACTIONS(872), + [aux_sym_remote_command_token1] = ACTIONS(872), + [aux_sym_remote_forward_token1] = ACTIONS(872), + [aux_sym_request_tty_token1] = ACTIONS(872), + [aux_sym_required_rsa_size_token1] = ACTIONS(872), + [aux_sym_revoked_host_keys_token1] = ACTIONS(872), + [aux_sym_security_key_provider_token1] = ACTIONS(872), + [aux_sym_send_env_token1] = ACTIONS(872), + [aux_sym_server_alive_count_max_token1] = ACTIONS(872), + [aux_sym_server_alive_interval_token1] = ACTIONS(872), + [aux_sym_session_type_token1] = ACTIONS(872), + [aux_sym_set_env_token1] = ACTIONS(872), + [aux_sym_stdin_null_token1] = ACTIONS(872), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(872), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(872), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(872), + [aux_sym_syslog_facility_token1] = ACTIONS(872), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(872), + [aux_sym_keep_alive_token1] = ACTIONS(872), + [aux_sym_tunnel_token1] = ACTIONS(874), + [aux_sym_tunnel_device_token1] = ACTIONS(872), + [aux_sym_update_host_keys_token1] = ACTIONS(872), + [aux_sym_use_keychain_token1] = ACTIONS(872), + [aux_sym_use_roaming_token1] = ACTIONS(872), + [aux_sym_user_token1] = ACTIONS(874), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(872), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(872), + [aux_sym_visual_host_key_token1] = ACTIONS(872), + [aux_sym_xauth_location_token1] = ACTIONS(872), }, [665] = { - [ts_builtin_sym_end] = ACTIONS(1161), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1163), - [aux_sym_match_token1] = ACTIONS(1161), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1161), - [aux_sym_address_family_token1] = ACTIONS(1161), - [aux_sym_batch_mode_token1] = ACTIONS(1161), - [aux_sym_bind_address_token1] = ACTIONS(1161), - [aux_sym_bind_interface_token1] = ACTIONS(1161), - [aux_sym_canonical_domains_token1] = ACTIONS(1161), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1161), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1161), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1161), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1161), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1161), - [aux_sym_certificate_file_token1] = ACTIONS(1161), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1161), - [aux_sym_check_host_ip_token1] = ACTIONS(1161), - [aux_sym_ciphers_token1] = ACTIONS(1161), - [aux_sym_cipher_token1] = ACTIONS(1163), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1161), - [aux_sym_compression_token1] = ACTIONS(1161), - [aux_sym_connection_attempts_token1] = ACTIONS(1161), - [aux_sym_connect_timeout_token1] = ACTIONS(1161), - [aux_sym_control_master_token1] = ACTIONS(1161), - [aux_sym_control_path_token1] = ACTIONS(1161), - [aux_sym_control_persist_token1] = ACTIONS(1161), - [aux_sym_dynamic_forward_token1] = ACTIONS(1161), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1161), - [aux_sym_escape_char_token1] = ACTIONS(1161), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1161), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1161), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1161), - [aux_sym_forward_agent_token1] = ACTIONS(1161), - [aux_sym_forward_x11_token1] = ACTIONS(1163), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1161), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1161), - [aux_sym_gateway_ports_token1] = ACTIONS(1161), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1161), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1161), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1161), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1161), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1161), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1161), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1161), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1161), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1161), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1161), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1161), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1161), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1161), - [aux_sym_host_key_alias_token1] = ACTIONS(1161), - [aux_sym_hostname_token1] = ACTIONS(1161), - [aux_sym_identities_only_token1] = ACTIONS(1161), - [aux_sym_identity_agent_token1] = ACTIONS(1161), - [aux_sym_identity_file_token1] = ACTIONS(1161), - [aux_sym_ignore_unknown_token1] = ACTIONS(1161), - [aux_sym_include_token1] = ACTIONS(1161), - [aux_sym_ip_qos_token1] = ACTIONS(1161), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1161), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1161), - [aux_sym_kex_algorithms_token1] = ACTIONS(1161), - [aux_sym_known_hosts_command_token1] = ACTIONS(1161), - [aux_sym_local_command_token1] = ACTIONS(1161), - [aux_sym_local_forward_token1] = ACTIONS(1161), - [aux_sym_log_level_token1] = ACTIONS(1161), - [aux_sym_log_verbose_token1] = ACTIONS(1161), - [aux_sym_macs_token1] = ACTIONS(1161), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1161), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1161), - [aux_sym_password_authentication_token1] = ACTIONS(1161), - [aux_sym_permit_local_command_token1] = ACTIONS(1161), - [aux_sym_permit_remote_open_token1] = ACTIONS(1161), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1161), - [aux_sym_port_token1] = ACTIONS(1161), - [aux_sym_preferred_authentications_token1] = ACTIONS(1161), - [aux_sym_protocol_token1] = ACTIONS(1161), - [aux_sym_proxy_command_token1] = ACTIONS(1161), - [aux_sym_proxy_jump_token1] = ACTIONS(1161), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1161), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1161), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1161), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1161), - [aux_sym_rekey_limit_token1] = ACTIONS(1161), - [aux_sym_remote_command_token1] = ACTIONS(1161), - [aux_sym_remote_forward_token1] = ACTIONS(1161), - [aux_sym_request_tty_token1] = ACTIONS(1161), - [aux_sym_required_rsa_size_token1] = ACTIONS(1161), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1161), - [aux_sym_security_key_provider_token1] = ACTIONS(1161), - [aux_sym_send_env_token1] = ACTIONS(1161), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1161), - [aux_sym_server_alive_interval_token1] = ACTIONS(1161), - [aux_sym_session_type_token1] = ACTIONS(1161), - [aux_sym_set_env_token1] = ACTIONS(1161), - [aux_sym_stdin_null_token1] = ACTIONS(1161), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1161), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1161), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1161), - [aux_sym_syslog_facility_token1] = ACTIONS(1161), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1161), - [aux_sym_keep_alive_token1] = ACTIONS(1161), - [aux_sym_tunnel_token1] = ACTIONS(1163), - [aux_sym_tunnel_device_token1] = ACTIONS(1161), - [aux_sym_update_host_keys_token1] = ACTIONS(1161), - [aux_sym_use_keychain_token1] = ACTIONS(1161), - [aux_sym_use_roaming_token1] = ACTIONS(1161), - [aux_sym_user_token1] = ACTIONS(1163), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1161), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1161), - [aux_sym_visual_host_key_token1] = ACTIONS(1161), - [aux_sym_xauth_location_token1] = ACTIONS(1161), + [ts_builtin_sym_end] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1468), + [aux_sym_match_token1] = ACTIONS(1466), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1466), + [aux_sym_address_family_token1] = ACTIONS(1466), + [aux_sym_batch_mode_token1] = ACTIONS(1466), + [aux_sym_bind_address_token1] = ACTIONS(1466), + [aux_sym_bind_interface_token1] = ACTIONS(1466), + [aux_sym_canonical_domains_token1] = ACTIONS(1466), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1466), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1466), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1466), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1466), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1466), + [aux_sym_certificate_file_token1] = ACTIONS(1466), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1466), + [aux_sym_check_host_ip_token1] = ACTIONS(1466), + [aux_sym_ciphers_token1] = ACTIONS(1466), + [aux_sym_cipher_token1] = ACTIONS(1468), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1466), + [aux_sym_compression_token1] = ACTIONS(1466), + [aux_sym_connection_attempts_token1] = ACTIONS(1466), + [aux_sym_connect_timeout_token1] = ACTIONS(1466), + [aux_sym_control_master_token1] = ACTIONS(1466), + [aux_sym_control_path_token1] = ACTIONS(1466), + [aux_sym_control_persist_token1] = ACTIONS(1466), + [aux_sym_dynamic_forward_token1] = ACTIONS(1466), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1466), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1466), + [aux_sym_escape_char_token1] = ACTIONS(1466), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1466), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1466), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1466), + [aux_sym_forward_agent_token1] = ACTIONS(1466), + [aux_sym_forward_x11_token1] = ACTIONS(1468), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1466), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1466), + [aux_sym_gateway_ports_token1] = ACTIONS(1466), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1466), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1466), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1466), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1466), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1466), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1466), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1466), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1466), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1466), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1466), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1466), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1466), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1466), + [aux_sym_host_key_alias_token1] = ACTIONS(1466), + [aux_sym_hostname_token1] = ACTIONS(1466), + [aux_sym_identities_only_token1] = ACTIONS(1466), + [aux_sym_identity_agent_token1] = ACTIONS(1466), + [aux_sym_identity_file_token1] = ACTIONS(1466), + [aux_sym_ignore_unknown_token1] = ACTIONS(1466), + [aux_sym_include_token1] = ACTIONS(1466), + [aux_sym_ip_qos_token1] = ACTIONS(1466), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1466), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1466), + [aux_sym_kex_algorithms_token1] = ACTIONS(1466), + [aux_sym_known_hosts_command_token1] = ACTIONS(1466), + [aux_sym_local_command_token1] = ACTIONS(1466), + [aux_sym_local_forward_token1] = ACTIONS(1466), + [aux_sym_log_level_token1] = ACTIONS(1466), + [aux_sym_log_verbose_token1] = ACTIONS(1466), + [aux_sym_macs_token1] = ACTIONS(1466), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1466), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1466), + [aux_sym_password_authentication_token1] = ACTIONS(1466), + [aux_sym_permit_local_command_token1] = ACTIONS(1466), + [aux_sym_permit_remote_open_token1] = ACTIONS(1466), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1466), + [aux_sym_port_token1] = ACTIONS(1466), + [aux_sym_preferred_authentications_token1] = ACTIONS(1466), + [aux_sym_protocol_token1] = ACTIONS(1466), + [aux_sym_proxy_command_token1] = ACTIONS(1466), + [aux_sym_proxy_jump_token1] = ACTIONS(1466), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1466), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1466), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1466), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1466), + [aux_sym_rekey_limit_token1] = ACTIONS(1466), + [aux_sym_remote_command_token1] = ACTIONS(1466), + [aux_sym_remote_forward_token1] = ACTIONS(1466), + [aux_sym_request_tty_token1] = ACTIONS(1466), + [aux_sym_required_rsa_size_token1] = ACTIONS(1466), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1466), + [aux_sym_security_key_provider_token1] = ACTIONS(1466), + [aux_sym_send_env_token1] = ACTIONS(1466), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1466), + [aux_sym_server_alive_interval_token1] = ACTIONS(1466), + [aux_sym_session_type_token1] = ACTIONS(1466), + [aux_sym_set_env_token1] = ACTIONS(1466), + [aux_sym_stdin_null_token1] = ACTIONS(1466), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1466), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1466), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1466), + [aux_sym_syslog_facility_token1] = ACTIONS(1466), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1466), + [aux_sym_keep_alive_token1] = ACTIONS(1466), + [aux_sym_tunnel_token1] = ACTIONS(1468), + [aux_sym_tunnel_device_token1] = ACTIONS(1466), + [aux_sym_update_host_keys_token1] = ACTIONS(1466), + [aux_sym_use_keychain_token1] = ACTIONS(1466), + [aux_sym_use_roaming_token1] = ACTIONS(1466), + [aux_sym_user_token1] = ACTIONS(1468), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1466), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1466), + [aux_sym_visual_host_key_token1] = ACTIONS(1466), + [aux_sym_xauth_location_token1] = ACTIONS(1466), }, [666] = { - [ts_builtin_sym_end] = ACTIONS(1167), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1169), - [aux_sym_match_token1] = ACTIONS(1167), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1167), - [aux_sym_address_family_token1] = ACTIONS(1167), - [aux_sym_batch_mode_token1] = ACTIONS(1167), - [aux_sym_bind_address_token1] = ACTIONS(1167), - [aux_sym_bind_interface_token1] = ACTIONS(1167), - [aux_sym_canonical_domains_token1] = ACTIONS(1167), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1167), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1167), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1167), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1167), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1167), - [aux_sym_certificate_file_token1] = ACTIONS(1167), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1167), - [aux_sym_check_host_ip_token1] = ACTIONS(1167), - [aux_sym_ciphers_token1] = ACTIONS(1167), - [aux_sym_cipher_token1] = ACTIONS(1169), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1167), - [aux_sym_compression_token1] = ACTIONS(1167), - [aux_sym_connection_attempts_token1] = ACTIONS(1167), - [aux_sym_connect_timeout_token1] = ACTIONS(1167), - [aux_sym_control_master_token1] = ACTIONS(1167), - [aux_sym_control_path_token1] = ACTIONS(1167), - [aux_sym_control_persist_token1] = ACTIONS(1167), - [aux_sym_dynamic_forward_token1] = ACTIONS(1167), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1167), - [aux_sym_escape_char_token1] = ACTIONS(1167), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1167), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1167), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1167), - [aux_sym_forward_agent_token1] = ACTIONS(1167), - [aux_sym_forward_x11_token1] = ACTIONS(1169), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1167), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1167), - [aux_sym_gateway_ports_token1] = ACTIONS(1167), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1167), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1167), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1167), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1167), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1167), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1167), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1167), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1167), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1167), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1167), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1167), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1167), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1167), - [aux_sym_host_key_alias_token1] = ACTIONS(1167), - [aux_sym_hostname_token1] = ACTIONS(1167), - [aux_sym_identities_only_token1] = ACTIONS(1167), - [aux_sym_identity_agent_token1] = ACTIONS(1167), - [aux_sym_identity_file_token1] = ACTIONS(1167), - [aux_sym_ignore_unknown_token1] = ACTIONS(1167), - [aux_sym_include_token1] = ACTIONS(1167), - [aux_sym_ip_qos_token1] = ACTIONS(1167), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1167), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1167), - [aux_sym_kex_algorithms_token1] = ACTIONS(1167), - [aux_sym_known_hosts_command_token1] = ACTIONS(1167), - [aux_sym_local_command_token1] = ACTIONS(1167), - [aux_sym_local_forward_token1] = ACTIONS(1167), - [aux_sym_log_level_token1] = ACTIONS(1167), - [aux_sym_log_verbose_token1] = ACTIONS(1167), - [aux_sym_macs_token1] = ACTIONS(1167), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1167), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1167), - [aux_sym_password_authentication_token1] = ACTIONS(1167), - [aux_sym_permit_local_command_token1] = ACTIONS(1167), - [aux_sym_permit_remote_open_token1] = ACTIONS(1167), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1167), - [aux_sym_port_token1] = ACTIONS(1167), - [aux_sym_preferred_authentications_token1] = ACTIONS(1167), - [aux_sym_protocol_token1] = ACTIONS(1167), - [aux_sym_proxy_command_token1] = ACTIONS(1167), - [aux_sym_proxy_jump_token1] = ACTIONS(1167), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1167), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1167), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1167), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1167), - [aux_sym_rekey_limit_token1] = ACTIONS(1167), - [aux_sym_remote_command_token1] = ACTIONS(1167), - [aux_sym_remote_forward_token1] = ACTIONS(1167), - [aux_sym_request_tty_token1] = ACTIONS(1167), - [aux_sym_required_rsa_size_token1] = ACTIONS(1167), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1167), - [aux_sym_security_key_provider_token1] = ACTIONS(1167), - [aux_sym_send_env_token1] = ACTIONS(1167), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1167), - [aux_sym_server_alive_interval_token1] = ACTIONS(1167), - [aux_sym_session_type_token1] = ACTIONS(1167), - [aux_sym_set_env_token1] = ACTIONS(1167), - [aux_sym_stdin_null_token1] = ACTIONS(1167), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1167), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1167), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1167), - [aux_sym_syslog_facility_token1] = ACTIONS(1167), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1167), - [aux_sym_keep_alive_token1] = ACTIONS(1167), - [aux_sym_tunnel_token1] = ACTIONS(1169), - [aux_sym_tunnel_device_token1] = ACTIONS(1167), - [aux_sym_update_host_keys_token1] = ACTIONS(1167), - [aux_sym_use_keychain_token1] = ACTIONS(1167), - [aux_sym_use_roaming_token1] = ACTIONS(1167), - [aux_sym_user_token1] = ACTIONS(1169), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1167), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1167), - [aux_sym_visual_host_key_token1] = ACTIONS(1167), - [aux_sym_xauth_location_token1] = ACTIONS(1167), + [ts_builtin_sym_end] = ACTIONS(866), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(868), + [aux_sym_match_token1] = ACTIONS(866), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(866), + [aux_sym_address_family_token1] = ACTIONS(866), + [aux_sym_batch_mode_token1] = ACTIONS(866), + [aux_sym_bind_address_token1] = ACTIONS(866), + [aux_sym_bind_interface_token1] = ACTIONS(866), + [aux_sym_canonical_domains_token1] = ACTIONS(866), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(866), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(866), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(866), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(866), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(866), + [aux_sym_certificate_file_token1] = ACTIONS(866), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(866), + [aux_sym_check_host_ip_token1] = ACTIONS(866), + [aux_sym_ciphers_token1] = ACTIONS(866), + [aux_sym_cipher_token1] = ACTIONS(868), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(866), + [aux_sym_compression_token1] = ACTIONS(866), + [aux_sym_connection_attempts_token1] = ACTIONS(866), + [aux_sym_connect_timeout_token1] = ACTIONS(866), + [aux_sym_control_master_token1] = ACTIONS(866), + [aux_sym_control_path_token1] = ACTIONS(866), + [aux_sym_control_persist_token1] = ACTIONS(866), + [aux_sym_dynamic_forward_token1] = ACTIONS(866), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(866), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(866), + [aux_sym_escape_char_token1] = ACTIONS(866), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(866), + [aux_sym_fingerprint_hash_token1] = ACTIONS(866), + [aux_sym_fork_after_authentication_token1] = ACTIONS(866), + [aux_sym_forward_agent_token1] = ACTIONS(866), + [aux_sym_forward_x11_token1] = ACTIONS(868), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(866), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(866), + [aux_sym_gateway_ports_token1] = ACTIONS(866), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(866), + [aux_sym_gssapi_authentication_token1] = ACTIONS(866), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(866), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(866), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(866), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(866), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(866), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(866), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(866), + [aux_sym_hash_known_hosts_token1] = ACTIONS(866), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(866), + [aux_sym_hostbased_authentication_token1] = ACTIONS(866), + [aux_sym_host_key_algorithms_token1] = ACTIONS(866), + [aux_sym_host_key_alias_token1] = ACTIONS(866), + [aux_sym_hostname_token1] = ACTIONS(866), + [aux_sym_identities_only_token1] = ACTIONS(866), + [aux_sym_identity_agent_token1] = ACTIONS(866), + [aux_sym_identity_file_token1] = ACTIONS(866), + [aux_sym_ignore_unknown_token1] = ACTIONS(866), + [aux_sym_include_token1] = ACTIONS(866), + [aux_sym_ip_qos_token1] = ACTIONS(866), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(866), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(866), + [aux_sym_kex_algorithms_token1] = ACTIONS(866), + [aux_sym_known_hosts_command_token1] = ACTIONS(866), + [aux_sym_local_command_token1] = ACTIONS(866), + [aux_sym_local_forward_token1] = ACTIONS(866), + [aux_sym_log_level_token1] = ACTIONS(866), + [aux_sym_log_verbose_token1] = ACTIONS(866), + [aux_sym_macs_token1] = ACTIONS(866), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(866), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(866), + [aux_sym_password_authentication_token1] = ACTIONS(866), + [aux_sym_permit_local_command_token1] = ACTIONS(866), + [aux_sym_permit_remote_open_token1] = ACTIONS(866), + [aux_sym_pkcs11_provider_token1] = ACTIONS(866), + [aux_sym_port_token1] = ACTIONS(866), + [aux_sym_preferred_authentications_token1] = ACTIONS(866), + [aux_sym_protocol_token1] = ACTIONS(866), + [aux_sym_proxy_command_token1] = ACTIONS(866), + [aux_sym_proxy_jump_token1] = ACTIONS(866), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(866), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(866), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(866), + [aux_sym_pubkey_authentication_token1] = ACTIONS(866), + [aux_sym_rekey_limit_token1] = ACTIONS(866), + [aux_sym_remote_command_token1] = ACTIONS(866), + [aux_sym_remote_forward_token1] = ACTIONS(866), + [aux_sym_request_tty_token1] = ACTIONS(866), + [aux_sym_required_rsa_size_token1] = ACTIONS(866), + [aux_sym_revoked_host_keys_token1] = ACTIONS(866), + [aux_sym_security_key_provider_token1] = ACTIONS(866), + [aux_sym_send_env_token1] = ACTIONS(866), + [aux_sym_server_alive_count_max_token1] = ACTIONS(866), + [aux_sym_server_alive_interval_token1] = ACTIONS(866), + [aux_sym_session_type_token1] = ACTIONS(866), + [aux_sym_set_env_token1] = ACTIONS(866), + [aux_sym_stdin_null_token1] = ACTIONS(866), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(866), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(866), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(866), + [aux_sym_syslog_facility_token1] = ACTIONS(866), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(866), + [aux_sym_keep_alive_token1] = ACTIONS(866), + [aux_sym_tunnel_token1] = ACTIONS(868), + [aux_sym_tunnel_device_token1] = ACTIONS(866), + [aux_sym_update_host_keys_token1] = ACTIONS(866), + [aux_sym_use_keychain_token1] = ACTIONS(866), + [aux_sym_use_roaming_token1] = ACTIONS(866), + [aux_sym_user_token1] = ACTIONS(868), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(866), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(866), + [aux_sym_visual_host_key_token1] = ACTIONS(866), + [aux_sym_xauth_location_token1] = ACTIONS(866), }, [667] = { - [ts_builtin_sym_end] = ACTIONS(1173), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1175), - [aux_sym_match_token1] = ACTIONS(1173), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1173), - [aux_sym_address_family_token1] = ACTIONS(1173), - [aux_sym_batch_mode_token1] = ACTIONS(1173), - [aux_sym_bind_address_token1] = ACTIONS(1173), - [aux_sym_bind_interface_token1] = ACTIONS(1173), - [aux_sym_canonical_domains_token1] = ACTIONS(1173), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1173), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1173), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1173), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1173), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1173), - [aux_sym_certificate_file_token1] = ACTIONS(1173), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1173), - [aux_sym_check_host_ip_token1] = ACTIONS(1173), - [aux_sym_ciphers_token1] = ACTIONS(1173), - [aux_sym_cipher_token1] = ACTIONS(1175), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1173), - [aux_sym_compression_token1] = ACTIONS(1173), - [aux_sym_connection_attempts_token1] = ACTIONS(1173), - [aux_sym_connect_timeout_token1] = ACTIONS(1173), - [aux_sym_control_master_token1] = ACTIONS(1173), - [aux_sym_control_path_token1] = ACTIONS(1173), - [aux_sym_control_persist_token1] = ACTIONS(1173), - [aux_sym_dynamic_forward_token1] = ACTIONS(1173), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1173), - [aux_sym_escape_char_token1] = ACTIONS(1173), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1173), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1173), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1173), - [aux_sym_forward_agent_token1] = ACTIONS(1173), - [aux_sym_forward_x11_token1] = ACTIONS(1175), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1173), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1173), - [aux_sym_gateway_ports_token1] = ACTIONS(1173), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1173), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1173), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1173), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1173), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1173), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1173), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1173), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1173), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1173), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1173), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1173), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1173), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1173), - [aux_sym_host_key_alias_token1] = ACTIONS(1173), - [aux_sym_hostname_token1] = ACTIONS(1173), - [aux_sym_identities_only_token1] = ACTIONS(1173), - [aux_sym_identity_agent_token1] = ACTIONS(1173), - [aux_sym_identity_file_token1] = ACTIONS(1173), - [aux_sym_ignore_unknown_token1] = ACTIONS(1173), - [aux_sym_include_token1] = ACTIONS(1173), - [aux_sym_ip_qos_token1] = ACTIONS(1173), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1173), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1173), - [aux_sym_kex_algorithms_token1] = ACTIONS(1173), - [aux_sym_known_hosts_command_token1] = ACTIONS(1173), - [aux_sym_local_command_token1] = ACTIONS(1173), - [aux_sym_local_forward_token1] = ACTIONS(1173), - [aux_sym_log_level_token1] = ACTIONS(1173), - [aux_sym_log_verbose_token1] = ACTIONS(1173), - [aux_sym_macs_token1] = ACTIONS(1173), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1173), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1173), - [aux_sym_password_authentication_token1] = ACTIONS(1173), - [aux_sym_permit_local_command_token1] = ACTIONS(1173), - [aux_sym_permit_remote_open_token1] = ACTIONS(1173), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1173), - [aux_sym_port_token1] = ACTIONS(1173), - [aux_sym_preferred_authentications_token1] = ACTIONS(1173), - [aux_sym_protocol_token1] = ACTIONS(1173), - [aux_sym_proxy_command_token1] = ACTIONS(1173), - [aux_sym_proxy_jump_token1] = ACTIONS(1173), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1173), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1173), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1173), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1173), - [aux_sym_rekey_limit_token1] = ACTIONS(1173), - [aux_sym_remote_command_token1] = ACTIONS(1173), - [aux_sym_remote_forward_token1] = ACTIONS(1173), - [aux_sym_request_tty_token1] = ACTIONS(1173), - [aux_sym_required_rsa_size_token1] = ACTIONS(1173), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1173), - [aux_sym_security_key_provider_token1] = ACTIONS(1173), - [aux_sym_send_env_token1] = ACTIONS(1173), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1173), - [aux_sym_server_alive_interval_token1] = ACTIONS(1173), - [aux_sym_session_type_token1] = ACTIONS(1173), - [aux_sym_set_env_token1] = ACTIONS(1173), - [aux_sym_stdin_null_token1] = ACTIONS(1173), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1173), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1173), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1173), - [aux_sym_syslog_facility_token1] = ACTIONS(1173), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1173), - [aux_sym_keep_alive_token1] = ACTIONS(1173), - [aux_sym_tunnel_token1] = ACTIONS(1175), - [aux_sym_tunnel_device_token1] = ACTIONS(1173), - [aux_sym_update_host_keys_token1] = ACTIONS(1173), - [aux_sym_use_keychain_token1] = ACTIONS(1173), - [aux_sym_use_roaming_token1] = ACTIONS(1173), - [aux_sym_user_token1] = ACTIONS(1175), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1173), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1173), - [aux_sym_visual_host_key_token1] = ACTIONS(1173), - [aux_sym_xauth_location_token1] = ACTIONS(1173), + [ts_builtin_sym_end] = ACTIONS(1472), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1474), + [aux_sym_match_token1] = ACTIONS(1472), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1472), + [aux_sym_address_family_token1] = ACTIONS(1472), + [aux_sym_batch_mode_token1] = ACTIONS(1472), + [aux_sym_bind_address_token1] = ACTIONS(1472), + [aux_sym_bind_interface_token1] = ACTIONS(1472), + [aux_sym_canonical_domains_token1] = ACTIONS(1472), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1472), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1472), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1472), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1472), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1472), + [aux_sym_certificate_file_token1] = ACTIONS(1472), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1472), + [aux_sym_check_host_ip_token1] = ACTIONS(1472), + [aux_sym_ciphers_token1] = ACTIONS(1472), + [aux_sym_cipher_token1] = ACTIONS(1474), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1472), + [aux_sym_compression_token1] = ACTIONS(1472), + [aux_sym_connection_attempts_token1] = ACTIONS(1472), + [aux_sym_connect_timeout_token1] = ACTIONS(1472), + [aux_sym_control_master_token1] = ACTIONS(1472), + [aux_sym_control_path_token1] = ACTIONS(1472), + [aux_sym_control_persist_token1] = ACTIONS(1472), + [aux_sym_dynamic_forward_token1] = ACTIONS(1472), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1472), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1472), + [aux_sym_escape_char_token1] = ACTIONS(1472), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1472), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1472), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1472), + [aux_sym_forward_agent_token1] = ACTIONS(1472), + [aux_sym_forward_x11_token1] = ACTIONS(1474), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1472), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1472), + [aux_sym_gateway_ports_token1] = ACTIONS(1472), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1472), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1472), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1472), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1472), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1472), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1472), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1472), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1472), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1472), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1472), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1472), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1472), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1472), + [aux_sym_host_key_alias_token1] = ACTIONS(1472), + [aux_sym_hostname_token1] = ACTIONS(1472), + [aux_sym_identities_only_token1] = ACTIONS(1472), + [aux_sym_identity_agent_token1] = ACTIONS(1472), + [aux_sym_identity_file_token1] = ACTIONS(1472), + [aux_sym_ignore_unknown_token1] = ACTIONS(1472), + [aux_sym_include_token1] = ACTIONS(1472), + [aux_sym_ip_qos_token1] = ACTIONS(1472), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1472), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1472), + [aux_sym_kex_algorithms_token1] = ACTIONS(1472), + [aux_sym_known_hosts_command_token1] = ACTIONS(1472), + [aux_sym_local_command_token1] = ACTIONS(1472), + [aux_sym_local_forward_token1] = ACTIONS(1472), + [aux_sym_log_level_token1] = ACTIONS(1472), + [aux_sym_log_verbose_token1] = ACTIONS(1472), + [aux_sym_macs_token1] = ACTIONS(1472), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1472), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1472), + [aux_sym_password_authentication_token1] = ACTIONS(1472), + [aux_sym_permit_local_command_token1] = ACTIONS(1472), + [aux_sym_permit_remote_open_token1] = ACTIONS(1472), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1472), + [aux_sym_port_token1] = ACTIONS(1472), + [aux_sym_preferred_authentications_token1] = ACTIONS(1472), + [aux_sym_protocol_token1] = ACTIONS(1472), + [aux_sym_proxy_command_token1] = ACTIONS(1472), + [aux_sym_proxy_jump_token1] = ACTIONS(1472), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1472), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1472), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1472), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1472), + [aux_sym_rekey_limit_token1] = ACTIONS(1472), + [aux_sym_remote_command_token1] = ACTIONS(1472), + [aux_sym_remote_forward_token1] = ACTIONS(1472), + [aux_sym_request_tty_token1] = ACTIONS(1472), + [aux_sym_required_rsa_size_token1] = ACTIONS(1472), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1472), + [aux_sym_security_key_provider_token1] = ACTIONS(1472), + [aux_sym_send_env_token1] = ACTIONS(1472), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1472), + [aux_sym_server_alive_interval_token1] = ACTIONS(1472), + [aux_sym_session_type_token1] = ACTIONS(1472), + [aux_sym_set_env_token1] = ACTIONS(1472), + [aux_sym_stdin_null_token1] = ACTIONS(1472), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1472), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1472), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1472), + [aux_sym_syslog_facility_token1] = ACTIONS(1472), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1472), + [aux_sym_keep_alive_token1] = ACTIONS(1472), + [aux_sym_tunnel_token1] = ACTIONS(1474), + [aux_sym_tunnel_device_token1] = ACTIONS(1472), + [aux_sym_update_host_keys_token1] = ACTIONS(1472), + [aux_sym_use_keychain_token1] = ACTIONS(1472), + [aux_sym_use_roaming_token1] = ACTIONS(1472), + [aux_sym_user_token1] = ACTIONS(1474), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1472), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1472), + [aux_sym_visual_host_key_token1] = ACTIONS(1472), + [aux_sym_xauth_location_token1] = ACTIONS(1472), }, [668] = { - [ts_builtin_sym_end] = ACTIONS(1179), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1181), - [aux_sym_match_token1] = ACTIONS(1179), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1179), - [aux_sym_address_family_token1] = ACTIONS(1179), - [aux_sym_batch_mode_token1] = ACTIONS(1179), - [aux_sym_bind_address_token1] = ACTIONS(1179), - [aux_sym_bind_interface_token1] = ACTIONS(1179), - [aux_sym_canonical_domains_token1] = ACTIONS(1179), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1179), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1179), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1179), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1179), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1179), - [aux_sym_certificate_file_token1] = ACTIONS(1179), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1179), - [aux_sym_check_host_ip_token1] = ACTIONS(1179), - [aux_sym_ciphers_token1] = ACTIONS(1179), - [aux_sym_cipher_token1] = ACTIONS(1181), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1179), - [aux_sym_compression_token1] = ACTIONS(1179), - [aux_sym_connection_attempts_token1] = ACTIONS(1179), - [aux_sym_connect_timeout_token1] = ACTIONS(1179), - [aux_sym_control_master_token1] = ACTIONS(1179), - [aux_sym_control_path_token1] = ACTIONS(1179), - [aux_sym_control_persist_token1] = ACTIONS(1179), - [aux_sym_dynamic_forward_token1] = ACTIONS(1179), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1179), - [aux_sym_escape_char_token1] = ACTIONS(1179), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1179), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1179), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1179), - [aux_sym_forward_agent_token1] = ACTIONS(1179), - [aux_sym_forward_x11_token1] = ACTIONS(1181), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1179), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1179), - [aux_sym_gateway_ports_token1] = ACTIONS(1179), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1179), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1179), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1179), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1179), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1179), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1179), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1179), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1179), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1179), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1179), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1179), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1179), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1179), - [aux_sym_host_key_alias_token1] = ACTIONS(1179), - [aux_sym_hostname_token1] = ACTIONS(1179), - [aux_sym_identities_only_token1] = ACTIONS(1179), - [aux_sym_identity_agent_token1] = ACTIONS(1179), - [aux_sym_identity_file_token1] = ACTIONS(1179), - [aux_sym_ignore_unknown_token1] = ACTIONS(1179), - [aux_sym_include_token1] = ACTIONS(1179), - [aux_sym_ip_qos_token1] = ACTIONS(1179), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1179), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1179), - [aux_sym_kex_algorithms_token1] = ACTIONS(1179), - [aux_sym_known_hosts_command_token1] = ACTIONS(1179), - [aux_sym_local_command_token1] = ACTIONS(1179), - [aux_sym_local_forward_token1] = ACTIONS(1179), - [aux_sym_log_level_token1] = ACTIONS(1179), - [aux_sym_log_verbose_token1] = ACTIONS(1179), - [aux_sym_macs_token1] = ACTIONS(1179), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1179), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1179), - [aux_sym_password_authentication_token1] = ACTIONS(1179), - [aux_sym_permit_local_command_token1] = ACTIONS(1179), - [aux_sym_permit_remote_open_token1] = ACTIONS(1179), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1179), - [aux_sym_port_token1] = ACTIONS(1179), - [aux_sym_preferred_authentications_token1] = ACTIONS(1179), - [aux_sym_protocol_token1] = ACTIONS(1179), - [aux_sym_proxy_command_token1] = ACTIONS(1179), - [aux_sym_proxy_jump_token1] = ACTIONS(1179), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1179), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1179), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1179), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1179), - [aux_sym_rekey_limit_token1] = ACTIONS(1179), - [aux_sym_remote_command_token1] = ACTIONS(1179), - [aux_sym_remote_forward_token1] = ACTIONS(1179), - [aux_sym_request_tty_token1] = ACTIONS(1179), - [aux_sym_required_rsa_size_token1] = ACTIONS(1179), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1179), - [aux_sym_security_key_provider_token1] = ACTIONS(1179), - [aux_sym_send_env_token1] = ACTIONS(1179), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1179), - [aux_sym_server_alive_interval_token1] = ACTIONS(1179), - [aux_sym_session_type_token1] = ACTIONS(1179), - [aux_sym_set_env_token1] = ACTIONS(1179), - [aux_sym_stdin_null_token1] = ACTIONS(1179), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1179), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1179), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1179), - [aux_sym_syslog_facility_token1] = ACTIONS(1179), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1179), - [aux_sym_keep_alive_token1] = ACTIONS(1179), - [aux_sym_tunnel_token1] = ACTIONS(1181), - [aux_sym_tunnel_device_token1] = ACTIONS(1179), - [aux_sym_update_host_keys_token1] = ACTIONS(1179), - [aux_sym_use_keychain_token1] = ACTIONS(1179), - [aux_sym_use_roaming_token1] = ACTIONS(1179), - [aux_sym_user_token1] = ACTIONS(1181), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1179), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1179), - [aux_sym_visual_host_key_token1] = ACTIONS(1179), - [aux_sym_xauth_location_token1] = ACTIONS(1179), + [ts_builtin_sym_end] = ACTIONS(602), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(604), + [aux_sym_match_token1] = ACTIONS(602), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(602), + [aux_sym_address_family_token1] = ACTIONS(602), + [aux_sym_batch_mode_token1] = ACTIONS(602), + [aux_sym_bind_address_token1] = ACTIONS(602), + [aux_sym_bind_interface_token1] = ACTIONS(602), + [aux_sym_canonical_domains_token1] = ACTIONS(602), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(602), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(602), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(602), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(602), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(602), + [aux_sym_certificate_file_token1] = ACTIONS(602), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(602), + [aux_sym_check_host_ip_token1] = ACTIONS(602), + [aux_sym_ciphers_token1] = ACTIONS(602), + [aux_sym_cipher_token1] = ACTIONS(604), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(602), + [aux_sym_compression_token1] = ACTIONS(602), + [aux_sym_connection_attempts_token1] = ACTIONS(602), + [aux_sym_connect_timeout_token1] = ACTIONS(602), + [aux_sym_control_master_token1] = ACTIONS(602), + [aux_sym_control_path_token1] = ACTIONS(602), + [aux_sym_control_persist_token1] = ACTIONS(602), + [aux_sym_dynamic_forward_token1] = ACTIONS(602), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(602), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(602), + [aux_sym_escape_char_token1] = ACTIONS(602), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(602), + [aux_sym_fingerprint_hash_token1] = ACTIONS(602), + [aux_sym_fork_after_authentication_token1] = ACTIONS(602), + [aux_sym_forward_agent_token1] = ACTIONS(602), + [aux_sym_forward_x11_token1] = ACTIONS(604), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(602), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(602), + [aux_sym_gateway_ports_token1] = ACTIONS(602), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(602), + [aux_sym_gssapi_authentication_token1] = ACTIONS(602), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(602), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(602), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(602), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(602), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(602), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(602), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(602), + [aux_sym_hash_known_hosts_token1] = ACTIONS(602), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(602), + [aux_sym_hostbased_authentication_token1] = ACTIONS(602), + [aux_sym_host_key_algorithms_token1] = ACTIONS(602), + [aux_sym_host_key_alias_token1] = ACTIONS(602), + [aux_sym_hostname_token1] = ACTIONS(602), + [aux_sym_identities_only_token1] = ACTIONS(602), + [aux_sym_identity_agent_token1] = ACTIONS(602), + [aux_sym_identity_file_token1] = ACTIONS(602), + [aux_sym_ignore_unknown_token1] = ACTIONS(602), + [aux_sym_include_token1] = ACTIONS(602), + [aux_sym_ip_qos_token1] = ACTIONS(602), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(602), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(602), + [aux_sym_kex_algorithms_token1] = ACTIONS(602), + [aux_sym_known_hosts_command_token1] = ACTIONS(602), + [aux_sym_local_command_token1] = ACTIONS(602), + [aux_sym_local_forward_token1] = ACTIONS(602), + [aux_sym_log_level_token1] = ACTIONS(602), + [aux_sym_log_verbose_token1] = ACTIONS(602), + [aux_sym_macs_token1] = ACTIONS(602), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(602), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(602), + [aux_sym_password_authentication_token1] = ACTIONS(602), + [aux_sym_permit_local_command_token1] = ACTIONS(602), + [aux_sym_permit_remote_open_token1] = ACTIONS(602), + [aux_sym_pkcs11_provider_token1] = ACTIONS(602), + [aux_sym_port_token1] = ACTIONS(602), + [aux_sym_preferred_authentications_token1] = ACTIONS(602), + [aux_sym_protocol_token1] = ACTIONS(602), + [aux_sym_proxy_command_token1] = ACTIONS(602), + [aux_sym_proxy_jump_token1] = ACTIONS(602), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(602), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(602), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(602), + [aux_sym_pubkey_authentication_token1] = ACTIONS(602), + [aux_sym_rekey_limit_token1] = ACTIONS(602), + [aux_sym_remote_command_token1] = ACTIONS(602), + [aux_sym_remote_forward_token1] = ACTIONS(602), + [aux_sym_request_tty_token1] = ACTIONS(602), + [aux_sym_required_rsa_size_token1] = ACTIONS(602), + [aux_sym_revoked_host_keys_token1] = ACTIONS(602), + [aux_sym_security_key_provider_token1] = ACTIONS(602), + [aux_sym_send_env_token1] = ACTIONS(602), + [aux_sym_server_alive_count_max_token1] = ACTIONS(602), + [aux_sym_server_alive_interval_token1] = ACTIONS(602), + [aux_sym_session_type_token1] = ACTIONS(602), + [aux_sym_set_env_token1] = ACTIONS(602), + [aux_sym_stdin_null_token1] = ACTIONS(602), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(602), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(602), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(602), + [aux_sym_syslog_facility_token1] = ACTIONS(602), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(602), + [aux_sym_keep_alive_token1] = ACTIONS(602), + [aux_sym_tunnel_token1] = ACTIONS(604), + [aux_sym_tunnel_device_token1] = ACTIONS(602), + [aux_sym_update_host_keys_token1] = ACTIONS(602), + [aux_sym_use_keychain_token1] = ACTIONS(602), + [aux_sym_use_roaming_token1] = ACTIONS(602), + [aux_sym_user_token1] = ACTIONS(604), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(602), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(602), + [aux_sym_visual_host_key_token1] = ACTIONS(602), + [aux_sym_xauth_location_token1] = ACTIONS(602), }, [669] = { - [ts_builtin_sym_end] = ACTIONS(1881), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1883), - [aux_sym_match_token1] = ACTIONS(1881), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1881), - [aux_sym_address_family_token1] = ACTIONS(1881), - [aux_sym_batch_mode_token1] = ACTIONS(1881), - [aux_sym_bind_address_token1] = ACTIONS(1881), - [aux_sym_bind_interface_token1] = ACTIONS(1881), - [aux_sym_canonical_domains_token1] = ACTIONS(1881), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1881), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1881), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1881), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1881), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1881), - [aux_sym_certificate_file_token1] = ACTIONS(1881), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1881), - [aux_sym_check_host_ip_token1] = ACTIONS(1881), - [aux_sym_ciphers_token1] = ACTIONS(1881), - [aux_sym_cipher_token1] = ACTIONS(1883), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1881), - [aux_sym_compression_token1] = ACTIONS(1881), - [aux_sym_connection_attempts_token1] = ACTIONS(1881), - [aux_sym_connect_timeout_token1] = ACTIONS(1881), - [aux_sym_control_master_token1] = ACTIONS(1881), - [aux_sym_control_path_token1] = ACTIONS(1881), - [aux_sym_control_persist_token1] = ACTIONS(1881), - [aux_sym_dynamic_forward_token1] = ACTIONS(1881), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1881), - [aux_sym_escape_char_token1] = ACTIONS(1881), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1881), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1881), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1881), - [aux_sym_forward_agent_token1] = ACTIONS(1881), - [aux_sym_forward_x11_token1] = ACTIONS(1883), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1881), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1881), - [aux_sym_gateway_ports_token1] = ACTIONS(1881), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1881), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1881), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1881), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1881), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1881), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1881), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1881), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1881), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1881), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1881), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1881), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1881), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1881), - [aux_sym_host_key_alias_token1] = ACTIONS(1881), - [aux_sym_hostname_token1] = ACTIONS(1881), - [aux_sym_identities_only_token1] = ACTIONS(1881), - [aux_sym_identity_agent_token1] = ACTIONS(1881), - [aux_sym_identity_file_token1] = ACTIONS(1881), - [aux_sym_ignore_unknown_token1] = ACTIONS(1881), - [aux_sym_include_token1] = ACTIONS(1881), - [aux_sym_ip_qos_token1] = ACTIONS(1881), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1881), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1881), - [aux_sym_kex_algorithms_token1] = ACTIONS(1881), - [aux_sym_known_hosts_command_token1] = ACTIONS(1881), - [aux_sym_local_command_token1] = ACTIONS(1881), - [aux_sym_local_forward_token1] = ACTIONS(1881), - [aux_sym_log_level_token1] = ACTIONS(1881), - [aux_sym_log_verbose_token1] = ACTIONS(1881), - [aux_sym_macs_token1] = ACTIONS(1881), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1881), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1881), - [aux_sym_password_authentication_token1] = ACTIONS(1881), - [aux_sym_permit_local_command_token1] = ACTIONS(1881), - [aux_sym_permit_remote_open_token1] = ACTIONS(1881), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1881), - [aux_sym_port_token1] = ACTIONS(1881), - [aux_sym_preferred_authentications_token1] = ACTIONS(1881), - [aux_sym_protocol_token1] = ACTIONS(1881), - [aux_sym_proxy_command_token1] = ACTIONS(1881), - [aux_sym_proxy_jump_token1] = ACTIONS(1881), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1881), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1881), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1881), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1881), - [aux_sym_rekey_limit_token1] = ACTIONS(1881), - [aux_sym_remote_command_token1] = ACTIONS(1881), - [aux_sym_remote_forward_token1] = ACTIONS(1881), - [aux_sym_request_tty_token1] = ACTIONS(1881), - [aux_sym_required_rsa_size_token1] = ACTIONS(1881), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1881), - [aux_sym_security_key_provider_token1] = ACTIONS(1881), - [aux_sym_send_env_token1] = ACTIONS(1881), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1881), - [aux_sym_server_alive_interval_token1] = ACTIONS(1881), - [aux_sym_session_type_token1] = ACTIONS(1881), - [aux_sym_set_env_token1] = ACTIONS(1881), - [aux_sym_stdin_null_token1] = ACTIONS(1881), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1881), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1881), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1881), - [aux_sym_syslog_facility_token1] = ACTIONS(1881), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1881), - [aux_sym_keep_alive_token1] = ACTIONS(1881), - [aux_sym_tunnel_token1] = ACTIONS(1883), - [aux_sym_tunnel_device_token1] = ACTIONS(1881), - [aux_sym_update_host_keys_token1] = ACTIONS(1881), - [aux_sym_use_keychain_token1] = ACTIONS(1881), - [aux_sym_use_roaming_token1] = ACTIONS(1881), - [aux_sym_user_token1] = ACTIONS(1883), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1881), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1881), - [aux_sym_visual_host_key_token1] = ACTIONS(1881), - [aux_sym_xauth_location_token1] = ACTIONS(1881), + [ts_builtin_sym_end] = ACTIONS(860), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(862), + [aux_sym_match_token1] = ACTIONS(860), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(860), + [aux_sym_address_family_token1] = ACTIONS(860), + [aux_sym_batch_mode_token1] = ACTIONS(860), + [aux_sym_bind_address_token1] = ACTIONS(860), + [aux_sym_bind_interface_token1] = ACTIONS(860), + [aux_sym_canonical_domains_token1] = ACTIONS(860), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(860), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(860), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(860), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(860), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(860), + [aux_sym_certificate_file_token1] = ACTIONS(860), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(860), + [aux_sym_check_host_ip_token1] = ACTIONS(860), + [aux_sym_ciphers_token1] = ACTIONS(860), + [aux_sym_cipher_token1] = ACTIONS(862), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(860), + [aux_sym_compression_token1] = ACTIONS(860), + [aux_sym_connection_attempts_token1] = ACTIONS(860), + [aux_sym_connect_timeout_token1] = ACTIONS(860), + [aux_sym_control_master_token1] = ACTIONS(860), + [aux_sym_control_path_token1] = ACTIONS(860), + [aux_sym_control_persist_token1] = ACTIONS(860), + [aux_sym_dynamic_forward_token1] = ACTIONS(860), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(860), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(860), + [aux_sym_escape_char_token1] = ACTIONS(860), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(860), + [aux_sym_fingerprint_hash_token1] = ACTIONS(860), + [aux_sym_fork_after_authentication_token1] = ACTIONS(860), + [aux_sym_forward_agent_token1] = ACTIONS(860), + [aux_sym_forward_x11_token1] = ACTIONS(862), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(860), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(860), + [aux_sym_gateway_ports_token1] = ACTIONS(860), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(860), + [aux_sym_gssapi_authentication_token1] = ACTIONS(860), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(860), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(860), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(860), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(860), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(860), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(860), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(860), + [aux_sym_hash_known_hosts_token1] = ACTIONS(860), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(860), + [aux_sym_hostbased_authentication_token1] = ACTIONS(860), + [aux_sym_host_key_algorithms_token1] = ACTIONS(860), + [aux_sym_host_key_alias_token1] = ACTIONS(860), + [aux_sym_hostname_token1] = ACTIONS(860), + [aux_sym_identities_only_token1] = ACTIONS(860), + [aux_sym_identity_agent_token1] = ACTIONS(860), + [aux_sym_identity_file_token1] = ACTIONS(860), + [aux_sym_ignore_unknown_token1] = ACTIONS(860), + [aux_sym_include_token1] = ACTIONS(860), + [aux_sym_ip_qos_token1] = ACTIONS(860), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(860), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(860), + [aux_sym_kex_algorithms_token1] = ACTIONS(860), + [aux_sym_known_hosts_command_token1] = ACTIONS(860), + [aux_sym_local_command_token1] = ACTIONS(860), + [aux_sym_local_forward_token1] = ACTIONS(860), + [aux_sym_log_level_token1] = ACTIONS(860), + [aux_sym_log_verbose_token1] = ACTIONS(860), + [aux_sym_macs_token1] = ACTIONS(860), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(860), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(860), + [aux_sym_password_authentication_token1] = ACTIONS(860), + [aux_sym_permit_local_command_token1] = ACTIONS(860), + [aux_sym_permit_remote_open_token1] = ACTIONS(860), + [aux_sym_pkcs11_provider_token1] = ACTIONS(860), + [aux_sym_port_token1] = ACTIONS(860), + [aux_sym_preferred_authentications_token1] = ACTIONS(860), + [aux_sym_protocol_token1] = ACTIONS(860), + [aux_sym_proxy_command_token1] = ACTIONS(860), + [aux_sym_proxy_jump_token1] = ACTIONS(860), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(860), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(860), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(860), + [aux_sym_pubkey_authentication_token1] = ACTIONS(860), + [aux_sym_rekey_limit_token1] = ACTIONS(860), + [aux_sym_remote_command_token1] = ACTIONS(860), + [aux_sym_remote_forward_token1] = ACTIONS(860), + [aux_sym_request_tty_token1] = ACTIONS(860), + [aux_sym_required_rsa_size_token1] = ACTIONS(860), + [aux_sym_revoked_host_keys_token1] = ACTIONS(860), + [aux_sym_security_key_provider_token1] = ACTIONS(860), + [aux_sym_send_env_token1] = ACTIONS(860), + [aux_sym_server_alive_count_max_token1] = ACTIONS(860), + [aux_sym_server_alive_interval_token1] = ACTIONS(860), + [aux_sym_session_type_token1] = ACTIONS(860), + [aux_sym_set_env_token1] = ACTIONS(860), + [aux_sym_stdin_null_token1] = ACTIONS(860), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(860), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(860), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(860), + [aux_sym_syslog_facility_token1] = ACTIONS(860), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(860), + [aux_sym_keep_alive_token1] = ACTIONS(860), + [aux_sym_tunnel_token1] = ACTIONS(862), + [aux_sym_tunnel_device_token1] = ACTIONS(860), + [aux_sym_update_host_keys_token1] = ACTIONS(860), + [aux_sym_use_keychain_token1] = ACTIONS(860), + [aux_sym_use_roaming_token1] = ACTIONS(860), + [aux_sym_user_token1] = ACTIONS(862), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(860), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(860), + [aux_sym_visual_host_key_token1] = ACTIONS(860), + [aux_sym_xauth_location_token1] = ACTIONS(860), }, [670] = { - [ts_builtin_sym_end] = ACTIONS(1185), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1187), - [aux_sym_match_token1] = ACTIONS(1185), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1185), - [aux_sym_address_family_token1] = ACTIONS(1185), - [aux_sym_batch_mode_token1] = ACTIONS(1185), - [aux_sym_bind_address_token1] = ACTIONS(1185), - [aux_sym_bind_interface_token1] = ACTIONS(1185), - [aux_sym_canonical_domains_token1] = ACTIONS(1185), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1185), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1185), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1185), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1185), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1185), - [aux_sym_certificate_file_token1] = ACTIONS(1185), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1185), - [aux_sym_check_host_ip_token1] = ACTIONS(1185), - [aux_sym_ciphers_token1] = ACTIONS(1185), - [aux_sym_cipher_token1] = ACTIONS(1187), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1185), - [aux_sym_compression_token1] = ACTIONS(1185), - [aux_sym_connection_attempts_token1] = ACTIONS(1185), - [aux_sym_connect_timeout_token1] = ACTIONS(1185), - [aux_sym_control_master_token1] = ACTIONS(1185), - [aux_sym_control_path_token1] = ACTIONS(1185), - [aux_sym_control_persist_token1] = ACTIONS(1185), - [aux_sym_dynamic_forward_token1] = ACTIONS(1185), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1185), - [aux_sym_escape_char_token1] = ACTIONS(1185), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1185), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1185), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1185), - [aux_sym_forward_agent_token1] = ACTIONS(1185), - [aux_sym_forward_x11_token1] = ACTIONS(1187), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1185), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1185), - [aux_sym_gateway_ports_token1] = ACTIONS(1185), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1185), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1185), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1185), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1185), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1185), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1185), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1185), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1185), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1185), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1185), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1185), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1185), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1185), - [aux_sym_host_key_alias_token1] = ACTIONS(1185), - [aux_sym_hostname_token1] = ACTIONS(1185), - [aux_sym_identities_only_token1] = ACTIONS(1185), - [aux_sym_identity_agent_token1] = ACTIONS(1185), - [aux_sym_identity_file_token1] = ACTIONS(1185), - [aux_sym_ignore_unknown_token1] = ACTIONS(1185), - [aux_sym_include_token1] = ACTIONS(1185), - [aux_sym_ip_qos_token1] = ACTIONS(1185), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1185), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1185), - [aux_sym_kex_algorithms_token1] = ACTIONS(1185), - [aux_sym_known_hosts_command_token1] = ACTIONS(1185), - [aux_sym_local_command_token1] = ACTIONS(1185), - [aux_sym_local_forward_token1] = ACTIONS(1185), - [aux_sym_log_level_token1] = ACTIONS(1185), - [aux_sym_log_verbose_token1] = ACTIONS(1185), - [aux_sym_macs_token1] = ACTIONS(1185), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1185), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1185), - [aux_sym_password_authentication_token1] = ACTIONS(1185), - [aux_sym_permit_local_command_token1] = ACTIONS(1185), - [aux_sym_permit_remote_open_token1] = ACTIONS(1185), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1185), - [aux_sym_port_token1] = ACTIONS(1185), - [aux_sym_preferred_authentications_token1] = ACTIONS(1185), - [aux_sym_protocol_token1] = ACTIONS(1185), - [aux_sym_proxy_command_token1] = ACTIONS(1185), - [aux_sym_proxy_jump_token1] = ACTIONS(1185), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1185), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1185), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1185), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1185), - [aux_sym_rekey_limit_token1] = ACTIONS(1185), - [aux_sym_remote_command_token1] = ACTIONS(1185), - [aux_sym_remote_forward_token1] = ACTIONS(1185), - [aux_sym_request_tty_token1] = ACTIONS(1185), - [aux_sym_required_rsa_size_token1] = ACTIONS(1185), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1185), - [aux_sym_security_key_provider_token1] = ACTIONS(1185), - [aux_sym_send_env_token1] = ACTIONS(1185), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1185), - [aux_sym_server_alive_interval_token1] = ACTIONS(1185), - [aux_sym_session_type_token1] = ACTIONS(1185), - [aux_sym_set_env_token1] = ACTIONS(1185), - [aux_sym_stdin_null_token1] = ACTIONS(1185), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1185), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1185), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1185), - [aux_sym_syslog_facility_token1] = ACTIONS(1185), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1185), - [aux_sym_keep_alive_token1] = ACTIONS(1185), - [aux_sym_tunnel_token1] = ACTIONS(1187), - [aux_sym_tunnel_device_token1] = ACTIONS(1185), - [aux_sym_update_host_keys_token1] = ACTIONS(1185), - [aux_sym_use_keychain_token1] = ACTIONS(1185), - [aux_sym_use_roaming_token1] = ACTIONS(1185), - [aux_sym_user_token1] = ACTIONS(1187), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1185), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1185), - [aux_sym_visual_host_key_token1] = ACTIONS(1185), - [aux_sym_xauth_location_token1] = ACTIONS(1185), + [ts_builtin_sym_end] = ACTIONS(608), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(610), + [aux_sym_match_token1] = ACTIONS(608), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(608), + [aux_sym_address_family_token1] = ACTIONS(608), + [aux_sym_batch_mode_token1] = ACTIONS(608), + [aux_sym_bind_address_token1] = ACTIONS(608), + [aux_sym_bind_interface_token1] = ACTIONS(608), + [aux_sym_canonical_domains_token1] = ACTIONS(608), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(608), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(608), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(608), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(608), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(608), + [aux_sym_certificate_file_token1] = ACTIONS(608), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(608), + [aux_sym_check_host_ip_token1] = ACTIONS(608), + [aux_sym_ciphers_token1] = ACTIONS(608), + [aux_sym_cipher_token1] = ACTIONS(610), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(608), + [aux_sym_compression_token1] = ACTIONS(608), + [aux_sym_connection_attempts_token1] = ACTIONS(608), + [aux_sym_connect_timeout_token1] = ACTIONS(608), + [aux_sym_control_master_token1] = ACTIONS(608), + [aux_sym_control_path_token1] = ACTIONS(608), + [aux_sym_control_persist_token1] = ACTIONS(608), + [aux_sym_dynamic_forward_token1] = ACTIONS(608), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(608), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(608), + [aux_sym_escape_char_token1] = ACTIONS(608), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(608), + [aux_sym_fingerprint_hash_token1] = ACTIONS(608), + [aux_sym_fork_after_authentication_token1] = ACTIONS(608), + [aux_sym_forward_agent_token1] = ACTIONS(608), + [aux_sym_forward_x11_token1] = ACTIONS(610), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(608), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(608), + [aux_sym_gateway_ports_token1] = ACTIONS(608), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(608), + [aux_sym_gssapi_authentication_token1] = ACTIONS(608), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(608), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(608), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(608), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(608), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(608), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(608), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(608), + [aux_sym_hash_known_hosts_token1] = ACTIONS(608), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(608), + [aux_sym_hostbased_authentication_token1] = ACTIONS(608), + [aux_sym_host_key_algorithms_token1] = ACTIONS(608), + [aux_sym_host_key_alias_token1] = ACTIONS(608), + [aux_sym_hostname_token1] = ACTIONS(608), + [aux_sym_identities_only_token1] = ACTIONS(608), + [aux_sym_identity_agent_token1] = ACTIONS(608), + [aux_sym_identity_file_token1] = ACTIONS(608), + [aux_sym_ignore_unknown_token1] = ACTIONS(608), + [aux_sym_include_token1] = ACTIONS(608), + [aux_sym_ip_qos_token1] = ACTIONS(608), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(608), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(608), + [aux_sym_kex_algorithms_token1] = ACTIONS(608), + [aux_sym_known_hosts_command_token1] = ACTIONS(608), + [aux_sym_local_command_token1] = ACTIONS(608), + [aux_sym_local_forward_token1] = ACTIONS(608), + [aux_sym_log_level_token1] = ACTIONS(608), + [aux_sym_log_verbose_token1] = ACTIONS(608), + [aux_sym_macs_token1] = ACTIONS(608), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(608), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(608), + [aux_sym_password_authentication_token1] = ACTIONS(608), + [aux_sym_permit_local_command_token1] = ACTIONS(608), + [aux_sym_permit_remote_open_token1] = ACTIONS(608), + [aux_sym_pkcs11_provider_token1] = ACTIONS(608), + [aux_sym_port_token1] = ACTIONS(608), + [aux_sym_preferred_authentications_token1] = ACTIONS(608), + [aux_sym_protocol_token1] = ACTIONS(608), + [aux_sym_proxy_command_token1] = ACTIONS(608), + [aux_sym_proxy_jump_token1] = ACTIONS(608), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(608), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(608), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(608), + [aux_sym_pubkey_authentication_token1] = ACTIONS(608), + [aux_sym_rekey_limit_token1] = ACTIONS(608), + [aux_sym_remote_command_token1] = ACTIONS(608), + [aux_sym_remote_forward_token1] = ACTIONS(608), + [aux_sym_request_tty_token1] = ACTIONS(608), + [aux_sym_required_rsa_size_token1] = ACTIONS(608), + [aux_sym_revoked_host_keys_token1] = ACTIONS(608), + [aux_sym_security_key_provider_token1] = ACTIONS(608), + [aux_sym_send_env_token1] = ACTIONS(608), + [aux_sym_server_alive_count_max_token1] = ACTIONS(608), + [aux_sym_server_alive_interval_token1] = ACTIONS(608), + [aux_sym_session_type_token1] = ACTIONS(608), + [aux_sym_set_env_token1] = ACTIONS(608), + [aux_sym_stdin_null_token1] = ACTIONS(608), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(608), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(608), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(608), + [aux_sym_syslog_facility_token1] = ACTIONS(608), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(608), + [aux_sym_keep_alive_token1] = ACTIONS(608), + [aux_sym_tunnel_token1] = ACTIONS(610), + [aux_sym_tunnel_device_token1] = ACTIONS(608), + [aux_sym_update_host_keys_token1] = ACTIONS(608), + [aux_sym_use_keychain_token1] = ACTIONS(608), + [aux_sym_use_roaming_token1] = ACTIONS(608), + [aux_sym_user_token1] = ACTIONS(610), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(608), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(608), + [aux_sym_visual_host_key_token1] = ACTIONS(608), + [aux_sym_xauth_location_token1] = ACTIONS(608), }, [671] = { - [ts_builtin_sym_end] = ACTIONS(1191), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1193), - [aux_sym_match_token1] = ACTIONS(1191), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1191), - [aux_sym_address_family_token1] = ACTIONS(1191), - [aux_sym_batch_mode_token1] = ACTIONS(1191), - [aux_sym_bind_address_token1] = ACTIONS(1191), - [aux_sym_bind_interface_token1] = ACTIONS(1191), - [aux_sym_canonical_domains_token1] = ACTIONS(1191), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1191), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1191), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1191), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1191), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1191), - [aux_sym_certificate_file_token1] = ACTIONS(1191), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1191), - [aux_sym_check_host_ip_token1] = ACTIONS(1191), - [aux_sym_ciphers_token1] = ACTIONS(1191), - [aux_sym_cipher_token1] = ACTIONS(1193), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1191), - [aux_sym_compression_token1] = ACTIONS(1191), - [aux_sym_connection_attempts_token1] = ACTIONS(1191), - [aux_sym_connect_timeout_token1] = ACTIONS(1191), - [aux_sym_control_master_token1] = ACTIONS(1191), - [aux_sym_control_path_token1] = ACTIONS(1191), - [aux_sym_control_persist_token1] = ACTIONS(1191), - [aux_sym_dynamic_forward_token1] = ACTIONS(1191), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1191), - [aux_sym_escape_char_token1] = ACTIONS(1191), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1191), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1191), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1191), - [aux_sym_forward_agent_token1] = ACTIONS(1191), - [aux_sym_forward_x11_token1] = ACTIONS(1193), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1191), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1191), - [aux_sym_gateway_ports_token1] = ACTIONS(1191), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1191), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1191), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1191), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1191), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1191), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1191), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1191), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1191), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1191), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1191), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1191), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1191), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1191), - [aux_sym_host_key_alias_token1] = ACTIONS(1191), - [aux_sym_hostname_token1] = ACTIONS(1191), - [aux_sym_identities_only_token1] = ACTIONS(1191), - [aux_sym_identity_agent_token1] = ACTIONS(1191), - [aux_sym_identity_file_token1] = ACTIONS(1191), - [aux_sym_ignore_unknown_token1] = ACTIONS(1191), - [aux_sym_include_token1] = ACTIONS(1191), - [aux_sym_ip_qos_token1] = ACTIONS(1191), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1191), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1191), - [aux_sym_kex_algorithms_token1] = ACTIONS(1191), - [aux_sym_known_hosts_command_token1] = ACTIONS(1191), - [aux_sym_local_command_token1] = ACTIONS(1191), - [aux_sym_local_forward_token1] = ACTIONS(1191), - [aux_sym_log_level_token1] = ACTIONS(1191), - [aux_sym_log_verbose_token1] = ACTIONS(1191), - [aux_sym_macs_token1] = ACTIONS(1191), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1191), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1191), - [aux_sym_password_authentication_token1] = ACTIONS(1191), - [aux_sym_permit_local_command_token1] = ACTIONS(1191), - [aux_sym_permit_remote_open_token1] = ACTIONS(1191), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1191), - [aux_sym_port_token1] = ACTIONS(1191), - [aux_sym_preferred_authentications_token1] = ACTIONS(1191), - [aux_sym_protocol_token1] = ACTIONS(1191), - [aux_sym_proxy_command_token1] = ACTIONS(1191), - [aux_sym_proxy_jump_token1] = ACTIONS(1191), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1191), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1191), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1191), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1191), - [aux_sym_rekey_limit_token1] = ACTIONS(1191), - [aux_sym_remote_command_token1] = ACTIONS(1191), - [aux_sym_remote_forward_token1] = ACTIONS(1191), - [aux_sym_request_tty_token1] = ACTIONS(1191), - [aux_sym_required_rsa_size_token1] = ACTIONS(1191), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1191), - [aux_sym_security_key_provider_token1] = ACTIONS(1191), - [aux_sym_send_env_token1] = ACTIONS(1191), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1191), - [aux_sym_server_alive_interval_token1] = ACTIONS(1191), - [aux_sym_session_type_token1] = ACTIONS(1191), - [aux_sym_set_env_token1] = ACTIONS(1191), - [aux_sym_stdin_null_token1] = ACTIONS(1191), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1191), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1191), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1191), - [aux_sym_syslog_facility_token1] = ACTIONS(1191), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1191), - [aux_sym_keep_alive_token1] = ACTIONS(1191), - [aux_sym_tunnel_token1] = ACTIONS(1193), - [aux_sym_tunnel_device_token1] = ACTIONS(1191), - [aux_sym_update_host_keys_token1] = ACTIONS(1191), - [aux_sym_use_keychain_token1] = ACTIONS(1191), - [aux_sym_use_roaming_token1] = ACTIONS(1191), - [aux_sym_user_token1] = ACTIONS(1193), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1191), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1191), - [aux_sym_visual_host_key_token1] = ACTIONS(1191), - [aux_sym_xauth_location_token1] = ACTIONS(1191), + [ts_builtin_sym_end] = ACTIONS(614), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(616), + [aux_sym_match_token1] = ACTIONS(614), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(614), + [aux_sym_address_family_token1] = ACTIONS(614), + [aux_sym_batch_mode_token1] = ACTIONS(614), + [aux_sym_bind_address_token1] = ACTIONS(614), + [aux_sym_bind_interface_token1] = ACTIONS(614), + [aux_sym_canonical_domains_token1] = ACTIONS(614), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(614), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(614), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(614), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(614), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(614), + [aux_sym_certificate_file_token1] = ACTIONS(614), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(614), + [aux_sym_check_host_ip_token1] = ACTIONS(614), + [aux_sym_ciphers_token1] = ACTIONS(614), + [aux_sym_cipher_token1] = ACTIONS(616), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(614), + [aux_sym_compression_token1] = ACTIONS(614), + [aux_sym_connection_attempts_token1] = ACTIONS(614), + [aux_sym_connect_timeout_token1] = ACTIONS(614), + [aux_sym_control_master_token1] = ACTIONS(614), + [aux_sym_control_path_token1] = ACTIONS(614), + [aux_sym_control_persist_token1] = ACTIONS(614), + [aux_sym_dynamic_forward_token1] = ACTIONS(614), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(614), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(614), + [aux_sym_escape_char_token1] = ACTIONS(614), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(614), + [aux_sym_fingerprint_hash_token1] = ACTIONS(614), + [aux_sym_fork_after_authentication_token1] = ACTIONS(614), + [aux_sym_forward_agent_token1] = ACTIONS(614), + [aux_sym_forward_x11_token1] = ACTIONS(616), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(614), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(614), + [aux_sym_gateway_ports_token1] = ACTIONS(614), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(614), + [aux_sym_gssapi_authentication_token1] = ACTIONS(614), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(614), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(614), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(614), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(614), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(614), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(614), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(614), + [aux_sym_hash_known_hosts_token1] = ACTIONS(614), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(614), + [aux_sym_hostbased_authentication_token1] = ACTIONS(614), + [aux_sym_host_key_algorithms_token1] = ACTIONS(614), + [aux_sym_host_key_alias_token1] = ACTIONS(614), + [aux_sym_hostname_token1] = ACTIONS(614), + [aux_sym_identities_only_token1] = ACTIONS(614), + [aux_sym_identity_agent_token1] = ACTIONS(614), + [aux_sym_identity_file_token1] = ACTIONS(614), + [aux_sym_ignore_unknown_token1] = ACTIONS(614), + [aux_sym_include_token1] = ACTIONS(614), + [aux_sym_ip_qos_token1] = ACTIONS(614), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(614), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(614), + [aux_sym_kex_algorithms_token1] = ACTIONS(614), + [aux_sym_known_hosts_command_token1] = ACTIONS(614), + [aux_sym_local_command_token1] = ACTIONS(614), + [aux_sym_local_forward_token1] = ACTIONS(614), + [aux_sym_log_level_token1] = ACTIONS(614), + [aux_sym_log_verbose_token1] = ACTIONS(614), + [aux_sym_macs_token1] = ACTIONS(614), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(614), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(614), + [aux_sym_password_authentication_token1] = ACTIONS(614), + [aux_sym_permit_local_command_token1] = ACTIONS(614), + [aux_sym_permit_remote_open_token1] = ACTIONS(614), + [aux_sym_pkcs11_provider_token1] = ACTIONS(614), + [aux_sym_port_token1] = ACTIONS(614), + [aux_sym_preferred_authentications_token1] = ACTIONS(614), + [aux_sym_protocol_token1] = ACTIONS(614), + [aux_sym_proxy_command_token1] = ACTIONS(614), + [aux_sym_proxy_jump_token1] = ACTIONS(614), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(614), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(614), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(614), + [aux_sym_pubkey_authentication_token1] = ACTIONS(614), + [aux_sym_rekey_limit_token1] = ACTIONS(614), + [aux_sym_remote_command_token1] = ACTIONS(614), + [aux_sym_remote_forward_token1] = ACTIONS(614), + [aux_sym_request_tty_token1] = ACTIONS(614), + [aux_sym_required_rsa_size_token1] = ACTIONS(614), + [aux_sym_revoked_host_keys_token1] = ACTIONS(614), + [aux_sym_security_key_provider_token1] = ACTIONS(614), + [aux_sym_send_env_token1] = ACTIONS(614), + [aux_sym_server_alive_count_max_token1] = ACTIONS(614), + [aux_sym_server_alive_interval_token1] = ACTIONS(614), + [aux_sym_session_type_token1] = ACTIONS(614), + [aux_sym_set_env_token1] = ACTIONS(614), + [aux_sym_stdin_null_token1] = ACTIONS(614), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(614), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(614), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(614), + [aux_sym_syslog_facility_token1] = ACTIONS(614), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(614), + [aux_sym_keep_alive_token1] = ACTIONS(614), + [aux_sym_tunnel_token1] = ACTIONS(616), + [aux_sym_tunnel_device_token1] = ACTIONS(614), + [aux_sym_update_host_keys_token1] = ACTIONS(614), + [aux_sym_use_keychain_token1] = ACTIONS(614), + [aux_sym_use_roaming_token1] = ACTIONS(614), + [aux_sym_user_token1] = ACTIONS(616), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(614), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(614), + [aux_sym_visual_host_key_token1] = ACTIONS(614), + [aux_sym_xauth_location_token1] = ACTIONS(614), }, [672] = { - [ts_builtin_sym_end] = ACTIONS(1875), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1877), - [aux_sym_match_token1] = ACTIONS(1875), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1875), - [aux_sym_address_family_token1] = ACTIONS(1875), - [aux_sym_batch_mode_token1] = ACTIONS(1875), - [aux_sym_bind_address_token1] = ACTIONS(1875), - [aux_sym_bind_interface_token1] = ACTIONS(1875), - [aux_sym_canonical_domains_token1] = ACTIONS(1875), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1875), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1875), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1875), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1875), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1875), - [aux_sym_certificate_file_token1] = ACTIONS(1875), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1875), - [aux_sym_check_host_ip_token1] = ACTIONS(1875), - [aux_sym_ciphers_token1] = ACTIONS(1875), - [aux_sym_cipher_token1] = ACTIONS(1877), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1875), - [aux_sym_compression_token1] = ACTIONS(1875), - [aux_sym_connection_attempts_token1] = ACTIONS(1875), - [aux_sym_connect_timeout_token1] = ACTIONS(1875), - [aux_sym_control_master_token1] = ACTIONS(1875), - [aux_sym_control_path_token1] = ACTIONS(1875), - [aux_sym_control_persist_token1] = ACTIONS(1875), - [aux_sym_dynamic_forward_token1] = ACTIONS(1875), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1875), - [aux_sym_escape_char_token1] = ACTIONS(1875), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1875), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1875), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1875), - [aux_sym_forward_agent_token1] = ACTIONS(1875), - [aux_sym_forward_x11_token1] = ACTIONS(1877), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1875), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1875), - [aux_sym_gateway_ports_token1] = ACTIONS(1875), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1875), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1875), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1875), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1875), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1875), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1875), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1875), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1875), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1875), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1875), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1875), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1875), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1875), - [aux_sym_host_key_alias_token1] = ACTIONS(1875), - [aux_sym_hostname_token1] = ACTIONS(1875), - [aux_sym_identities_only_token1] = ACTIONS(1875), - [aux_sym_identity_agent_token1] = ACTIONS(1875), - [aux_sym_identity_file_token1] = ACTIONS(1875), - [aux_sym_ignore_unknown_token1] = ACTIONS(1875), - [aux_sym_include_token1] = ACTIONS(1875), - [aux_sym_ip_qos_token1] = ACTIONS(1875), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1875), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1875), - [aux_sym_kex_algorithms_token1] = ACTIONS(1875), - [aux_sym_known_hosts_command_token1] = ACTIONS(1875), - [aux_sym_local_command_token1] = ACTIONS(1875), - [aux_sym_local_forward_token1] = ACTIONS(1875), - [aux_sym_log_level_token1] = ACTIONS(1875), - [aux_sym_log_verbose_token1] = ACTIONS(1875), - [aux_sym_macs_token1] = ACTIONS(1875), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1875), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1875), - [aux_sym_password_authentication_token1] = ACTIONS(1875), - [aux_sym_permit_local_command_token1] = ACTIONS(1875), - [aux_sym_permit_remote_open_token1] = ACTIONS(1875), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1875), - [aux_sym_port_token1] = ACTIONS(1875), - [aux_sym_preferred_authentications_token1] = ACTIONS(1875), - [aux_sym_protocol_token1] = ACTIONS(1875), - [aux_sym_proxy_command_token1] = ACTIONS(1875), - [aux_sym_proxy_jump_token1] = ACTIONS(1875), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1875), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1875), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1875), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1875), - [aux_sym_rekey_limit_token1] = ACTIONS(1875), - [aux_sym_remote_command_token1] = ACTIONS(1875), - [aux_sym_remote_forward_token1] = ACTIONS(1875), - [aux_sym_request_tty_token1] = ACTIONS(1875), - [aux_sym_required_rsa_size_token1] = ACTIONS(1875), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1875), - [aux_sym_security_key_provider_token1] = ACTIONS(1875), - [aux_sym_send_env_token1] = ACTIONS(1875), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1875), - [aux_sym_server_alive_interval_token1] = ACTIONS(1875), - [aux_sym_session_type_token1] = ACTIONS(1875), - [aux_sym_set_env_token1] = ACTIONS(1875), - [aux_sym_stdin_null_token1] = ACTIONS(1875), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1875), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1875), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1875), - [aux_sym_syslog_facility_token1] = ACTIONS(1875), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1875), - [aux_sym_keep_alive_token1] = ACTIONS(1875), - [aux_sym_tunnel_token1] = ACTIONS(1877), - [aux_sym_tunnel_device_token1] = ACTIONS(1875), - [aux_sym_update_host_keys_token1] = ACTIONS(1875), - [aux_sym_use_keychain_token1] = ACTIONS(1875), - [aux_sym_use_roaming_token1] = ACTIONS(1875), - [aux_sym_user_token1] = ACTIONS(1877), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1875), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1875), - [aux_sym_visual_host_key_token1] = ACTIONS(1875), - [aux_sym_xauth_location_token1] = ACTIONS(1875), + [ts_builtin_sym_end] = ACTIONS(620), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(622), + [aux_sym_match_token1] = ACTIONS(620), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(620), + [aux_sym_address_family_token1] = ACTIONS(620), + [aux_sym_batch_mode_token1] = ACTIONS(620), + [aux_sym_bind_address_token1] = ACTIONS(620), + [aux_sym_bind_interface_token1] = ACTIONS(620), + [aux_sym_canonical_domains_token1] = ACTIONS(620), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(620), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(620), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(620), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(620), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(620), + [aux_sym_certificate_file_token1] = ACTIONS(620), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(620), + [aux_sym_check_host_ip_token1] = ACTIONS(620), + [aux_sym_ciphers_token1] = ACTIONS(620), + [aux_sym_cipher_token1] = ACTIONS(622), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(620), + [aux_sym_compression_token1] = ACTIONS(620), + [aux_sym_connection_attempts_token1] = ACTIONS(620), + [aux_sym_connect_timeout_token1] = ACTIONS(620), + [aux_sym_control_master_token1] = ACTIONS(620), + [aux_sym_control_path_token1] = ACTIONS(620), + [aux_sym_control_persist_token1] = ACTIONS(620), + [aux_sym_dynamic_forward_token1] = ACTIONS(620), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(620), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(620), + [aux_sym_escape_char_token1] = ACTIONS(620), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(620), + [aux_sym_fingerprint_hash_token1] = ACTIONS(620), + [aux_sym_fork_after_authentication_token1] = ACTIONS(620), + [aux_sym_forward_agent_token1] = ACTIONS(620), + [aux_sym_forward_x11_token1] = ACTIONS(622), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(620), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(620), + [aux_sym_gateway_ports_token1] = ACTIONS(620), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(620), + [aux_sym_gssapi_authentication_token1] = ACTIONS(620), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(620), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(620), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(620), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(620), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(620), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(620), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(620), + [aux_sym_hash_known_hosts_token1] = ACTIONS(620), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(620), + [aux_sym_hostbased_authentication_token1] = ACTIONS(620), + [aux_sym_host_key_algorithms_token1] = ACTIONS(620), + [aux_sym_host_key_alias_token1] = ACTIONS(620), + [aux_sym_hostname_token1] = ACTIONS(620), + [aux_sym_identities_only_token1] = ACTIONS(620), + [aux_sym_identity_agent_token1] = ACTIONS(620), + [aux_sym_identity_file_token1] = ACTIONS(620), + [aux_sym_ignore_unknown_token1] = ACTIONS(620), + [aux_sym_include_token1] = ACTIONS(620), + [aux_sym_ip_qos_token1] = ACTIONS(620), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(620), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(620), + [aux_sym_kex_algorithms_token1] = ACTIONS(620), + [aux_sym_known_hosts_command_token1] = ACTIONS(620), + [aux_sym_local_command_token1] = ACTIONS(620), + [aux_sym_local_forward_token1] = ACTIONS(620), + [aux_sym_log_level_token1] = ACTIONS(620), + [aux_sym_log_verbose_token1] = ACTIONS(620), + [aux_sym_macs_token1] = ACTIONS(620), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(620), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(620), + [aux_sym_password_authentication_token1] = ACTIONS(620), + [aux_sym_permit_local_command_token1] = ACTIONS(620), + [aux_sym_permit_remote_open_token1] = ACTIONS(620), + [aux_sym_pkcs11_provider_token1] = ACTIONS(620), + [aux_sym_port_token1] = ACTIONS(620), + [aux_sym_preferred_authentications_token1] = ACTIONS(620), + [aux_sym_protocol_token1] = ACTIONS(620), + [aux_sym_proxy_command_token1] = ACTIONS(620), + [aux_sym_proxy_jump_token1] = ACTIONS(620), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(620), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(620), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(620), + [aux_sym_pubkey_authentication_token1] = ACTIONS(620), + [aux_sym_rekey_limit_token1] = ACTIONS(620), + [aux_sym_remote_command_token1] = ACTIONS(620), + [aux_sym_remote_forward_token1] = ACTIONS(620), + [aux_sym_request_tty_token1] = ACTIONS(620), + [aux_sym_required_rsa_size_token1] = ACTIONS(620), + [aux_sym_revoked_host_keys_token1] = ACTIONS(620), + [aux_sym_security_key_provider_token1] = ACTIONS(620), + [aux_sym_send_env_token1] = ACTIONS(620), + [aux_sym_server_alive_count_max_token1] = ACTIONS(620), + [aux_sym_server_alive_interval_token1] = ACTIONS(620), + [aux_sym_session_type_token1] = ACTIONS(620), + [aux_sym_set_env_token1] = ACTIONS(620), + [aux_sym_stdin_null_token1] = ACTIONS(620), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(620), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(620), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(620), + [aux_sym_syslog_facility_token1] = ACTIONS(620), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(620), + [aux_sym_keep_alive_token1] = ACTIONS(620), + [aux_sym_tunnel_token1] = ACTIONS(622), + [aux_sym_tunnel_device_token1] = ACTIONS(620), + [aux_sym_update_host_keys_token1] = ACTIONS(620), + [aux_sym_use_keychain_token1] = ACTIONS(620), + [aux_sym_use_roaming_token1] = ACTIONS(620), + [aux_sym_user_token1] = ACTIONS(622), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(620), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(620), + [aux_sym_visual_host_key_token1] = ACTIONS(620), + [aux_sym_xauth_location_token1] = ACTIONS(620), }, [673] = { - [ts_builtin_sym_end] = ACTIONS(1197), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1199), - [aux_sym_match_token1] = ACTIONS(1197), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1197), - [aux_sym_address_family_token1] = ACTIONS(1197), - [aux_sym_batch_mode_token1] = ACTIONS(1197), - [aux_sym_bind_address_token1] = ACTIONS(1197), - [aux_sym_bind_interface_token1] = ACTIONS(1197), - [aux_sym_canonical_domains_token1] = ACTIONS(1197), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1197), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1197), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1197), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1197), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1197), - [aux_sym_certificate_file_token1] = ACTIONS(1197), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1197), - [aux_sym_check_host_ip_token1] = ACTIONS(1197), - [aux_sym_ciphers_token1] = ACTIONS(1197), - [aux_sym_cipher_token1] = ACTIONS(1199), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1197), - [aux_sym_compression_token1] = ACTIONS(1197), - [aux_sym_connection_attempts_token1] = ACTIONS(1197), - [aux_sym_connect_timeout_token1] = ACTIONS(1197), - [aux_sym_control_master_token1] = ACTIONS(1197), - [aux_sym_control_path_token1] = ACTIONS(1197), - [aux_sym_control_persist_token1] = ACTIONS(1197), - [aux_sym_dynamic_forward_token1] = ACTIONS(1197), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1197), - [aux_sym_escape_char_token1] = ACTIONS(1197), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1197), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1197), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1197), - [aux_sym_forward_agent_token1] = ACTIONS(1197), - [aux_sym_forward_x11_token1] = ACTIONS(1199), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1197), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1197), - [aux_sym_gateway_ports_token1] = ACTIONS(1197), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1197), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1197), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1197), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1197), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1197), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1197), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1197), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1197), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1197), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1197), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1197), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1197), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1197), - [aux_sym_host_key_alias_token1] = ACTIONS(1197), - [aux_sym_hostname_token1] = ACTIONS(1197), - [aux_sym_identities_only_token1] = ACTIONS(1197), - [aux_sym_identity_agent_token1] = ACTIONS(1197), - [aux_sym_identity_file_token1] = ACTIONS(1197), - [aux_sym_ignore_unknown_token1] = ACTIONS(1197), - [aux_sym_include_token1] = ACTIONS(1197), - [aux_sym_ip_qos_token1] = ACTIONS(1197), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1197), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1197), - [aux_sym_kex_algorithms_token1] = ACTIONS(1197), - [aux_sym_known_hosts_command_token1] = ACTIONS(1197), - [aux_sym_local_command_token1] = ACTIONS(1197), - [aux_sym_local_forward_token1] = ACTIONS(1197), - [aux_sym_log_level_token1] = ACTIONS(1197), - [aux_sym_log_verbose_token1] = ACTIONS(1197), - [aux_sym_macs_token1] = ACTIONS(1197), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1197), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1197), - [aux_sym_password_authentication_token1] = ACTIONS(1197), - [aux_sym_permit_local_command_token1] = ACTIONS(1197), - [aux_sym_permit_remote_open_token1] = ACTIONS(1197), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1197), - [aux_sym_port_token1] = ACTIONS(1197), - [aux_sym_preferred_authentications_token1] = ACTIONS(1197), - [aux_sym_protocol_token1] = ACTIONS(1197), - [aux_sym_proxy_command_token1] = ACTIONS(1197), - [aux_sym_proxy_jump_token1] = ACTIONS(1197), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1197), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1197), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1197), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1197), - [aux_sym_rekey_limit_token1] = ACTIONS(1197), - [aux_sym_remote_command_token1] = ACTIONS(1197), - [aux_sym_remote_forward_token1] = ACTIONS(1197), - [aux_sym_request_tty_token1] = ACTIONS(1197), - [aux_sym_required_rsa_size_token1] = ACTIONS(1197), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1197), - [aux_sym_security_key_provider_token1] = ACTIONS(1197), - [aux_sym_send_env_token1] = ACTIONS(1197), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1197), - [aux_sym_server_alive_interval_token1] = ACTIONS(1197), - [aux_sym_session_type_token1] = ACTIONS(1197), - [aux_sym_set_env_token1] = ACTIONS(1197), - [aux_sym_stdin_null_token1] = ACTIONS(1197), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1197), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1197), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1197), - [aux_sym_syslog_facility_token1] = ACTIONS(1197), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1197), - [aux_sym_keep_alive_token1] = ACTIONS(1197), - [aux_sym_tunnel_token1] = ACTIONS(1199), - [aux_sym_tunnel_device_token1] = ACTIONS(1197), - [aux_sym_update_host_keys_token1] = ACTIONS(1197), - [aux_sym_use_keychain_token1] = ACTIONS(1197), - [aux_sym_use_roaming_token1] = ACTIONS(1197), - [aux_sym_user_token1] = ACTIONS(1199), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1197), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1197), - [aux_sym_visual_host_key_token1] = ACTIONS(1197), - [aux_sym_xauth_location_token1] = ACTIONS(1197), + [ts_builtin_sym_end] = ACTIONS(626), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(628), + [aux_sym_match_token1] = ACTIONS(626), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(626), + [aux_sym_address_family_token1] = ACTIONS(626), + [aux_sym_batch_mode_token1] = ACTIONS(626), + [aux_sym_bind_address_token1] = ACTIONS(626), + [aux_sym_bind_interface_token1] = ACTIONS(626), + [aux_sym_canonical_domains_token1] = ACTIONS(626), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(626), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(626), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(626), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(626), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(626), + [aux_sym_certificate_file_token1] = ACTIONS(626), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(626), + [aux_sym_check_host_ip_token1] = ACTIONS(626), + [aux_sym_ciphers_token1] = ACTIONS(626), + [aux_sym_cipher_token1] = ACTIONS(628), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(626), + [aux_sym_compression_token1] = ACTIONS(626), + [aux_sym_connection_attempts_token1] = ACTIONS(626), + [aux_sym_connect_timeout_token1] = ACTIONS(626), + [aux_sym_control_master_token1] = ACTIONS(626), + [aux_sym_control_path_token1] = ACTIONS(626), + [aux_sym_control_persist_token1] = ACTIONS(626), + [aux_sym_dynamic_forward_token1] = ACTIONS(626), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(626), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(626), + [aux_sym_escape_char_token1] = ACTIONS(626), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(626), + [aux_sym_fingerprint_hash_token1] = ACTIONS(626), + [aux_sym_fork_after_authentication_token1] = ACTIONS(626), + [aux_sym_forward_agent_token1] = ACTIONS(626), + [aux_sym_forward_x11_token1] = ACTIONS(628), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(626), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(626), + [aux_sym_gateway_ports_token1] = ACTIONS(626), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(626), + [aux_sym_gssapi_authentication_token1] = ACTIONS(626), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(626), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(626), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(626), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(626), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(626), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(626), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(626), + [aux_sym_hash_known_hosts_token1] = ACTIONS(626), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(626), + [aux_sym_hostbased_authentication_token1] = ACTIONS(626), + [aux_sym_host_key_algorithms_token1] = ACTIONS(626), + [aux_sym_host_key_alias_token1] = ACTIONS(626), + [aux_sym_hostname_token1] = ACTIONS(626), + [aux_sym_identities_only_token1] = ACTIONS(626), + [aux_sym_identity_agent_token1] = ACTIONS(626), + [aux_sym_identity_file_token1] = ACTIONS(626), + [aux_sym_ignore_unknown_token1] = ACTIONS(626), + [aux_sym_include_token1] = ACTIONS(626), + [aux_sym_ip_qos_token1] = ACTIONS(626), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(626), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(626), + [aux_sym_kex_algorithms_token1] = ACTIONS(626), + [aux_sym_known_hosts_command_token1] = ACTIONS(626), + [aux_sym_local_command_token1] = ACTIONS(626), + [aux_sym_local_forward_token1] = ACTIONS(626), + [aux_sym_log_level_token1] = ACTIONS(626), + [aux_sym_log_verbose_token1] = ACTIONS(626), + [aux_sym_macs_token1] = ACTIONS(626), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(626), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(626), + [aux_sym_password_authentication_token1] = ACTIONS(626), + [aux_sym_permit_local_command_token1] = ACTIONS(626), + [aux_sym_permit_remote_open_token1] = ACTIONS(626), + [aux_sym_pkcs11_provider_token1] = ACTIONS(626), + [aux_sym_port_token1] = ACTIONS(626), + [aux_sym_preferred_authentications_token1] = ACTIONS(626), + [aux_sym_protocol_token1] = ACTIONS(626), + [aux_sym_proxy_command_token1] = ACTIONS(626), + [aux_sym_proxy_jump_token1] = ACTIONS(626), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(626), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(626), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(626), + [aux_sym_pubkey_authentication_token1] = ACTIONS(626), + [aux_sym_rekey_limit_token1] = ACTIONS(626), + [aux_sym_remote_command_token1] = ACTIONS(626), + [aux_sym_remote_forward_token1] = ACTIONS(626), + [aux_sym_request_tty_token1] = ACTIONS(626), + [aux_sym_required_rsa_size_token1] = ACTIONS(626), + [aux_sym_revoked_host_keys_token1] = ACTIONS(626), + [aux_sym_security_key_provider_token1] = ACTIONS(626), + [aux_sym_send_env_token1] = ACTIONS(626), + [aux_sym_server_alive_count_max_token1] = ACTIONS(626), + [aux_sym_server_alive_interval_token1] = ACTIONS(626), + [aux_sym_session_type_token1] = ACTIONS(626), + [aux_sym_set_env_token1] = ACTIONS(626), + [aux_sym_stdin_null_token1] = ACTIONS(626), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(626), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(626), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(626), + [aux_sym_syslog_facility_token1] = ACTIONS(626), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(626), + [aux_sym_keep_alive_token1] = ACTIONS(626), + [aux_sym_tunnel_token1] = ACTIONS(628), + [aux_sym_tunnel_device_token1] = ACTIONS(626), + [aux_sym_update_host_keys_token1] = ACTIONS(626), + [aux_sym_use_keychain_token1] = ACTIONS(626), + [aux_sym_use_roaming_token1] = ACTIONS(626), + [aux_sym_user_token1] = ACTIONS(628), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(626), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(626), + [aux_sym_visual_host_key_token1] = ACTIONS(626), + [aux_sym_xauth_location_token1] = ACTIONS(626), }, [674] = { - [ts_builtin_sym_end] = ACTIONS(1203), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1205), - [aux_sym_match_token1] = ACTIONS(1203), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1203), - [aux_sym_address_family_token1] = ACTIONS(1203), - [aux_sym_batch_mode_token1] = ACTIONS(1203), - [aux_sym_bind_address_token1] = ACTIONS(1203), - [aux_sym_bind_interface_token1] = ACTIONS(1203), - [aux_sym_canonical_domains_token1] = ACTIONS(1203), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1203), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1203), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1203), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1203), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1203), - [aux_sym_certificate_file_token1] = ACTIONS(1203), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1203), - [aux_sym_check_host_ip_token1] = ACTIONS(1203), - [aux_sym_ciphers_token1] = ACTIONS(1203), - [aux_sym_cipher_token1] = ACTIONS(1205), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1203), - [aux_sym_compression_token1] = ACTIONS(1203), - [aux_sym_connection_attempts_token1] = ACTIONS(1203), - [aux_sym_connect_timeout_token1] = ACTIONS(1203), - [aux_sym_control_master_token1] = ACTIONS(1203), - [aux_sym_control_path_token1] = ACTIONS(1203), - [aux_sym_control_persist_token1] = ACTIONS(1203), - [aux_sym_dynamic_forward_token1] = ACTIONS(1203), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1203), - [aux_sym_escape_char_token1] = ACTIONS(1203), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1203), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1203), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1203), - [aux_sym_forward_agent_token1] = ACTIONS(1203), - [aux_sym_forward_x11_token1] = ACTIONS(1205), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1203), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1203), - [aux_sym_gateway_ports_token1] = ACTIONS(1203), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1203), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1203), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1203), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1203), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1203), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1203), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1203), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1203), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1203), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1203), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1203), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1203), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1203), - [aux_sym_host_key_alias_token1] = ACTIONS(1203), - [aux_sym_hostname_token1] = ACTIONS(1203), - [aux_sym_identities_only_token1] = ACTIONS(1203), - [aux_sym_identity_agent_token1] = ACTIONS(1203), - [aux_sym_identity_file_token1] = ACTIONS(1203), - [aux_sym_ignore_unknown_token1] = ACTIONS(1203), - [aux_sym_include_token1] = ACTIONS(1203), - [aux_sym_ip_qos_token1] = ACTIONS(1203), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1203), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1203), - [aux_sym_kex_algorithms_token1] = ACTIONS(1203), - [aux_sym_known_hosts_command_token1] = ACTIONS(1203), - [aux_sym_local_command_token1] = ACTIONS(1203), - [aux_sym_local_forward_token1] = ACTIONS(1203), - [aux_sym_log_level_token1] = ACTIONS(1203), - [aux_sym_log_verbose_token1] = ACTIONS(1203), - [aux_sym_macs_token1] = ACTIONS(1203), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1203), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1203), - [aux_sym_password_authentication_token1] = ACTIONS(1203), - [aux_sym_permit_local_command_token1] = ACTIONS(1203), - [aux_sym_permit_remote_open_token1] = ACTIONS(1203), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1203), - [aux_sym_port_token1] = ACTIONS(1203), - [aux_sym_preferred_authentications_token1] = ACTIONS(1203), - [aux_sym_protocol_token1] = ACTIONS(1203), - [aux_sym_proxy_command_token1] = ACTIONS(1203), - [aux_sym_proxy_jump_token1] = ACTIONS(1203), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1203), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1203), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1203), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1203), - [aux_sym_rekey_limit_token1] = ACTIONS(1203), - [aux_sym_remote_command_token1] = ACTIONS(1203), - [aux_sym_remote_forward_token1] = ACTIONS(1203), - [aux_sym_request_tty_token1] = ACTIONS(1203), - [aux_sym_required_rsa_size_token1] = ACTIONS(1203), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1203), - [aux_sym_security_key_provider_token1] = ACTIONS(1203), - [aux_sym_send_env_token1] = ACTIONS(1203), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1203), - [aux_sym_server_alive_interval_token1] = ACTIONS(1203), - [aux_sym_session_type_token1] = ACTIONS(1203), - [aux_sym_set_env_token1] = ACTIONS(1203), - [aux_sym_stdin_null_token1] = ACTIONS(1203), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1203), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1203), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1203), - [aux_sym_syslog_facility_token1] = ACTIONS(1203), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1203), - [aux_sym_keep_alive_token1] = ACTIONS(1203), - [aux_sym_tunnel_token1] = ACTIONS(1205), - [aux_sym_tunnel_device_token1] = ACTIONS(1203), - [aux_sym_update_host_keys_token1] = ACTIONS(1203), - [aux_sym_use_keychain_token1] = ACTIONS(1203), - [aux_sym_use_roaming_token1] = ACTIONS(1203), - [aux_sym_user_token1] = ACTIONS(1205), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1203), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1203), - [aux_sym_visual_host_key_token1] = ACTIONS(1203), - [aux_sym_xauth_location_token1] = ACTIONS(1203), + [ts_builtin_sym_end] = ACTIONS(1478), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1480), + [aux_sym_match_token1] = ACTIONS(1478), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1478), + [aux_sym_address_family_token1] = ACTIONS(1478), + [aux_sym_batch_mode_token1] = ACTIONS(1478), + [aux_sym_bind_address_token1] = ACTIONS(1478), + [aux_sym_bind_interface_token1] = ACTIONS(1478), + [aux_sym_canonical_domains_token1] = ACTIONS(1478), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1478), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1478), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1478), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1478), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1478), + [aux_sym_certificate_file_token1] = ACTIONS(1478), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1478), + [aux_sym_check_host_ip_token1] = ACTIONS(1478), + [aux_sym_ciphers_token1] = ACTIONS(1478), + [aux_sym_cipher_token1] = ACTIONS(1480), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1478), + [aux_sym_compression_token1] = ACTIONS(1478), + [aux_sym_connection_attempts_token1] = ACTIONS(1478), + [aux_sym_connect_timeout_token1] = ACTIONS(1478), + [aux_sym_control_master_token1] = ACTIONS(1478), + [aux_sym_control_path_token1] = ACTIONS(1478), + [aux_sym_control_persist_token1] = ACTIONS(1478), + [aux_sym_dynamic_forward_token1] = ACTIONS(1478), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1478), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1478), + [aux_sym_escape_char_token1] = ACTIONS(1478), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1478), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1478), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1478), + [aux_sym_forward_agent_token1] = ACTIONS(1478), + [aux_sym_forward_x11_token1] = ACTIONS(1480), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1478), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1478), + [aux_sym_gateway_ports_token1] = ACTIONS(1478), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1478), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1478), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1478), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1478), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1478), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1478), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1478), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1478), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1478), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1478), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1478), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1478), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1478), + [aux_sym_host_key_alias_token1] = ACTIONS(1478), + [aux_sym_hostname_token1] = ACTIONS(1478), + [aux_sym_identities_only_token1] = ACTIONS(1478), + [aux_sym_identity_agent_token1] = ACTIONS(1478), + [aux_sym_identity_file_token1] = ACTIONS(1478), + [aux_sym_ignore_unknown_token1] = ACTIONS(1478), + [aux_sym_include_token1] = ACTIONS(1478), + [aux_sym_ip_qos_token1] = ACTIONS(1478), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1478), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1478), + [aux_sym_kex_algorithms_token1] = ACTIONS(1478), + [aux_sym_known_hosts_command_token1] = ACTIONS(1478), + [aux_sym_local_command_token1] = ACTIONS(1478), + [aux_sym_local_forward_token1] = ACTIONS(1478), + [aux_sym_log_level_token1] = ACTIONS(1478), + [aux_sym_log_verbose_token1] = ACTIONS(1478), + [aux_sym_macs_token1] = ACTIONS(1478), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1478), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1478), + [aux_sym_password_authentication_token1] = ACTIONS(1478), + [aux_sym_permit_local_command_token1] = ACTIONS(1478), + [aux_sym_permit_remote_open_token1] = ACTIONS(1478), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1478), + [aux_sym_port_token1] = ACTIONS(1478), + [aux_sym_preferred_authentications_token1] = ACTIONS(1478), + [aux_sym_protocol_token1] = ACTIONS(1478), + [aux_sym_proxy_command_token1] = ACTIONS(1478), + [aux_sym_proxy_jump_token1] = ACTIONS(1478), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1478), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1478), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1478), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1478), + [aux_sym_rekey_limit_token1] = ACTIONS(1478), + [aux_sym_remote_command_token1] = ACTIONS(1478), + [aux_sym_remote_forward_token1] = ACTIONS(1478), + [aux_sym_request_tty_token1] = ACTIONS(1478), + [aux_sym_required_rsa_size_token1] = ACTIONS(1478), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1478), + [aux_sym_security_key_provider_token1] = ACTIONS(1478), + [aux_sym_send_env_token1] = ACTIONS(1478), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1478), + [aux_sym_server_alive_interval_token1] = ACTIONS(1478), + [aux_sym_session_type_token1] = ACTIONS(1478), + [aux_sym_set_env_token1] = ACTIONS(1478), + [aux_sym_stdin_null_token1] = ACTIONS(1478), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1478), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1478), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1478), + [aux_sym_syslog_facility_token1] = ACTIONS(1478), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1478), + [aux_sym_keep_alive_token1] = ACTIONS(1478), + [aux_sym_tunnel_token1] = ACTIONS(1480), + [aux_sym_tunnel_device_token1] = ACTIONS(1478), + [aux_sym_update_host_keys_token1] = ACTIONS(1478), + [aux_sym_use_keychain_token1] = ACTIONS(1478), + [aux_sym_use_roaming_token1] = ACTIONS(1478), + [aux_sym_user_token1] = ACTIONS(1480), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1478), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1478), + [aux_sym_visual_host_key_token1] = ACTIONS(1478), + [aux_sym_xauth_location_token1] = ACTIONS(1478), }, [675] = { - [ts_builtin_sym_end] = ACTIONS(1869), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1871), - [aux_sym_match_token1] = ACTIONS(1869), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1869), - [aux_sym_address_family_token1] = ACTIONS(1869), - [aux_sym_batch_mode_token1] = ACTIONS(1869), - [aux_sym_bind_address_token1] = ACTIONS(1869), - [aux_sym_bind_interface_token1] = ACTIONS(1869), - [aux_sym_canonical_domains_token1] = ACTIONS(1869), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1869), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1869), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1869), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1869), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1869), - [aux_sym_certificate_file_token1] = ACTIONS(1869), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1869), - [aux_sym_check_host_ip_token1] = ACTIONS(1869), - [aux_sym_ciphers_token1] = ACTIONS(1869), - [aux_sym_cipher_token1] = ACTIONS(1871), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1869), - [aux_sym_compression_token1] = ACTIONS(1869), - [aux_sym_connection_attempts_token1] = ACTIONS(1869), - [aux_sym_connect_timeout_token1] = ACTIONS(1869), - [aux_sym_control_master_token1] = ACTIONS(1869), - [aux_sym_control_path_token1] = ACTIONS(1869), - [aux_sym_control_persist_token1] = ACTIONS(1869), - [aux_sym_dynamic_forward_token1] = ACTIONS(1869), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1869), - [aux_sym_escape_char_token1] = ACTIONS(1869), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1869), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1869), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1869), - [aux_sym_forward_agent_token1] = ACTIONS(1869), - [aux_sym_forward_x11_token1] = ACTIONS(1871), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1869), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1869), - [aux_sym_gateway_ports_token1] = ACTIONS(1869), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1869), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1869), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1869), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1869), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1869), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1869), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1869), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1869), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1869), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1869), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1869), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1869), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1869), - [aux_sym_host_key_alias_token1] = ACTIONS(1869), - [aux_sym_hostname_token1] = ACTIONS(1869), - [aux_sym_identities_only_token1] = ACTIONS(1869), - [aux_sym_identity_agent_token1] = ACTIONS(1869), - [aux_sym_identity_file_token1] = ACTIONS(1869), - [aux_sym_ignore_unknown_token1] = ACTIONS(1869), - [aux_sym_include_token1] = ACTIONS(1869), - [aux_sym_ip_qos_token1] = ACTIONS(1869), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1869), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1869), - [aux_sym_kex_algorithms_token1] = ACTIONS(1869), - [aux_sym_known_hosts_command_token1] = ACTIONS(1869), - [aux_sym_local_command_token1] = ACTIONS(1869), - [aux_sym_local_forward_token1] = ACTIONS(1869), - [aux_sym_log_level_token1] = ACTIONS(1869), - [aux_sym_log_verbose_token1] = ACTIONS(1869), - [aux_sym_macs_token1] = ACTIONS(1869), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1869), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1869), - [aux_sym_password_authentication_token1] = ACTIONS(1869), - [aux_sym_permit_local_command_token1] = ACTIONS(1869), - [aux_sym_permit_remote_open_token1] = ACTIONS(1869), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1869), - [aux_sym_port_token1] = ACTIONS(1869), - [aux_sym_preferred_authentications_token1] = ACTIONS(1869), - [aux_sym_protocol_token1] = ACTIONS(1869), - [aux_sym_proxy_command_token1] = ACTIONS(1869), - [aux_sym_proxy_jump_token1] = ACTIONS(1869), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1869), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1869), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1869), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1869), - [aux_sym_rekey_limit_token1] = ACTIONS(1869), - [aux_sym_remote_command_token1] = ACTIONS(1869), - [aux_sym_remote_forward_token1] = ACTIONS(1869), - [aux_sym_request_tty_token1] = ACTIONS(1869), - [aux_sym_required_rsa_size_token1] = ACTIONS(1869), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1869), - [aux_sym_security_key_provider_token1] = ACTIONS(1869), - [aux_sym_send_env_token1] = ACTIONS(1869), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1869), - [aux_sym_server_alive_interval_token1] = ACTIONS(1869), - [aux_sym_session_type_token1] = ACTIONS(1869), - [aux_sym_set_env_token1] = ACTIONS(1869), - [aux_sym_stdin_null_token1] = ACTIONS(1869), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1869), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1869), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1869), - [aux_sym_syslog_facility_token1] = ACTIONS(1869), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1869), - [aux_sym_keep_alive_token1] = ACTIONS(1869), - [aux_sym_tunnel_token1] = ACTIONS(1871), - [aux_sym_tunnel_device_token1] = ACTIONS(1869), - [aux_sym_update_host_keys_token1] = ACTIONS(1869), - [aux_sym_use_keychain_token1] = ACTIONS(1869), - [aux_sym_use_roaming_token1] = ACTIONS(1869), - [aux_sym_user_token1] = ACTIONS(1871), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1869), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1869), - [aux_sym_visual_host_key_token1] = ACTIONS(1869), - [aux_sym_xauth_location_token1] = ACTIONS(1869), + [ts_builtin_sym_end] = ACTIONS(1898), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1900), + [aux_sym_match_token1] = ACTIONS(1898), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1898), + [aux_sym_address_family_token1] = ACTIONS(1898), + [aux_sym_batch_mode_token1] = ACTIONS(1898), + [aux_sym_bind_address_token1] = ACTIONS(1898), + [aux_sym_bind_interface_token1] = ACTIONS(1898), + [aux_sym_canonical_domains_token1] = ACTIONS(1898), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1898), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1898), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1898), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1898), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1898), + [aux_sym_certificate_file_token1] = ACTIONS(1898), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1898), + [aux_sym_check_host_ip_token1] = ACTIONS(1898), + [aux_sym_ciphers_token1] = ACTIONS(1898), + [aux_sym_cipher_token1] = ACTIONS(1900), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1898), + [aux_sym_compression_token1] = ACTIONS(1898), + [aux_sym_connection_attempts_token1] = ACTIONS(1898), + [aux_sym_connect_timeout_token1] = ACTIONS(1898), + [aux_sym_control_master_token1] = ACTIONS(1898), + [aux_sym_control_path_token1] = ACTIONS(1898), + [aux_sym_control_persist_token1] = ACTIONS(1898), + [aux_sym_dynamic_forward_token1] = ACTIONS(1898), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1898), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1898), + [aux_sym_escape_char_token1] = ACTIONS(1898), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1898), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1898), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1898), + [aux_sym_forward_agent_token1] = ACTIONS(1898), + [aux_sym_forward_x11_token1] = ACTIONS(1900), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1898), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1898), + [aux_sym_gateway_ports_token1] = ACTIONS(1898), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1898), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1898), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1898), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1898), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1898), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1898), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1898), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1898), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1898), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1898), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1898), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1898), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1898), + [aux_sym_host_key_alias_token1] = ACTIONS(1898), + [aux_sym_hostname_token1] = ACTIONS(1898), + [aux_sym_identities_only_token1] = ACTIONS(1898), + [aux_sym_identity_agent_token1] = ACTIONS(1898), + [aux_sym_identity_file_token1] = ACTIONS(1898), + [aux_sym_ignore_unknown_token1] = ACTIONS(1898), + [aux_sym_include_token1] = ACTIONS(1898), + [aux_sym_ip_qos_token1] = ACTIONS(1898), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1898), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1898), + [aux_sym_kex_algorithms_token1] = ACTIONS(1898), + [aux_sym_known_hosts_command_token1] = ACTIONS(1898), + [aux_sym_local_command_token1] = ACTIONS(1898), + [aux_sym_local_forward_token1] = ACTIONS(1898), + [aux_sym_log_level_token1] = ACTIONS(1898), + [aux_sym_log_verbose_token1] = ACTIONS(1898), + [aux_sym_macs_token1] = ACTIONS(1898), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1898), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1898), + [aux_sym_password_authentication_token1] = ACTIONS(1898), + [aux_sym_permit_local_command_token1] = ACTIONS(1898), + [aux_sym_permit_remote_open_token1] = ACTIONS(1898), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1898), + [aux_sym_port_token1] = ACTIONS(1898), + [aux_sym_preferred_authentications_token1] = ACTIONS(1898), + [aux_sym_protocol_token1] = ACTIONS(1898), + [aux_sym_proxy_command_token1] = ACTIONS(1898), + [aux_sym_proxy_jump_token1] = ACTIONS(1898), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1898), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1898), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1898), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1898), + [aux_sym_rekey_limit_token1] = ACTIONS(1898), + [aux_sym_remote_command_token1] = ACTIONS(1898), + [aux_sym_remote_forward_token1] = ACTIONS(1898), + [aux_sym_request_tty_token1] = ACTIONS(1898), + [aux_sym_required_rsa_size_token1] = ACTIONS(1898), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1898), + [aux_sym_security_key_provider_token1] = ACTIONS(1898), + [aux_sym_send_env_token1] = ACTIONS(1898), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1898), + [aux_sym_server_alive_interval_token1] = ACTIONS(1898), + [aux_sym_session_type_token1] = ACTIONS(1898), + [aux_sym_set_env_token1] = ACTIONS(1898), + [aux_sym_stdin_null_token1] = ACTIONS(1898), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1898), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1898), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1898), + [aux_sym_syslog_facility_token1] = ACTIONS(1898), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1898), + [aux_sym_keep_alive_token1] = ACTIONS(1898), + [aux_sym_tunnel_token1] = ACTIONS(1900), + [aux_sym_tunnel_device_token1] = ACTIONS(1898), + [aux_sym_update_host_keys_token1] = ACTIONS(1898), + [aux_sym_use_keychain_token1] = ACTIONS(1898), + [aux_sym_use_roaming_token1] = ACTIONS(1898), + [aux_sym_user_token1] = ACTIONS(1900), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1898), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1898), + [aux_sym_visual_host_key_token1] = ACTIONS(1898), + [aux_sym_xauth_location_token1] = ACTIONS(1898), }, [676] = { - [ts_builtin_sym_end] = ACTIONS(1209), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1211), - [aux_sym_match_token1] = ACTIONS(1209), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1209), - [aux_sym_address_family_token1] = ACTIONS(1209), - [aux_sym_batch_mode_token1] = ACTIONS(1209), - [aux_sym_bind_address_token1] = ACTIONS(1209), - [aux_sym_bind_interface_token1] = ACTIONS(1209), - [aux_sym_canonical_domains_token1] = ACTIONS(1209), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1209), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1209), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1209), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1209), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1209), - [aux_sym_certificate_file_token1] = ACTIONS(1209), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1209), - [aux_sym_check_host_ip_token1] = ACTIONS(1209), - [aux_sym_ciphers_token1] = ACTIONS(1209), - [aux_sym_cipher_token1] = ACTIONS(1211), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1209), - [aux_sym_compression_token1] = ACTIONS(1209), - [aux_sym_connection_attempts_token1] = ACTIONS(1209), - [aux_sym_connect_timeout_token1] = ACTIONS(1209), - [aux_sym_control_master_token1] = ACTIONS(1209), - [aux_sym_control_path_token1] = ACTIONS(1209), - [aux_sym_control_persist_token1] = ACTIONS(1209), - [aux_sym_dynamic_forward_token1] = ACTIONS(1209), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1209), - [aux_sym_escape_char_token1] = ACTIONS(1209), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1209), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1209), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1209), - [aux_sym_forward_agent_token1] = ACTIONS(1209), - [aux_sym_forward_x11_token1] = ACTIONS(1211), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1209), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1209), - [aux_sym_gateway_ports_token1] = ACTIONS(1209), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1209), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1209), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1209), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1209), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1209), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1209), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1209), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1209), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1209), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1209), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1209), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1209), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1209), - [aux_sym_host_key_alias_token1] = ACTIONS(1209), - [aux_sym_hostname_token1] = ACTIONS(1209), - [aux_sym_identities_only_token1] = ACTIONS(1209), - [aux_sym_identity_agent_token1] = ACTIONS(1209), - [aux_sym_identity_file_token1] = ACTIONS(1209), - [aux_sym_ignore_unknown_token1] = ACTIONS(1209), - [aux_sym_include_token1] = ACTIONS(1209), - [aux_sym_ip_qos_token1] = ACTIONS(1209), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1209), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1209), - [aux_sym_kex_algorithms_token1] = ACTIONS(1209), - [aux_sym_known_hosts_command_token1] = ACTIONS(1209), - [aux_sym_local_command_token1] = ACTIONS(1209), - [aux_sym_local_forward_token1] = ACTIONS(1209), - [aux_sym_log_level_token1] = ACTIONS(1209), - [aux_sym_log_verbose_token1] = ACTIONS(1209), - [aux_sym_macs_token1] = ACTIONS(1209), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1209), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1209), - [aux_sym_password_authentication_token1] = ACTIONS(1209), - [aux_sym_permit_local_command_token1] = ACTIONS(1209), - [aux_sym_permit_remote_open_token1] = ACTIONS(1209), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1209), - [aux_sym_port_token1] = ACTIONS(1209), - [aux_sym_preferred_authentications_token1] = ACTIONS(1209), - [aux_sym_protocol_token1] = ACTIONS(1209), - [aux_sym_proxy_command_token1] = ACTIONS(1209), - [aux_sym_proxy_jump_token1] = ACTIONS(1209), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1209), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1209), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1209), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1209), - [aux_sym_rekey_limit_token1] = ACTIONS(1209), - [aux_sym_remote_command_token1] = ACTIONS(1209), - [aux_sym_remote_forward_token1] = ACTIONS(1209), - [aux_sym_request_tty_token1] = ACTIONS(1209), - [aux_sym_required_rsa_size_token1] = ACTIONS(1209), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1209), - [aux_sym_security_key_provider_token1] = ACTIONS(1209), - [aux_sym_send_env_token1] = ACTIONS(1209), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1209), - [aux_sym_server_alive_interval_token1] = ACTIONS(1209), - [aux_sym_session_type_token1] = ACTIONS(1209), - [aux_sym_set_env_token1] = ACTIONS(1209), - [aux_sym_stdin_null_token1] = ACTIONS(1209), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1209), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1209), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1209), - [aux_sym_syslog_facility_token1] = ACTIONS(1209), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1209), - [aux_sym_keep_alive_token1] = ACTIONS(1209), - [aux_sym_tunnel_token1] = ACTIONS(1211), - [aux_sym_tunnel_device_token1] = ACTIONS(1209), - [aux_sym_update_host_keys_token1] = ACTIONS(1209), - [aux_sym_use_keychain_token1] = ACTIONS(1209), - [aux_sym_use_roaming_token1] = ACTIONS(1209), - [aux_sym_user_token1] = ACTIONS(1211), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1209), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1209), - [aux_sym_visual_host_key_token1] = ACTIONS(1209), - [aux_sym_xauth_location_token1] = ACTIONS(1209), + [ts_builtin_sym_end] = ACTIONS(632), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(634), + [aux_sym_match_token1] = ACTIONS(632), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(632), + [aux_sym_address_family_token1] = ACTIONS(632), + [aux_sym_batch_mode_token1] = ACTIONS(632), + [aux_sym_bind_address_token1] = ACTIONS(632), + [aux_sym_bind_interface_token1] = ACTIONS(632), + [aux_sym_canonical_domains_token1] = ACTIONS(632), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(632), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(632), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(632), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(632), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(632), + [aux_sym_certificate_file_token1] = ACTIONS(632), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(632), + [aux_sym_check_host_ip_token1] = ACTIONS(632), + [aux_sym_ciphers_token1] = ACTIONS(632), + [aux_sym_cipher_token1] = ACTIONS(634), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(632), + [aux_sym_compression_token1] = ACTIONS(632), + [aux_sym_connection_attempts_token1] = ACTIONS(632), + [aux_sym_connect_timeout_token1] = ACTIONS(632), + [aux_sym_control_master_token1] = ACTIONS(632), + [aux_sym_control_path_token1] = ACTIONS(632), + [aux_sym_control_persist_token1] = ACTIONS(632), + [aux_sym_dynamic_forward_token1] = ACTIONS(632), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(632), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(632), + [aux_sym_escape_char_token1] = ACTIONS(632), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(632), + [aux_sym_fingerprint_hash_token1] = ACTIONS(632), + [aux_sym_fork_after_authentication_token1] = ACTIONS(632), + [aux_sym_forward_agent_token1] = ACTIONS(632), + [aux_sym_forward_x11_token1] = ACTIONS(634), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(632), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(632), + [aux_sym_gateway_ports_token1] = ACTIONS(632), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(632), + [aux_sym_gssapi_authentication_token1] = ACTIONS(632), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(632), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(632), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(632), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(632), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(632), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(632), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(632), + [aux_sym_hash_known_hosts_token1] = ACTIONS(632), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(632), + [aux_sym_hostbased_authentication_token1] = ACTIONS(632), + [aux_sym_host_key_algorithms_token1] = ACTIONS(632), + [aux_sym_host_key_alias_token1] = ACTIONS(632), + [aux_sym_hostname_token1] = ACTIONS(632), + [aux_sym_identities_only_token1] = ACTIONS(632), + [aux_sym_identity_agent_token1] = ACTIONS(632), + [aux_sym_identity_file_token1] = ACTIONS(632), + [aux_sym_ignore_unknown_token1] = ACTIONS(632), + [aux_sym_include_token1] = ACTIONS(632), + [aux_sym_ip_qos_token1] = ACTIONS(632), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(632), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(632), + [aux_sym_kex_algorithms_token1] = ACTIONS(632), + [aux_sym_known_hosts_command_token1] = ACTIONS(632), + [aux_sym_local_command_token1] = ACTIONS(632), + [aux_sym_local_forward_token1] = ACTIONS(632), + [aux_sym_log_level_token1] = ACTIONS(632), + [aux_sym_log_verbose_token1] = ACTIONS(632), + [aux_sym_macs_token1] = ACTIONS(632), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(632), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(632), + [aux_sym_password_authentication_token1] = ACTIONS(632), + [aux_sym_permit_local_command_token1] = ACTIONS(632), + [aux_sym_permit_remote_open_token1] = ACTIONS(632), + [aux_sym_pkcs11_provider_token1] = ACTIONS(632), + [aux_sym_port_token1] = ACTIONS(632), + [aux_sym_preferred_authentications_token1] = ACTIONS(632), + [aux_sym_protocol_token1] = ACTIONS(632), + [aux_sym_proxy_command_token1] = ACTIONS(632), + [aux_sym_proxy_jump_token1] = ACTIONS(632), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(632), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(632), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(632), + [aux_sym_pubkey_authentication_token1] = ACTIONS(632), + [aux_sym_rekey_limit_token1] = ACTIONS(632), + [aux_sym_remote_command_token1] = ACTIONS(632), + [aux_sym_remote_forward_token1] = ACTIONS(632), + [aux_sym_request_tty_token1] = ACTIONS(632), + [aux_sym_required_rsa_size_token1] = ACTIONS(632), + [aux_sym_revoked_host_keys_token1] = ACTIONS(632), + [aux_sym_security_key_provider_token1] = ACTIONS(632), + [aux_sym_send_env_token1] = ACTIONS(632), + [aux_sym_server_alive_count_max_token1] = ACTIONS(632), + [aux_sym_server_alive_interval_token1] = ACTIONS(632), + [aux_sym_session_type_token1] = ACTIONS(632), + [aux_sym_set_env_token1] = ACTIONS(632), + [aux_sym_stdin_null_token1] = ACTIONS(632), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(632), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(632), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(632), + [aux_sym_syslog_facility_token1] = ACTIONS(632), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(632), + [aux_sym_keep_alive_token1] = ACTIONS(632), + [aux_sym_tunnel_token1] = ACTIONS(634), + [aux_sym_tunnel_device_token1] = ACTIONS(632), + [aux_sym_update_host_keys_token1] = ACTIONS(632), + [aux_sym_use_keychain_token1] = ACTIONS(632), + [aux_sym_use_roaming_token1] = ACTIONS(632), + [aux_sym_user_token1] = ACTIONS(634), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(632), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(632), + [aux_sym_visual_host_key_token1] = ACTIONS(632), + [aux_sym_xauth_location_token1] = ACTIONS(632), }, [677] = { - [ts_builtin_sym_end] = ACTIONS(1215), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1217), - [aux_sym_match_token1] = ACTIONS(1215), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1215), - [aux_sym_address_family_token1] = ACTIONS(1215), - [aux_sym_batch_mode_token1] = ACTIONS(1215), - [aux_sym_bind_address_token1] = ACTIONS(1215), - [aux_sym_bind_interface_token1] = ACTIONS(1215), - [aux_sym_canonical_domains_token1] = ACTIONS(1215), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1215), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1215), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1215), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1215), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1215), - [aux_sym_certificate_file_token1] = ACTIONS(1215), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1215), - [aux_sym_check_host_ip_token1] = ACTIONS(1215), - [aux_sym_ciphers_token1] = ACTIONS(1215), - [aux_sym_cipher_token1] = ACTIONS(1217), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1215), - [aux_sym_compression_token1] = ACTIONS(1215), - [aux_sym_connection_attempts_token1] = ACTIONS(1215), - [aux_sym_connect_timeout_token1] = ACTIONS(1215), - [aux_sym_control_master_token1] = ACTIONS(1215), - [aux_sym_control_path_token1] = ACTIONS(1215), - [aux_sym_control_persist_token1] = ACTIONS(1215), - [aux_sym_dynamic_forward_token1] = ACTIONS(1215), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1215), - [aux_sym_escape_char_token1] = ACTIONS(1215), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1215), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1215), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1215), - [aux_sym_forward_agent_token1] = ACTIONS(1215), - [aux_sym_forward_x11_token1] = ACTIONS(1217), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1215), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1215), - [aux_sym_gateway_ports_token1] = ACTIONS(1215), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1215), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1215), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1215), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1215), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1215), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1215), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1215), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1215), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1215), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1215), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1215), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1215), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1215), - [aux_sym_host_key_alias_token1] = ACTIONS(1215), - [aux_sym_hostname_token1] = ACTIONS(1215), - [aux_sym_identities_only_token1] = ACTIONS(1215), - [aux_sym_identity_agent_token1] = ACTIONS(1215), - [aux_sym_identity_file_token1] = ACTIONS(1215), - [aux_sym_ignore_unknown_token1] = ACTIONS(1215), - [aux_sym_include_token1] = ACTIONS(1215), - [aux_sym_ip_qos_token1] = ACTIONS(1215), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1215), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1215), - [aux_sym_kex_algorithms_token1] = ACTIONS(1215), - [aux_sym_known_hosts_command_token1] = ACTIONS(1215), - [aux_sym_local_command_token1] = ACTIONS(1215), - [aux_sym_local_forward_token1] = ACTIONS(1215), - [aux_sym_log_level_token1] = ACTIONS(1215), - [aux_sym_log_verbose_token1] = ACTIONS(1215), - [aux_sym_macs_token1] = ACTIONS(1215), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1215), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1215), - [aux_sym_password_authentication_token1] = ACTIONS(1215), - [aux_sym_permit_local_command_token1] = ACTIONS(1215), - [aux_sym_permit_remote_open_token1] = ACTIONS(1215), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1215), - [aux_sym_port_token1] = ACTIONS(1215), - [aux_sym_preferred_authentications_token1] = ACTIONS(1215), - [aux_sym_protocol_token1] = ACTIONS(1215), - [aux_sym_proxy_command_token1] = ACTIONS(1215), - [aux_sym_proxy_jump_token1] = ACTIONS(1215), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1215), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1215), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1215), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1215), - [aux_sym_rekey_limit_token1] = ACTIONS(1215), - [aux_sym_remote_command_token1] = ACTIONS(1215), - [aux_sym_remote_forward_token1] = ACTIONS(1215), - [aux_sym_request_tty_token1] = ACTIONS(1215), - [aux_sym_required_rsa_size_token1] = ACTIONS(1215), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1215), - [aux_sym_security_key_provider_token1] = ACTIONS(1215), - [aux_sym_send_env_token1] = ACTIONS(1215), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1215), - [aux_sym_server_alive_interval_token1] = ACTIONS(1215), - [aux_sym_session_type_token1] = ACTIONS(1215), - [aux_sym_set_env_token1] = ACTIONS(1215), - [aux_sym_stdin_null_token1] = ACTIONS(1215), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1215), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1215), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1215), - [aux_sym_syslog_facility_token1] = ACTIONS(1215), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1215), - [aux_sym_keep_alive_token1] = ACTIONS(1215), - [aux_sym_tunnel_token1] = ACTIONS(1217), - [aux_sym_tunnel_device_token1] = ACTIONS(1215), - [aux_sym_update_host_keys_token1] = ACTIONS(1215), - [aux_sym_use_keychain_token1] = ACTIONS(1215), - [aux_sym_use_roaming_token1] = ACTIONS(1215), - [aux_sym_user_token1] = ACTIONS(1217), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1215), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1215), - [aux_sym_visual_host_key_token1] = ACTIONS(1215), - [aux_sym_xauth_location_token1] = ACTIONS(1215), + [ts_builtin_sym_end] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1486), + [aux_sym_match_token1] = ACTIONS(1484), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1484), + [aux_sym_address_family_token1] = ACTIONS(1484), + [aux_sym_batch_mode_token1] = ACTIONS(1484), + [aux_sym_bind_address_token1] = ACTIONS(1484), + [aux_sym_bind_interface_token1] = ACTIONS(1484), + [aux_sym_canonical_domains_token1] = ACTIONS(1484), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1484), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1484), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1484), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1484), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1484), + [aux_sym_certificate_file_token1] = ACTIONS(1484), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1484), + [aux_sym_check_host_ip_token1] = ACTIONS(1484), + [aux_sym_ciphers_token1] = ACTIONS(1484), + [aux_sym_cipher_token1] = ACTIONS(1486), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1484), + [aux_sym_compression_token1] = ACTIONS(1484), + [aux_sym_connection_attempts_token1] = ACTIONS(1484), + [aux_sym_connect_timeout_token1] = ACTIONS(1484), + [aux_sym_control_master_token1] = ACTIONS(1484), + [aux_sym_control_path_token1] = ACTIONS(1484), + [aux_sym_control_persist_token1] = ACTIONS(1484), + [aux_sym_dynamic_forward_token1] = ACTIONS(1484), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1484), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1484), + [aux_sym_escape_char_token1] = ACTIONS(1484), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1484), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1484), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1484), + [aux_sym_forward_agent_token1] = ACTIONS(1484), + [aux_sym_forward_x11_token1] = ACTIONS(1486), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1484), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1484), + [aux_sym_gateway_ports_token1] = ACTIONS(1484), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1484), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1484), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1484), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1484), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1484), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1484), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1484), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1484), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1484), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1484), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1484), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1484), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1484), + [aux_sym_host_key_alias_token1] = ACTIONS(1484), + [aux_sym_hostname_token1] = ACTIONS(1484), + [aux_sym_identities_only_token1] = ACTIONS(1484), + [aux_sym_identity_agent_token1] = ACTIONS(1484), + [aux_sym_identity_file_token1] = ACTIONS(1484), + [aux_sym_ignore_unknown_token1] = ACTIONS(1484), + [aux_sym_include_token1] = ACTIONS(1484), + [aux_sym_ip_qos_token1] = ACTIONS(1484), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1484), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1484), + [aux_sym_kex_algorithms_token1] = ACTIONS(1484), + [aux_sym_known_hosts_command_token1] = ACTIONS(1484), + [aux_sym_local_command_token1] = ACTIONS(1484), + [aux_sym_local_forward_token1] = ACTIONS(1484), + [aux_sym_log_level_token1] = ACTIONS(1484), + [aux_sym_log_verbose_token1] = ACTIONS(1484), + [aux_sym_macs_token1] = ACTIONS(1484), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1484), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1484), + [aux_sym_password_authentication_token1] = ACTIONS(1484), + [aux_sym_permit_local_command_token1] = ACTIONS(1484), + [aux_sym_permit_remote_open_token1] = ACTIONS(1484), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1484), + [aux_sym_port_token1] = ACTIONS(1484), + [aux_sym_preferred_authentications_token1] = ACTIONS(1484), + [aux_sym_protocol_token1] = ACTIONS(1484), + [aux_sym_proxy_command_token1] = ACTIONS(1484), + [aux_sym_proxy_jump_token1] = ACTIONS(1484), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1484), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1484), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1484), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1484), + [aux_sym_rekey_limit_token1] = ACTIONS(1484), + [aux_sym_remote_command_token1] = ACTIONS(1484), + [aux_sym_remote_forward_token1] = ACTIONS(1484), + [aux_sym_request_tty_token1] = ACTIONS(1484), + [aux_sym_required_rsa_size_token1] = ACTIONS(1484), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1484), + [aux_sym_security_key_provider_token1] = ACTIONS(1484), + [aux_sym_send_env_token1] = ACTIONS(1484), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1484), + [aux_sym_server_alive_interval_token1] = ACTIONS(1484), + [aux_sym_session_type_token1] = ACTIONS(1484), + [aux_sym_set_env_token1] = ACTIONS(1484), + [aux_sym_stdin_null_token1] = ACTIONS(1484), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1484), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1484), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1484), + [aux_sym_syslog_facility_token1] = ACTIONS(1484), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1484), + [aux_sym_keep_alive_token1] = ACTIONS(1484), + [aux_sym_tunnel_token1] = ACTIONS(1486), + [aux_sym_tunnel_device_token1] = ACTIONS(1484), + [aux_sym_update_host_keys_token1] = ACTIONS(1484), + [aux_sym_use_keychain_token1] = ACTIONS(1484), + [aux_sym_use_roaming_token1] = ACTIONS(1484), + [aux_sym_user_token1] = ACTIONS(1486), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1484), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1484), + [aux_sym_visual_host_key_token1] = ACTIONS(1484), + [aux_sym_xauth_location_token1] = ACTIONS(1484), }, [678] = { - [ts_builtin_sym_end] = ACTIONS(1863), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1865), - [aux_sym_match_token1] = ACTIONS(1863), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1863), - [aux_sym_address_family_token1] = ACTIONS(1863), - [aux_sym_batch_mode_token1] = ACTIONS(1863), - [aux_sym_bind_address_token1] = ACTIONS(1863), - [aux_sym_bind_interface_token1] = ACTIONS(1863), - [aux_sym_canonical_domains_token1] = ACTIONS(1863), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1863), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1863), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1863), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1863), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1863), - [aux_sym_certificate_file_token1] = ACTIONS(1863), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1863), - [aux_sym_check_host_ip_token1] = ACTIONS(1863), - [aux_sym_ciphers_token1] = ACTIONS(1863), - [aux_sym_cipher_token1] = ACTIONS(1865), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1863), - [aux_sym_compression_token1] = ACTIONS(1863), - [aux_sym_connection_attempts_token1] = ACTIONS(1863), - [aux_sym_connect_timeout_token1] = ACTIONS(1863), - [aux_sym_control_master_token1] = ACTIONS(1863), - [aux_sym_control_path_token1] = ACTIONS(1863), - [aux_sym_control_persist_token1] = ACTIONS(1863), - [aux_sym_dynamic_forward_token1] = ACTIONS(1863), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1863), - [aux_sym_escape_char_token1] = ACTIONS(1863), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1863), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1863), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1863), - [aux_sym_forward_agent_token1] = ACTIONS(1863), - [aux_sym_forward_x11_token1] = ACTIONS(1865), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1863), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1863), - [aux_sym_gateway_ports_token1] = ACTIONS(1863), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1863), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1863), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1863), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1863), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1863), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1863), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1863), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1863), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1863), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1863), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1863), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1863), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1863), - [aux_sym_host_key_alias_token1] = ACTIONS(1863), - [aux_sym_hostname_token1] = ACTIONS(1863), - [aux_sym_identities_only_token1] = ACTIONS(1863), - [aux_sym_identity_agent_token1] = ACTIONS(1863), - [aux_sym_identity_file_token1] = ACTIONS(1863), - [aux_sym_ignore_unknown_token1] = ACTIONS(1863), - [aux_sym_include_token1] = ACTIONS(1863), - [aux_sym_ip_qos_token1] = ACTIONS(1863), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1863), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1863), - [aux_sym_kex_algorithms_token1] = ACTIONS(1863), - [aux_sym_known_hosts_command_token1] = ACTIONS(1863), - [aux_sym_local_command_token1] = ACTIONS(1863), - [aux_sym_local_forward_token1] = ACTIONS(1863), - [aux_sym_log_level_token1] = ACTIONS(1863), - [aux_sym_log_verbose_token1] = ACTIONS(1863), - [aux_sym_macs_token1] = ACTIONS(1863), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1863), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1863), - [aux_sym_password_authentication_token1] = ACTIONS(1863), - [aux_sym_permit_local_command_token1] = ACTIONS(1863), - [aux_sym_permit_remote_open_token1] = ACTIONS(1863), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1863), - [aux_sym_port_token1] = ACTIONS(1863), - [aux_sym_preferred_authentications_token1] = ACTIONS(1863), - [aux_sym_protocol_token1] = ACTIONS(1863), - [aux_sym_proxy_command_token1] = ACTIONS(1863), - [aux_sym_proxy_jump_token1] = ACTIONS(1863), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1863), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1863), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1863), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1863), - [aux_sym_rekey_limit_token1] = ACTIONS(1863), - [aux_sym_remote_command_token1] = ACTIONS(1863), - [aux_sym_remote_forward_token1] = ACTIONS(1863), - [aux_sym_request_tty_token1] = ACTIONS(1863), - [aux_sym_required_rsa_size_token1] = ACTIONS(1863), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1863), - [aux_sym_security_key_provider_token1] = ACTIONS(1863), - [aux_sym_send_env_token1] = ACTIONS(1863), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1863), - [aux_sym_server_alive_interval_token1] = ACTIONS(1863), - [aux_sym_session_type_token1] = ACTIONS(1863), - [aux_sym_set_env_token1] = ACTIONS(1863), - [aux_sym_stdin_null_token1] = ACTIONS(1863), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1863), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1863), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1863), - [aux_sym_syslog_facility_token1] = ACTIONS(1863), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1863), - [aux_sym_keep_alive_token1] = ACTIONS(1863), - [aux_sym_tunnel_token1] = ACTIONS(1865), - [aux_sym_tunnel_device_token1] = ACTIONS(1863), - [aux_sym_update_host_keys_token1] = ACTIONS(1863), - [aux_sym_use_keychain_token1] = ACTIONS(1863), - [aux_sym_use_roaming_token1] = ACTIONS(1863), - [aux_sym_user_token1] = ACTIONS(1865), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1863), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1863), - [aux_sym_visual_host_key_token1] = ACTIONS(1863), - [aux_sym_xauth_location_token1] = ACTIONS(1863), + [ts_builtin_sym_end] = ACTIONS(1892), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1894), + [aux_sym_match_token1] = ACTIONS(1892), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1892), + [aux_sym_address_family_token1] = ACTIONS(1892), + [aux_sym_batch_mode_token1] = ACTIONS(1892), + [aux_sym_bind_address_token1] = ACTIONS(1892), + [aux_sym_bind_interface_token1] = ACTIONS(1892), + [aux_sym_canonical_domains_token1] = ACTIONS(1892), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1892), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1892), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1892), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1892), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1892), + [aux_sym_certificate_file_token1] = ACTIONS(1892), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1892), + [aux_sym_check_host_ip_token1] = ACTIONS(1892), + [aux_sym_ciphers_token1] = ACTIONS(1892), + [aux_sym_cipher_token1] = ACTIONS(1894), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1892), + [aux_sym_compression_token1] = ACTIONS(1892), + [aux_sym_connection_attempts_token1] = ACTIONS(1892), + [aux_sym_connect_timeout_token1] = ACTIONS(1892), + [aux_sym_control_master_token1] = ACTIONS(1892), + [aux_sym_control_path_token1] = ACTIONS(1892), + [aux_sym_control_persist_token1] = ACTIONS(1892), + [aux_sym_dynamic_forward_token1] = ACTIONS(1892), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1892), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1892), + [aux_sym_escape_char_token1] = ACTIONS(1892), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1892), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1892), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1892), + [aux_sym_forward_agent_token1] = ACTIONS(1892), + [aux_sym_forward_x11_token1] = ACTIONS(1894), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1892), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1892), + [aux_sym_gateway_ports_token1] = ACTIONS(1892), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1892), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1892), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1892), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1892), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1892), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1892), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1892), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1892), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1892), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1892), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1892), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1892), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1892), + [aux_sym_host_key_alias_token1] = ACTIONS(1892), + [aux_sym_hostname_token1] = ACTIONS(1892), + [aux_sym_identities_only_token1] = ACTIONS(1892), + [aux_sym_identity_agent_token1] = ACTIONS(1892), + [aux_sym_identity_file_token1] = ACTIONS(1892), + [aux_sym_ignore_unknown_token1] = ACTIONS(1892), + [aux_sym_include_token1] = ACTIONS(1892), + [aux_sym_ip_qos_token1] = ACTIONS(1892), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1892), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1892), + [aux_sym_kex_algorithms_token1] = ACTIONS(1892), + [aux_sym_known_hosts_command_token1] = ACTIONS(1892), + [aux_sym_local_command_token1] = ACTIONS(1892), + [aux_sym_local_forward_token1] = ACTIONS(1892), + [aux_sym_log_level_token1] = ACTIONS(1892), + [aux_sym_log_verbose_token1] = ACTIONS(1892), + [aux_sym_macs_token1] = ACTIONS(1892), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1892), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1892), + [aux_sym_password_authentication_token1] = ACTIONS(1892), + [aux_sym_permit_local_command_token1] = ACTIONS(1892), + [aux_sym_permit_remote_open_token1] = ACTIONS(1892), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1892), + [aux_sym_port_token1] = ACTIONS(1892), + [aux_sym_preferred_authentications_token1] = ACTIONS(1892), + [aux_sym_protocol_token1] = ACTIONS(1892), + [aux_sym_proxy_command_token1] = ACTIONS(1892), + [aux_sym_proxy_jump_token1] = ACTIONS(1892), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1892), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1892), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1892), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1892), + [aux_sym_rekey_limit_token1] = ACTIONS(1892), + [aux_sym_remote_command_token1] = ACTIONS(1892), + [aux_sym_remote_forward_token1] = ACTIONS(1892), + [aux_sym_request_tty_token1] = ACTIONS(1892), + [aux_sym_required_rsa_size_token1] = ACTIONS(1892), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1892), + [aux_sym_security_key_provider_token1] = ACTIONS(1892), + [aux_sym_send_env_token1] = ACTIONS(1892), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1892), + [aux_sym_server_alive_interval_token1] = ACTIONS(1892), + [aux_sym_session_type_token1] = ACTIONS(1892), + [aux_sym_set_env_token1] = ACTIONS(1892), + [aux_sym_stdin_null_token1] = ACTIONS(1892), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1892), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1892), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1892), + [aux_sym_syslog_facility_token1] = ACTIONS(1892), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1892), + [aux_sym_keep_alive_token1] = ACTIONS(1892), + [aux_sym_tunnel_token1] = ACTIONS(1894), + [aux_sym_tunnel_device_token1] = ACTIONS(1892), + [aux_sym_update_host_keys_token1] = ACTIONS(1892), + [aux_sym_use_keychain_token1] = ACTIONS(1892), + [aux_sym_use_roaming_token1] = ACTIONS(1892), + [aux_sym_user_token1] = ACTIONS(1894), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1892), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1892), + [aux_sym_visual_host_key_token1] = ACTIONS(1892), + [aux_sym_xauth_location_token1] = ACTIONS(1892), }, [679] = { - [ts_builtin_sym_end] = ACTIONS(1221), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1223), - [aux_sym_match_token1] = ACTIONS(1221), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1221), - [aux_sym_address_family_token1] = ACTIONS(1221), - [aux_sym_batch_mode_token1] = ACTIONS(1221), - [aux_sym_bind_address_token1] = ACTIONS(1221), - [aux_sym_bind_interface_token1] = ACTIONS(1221), - [aux_sym_canonical_domains_token1] = ACTIONS(1221), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1221), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1221), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1221), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1221), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1221), - [aux_sym_certificate_file_token1] = ACTIONS(1221), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1221), - [aux_sym_check_host_ip_token1] = ACTIONS(1221), - [aux_sym_ciphers_token1] = ACTIONS(1221), - [aux_sym_cipher_token1] = ACTIONS(1223), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1221), - [aux_sym_compression_token1] = ACTIONS(1221), - [aux_sym_connection_attempts_token1] = ACTIONS(1221), - [aux_sym_connect_timeout_token1] = ACTIONS(1221), - [aux_sym_control_master_token1] = ACTIONS(1221), - [aux_sym_control_path_token1] = ACTIONS(1221), - [aux_sym_control_persist_token1] = ACTIONS(1221), - [aux_sym_dynamic_forward_token1] = ACTIONS(1221), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1221), - [aux_sym_escape_char_token1] = ACTIONS(1221), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1221), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1221), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1221), - [aux_sym_forward_agent_token1] = ACTIONS(1221), - [aux_sym_forward_x11_token1] = ACTIONS(1223), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1221), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1221), - [aux_sym_gateway_ports_token1] = ACTIONS(1221), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1221), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1221), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1221), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1221), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1221), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1221), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1221), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1221), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1221), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1221), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1221), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1221), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1221), - [aux_sym_host_key_alias_token1] = ACTIONS(1221), - [aux_sym_hostname_token1] = ACTIONS(1221), - [aux_sym_identities_only_token1] = ACTIONS(1221), - [aux_sym_identity_agent_token1] = ACTIONS(1221), - [aux_sym_identity_file_token1] = ACTIONS(1221), - [aux_sym_ignore_unknown_token1] = ACTIONS(1221), - [aux_sym_include_token1] = ACTIONS(1221), - [aux_sym_ip_qos_token1] = ACTIONS(1221), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1221), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1221), - [aux_sym_kex_algorithms_token1] = ACTIONS(1221), - [aux_sym_known_hosts_command_token1] = ACTIONS(1221), - [aux_sym_local_command_token1] = ACTIONS(1221), - [aux_sym_local_forward_token1] = ACTIONS(1221), - [aux_sym_log_level_token1] = ACTIONS(1221), - [aux_sym_log_verbose_token1] = ACTIONS(1221), - [aux_sym_macs_token1] = ACTIONS(1221), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1221), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1221), - [aux_sym_password_authentication_token1] = ACTIONS(1221), - [aux_sym_permit_local_command_token1] = ACTIONS(1221), - [aux_sym_permit_remote_open_token1] = ACTIONS(1221), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1221), - [aux_sym_port_token1] = ACTIONS(1221), - [aux_sym_preferred_authentications_token1] = ACTIONS(1221), - [aux_sym_protocol_token1] = ACTIONS(1221), - [aux_sym_proxy_command_token1] = ACTIONS(1221), - [aux_sym_proxy_jump_token1] = ACTIONS(1221), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1221), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1221), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1221), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1221), - [aux_sym_rekey_limit_token1] = ACTIONS(1221), - [aux_sym_remote_command_token1] = ACTIONS(1221), - [aux_sym_remote_forward_token1] = ACTIONS(1221), - [aux_sym_request_tty_token1] = ACTIONS(1221), - [aux_sym_required_rsa_size_token1] = ACTIONS(1221), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1221), - [aux_sym_security_key_provider_token1] = ACTIONS(1221), - [aux_sym_send_env_token1] = ACTIONS(1221), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1221), - [aux_sym_server_alive_interval_token1] = ACTIONS(1221), - [aux_sym_session_type_token1] = ACTIONS(1221), - [aux_sym_set_env_token1] = ACTIONS(1221), - [aux_sym_stdin_null_token1] = ACTIONS(1221), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1221), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1221), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1221), - [aux_sym_syslog_facility_token1] = ACTIONS(1221), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1221), - [aux_sym_keep_alive_token1] = ACTIONS(1221), - [aux_sym_tunnel_token1] = ACTIONS(1223), - [aux_sym_tunnel_device_token1] = ACTIONS(1221), - [aux_sym_update_host_keys_token1] = ACTIONS(1221), - [aux_sym_use_keychain_token1] = ACTIONS(1221), - [aux_sym_use_roaming_token1] = ACTIONS(1221), - [aux_sym_user_token1] = ACTIONS(1223), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1221), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1221), - [aux_sym_visual_host_key_token1] = ACTIONS(1221), - [aux_sym_xauth_location_token1] = ACTIONS(1221), + [ts_builtin_sym_end] = ACTIONS(1490), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1492), + [aux_sym_match_token1] = ACTIONS(1490), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1490), + [aux_sym_address_family_token1] = ACTIONS(1490), + [aux_sym_batch_mode_token1] = ACTIONS(1490), + [aux_sym_bind_address_token1] = ACTIONS(1490), + [aux_sym_bind_interface_token1] = ACTIONS(1490), + [aux_sym_canonical_domains_token1] = ACTIONS(1490), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1490), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1490), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1490), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1490), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1490), + [aux_sym_certificate_file_token1] = ACTIONS(1490), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1490), + [aux_sym_check_host_ip_token1] = ACTIONS(1490), + [aux_sym_ciphers_token1] = ACTIONS(1490), + [aux_sym_cipher_token1] = ACTIONS(1492), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1490), + [aux_sym_compression_token1] = ACTIONS(1490), + [aux_sym_connection_attempts_token1] = ACTIONS(1490), + [aux_sym_connect_timeout_token1] = ACTIONS(1490), + [aux_sym_control_master_token1] = ACTIONS(1490), + [aux_sym_control_path_token1] = ACTIONS(1490), + [aux_sym_control_persist_token1] = ACTIONS(1490), + [aux_sym_dynamic_forward_token1] = ACTIONS(1490), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1490), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1490), + [aux_sym_escape_char_token1] = ACTIONS(1490), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1490), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1490), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1490), + [aux_sym_forward_agent_token1] = ACTIONS(1490), + [aux_sym_forward_x11_token1] = ACTIONS(1492), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1490), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1490), + [aux_sym_gateway_ports_token1] = ACTIONS(1490), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1490), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1490), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1490), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1490), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1490), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1490), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1490), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1490), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1490), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1490), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1490), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1490), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1490), + [aux_sym_host_key_alias_token1] = ACTIONS(1490), + [aux_sym_hostname_token1] = ACTIONS(1490), + [aux_sym_identities_only_token1] = ACTIONS(1490), + [aux_sym_identity_agent_token1] = ACTIONS(1490), + [aux_sym_identity_file_token1] = ACTIONS(1490), + [aux_sym_ignore_unknown_token1] = ACTIONS(1490), + [aux_sym_include_token1] = ACTIONS(1490), + [aux_sym_ip_qos_token1] = ACTIONS(1490), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1490), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1490), + [aux_sym_kex_algorithms_token1] = ACTIONS(1490), + [aux_sym_known_hosts_command_token1] = ACTIONS(1490), + [aux_sym_local_command_token1] = ACTIONS(1490), + [aux_sym_local_forward_token1] = ACTIONS(1490), + [aux_sym_log_level_token1] = ACTIONS(1490), + [aux_sym_log_verbose_token1] = ACTIONS(1490), + [aux_sym_macs_token1] = ACTIONS(1490), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1490), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1490), + [aux_sym_password_authentication_token1] = ACTIONS(1490), + [aux_sym_permit_local_command_token1] = ACTIONS(1490), + [aux_sym_permit_remote_open_token1] = ACTIONS(1490), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1490), + [aux_sym_port_token1] = ACTIONS(1490), + [aux_sym_preferred_authentications_token1] = ACTIONS(1490), + [aux_sym_protocol_token1] = ACTIONS(1490), + [aux_sym_proxy_command_token1] = ACTIONS(1490), + [aux_sym_proxy_jump_token1] = ACTIONS(1490), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1490), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1490), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1490), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1490), + [aux_sym_rekey_limit_token1] = ACTIONS(1490), + [aux_sym_remote_command_token1] = ACTIONS(1490), + [aux_sym_remote_forward_token1] = ACTIONS(1490), + [aux_sym_request_tty_token1] = ACTIONS(1490), + [aux_sym_required_rsa_size_token1] = ACTIONS(1490), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1490), + [aux_sym_security_key_provider_token1] = ACTIONS(1490), + [aux_sym_send_env_token1] = ACTIONS(1490), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1490), + [aux_sym_server_alive_interval_token1] = ACTIONS(1490), + [aux_sym_session_type_token1] = ACTIONS(1490), + [aux_sym_set_env_token1] = ACTIONS(1490), + [aux_sym_stdin_null_token1] = ACTIONS(1490), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1490), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1490), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1490), + [aux_sym_syslog_facility_token1] = ACTIONS(1490), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1490), + [aux_sym_keep_alive_token1] = ACTIONS(1490), + [aux_sym_tunnel_token1] = ACTIONS(1492), + [aux_sym_tunnel_device_token1] = ACTIONS(1490), + [aux_sym_update_host_keys_token1] = ACTIONS(1490), + [aux_sym_use_keychain_token1] = ACTIONS(1490), + [aux_sym_use_roaming_token1] = ACTIONS(1490), + [aux_sym_user_token1] = ACTIONS(1492), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1490), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1490), + [aux_sym_visual_host_key_token1] = ACTIONS(1490), + [aux_sym_xauth_location_token1] = ACTIONS(1490), }, [680] = { - [ts_builtin_sym_end] = ACTIONS(1227), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1229), - [aux_sym_match_token1] = ACTIONS(1227), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1227), - [aux_sym_address_family_token1] = ACTIONS(1227), - [aux_sym_batch_mode_token1] = ACTIONS(1227), - [aux_sym_bind_address_token1] = ACTIONS(1227), - [aux_sym_bind_interface_token1] = ACTIONS(1227), - [aux_sym_canonical_domains_token1] = ACTIONS(1227), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1227), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1227), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1227), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1227), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1227), - [aux_sym_certificate_file_token1] = ACTIONS(1227), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1227), - [aux_sym_check_host_ip_token1] = ACTIONS(1227), - [aux_sym_ciphers_token1] = ACTIONS(1227), - [aux_sym_cipher_token1] = ACTIONS(1229), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1227), - [aux_sym_compression_token1] = ACTIONS(1227), - [aux_sym_connection_attempts_token1] = ACTIONS(1227), - [aux_sym_connect_timeout_token1] = ACTIONS(1227), - [aux_sym_control_master_token1] = ACTIONS(1227), - [aux_sym_control_path_token1] = ACTIONS(1227), - [aux_sym_control_persist_token1] = ACTIONS(1227), - [aux_sym_dynamic_forward_token1] = ACTIONS(1227), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1227), - [aux_sym_escape_char_token1] = ACTIONS(1227), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1227), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1227), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1227), - [aux_sym_forward_agent_token1] = ACTIONS(1227), - [aux_sym_forward_x11_token1] = ACTIONS(1229), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1227), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1227), - [aux_sym_gateway_ports_token1] = ACTIONS(1227), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1227), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1227), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1227), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1227), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1227), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1227), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1227), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1227), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1227), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1227), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1227), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1227), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1227), - [aux_sym_host_key_alias_token1] = ACTIONS(1227), - [aux_sym_hostname_token1] = ACTIONS(1227), - [aux_sym_identities_only_token1] = ACTIONS(1227), - [aux_sym_identity_agent_token1] = ACTIONS(1227), - [aux_sym_identity_file_token1] = ACTIONS(1227), - [aux_sym_ignore_unknown_token1] = ACTIONS(1227), - [aux_sym_include_token1] = ACTIONS(1227), - [aux_sym_ip_qos_token1] = ACTIONS(1227), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1227), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1227), - [aux_sym_kex_algorithms_token1] = ACTIONS(1227), - [aux_sym_known_hosts_command_token1] = ACTIONS(1227), - [aux_sym_local_command_token1] = ACTIONS(1227), - [aux_sym_local_forward_token1] = ACTIONS(1227), - [aux_sym_log_level_token1] = ACTIONS(1227), - [aux_sym_log_verbose_token1] = ACTIONS(1227), - [aux_sym_macs_token1] = ACTIONS(1227), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1227), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1227), - [aux_sym_password_authentication_token1] = ACTIONS(1227), - [aux_sym_permit_local_command_token1] = ACTIONS(1227), - [aux_sym_permit_remote_open_token1] = ACTIONS(1227), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1227), - [aux_sym_port_token1] = ACTIONS(1227), - [aux_sym_preferred_authentications_token1] = ACTIONS(1227), - [aux_sym_protocol_token1] = ACTIONS(1227), - [aux_sym_proxy_command_token1] = ACTIONS(1227), - [aux_sym_proxy_jump_token1] = ACTIONS(1227), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1227), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1227), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1227), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1227), - [aux_sym_rekey_limit_token1] = ACTIONS(1227), - [aux_sym_remote_command_token1] = ACTIONS(1227), - [aux_sym_remote_forward_token1] = ACTIONS(1227), - [aux_sym_request_tty_token1] = ACTIONS(1227), - [aux_sym_required_rsa_size_token1] = ACTIONS(1227), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1227), - [aux_sym_security_key_provider_token1] = ACTIONS(1227), - [aux_sym_send_env_token1] = ACTIONS(1227), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1227), - [aux_sym_server_alive_interval_token1] = ACTIONS(1227), - [aux_sym_session_type_token1] = ACTIONS(1227), - [aux_sym_set_env_token1] = ACTIONS(1227), - [aux_sym_stdin_null_token1] = ACTIONS(1227), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1227), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1227), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1227), - [aux_sym_syslog_facility_token1] = ACTIONS(1227), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1227), - [aux_sym_keep_alive_token1] = ACTIONS(1227), - [aux_sym_tunnel_token1] = ACTIONS(1229), - [aux_sym_tunnel_device_token1] = ACTIONS(1227), - [aux_sym_update_host_keys_token1] = ACTIONS(1227), - [aux_sym_use_keychain_token1] = ACTIONS(1227), - [aux_sym_use_roaming_token1] = ACTIONS(1227), - [aux_sym_user_token1] = ACTIONS(1229), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1227), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1227), - [aux_sym_visual_host_key_token1] = ACTIONS(1227), - [aux_sym_xauth_location_token1] = ACTIONS(1227), + [ts_builtin_sym_end] = ACTIONS(854), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(856), + [aux_sym_match_token1] = ACTIONS(854), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(854), + [aux_sym_address_family_token1] = ACTIONS(854), + [aux_sym_batch_mode_token1] = ACTIONS(854), + [aux_sym_bind_address_token1] = ACTIONS(854), + [aux_sym_bind_interface_token1] = ACTIONS(854), + [aux_sym_canonical_domains_token1] = ACTIONS(854), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(854), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(854), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(854), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(854), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(854), + [aux_sym_certificate_file_token1] = ACTIONS(854), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(854), + [aux_sym_check_host_ip_token1] = ACTIONS(854), + [aux_sym_ciphers_token1] = ACTIONS(854), + [aux_sym_cipher_token1] = ACTIONS(856), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(854), + [aux_sym_compression_token1] = ACTIONS(854), + [aux_sym_connection_attempts_token1] = ACTIONS(854), + [aux_sym_connect_timeout_token1] = ACTIONS(854), + [aux_sym_control_master_token1] = ACTIONS(854), + [aux_sym_control_path_token1] = ACTIONS(854), + [aux_sym_control_persist_token1] = ACTIONS(854), + [aux_sym_dynamic_forward_token1] = ACTIONS(854), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(854), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(854), + [aux_sym_escape_char_token1] = ACTIONS(854), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(854), + [aux_sym_fingerprint_hash_token1] = ACTIONS(854), + [aux_sym_fork_after_authentication_token1] = ACTIONS(854), + [aux_sym_forward_agent_token1] = ACTIONS(854), + [aux_sym_forward_x11_token1] = ACTIONS(856), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(854), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(854), + [aux_sym_gateway_ports_token1] = ACTIONS(854), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(854), + [aux_sym_gssapi_authentication_token1] = ACTIONS(854), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(854), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(854), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(854), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(854), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(854), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(854), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(854), + [aux_sym_hash_known_hosts_token1] = ACTIONS(854), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(854), + [aux_sym_hostbased_authentication_token1] = ACTIONS(854), + [aux_sym_host_key_algorithms_token1] = ACTIONS(854), + [aux_sym_host_key_alias_token1] = ACTIONS(854), + [aux_sym_hostname_token1] = ACTIONS(854), + [aux_sym_identities_only_token1] = ACTIONS(854), + [aux_sym_identity_agent_token1] = ACTIONS(854), + [aux_sym_identity_file_token1] = ACTIONS(854), + [aux_sym_ignore_unknown_token1] = ACTIONS(854), + [aux_sym_include_token1] = ACTIONS(854), + [aux_sym_ip_qos_token1] = ACTIONS(854), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(854), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(854), + [aux_sym_kex_algorithms_token1] = ACTIONS(854), + [aux_sym_known_hosts_command_token1] = ACTIONS(854), + [aux_sym_local_command_token1] = ACTIONS(854), + [aux_sym_local_forward_token1] = ACTIONS(854), + [aux_sym_log_level_token1] = ACTIONS(854), + [aux_sym_log_verbose_token1] = ACTIONS(854), + [aux_sym_macs_token1] = ACTIONS(854), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(854), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(854), + [aux_sym_password_authentication_token1] = ACTIONS(854), + [aux_sym_permit_local_command_token1] = ACTIONS(854), + [aux_sym_permit_remote_open_token1] = ACTIONS(854), + [aux_sym_pkcs11_provider_token1] = ACTIONS(854), + [aux_sym_port_token1] = ACTIONS(854), + [aux_sym_preferred_authentications_token1] = ACTIONS(854), + [aux_sym_protocol_token1] = ACTIONS(854), + [aux_sym_proxy_command_token1] = ACTIONS(854), + [aux_sym_proxy_jump_token1] = ACTIONS(854), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(854), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(854), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(854), + [aux_sym_pubkey_authentication_token1] = ACTIONS(854), + [aux_sym_rekey_limit_token1] = ACTIONS(854), + [aux_sym_remote_command_token1] = ACTIONS(854), + [aux_sym_remote_forward_token1] = ACTIONS(854), + [aux_sym_request_tty_token1] = ACTIONS(854), + [aux_sym_required_rsa_size_token1] = ACTIONS(854), + [aux_sym_revoked_host_keys_token1] = ACTIONS(854), + [aux_sym_security_key_provider_token1] = ACTIONS(854), + [aux_sym_send_env_token1] = ACTIONS(854), + [aux_sym_server_alive_count_max_token1] = ACTIONS(854), + [aux_sym_server_alive_interval_token1] = ACTIONS(854), + [aux_sym_session_type_token1] = ACTIONS(854), + [aux_sym_set_env_token1] = ACTIONS(854), + [aux_sym_stdin_null_token1] = ACTIONS(854), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(854), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(854), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(854), + [aux_sym_syslog_facility_token1] = ACTIONS(854), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(854), + [aux_sym_keep_alive_token1] = ACTIONS(854), + [aux_sym_tunnel_token1] = ACTIONS(856), + [aux_sym_tunnel_device_token1] = ACTIONS(854), + [aux_sym_update_host_keys_token1] = ACTIONS(854), + [aux_sym_use_keychain_token1] = ACTIONS(854), + [aux_sym_use_roaming_token1] = ACTIONS(854), + [aux_sym_user_token1] = ACTIONS(856), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(854), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(854), + [aux_sym_visual_host_key_token1] = ACTIONS(854), + [aux_sym_xauth_location_token1] = ACTIONS(854), }, [681] = { - [ts_builtin_sym_end] = ACTIONS(1857), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1859), - [aux_sym_match_token1] = ACTIONS(1857), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1857), - [aux_sym_address_family_token1] = ACTIONS(1857), - [aux_sym_batch_mode_token1] = ACTIONS(1857), - [aux_sym_bind_address_token1] = ACTIONS(1857), - [aux_sym_bind_interface_token1] = ACTIONS(1857), - [aux_sym_canonical_domains_token1] = ACTIONS(1857), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1857), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1857), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1857), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1857), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1857), - [aux_sym_certificate_file_token1] = ACTIONS(1857), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1857), - [aux_sym_check_host_ip_token1] = ACTIONS(1857), - [aux_sym_ciphers_token1] = ACTIONS(1857), - [aux_sym_cipher_token1] = ACTIONS(1859), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1857), - [aux_sym_compression_token1] = ACTIONS(1857), - [aux_sym_connection_attempts_token1] = ACTIONS(1857), - [aux_sym_connect_timeout_token1] = ACTIONS(1857), - [aux_sym_control_master_token1] = ACTIONS(1857), - [aux_sym_control_path_token1] = ACTIONS(1857), - [aux_sym_control_persist_token1] = ACTIONS(1857), - [aux_sym_dynamic_forward_token1] = ACTIONS(1857), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1857), - [aux_sym_escape_char_token1] = ACTIONS(1857), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1857), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1857), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1857), - [aux_sym_forward_agent_token1] = ACTIONS(1857), - [aux_sym_forward_x11_token1] = ACTIONS(1859), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1857), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1857), - [aux_sym_gateway_ports_token1] = ACTIONS(1857), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1857), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1857), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1857), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1857), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1857), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1857), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1857), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1857), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1857), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1857), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1857), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1857), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1857), - [aux_sym_host_key_alias_token1] = ACTIONS(1857), - [aux_sym_hostname_token1] = ACTIONS(1857), - [aux_sym_identities_only_token1] = ACTIONS(1857), - [aux_sym_identity_agent_token1] = ACTIONS(1857), - [aux_sym_identity_file_token1] = ACTIONS(1857), - [aux_sym_ignore_unknown_token1] = ACTIONS(1857), - [aux_sym_include_token1] = ACTIONS(1857), - [aux_sym_ip_qos_token1] = ACTIONS(1857), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1857), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1857), - [aux_sym_kex_algorithms_token1] = ACTIONS(1857), - [aux_sym_known_hosts_command_token1] = ACTIONS(1857), - [aux_sym_local_command_token1] = ACTIONS(1857), - [aux_sym_local_forward_token1] = ACTIONS(1857), - [aux_sym_log_level_token1] = ACTIONS(1857), - [aux_sym_log_verbose_token1] = ACTIONS(1857), - [aux_sym_macs_token1] = ACTIONS(1857), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1857), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1857), - [aux_sym_password_authentication_token1] = ACTIONS(1857), - [aux_sym_permit_local_command_token1] = ACTIONS(1857), - [aux_sym_permit_remote_open_token1] = ACTIONS(1857), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1857), - [aux_sym_port_token1] = ACTIONS(1857), - [aux_sym_preferred_authentications_token1] = ACTIONS(1857), - [aux_sym_protocol_token1] = ACTIONS(1857), - [aux_sym_proxy_command_token1] = ACTIONS(1857), - [aux_sym_proxy_jump_token1] = ACTIONS(1857), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1857), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1857), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1857), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1857), - [aux_sym_rekey_limit_token1] = ACTIONS(1857), - [aux_sym_remote_command_token1] = ACTIONS(1857), - [aux_sym_remote_forward_token1] = ACTIONS(1857), - [aux_sym_request_tty_token1] = ACTIONS(1857), - [aux_sym_required_rsa_size_token1] = ACTIONS(1857), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1857), - [aux_sym_security_key_provider_token1] = ACTIONS(1857), - [aux_sym_send_env_token1] = ACTIONS(1857), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1857), - [aux_sym_server_alive_interval_token1] = ACTIONS(1857), - [aux_sym_session_type_token1] = ACTIONS(1857), - [aux_sym_set_env_token1] = ACTIONS(1857), - [aux_sym_stdin_null_token1] = ACTIONS(1857), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1857), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1857), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1857), - [aux_sym_syslog_facility_token1] = ACTIONS(1857), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1857), - [aux_sym_keep_alive_token1] = ACTIONS(1857), - [aux_sym_tunnel_token1] = ACTIONS(1859), - [aux_sym_tunnel_device_token1] = ACTIONS(1857), - [aux_sym_update_host_keys_token1] = ACTIONS(1857), - [aux_sym_use_keychain_token1] = ACTIONS(1857), - [aux_sym_use_roaming_token1] = ACTIONS(1857), - [aux_sym_user_token1] = ACTIONS(1859), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1857), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1857), - [aux_sym_visual_host_key_token1] = ACTIONS(1857), - [aux_sym_xauth_location_token1] = ACTIONS(1857), + [ts_builtin_sym_end] = ACTIONS(1886), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1888), + [aux_sym_match_token1] = ACTIONS(1886), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1886), + [aux_sym_address_family_token1] = ACTIONS(1886), + [aux_sym_batch_mode_token1] = ACTIONS(1886), + [aux_sym_bind_address_token1] = ACTIONS(1886), + [aux_sym_bind_interface_token1] = ACTIONS(1886), + [aux_sym_canonical_domains_token1] = ACTIONS(1886), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1886), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1886), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1886), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1886), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1886), + [aux_sym_certificate_file_token1] = ACTIONS(1886), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1886), + [aux_sym_check_host_ip_token1] = ACTIONS(1886), + [aux_sym_ciphers_token1] = ACTIONS(1886), + [aux_sym_cipher_token1] = ACTIONS(1888), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1886), + [aux_sym_compression_token1] = ACTIONS(1886), + [aux_sym_connection_attempts_token1] = ACTIONS(1886), + [aux_sym_connect_timeout_token1] = ACTIONS(1886), + [aux_sym_control_master_token1] = ACTIONS(1886), + [aux_sym_control_path_token1] = ACTIONS(1886), + [aux_sym_control_persist_token1] = ACTIONS(1886), + [aux_sym_dynamic_forward_token1] = ACTIONS(1886), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1886), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1886), + [aux_sym_escape_char_token1] = ACTIONS(1886), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1886), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1886), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1886), + [aux_sym_forward_agent_token1] = ACTIONS(1886), + [aux_sym_forward_x11_token1] = ACTIONS(1888), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1886), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1886), + [aux_sym_gateway_ports_token1] = ACTIONS(1886), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1886), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1886), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1886), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1886), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1886), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1886), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1886), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1886), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1886), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1886), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1886), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1886), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1886), + [aux_sym_host_key_alias_token1] = ACTIONS(1886), + [aux_sym_hostname_token1] = ACTIONS(1886), + [aux_sym_identities_only_token1] = ACTIONS(1886), + [aux_sym_identity_agent_token1] = ACTIONS(1886), + [aux_sym_identity_file_token1] = ACTIONS(1886), + [aux_sym_ignore_unknown_token1] = ACTIONS(1886), + [aux_sym_include_token1] = ACTIONS(1886), + [aux_sym_ip_qos_token1] = ACTIONS(1886), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1886), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1886), + [aux_sym_kex_algorithms_token1] = ACTIONS(1886), + [aux_sym_known_hosts_command_token1] = ACTIONS(1886), + [aux_sym_local_command_token1] = ACTIONS(1886), + [aux_sym_local_forward_token1] = ACTIONS(1886), + [aux_sym_log_level_token1] = ACTIONS(1886), + [aux_sym_log_verbose_token1] = ACTIONS(1886), + [aux_sym_macs_token1] = ACTIONS(1886), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1886), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1886), + [aux_sym_password_authentication_token1] = ACTIONS(1886), + [aux_sym_permit_local_command_token1] = ACTIONS(1886), + [aux_sym_permit_remote_open_token1] = ACTIONS(1886), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1886), + [aux_sym_port_token1] = ACTIONS(1886), + [aux_sym_preferred_authentications_token1] = ACTIONS(1886), + [aux_sym_protocol_token1] = ACTIONS(1886), + [aux_sym_proxy_command_token1] = ACTIONS(1886), + [aux_sym_proxy_jump_token1] = ACTIONS(1886), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1886), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1886), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1886), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1886), + [aux_sym_rekey_limit_token1] = ACTIONS(1886), + [aux_sym_remote_command_token1] = ACTIONS(1886), + [aux_sym_remote_forward_token1] = ACTIONS(1886), + [aux_sym_request_tty_token1] = ACTIONS(1886), + [aux_sym_required_rsa_size_token1] = ACTIONS(1886), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1886), + [aux_sym_security_key_provider_token1] = ACTIONS(1886), + [aux_sym_send_env_token1] = ACTIONS(1886), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1886), + [aux_sym_server_alive_interval_token1] = ACTIONS(1886), + [aux_sym_session_type_token1] = ACTIONS(1886), + [aux_sym_set_env_token1] = ACTIONS(1886), + [aux_sym_stdin_null_token1] = ACTIONS(1886), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1886), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1886), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1886), + [aux_sym_syslog_facility_token1] = ACTIONS(1886), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1886), + [aux_sym_keep_alive_token1] = ACTIONS(1886), + [aux_sym_tunnel_token1] = ACTIONS(1888), + [aux_sym_tunnel_device_token1] = ACTIONS(1886), + [aux_sym_update_host_keys_token1] = ACTIONS(1886), + [aux_sym_use_keychain_token1] = ACTIONS(1886), + [aux_sym_use_roaming_token1] = ACTIONS(1886), + [aux_sym_user_token1] = ACTIONS(1888), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1886), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1886), + [aux_sym_visual_host_key_token1] = ACTIONS(1886), + [aux_sym_xauth_location_token1] = ACTIONS(1886), }, [682] = { - [ts_builtin_sym_end] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1241), - [aux_sym_match_token1] = ACTIONS(1239), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1239), - [aux_sym_address_family_token1] = ACTIONS(1239), - [aux_sym_batch_mode_token1] = ACTIONS(1239), - [aux_sym_bind_address_token1] = ACTIONS(1239), - [aux_sym_bind_interface_token1] = ACTIONS(1239), - [aux_sym_canonical_domains_token1] = ACTIONS(1239), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1239), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1239), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1239), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1239), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1239), - [aux_sym_certificate_file_token1] = ACTIONS(1239), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1239), - [aux_sym_check_host_ip_token1] = ACTIONS(1239), - [aux_sym_ciphers_token1] = ACTIONS(1239), - [aux_sym_cipher_token1] = ACTIONS(1241), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1239), - [aux_sym_compression_token1] = ACTIONS(1239), - [aux_sym_connection_attempts_token1] = ACTIONS(1239), - [aux_sym_connect_timeout_token1] = ACTIONS(1239), - [aux_sym_control_master_token1] = ACTIONS(1239), - [aux_sym_control_path_token1] = ACTIONS(1239), - [aux_sym_control_persist_token1] = ACTIONS(1239), - [aux_sym_dynamic_forward_token1] = ACTIONS(1239), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1239), - [aux_sym_escape_char_token1] = ACTIONS(1239), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1239), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1239), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1239), - [aux_sym_forward_agent_token1] = ACTIONS(1239), - [aux_sym_forward_x11_token1] = ACTIONS(1241), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1239), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1239), - [aux_sym_gateway_ports_token1] = ACTIONS(1239), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1239), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1239), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1239), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1239), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1239), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1239), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1239), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1239), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1239), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1239), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1239), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1239), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1239), - [aux_sym_host_key_alias_token1] = ACTIONS(1239), - [aux_sym_hostname_token1] = ACTIONS(1239), - [aux_sym_identities_only_token1] = ACTIONS(1239), - [aux_sym_identity_agent_token1] = ACTIONS(1239), - [aux_sym_identity_file_token1] = ACTIONS(1239), - [aux_sym_ignore_unknown_token1] = ACTIONS(1239), - [aux_sym_include_token1] = ACTIONS(1239), - [aux_sym_ip_qos_token1] = ACTIONS(1239), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1239), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1239), - [aux_sym_kex_algorithms_token1] = ACTIONS(1239), - [aux_sym_known_hosts_command_token1] = ACTIONS(1239), - [aux_sym_local_command_token1] = ACTIONS(1239), - [aux_sym_local_forward_token1] = ACTIONS(1239), - [aux_sym_log_level_token1] = ACTIONS(1239), - [aux_sym_log_verbose_token1] = ACTIONS(1239), - [aux_sym_macs_token1] = ACTIONS(1239), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1239), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1239), - [aux_sym_password_authentication_token1] = ACTIONS(1239), - [aux_sym_permit_local_command_token1] = ACTIONS(1239), - [aux_sym_permit_remote_open_token1] = ACTIONS(1239), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1239), - [aux_sym_port_token1] = ACTIONS(1239), - [aux_sym_preferred_authentications_token1] = ACTIONS(1239), - [aux_sym_protocol_token1] = ACTIONS(1239), - [aux_sym_proxy_command_token1] = ACTIONS(1239), - [aux_sym_proxy_jump_token1] = ACTIONS(1239), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1239), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1239), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1239), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1239), - [aux_sym_rekey_limit_token1] = ACTIONS(1239), - [aux_sym_remote_command_token1] = ACTIONS(1239), - [aux_sym_remote_forward_token1] = ACTIONS(1239), - [aux_sym_request_tty_token1] = ACTIONS(1239), - [aux_sym_required_rsa_size_token1] = ACTIONS(1239), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1239), - [aux_sym_security_key_provider_token1] = ACTIONS(1239), - [aux_sym_send_env_token1] = ACTIONS(1239), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1239), - [aux_sym_server_alive_interval_token1] = ACTIONS(1239), - [aux_sym_session_type_token1] = ACTIONS(1239), - [aux_sym_set_env_token1] = ACTIONS(1239), - [aux_sym_stdin_null_token1] = ACTIONS(1239), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1239), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1239), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1239), - [aux_sym_syslog_facility_token1] = ACTIONS(1239), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1239), - [aux_sym_keep_alive_token1] = ACTIONS(1239), - [aux_sym_tunnel_token1] = ACTIONS(1241), - [aux_sym_tunnel_device_token1] = ACTIONS(1239), - [aux_sym_update_host_keys_token1] = ACTIONS(1239), - [aux_sym_use_keychain_token1] = ACTIONS(1239), - [aux_sym_use_roaming_token1] = ACTIONS(1239), - [aux_sym_user_token1] = ACTIONS(1241), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1239), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1239), - [aux_sym_visual_host_key_token1] = ACTIONS(1239), - [aux_sym_xauth_location_token1] = ACTIONS(1239), + [ts_builtin_sym_end] = ACTIONS(1496), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1498), + [aux_sym_match_token1] = ACTIONS(1496), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1496), + [aux_sym_address_family_token1] = ACTIONS(1496), + [aux_sym_batch_mode_token1] = ACTIONS(1496), + [aux_sym_bind_address_token1] = ACTIONS(1496), + [aux_sym_bind_interface_token1] = ACTIONS(1496), + [aux_sym_canonical_domains_token1] = ACTIONS(1496), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1496), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1496), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1496), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1496), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1496), + [aux_sym_certificate_file_token1] = ACTIONS(1496), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1496), + [aux_sym_check_host_ip_token1] = ACTIONS(1496), + [aux_sym_ciphers_token1] = ACTIONS(1496), + [aux_sym_cipher_token1] = ACTIONS(1498), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1496), + [aux_sym_compression_token1] = ACTIONS(1496), + [aux_sym_connection_attempts_token1] = ACTIONS(1496), + [aux_sym_connect_timeout_token1] = ACTIONS(1496), + [aux_sym_control_master_token1] = ACTIONS(1496), + [aux_sym_control_path_token1] = ACTIONS(1496), + [aux_sym_control_persist_token1] = ACTIONS(1496), + [aux_sym_dynamic_forward_token1] = ACTIONS(1496), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1496), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1496), + [aux_sym_escape_char_token1] = ACTIONS(1496), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1496), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1496), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1496), + [aux_sym_forward_agent_token1] = ACTIONS(1496), + [aux_sym_forward_x11_token1] = ACTIONS(1498), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1496), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1496), + [aux_sym_gateway_ports_token1] = ACTIONS(1496), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1496), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1496), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1496), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1496), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1496), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1496), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1496), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1496), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1496), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1496), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1496), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1496), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1496), + [aux_sym_host_key_alias_token1] = ACTIONS(1496), + [aux_sym_hostname_token1] = ACTIONS(1496), + [aux_sym_identities_only_token1] = ACTIONS(1496), + [aux_sym_identity_agent_token1] = ACTIONS(1496), + [aux_sym_identity_file_token1] = ACTIONS(1496), + [aux_sym_ignore_unknown_token1] = ACTIONS(1496), + [aux_sym_include_token1] = ACTIONS(1496), + [aux_sym_ip_qos_token1] = ACTIONS(1496), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1496), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1496), + [aux_sym_kex_algorithms_token1] = ACTIONS(1496), + [aux_sym_known_hosts_command_token1] = ACTIONS(1496), + [aux_sym_local_command_token1] = ACTIONS(1496), + [aux_sym_local_forward_token1] = ACTIONS(1496), + [aux_sym_log_level_token1] = ACTIONS(1496), + [aux_sym_log_verbose_token1] = ACTIONS(1496), + [aux_sym_macs_token1] = ACTIONS(1496), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1496), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1496), + [aux_sym_password_authentication_token1] = ACTIONS(1496), + [aux_sym_permit_local_command_token1] = ACTIONS(1496), + [aux_sym_permit_remote_open_token1] = ACTIONS(1496), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1496), + [aux_sym_port_token1] = ACTIONS(1496), + [aux_sym_preferred_authentications_token1] = ACTIONS(1496), + [aux_sym_protocol_token1] = ACTIONS(1496), + [aux_sym_proxy_command_token1] = ACTIONS(1496), + [aux_sym_proxy_jump_token1] = ACTIONS(1496), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1496), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1496), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1496), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1496), + [aux_sym_rekey_limit_token1] = ACTIONS(1496), + [aux_sym_remote_command_token1] = ACTIONS(1496), + [aux_sym_remote_forward_token1] = ACTIONS(1496), + [aux_sym_request_tty_token1] = ACTIONS(1496), + [aux_sym_required_rsa_size_token1] = ACTIONS(1496), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1496), + [aux_sym_security_key_provider_token1] = ACTIONS(1496), + [aux_sym_send_env_token1] = ACTIONS(1496), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1496), + [aux_sym_server_alive_interval_token1] = ACTIONS(1496), + [aux_sym_session_type_token1] = ACTIONS(1496), + [aux_sym_set_env_token1] = ACTIONS(1496), + [aux_sym_stdin_null_token1] = ACTIONS(1496), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1496), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1496), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1496), + [aux_sym_syslog_facility_token1] = ACTIONS(1496), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1496), + [aux_sym_keep_alive_token1] = ACTIONS(1496), + [aux_sym_tunnel_token1] = ACTIONS(1498), + [aux_sym_tunnel_device_token1] = ACTIONS(1496), + [aux_sym_update_host_keys_token1] = ACTIONS(1496), + [aux_sym_use_keychain_token1] = ACTIONS(1496), + [aux_sym_use_roaming_token1] = ACTIONS(1496), + [aux_sym_user_token1] = ACTIONS(1498), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1496), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1496), + [aux_sym_visual_host_key_token1] = ACTIONS(1496), + [aux_sym_xauth_location_token1] = ACTIONS(1496), }, [683] = { - [ts_builtin_sym_end] = ACTIONS(1245), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1247), - [aux_sym_match_token1] = ACTIONS(1245), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1245), - [aux_sym_address_family_token1] = ACTIONS(1245), - [aux_sym_batch_mode_token1] = ACTIONS(1245), - [aux_sym_bind_address_token1] = ACTIONS(1245), - [aux_sym_bind_interface_token1] = ACTIONS(1245), - [aux_sym_canonical_domains_token1] = ACTIONS(1245), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1245), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1245), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1245), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1245), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1245), - [aux_sym_certificate_file_token1] = ACTIONS(1245), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1245), - [aux_sym_check_host_ip_token1] = ACTIONS(1245), - [aux_sym_ciphers_token1] = ACTIONS(1245), - [aux_sym_cipher_token1] = ACTIONS(1247), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1245), - [aux_sym_compression_token1] = ACTIONS(1245), - [aux_sym_connection_attempts_token1] = ACTIONS(1245), - [aux_sym_connect_timeout_token1] = ACTIONS(1245), - [aux_sym_control_master_token1] = ACTIONS(1245), - [aux_sym_control_path_token1] = ACTIONS(1245), - [aux_sym_control_persist_token1] = ACTIONS(1245), - [aux_sym_dynamic_forward_token1] = ACTIONS(1245), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1245), - [aux_sym_escape_char_token1] = ACTIONS(1245), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1245), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1245), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1245), - [aux_sym_forward_agent_token1] = ACTIONS(1245), - [aux_sym_forward_x11_token1] = ACTIONS(1247), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1245), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1245), - [aux_sym_gateway_ports_token1] = ACTIONS(1245), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1245), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1245), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1245), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1245), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1245), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1245), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1245), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1245), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1245), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1245), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1245), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1245), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1245), - [aux_sym_host_key_alias_token1] = ACTIONS(1245), - [aux_sym_hostname_token1] = ACTIONS(1245), - [aux_sym_identities_only_token1] = ACTIONS(1245), - [aux_sym_identity_agent_token1] = ACTIONS(1245), - [aux_sym_identity_file_token1] = ACTIONS(1245), - [aux_sym_ignore_unknown_token1] = ACTIONS(1245), - [aux_sym_include_token1] = ACTIONS(1245), - [aux_sym_ip_qos_token1] = ACTIONS(1245), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1245), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1245), - [aux_sym_kex_algorithms_token1] = ACTIONS(1245), - [aux_sym_known_hosts_command_token1] = ACTIONS(1245), - [aux_sym_local_command_token1] = ACTIONS(1245), - [aux_sym_local_forward_token1] = ACTIONS(1245), - [aux_sym_log_level_token1] = ACTIONS(1245), - [aux_sym_log_verbose_token1] = ACTIONS(1245), - [aux_sym_macs_token1] = ACTIONS(1245), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1245), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1245), - [aux_sym_password_authentication_token1] = ACTIONS(1245), - [aux_sym_permit_local_command_token1] = ACTIONS(1245), - [aux_sym_permit_remote_open_token1] = ACTIONS(1245), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1245), - [aux_sym_port_token1] = ACTIONS(1245), - [aux_sym_preferred_authentications_token1] = ACTIONS(1245), - [aux_sym_protocol_token1] = ACTIONS(1245), - [aux_sym_proxy_command_token1] = ACTIONS(1245), - [aux_sym_proxy_jump_token1] = ACTIONS(1245), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1245), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1245), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1245), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1245), - [aux_sym_rekey_limit_token1] = ACTIONS(1245), - [aux_sym_remote_command_token1] = ACTIONS(1245), - [aux_sym_remote_forward_token1] = ACTIONS(1245), - [aux_sym_request_tty_token1] = ACTIONS(1245), - [aux_sym_required_rsa_size_token1] = ACTIONS(1245), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1245), - [aux_sym_security_key_provider_token1] = ACTIONS(1245), - [aux_sym_send_env_token1] = ACTIONS(1245), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1245), - [aux_sym_server_alive_interval_token1] = ACTIONS(1245), - [aux_sym_session_type_token1] = ACTIONS(1245), - [aux_sym_set_env_token1] = ACTIONS(1245), - [aux_sym_stdin_null_token1] = ACTIONS(1245), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1245), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1245), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1245), - [aux_sym_syslog_facility_token1] = ACTIONS(1245), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1245), - [aux_sym_keep_alive_token1] = ACTIONS(1245), - [aux_sym_tunnel_token1] = ACTIONS(1247), - [aux_sym_tunnel_device_token1] = ACTIONS(1245), - [aux_sym_update_host_keys_token1] = ACTIONS(1245), - [aux_sym_use_keychain_token1] = ACTIONS(1245), - [aux_sym_use_roaming_token1] = ACTIONS(1245), - [aux_sym_user_token1] = ACTIONS(1247), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1245), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1245), - [aux_sym_visual_host_key_token1] = ACTIONS(1245), - [aux_sym_xauth_location_token1] = ACTIONS(1245), + [ts_builtin_sym_end] = ACTIONS(1502), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1504), + [aux_sym_match_token1] = ACTIONS(1502), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1502), + [aux_sym_address_family_token1] = ACTIONS(1502), + [aux_sym_batch_mode_token1] = ACTIONS(1502), + [aux_sym_bind_address_token1] = ACTIONS(1502), + [aux_sym_bind_interface_token1] = ACTIONS(1502), + [aux_sym_canonical_domains_token1] = ACTIONS(1502), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1502), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1502), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1502), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1502), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1502), + [aux_sym_certificate_file_token1] = ACTIONS(1502), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1502), + [aux_sym_check_host_ip_token1] = ACTIONS(1502), + [aux_sym_ciphers_token1] = ACTIONS(1502), + [aux_sym_cipher_token1] = ACTIONS(1504), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1502), + [aux_sym_compression_token1] = ACTIONS(1502), + [aux_sym_connection_attempts_token1] = ACTIONS(1502), + [aux_sym_connect_timeout_token1] = ACTIONS(1502), + [aux_sym_control_master_token1] = ACTIONS(1502), + [aux_sym_control_path_token1] = ACTIONS(1502), + [aux_sym_control_persist_token1] = ACTIONS(1502), + [aux_sym_dynamic_forward_token1] = ACTIONS(1502), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1502), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1502), + [aux_sym_escape_char_token1] = ACTIONS(1502), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1502), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1502), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1502), + [aux_sym_forward_agent_token1] = ACTIONS(1502), + [aux_sym_forward_x11_token1] = ACTIONS(1504), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1502), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1502), + [aux_sym_gateway_ports_token1] = ACTIONS(1502), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1502), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1502), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1502), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1502), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1502), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1502), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1502), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1502), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1502), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1502), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1502), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1502), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1502), + [aux_sym_host_key_alias_token1] = ACTIONS(1502), + [aux_sym_hostname_token1] = ACTIONS(1502), + [aux_sym_identities_only_token1] = ACTIONS(1502), + [aux_sym_identity_agent_token1] = ACTIONS(1502), + [aux_sym_identity_file_token1] = ACTIONS(1502), + [aux_sym_ignore_unknown_token1] = ACTIONS(1502), + [aux_sym_include_token1] = ACTIONS(1502), + [aux_sym_ip_qos_token1] = ACTIONS(1502), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1502), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1502), + [aux_sym_kex_algorithms_token1] = ACTIONS(1502), + [aux_sym_known_hosts_command_token1] = ACTIONS(1502), + [aux_sym_local_command_token1] = ACTIONS(1502), + [aux_sym_local_forward_token1] = ACTIONS(1502), + [aux_sym_log_level_token1] = ACTIONS(1502), + [aux_sym_log_verbose_token1] = ACTIONS(1502), + [aux_sym_macs_token1] = ACTIONS(1502), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1502), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1502), + [aux_sym_password_authentication_token1] = ACTIONS(1502), + [aux_sym_permit_local_command_token1] = ACTIONS(1502), + [aux_sym_permit_remote_open_token1] = ACTIONS(1502), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1502), + [aux_sym_port_token1] = ACTIONS(1502), + [aux_sym_preferred_authentications_token1] = ACTIONS(1502), + [aux_sym_protocol_token1] = ACTIONS(1502), + [aux_sym_proxy_command_token1] = ACTIONS(1502), + [aux_sym_proxy_jump_token1] = ACTIONS(1502), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1502), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1502), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1502), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1502), + [aux_sym_rekey_limit_token1] = ACTIONS(1502), + [aux_sym_remote_command_token1] = ACTIONS(1502), + [aux_sym_remote_forward_token1] = ACTIONS(1502), + [aux_sym_request_tty_token1] = ACTIONS(1502), + [aux_sym_required_rsa_size_token1] = ACTIONS(1502), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1502), + [aux_sym_security_key_provider_token1] = ACTIONS(1502), + [aux_sym_send_env_token1] = ACTIONS(1502), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1502), + [aux_sym_server_alive_interval_token1] = ACTIONS(1502), + [aux_sym_session_type_token1] = ACTIONS(1502), + [aux_sym_set_env_token1] = ACTIONS(1502), + [aux_sym_stdin_null_token1] = ACTIONS(1502), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1502), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1502), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1502), + [aux_sym_syslog_facility_token1] = ACTIONS(1502), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1502), + [aux_sym_keep_alive_token1] = ACTIONS(1502), + [aux_sym_tunnel_token1] = ACTIONS(1504), + [aux_sym_tunnel_device_token1] = ACTIONS(1502), + [aux_sym_update_host_keys_token1] = ACTIONS(1502), + [aux_sym_use_keychain_token1] = ACTIONS(1502), + [aux_sym_use_roaming_token1] = ACTIONS(1502), + [aux_sym_user_token1] = ACTIONS(1504), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1502), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1502), + [aux_sym_visual_host_key_token1] = ACTIONS(1502), + [aux_sym_xauth_location_token1] = ACTIONS(1502), }, [684] = { - [ts_builtin_sym_end] = ACTIONS(1851), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1853), - [aux_sym_match_token1] = ACTIONS(1851), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1851), - [aux_sym_address_family_token1] = ACTIONS(1851), - [aux_sym_batch_mode_token1] = ACTIONS(1851), - [aux_sym_bind_address_token1] = ACTIONS(1851), - [aux_sym_bind_interface_token1] = ACTIONS(1851), - [aux_sym_canonical_domains_token1] = ACTIONS(1851), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1851), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1851), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1851), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1851), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1851), - [aux_sym_certificate_file_token1] = ACTIONS(1851), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1851), - [aux_sym_check_host_ip_token1] = ACTIONS(1851), - [aux_sym_ciphers_token1] = ACTIONS(1851), - [aux_sym_cipher_token1] = ACTIONS(1853), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1851), - [aux_sym_compression_token1] = ACTIONS(1851), - [aux_sym_connection_attempts_token1] = ACTIONS(1851), - [aux_sym_connect_timeout_token1] = ACTIONS(1851), - [aux_sym_control_master_token1] = ACTIONS(1851), - [aux_sym_control_path_token1] = ACTIONS(1851), - [aux_sym_control_persist_token1] = ACTIONS(1851), - [aux_sym_dynamic_forward_token1] = ACTIONS(1851), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1851), - [aux_sym_escape_char_token1] = ACTIONS(1851), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1851), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1851), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1851), - [aux_sym_forward_agent_token1] = ACTIONS(1851), - [aux_sym_forward_x11_token1] = ACTIONS(1853), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1851), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1851), - [aux_sym_gateway_ports_token1] = ACTIONS(1851), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1851), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1851), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1851), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1851), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1851), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1851), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1851), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1851), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1851), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1851), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1851), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1851), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1851), - [aux_sym_host_key_alias_token1] = ACTIONS(1851), - [aux_sym_hostname_token1] = ACTIONS(1851), - [aux_sym_identities_only_token1] = ACTIONS(1851), - [aux_sym_identity_agent_token1] = ACTIONS(1851), - [aux_sym_identity_file_token1] = ACTIONS(1851), - [aux_sym_ignore_unknown_token1] = ACTIONS(1851), - [aux_sym_include_token1] = ACTIONS(1851), - [aux_sym_ip_qos_token1] = ACTIONS(1851), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1851), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1851), - [aux_sym_kex_algorithms_token1] = ACTIONS(1851), - [aux_sym_known_hosts_command_token1] = ACTIONS(1851), - [aux_sym_local_command_token1] = ACTIONS(1851), - [aux_sym_local_forward_token1] = ACTIONS(1851), - [aux_sym_log_level_token1] = ACTIONS(1851), - [aux_sym_log_verbose_token1] = ACTIONS(1851), - [aux_sym_macs_token1] = ACTIONS(1851), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1851), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1851), - [aux_sym_password_authentication_token1] = ACTIONS(1851), - [aux_sym_permit_local_command_token1] = ACTIONS(1851), - [aux_sym_permit_remote_open_token1] = ACTIONS(1851), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1851), - [aux_sym_port_token1] = ACTIONS(1851), - [aux_sym_preferred_authentications_token1] = ACTIONS(1851), - [aux_sym_protocol_token1] = ACTIONS(1851), - [aux_sym_proxy_command_token1] = ACTIONS(1851), - [aux_sym_proxy_jump_token1] = ACTIONS(1851), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1851), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1851), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1851), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1851), - [aux_sym_rekey_limit_token1] = ACTIONS(1851), - [aux_sym_remote_command_token1] = ACTIONS(1851), - [aux_sym_remote_forward_token1] = ACTIONS(1851), - [aux_sym_request_tty_token1] = ACTIONS(1851), - [aux_sym_required_rsa_size_token1] = ACTIONS(1851), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1851), - [aux_sym_security_key_provider_token1] = ACTIONS(1851), - [aux_sym_send_env_token1] = ACTIONS(1851), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1851), - [aux_sym_server_alive_interval_token1] = ACTIONS(1851), - [aux_sym_session_type_token1] = ACTIONS(1851), - [aux_sym_set_env_token1] = ACTIONS(1851), - [aux_sym_stdin_null_token1] = ACTIONS(1851), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1851), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1851), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1851), - [aux_sym_syslog_facility_token1] = ACTIONS(1851), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1851), - [aux_sym_keep_alive_token1] = ACTIONS(1851), - [aux_sym_tunnel_token1] = ACTIONS(1853), - [aux_sym_tunnel_device_token1] = ACTIONS(1851), - [aux_sym_update_host_keys_token1] = ACTIONS(1851), - [aux_sym_use_keychain_token1] = ACTIONS(1851), - [aux_sym_use_roaming_token1] = ACTIONS(1851), - [aux_sym_user_token1] = ACTIONS(1853), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1851), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1851), - [aux_sym_visual_host_key_token1] = ACTIONS(1851), - [aux_sym_xauth_location_token1] = ACTIONS(1851), + [ts_builtin_sym_end] = ACTIONS(1880), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1882), + [aux_sym_match_token1] = ACTIONS(1880), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1880), + [aux_sym_address_family_token1] = ACTIONS(1880), + [aux_sym_batch_mode_token1] = ACTIONS(1880), + [aux_sym_bind_address_token1] = ACTIONS(1880), + [aux_sym_bind_interface_token1] = ACTIONS(1880), + [aux_sym_canonical_domains_token1] = ACTIONS(1880), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1880), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1880), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1880), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1880), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1880), + [aux_sym_certificate_file_token1] = ACTIONS(1880), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1880), + [aux_sym_check_host_ip_token1] = ACTIONS(1880), + [aux_sym_ciphers_token1] = ACTIONS(1880), + [aux_sym_cipher_token1] = ACTIONS(1882), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1880), + [aux_sym_compression_token1] = ACTIONS(1880), + [aux_sym_connection_attempts_token1] = ACTIONS(1880), + [aux_sym_connect_timeout_token1] = ACTIONS(1880), + [aux_sym_control_master_token1] = ACTIONS(1880), + [aux_sym_control_path_token1] = ACTIONS(1880), + [aux_sym_control_persist_token1] = ACTIONS(1880), + [aux_sym_dynamic_forward_token1] = ACTIONS(1880), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1880), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1880), + [aux_sym_escape_char_token1] = ACTIONS(1880), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1880), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1880), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1880), + [aux_sym_forward_agent_token1] = ACTIONS(1880), + [aux_sym_forward_x11_token1] = ACTIONS(1882), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1880), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1880), + [aux_sym_gateway_ports_token1] = ACTIONS(1880), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1880), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1880), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1880), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1880), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1880), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1880), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1880), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1880), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1880), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1880), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1880), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1880), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1880), + [aux_sym_host_key_alias_token1] = ACTIONS(1880), + [aux_sym_hostname_token1] = ACTIONS(1880), + [aux_sym_identities_only_token1] = ACTIONS(1880), + [aux_sym_identity_agent_token1] = ACTIONS(1880), + [aux_sym_identity_file_token1] = ACTIONS(1880), + [aux_sym_ignore_unknown_token1] = ACTIONS(1880), + [aux_sym_include_token1] = ACTIONS(1880), + [aux_sym_ip_qos_token1] = ACTIONS(1880), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1880), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1880), + [aux_sym_kex_algorithms_token1] = ACTIONS(1880), + [aux_sym_known_hosts_command_token1] = ACTIONS(1880), + [aux_sym_local_command_token1] = ACTIONS(1880), + [aux_sym_local_forward_token1] = ACTIONS(1880), + [aux_sym_log_level_token1] = ACTIONS(1880), + [aux_sym_log_verbose_token1] = ACTIONS(1880), + [aux_sym_macs_token1] = ACTIONS(1880), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1880), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1880), + [aux_sym_password_authentication_token1] = ACTIONS(1880), + [aux_sym_permit_local_command_token1] = ACTIONS(1880), + [aux_sym_permit_remote_open_token1] = ACTIONS(1880), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1880), + [aux_sym_port_token1] = ACTIONS(1880), + [aux_sym_preferred_authentications_token1] = ACTIONS(1880), + [aux_sym_protocol_token1] = ACTIONS(1880), + [aux_sym_proxy_command_token1] = ACTIONS(1880), + [aux_sym_proxy_jump_token1] = ACTIONS(1880), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1880), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1880), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1880), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1880), + [aux_sym_rekey_limit_token1] = ACTIONS(1880), + [aux_sym_remote_command_token1] = ACTIONS(1880), + [aux_sym_remote_forward_token1] = ACTIONS(1880), + [aux_sym_request_tty_token1] = ACTIONS(1880), + [aux_sym_required_rsa_size_token1] = ACTIONS(1880), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1880), + [aux_sym_security_key_provider_token1] = ACTIONS(1880), + [aux_sym_send_env_token1] = ACTIONS(1880), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1880), + [aux_sym_server_alive_interval_token1] = ACTIONS(1880), + [aux_sym_session_type_token1] = ACTIONS(1880), + [aux_sym_set_env_token1] = ACTIONS(1880), + [aux_sym_stdin_null_token1] = ACTIONS(1880), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1880), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1880), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1880), + [aux_sym_syslog_facility_token1] = ACTIONS(1880), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1880), + [aux_sym_keep_alive_token1] = ACTIONS(1880), + [aux_sym_tunnel_token1] = ACTIONS(1882), + [aux_sym_tunnel_device_token1] = ACTIONS(1880), + [aux_sym_update_host_keys_token1] = ACTIONS(1880), + [aux_sym_use_keychain_token1] = ACTIONS(1880), + [aux_sym_use_roaming_token1] = ACTIONS(1880), + [aux_sym_user_token1] = ACTIONS(1882), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1880), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1880), + [aux_sym_visual_host_key_token1] = ACTIONS(1880), + [aux_sym_xauth_location_token1] = ACTIONS(1880), }, [685] = { - [ts_builtin_sym_end] = ACTIONS(1251), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1253), - [aux_sym_match_token1] = ACTIONS(1251), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1251), - [aux_sym_address_family_token1] = ACTIONS(1251), - [aux_sym_batch_mode_token1] = ACTIONS(1251), - [aux_sym_bind_address_token1] = ACTIONS(1251), - [aux_sym_bind_interface_token1] = ACTIONS(1251), - [aux_sym_canonical_domains_token1] = ACTIONS(1251), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1251), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1251), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1251), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1251), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1251), - [aux_sym_certificate_file_token1] = ACTIONS(1251), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1251), - [aux_sym_check_host_ip_token1] = ACTIONS(1251), - [aux_sym_ciphers_token1] = ACTIONS(1251), - [aux_sym_cipher_token1] = ACTIONS(1253), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1251), - [aux_sym_compression_token1] = ACTIONS(1251), - [aux_sym_connection_attempts_token1] = ACTIONS(1251), - [aux_sym_connect_timeout_token1] = ACTIONS(1251), - [aux_sym_control_master_token1] = ACTIONS(1251), - [aux_sym_control_path_token1] = ACTIONS(1251), - [aux_sym_control_persist_token1] = ACTIONS(1251), - [aux_sym_dynamic_forward_token1] = ACTIONS(1251), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1251), - [aux_sym_escape_char_token1] = ACTIONS(1251), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1251), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1251), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1251), - [aux_sym_forward_agent_token1] = ACTIONS(1251), - [aux_sym_forward_x11_token1] = ACTIONS(1253), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1251), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1251), - [aux_sym_gateway_ports_token1] = ACTIONS(1251), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1251), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1251), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1251), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1251), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1251), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1251), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1251), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1251), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1251), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1251), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1251), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1251), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1251), - [aux_sym_host_key_alias_token1] = ACTIONS(1251), - [aux_sym_hostname_token1] = ACTIONS(1251), - [aux_sym_identities_only_token1] = ACTIONS(1251), - [aux_sym_identity_agent_token1] = ACTIONS(1251), - [aux_sym_identity_file_token1] = ACTIONS(1251), - [aux_sym_ignore_unknown_token1] = ACTIONS(1251), - [aux_sym_include_token1] = ACTIONS(1251), - [aux_sym_ip_qos_token1] = ACTIONS(1251), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1251), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1251), - [aux_sym_kex_algorithms_token1] = ACTIONS(1251), - [aux_sym_known_hosts_command_token1] = ACTIONS(1251), - [aux_sym_local_command_token1] = ACTIONS(1251), - [aux_sym_local_forward_token1] = ACTIONS(1251), - [aux_sym_log_level_token1] = ACTIONS(1251), - [aux_sym_log_verbose_token1] = ACTIONS(1251), - [aux_sym_macs_token1] = ACTIONS(1251), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1251), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1251), - [aux_sym_password_authentication_token1] = ACTIONS(1251), - [aux_sym_permit_local_command_token1] = ACTIONS(1251), - [aux_sym_permit_remote_open_token1] = ACTIONS(1251), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1251), - [aux_sym_port_token1] = ACTIONS(1251), - [aux_sym_preferred_authentications_token1] = ACTIONS(1251), - [aux_sym_protocol_token1] = ACTIONS(1251), - [aux_sym_proxy_command_token1] = ACTIONS(1251), - [aux_sym_proxy_jump_token1] = ACTIONS(1251), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1251), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1251), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1251), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1251), - [aux_sym_rekey_limit_token1] = ACTIONS(1251), - [aux_sym_remote_command_token1] = ACTIONS(1251), - [aux_sym_remote_forward_token1] = ACTIONS(1251), - [aux_sym_request_tty_token1] = ACTIONS(1251), - [aux_sym_required_rsa_size_token1] = ACTIONS(1251), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1251), - [aux_sym_security_key_provider_token1] = ACTIONS(1251), - [aux_sym_send_env_token1] = ACTIONS(1251), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1251), - [aux_sym_server_alive_interval_token1] = ACTIONS(1251), - [aux_sym_session_type_token1] = ACTIONS(1251), - [aux_sym_set_env_token1] = ACTIONS(1251), - [aux_sym_stdin_null_token1] = ACTIONS(1251), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1251), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1251), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1251), - [aux_sym_syslog_facility_token1] = ACTIONS(1251), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1251), - [aux_sym_keep_alive_token1] = ACTIONS(1251), - [aux_sym_tunnel_token1] = ACTIONS(1253), - [aux_sym_tunnel_device_token1] = ACTIONS(1251), - [aux_sym_update_host_keys_token1] = ACTIONS(1251), - [aux_sym_use_keychain_token1] = ACTIONS(1251), - [aux_sym_use_roaming_token1] = ACTIONS(1251), - [aux_sym_user_token1] = ACTIONS(1253), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1251), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1251), - [aux_sym_visual_host_key_token1] = ACTIONS(1251), - [aux_sym_xauth_location_token1] = ACTIONS(1251), + [ts_builtin_sym_end] = ACTIONS(848), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(850), + [aux_sym_match_token1] = ACTIONS(848), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(848), + [aux_sym_address_family_token1] = ACTIONS(848), + [aux_sym_batch_mode_token1] = ACTIONS(848), + [aux_sym_bind_address_token1] = ACTIONS(848), + [aux_sym_bind_interface_token1] = ACTIONS(848), + [aux_sym_canonical_domains_token1] = ACTIONS(848), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(848), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(848), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(848), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(848), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(848), + [aux_sym_certificate_file_token1] = ACTIONS(848), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(848), + [aux_sym_check_host_ip_token1] = ACTIONS(848), + [aux_sym_ciphers_token1] = ACTIONS(848), + [aux_sym_cipher_token1] = ACTIONS(850), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(848), + [aux_sym_compression_token1] = ACTIONS(848), + [aux_sym_connection_attempts_token1] = ACTIONS(848), + [aux_sym_connect_timeout_token1] = ACTIONS(848), + [aux_sym_control_master_token1] = ACTIONS(848), + [aux_sym_control_path_token1] = ACTIONS(848), + [aux_sym_control_persist_token1] = ACTIONS(848), + [aux_sym_dynamic_forward_token1] = ACTIONS(848), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(848), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(848), + [aux_sym_escape_char_token1] = ACTIONS(848), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(848), + [aux_sym_fingerprint_hash_token1] = ACTIONS(848), + [aux_sym_fork_after_authentication_token1] = ACTIONS(848), + [aux_sym_forward_agent_token1] = ACTIONS(848), + [aux_sym_forward_x11_token1] = ACTIONS(850), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(848), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(848), + [aux_sym_gateway_ports_token1] = ACTIONS(848), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(848), + [aux_sym_gssapi_authentication_token1] = ACTIONS(848), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(848), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(848), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(848), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(848), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(848), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(848), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(848), + [aux_sym_hash_known_hosts_token1] = ACTIONS(848), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(848), + [aux_sym_hostbased_authentication_token1] = ACTIONS(848), + [aux_sym_host_key_algorithms_token1] = ACTIONS(848), + [aux_sym_host_key_alias_token1] = ACTIONS(848), + [aux_sym_hostname_token1] = ACTIONS(848), + [aux_sym_identities_only_token1] = ACTIONS(848), + [aux_sym_identity_agent_token1] = ACTIONS(848), + [aux_sym_identity_file_token1] = ACTIONS(848), + [aux_sym_ignore_unknown_token1] = ACTIONS(848), + [aux_sym_include_token1] = ACTIONS(848), + [aux_sym_ip_qos_token1] = ACTIONS(848), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(848), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(848), + [aux_sym_kex_algorithms_token1] = ACTIONS(848), + [aux_sym_known_hosts_command_token1] = ACTIONS(848), + [aux_sym_local_command_token1] = ACTIONS(848), + [aux_sym_local_forward_token1] = ACTIONS(848), + [aux_sym_log_level_token1] = ACTIONS(848), + [aux_sym_log_verbose_token1] = ACTIONS(848), + [aux_sym_macs_token1] = ACTIONS(848), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(848), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(848), + [aux_sym_password_authentication_token1] = ACTIONS(848), + [aux_sym_permit_local_command_token1] = ACTIONS(848), + [aux_sym_permit_remote_open_token1] = ACTIONS(848), + [aux_sym_pkcs11_provider_token1] = ACTIONS(848), + [aux_sym_port_token1] = ACTIONS(848), + [aux_sym_preferred_authentications_token1] = ACTIONS(848), + [aux_sym_protocol_token1] = ACTIONS(848), + [aux_sym_proxy_command_token1] = ACTIONS(848), + [aux_sym_proxy_jump_token1] = ACTIONS(848), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(848), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(848), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(848), + [aux_sym_pubkey_authentication_token1] = ACTIONS(848), + [aux_sym_rekey_limit_token1] = ACTIONS(848), + [aux_sym_remote_command_token1] = ACTIONS(848), + [aux_sym_remote_forward_token1] = ACTIONS(848), + [aux_sym_request_tty_token1] = ACTIONS(848), + [aux_sym_required_rsa_size_token1] = ACTIONS(848), + [aux_sym_revoked_host_keys_token1] = ACTIONS(848), + [aux_sym_security_key_provider_token1] = ACTIONS(848), + [aux_sym_send_env_token1] = ACTIONS(848), + [aux_sym_server_alive_count_max_token1] = ACTIONS(848), + [aux_sym_server_alive_interval_token1] = ACTIONS(848), + [aux_sym_session_type_token1] = ACTIONS(848), + [aux_sym_set_env_token1] = ACTIONS(848), + [aux_sym_stdin_null_token1] = ACTIONS(848), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(848), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(848), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(848), + [aux_sym_syslog_facility_token1] = ACTIONS(848), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(848), + [aux_sym_keep_alive_token1] = ACTIONS(848), + [aux_sym_tunnel_token1] = ACTIONS(850), + [aux_sym_tunnel_device_token1] = ACTIONS(848), + [aux_sym_update_host_keys_token1] = ACTIONS(848), + [aux_sym_use_keychain_token1] = ACTIONS(848), + [aux_sym_use_roaming_token1] = ACTIONS(848), + [aux_sym_user_token1] = ACTIONS(850), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(848), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(848), + [aux_sym_visual_host_key_token1] = ACTIONS(848), + [aux_sym_xauth_location_token1] = ACTIONS(848), }, [686] = { - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1259), - [aux_sym_match_token1] = ACTIONS(1257), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1257), - [aux_sym_address_family_token1] = ACTIONS(1257), - [aux_sym_batch_mode_token1] = ACTIONS(1257), - [aux_sym_bind_address_token1] = ACTIONS(1257), - [aux_sym_bind_interface_token1] = ACTIONS(1257), - [aux_sym_canonical_domains_token1] = ACTIONS(1257), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1257), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1257), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1257), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1257), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1257), - [aux_sym_certificate_file_token1] = ACTIONS(1257), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1257), - [aux_sym_check_host_ip_token1] = ACTIONS(1257), - [aux_sym_ciphers_token1] = ACTIONS(1257), - [aux_sym_cipher_token1] = ACTIONS(1259), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1257), - [aux_sym_compression_token1] = ACTIONS(1257), - [aux_sym_connection_attempts_token1] = ACTIONS(1257), - [aux_sym_connect_timeout_token1] = ACTIONS(1257), - [aux_sym_control_master_token1] = ACTIONS(1257), - [aux_sym_control_path_token1] = ACTIONS(1257), - [aux_sym_control_persist_token1] = ACTIONS(1257), - [aux_sym_dynamic_forward_token1] = ACTIONS(1257), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1257), - [aux_sym_escape_char_token1] = ACTIONS(1257), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1257), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1257), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1257), - [aux_sym_forward_agent_token1] = ACTIONS(1257), - [aux_sym_forward_x11_token1] = ACTIONS(1259), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1257), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1257), - [aux_sym_gateway_ports_token1] = ACTIONS(1257), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1257), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1257), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1257), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1257), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1257), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1257), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1257), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1257), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1257), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1257), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1257), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1257), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1257), - [aux_sym_host_key_alias_token1] = ACTIONS(1257), - [aux_sym_hostname_token1] = ACTIONS(1257), - [aux_sym_identities_only_token1] = ACTIONS(1257), - [aux_sym_identity_agent_token1] = ACTIONS(1257), - [aux_sym_identity_file_token1] = ACTIONS(1257), - [aux_sym_ignore_unknown_token1] = ACTIONS(1257), - [aux_sym_include_token1] = ACTIONS(1257), - [aux_sym_ip_qos_token1] = ACTIONS(1257), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1257), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1257), - [aux_sym_kex_algorithms_token1] = ACTIONS(1257), - [aux_sym_known_hosts_command_token1] = ACTIONS(1257), - [aux_sym_local_command_token1] = ACTIONS(1257), - [aux_sym_local_forward_token1] = ACTIONS(1257), - [aux_sym_log_level_token1] = ACTIONS(1257), - [aux_sym_log_verbose_token1] = ACTIONS(1257), - [aux_sym_macs_token1] = ACTIONS(1257), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1257), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1257), - [aux_sym_password_authentication_token1] = ACTIONS(1257), - [aux_sym_permit_local_command_token1] = ACTIONS(1257), - [aux_sym_permit_remote_open_token1] = ACTIONS(1257), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1257), - [aux_sym_port_token1] = ACTIONS(1257), - [aux_sym_preferred_authentications_token1] = ACTIONS(1257), - [aux_sym_protocol_token1] = ACTIONS(1257), - [aux_sym_proxy_command_token1] = ACTIONS(1257), - [aux_sym_proxy_jump_token1] = ACTIONS(1257), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1257), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1257), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1257), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1257), - [aux_sym_rekey_limit_token1] = ACTIONS(1257), - [aux_sym_remote_command_token1] = ACTIONS(1257), - [aux_sym_remote_forward_token1] = ACTIONS(1257), - [aux_sym_request_tty_token1] = ACTIONS(1257), - [aux_sym_required_rsa_size_token1] = ACTIONS(1257), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1257), - [aux_sym_security_key_provider_token1] = ACTIONS(1257), - [aux_sym_send_env_token1] = ACTIONS(1257), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1257), - [aux_sym_server_alive_interval_token1] = ACTIONS(1257), - [aux_sym_session_type_token1] = ACTIONS(1257), - [aux_sym_set_env_token1] = ACTIONS(1257), - [aux_sym_stdin_null_token1] = ACTIONS(1257), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1257), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1257), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1257), - [aux_sym_syslog_facility_token1] = ACTIONS(1257), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1257), - [aux_sym_keep_alive_token1] = ACTIONS(1257), - [aux_sym_tunnel_token1] = ACTIONS(1259), - [aux_sym_tunnel_device_token1] = ACTIONS(1257), - [aux_sym_update_host_keys_token1] = ACTIONS(1257), - [aux_sym_use_keychain_token1] = ACTIONS(1257), - [aux_sym_use_roaming_token1] = ACTIONS(1257), - [aux_sym_user_token1] = ACTIONS(1259), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1257), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1257), - [aux_sym_visual_host_key_token1] = ACTIONS(1257), - [aux_sym_xauth_location_token1] = ACTIONS(1257), + [ts_builtin_sym_end] = ACTIONS(1508), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1510), + [aux_sym_match_token1] = ACTIONS(1508), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1508), + [aux_sym_address_family_token1] = ACTIONS(1508), + [aux_sym_batch_mode_token1] = ACTIONS(1508), + [aux_sym_bind_address_token1] = ACTIONS(1508), + [aux_sym_bind_interface_token1] = ACTIONS(1508), + [aux_sym_canonical_domains_token1] = ACTIONS(1508), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1508), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1508), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1508), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1508), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1508), + [aux_sym_certificate_file_token1] = ACTIONS(1508), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1508), + [aux_sym_check_host_ip_token1] = ACTIONS(1508), + [aux_sym_ciphers_token1] = ACTIONS(1508), + [aux_sym_cipher_token1] = ACTIONS(1510), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1508), + [aux_sym_compression_token1] = ACTIONS(1508), + [aux_sym_connection_attempts_token1] = ACTIONS(1508), + [aux_sym_connect_timeout_token1] = ACTIONS(1508), + [aux_sym_control_master_token1] = ACTIONS(1508), + [aux_sym_control_path_token1] = ACTIONS(1508), + [aux_sym_control_persist_token1] = ACTIONS(1508), + [aux_sym_dynamic_forward_token1] = ACTIONS(1508), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1508), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1508), + [aux_sym_escape_char_token1] = ACTIONS(1508), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1508), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1508), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1508), + [aux_sym_forward_agent_token1] = ACTIONS(1508), + [aux_sym_forward_x11_token1] = ACTIONS(1510), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1508), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1508), + [aux_sym_gateway_ports_token1] = ACTIONS(1508), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1508), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1508), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1508), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1508), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1508), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1508), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1508), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1508), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1508), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1508), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1508), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1508), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1508), + [aux_sym_host_key_alias_token1] = ACTIONS(1508), + [aux_sym_hostname_token1] = ACTIONS(1508), + [aux_sym_identities_only_token1] = ACTIONS(1508), + [aux_sym_identity_agent_token1] = ACTIONS(1508), + [aux_sym_identity_file_token1] = ACTIONS(1508), + [aux_sym_ignore_unknown_token1] = ACTIONS(1508), + [aux_sym_include_token1] = ACTIONS(1508), + [aux_sym_ip_qos_token1] = ACTIONS(1508), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1508), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1508), + [aux_sym_kex_algorithms_token1] = ACTIONS(1508), + [aux_sym_known_hosts_command_token1] = ACTIONS(1508), + [aux_sym_local_command_token1] = ACTIONS(1508), + [aux_sym_local_forward_token1] = ACTIONS(1508), + [aux_sym_log_level_token1] = ACTIONS(1508), + [aux_sym_log_verbose_token1] = ACTIONS(1508), + [aux_sym_macs_token1] = ACTIONS(1508), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1508), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1508), + [aux_sym_password_authentication_token1] = ACTIONS(1508), + [aux_sym_permit_local_command_token1] = ACTIONS(1508), + [aux_sym_permit_remote_open_token1] = ACTIONS(1508), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1508), + [aux_sym_port_token1] = ACTIONS(1508), + [aux_sym_preferred_authentications_token1] = ACTIONS(1508), + [aux_sym_protocol_token1] = ACTIONS(1508), + [aux_sym_proxy_command_token1] = ACTIONS(1508), + [aux_sym_proxy_jump_token1] = ACTIONS(1508), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1508), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1508), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1508), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1508), + [aux_sym_rekey_limit_token1] = ACTIONS(1508), + [aux_sym_remote_command_token1] = ACTIONS(1508), + [aux_sym_remote_forward_token1] = ACTIONS(1508), + [aux_sym_request_tty_token1] = ACTIONS(1508), + [aux_sym_required_rsa_size_token1] = ACTIONS(1508), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1508), + [aux_sym_security_key_provider_token1] = ACTIONS(1508), + [aux_sym_send_env_token1] = ACTIONS(1508), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1508), + [aux_sym_server_alive_interval_token1] = ACTIONS(1508), + [aux_sym_session_type_token1] = ACTIONS(1508), + [aux_sym_set_env_token1] = ACTIONS(1508), + [aux_sym_stdin_null_token1] = ACTIONS(1508), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1508), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1508), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1508), + [aux_sym_syslog_facility_token1] = ACTIONS(1508), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1508), + [aux_sym_keep_alive_token1] = ACTIONS(1508), + [aux_sym_tunnel_token1] = ACTIONS(1510), + [aux_sym_tunnel_device_token1] = ACTIONS(1508), + [aux_sym_update_host_keys_token1] = ACTIONS(1508), + [aux_sym_use_keychain_token1] = ACTIONS(1508), + [aux_sym_use_roaming_token1] = ACTIONS(1508), + [aux_sym_user_token1] = ACTIONS(1510), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1508), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1508), + [aux_sym_visual_host_key_token1] = ACTIONS(1508), + [aux_sym_xauth_location_token1] = ACTIONS(1508), }, [687] = { - [ts_builtin_sym_end] = ACTIONS(1845), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1847), - [aux_sym_match_token1] = ACTIONS(1845), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1845), - [aux_sym_address_family_token1] = ACTIONS(1845), - [aux_sym_batch_mode_token1] = ACTIONS(1845), - [aux_sym_bind_address_token1] = ACTIONS(1845), - [aux_sym_bind_interface_token1] = ACTIONS(1845), - [aux_sym_canonical_domains_token1] = ACTIONS(1845), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1845), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1845), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1845), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1845), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1845), - [aux_sym_certificate_file_token1] = ACTIONS(1845), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1845), - [aux_sym_check_host_ip_token1] = ACTIONS(1845), - [aux_sym_ciphers_token1] = ACTIONS(1845), - [aux_sym_cipher_token1] = ACTIONS(1847), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1845), - [aux_sym_compression_token1] = ACTIONS(1845), - [aux_sym_connection_attempts_token1] = ACTIONS(1845), - [aux_sym_connect_timeout_token1] = ACTIONS(1845), - [aux_sym_control_master_token1] = ACTIONS(1845), - [aux_sym_control_path_token1] = ACTIONS(1845), - [aux_sym_control_persist_token1] = ACTIONS(1845), - [aux_sym_dynamic_forward_token1] = ACTIONS(1845), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1845), - [aux_sym_escape_char_token1] = ACTIONS(1845), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1845), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1845), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1845), - [aux_sym_forward_agent_token1] = ACTIONS(1845), - [aux_sym_forward_x11_token1] = ACTIONS(1847), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1845), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1845), - [aux_sym_gateway_ports_token1] = ACTIONS(1845), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1845), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1845), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1845), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1845), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1845), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1845), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1845), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1845), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1845), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1845), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1845), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1845), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1845), - [aux_sym_host_key_alias_token1] = ACTIONS(1845), - [aux_sym_hostname_token1] = ACTIONS(1845), - [aux_sym_identities_only_token1] = ACTIONS(1845), - [aux_sym_identity_agent_token1] = ACTIONS(1845), - [aux_sym_identity_file_token1] = ACTIONS(1845), - [aux_sym_ignore_unknown_token1] = ACTIONS(1845), - [aux_sym_include_token1] = ACTIONS(1845), - [aux_sym_ip_qos_token1] = ACTIONS(1845), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1845), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1845), - [aux_sym_kex_algorithms_token1] = ACTIONS(1845), - [aux_sym_known_hosts_command_token1] = ACTIONS(1845), - [aux_sym_local_command_token1] = ACTIONS(1845), - [aux_sym_local_forward_token1] = ACTIONS(1845), - [aux_sym_log_level_token1] = ACTIONS(1845), - [aux_sym_log_verbose_token1] = ACTIONS(1845), - [aux_sym_macs_token1] = ACTIONS(1845), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1845), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1845), - [aux_sym_password_authentication_token1] = ACTIONS(1845), - [aux_sym_permit_local_command_token1] = ACTIONS(1845), - [aux_sym_permit_remote_open_token1] = ACTIONS(1845), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1845), - [aux_sym_port_token1] = ACTIONS(1845), - [aux_sym_preferred_authentications_token1] = ACTIONS(1845), - [aux_sym_protocol_token1] = ACTIONS(1845), - [aux_sym_proxy_command_token1] = ACTIONS(1845), - [aux_sym_proxy_jump_token1] = ACTIONS(1845), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1845), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1845), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1845), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1845), - [aux_sym_rekey_limit_token1] = ACTIONS(1845), - [aux_sym_remote_command_token1] = ACTIONS(1845), - [aux_sym_remote_forward_token1] = ACTIONS(1845), - [aux_sym_request_tty_token1] = ACTIONS(1845), - [aux_sym_required_rsa_size_token1] = ACTIONS(1845), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1845), - [aux_sym_security_key_provider_token1] = ACTIONS(1845), - [aux_sym_send_env_token1] = ACTIONS(1845), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1845), - [aux_sym_server_alive_interval_token1] = ACTIONS(1845), - [aux_sym_session_type_token1] = ACTIONS(1845), - [aux_sym_set_env_token1] = ACTIONS(1845), - [aux_sym_stdin_null_token1] = ACTIONS(1845), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1845), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1845), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1845), - [aux_sym_syslog_facility_token1] = ACTIONS(1845), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1845), - [aux_sym_keep_alive_token1] = ACTIONS(1845), - [aux_sym_tunnel_token1] = ACTIONS(1847), - [aux_sym_tunnel_device_token1] = ACTIONS(1845), - [aux_sym_update_host_keys_token1] = ACTIONS(1845), - [aux_sym_use_keychain_token1] = ACTIONS(1845), - [aux_sym_use_roaming_token1] = ACTIONS(1845), - [aux_sym_user_token1] = ACTIONS(1847), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1845), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1845), - [aux_sym_visual_host_key_token1] = ACTIONS(1845), - [aux_sym_xauth_location_token1] = ACTIONS(1845), + [ts_builtin_sym_end] = ACTIONS(1874), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1876), + [aux_sym_match_token1] = ACTIONS(1874), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1874), + [aux_sym_address_family_token1] = ACTIONS(1874), + [aux_sym_batch_mode_token1] = ACTIONS(1874), + [aux_sym_bind_address_token1] = ACTIONS(1874), + [aux_sym_bind_interface_token1] = ACTIONS(1874), + [aux_sym_canonical_domains_token1] = ACTIONS(1874), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1874), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1874), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1874), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1874), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1874), + [aux_sym_certificate_file_token1] = ACTIONS(1874), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1874), + [aux_sym_check_host_ip_token1] = ACTIONS(1874), + [aux_sym_ciphers_token1] = ACTIONS(1874), + [aux_sym_cipher_token1] = ACTIONS(1876), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1874), + [aux_sym_compression_token1] = ACTIONS(1874), + [aux_sym_connection_attempts_token1] = ACTIONS(1874), + [aux_sym_connect_timeout_token1] = ACTIONS(1874), + [aux_sym_control_master_token1] = ACTIONS(1874), + [aux_sym_control_path_token1] = ACTIONS(1874), + [aux_sym_control_persist_token1] = ACTIONS(1874), + [aux_sym_dynamic_forward_token1] = ACTIONS(1874), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1874), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1874), + [aux_sym_escape_char_token1] = ACTIONS(1874), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1874), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1874), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1874), + [aux_sym_forward_agent_token1] = ACTIONS(1874), + [aux_sym_forward_x11_token1] = ACTIONS(1876), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1874), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1874), + [aux_sym_gateway_ports_token1] = ACTIONS(1874), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1874), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1874), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1874), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1874), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1874), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1874), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1874), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1874), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1874), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1874), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1874), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1874), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1874), + [aux_sym_host_key_alias_token1] = ACTIONS(1874), + [aux_sym_hostname_token1] = ACTIONS(1874), + [aux_sym_identities_only_token1] = ACTIONS(1874), + [aux_sym_identity_agent_token1] = ACTIONS(1874), + [aux_sym_identity_file_token1] = ACTIONS(1874), + [aux_sym_ignore_unknown_token1] = ACTIONS(1874), + [aux_sym_include_token1] = ACTIONS(1874), + [aux_sym_ip_qos_token1] = ACTIONS(1874), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1874), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1874), + [aux_sym_kex_algorithms_token1] = ACTIONS(1874), + [aux_sym_known_hosts_command_token1] = ACTIONS(1874), + [aux_sym_local_command_token1] = ACTIONS(1874), + [aux_sym_local_forward_token1] = ACTIONS(1874), + [aux_sym_log_level_token1] = ACTIONS(1874), + [aux_sym_log_verbose_token1] = ACTIONS(1874), + [aux_sym_macs_token1] = ACTIONS(1874), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1874), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1874), + [aux_sym_password_authentication_token1] = ACTIONS(1874), + [aux_sym_permit_local_command_token1] = ACTIONS(1874), + [aux_sym_permit_remote_open_token1] = ACTIONS(1874), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1874), + [aux_sym_port_token1] = ACTIONS(1874), + [aux_sym_preferred_authentications_token1] = ACTIONS(1874), + [aux_sym_protocol_token1] = ACTIONS(1874), + [aux_sym_proxy_command_token1] = ACTIONS(1874), + [aux_sym_proxy_jump_token1] = ACTIONS(1874), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1874), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1874), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1874), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1874), + [aux_sym_rekey_limit_token1] = ACTIONS(1874), + [aux_sym_remote_command_token1] = ACTIONS(1874), + [aux_sym_remote_forward_token1] = ACTIONS(1874), + [aux_sym_request_tty_token1] = ACTIONS(1874), + [aux_sym_required_rsa_size_token1] = ACTIONS(1874), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1874), + [aux_sym_security_key_provider_token1] = ACTIONS(1874), + [aux_sym_send_env_token1] = ACTIONS(1874), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1874), + [aux_sym_server_alive_interval_token1] = ACTIONS(1874), + [aux_sym_session_type_token1] = ACTIONS(1874), + [aux_sym_set_env_token1] = ACTIONS(1874), + [aux_sym_stdin_null_token1] = ACTIONS(1874), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1874), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1874), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1874), + [aux_sym_syslog_facility_token1] = ACTIONS(1874), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1874), + [aux_sym_keep_alive_token1] = ACTIONS(1874), + [aux_sym_tunnel_token1] = ACTIONS(1876), + [aux_sym_tunnel_device_token1] = ACTIONS(1874), + [aux_sym_update_host_keys_token1] = ACTIONS(1874), + [aux_sym_use_keychain_token1] = ACTIONS(1874), + [aux_sym_use_roaming_token1] = ACTIONS(1874), + [aux_sym_user_token1] = ACTIONS(1876), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1874), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1874), + [aux_sym_visual_host_key_token1] = ACTIONS(1874), + [aux_sym_xauth_location_token1] = ACTIONS(1874), }, [688] = { - [ts_builtin_sym_end] = ACTIONS(1263), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1265), - [aux_sym_match_token1] = ACTIONS(1263), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1263), - [aux_sym_address_family_token1] = ACTIONS(1263), - [aux_sym_batch_mode_token1] = ACTIONS(1263), - [aux_sym_bind_address_token1] = ACTIONS(1263), - [aux_sym_bind_interface_token1] = ACTIONS(1263), - [aux_sym_canonical_domains_token1] = ACTIONS(1263), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1263), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1263), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1263), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1263), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1263), - [aux_sym_certificate_file_token1] = ACTIONS(1263), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1263), - [aux_sym_check_host_ip_token1] = ACTIONS(1263), - [aux_sym_ciphers_token1] = ACTIONS(1263), - [aux_sym_cipher_token1] = ACTIONS(1265), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1263), - [aux_sym_compression_token1] = ACTIONS(1263), - [aux_sym_connection_attempts_token1] = ACTIONS(1263), - [aux_sym_connect_timeout_token1] = ACTIONS(1263), - [aux_sym_control_master_token1] = ACTIONS(1263), - [aux_sym_control_path_token1] = ACTIONS(1263), - [aux_sym_control_persist_token1] = ACTIONS(1263), - [aux_sym_dynamic_forward_token1] = ACTIONS(1263), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1263), - [aux_sym_escape_char_token1] = ACTIONS(1263), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1263), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1263), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1263), - [aux_sym_forward_agent_token1] = ACTIONS(1263), - [aux_sym_forward_x11_token1] = ACTIONS(1265), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1263), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1263), - [aux_sym_gateway_ports_token1] = ACTIONS(1263), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1263), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1263), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1263), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1263), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1263), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1263), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1263), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1263), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1263), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1263), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1263), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1263), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1263), - [aux_sym_host_key_alias_token1] = ACTIONS(1263), - [aux_sym_hostname_token1] = ACTIONS(1263), - [aux_sym_identities_only_token1] = ACTIONS(1263), - [aux_sym_identity_agent_token1] = ACTIONS(1263), - [aux_sym_identity_file_token1] = ACTIONS(1263), - [aux_sym_ignore_unknown_token1] = ACTIONS(1263), - [aux_sym_include_token1] = ACTIONS(1263), - [aux_sym_ip_qos_token1] = ACTIONS(1263), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1263), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1263), - [aux_sym_kex_algorithms_token1] = ACTIONS(1263), - [aux_sym_known_hosts_command_token1] = ACTIONS(1263), - [aux_sym_local_command_token1] = ACTIONS(1263), - [aux_sym_local_forward_token1] = ACTIONS(1263), - [aux_sym_log_level_token1] = ACTIONS(1263), - [aux_sym_log_verbose_token1] = ACTIONS(1263), - [aux_sym_macs_token1] = ACTIONS(1263), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1263), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1263), - [aux_sym_password_authentication_token1] = ACTIONS(1263), - [aux_sym_permit_local_command_token1] = ACTIONS(1263), - [aux_sym_permit_remote_open_token1] = ACTIONS(1263), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1263), - [aux_sym_port_token1] = ACTIONS(1263), - [aux_sym_preferred_authentications_token1] = ACTIONS(1263), - [aux_sym_protocol_token1] = ACTIONS(1263), - [aux_sym_proxy_command_token1] = ACTIONS(1263), - [aux_sym_proxy_jump_token1] = ACTIONS(1263), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1263), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1263), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1263), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1263), - [aux_sym_rekey_limit_token1] = ACTIONS(1263), - [aux_sym_remote_command_token1] = ACTIONS(1263), - [aux_sym_remote_forward_token1] = ACTIONS(1263), - [aux_sym_request_tty_token1] = ACTIONS(1263), - [aux_sym_required_rsa_size_token1] = ACTIONS(1263), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1263), - [aux_sym_security_key_provider_token1] = ACTIONS(1263), - [aux_sym_send_env_token1] = ACTIONS(1263), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1263), - [aux_sym_server_alive_interval_token1] = ACTIONS(1263), - [aux_sym_session_type_token1] = ACTIONS(1263), - [aux_sym_set_env_token1] = ACTIONS(1263), - [aux_sym_stdin_null_token1] = ACTIONS(1263), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1263), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1263), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1263), - [aux_sym_syslog_facility_token1] = ACTIONS(1263), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1263), - [aux_sym_keep_alive_token1] = ACTIONS(1263), - [aux_sym_tunnel_token1] = ACTIONS(1265), - [aux_sym_tunnel_device_token1] = ACTIONS(1263), - [aux_sym_update_host_keys_token1] = ACTIONS(1263), - [aux_sym_use_keychain_token1] = ACTIONS(1263), - [aux_sym_use_roaming_token1] = ACTIONS(1263), - [aux_sym_user_token1] = ACTIONS(1265), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1263), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1263), - [aux_sym_visual_host_key_token1] = ACTIONS(1263), - [aux_sym_xauth_location_token1] = ACTIONS(1263), + [ts_builtin_sym_end] = ACTIONS(638), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(640), + [aux_sym_match_token1] = ACTIONS(638), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(638), + [aux_sym_address_family_token1] = ACTIONS(638), + [aux_sym_batch_mode_token1] = ACTIONS(638), + [aux_sym_bind_address_token1] = ACTIONS(638), + [aux_sym_bind_interface_token1] = ACTIONS(638), + [aux_sym_canonical_domains_token1] = ACTIONS(638), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(638), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(638), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(638), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(638), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(638), + [aux_sym_certificate_file_token1] = ACTIONS(638), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(638), + [aux_sym_check_host_ip_token1] = ACTIONS(638), + [aux_sym_ciphers_token1] = ACTIONS(638), + [aux_sym_cipher_token1] = ACTIONS(640), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(638), + [aux_sym_compression_token1] = ACTIONS(638), + [aux_sym_connection_attempts_token1] = ACTIONS(638), + [aux_sym_connect_timeout_token1] = ACTIONS(638), + [aux_sym_control_master_token1] = ACTIONS(638), + [aux_sym_control_path_token1] = ACTIONS(638), + [aux_sym_control_persist_token1] = ACTIONS(638), + [aux_sym_dynamic_forward_token1] = ACTIONS(638), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(638), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(638), + [aux_sym_escape_char_token1] = ACTIONS(638), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(638), + [aux_sym_fingerprint_hash_token1] = ACTIONS(638), + [aux_sym_fork_after_authentication_token1] = ACTIONS(638), + [aux_sym_forward_agent_token1] = ACTIONS(638), + [aux_sym_forward_x11_token1] = ACTIONS(640), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(638), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(638), + [aux_sym_gateway_ports_token1] = ACTIONS(638), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(638), + [aux_sym_gssapi_authentication_token1] = ACTIONS(638), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(638), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(638), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(638), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(638), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(638), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(638), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(638), + [aux_sym_hash_known_hosts_token1] = ACTIONS(638), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(638), + [aux_sym_hostbased_authentication_token1] = ACTIONS(638), + [aux_sym_host_key_algorithms_token1] = ACTIONS(638), + [aux_sym_host_key_alias_token1] = ACTIONS(638), + [aux_sym_hostname_token1] = ACTIONS(638), + [aux_sym_identities_only_token1] = ACTIONS(638), + [aux_sym_identity_agent_token1] = ACTIONS(638), + [aux_sym_identity_file_token1] = ACTIONS(638), + [aux_sym_ignore_unknown_token1] = ACTIONS(638), + [aux_sym_include_token1] = ACTIONS(638), + [aux_sym_ip_qos_token1] = ACTIONS(638), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(638), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(638), + [aux_sym_kex_algorithms_token1] = ACTIONS(638), + [aux_sym_known_hosts_command_token1] = ACTIONS(638), + [aux_sym_local_command_token1] = ACTIONS(638), + [aux_sym_local_forward_token1] = ACTIONS(638), + [aux_sym_log_level_token1] = ACTIONS(638), + [aux_sym_log_verbose_token1] = ACTIONS(638), + [aux_sym_macs_token1] = ACTIONS(638), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(638), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(638), + [aux_sym_password_authentication_token1] = ACTIONS(638), + [aux_sym_permit_local_command_token1] = ACTIONS(638), + [aux_sym_permit_remote_open_token1] = ACTIONS(638), + [aux_sym_pkcs11_provider_token1] = ACTIONS(638), + [aux_sym_port_token1] = ACTIONS(638), + [aux_sym_preferred_authentications_token1] = ACTIONS(638), + [aux_sym_protocol_token1] = ACTIONS(638), + [aux_sym_proxy_command_token1] = ACTIONS(638), + [aux_sym_proxy_jump_token1] = ACTIONS(638), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(638), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(638), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(638), + [aux_sym_pubkey_authentication_token1] = ACTIONS(638), + [aux_sym_rekey_limit_token1] = ACTIONS(638), + [aux_sym_remote_command_token1] = ACTIONS(638), + [aux_sym_remote_forward_token1] = ACTIONS(638), + [aux_sym_request_tty_token1] = ACTIONS(638), + [aux_sym_required_rsa_size_token1] = ACTIONS(638), + [aux_sym_revoked_host_keys_token1] = ACTIONS(638), + [aux_sym_security_key_provider_token1] = ACTIONS(638), + [aux_sym_send_env_token1] = ACTIONS(638), + [aux_sym_server_alive_count_max_token1] = ACTIONS(638), + [aux_sym_server_alive_interval_token1] = ACTIONS(638), + [aux_sym_session_type_token1] = ACTIONS(638), + [aux_sym_set_env_token1] = ACTIONS(638), + [aux_sym_stdin_null_token1] = ACTIONS(638), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(638), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(638), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(638), + [aux_sym_syslog_facility_token1] = ACTIONS(638), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(638), + [aux_sym_keep_alive_token1] = ACTIONS(638), + [aux_sym_tunnel_token1] = ACTIONS(640), + [aux_sym_tunnel_device_token1] = ACTIONS(638), + [aux_sym_update_host_keys_token1] = ACTIONS(638), + [aux_sym_use_keychain_token1] = ACTIONS(638), + [aux_sym_use_roaming_token1] = ACTIONS(638), + [aux_sym_user_token1] = ACTIONS(640), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(638), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(638), + [aux_sym_visual_host_key_token1] = ACTIONS(638), + [aux_sym_xauth_location_token1] = ACTIONS(638), }, [689] = { - [ts_builtin_sym_end] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1271), - [aux_sym_match_token1] = ACTIONS(1269), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1269), - [aux_sym_address_family_token1] = ACTIONS(1269), - [aux_sym_batch_mode_token1] = ACTIONS(1269), - [aux_sym_bind_address_token1] = ACTIONS(1269), - [aux_sym_bind_interface_token1] = ACTIONS(1269), - [aux_sym_canonical_domains_token1] = ACTIONS(1269), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1269), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1269), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1269), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1269), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1269), - [aux_sym_certificate_file_token1] = ACTIONS(1269), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1269), - [aux_sym_check_host_ip_token1] = ACTIONS(1269), - [aux_sym_ciphers_token1] = ACTIONS(1269), - [aux_sym_cipher_token1] = ACTIONS(1271), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1269), - [aux_sym_compression_token1] = ACTIONS(1269), - [aux_sym_connection_attempts_token1] = ACTIONS(1269), - [aux_sym_connect_timeout_token1] = ACTIONS(1269), - [aux_sym_control_master_token1] = ACTIONS(1269), - [aux_sym_control_path_token1] = ACTIONS(1269), - [aux_sym_control_persist_token1] = ACTIONS(1269), - [aux_sym_dynamic_forward_token1] = ACTIONS(1269), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1269), - [aux_sym_escape_char_token1] = ACTIONS(1269), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1269), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1269), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1269), - [aux_sym_forward_agent_token1] = ACTIONS(1269), - [aux_sym_forward_x11_token1] = ACTIONS(1271), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1269), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1269), - [aux_sym_gateway_ports_token1] = ACTIONS(1269), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1269), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1269), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1269), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1269), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1269), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1269), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1269), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1269), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1269), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1269), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1269), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1269), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1269), - [aux_sym_host_key_alias_token1] = ACTIONS(1269), - [aux_sym_hostname_token1] = ACTIONS(1269), - [aux_sym_identities_only_token1] = ACTIONS(1269), - [aux_sym_identity_agent_token1] = ACTIONS(1269), - [aux_sym_identity_file_token1] = ACTIONS(1269), - [aux_sym_ignore_unknown_token1] = ACTIONS(1269), - [aux_sym_include_token1] = ACTIONS(1269), - [aux_sym_ip_qos_token1] = ACTIONS(1269), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1269), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1269), - [aux_sym_kex_algorithms_token1] = ACTIONS(1269), - [aux_sym_known_hosts_command_token1] = ACTIONS(1269), - [aux_sym_local_command_token1] = ACTIONS(1269), - [aux_sym_local_forward_token1] = ACTIONS(1269), - [aux_sym_log_level_token1] = ACTIONS(1269), - [aux_sym_log_verbose_token1] = ACTIONS(1269), - [aux_sym_macs_token1] = ACTIONS(1269), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1269), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1269), - [aux_sym_password_authentication_token1] = ACTIONS(1269), - [aux_sym_permit_local_command_token1] = ACTIONS(1269), - [aux_sym_permit_remote_open_token1] = ACTIONS(1269), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1269), - [aux_sym_port_token1] = ACTIONS(1269), - [aux_sym_preferred_authentications_token1] = ACTIONS(1269), - [aux_sym_protocol_token1] = ACTIONS(1269), - [aux_sym_proxy_command_token1] = ACTIONS(1269), - [aux_sym_proxy_jump_token1] = ACTIONS(1269), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1269), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1269), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1269), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1269), - [aux_sym_rekey_limit_token1] = ACTIONS(1269), - [aux_sym_remote_command_token1] = ACTIONS(1269), - [aux_sym_remote_forward_token1] = ACTIONS(1269), - [aux_sym_request_tty_token1] = ACTIONS(1269), - [aux_sym_required_rsa_size_token1] = ACTIONS(1269), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1269), - [aux_sym_security_key_provider_token1] = ACTIONS(1269), - [aux_sym_send_env_token1] = ACTIONS(1269), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1269), - [aux_sym_server_alive_interval_token1] = ACTIONS(1269), - [aux_sym_session_type_token1] = ACTIONS(1269), - [aux_sym_set_env_token1] = ACTIONS(1269), - [aux_sym_stdin_null_token1] = ACTIONS(1269), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1269), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1269), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1269), - [aux_sym_syslog_facility_token1] = ACTIONS(1269), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1269), - [aux_sym_keep_alive_token1] = ACTIONS(1269), - [aux_sym_tunnel_token1] = ACTIONS(1271), - [aux_sym_tunnel_device_token1] = ACTIONS(1269), - [aux_sym_update_host_keys_token1] = ACTIONS(1269), - [aux_sym_use_keychain_token1] = ACTIONS(1269), - [aux_sym_use_roaming_token1] = ACTIONS(1269), - [aux_sym_user_token1] = ACTIONS(1271), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1269), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1269), - [aux_sym_visual_host_key_token1] = ACTIONS(1269), - [aux_sym_xauth_location_token1] = ACTIONS(1269), + [ts_builtin_sym_end] = ACTIONS(842), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(844), + [aux_sym_match_token1] = ACTIONS(842), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(842), + [aux_sym_address_family_token1] = ACTIONS(842), + [aux_sym_batch_mode_token1] = ACTIONS(842), + [aux_sym_bind_address_token1] = ACTIONS(842), + [aux_sym_bind_interface_token1] = ACTIONS(842), + [aux_sym_canonical_domains_token1] = ACTIONS(842), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(842), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(842), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(842), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(842), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(842), + [aux_sym_certificate_file_token1] = ACTIONS(842), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(842), + [aux_sym_check_host_ip_token1] = ACTIONS(842), + [aux_sym_ciphers_token1] = ACTIONS(842), + [aux_sym_cipher_token1] = ACTIONS(844), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(842), + [aux_sym_compression_token1] = ACTIONS(842), + [aux_sym_connection_attempts_token1] = ACTIONS(842), + [aux_sym_connect_timeout_token1] = ACTIONS(842), + [aux_sym_control_master_token1] = ACTIONS(842), + [aux_sym_control_path_token1] = ACTIONS(842), + [aux_sym_control_persist_token1] = ACTIONS(842), + [aux_sym_dynamic_forward_token1] = ACTIONS(842), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(842), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(842), + [aux_sym_escape_char_token1] = ACTIONS(842), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(842), + [aux_sym_fingerprint_hash_token1] = ACTIONS(842), + [aux_sym_fork_after_authentication_token1] = ACTIONS(842), + [aux_sym_forward_agent_token1] = ACTIONS(842), + [aux_sym_forward_x11_token1] = ACTIONS(844), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(842), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(842), + [aux_sym_gateway_ports_token1] = ACTIONS(842), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(842), + [aux_sym_gssapi_authentication_token1] = ACTIONS(842), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(842), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(842), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(842), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(842), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(842), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(842), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(842), + [aux_sym_hash_known_hosts_token1] = ACTIONS(842), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(842), + [aux_sym_hostbased_authentication_token1] = ACTIONS(842), + [aux_sym_host_key_algorithms_token1] = ACTIONS(842), + [aux_sym_host_key_alias_token1] = ACTIONS(842), + [aux_sym_hostname_token1] = ACTIONS(842), + [aux_sym_identities_only_token1] = ACTIONS(842), + [aux_sym_identity_agent_token1] = ACTIONS(842), + [aux_sym_identity_file_token1] = ACTIONS(842), + [aux_sym_ignore_unknown_token1] = ACTIONS(842), + [aux_sym_include_token1] = ACTIONS(842), + [aux_sym_ip_qos_token1] = ACTIONS(842), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(842), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(842), + [aux_sym_kex_algorithms_token1] = ACTIONS(842), + [aux_sym_known_hosts_command_token1] = ACTIONS(842), + [aux_sym_local_command_token1] = ACTIONS(842), + [aux_sym_local_forward_token1] = ACTIONS(842), + [aux_sym_log_level_token1] = ACTIONS(842), + [aux_sym_log_verbose_token1] = ACTIONS(842), + [aux_sym_macs_token1] = ACTIONS(842), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(842), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(842), + [aux_sym_password_authentication_token1] = ACTIONS(842), + [aux_sym_permit_local_command_token1] = ACTIONS(842), + [aux_sym_permit_remote_open_token1] = ACTIONS(842), + [aux_sym_pkcs11_provider_token1] = ACTIONS(842), + [aux_sym_port_token1] = ACTIONS(842), + [aux_sym_preferred_authentications_token1] = ACTIONS(842), + [aux_sym_protocol_token1] = ACTIONS(842), + [aux_sym_proxy_command_token1] = ACTIONS(842), + [aux_sym_proxy_jump_token1] = ACTIONS(842), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(842), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(842), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(842), + [aux_sym_pubkey_authentication_token1] = ACTIONS(842), + [aux_sym_rekey_limit_token1] = ACTIONS(842), + [aux_sym_remote_command_token1] = ACTIONS(842), + [aux_sym_remote_forward_token1] = ACTIONS(842), + [aux_sym_request_tty_token1] = ACTIONS(842), + [aux_sym_required_rsa_size_token1] = ACTIONS(842), + [aux_sym_revoked_host_keys_token1] = ACTIONS(842), + [aux_sym_security_key_provider_token1] = ACTIONS(842), + [aux_sym_send_env_token1] = ACTIONS(842), + [aux_sym_server_alive_count_max_token1] = ACTIONS(842), + [aux_sym_server_alive_interval_token1] = ACTIONS(842), + [aux_sym_session_type_token1] = ACTIONS(842), + [aux_sym_set_env_token1] = ACTIONS(842), + [aux_sym_stdin_null_token1] = ACTIONS(842), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(842), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(842), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(842), + [aux_sym_syslog_facility_token1] = ACTIONS(842), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(842), + [aux_sym_keep_alive_token1] = ACTIONS(842), + [aux_sym_tunnel_token1] = ACTIONS(844), + [aux_sym_tunnel_device_token1] = ACTIONS(842), + [aux_sym_update_host_keys_token1] = ACTIONS(842), + [aux_sym_use_keychain_token1] = ACTIONS(842), + [aux_sym_use_roaming_token1] = ACTIONS(842), + [aux_sym_user_token1] = ACTIONS(844), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(842), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(842), + [aux_sym_visual_host_key_token1] = ACTIONS(842), + [aux_sym_xauth_location_token1] = ACTIONS(842), }, [690] = { - [ts_builtin_sym_end] = ACTIONS(1839), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1841), - [aux_sym_match_token1] = ACTIONS(1839), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1839), - [aux_sym_address_family_token1] = ACTIONS(1839), - [aux_sym_batch_mode_token1] = ACTIONS(1839), - [aux_sym_bind_address_token1] = ACTIONS(1839), - [aux_sym_bind_interface_token1] = ACTIONS(1839), - [aux_sym_canonical_domains_token1] = ACTIONS(1839), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1839), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1839), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1839), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1839), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1839), - [aux_sym_certificate_file_token1] = ACTIONS(1839), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1839), - [aux_sym_check_host_ip_token1] = ACTIONS(1839), - [aux_sym_ciphers_token1] = ACTIONS(1839), - [aux_sym_cipher_token1] = ACTIONS(1841), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1839), - [aux_sym_compression_token1] = ACTIONS(1839), - [aux_sym_connection_attempts_token1] = ACTIONS(1839), - [aux_sym_connect_timeout_token1] = ACTIONS(1839), - [aux_sym_control_master_token1] = ACTIONS(1839), - [aux_sym_control_path_token1] = ACTIONS(1839), - [aux_sym_control_persist_token1] = ACTIONS(1839), - [aux_sym_dynamic_forward_token1] = ACTIONS(1839), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1839), - [aux_sym_escape_char_token1] = ACTIONS(1839), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1839), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1839), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1839), - [aux_sym_forward_agent_token1] = ACTIONS(1839), - [aux_sym_forward_x11_token1] = ACTIONS(1841), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1839), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1839), - [aux_sym_gateway_ports_token1] = ACTIONS(1839), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1839), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1839), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1839), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1839), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1839), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1839), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1839), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1839), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1839), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1839), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1839), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1839), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1839), - [aux_sym_host_key_alias_token1] = ACTIONS(1839), - [aux_sym_hostname_token1] = ACTIONS(1839), - [aux_sym_identities_only_token1] = ACTIONS(1839), - [aux_sym_identity_agent_token1] = ACTIONS(1839), - [aux_sym_identity_file_token1] = ACTIONS(1839), - [aux_sym_ignore_unknown_token1] = ACTIONS(1839), - [aux_sym_include_token1] = ACTIONS(1839), - [aux_sym_ip_qos_token1] = ACTIONS(1839), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1839), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1839), - [aux_sym_kex_algorithms_token1] = ACTIONS(1839), - [aux_sym_known_hosts_command_token1] = ACTIONS(1839), - [aux_sym_local_command_token1] = ACTIONS(1839), - [aux_sym_local_forward_token1] = ACTIONS(1839), - [aux_sym_log_level_token1] = ACTIONS(1839), - [aux_sym_log_verbose_token1] = ACTIONS(1839), - [aux_sym_macs_token1] = ACTIONS(1839), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1839), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1839), - [aux_sym_password_authentication_token1] = ACTIONS(1839), - [aux_sym_permit_local_command_token1] = ACTIONS(1839), - [aux_sym_permit_remote_open_token1] = ACTIONS(1839), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1839), - [aux_sym_port_token1] = ACTIONS(1839), - [aux_sym_preferred_authentications_token1] = ACTIONS(1839), - [aux_sym_protocol_token1] = ACTIONS(1839), - [aux_sym_proxy_command_token1] = ACTIONS(1839), - [aux_sym_proxy_jump_token1] = ACTIONS(1839), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1839), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1839), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1839), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1839), - [aux_sym_rekey_limit_token1] = ACTIONS(1839), - [aux_sym_remote_command_token1] = ACTIONS(1839), - [aux_sym_remote_forward_token1] = ACTIONS(1839), - [aux_sym_request_tty_token1] = ACTIONS(1839), - [aux_sym_required_rsa_size_token1] = ACTIONS(1839), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1839), - [aux_sym_security_key_provider_token1] = ACTIONS(1839), - [aux_sym_send_env_token1] = ACTIONS(1839), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1839), - [aux_sym_server_alive_interval_token1] = ACTIONS(1839), - [aux_sym_session_type_token1] = ACTIONS(1839), - [aux_sym_set_env_token1] = ACTIONS(1839), - [aux_sym_stdin_null_token1] = ACTIONS(1839), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1839), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1839), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1839), - [aux_sym_syslog_facility_token1] = ACTIONS(1839), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1839), - [aux_sym_keep_alive_token1] = ACTIONS(1839), - [aux_sym_tunnel_token1] = ACTIONS(1841), - [aux_sym_tunnel_device_token1] = ACTIONS(1839), - [aux_sym_update_host_keys_token1] = ACTIONS(1839), - [aux_sym_use_keychain_token1] = ACTIONS(1839), - [aux_sym_use_roaming_token1] = ACTIONS(1839), - [aux_sym_user_token1] = ACTIONS(1841), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1839), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1839), - [aux_sym_visual_host_key_token1] = ACTIONS(1839), - [aux_sym_xauth_location_token1] = ACTIONS(1839), + [ts_builtin_sym_end] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1870), + [aux_sym_match_token1] = ACTIONS(1868), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1868), + [aux_sym_address_family_token1] = ACTIONS(1868), + [aux_sym_batch_mode_token1] = ACTIONS(1868), + [aux_sym_bind_address_token1] = ACTIONS(1868), + [aux_sym_bind_interface_token1] = ACTIONS(1868), + [aux_sym_canonical_domains_token1] = ACTIONS(1868), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1868), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1868), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1868), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1868), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1868), + [aux_sym_certificate_file_token1] = ACTIONS(1868), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1868), + [aux_sym_check_host_ip_token1] = ACTIONS(1868), + [aux_sym_ciphers_token1] = ACTIONS(1868), + [aux_sym_cipher_token1] = ACTIONS(1870), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1868), + [aux_sym_compression_token1] = ACTIONS(1868), + [aux_sym_connection_attempts_token1] = ACTIONS(1868), + [aux_sym_connect_timeout_token1] = ACTIONS(1868), + [aux_sym_control_master_token1] = ACTIONS(1868), + [aux_sym_control_path_token1] = ACTIONS(1868), + [aux_sym_control_persist_token1] = ACTIONS(1868), + [aux_sym_dynamic_forward_token1] = ACTIONS(1868), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1868), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1868), + [aux_sym_escape_char_token1] = ACTIONS(1868), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1868), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1868), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1868), + [aux_sym_forward_agent_token1] = ACTIONS(1868), + [aux_sym_forward_x11_token1] = ACTIONS(1870), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1868), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1868), + [aux_sym_gateway_ports_token1] = ACTIONS(1868), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1868), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1868), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1868), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1868), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1868), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1868), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1868), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1868), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1868), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1868), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1868), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1868), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1868), + [aux_sym_host_key_alias_token1] = ACTIONS(1868), + [aux_sym_hostname_token1] = ACTIONS(1868), + [aux_sym_identities_only_token1] = ACTIONS(1868), + [aux_sym_identity_agent_token1] = ACTIONS(1868), + [aux_sym_identity_file_token1] = ACTIONS(1868), + [aux_sym_ignore_unknown_token1] = ACTIONS(1868), + [aux_sym_include_token1] = ACTIONS(1868), + [aux_sym_ip_qos_token1] = ACTIONS(1868), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1868), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1868), + [aux_sym_kex_algorithms_token1] = ACTIONS(1868), + [aux_sym_known_hosts_command_token1] = ACTIONS(1868), + [aux_sym_local_command_token1] = ACTIONS(1868), + [aux_sym_local_forward_token1] = ACTIONS(1868), + [aux_sym_log_level_token1] = ACTIONS(1868), + [aux_sym_log_verbose_token1] = ACTIONS(1868), + [aux_sym_macs_token1] = ACTIONS(1868), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1868), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1868), + [aux_sym_password_authentication_token1] = ACTIONS(1868), + [aux_sym_permit_local_command_token1] = ACTIONS(1868), + [aux_sym_permit_remote_open_token1] = ACTIONS(1868), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1868), + [aux_sym_port_token1] = ACTIONS(1868), + [aux_sym_preferred_authentications_token1] = ACTIONS(1868), + [aux_sym_protocol_token1] = ACTIONS(1868), + [aux_sym_proxy_command_token1] = ACTIONS(1868), + [aux_sym_proxy_jump_token1] = ACTIONS(1868), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1868), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1868), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1868), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1868), + [aux_sym_rekey_limit_token1] = ACTIONS(1868), + [aux_sym_remote_command_token1] = ACTIONS(1868), + [aux_sym_remote_forward_token1] = ACTIONS(1868), + [aux_sym_request_tty_token1] = ACTIONS(1868), + [aux_sym_required_rsa_size_token1] = ACTIONS(1868), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1868), + [aux_sym_security_key_provider_token1] = ACTIONS(1868), + [aux_sym_send_env_token1] = ACTIONS(1868), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1868), + [aux_sym_server_alive_interval_token1] = ACTIONS(1868), + [aux_sym_session_type_token1] = ACTIONS(1868), + [aux_sym_set_env_token1] = ACTIONS(1868), + [aux_sym_stdin_null_token1] = ACTIONS(1868), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1868), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1868), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1868), + [aux_sym_syslog_facility_token1] = ACTIONS(1868), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1868), + [aux_sym_keep_alive_token1] = ACTIONS(1868), + [aux_sym_tunnel_token1] = ACTIONS(1870), + [aux_sym_tunnel_device_token1] = ACTIONS(1868), + [aux_sym_update_host_keys_token1] = ACTIONS(1868), + [aux_sym_use_keychain_token1] = ACTIONS(1868), + [aux_sym_use_roaming_token1] = ACTIONS(1868), + [aux_sym_user_token1] = ACTIONS(1870), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1868), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1868), + [aux_sym_visual_host_key_token1] = ACTIONS(1868), + [aux_sym_xauth_location_token1] = ACTIONS(1868), }, [691] = { - [ts_builtin_sym_end] = ACTIONS(1275), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1277), - [aux_sym_match_token1] = ACTIONS(1275), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1275), - [aux_sym_address_family_token1] = ACTIONS(1275), - [aux_sym_batch_mode_token1] = ACTIONS(1275), - [aux_sym_bind_address_token1] = ACTIONS(1275), - [aux_sym_bind_interface_token1] = ACTIONS(1275), - [aux_sym_canonical_domains_token1] = ACTIONS(1275), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1275), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1275), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1275), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1275), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1275), - [aux_sym_certificate_file_token1] = ACTIONS(1275), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1275), - [aux_sym_check_host_ip_token1] = ACTIONS(1275), - [aux_sym_ciphers_token1] = ACTIONS(1275), - [aux_sym_cipher_token1] = ACTIONS(1277), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1275), - [aux_sym_compression_token1] = ACTIONS(1275), - [aux_sym_connection_attempts_token1] = ACTIONS(1275), - [aux_sym_connect_timeout_token1] = ACTIONS(1275), - [aux_sym_control_master_token1] = ACTIONS(1275), - [aux_sym_control_path_token1] = ACTIONS(1275), - [aux_sym_control_persist_token1] = ACTIONS(1275), - [aux_sym_dynamic_forward_token1] = ACTIONS(1275), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1275), - [aux_sym_escape_char_token1] = ACTIONS(1275), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1275), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1275), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1275), - [aux_sym_forward_agent_token1] = ACTIONS(1275), - [aux_sym_forward_x11_token1] = ACTIONS(1277), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1275), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1275), - [aux_sym_gateway_ports_token1] = ACTIONS(1275), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1275), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1275), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1275), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1275), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1275), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1275), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1275), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1275), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1275), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1275), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1275), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1275), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1275), - [aux_sym_host_key_alias_token1] = ACTIONS(1275), - [aux_sym_hostname_token1] = ACTIONS(1275), - [aux_sym_identities_only_token1] = ACTIONS(1275), - [aux_sym_identity_agent_token1] = ACTIONS(1275), - [aux_sym_identity_file_token1] = ACTIONS(1275), - [aux_sym_ignore_unknown_token1] = ACTIONS(1275), - [aux_sym_include_token1] = ACTIONS(1275), - [aux_sym_ip_qos_token1] = ACTIONS(1275), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1275), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1275), - [aux_sym_kex_algorithms_token1] = ACTIONS(1275), - [aux_sym_known_hosts_command_token1] = ACTIONS(1275), - [aux_sym_local_command_token1] = ACTIONS(1275), - [aux_sym_local_forward_token1] = ACTIONS(1275), - [aux_sym_log_level_token1] = ACTIONS(1275), - [aux_sym_log_verbose_token1] = ACTIONS(1275), - [aux_sym_macs_token1] = ACTIONS(1275), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1275), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1275), - [aux_sym_password_authentication_token1] = ACTIONS(1275), - [aux_sym_permit_local_command_token1] = ACTIONS(1275), - [aux_sym_permit_remote_open_token1] = ACTIONS(1275), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1275), - [aux_sym_port_token1] = ACTIONS(1275), - [aux_sym_preferred_authentications_token1] = ACTIONS(1275), - [aux_sym_protocol_token1] = ACTIONS(1275), - [aux_sym_proxy_command_token1] = ACTIONS(1275), - [aux_sym_proxy_jump_token1] = ACTIONS(1275), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1275), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1275), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1275), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1275), - [aux_sym_rekey_limit_token1] = ACTIONS(1275), - [aux_sym_remote_command_token1] = ACTIONS(1275), - [aux_sym_remote_forward_token1] = ACTIONS(1275), - [aux_sym_request_tty_token1] = ACTIONS(1275), - [aux_sym_required_rsa_size_token1] = ACTIONS(1275), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1275), - [aux_sym_security_key_provider_token1] = ACTIONS(1275), - [aux_sym_send_env_token1] = ACTIONS(1275), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1275), - [aux_sym_server_alive_interval_token1] = ACTIONS(1275), - [aux_sym_session_type_token1] = ACTIONS(1275), - [aux_sym_set_env_token1] = ACTIONS(1275), - [aux_sym_stdin_null_token1] = ACTIONS(1275), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1275), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1275), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1275), - [aux_sym_syslog_facility_token1] = ACTIONS(1275), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1275), - [aux_sym_keep_alive_token1] = ACTIONS(1275), - [aux_sym_tunnel_token1] = ACTIONS(1277), - [aux_sym_tunnel_device_token1] = ACTIONS(1275), - [aux_sym_update_host_keys_token1] = ACTIONS(1275), - [aux_sym_use_keychain_token1] = ACTIONS(1275), - [aux_sym_use_roaming_token1] = ACTIONS(1275), - [aux_sym_user_token1] = ACTIONS(1277), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1275), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1275), - [aux_sym_visual_host_key_token1] = ACTIONS(1275), - [aux_sym_xauth_location_token1] = ACTIONS(1275), + [ts_builtin_sym_end] = ACTIONS(644), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(646), + [aux_sym_match_token1] = ACTIONS(644), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(644), + [aux_sym_address_family_token1] = ACTIONS(644), + [aux_sym_batch_mode_token1] = ACTIONS(644), + [aux_sym_bind_address_token1] = ACTIONS(644), + [aux_sym_bind_interface_token1] = ACTIONS(644), + [aux_sym_canonical_domains_token1] = ACTIONS(644), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(644), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(644), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(644), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(644), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(644), + [aux_sym_certificate_file_token1] = ACTIONS(644), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(644), + [aux_sym_check_host_ip_token1] = ACTIONS(644), + [aux_sym_ciphers_token1] = ACTIONS(644), + [aux_sym_cipher_token1] = ACTIONS(646), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(644), + [aux_sym_compression_token1] = ACTIONS(644), + [aux_sym_connection_attempts_token1] = ACTIONS(644), + [aux_sym_connect_timeout_token1] = ACTIONS(644), + [aux_sym_control_master_token1] = ACTIONS(644), + [aux_sym_control_path_token1] = ACTIONS(644), + [aux_sym_control_persist_token1] = ACTIONS(644), + [aux_sym_dynamic_forward_token1] = ACTIONS(644), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(644), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(644), + [aux_sym_escape_char_token1] = ACTIONS(644), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(644), + [aux_sym_fingerprint_hash_token1] = ACTIONS(644), + [aux_sym_fork_after_authentication_token1] = ACTIONS(644), + [aux_sym_forward_agent_token1] = ACTIONS(644), + [aux_sym_forward_x11_token1] = ACTIONS(646), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(644), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(644), + [aux_sym_gateway_ports_token1] = ACTIONS(644), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(644), + [aux_sym_gssapi_authentication_token1] = ACTIONS(644), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(644), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(644), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(644), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(644), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(644), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(644), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(644), + [aux_sym_hash_known_hosts_token1] = ACTIONS(644), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(644), + [aux_sym_hostbased_authentication_token1] = ACTIONS(644), + [aux_sym_host_key_algorithms_token1] = ACTIONS(644), + [aux_sym_host_key_alias_token1] = ACTIONS(644), + [aux_sym_hostname_token1] = ACTIONS(644), + [aux_sym_identities_only_token1] = ACTIONS(644), + [aux_sym_identity_agent_token1] = ACTIONS(644), + [aux_sym_identity_file_token1] = ACTIONS(644), + [aux_sym_ignore_unknown_token1] = ACTIONS(644), + [aux_sym_include_token1] = ACTIONS(644), + [aux_sym_ip_qos_token1] = ACTIONS(644), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(644), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(644), + [aux_sym_kex_algorithms_token1] = ACTIONS(644), + [aux_sym_known_hosts_command_token1] = ACTIONS(644), + [aux_sym_local_command_token1] = ACTIONS(644), + [aux_sym_local_forward_token1] = ACTIONS(644), + [aux_sym_log_level_token1] = ACTIONS(644), + [aux_sym_log_verbose_token1] = ACTIONS(644), + [aux_sym_macs_token1] = ACTIONS(644), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(644), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(644), + [aux_sym_password_authentication_token1] = ACTIONS(644), + [aux_sym_permit_local_command_token1] = ACTIONS(644), + [aux_sym_permit_remote_open_token1] = ACTIONS(644), + [aux_sym_pkcs11_provider_token1] = ACTIONS(644), + [aux_sym_port_token1] = ACTIONS(644), + [aux_sym_preferred_authentications_token1] = ACTIONS(644), + [aux_sym_protocol_token1] = ACTIONS(644), + [aux_sym_proxy_command_token1] = ACTIONS(644), + [aux_sym_proxy_jump_token1] = ACTIONS(644), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(644), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(644), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(644), + [aux_sym_pubkey_authentication_token1] = ACTIONS(644), + [aux_sym_rekey_limit_token1] = ACTIONS(644), + [aux_sym_remote_command_token1] = ACTIONS(644), + [aux_sym_remote_forward_token1] = ACTIONS(644), + [aux_sym_request_tty_token1] = ACTIONS(644), + [aux_sym_required_rsa_size_token1] = ACTIONS(644), + [aux_sym_revoked_host_keys_token1] = ACTIONS(644), + [aux_sym_security_key_provider_token1] = ACTIONS(644), + [aux_sym_send_env_token1] = ACTIONS(644), + [aux_sym_server_alive_count_max_token1] = ACTIONS(644), + [aux_sym_server_alive_interval_token1] = ACTIONS(644), + [aux_sym_session_type_token1] = ACTIONS(644), + [aux_sym_set_env_token1] = ACTIONS(644), + [aux_sym_stdin_null_token1] = ACTIONS(644), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(644), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(644), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(644), + [aux_sym_syslog_facility_token1] = ACTIONS(644), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(644), + [aux_sym_keep_alive_token1] = ACTIONS(644), + [aux_sym_tunnel_token1] = ACTIONS(646), + [aux_sym_tunnel_device_token1] = ACTIONS(644), + [aux_sym_update_host_keys_token1] = ACTIONS(644), + [aux_sym_use_keychain_token1] = ACTIONS(644), + [aux_sym_use_roaming_token1] = ACTIONS(644), + [aux_sym_user_token1] = ACTIONS(646), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(644), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(644), + [aux_sym_visual_host_key_token1] = ACTIONS(644), + [aux_sym_xauth_location_token1] = ACTIONS(644), }, [692] = { - [ts_builtin_sym_end] = ACTIONS(1575), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1577), - [aux_sym_match_token1] = ACTIONS(1575), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1575), - [aux_sym_address_family_token1] = ACTIONS(1575), - [aux_sym_batch_mode_token1] = ACTIONS(1575), - [aux_sym_bind_address_token1] = ACTIONS(1575), - [aux_sym_bind_interface_token1] = ACTIONS(1575), - [aux_sym_canonical_domains_token1] = ACTIONS(1575), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1575), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1575), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1575), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1575), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1575), - [aux_sym_certificate_file_token1] = ACTIONS(1575), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1575), - [aux_sym_check_host_ip_token1] = ACTIONS(1575), - [aux_sym_ciphers_token1] = ACTIONS(1575), - [aux_sym_cipher_token1] = ACTIONS(1577), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1575), - [aux_sym_compression_token1] = ACTIONS(1575), - [aux_sym_connection_attempts_token1] = ACTIONS(1575), - [aux_sym_connect_timeout_token1] = ACTIONS(1575), - [aux_sym_control_master_token1] = ACTIONS(1575), - [aux_sym_control_path_token1] = ACTIONS(1575), - [aux_sym_control_persist_token1] = ACTIONS(1575), - [aux_sym_dynamic_forward_token1] = ACTIONS(1575), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1575), - [aux_sym_escape_char_token1] = ACTIONS(1575), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1575), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1575), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1575), - [aux_sym_forward_agent_token1] = ACTIONS(1575), - [aux_sym_forward_x11_token1] = ACTIONS(1577), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1575), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1575), - [aux_sym_gateway_ports_token1] = ACTIONS(1575), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1575), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1575), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1575), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1575), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1575), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1575), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1575), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1575), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1575), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1575), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1575), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1575), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1575), - [aux_sym_host_key_alias_token1] = ACTIONS(1575), - [aux_sym_hostname_token1] = ACTIONS(1575), - [aux_sym_identities_only_token1] = ACTIONS(1575), - [aux_sym_identity_agent_token1] = ACTIONS(1575), - [aux_sym_identity_file_token1] = ACTIONS(1575), - [aux_sym_ignore_unknown_token1] = ACTIONS(1575), - [aux_sym_include_token1] = ACTIONS(1575), - [aux_sym_ip_qos_token1] = ACTIONS(1575), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1575), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1575), - [aux_sym_kex_algorithms_token1] = ACTIONS(1575), - [aux_sym_known_hosts_command_token1] = ACTIONS(1575), - [aux_sym_local_command_token1] = ACTIONS(1575), - [aux_sym_local_forward_token1] = ACTIONS(1575), - [aux_sym_log_level_token1] = ACTIONS(1575), - [aux_sym_log_verbose_token1] = ACTIONS(1575), - [aux_sym_macs_token1] = ACTIONS(1575), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1575), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1575), - [aux_sym_password_authentication_token1] = ACTIONS(1575), - [aux_sym_permit_local_command_token1] = ACTIONS(1575), - [aux_sym_permit_remote_open_token1] = ACTIONS(1575), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1575), - [aux_sym_port_token1] = ACTIONS(1575), - [aux_sym_preferred_authentications_token1] = ACTIONS(1575), - [aux_sym_protocol_token1] = ACTIONS(1575), - [aux_sym_proxy_command_token1] = ACTIONS(1575), - [aux_sym_proxy_jump_token1] = ACTIONS(1575), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1575), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1575), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1575), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1575), - [aux_sym_rekey_limit_token1] = ACTIONS(1575), - [aux_sym_remote_command_token1] = ACTIONS(1575), - [aux_sym_remote_forward_token1] = ACTIONS(1575), - [aux_sym_request_tty_token1] = ACTIONS(1575), - [aux_sym_required_rsa_size_token1] = ACTIONS(1575), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1575), - [aux_sym_security_key_provider_token1] = ACTIONS(1575), - [aux_sym_send_env_token1] = ACTIONS(1575), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1575), - [aux_sym_server_alive_interval_token1] = ACTIONS(1575), - [aux_sym_session_type_token1] = ACTIONS(1575), - [aux_sym_set_env_token1] = ACTIONS(1575), - [aux_sym_stdin_null_token1] = ACTIONS(1575), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1575), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1575), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1575), - [aux_sym_syslog_facility_token1] = ACTIONS(1575), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1575), - [aux_sym_keep_alive_token1] = ACTIONS(1575), - [aux_sym_tunnel_token1] = ACTIONS(1577), - [aux_sym_tunnel_device_token1] = ACTIONS(1575), - [aux_sym_update_host_keys_token1] = ACTIONS(1575), - [aux_sym_use_keychain_token1] = ACTIONS(1575), - [aux_sym_use_roaming_token1] = ACTIONS(1575), - [aux_sym_user_token1] = ACTIONS(1577), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1575), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1575), - [aux_sym_visual_host_key_token1] = ACTIONS(1575), - [aux_sym_xauth_location_token1] = ACTIONS(1575), + [ts_builtin_sym_end] = ACTIONS(1514), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1516), + [aux_sym_match_token1] = ACTIONS(1514), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1514), + [aux_sym_address_family_token1] = ACTIONS(1514), + [aux_sym_batch_mode_token1] = ACTIONS(1514), + [aux_sym_bind_address_token1] = ACTIONS(1514), + [aux_sym_bind_interface_token1] = ACTIONS(1514), + [aux_sym_canonical_domains_token1] = ACTIONS(1514), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1514), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1514), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1514), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1514), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1514), + [aux_sym_certificate_file_token1] = ACTIONS(1514), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1514), + [aux_sym_check_host_ip_token1] = ACTIONS(1514), + [aux_sym_ciphers_token1] = ACTIONS(1514), + [aux_sym_cipher_token1] = ACTIONS(1516), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1514), + [aux_sym_compression_token1] = ACTIONS(1514), + [aux_sym_connection_attempts_token1] = ACTIONS(1514), + [aux_sym_connect_timeout_token1] = ACTIONS(1514), + [aux_sym_control_master_token1] = ACTIONS(1514), + [aux_sym_control_path_token1] = ACTIONS(1514), + [aux_sym_control_persist_token1] = ACTIONS(1514), + [aux_sym_dynamic_forward_token1] = ACTIONS(1514), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1514), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1514), + [aux_sym_escape_char_token1] = ACTIONS(1514), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1514), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1514), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1514), + [aux_sym_forward_agent_token1] = ACTIONS(1514), + [aux_sym_forward_x11_token1] = ACTIONS(1516), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1514), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1514), + [aux_sym_gateway_ports_token1] = ACTIONS(1514), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1514), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1514), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1514), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1514), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1514), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1514), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1514), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1514), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1514), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1514), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1514), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1514), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1514), + [aux_sym_host_key_alias_token1] = ACTIONS(1514), + [aux_sym_hostname_token1] = ACTIONS(1514), + [aux_sym_identities_only_token1] = ACTIONS(1514), + [aux_sym_identity_agent_token1] = ACTIONS(1514), + [aux_sym_identity_file_token1] = ACTIONS(1514), + [aux_sym_ignore_unknown_token1] = ACTIONS(1514), + [aux_sym_include_token1] = ACTIONS(1514), + [aux_sym_ip_qos_token1] = ACTIONS(1514), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1514), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1514), + [aux_sym_kex_algorithms_token1] = ACTIONS(1514), + [aux_sym_known_hosts_command_token1] = ACTIONS(1514), + [aux_sym_local_command_token1] = ACTIONS(1514), + [aux_sym_local_forward_token1] = ACTIONS(1514), + [aux_sym_log_level_token1] = ACTIONS(1514), + [aux_sym_log_verbose_token1] = ACTIONS(1514), + [aux_sym_macs_token1] = ACTIONS(1514), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1514), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1514), + [aux_sym_password_authentication_token1] = ACTIONS(1514), + [aux_sym_permit_local_command_token1] = ACTIONS(1514), + [aux_sym_permit_remote_open_token1] = ACTIONS(1514), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1514), + [aux_sym_port_token1] = ACTIONS(1514), + [aux_sym_preferred_authentications_token1] = ACTIONS(1514), + [aux_sym_protocol_token1] = ACTIONS(1514), + [aux_sym_proxy_command_token1] = ACTIONS(1514), + [aux_sym_proxy_jump_token1] = ACTIONS(1514), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1514), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1514), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1514), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1514), + [aux_sym_rekey_limit_token1] = ACTIONS(1514), + [aux_sym_remote_command_token1] = ACTIONS(1514), + [aux_sym_remote_forward_token1] = ACTIONS(1514), + [aux_sym_request_tty_token1] = ACTIONS(1514), + [aux_sym_required_rsa_size_token1] = ACTIONS(1514), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1514), + [aux_sym_security_key_provider_token1] = ACTIONS(1514), + [aux_sym_send_env_token1] = ACTIONS(1514), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1514), + [aux_sym_server_alive_interval_token1] = ACTIONS(1514), + [aux_sym_session_type_token1] = ACTIONS(1514), + [aux_sym_set_env_token1] = ACTIONS(1514), + [aux_sym_stdin_null_token1] = ACTIONS(1514), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1514), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1514), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1514), + [aux_sym_syslog_facility_token1] = ACTIONS(1514), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1514), + [aux_sym_keep_alive_token1] = ACTIONS(1514), + [aux_sym_tunnel_token1] = ACTIONS(1516), + [aux_sym_tunnel_device_token1] = ACTIONS(1514), + [aux_sym_update_host_keys_token1] = ACTIONS(1514), + [aux_sym_use_keychain_token1] = ACTIONS(1514), + [aux_sym_use_roaming_token1] = ACTIONS(1514), + [aux_sym_user_token1] = ACTIONS(1516), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1514), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1514), + [aux_sym_visual_host_key_token1] = ACTIONS(1514), + [aux_sym_xauth_location_token1] = ACTIONS(1514), }, [693] = { - [ts_builtin_sym_end] = ACTIONS(1833), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1835), - [aux_sym_match_token1] = ACTIONS(1833), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1833), - [aux_sym_address_family_token1] = ACTIONS(1833), - [aux_sym_batch_mode_token1] = ACTIONS(1833), - [aux_sym_bind_address_token1] = ACTIONS(1833), - [aux_sym_bind_interface_token1] = ACTIONS(1833), - [aux_sym_canonical_domains_token1] = ACTIONS(1833), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1833), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1833), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1833), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1833), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1833), - [aux_sym_certificate_file_token1] = ACTIONS(1833), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1833), - [aux_sym_check_host_ip_token1] = ACTIONS(1833), - [aux_sym_ciphers_token1] = ACTIONS(1833), - [aux_sym_cipher_token1] = ACTIONS(1835), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1833), - [aux_sym_compression_token1] = ACTIONS(1833), - [aux_sym_connection_attempts_token1] = ACTIONS(1833), - [aux_sym_connect_timeout_token1] = ACTIONS(1833), - [aux_sym_control_master_token1] = ACTIONS(1833), - [aux_sym_control_path_token1] = ACTIONS(1833), - [aux_sym_control_persist_token1] = ACTIONS(1833), - [aux_sym_dynamic_forward_token1] = ACTIONS(1833), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1833), - [aux_sym_escape_char_token1] = ACTIONS(1833), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1833), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1833), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1833), - [aux_sym_forward_agent_token1] = ACTIONS(1833), - [aux_sym_forward_x11_token1] = ACTIONS(1835), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1833), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1833), - [aux_sym_gateway_ports_token1] = ACTIONS(1833), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1833), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1833), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1833), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1833), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1833), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1833), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1833), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1833), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1833), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1833), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1833), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1833), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1833), - [aux_sym_host_key_alias_token1] = ACTIONS(1833), - [aux_sym_hostname_token1] = ACTIONS(1833), - [aux_sym_identities_only_token1] = ACTIONS(1833), - [aux_sym_identity_agent_token1] = ACTIONS(1833), - [aux_sym_identity_file_token1] = ACTIONS(1833), - [aux_sym_ignore_unknown_token1] = ACTIONS(1833), - [aux_sym_include_token1] = ACTIONS(1833), - [aux_sym_ip_qos_token1] = ACTIONS(1833), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1833), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1833), - [aux_sym_kex_algorithms_token1] = ACTIONS(1833), - [aux_sym_known_hosts_command_token1] = ACTIONS(1833), - [aux_sym_local_command_token1] = ACTIONS(1833), - [aux_sym_local_forward_token1] = ACTIONS(1833), - [aux_sym_log_level_token1] = ACTIONS(1833), - [aux_sym_log_verbose_token1] = ACTIONS(1833), - [aux_sym_macs_token1] = ACTIONS(1833), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1833), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1833), - [aux_sym_password_authentication_token1] = ACTIONS(1833), - [aux_sym_permit_local_command_token1] = ACTIONS(1833), - [aux_sym_permit_remote_open_token1] = ACTIONS(1833), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1833), - [aux_sym_port_token1] = ACTIONS(1833), - [aux_sym_preferred_authentications_token1] = ACTIONS(1833), - [aux_sym_protocol_token1] = ACTIONS(1833), - [aux_sym_proxy_command_token1] = ACTIONS(1833), - [aux_sym_proxy_jump_token1] = ACTIONS(1833), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1833), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1833), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1833), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1833), - [aux_sym_rekey_limit_token1] = ACTIONS(1833), - [aux_sym_remote_command_token1] = ACTIONS(1833), - [aux_sym_remote_forward_token1] = ACTIONS(1833), - [aux_sym_request_tty_token1] = ACTIONS(1833), - [aux_sym_required_rsa_size_token1] = ACTIONS(1833), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1833), - [aux_sym_security_key_provider_token1] = ACTIONS(1833), - [aux_sym_send_env_token1] = ACTIONS(1833), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1833), - [aux_sym_server_alive_interval_token1] = ACTIONS(1833), - [aux_sym_session_type_token1] = ACTIONS(1833), - [aux_sym_set_env_token1] = ACTIONS(1833), - [aux_sym_stdin_null_token1] = ACTIONS(1833), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1833), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1833), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1833), - [aux_sym_syslog_facility_token1] = ACTIONS(1833), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1833), - [aux_sym_keep_alive_token1] = ACTIONS(1833), - [aux_sym_tunnel_token1] = ACTIONS(1835), - [aux_sym_tunnel_device_token1] = ACTIONS(1833), - [aux_sym_update_host_keys_token1] = ACTIONS(1833), - [aux_sym_use_keychain_token1] = ACTIONS(1833), - [aux_sym_use_roaming_token1] = ACTIONS(1833), - [aux_sym_user_token1] = ACTIONS(1835), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1833), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1833), - [aux_sym_visual_host_key_token1] = ACTIONS(1833), - [aux_sym_xauth_location_token1] = ACTIONS(1833), + [ts_builtin_sym_end] = ACTIONS(1862), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1864), + [aux_sym_match_token1] = ACTIONS(1862), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1862), + [aux_sym_address_family_token1] = ACTIONS(1862), + [aux_sym_batch_mode_token1] = ACTIONS(1862), + [aux_sym_bind_address_token1] = ACTIONS(1862), + [aux_sym_bind_interface_token1] = ACTIONS(1862), + [aux_sym_canonical_domains_token1] = ACTIONS(1862), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1862), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1862), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1862), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1862), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1862), + [aux_sym_certificate_file_token1] = ACTIONS(1862), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1862), + [aux_sym_check_host_ip_token1] = ACTIONS(1862), + [aux_sym_ciphers_token1] = ACTIONS(1862), + [aux_sym_cipher_token1] = ACTIONS(1864), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1862), + [aux_sym_compression_token1] = ACTIONS(1862), + [aux_sym_connection_attempts_token1] = ACTIONS(1862), + [aux_sym_connect_timeout_token1] = ACTIONS(1862), + [aux_sym_control_master_token1] = ACTIONS(1862), + [aux_sym_control_path_token1] = ACTIONS(1862), + [aux_sym_control_persist_token1] = ACTIONS(1862), + [aux_sym_dynamic_forward_token1] = ACTIONS(1862), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1862), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1862), + [aux_sym_escape_char_token1] = ACTIONS(1862), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1862), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1862), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1862), + [aux_sym_forward_agent_token1] = ACTIONS(1862), + [aux_sym_forward_x11_token1] = ACTIONS(1864), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1862), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1862), + [aux_sym_gateway_ports_token1] = ACTIONS(1862), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1862), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1862), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1862), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1862), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1862), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1862), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1862), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1862), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1862), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1862), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1862), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1862), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1862), + [aux_sym_host_key_alias_token1] = ACTIONS(1862), + [aux_sym_hostname_token1] = ACTIONS(1862), + [aux_sym_identities_only_token1] = ACTIONS(1862), + [aux_sym_identity_agent_token1] = ACTIONS(1862), + [aux_sym_identity_file_token1] = ACTIONS(1862), + [aux_sym_ignore_unknown_token1] = ACTIONS(1862), + [aux_sym_include_token1] = ACTIONS(1862), + [aux_sym_ip_qos_token1] = ACTIONS(1862), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1862), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1862), + [aux_sym_kex_algorithms_token1] = ACTIONS(1862), + [aux_sym_known_hosts_command_token1] = ACTIONS(1862), + [aux_sym_local_command_token1] = ACTIONS(1862), + [aux_sym_local_forward_token1] = ACTIONS(1862), + [aux_sym_log_level_token1] = ACTIONS(1862), + [aux_sym_log_verbose_token1] = ACTIONS(1862), + [aux_sym_macs_token1] = ACTIONS(1862), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1862), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1862), + [aux_sym_password_authentication_token1] = ACTIONS(1862), + [aux_sym_permit_local_command_token1] = ACTIONS(1862), + [aux_sym_permit_remote_open_token1] = ACTIONS(1862), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1862), + [aux_sym_port_token1] = ACTIONS(1862), + [aux_sym_preferred_authentications_token1] = ACTIONS(1862), + [aux_sym_protocol_token1] = ACTIONS(1862), + [aux_sym_proxy_command_token1] = ACTIONS(1862), + [aux_sym_proxy_jump_token1] = ACTIONS(1862), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1862), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1862), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1862), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1862), + [aux_sym_rekey_limit_token1] = ACTIONS(1862), + [aux_sym_remote_command_token1] = ACTIONS(1862), + [aux_sym_remote_forward_token1] = ACTIONS(1862), + [aux_sym_request_tty_token1] = ACTIONS(1862), + [aux_sym_required_rsa_size_token1] = ACTIONS(1862), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1862), + [aux_sym_security_key_provider_token1] = ACTIONS(1862), + [aux_sym_send_env_token1] = ACTIONS(1862), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1862), + [aux_sym_server_alive_interval_token1] = ACTIONS(1862), + [aux_sym_session_type_token1] = ACTIONS(1862), + [aux_sym_set_env_token1] = ACTIONS(1862), + [aux_sym_stdin_null_token1] = ACTIONS(1862), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1862), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1862), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1862), + [aux_sym_syslog_facility_token1] = ACTIONS(1862), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1862), + [aux_sym_keep_alive_token1] = ACTIONS(1862), + [aux_sym_tunnel_token1] = ACTIONS(1864), + [aux_sym_tunnel_device_token1] = ACTIONS(1862), + [aux_sym_update_host_keys_token1] = ACTIONS(1862), + [aux_sym_use_keychain_token1] = ACTIONS(1862), + [aux_sym_use_roaming_token1] = ACTIONS(1862), + [aux_sym_user_token1] = ACTIONS(1864), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1862), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1862), + [aux_sym_visual_host_key_token1] = ACTIONS(1862), + [aux_sym_xauth_location_token1] = ACTIONS(1862), }, [694] = { - [ts_builtin_sym_end] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1283), - [aux_sym_match_token1] = ACTIONS(1281), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1281), - [aux_sym_address_family_token1] = ACTIONS(1281), - [aux_sym_batch_mode_token1] = ACTIONS(1281), - [aux_sym_bind_address_token1] = ACTIONS(1281), - [aux_sym_bind_interface_token1] = ACTIONS(1281), - [aux_sym_canonical_domains_token1] = ACTIONS(1281), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1281), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1281), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1281), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1281), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1281), - [aux_sym_certificate_file_token1] = ACTIONS(1281), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1281), - [aux_sym_check_host_ip_token1] = ACTIONS(1281), - [aux_sym_ciphers_token1] = ACTIONS(1281), - [aux_sym_cipher_token1] = ACTIONS(1283), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1281), - [aux_sym_compression_token1] = ACTIONS(1281), - [aux_sym_connection_attempts_token1] = ACTIONS(1281), - [aux_sym_connect_timeout_token1] = ACTIONS(1281), - [aux_sym_control_master_token1] = ACTIONS(1281), - [aux_sym_control_path_token1] = ACTIONS(1281), - [aux_sym_control_persist_token1] = ACTIONS(1281), - [aux_sym_dynamic_forward_token1] = ACTIONS(1281), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1281), - [aux_sym_escape_char_token1] = ACTIONS(1281), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1281), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1281), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1281), - [aux_sym_forward_agent_token1] = ACTIONS(1281), - [aux_sym_forward_x11_token1] = ACTIONS(1283), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1281), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1281), - [aux_sym_gateway_ports_token1] = ACTIONS(1281), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1281), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1281), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1281), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1281), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1281), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1281), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1281), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1281), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1281), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1281), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1281), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1281), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1281), - [aux_sym_host_key_alias_token1] = ACTIONS(1281), - [aux_sym_hostname_token1] = ACTIONS(1281), - [aux_sym_identities_only_token1] = ACTIONS(1281), - [aux_sym_identity_agent_token1] = ACTIONS(1281), - [aux_sym_identity_file_token1] = ACTIONS(1281), - [aux_sym_ignore_unknown_token1] = ACTIONS(1281), - [aux_sym_include_token1] = ACTIONS(1281), - [aux_sym_ip_qos_token1] = ACTIONS(1281), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1281), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1281), - [aux_sym_kex_algorithms_token1] = ACTIONS(1281), - [aux_sym_known_hosts_command_token1] = ACTIONS(1281), - [aux_sym_local_command_token1] = ACTIONS(1281), - [aux_sym_local_forward_token1] = ACTIONS(1281), - [aux_sym_log_level_token1] = ACTIONS(1281), - [aux_sym_log_verbose_token1] = ACTIONS(1281), - [aux_sym_macs_token1] = ACTIONS(1281), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1281), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1281), - [aux_sym_password_authentication_token1] = ACTIONS(1281), - [aux_sym_permit_local_command_token1] = ACTIONS(1281), - [aux_sym_permit_remote_open_token1] = ACTIONS(1281), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1281), - [aux_sym_port_token1] = ACTIONS(1281), - [aux_sym_preferred_authentications_token1] = ACTIONS(1281), - [aux_sym_protocol_token1] = ACTIONS(1281), - [aux_sym_proxy_command_token1] = ACTIONS(1281), - [aux_sym_proxy_jump_token1] = ACTIONS(1281), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1281), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1281), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1281), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1281), - [aux_sym_rekey_limit_token1] = ACTIONS(1281), - [aux_sym_remote_command_token1] = ACTIONS(1281), - [aux_sym_remote_forward_token1] = ACTIONS(1281), - [aux_sym_request_tty_token1] = ACTIONS(1281), - [aux_sym_required_rsa_size_token1] = ACTIONS(1281), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1281), - [aux_sym_security_key_provider_token1] = ACTIONS(1281), - [aux_sym_send_env_token1] = ACTIONS(1281), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1281), - [aux_sym_server_alive_interval_token1] = ACTIONS(1281), - [aux_sym_session_type_token1] = ACTIONS(1281), - [aux_sym_set_env_token1] = ACTIONS(1281), - [aux_sym_stdin_null_token1] = ACTIONS(1281), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1281), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1281), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1281), - [aux_sym_syslog_facility_token1] = ACTIONS(1281), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1281), - [aux_sym_keep_alive_token1] = ACTIONS(1281), - [aux_sym_tunnel_token1] = ACTIONS(1283), - [aux_sym_tunnel_device_token1] = ACTIONS(1281), - [aux_sym_update_host_keys_token1] = ACTIONS(1281), - [aux_sym_use_keychain_token1] = ACTIONS(1281), - [aux_sym_use_roaming_token1] = ACTIONS(1281), - [aux_sym_user_token1] = ACTIONS(1283), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1281), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1281), - [aux_sym_visual_host_key_token1] = ACTIONS(1281), - [aux_sym_xauth_location_token1] = ACTIONS(1281), + [ts_builtin_sym_end] = ACTIONS(650), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(652), + [aux_sym_match_token1] = ACTIONS(650), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(650), + [aux_sym_address_family_token1] = ACTIONS(650), + [aux_sym_batch_mode_token1] = ACTIONS(650), + [aux_sym_bind_address_token1] = ACTIONS(650), + [aux_sym_bind_interface_token1] = ACTIONS(650), + [aux_sym_canonical_domains_token1] = ACTIONS(650), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(650), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(650), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(650), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(650), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(650), + [aux_sym_certificate_file_token1] = ACTIONS(650), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(650), + [aux_sym_check_host_ip_token1] = ACTIONS(650), + [aux_sym_ciphers_token1] = ACTIONS(650), + [aux_sym_cipher_token1] = ACTIONS(652), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(650), + [aux_sym_compression_token1] = ACTIONS(650), + [aux_sym_connection_attempts_token1] = ACTIONS(650), + [aux_sym_connect_timeout_token1] = ACTIONS(650), + [aux_sym_control_master_token1] = ACTIONS(650), + [aux_sym_control_path_token1] = ACTIONS(650), + [aux_sym_control_persist_token1] = ACTIONS(650), + [aux_sym_dynamic_forward_token1] = ACTIONS(650), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(650), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(650), + [aux_sym_escape_char_token1] = ACTIONS(650), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(650), + [aux_sym_fingerprint_hash_token1] = ACTIONS(650), + [aux_sym_fork_after_authentication_token1] = ACTIONS(650), + [aux_sym_forward_agent_token1] = ACTIONS(650), + [aux_sym_forward_x11_token1] = ACTIONS(652), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(650), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(650), + [aux_sym_gateway_ports_token1] = ACTIONS(650), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(650), + [aux_sym_gssapi_authentication_token1] = ACTIONS(650), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(650), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(650), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(650), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(650), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(650), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(650), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(650), + [aux_sym_hash_known_hosts_token1] = ACTIONS(650), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(650), + [aux_sym_hostbased_authentication_token1] = ACTIONS(650), + [aux_sym_host_key_algorithms_token1] = ACTIONS(650), + [aux_sym_host_key_alias_token1] = ACTIONS(650), + [aux_sym_hostname_token1] = ACTIONS(650), + [aux_sym_identities_only_token1] = ACTIONS(650), + [aux_sym_identity_agent_token1] = ACTIONS(650), + [aux_sym_identity_file_token1] = ACTIONS(650), + [aux_sym_ignore_unknown_token1] = ACTIONS(650), + [aux_sym_include_token1] = ACTIONS(650), + [aux_sym_ip_qos_token1] = ACTIONS(650), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(650), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(650), + [aux_sym_kex_algorithms_token1] = ACTIONS(650), + [aux_sym_known_hosts_command_token1] = ACTIONS(650), + [aux_sym_local_command_token1] = ACTIONS(650), + [aux_sym_local_forward_token1] = ACTIONS(650), + [aux_sym_log_level_token1] = ACTIONS(650), + [aux_sym_log_verbose_token1] = ACTIONS(650), + [aux_sym_macs_token1] = ACTIONS(650), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(650), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(650), + [aux_sym_password_authentication_token1] = ACTIONS(650), + [aux_sym_permit_local_command_token1] = ACTIONS(650), + [aux_sym_permit_remote_open_token1] = ACTIONS(650), + [aux_sym_pkcs11_provider_token1] = ACTIONS(650), + [aux_sym_port_token1] = ACTIONS(650), + [aux_sym_preferred_authentications_token1] = ACTIONS(650), + [aux_sym_protocol_token1] = ACTIONS(650), + [aux_sym_proxy_command_token1] = ACTIONS(650), + [aux_sym_proxy_jump_token1] = ACTIONS(650), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(650), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(650), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(650), + [aux_sym_pubkey_authentication_token1] = ACTIONS(650), + [aux_sym_rekey_limit_token1] = ACTIONS(650), + [aux_sym_remote_command_token1] = ACTIONS(650), + [aux_sym_remote_forward_token1] = ACTIONS(650), + [aux_sym_request_tty_token1] = ACTIONS(650), + [aux_sym_required_rsa_size_token1] = ACTIONS(650), + [aux_sym_revoked_host_keys_token1] = ACTIONS(650), + [aux_sym_security_key_provider_token1] = ACTIONS(650), + [aux_sym_send_env_token1] = ACTIONS(650), + [aux_sym_server_alive_count_max_token1] = ACTIONS(650), + [aux_sym_server_alive_interval_token1] = ACTIONS(650), + [aux_sym_session_type_token1] = ACTIONS(650), + [aux_sym_set_env_token1] = ACTIONS(650), + [aux_sym_stdin_null_token1] = ACTIONS(650), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(650), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(650), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(650), + [aux_sym_syslog_facility_token1] = ACTIONS(650), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(650), + [aux_sym_keep_alive_token1] = ACTIONS(650), + [aux_sym_tunnel_token1] = ACTIONS(652), + [aux_sym_tunnel_device_token1] = ACTIONS(650), + [aux_sym_update_host_keys_token1] = ACTIONS(650), + [aux_sym_use_keychain_token1] = ACTIONS(650), + [aux_sym_use_roaming_token1] = ACTIONS(650), + [aux_sym_user_token1] = ACTIONS(652), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(650), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(650), + [aux_sym_visual_host_key_token1] = ACTIONS(650), + [aux_sym_xauth_location_token1] = ACTIONS(650), }, [695] = { - [ts_builtin_sym_end] = ACTIONS(1287), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1289), - [aux_sym_match_token1] = ACTIONS(1287), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1287), - [aux_sym_address_family_token1] = ACTIONS(1287), - [aux_sym_batch_mode_token1] = ACTIONS(1287), - [aux_sym_bind_address_token1] = ACTIONS(1287), - [aux_sym_bind_interface_token1] = ACTIONS(1287), - [aux_sym_canonical_domains_token1] = ACTIONS(1287), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1287), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1287), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1287), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1287), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1287), - [aux_sym_certificate_file_token1] = ACTIONS(1287), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1287), - [aux_sym_check_host_ip_token1] = ACTIONS(1287), - [aux_sym_ciphers_token1] = ACTIONS(1287), - [aux_sym_cipher_token1] = ACTIONS(1289), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1287), - [aux_sym_compression_token1] = ACTIONS(1287), - [aux_sym_connection_attempts_token1] = ACTIONS(1287), - [aux_sym_connect_timeout_token1] = ACTIONS(1287), - [aux_sym_control_master_token1] = ACTIONS(1287), - [aux_sym_control_path_token1] = ACTIONS(1287), - [aux_sym_control_persist_token1] = ACTIONS(1287), - [aux_sym_dynamic_forward_token1] = ACTIONS(1287), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1287), - [aux_sym_escape_char_token1] = ACTIONS(1287), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1287), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1287), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1287), - [aux_sym_forward_agent_token1] = ACTIONS(1287), - [aux_sym_forward_x11_token1] = ACTIONS(1289), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1287), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1287), - [aux_sym_gateway_ports_token1] = ACTIONS(1287), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1287), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1287), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1287), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1287), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1287), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1287), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1287), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1287), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1287), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1287), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1287), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1287), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1287), - [aux_sym_host_key_alias_token1] = ACTIONS(1287), - [aux_sym_hostname_token1] = ACTIONS(1287), - [aux_sym_identities_only_token1] = ACTIONS(1287), - [aux_sym_identity_agent_token1] = ACTIONS(1287), - [aux_sym_identity_file_token1] = ACTIONS(1287), - [aux_sym_ignore_unknown_token1] = ACTIONS(1287), - [aux_sym_include_token1] = ACTIONS(1287), - [aux_sym_ip_qos_token1] = ACTIONS(1287), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1287), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1287), - [aux_sym_kex_algorithms_token1] = ACTIONS(1287), - [aux_sym_known_hosts_command_token1] = ACTIONS(1287), - [aux_sym_local_command_token1] = ACTIONS(1287), - [aux_sym_local_forward_token1] = ACTIONS(1287), - [aux_sym_log_level_token1] = ACTIONS(1287), - [aux_sym_log_verbose_token1] = ACTIONS(1287), - [aux_sym_macs_token1] = ACTIONS(1287), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1287), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1287), - [aux_sym_password_authentication_token1] = ACTIONS(1287), - [aux_sym_permit_local_command_token1] = ACTIONS(1287), - [aux_sym_permit_remote_open_token1] = ACTIONS(1287), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1287), - [aux_sym_port_token1] = ACTIONS(1287), - [aux_sym_preferred_authentications_token1] = ACTIONS(1287), - [aux_sym_protocol_token1] = ACTIONS(1287), - [aux_sym_proxy_command_token1] = ACTIONS(1287), - [aux_sym_proxy_jump_token1] = ACTIONS(1287), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1287), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1287), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1287), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1287), - [aux_sym_rekey_limit_token1] = ACTIONS(1287), - [aux_sym_remote_command_token1] = ACTIONS(1287), - [aux_sym_remote_forward_token1] = ACTIONS(1287), - [aux_sym_request_tty_token1] = ACTIONS(1287), - [aux_sym_required_rsa_size_token1] = ACTIONS(1287), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1287), - [aux_sym_security_key_provider_token1] = ACTIONS(1287), - [aux_sym_send_env_token1] = ACTIONS(1287), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1287), - [aux_sym_server_alive_interval_token1] = ACTIONS(1287), - [aux_sym_session_type_token1] = ACTIONS(1287), - [aux_sym_set_env_token1] = ACTIONS(1287), - [aux_sym_stdin_null_token1] = ACTIONS(1287), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1287), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1287), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1287), - [aux_sym_syslog_facility_token1] = ACTIONS(1287), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1287), - [aux_sym_keep_alive_token1] = ACTIONS(1287), - [aux_sym_tunnel_token1] = ACTIONS(1289), - [aux_sym_tunnel_device_token1] = ACTIONS(1287), - [aux_sym_update_host_keys_token1] = ACTIONS(1287), - [aux_sym_use_keychain_token1] = ACTIONS(1287), - [aux_sym_use_roaming_token1] = ACTIONS(1287), - [aux_sym_user_token1] = ACTIONS(1289), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1287), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1287), - [aux_sym_visual_host_key_token1] = ACTIONS(1287), - [aux_sym_xauth_location_token1] = ACTIONS(1287), + [ts_builtin_sym_end] = ACTIONS(1520), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1522), + [aux_sym_match_token1] = ACTIONS(1520), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1520), + [aux_sym_address_family_token1] = ACTIONS(1520), + [aux_sym_batch_mode_token1] = ACTIONS(1520), + [aux_sym_bind_address_token1] = ACTIONS(1520), + [aux_sym_bind_interface_token1] = ACTIONS(1520), + [aux_sym_canonical_domains_token1] = ACTIONS(1520), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1520), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1520), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1520), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1520), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1520), + [aux_sym_certificate_file_token1] = ACTIONS(1520), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1520), + [aux_sym_check_host_ip_token1] = ACTIONS(1520), + [aux_sym_ciphers_token1] = ACTIONS(1520), + [aux_sym_cipher_token1] = ACTIONS(1522), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1520), + [aux_sym_compression_token1] = ACTIONS(1520), + [aux_sym_connection_attempts_token1] = ACTIONS(1520), + [aux_sym_connect_timeout_token1] = ACTIONS(1520), + [aux_sym_control_master_token1] = ACTIONS(1520), + [aux_sym_control_path_token1] = ACTIONS(1520), + [aux_sym_control_persist_token1] = ACTIONS(1520), + [aux_sym_dynamic_forward_token1] = ACTIONS(1520), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1520), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1520), + [aux_sym_escape_char_token1] = ACTIONS(1520), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1520), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1520), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1520), + [aux_sym_forward_agent_token1] = ACTIONS(1520), + [aux_sym_forward_x11_token1] = ACTIONS(1522), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1520), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1520), + [aux_sym_gateway_ports_token1] = ACTIONS(1520), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1520), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1520), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1520), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1520), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1520), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1520), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1520), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1520), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1520), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1520), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1520), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1520), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1520), + [aux_sym_host_key_alias_token1] = ACTIONS(1520), + [aux_sym_hostname_token1] = ACTIONS(1520), + [aux_sym_identities_only_token1] = ACTIONS(1520), + [aux_sym_identity_agent_token1] = ACTIONS(1520), + [aux_sym_identity_file_token1] = ACTIONS(1520), + [aux_sym_ignore_unknown_token1] = ACTIONS(1520), + [aux_sym_include_token1] = ACTIONS(1520), + [aux_sym_ip_qos_token1] = ACTIONS(1520), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1520), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1520), + [aux_sym_kex_algorithms_token1] = ACTIONS(1520), + [aux_sym_known_hosts_command_token1] = ACTIONS(1520), + [aux_sym_local_command_token1] = ACTIONS(1520), + [aux_sym_local_forward_token1] = ACTIONS(1520), + [aux_sym_log_level_token1] = ACTIONS(1520), + [aux_sym_log_verbose_token1] = ACTIONS(1520), + [aux_sym_macs_token1] = ACTIONS(1520), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1520), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1520), + [aux_sym_password_authentication_token1] = ACTIONS(1520), + [aux_sym_permit_local_command_token1] = ACTIONS(1520), + [aux_sym_permit_remote_open_token1] = ACTIONS(1520), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1520), + [aux_sym_port_token1] = ACTIONS(1520), + [aux_sym_preferred_authentications_token1] = ACTIONS(1520), + [aux_sym_protocol_token1] = ACTIONS(1520), + [aux_sym_proxy_command_token1] = ACTIONS(1520), + [aux_sym_proxy_jump_token1] = ACTIONS(1520), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1520), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1520), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1520), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1520), + [aux_sym_rekey_limit_token1] = ACTIONS(1520), + [aux_sym_remote_command_token1] = ACTIONS(1520), + [aux_sym_remote_forward_token1] = ACTIONS(1520), + [aux_sym_request_tty_token1] = ACTIONS(1520), + [aux_sym_required_rsa_size_token1] = ACTIONS(1520), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1520), + [aux_sym_security_key_provider_token1] = ACTIONS(1520), + [aux_sym_send_env_token1] = ACTIONS(1520), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1520), + [aux_sym_server_alive_interval_token1] = ACTIONS(1520), + [aux_sym_session_type_token1] = ACTIONS(1520), + [aux_sym_set_env_token1] = ACTIONS(1520), + [aux_sym_stdin_null_token1] = ACTIONS(1520), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1520), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1520), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1520), + [aux_sym_syslog_facility_token1] = ACTIONS(1520), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1520), + [aux_sym_keep_alive_token1] = ACTIONS(1520), + [aux_sym_tunnel_token1] = ACTIONS(1522), + [aux_sym_tunnel_device_token1] = ACTIONS(1520), + [aux_sym_update_host_keys_token1] = ACTIONS(1520), + [aux_sym_use_keychain_token1] = ACTIONS(1520), + [aux_sym_use_roaming_token1] = ACTIONS(1520), + [aux_sym_user_token1] = ACTIONS(1522), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1520), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1520), + [aux_sym_visual_host_key_token1] = ACTIONS(1520), + [aux_sym_xauth_location_token1] = ACTIONS(1520), }, [696] = { - [ts_builtin_sym_end] = ACTIONS(1827), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1829), - [aux_sym_match_token1] = ACTIONS(1827), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1827), - [aux_sym_address_family_token1] = ACTIONS(1827), - [aux_sym_batch_mode_token1] = ACTIONS(1827), - [aux_sym_bind_address_token1] = ACTIONS(1827), - [aux_sym_bind_interface_token1] = ACTIONS(1827), - [aux_sym_canonical_domains_token1] = ACTIONS(1827), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1827), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1827), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1827), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1827), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1827), - [aux_sym_certificate_file_token1] = ACTIONS(1827), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1827), - [aux_sym_check_host_ip_token1] = ACTIONS(1827), - [aux_sym_ciphers_token1] = ACTIONS(1827), - [aux_sym_cipher_token1] = ACTIONS(1829), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1827), - [aux_sym_compression_token1] = ACTIONS(1827), - [aux_sym_connection_attempts_token1] = ACTIONS(1827), - [aux_sym_connect_timeout_token1] = ACTIONS(1827), - [aux_sym_control_master_token1] = ACTIONS(1827), - [aux_sym_control_path_token1] = ACTIONS(1827), - [aux_sym_control_persist_token1] = ACTIONS(1827), - [aux_sym_dynamic_forward_token1] = ACTIONS(1827), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1827), - [aux_sym_escape_char_token1] = ACTIONS(1827), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1827), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1827), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1827), - [aux_sym_forward_agent_token1] = ACTIONS(1827), - [aux_sym_forward_x11_token1] = ACTIONS(1829), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1827), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1827), - [aux_sym_gateway_ports_token1] = ACTIONS(1827), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1827), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1827), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1827), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1827), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1827), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1827), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1827), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1827), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1827), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1827), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1827), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1827), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1827), - [aux_sym_host_key_alias_token1] = ACTIONS(1827), - [aux_sym_hostname_token1] = ACTIONS(1827), - [aux_sym_identities_only_token1] = ACTIONS(1827), - [aux_sym_identity_agent_token1] = ACTIONS(1827), - [aux_sym_identity_file_token1] = ACTIONS(1827), - [aux_sym_ignore_unknown_token1] = ACTIONS(1827), - [aux_sym_include_token1] = ACTIONS(1827), - [aux_sym_ip_qos_token1] = ACTIONS(1827), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1827), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1827), - [aux_sym_kex_algorithms_token1] = ACTIONS(1827), - [aux_sym_known_hosts_command_token1] = ACTIONS(1827), - [aux_sym_local_command_token1] = ACTIONS(1827), - [aux_sym_local_forward_token1] = ACTIONS(1827), - [aux_sym_log_level_token1] = ACTIONS(1827), - [aux_sym_log_verbose_token1] = ACTIONS(1827), - [aux_sym_macs_token1] = ACTIONS(1827), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1827), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1827), - [aux_sym_password_authentication_token1] = ACTIONS(1827), - [aux_sym_permit_local_command_token1] = ACTIONS(1827), - [aux_sym_permit_remote_open_token1] = ACTIONS(1827), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1827), - [aux_sym_port_token1] = ACTIONS(1827), - [aux_sym_preferred_authentications_token1] = ACTIONS(1827), - [aux_sym_protocol_token1] = ACTIONS(1827), - [aux_sym_proxy_command_token1] = ACTIONS(1827), - [aux_sym_proxy_jump_token1] = ACTIONS(1827), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1827), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1827), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1827), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1827), - [aux_sym_rekey_limit_token1] = ACTIONS(1827), - [aux_sym_remote_command_token1] = ACTIONS(1827), - [aux_sym_remote_forward_token1] = ACTIONS(1827), - [aux_sym_request_tty_token1] = ACTIONS(1827), - [aux_sym_required_rsa_size_token1] = ACTIONS(1827), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1827), - [aux_sym_security_key_provider_token1] = ACTIONS(1827), - [aux_sym_send_env_token1] = ACTIONS(1827), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1827), - [aux_sym_server_alive_interval_token1] = ACTIONS(1827), - [aux_sym_session_type_token1] = ACTIONS(1827), - [aux_sym_set_env_token1] = ACTIONS(1827), - [aux_sym_stdin_null_token1] = ACTIONS(1827), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1827), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1827), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1827), - [aux_sym_syslog_facility_token1] = ACTIONS(1827), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1827), - [aux_sym_keep_alive_token1] = ACTIONS(1827), - [aux_sym_tunnel_token1] = ACTIONS(1829), - [aux_sym_tunnel_device_token1] = ACTIONS(1827), - [aux_sym_update_host_keys_token1] = ACTIONS(1827), - [aux_sym_use_keychain_token1] = ACTIONS(1827), - [aux_sym_use_roaming_token1] = ACTIONS(1827), - [aux_sym_user_token1] = ACTIONS(1829), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1827), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1827), - [aux_sym_visual_host_key_token1] = ACTIONS(1827), - [aux_sym_xauth_location_token1] = ACTIONS(1827), + [ts_builtin_sym_end] = ACTIONS(1856), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1858), + [aux_sym_match_token1] = ACTIONS(1856), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1856), + [aux_sym_address_family_token1] = ACTIONS(1856), + [aux_sym_batch_mode_token1] = ACTIONS(1856), + [aux_sym_bind_address_token1] = ACTIONS(1856), + [aux_sym_bind_interface_token1] = ACTIONS(1856), + [aux_sym_canonical_domains_token1] = ACTIONS(1856), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1856), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1856), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1856), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1856), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1856), + [aux_sym_certificate_file_token1] = ACTIONS(1856), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1856), + [aux_sym_check_host_ip_token1] = ACTIONS(1856), + [aux_sym_ciphers_token1] = ACTIONS(1856), + [aux_sym_cipher_token1] = ACTIONS(1858), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1856), + [aux_sym_compression_token1] = ACTIONS(1856), + [aux_sym_connection_attempts_token1] = ACTIONS(1856), + [aux_sym_connect_timeout_token1] = ACTIONS(1856), + [aux_sym_control_master_token1] = ACTIONS(1856), + [aux_sym_control_path_token1] = ACTIONS(1856), + [aux_sym_control_persist_token1] = ACTIONS(1856), + [aux_sym_dynamic_forward_token1] = ACTIONS(1856), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1856), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1856), + [aux_sym_escape_char_token1] = ACTIONS(1856), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1856), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1856), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1856), + [aux_sym_forward_agent_token1] = ACTIONS(1856), + [aux_sym_forward_x11_token1] = ACTIONS(1858), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1856), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1856), + [aux_sym_gateway_ports_token1] = ACTIONS(1856), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1856), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1856), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1856), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1856), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1856), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1856), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1856), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1856), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1856), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1856), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1856), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1856), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1856), + [aux_sym_host_key_alias_token1] = ACTIONS(1856), + [aux_sym_hostname_token1] = ACTIONS(1856), + [aux_sym_identities_only_token1] = ACTIONS(1856), + [aux_sym_identity_agent_token1] = ACTIONS(1856), + [aux_sym_identity_file_token1] = ACTIONS(1856), + [aux_sym_ignore_unknown_token1] = ACTIONS(1856), + [aux_sym_include_token1] = ACTIONS(1856), + [aux_sym_ip_qos_token1] = ACTIONS(1856), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1856), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1856), + [aux_sym_kex_algorithms_token1] = ACTIONS(1856), + [aux_sym_known_hosts_command_token1] = ACTIONS(1856), + [aux_sym_local_command_token1] = ACTIONS(1856), + [aux_sym_local_forward_token1] = ACTIONS(1856), + [aux_sym_log_level_token1] = ACTIONS(1856), + [aux_sym_log_verbose_token1] = ACTIONS(1856), + [aux_sym_macs_token1] = ACTIONS(1856), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1856), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1856), + [aux_sym_password_authentication_token1] = ACTIONS(1856), + [aux_sym_permit_local_command_token1] = ACTIONS(1856), + [aux_sym_permit_remote_open_token1] = ACTIONS(1856), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1856), + [aux_sym_port_token1] = ACTIONS(1856), + [aux_sym_preferred_authentications_token1] = ACTIONS(1856), + [aux_sym_protocol_token1] = ACTIONS(1856), + [aux_sym_proxy_command_token1] = ACTIONS(1856), + [aux_sym_proxy_jump_token1] = ACTIONS(1856), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1856), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1856), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1856), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1856), + [aux_sym_rekey_limit_token1] = ACTIONS(1856), + [aux_sym_remote_command_token1] = ACTIONS(1856), + [aux_sym_remote_forward_token1] = ACTIONS(1856), + [aux_sym_request_tty_token1] = ACTIONS(1856), + [aux_sym_required_rsa_size_token1] = ACTIONS(1856), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1856), + [aux_sym_security_key_provider_token1] = ACTIONS(1856), + [aux_sym_send_env_token1] = ACTIONS(1856), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1856), + [aux_sym_server_alive_interval_token1] = ACTIONS(1856), + [aux_sym_session_type_token1] = ACTIONS(1856), + [aux_sym_set_env_token1] = ACTIONS(1856), + [aux_sym_stdin_null_token1] = ACTIONS(1856), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1856), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1856), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1856), + [aux_sym_syslog_facility_token1] = ACTIONS(1856), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1856), + [aux_sym_keep_alive_token1] = ACTIONS(1856), + [aux_sym_tunnel_token1] = ACTIONS(1858), + [aux_sym_tunnel_device_token1] = ACTIONS(1856), + [aux_sym_update_host_keys_token1] = ACTIONS(1856), + [aux_sym_use_keychain_token1] = ACTIONS(1856), + [aux_sym_use_roaming_token1] = ACTIONS(1856), + [aux_sym_user_token1] = ACTIONS(1858), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1856), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1856), + [aux_sym_visual_host_key_token1] = ACTIONS(1856), + [aux_sym_xauth_location_token1] = ACTIONS(1856), }, [697] = { - [ts_builtin_sym_end] = ACTIONS(1293), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1295), - [aux_sym_match_token1] = ACTIONS(1293), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1293), - [aux_sym_address_family_token1] = ACTIONS(1293), - [aux_sym_batch_mode_token1] = ACTIONS(1293), - [aux_sym_bind_address_token1] = ACTIONS(1293), - [aux_sym_bind_interface_token1] = ACTIONS(1293), - [aux_sym_canonical_domains_token1] = ACTIONS(1293), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1293), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1293), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1293), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1293), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1293), - [aux_sym_certificate_file_token1] = ACTIONS(1293), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1293), - [aux_sym_check_host_ip_token1] = ACTIONS(1293), - [aux_sym_ciphers_token1] = ACTIONS(1293), - [aux_sym_cipher_token1] = ACTIONS(1295), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1293), - [aux_sym_compression_token1] = ACTIONS(1293), - [aux_sym_connection_attempts_token1] = ACTIONS(1293), - [aux_sym_connect_timeout_token1] = ACTIONS(1293), - [aux_sym_control_master_token1] = ACTIONS(1293), - [aux_sym_control_path_token1] = ACTIONS(1293), - [aux_sym_control_persist_token1] = ACTIONS(1293), - [aux_sym_dynamic_forward_token1] = ACTIONS(1293), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1293), - [aux_sym_escape_char_token1] = ACTIONS(1293), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1293), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1293), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1293), - [aux_sym_forward_agent_token1] = ACTIONS(1293), - [aux_sym_forward_x11_token1] = ACTIONS(1295), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1293), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1293), - [aux_sym_gateway_ports_token1] = ACTIONS(1293), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1293), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1293), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1293), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1293), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1293), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1293), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1293), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1293), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1293), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1293), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1293), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1293), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1293), - [aux_sym_host_key_alias_token1] = ACTIONS(1293), - [aux_sym_hostname_token1] = ACTIONS(1293), - [aux_sym_identities_only_token1] = ACTIONS(1293), - [aux_sym_identity_agent_token1] = ACTIONS(1293), - [aux_sym_identity_file_token1] = ACTIONS(1293), - [aux_sym_ignore_unknown_token1] = ACTIONS(1293), - [aux_sym_include_token1] = ACTIONS(1293), - [aux_sym_ip_qos_token1] = ACTIONS(1293), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1293), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1293), - [aux_sym_kex_algorithms_token1] = ACTIONS(1293), - [aux_sym_known_hosts_command_token1] = ACTIONS(1293), - [aux_sym_local_command_token1] = ACTIONS(1293), - [aux_sym_local_forward_token1] = ACTIONS(1293), - [aux_sym_log_level_token1] = ACTIONS(1293), - [aux_sym_log_verbose_token1] = ACTIONS(1293), - [aux_sym_macs_token1] = ACTIONS(1293), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1293), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1293), - [aux_sym_password_authentication_token1] = ACTIONS(1293), - [aux_sym_permit_local_command_token1] = ACTIONS(1293), - [aux_sym_permit_remote_open_token1] = ACTIONS(1293), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1293), - [aux_sym_port_token1] = ACTIONS(1293), - [aux_sym_preferred_authentications_token1] = ACTIONS(1293), - [aux_sym_protocol_token1] = ACTIONS(1293), - [aux_sym_proxy_command_token1] = ACTIONS(1293), - [aux_sym_proxy_jump_token1] = ACTIONS(1293), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1293), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1293), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1293), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1293), - [aux_sym_rekey_limit_token1] = ACTIONS(1293), - [aux_sym_remote_command_token1] = ACTIONS(1293), - [aux_sym_remote_forward_token1] = ACTIONS(1293), - [aux_sym_request_tty_token1] = ACTIONS(1293), - [aux_sym_required_rsa_size_token1] = ACTIONS(1293), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1293), - [aux_sym_security_key_provider_token1] = ACTIONS(1293), - [aux_sym_send_env_token1] = ACTIONS(1293), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1293), - [aux_sym_server_alive_interval_token1] = ACTIONS(1293), - [aux_sym_session_type_token1] = ACTIONS(1293), - [aux_sym_set_env_token1] = ACTIONS(1293), - [aux_sym_stdin_null_token1] = ACTIONS(1293), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1293), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1293), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1293), - [aux_sym_syslog_facility_token1] = ACTIONS(1293), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1293), - [aux_sym_keep_alive_token1] = ACTIONS(1293), - [aux_sym_tunnel_token1] = ACTIONS(1295), - [aux_sym_tunnel_device_token1] = ACTIONS(1293), - [aux_sym_update_host_keys_token1] = ACTIONS(1293), - [aux_sym_use_keychain_token1] = ACTIONS(1293), - [aux_sym_use_roaming_token1] = ACTIONS(1293), - [aux_sym_user_token1] = ACTIONS(1295), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1293), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1293), - [aux_sym_visual_host_key_token1] = ACTIONS(1293), - [aux_sym_xauth_location_token1] = ACTIONS(1293), + [ts_builtin_sym_end] = ACTIONS(836), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(838), + [aux_sym_match_token1] = ACTIONS(836), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(836), + [aux_sym_address_family_token1] = ACTIONS(836), + [aux_sym_batch_mode_token1] = ACTIONS(836), + [aux_sym_bind_address_token1] = ACTIONS(836), + [aux_sym_bind_interface_token1] = ACTIONS(836), + [aux_sym_canonical_domains_token1] = ACTIONS(836), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(836), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(836), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(836), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(836), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(836), + [aux_sym_certificate_file_token1] = ACTIONS(836), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(836), + [aux_sym_check_host_ip_token1] = ACTIONS(836), + [aux_sym_ciphers_token1] = ACTIONS(836), + [aux_sym_cipher_token1] = ACTIONS(838), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(836), + [aux_sym_compression_token1] = ACTIONS(836), + [aux_sym_connection_attempts_token1] = ACTIONS(836), + [aux_sym_connect_timeout_token1] = ACTIONS(836), + [aux_sym_control_master_token1] = ACTIONS(836), + [aux_sym_control_path_token1] = ACTIONS(836), + [aux_sym_control_persist_token1] = ACTIONS(836), + [aux_sym_dynamic_forward_token1] = ACTIONS(836), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(836), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(836), + [aux_sym_escape_char_token1] = ACTIONS(836), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(836), + [aux_sym_fingerprint_hash_token1] = ACTIONS(836), + [aux_sym_fork_after_authentication_token1] = ACTIONS(836), + [aux_sym_forward_agent_token1] = ACTIONS(836), + [aux_sym_forward_x11_token1] = ACTIONS(838), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(836), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(836), + [aux_sym_gateway_ports_token1] = ACTIONS(836), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(836), + [aux_sym_gssapi_authentication_token1] = ACTIONS(836), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(836), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(836), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(836), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(836), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(836), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(836), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(836), + [aux_sym_hash_known_hosts_token1] = ACTIONS(836), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(836), + [aux_sym_hostbased_authentication_token1] = ACTIONS(836), + [aux_sym_host_key_algorithms_token1] = ACTIONS(836), + [aux_sym_host_key_alias_token1] = ACTIONS(836), + [aux_sym_hostname_token1] = ACTIONS(836), + [aux_sym_identities_only_token1] = ACTIONS(836), + [aux_sym_identity_agent_token1] = ACTIONS(836), + [aux_sym_identity_file_token1] = ACTIONS(836), + [aux_sym_ignore_unknown_token1] = ACTIONS(836), + [aux_sym_include_token1] = ACTIONS(836), + [aux_sym_ip_qos_token1] = ACTIONS(836), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(836), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(836), + [aux_sym_kex_algorithms_token1] = ACTIONS(836), + [aux_sym_known_hosts_command_token1] = ACTIONS(836), + [aux_sym_local_command_token1] = ACTIONS(836), + [aux_sym_local_forward_token1] = ACTIONS(836), + [aux_sym_log_level_token1] = ACTIONS(836), + [aux_sym_log_verbose_token1] = ACTIONS(836), + [aux_sym_macs_token1] = ACTIONS(836), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(836), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(836), + [aux_sym_password_authentication_token1] = ACTIONS(836), + [aux_sym_permit_local_command_token1] = ACTIONS(836), + [aux_sym_permit_remote_open_token1] = ACTIONS(836), + [aux_sym_pkcs11_provider_token1] = ACTIONS(836), + [aux_sym_port_token1] = ACTIONS(836), + [aux_sym_preferred_authentications_token1] = ACTIONS(836), + [aux_sym_protocol_token1] = ACTIONS(836), + [aux_sym_proxy_command_token1] = ACTIONS(836), + [aux_sym_proxy_jump_token1] = ACTIONS(836), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(836), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(836), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(836), + [aux_sym_pubkey_authentication_token1] = ACTIONS(836), + [aux_sym_rekey_limit_token1] = ACTIONS(836), + [aux_sym_remote_command_token1] = ACTIONS(836), + [aux_sym_remote_forward_token1] = ACTIONS(836), + [aux_sym_request_tty_token1] = ACTIONS(836), + [aux_sym_required_rsa_size_token1] = ACTIONS(836), + [aux_sym_revoked_host_keys_token1] = ACTIONS(836), + [aux_sym_security_key_provider_token1] = ACTIONS(836), + [aux_sym_send_env_token1] = ACTIONS(836), + [aux_sym_server_alive_count_max_token1] = ACTIONS(836), + [aux_sym_server_alive_interval_token1] = ACTIONS(836), + [aux_sym_session_type_token1] = ACTIONS(836), + [aux_sym_set_env_token1] = ACTIONS(836), + [aux_sym_stdin_null_token1] = ACTIONS(836), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(836), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(836), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(836), + [aux_sym_syslog_facility_token1] = ACTIONS(836), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(836), + [aux_sym_keep_alive_token1] = ACTIONS(836), + [aux_sym_tunnel_token1] = ACTIONS(838), + [aux_sym_tunnel_device_token1] = ACTIONS(836), + [aux_sym_update_host_keys_token1] = ACTIONS(836), + [aux_sym_use_keychain_token1] = ACTIONS(836), + [aux_sym_use_roaming_token1] = ACTIONS(836), + [aux_sym_user_token1] = ACTIONS(838), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(836), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(836), + [aux_sym_visual_host_key_token1] = ACTIONS(836), + [aux_sym_xauth_location_token1] = ACTIONS(836), }, [698] = { - [ts_builtin_sym_end] = ACTIONS(1299), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1301), - [aux_sym_match_token1] = ACTIONS(1299), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1299), - [aux_sym_address_family_token1] = ACTIONS(1299), - [aux_sym_batch_mode_token1] = ACTIONS(1299), - [aux_sym_bind_address_token1] = ACTIONS(1299), - [aux_sym_bind_interface_token1] = ACTIONS(1299), - [aux_sym_canonical_domains_token1] = ACTIONS(1299), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1299), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1299), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1299), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1299), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1299), - [aux_sym_certificate_file_token1] = ACTIONS(1299), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1299), - [aux_sym_check_host_ip_token1] = ACTIONS(1299), - [aux_sym_ciphers_token1] = ACTIONS(1299), - [aux_sym_cipher_token1] = ACTIONS(1301), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1299), - [aux_sym_compression_token1] = ACTIONS(1299), - [aux_sym_connection_attempts_token1] = ACTIONS(1299), - [aux_sym_connect_timeout_token1] = ACTIONS(1299), - [aux_sym_control_master_token1] = ACTIONS(1299), - [aux_sym_control_path_token1] = ACTIONS(1299), - [aux_sym_control_persist_token1] = ACTIONS(1299), - [aux_sym_dynamic_forward_token1] = ACTIONS(1299), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1299), - [aux_sym_escape_char_token1] = ACTIONS(1299), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1299), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1299), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1299), - [aux_sym_forward_agent_token1] = ACTIONS(1299), - [aux_sym_forward_x11_token1] = ACTIONS(1301), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1299), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1299), - [aux_sym_gateway_ports_token1] = ACTIONS(1299), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1299), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1299), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1299), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1299), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1299), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1299), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1299), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1299), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1299), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1299), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1299), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1299), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1299), - [aux_sym_host_key_alias_token1] = ACTIONS(1299), - [aux_sym_hostname_token1] = ACTIONS(1299), - [aux_sym_identities_only_token1] = ACTIONS(1299), - [aux_sym_identity_agent_token1] = ACTIONS(1299), - [aux_sym_identity_file_token1] = ACTIONS(1299), - [aux_sym_ignore_unknown_token1] = ACTIONS(1299), - [aux_sym_include_token1] = ACTIONS(1299), - [aux_sym_ip_qos_token1] = ACTIONS(1299), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1299), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1299), - [aux_sym_kex_algorithms_token1] = ACTIONS(1299), - [aux_sym_known_hosts_command_token1] = ACTIONS(1299), - [aux_sym_local_command_token1] = ACTIONS(1299), - [aux_sym_local_forward_token1] = ACTIONS(1299), - [aux_sym_log_level_token1] = ACTIONS(1299), - [aux_sym_log_verbose_token1] = ACTIONS(1299), - [aux_sym_macs_token1] = ACTIONS(1299), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1299), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1299), - [aux_sym_password_authentication_token1] = ACTIONS(1299), - [aux_sym_permit_local_command_token1] = ACTIONS(1299), - [aux_sym_permit_remote_open_token1] = ACTIONS(1299), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1299), - [aux_sym_port_token1] = ACTIONS(1299), - [aux_sym_preferred_authentications_token1] = ACTIONS(1299), - [aux_sym_protocol_token1] = ACTIONS(1299), - [aux_sym_proxy_command_token1] = ACTIONS(1299), - [aux_sym_proxy_jump_token1] = ACTIONS(1299), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1299), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1299), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1299), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1299), - [aux_sym_rekey_limit_token1] = ACTIONS(1299), - [aux_sym_remote_command_token1] = ACTIONS(1299), - [aux_sym_remote_forward_token1] = ACTIONS(1299), - [aux_sym_request_tty_token1] = ACTIONS(1299), - [aux_sym_required_rsa_size_token1] = ACTIONS(1299), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1299), - [aux_sym_security_key_provider_token1] = ACTIONS(1299), - [aux_sym_send_env_token1] = ACTIONS(1299), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1299), - [aux_sym_server_alive_interval_token1] = ACTIONS(1299), - [aux_sym_session_type_token1] = ACTIONS(1299), - [aux_sym_set_env_token1] = ACTIONS(1299), - [aux_sym_stdin_null_token1] = ACTIONS(1299), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1299), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1299), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1299), - [aux_sym_syslog_facility_token1] = ACTIONS(1299), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1299), - [aux_sym_keep_alive_token1] = ACTIONS(1299), - [aux_sym_tunnel_token1] = ACTIONS(1301), - [aux_sym_tunnel_device_token1] = ACTIONS(1299), - [aux_sym_update_host_keys_token1] = ACTIONS(1299), - [aux_sym_use_keychain_token1] = ACTIONS(1299), - [aux_sym_use_roaming_token1] = ACTIONS(1299), - [aux_sym_user_token1] = ACTIONS(1301), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1299), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1299), - [aux_sym_visual_host_key_token1] = ACTIONS(1299), - [aux_sym_xauth_location_token1] = ACTIONS(1299), + [ts_builtin_sym_end] = ACTIONS(1526), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1528), + [aux_sym_match_token1] = ACTIONS(1526), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1526), + [aux_sym_address_family_token1] = ACTIONS(1526), + [aux_sym_batch_mode_token1] = ACTIONS(1526), + [aux_sym_bind_address_token1] = ACTIONS(1526), + [aux_sym_bind_interface_token1] = ACTIONS(1526), + [aux_sym_canonical_domains_token1] = ACTIONS(1526), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1526), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1526), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1526), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1526), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1526), + [aux_sym_certificate_file_token1] = ACTIONS(1526), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1526), + [aux_sym_check_host_ip_token1] = ACTIONS(1526), + [aux_sym_ciphers_token1] = ACTIONS(1526), + [aux_sym_cipher_token1] = ACTIONS(1528), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1526), + [aux_sym_compression_token1] = ACTIONS(1526), + [aux_sym_connection_attempts_token1] = ACTIONS(1526), + [aux_sym_connect_timeout_token1] = ACTIONS(1526), + [aux_sym_control_master_token1] = ACTIONS(1526), + [aux_sym_control_path_token1] = ACTIONS(1526), + [aux_sym_control_persist_token1] = ACTIONS(1526), + [aux_sym_dynamic_forward_token1] = ACTIONS(1526), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1526), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1526), + [aux_sym_escape_char_token1] = ACTIONS(1526), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1526), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1526), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1526), + [aux_sym_forward_agent_token1] = ACTIONS(1526), + [aux_sym_forward_x11_token1] = ACTIONS(1528), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1526), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1526), + [aux_sym_gateway_ports_token1] = ACTIONS(1526), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1526), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1526), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1526), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1526), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1526), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1526), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1526), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1526), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1526), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1526), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1526), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1526), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1526), + [aux_sym_host_key_alias_token1] = ACTIONS(1526), + [aux_sym_hostname_token1] = ACTIONS(1526), + [aux_sym_identities_only_token1] = ACTIONS(1526), + [aux_sym_identity_agent_token1] = ACTIONS(1526), + [aux_sym_identity_file_token1] = ACTIONS(1526), + [aux_sym_ignore_unknown_token1] = ACTIONS(1526), + [aux_sym_include_token1] = ACTIONS(1526), + [aux_sym_ip_qos_token1] = ACTIONS(1526), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1526), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1526), + [aux_sym_kex_algorithms_token1] = ACTIONS(1526), + [aux_sym_known_hosts_command_token1] = ACTIONS(1526), + [aux_sym_local_command_token1] = ACTIONS(1526), + [aux_sym_local_forward_token1] = ACTIONS(1526), + [aux_sym_log_level_token1] = ACTIONS(1526), + [aux_sym_log_verbose_token1] = ACTIONS(1526), + [aux_sym_macs_token1] = ACTIONS(1526), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1526), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1526), + [aux_sym_password_authentication_token1] = ACTIONS(1526), + [aux_sym_permit_local_command_token1] = ACTIONS(1526), + [aux_sym_permit_remote_open_token1] = ACTIONS(1526), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1526), + [aux_sym_port_token1] = ACTIONS(1526), + [aux_sym_preferred_authentications_token1] = ACTIONS(1526), + [aux_sym_protocol_token1] = ACTIONS(1526), + [aux_sym_proxy_command_token1] = ACTIONS(1526), + [aux_sym_proxy_jump_token1] = ACTIONS(1526), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1526), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1526), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1526), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1526), + [aux_sym_rekey_limit_token1] = ACTIONS(1526), + [aux_sym_remote_command_token1] = ACTIONS(1526), + [aux_sym_remote_forward_token1] = ACTIONS(1526), + [aux_sym_request_tty_token1] = ACTIONS(1526), + [aux_sym_required_rsa_size_token1] = ACTIONS(1526), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1526), + [aux_sym_security_key_provider_token1] = ACTIONS(1526), + [aux_sym_send_env_token1] = ACTIONS(1526), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1526), + [aux_sym_server_alive_interval_token1] = ACTIONS(1526), + [aux_sym_session_type_token1] = ACTIONS(1526), + [aux_sym_set_env_token1] = ACTIONS(1526), + [aux_sym_stdin_null_token1] = ACTIONS(1526), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1526), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1526), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1526), + [aux_sym_syslog_facility_token1] = ACTIONS(1526), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1526), + [aux_sym_keep_alive_token1] = ACTIONS(1526), + [aux_sym_tunnel_token1] = ACTIONS(1528), + [aux_sym_tunnel_device_token1] = ACTIONS(1526), + [aux_sym_update_host_keys_token1] = ACTIONS(1526), + [aux_sym_use_keychain_token1] = ACTIONS(1526), + [aux_sym_use_roaming_token1] = ACTIONS(1526), + [aux_sym_user_token1] = ACTIONS(1528), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1526), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1526), + [aux_sym_visual_host_key_token1] = ACTIONS(1526), + [aux_sym_xauth_location_token1] = ACTIONS(1526), }, [699] = { - [ts_builtin_sym_end] = ACTIONS(1821), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1823), - [aux_sym_match_token1] = ACTIONS(1821), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1821), - [aux_sym_address_family_token1] = ACTIONS(1821), - [aux_sym_batch_mode_token1] = ACTIONS(1821), - [aux_sym_bind_address_token1] = ACTIONS(1821), - [aux_sym_bind_interface_token1] = ACTIONS(1821), - [aux_sym_canonical_domains_token1] = ACTIONS(1821), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1821), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1821), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1821), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1821), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1821), - [aux_sym_certificate_file_token1] = ACTIONS(1821), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1821), - [aux_sym_check_host_ip_token1] = ACTIONS(1821), - [aux_sym_ciphers_token1] = ACTIONS(1821), - [aux_sym_cipher_token1] = ACTIONS(1823), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1821), - [aux_sym_compression_token1] = ACTIONS(1821), - [aux_sym_connection_attempts_token1] = ACTIONS(1821), - [aux_sym_connect_timeout_token1] = ACTIONS(1821), - [aux_sym_control_master_token1] = ACTIONS(1821), - [aux_sym_control_path_token1] = ACTIONS(1821), - [aux_sym_control_persist_token1] = ACTIONS(1821), - [aux_sym_dynamic_forward_token1] = ACTIONS(1821), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1821), - [aux_sym_escape_char_token1] = ACTIONS(1821), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1821), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1821), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1821), - [aux_sym_forward_agent_token1] = ACTIONS(1821), - [aux_sym_forward_x11_token1] = ACTIONS(1823), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1821), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1821), - [aux_sym_gateway_ports_token1] = ACTIONS(1821), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1821), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1821), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1821), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1821), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1821), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1821), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1821), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1821), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1821), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1821), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1821), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1821), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1821), - [aux_sym_host_key_alias_token1] = ACTIONS(1821), - [aux_sym_hostname_token1] = ACTIONS(1821), - [aux_sym_identities_only_token1] = ACTIONS(1821), - [aux_sym_identity_agent_token1] = ACTIONS(1821), - [aux_sym_identity_file_token1] = ACTIONS(1821), - [aux_sym_ignore_unknown_token1] = ACTIONS(1821), - [aux_sym_include_token1] = ACTIONS(1821), - [aux_sym_ip_qos_token1] = ACTIONS(1821), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1821), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1821), - [aux_sym_kex_algorithms_token1] = ACTIONS(1821), - [aux_sym_known_hosts_command_token1] = ACTIONS(1821), - [aux_sym_local_command_token1] = ACTIONS(1821), - [aux_sym_local_forward_token1] = ACTIONS(1821), - [aux_sym_log_level_token1] = ACTIONS(1821), - [aux_sym_log_verbose_token1] = ACTIONS(1821), - [aux_sym_macs_token1] = ACTIONS(1821), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1821), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1821), - [aux_sym_password_authentication_token1] = ACTIONS(1821), - [aux_sym_permit_local_command_token1] = ACTIONS(1821), - [aux_sym_permit_remote_open_token1] = ACTIONS(1821), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1821), - [aux_sym_port_token1] = ACTIONS(1821), - [aux_sym_preferred_authentications_token1] = ACTIONS(1821), - [aux_sym_protocol_token1] = ACTIONS(1821), - [aux_sym_proxy_command_token1] = ACTIONS(1821), - [aux_sym_proxy_jump_token1] = ACTIONS(1821), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1821), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1821), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1821), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1821), - [aux_sym_rekey_limit_token1] = ACTIONS(1821), - [aux_sym_remote_command_token1] = ACTIONS(1821), - [aux_sym_remote_forward_token1] = ACTIONS(1821), - [aux_sym_request_tty_token1] = ACTIONS(1821), - [aux_sym_required_rsa_size_token1] = ACTIONS(1821), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1821), - [aux_sym_security_key_provider_token1] = ACTIONS(1821), - [aux_sym_send_env_token1] = ACTIONS(1821), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1821), - [aux_sym_server_alive_interval_token1] = ACTIONS(1821), - [aux_sym_session_type_token1] = ACTIONS(1821), - [aux_sym_set_env_token1] = ACTIONS(1821), - [aux_sym_stdin_null_token1] = ACTIONS(1821), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1821), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1821), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1821), - [aux_sym_syslog_facility_token1] = ACTIONS(1821), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1821), - [aux_sym_keep_alive_token1] = ACTIONS(1821), - [aux_sym_tunnel_token1] = ACTIONS(1823), - [aux_sym_tunnel_device_token1] = ACTIONS(1821), - [aux_sym_update_host_keys_token1] = ACTIONS(1821), - [aux_sym_use_keychain_token1] = ACTIONS(1821), - [aux_sym_use_roaming_token1] = ACTIONS(1821), - [aux_sym_user_token1] = ACTIONS(1823), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1821), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1821), - [aux_sym_visual_host_key_token1] = ACTIONS(1821), - [aux_sym_xauth_location_token1] = ACTIONS(1821), + [ts_builtin_sym_end] = ACTIONS(1850), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1852), + [aux_sym_match_token1] = ACTIONS(1850), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1850), + [aux_sym_address_family_token1] = ACTIONS(1850), + [aux_sym_batch_mode_token1] = ACTIONS(1850), + [aux_sym_bind_address_token1] = ACTIONS(1850), + [aux_sym_bind_interface_token1] = ACTIONS(1850), + [aux_sym_canonical_domains_token1] = ACTIONS(1850), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1850), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1850), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1850), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1850), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1850), + [aux_sym_certificate_file_token1] = ACTIONS(1850), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1850), + [aux_sym_check_host_ip_token1] = ACTIONS(1850), + [aux_sym_ciphers_token1] = ACTIONS(1850), + [aux_sym_cipher_token1] = ACTIONS(1852), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1850), + [aux_sym_compression_token1] = ACTIONS(1850), + [aux_sym_connection_attempts_token1] = ACTIONS(1850), + [aux_sym_connect_timeout_token1] = ACTIONS(1850), + [aux_sym_control_master_token1] = ACTIONS(1850), + [aux_sym_control_path_token1] = ACTIONS(1850), + [aux_sym_control_persist_token1] = ACTIONS(1850), + [aux_sym_dynamic_forward_token1] = ACTIONS(1850), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1850), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1850), + [aux_sym_escape_char_token1] = ACTIONS(1850), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1850), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1850), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1850), + [aux_sym_forward_agent_token1] = ACTIONS(1850), + [aux_sym_forward_x11_token1] = ACTIONS(1852), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1850), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1850), + [aux_sym_gateway_ports_token1] = ACTIONS(1850), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1850), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1850), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1850), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1850), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1850), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1850), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1850), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1850), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1850), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1850), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1850), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1850), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1850), + [aux_sym_host_key_alias_token1] = ACTIONS(1850), + [aux_sym_hostname_token1] = ACTIONS(1850), + [aux_sym_identities_only_token1] = ACTIONS(1850), + [aux_sym_identity_agent_token1] = ACTIONS(1850), + [aux_sym_identity_file_token1] = ACTIONS(1850), + [aux_sym_ignore_unknown_token1] = ACTIONS(1850), + [aux_sym_include_token1] = ACTIONS(1850), + [aux_sym_ip_qos_token1] = ACTIONS(1850), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1850), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1850), + [aux_sym_kex_algorithms_token1] = ACTIONS(1850), + [aux_sym_known_hosts_command_token1] = ACTIONS(1850), + [aux_sym_local_command_token1] = ACTIONS(1850), + [aux_sym_local_forward_token1] = ACTIONS(1850), + [aux_sym_log_level_token1] = ACTIONS(1850), + [aux_sym_log_verbose_token1] = ACTIONS(1850), + [aux_sym_macs_token1] = ACTIONS(1850), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1850), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1850), + [aux_sym_password_authentication_token1] = ACTIONS(1850), + [aux_sym_permit_local_command_token1] = ACTIONS(1850), + [aux_sym_permit_remote_open_token1] = ACTIONS(1850), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1850), + [aux_sym_port_token1] = ACTIONS(1850), + [aux_sym_preferred_authentications_token1] = ACTIONS(1850), + [aux_sym_protocol_token1] = ACTIONS(1850), + [aux_sym_proxy_command_token1] = ACTIONS(1850), + [aux_sym_proxy_jump_token1] = ACTIONS(1850), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1850), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1850), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1850), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1850), + [aux_sym_rekey_limit_token1] = ACTIONS(1850), + [aux_sym_remote_command_token1] = ACTIONS(1850), + [aux_sym_remote_forward_token1] = ACTIONS(1850), + [aux_sym_request_tty_token1] = ACTIONS(1850), + [aux_sym_required_rsa_size_token1] = ACTIONS(1850), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1850), + [aux_sym_security_key_provider_token1] = ACTIONS(1850), + [aux_sym_send_env_token1] = ACTIONS(1850), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1850), + [aux_sym_server_alive_interval_token1] = ACTIONS(1850), + [aux_sym_session_type_token1] = ACTIONS(1850), + [aux_sym_set_env_token1] = ACTIONS(1850), + [aux_sym_stdin_null_token1] = ACTIONS(1850), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1850), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1850), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1850), + [aux_sym_syslog_facility_token1] = ACTIONS(1850), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1850), + [aux_sym_keep_alive_token1] = ACTIONS(1850), + [aux_sym_tunnel_token1] = ACTIONS(1852), + [aux_sym_tunnel_device_token1] = ACTIONS(1850), + [aux_sym_update_host_keys_token1] = ACTIONS(1850), + [aux_sym_use_keychain_token1] = ACTIONS(1850), + [aux_sym_use_roaming_token1] = ACTIONS(1850), + [aux_sym_user_token1] = ACTIONS(1852), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1850), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1850), + [aux_sym_visual_host_key_token1] = ACTIONS(1850), + [aux_sym_xauth_location_token1] = ACTIONS(1850), }, [700] = { - [ts_builtin_sym_end] = ACTIONS(1557), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1559), - [aux_sym_match_token1] = ACTIONS(1557), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1557), - [aux_sym_address_family_token1] = ACTIONS(1557), - [aux_sym_batch_mode_token1] = ACTIONS(1557), - [aux_sym_bind_address_token1] = ACTIONS(1557), - [aux_sym_bind_interface_token1] = ACTIONS(1557), - [aux_sym_canonical_domains_token1] = ACTIONS(1557), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1557), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1557), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1557), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1557), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1557), - [aux_sym_certificate_file_token1] = ACTIONS(1557), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1557), - [aux_sym_check_host_ip_token1] = ACTIONS(1557), - [aux_sym_ciphers_token1] = ACTIONS(1557), - [aux_sym_cipher_token1] = ACTIONS(1559), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1557), - [aux_sym_compression_token1] = ACTIONS(1557), - [aux_sym_connection_attempts_token1] = ACTIONS(1557), - [aux_sym_connect_timeout_token1] = ACTIONS(1557), - [aux_sym_control_master_token1] = ACTIONS(1557), - [aux_sym_control_path_token1] = ACTIONS(1557), - [aux_sym_control_persist_token1] = ACTIONS(1557), - [aux_sym_dynamic_forward_token1] = ACTIONS(1557), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1557), - [aux_sym_escape_char_token1] = ACTIONS(1557), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1557), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1557), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1557), - [aux_sym_forward_agent_token1] = ACTIONS(1557), - [aux_sym_forward_x11_token1] = ACTIONS(1559), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1557), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1557), - [aux_sym_gateway_ports_token1] = ACTIONS(1557), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1557), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1557), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1557), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1557), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1557), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1557), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1557), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1557), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1557), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1557), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1557), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1557), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1557), - [aux_sym_host_key_alias_token1] = ACTIONS(1557), - [aux_sym_hostname_token1] = ACTIONS(1557), - [aux_sym_identities_only_token1] = ACTIONS(1557), - [aux_sym_identity_agent_token1] = ACTIONS(1557), - [aux_sym_identity_file_token1] = ACTIONS(1557), - [aux_sym_ignore_unknown_token1] = ACTIONS(1557), - [aux_sym_include_token1] = ACTIONS(1557), - [aux_sym_ip_qos_token1] = ACTIONS(1557), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1557), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1557), - [aux_sym_kex_algorithms_token1] = ACTIONS(1557), - [aux_sym_known_hosts_command_token1] = ACTIONS(1557), - [aux_sym_local_command_token1] = ACTIONS(1557), - [aux_sym_local_forward_token1] = ACTIONS(1557), - [aux_sym_log_level_token1] = ACTIONS(1557), - [aux_sym_log_verbose_token1] = ACTIONS(1557), - [aux_sym_macs_token1] = ACTIONS(1557), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1557), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1557), - [aux_sym_password_authentication_token1] = ACTIONS(1557), - [aux_sym_permit_local_command_token1] = ACTIONS(1557), - [aux_sym_permit_remote_open_token1] = ACTIONS(1557), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1557), - [aux_sym_port_token1] = ACTIONS(1557), - [aux_sym_preferred_authentications_token1] = ACTIONS(1557), - [aux_sym_protocol_token1] = ACTIONS(1557), - [aux_sym_proxy_command_token1] = ACTIONS(1557), - [aux_sym_proxy_jump_token1] = ACTIONS(1557), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1557), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1557), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1557), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1557), - [aux_sym_rekey_limit_token1] = ACTIONS(1557), - [aux_sym_remote_command_token1] = ACTIONS(1557), - [aux_sym_remote_forward_token1] = ACTIONS(1557), - [aux_sym_request_tty_token1] = ACTIONS(1557), - [aux_sym_required_rsa_size_token1] = ACTIONS(1557), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1557), - [aux_sym_security_key_provider_token1] = ACTIONS(1557), - [aux_sym_send_env_token1] = ACTIONS(1557), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1557), - [aux_sym_server_alive_interval_token1] = ACTIONS(1557), - [aux_sym_session_type_token1] = ACTIONS(1557), - [aux_sym_set_env_token1] = ACTIONS(1557), - [aux_sym_stdin_null_token1] = ACTIONS(1557), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1557), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1557), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1557), - [aux_sym_syslog_facility_token1] = ACTIONS(1557), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1557), - [aux_sym_keep_alive_token1] = ACTIONS(1557), - [aux_sym_tunnel_token1] = ACTIONS(1559), - [aux_sym_tunnel_device_token1] = ACTIONS(1557), - [aux_sym_update_host_keys_token1] = ACTIONS(1557), - [aux_sym_use_keychain_token1] = ACTIONS(1557), - [aux_sym_use_roaming_token1] = ACTIONS(1557), - [aux_sym_user_token1] = ACTIONS(1559), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1557), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1557), - [aux_sym_visual_host_key_token1] = ACTIONS(1557), - [aux_sym_xauth_location_token1] = ACTIONS(1557), + [ts_builtin_sym_end] = ACTIONS(830), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(832), + [aux_sym_match_token1] = ACTIONS(830), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(830), + [aux_sym_address_family_token1] = ACTIONS(830), + [aux_sym_batch_mode_token1] = ACTIONS(830), + [aux_sym_bind_address_token1] = ACTIONS(830), + [aux_sym_bind_interface_token1] = ACTIONS(830), + [aux_sym_canonical_domains_token1] = ACTIONS(830), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(830), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(830), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(830), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(830), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(830), + [aux_sym_certificate_file_token1] = ACTIONS(830), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(830), + [aux_sym_check_host_ip_token1] = ACTIONS(830), + [aux_sym_ciphers_token1] = ACTIONS(830), + [aux_sym_cipher_token1] = ACTIONS(832), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(830), + [aux_sym_compression_token1] = ACTIONS(830), + [aux_sym_connection_attempts_token1] = ACTIONS(830), + [aux_sym_connect_timeout_token1] = ACTIONS(830), + [aux_sym_control_master_token1] = ACTIONS(830), + [aux_sym_control_path_token1] = ACTIONS(830), + [aux_sym_control_persist_token1] = ACTIONS(830), + [aux_sym_dynamic_forward_token1] = ACTIONS(830), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(830), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(830), + [aux_sym_escape_char_token1] = ACTIONS(830), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(830), + [aux_sym_fingerprint_hash_token1] = ACTIONS(830), + [aux_sym_fork_after_authentication_token1] = ACTIONS(830), + [aux_sym_forward_agent_token1] = ACTIONS(830), + [aux_sym_forward_x11_token1] = ACTIONS(832), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(830), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(830), + [aux_sym_gateway_ports_token1] = ACTIONS(830), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(830), + [aux_sym_gssapi_authentication_token1] = ACTIONS(830), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(830), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(830), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(830), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(830), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(830), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(830), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(830), + [aux_sym_hash_known_hosts_token1] = ACTIONS(830), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(830), + [aux_sym_hostbased_authentication_token1] = ACTIONS(830), + [aux_sym_host_key_algorithms_token1] = ACTIONS(830), + [aux_sym_host_key_alias_token1] = ACTIONS(830), + [aux_sym_hostname_token1] = ACTIONS(830), + [aux_sym_identities_only_token1] = ACTIONS(830), + [aux_sym_identity_agent_token1] = ACTIONS(830), + [aux_sym_identity_file_token1] = ACTIONS(830), + [aux_sym_ignore_unknown_token1] = ACTIONS(830), + [aux_sym_include_token1] = ACTIONS(830), + [aux_sym_ip_qos_token1] = ACTIONS(830), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(830), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(830), + [aux_sym_kex_algorithms_token1] = ACTIONS(830), + [aux_sym_known_hosts_command_token1] = ACTIONS(830), + [aux_sym_local_command_token1] = ACTIONS(830), + [aux_sym_local_forward_token1] = ACTIONS(830), + [aux_sym_log_level_token1] = ACTIONS(830), + [aux_sym_log_verbose_token1] = ACTIONS(830), + [aux_sym_macs_token1] = ACTIONS(830), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(830), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(830), + [aux_sym_password_authentication_token1] = ACTIONS(830), + [aux_sym_permit_local_command_token1] = ACTIONS(830), + [aux_sym_permit_remote_open_token1] = ACTIONS(830), + [aux_sym_pkcs11_provider_token1] = ACTIONS(830), + [aux_sym_port_token1] = ACTIONS(830), + [aux_sym_preferred_authentications_token1] = ACTIONS(830), + [aux_sym_protocol_token1] = ACTIONS(830), + [aux_sym_proxy_command_token1] = ACTIONS(830), + [aux_sym_proxy_jump_token1] = ACTIONS(830), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(830), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(830), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(830), + [aux_sym_pubkey_authentication_token1] = ACTIONS(830), + [aux_sym_rekey_limit_token1] = ACTIONS(830), + [aux_sym_remote_command_token1] = ACTIONS(830), + [aux_sym_remote_forward_token1] = ACTIONS(830), + [aux_sym_request_tty_token1] = ACTIONS(830), + [aux_sym_required_rsa_size_token1] = ACTIONS(830), + [aux_sym_revoked_host_keys_token1] = ACTIONS(830), + [aux_sym_security_key_provider_token1] = ACTIONS(830), + [aux_sym_send_env_token1] = ACTIONS(830), + [aux_sym_server_alive_count_max_token1] = ACTIONS(830), + [aux_sym_server_alive_interval_token1] = ACTIONS(830), + [aux_sym_session_type_token1] = ACTIONS(830), + [aux_sym_set_env_token1] = ACTIONS(830), + [aux_sym_stdin_null_token1] = ACTIONS(830), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(830), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(830), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(830), + [aux_sym_syslog_facility_token1] = ACTIONS(830), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(830), + [aux_sym_keep_alive_token1] = ACTIONS(830), + [aux_sym_tunnel_token1] = ACTIONS(832), + [aux_sym_tunnel_device_token1] = ACTIONS(830), + [aux_sym_update_host_keys_token1] = ACTIONS(830), + [aux_sym_use_keychain_token1] = ACTIONS(830), + [aux_sym_use_roaming_token1] = ACTIONS(830), + [aux_sym_user_token1] = ACTIONS(832), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(830), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(830), + [aux_sym_visual_host_key_token1] = ACTIONS(830), + [aux_sym_xauth_location_token1] = ACTIONS(830), }, [701] = { - [ts_builtin_sym_end] = ACTIONS(1305), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1307), - [aux_sym_match_token1] = ACTIONS(1305), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1305), - [aux_sym_address_family_token1] = ACTIONS(1305), - [aux_sym_batch_mode_token1] = ACTIONS(1305), - [aux_sym_bind_address_token1] = ACTIONS(1305), - [aux_sym_bind_interface_token1] = ACTIONS(1305), - [aux_sym_canonical_domains_token1] = ACTIONS(1305), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1305), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1305), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1305), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1305), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1305), - [aux_sym_certificate_file_token1] = ACTIONS(1305), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1305), - [aux_sym_check_host_ip_token1] = ACTIONS(1305), - [aux_sym_ciphers_token1] = ACTIONS(1305), - [aux_sym_cipher_token1] = ACTIONS(1307), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1305), - [aux_sym_compression_token1] = ACTIONS(1305), - [aux_sym_connection_attempts_token1] = ACTIONS(1305), - [aux_sym_connect_timeout_token1] = ACTIONS(1305), - [aux_sym_control_master_token1] = ACTIONS(1305), - [aux_sym_control_path_token1] = ACTIONS(1305), - [aux_sym_control_persist_token1] = ACTIONS(1305), - [aux_sym_dynamic_forward_token1] = ACTIONS(1305), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1305), - [aux_sym_escape_char_token1] = ACTIONS(1305), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1305), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1305), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1305), - [aux_sym_forward_agent_token1] = ACTIONS(1305), - [aux_sym_forward_x11_token1] = ACTIONS(1307), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1305), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1305), - [aux_sym_gateway_ports_token1] = ACTIONS(1305), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1305), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1305), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1305), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1305), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1305), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1305), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1305), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1305), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1305), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1305), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1305), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1305), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1305), - [aux_sym_host_key_alias_token1] = ACTIONS(1305), - [aux_sym_hostname_token1] = ACTIONS(1305), - [aux_sym_identities_only_token1] = ACTIONS(1305), - [aux_sym_identity_agent_token1] = ACTIONS(1305), - [aux_sym_identity_file_token1] = ACTIONS(1305), - [aux_sym_ignore_unknown_token1] = ACTIONS(1305), - [aux_sym_include_token1] = ACTIONS(1305), - [aux_sym_ip_qos_token1] = ACTIONS(1305), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1305), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1305), - [aux_sym_kex_algorithms_token1] = ACTIONS(1305), - [aux_sym_known_hosts_command_token1] = ACTIONS(1305), - [aux_sym_local_command_token1] = ACTIONS(1305), - [aux_sym_local_forward_token1] = ACTIONS(1305), - [aux_sym_log_level_token1] = ACTIONS(1305), - [aux_sym_log_verbose_token1] = ACTIONS(1305), - [aux_sym_macs_token1] = ACTIONS(1305), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1305), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1305), - [aux_sym_password_authentication_token1] = ACTIONS(1305), - [aux_sym_permit_local_command_token1] = ACTIONS(1305), - [aux_sym_permit_remote_open_token1] = ACTIONS(1305), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1305), - [aux_sym_port_token1] = ACTIONS(1305), - [aux_sym_preferred_authentications_token1] = ACTIONS(1305), - [aux_sym_protocol_token1] = ACTIONS(1305), - [aux_sym_proxy_command_token1] = ACTIONS(1305), - [aux_sym_proxy_jump_token1] = ACTIONS(1305), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1305), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1305), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1305), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1305), - [aux_sym_rekey_limit_token1] = ACTIONS(1305), - [aux_sym_remote_command_token1] = ACTIONS(1305), - [aux_sym_remote_forward_token1] = ACTIONS(1305), - [aux_sym_request_tty_token1] = ACTIONS(1305), - [aux_sym_required_rsa_size_token1] = ACTIONS(1305), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1305), - [aux_sym_security_key_provider_token1] = ACTIONS(1305), - [aux_sym_send_env_token1] = ACTIONS(1305), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1305), - [aux_sym_server_alive_interval_token1] = ACTIONS(1305), - [aux_sym_session_type_token1] = ACTIONS(1305), - [aux_sym_set_env_token1] = ACTIONS(1305), - [aux_sym_stdin_null_token1] = ACTIONS(1305), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1305), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1305), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1305), - [aux_sym_syslog_facility_token1] = ACTIONS(1305), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1305), - [aux_sym_keep_alive_token1] = ACTIONS(1305), - [aux_sym_tunnel_token1] = ACTIONS(1307), - [aux_sym_tunnel_device_token1] = ACTIONS(1305), - [aux_sym_update_host_keys_token1] = ACTIONS(1305), - [aux_sym_use_keychain_token1] = ACTIONS(1305), - [aux_sym_use_roaming_token1] = ACTIONS(1305), - [aux_sym_user_token1] = ACTIONS(1307), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1305), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1305), - [aux_sym_visual_host_key_token1] = ACTIONS(1305), - [aux_sym_xauth_location_token1] = ACTIONS(1305), + [ts_builtin_sym_end] = ACTIONS(1532), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1534), + [aux_sym_match_token1] = ACTIONS(1532), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1532), + [aux_sym_address_family_token1] = ACTIONS(1532), + [aux_sym_batch_mode_token1] = ACTIONS(1532), + [aux_sym_bind_address_token1] = ACTIONS(1532), + [aux_sym_bind_interface_token1] = ACTIONS(1532), + [aux_sym_canonical_domains_token1] = ACTIONS(1532), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1532), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1532), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1532), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1532), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1532), + [aux_sym_certificate_file_token1] = ACTIONS(1532), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1532), + [aux_sym_check_host_ip_token1] = ACTIONS(1532), + [aux_sym_ciphers_token1] = ACTIONS(1532), + [aux_sym_cipher_token1] = ACTIONS(1534), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1532), + [aux_sym_compression_token1] = ACTIONS(1532), + [aux_sym_connection_attempts_token1] = ACTIONS(1532), + [aux_sym_connect_timeout_token1] = ACTIONS(1532), + [aux_sym_control_master_token1] = ACTIONS(1532), + [aux_sym_control_path_token1] = ACTIONS(1532), + [aux_sym_control_persist_token1] = ACTIONS(1532), + [aux_sym_dynamic_forward_token1] = ACTIONS(1532), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1532), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1532), + [aux_sym_escape_char_token1] = ACTIONS(1532), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1532), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1532), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1532), + [aux_sym_forward_agent_token1] = ACTIONS(1532), + [aux_sym_forward_x11_token1] = ACTIONS(1534), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1532), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1532), + [aux_sym_gateway_ports_token1] = ACTIONS(1532), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1532), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1532), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1532), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1532), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1532), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1532), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1532), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1532), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1532), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1532), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1532), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1532), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1532), + [aux_sym_host_key_alias_token1] = ACTIONS(1532), + [aux_sym_hostname_token1] = ACTIONS(1532), + [aux_sym_identities_only_token1] = ACTIONS(1532), + [aux_sym_identity_agent_token1] = ACTIONS(1532), + [aux_sym_identity_file_token1] = ACTIONS(1532), + [aux_sym_ignore_unknown_token1] = ACTIONS(1532), + [aux_sym_include_token1] = ACTIONS(1532), + [aux_sym_ip_qos_token1] = ACTIONS(1532), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1532), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1532), + [aux_sym_kex_algorithms_token1] = ACTIONS(1532), + [aux_sym_known_hosts_command_token1] = ACTIONS(1532), + [aux_sym_local_command_token1] = ACTIONS(1532), + [aux_sym_local_forward_token1] = ACTIONS(1532), + [aux_sym_log_level_token1] = ACTIONS(1532), + [aux_sym_log_verbose_token1] = ACTIONS(1532), + [aux_sym_macs_token1] = ACTIONS(1532), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1532), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1532), + [aux_sym_password_authentication_token1] = ACTIONS(1532), + [aux_sym_permit_local_command_token1] = ACTIONS(1532), + [aux_sym_permit_remote_open_token1] = ACTIONS(1532), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1532), + [aux_sym_port_token1] = ACTIONS(1532), + [aux_sym_preferred_authentications_token1] = ACTIONS(1532), + [aux_sym_protocol_token1] = ACTIONS(1532), + [aux_sym_proxy_command_token1] = ACTIONS(1532), + [aux_sym_proxy_jump_token1] = ACTIONS(1532), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1532), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1532), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1532), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1532), + [aux_sym_rekey_limit_token1] = ACTIONS(1532), + [aux_sym_remote_command_token1] = ACTIONS(1532), + [aux_sym_remote_forward_token1] = ACTIONS(1532), + [aux_sym_request_tty_token1] = ACTIONS(1532), + [aux_sym_required_rsa_size_token1] = ACTIONS(1532), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1532), + [aux_sym_security_key_provider_token1] = ACTIONS(1532), + [aux_sym_send_env_token1] = ACTIONS(1532), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1532), + [aux_sym_server_alive_interval_token1] = ACTIONS(1532), + [aux_sym_session_type_token1] = ACTIONS(1532), + [aux_sym_set_env_token1] = ACTIONS(1532), + [aux_sym_stdin_null_token1] = ACTIONS(1532), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1532), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1532), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1532), + [aux_sym_syslog_facility_token1] = ACTIONS(1532), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1532), + [aux_sym_keep_alive_token1] = ACTIONS(1532), + [aux_sym_tunnel_token1] = ACTIONS(1534), + [aux_sym_tunnel_device_token1] = ACTIONS(1532), + [aux_sym_update_host_keys_token1] = ACTIONS(1532), + [aux_sym_use_keychain_token1] = ACTIONS(1532), + [aux_sym_use_roaming_token1] = ACTIONS(1532), + [aux_sym_user_token1] = ACTIONS(1534), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1532), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1532), + [aux_sym_visual_host_key_token1] = ACTIONS(1532), + [aux_sym_xauth_location_token1] = ACTIONS(1532), }, [702] = { - [ts_builtin_sym_end] = ACTIONS(1815), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1817), - [aux_sym_match_token1] = ACTIONS(1815), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1815), - [aux_sym_address_family_token1] = ACTIONS(1815), - [aux_sym_batch_mode_token1] = ACTIONS(1815), - [aux_sym_bind_address_token1] = ACTIONS(1815), - [aux_sym_bind_interface_token1] = ACTIONS(1815), - [aux_sym_canonical_domains_token1] = ACTIONS(1815), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1815), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1815), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1815), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1815), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1815), - [aux_sym_certificate_file_token1] = ACTIONS(1815), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1815), - [aux_sym_check_host_ip_token1] = ACTIONS(1815), - [aux_sym_ciphers_token1] = ACTIONS(1815), - [aux_sym_cipher_token1] = ACTIONS(1817), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1815), - [aux_sym_compression_token1] = ACTIONS(1815), - [aux_sym_connection_attempts_token1] = ACTIONS(1815), - [aux_sym_connect_timeout_token1] = ACTIONS(1815), - [aux_sym_control_master_token1] = ACTIONS(1815), - [aux_sym_control_path_token1] = ACTIONS(1815), - [aux_sym_control_persist_token1] = ACTIONS(1815), - [aux_sym_dynamic_forward_token1] = ACTIONS(1815), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1815), - [aux_sym_escape_char_token1] = ACTIONS(1815), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1815), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1815), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1815), - [aux_sym_forward_agent_token1] = ACTIONS(1815), - [aux_sym_forward_x11_token1] = ACTIONS(1817), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1815), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1815), - [aux_sym_gateway_ports_token1] = ACTIONS(1815), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1815), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1815), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1815), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1815), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1815), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1815), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1815), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1815), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1815), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1815), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1815), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1815), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1815), - [aux_sym_host_key_alias_token1] = ACTIONS(1815), - [aux_sym_hostname_token1] = ACTIONS(1815), - [aux_sym_identities_only_token1] = ACTIONS(1815), - [aux_sym_identity_agent_token1] = ACTIONS(1815), - [aux_sym_identity_file_token1] = ACTIONS(1815), - [aux_sym_ignore_unknown_token1] = ACTIONS(1815), - [aux_sym_include_token1] = ACTIONS(1815), - [aux_sym_ip_qos_token1] = ACTIONS(1815), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1815), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1815), - [aux_sym_kex_algorithms_token1] = ACTIONS(1815), - [aux_sym_known_hosts_command_token1] = ACTIONS(1815), - [aux_sym_local_command_token1] = ACTIONS(1815), - [aux_sym_local_forward_token1] = ACTIONS(1815), - [aux_sym_log_level_token1] = ACTIONS(1815), - [aux_sym_log_verbose_token1] = ACTIONS(1815), - [aux_sym_macs_token1] = ACTIONS(1815), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1815), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1815), - [aux_sym_password_authentication_token1] = ACTIONS(1815), - [aux_sym_permit_local_command_token1] = ACTIONS(1815), - [aux_sym_permit_remote_open_token1] = ACTIONS(1815), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1815), - [aux_sym_port_token1] = ACTIONS(1815), - [aux_sym_preferred_authentications_token1] = ACTIONS(1815), - [aux_sym_protocol_token1] = ACTIONS(1815), - [aux_sym_proxy_command_token1] = ACTIONS(1815), - [aux_sym_proxy_jump_token1] = ACTIONS(1815), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1815), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1815), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1815), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1815), - [aux_sym_rekey_limit_token1] = ACTIONS(1815), - [aux_sym_remote_command_token1] = ACTIONS(1815), - [aux_sym_remote_forward_token1] = ACTIONS(1815), - [aux_sym_request_tty_token1] = ACTIONS(1815), - [aux_sym_required_rsa_size_token1] = ACTIONS(1815), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1815), - [aux_sym_security_key_provider_token1] = ACTIONS(1815), - [aux_sym_send_env_token1] = ACTIONS(1815), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1815), - [aux_sym_server_alive_interval_token1] = ACTIONS(1815), - [aux_sym_session_type_token1] = ACTIONS(1815), - [aux_sym_set_env_token1] = ACTIONS(1815), - [aux_sym_stdin_null_token1] = ACTIONS(1815), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1815), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1815), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1815), - [aux_sym_syslog_facility_token1] = ACTIONS(1815), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1815), - [aux_sym_keep_alive_token1] = ACTIONS(1815), - [aux_sym_tunnel_token1] = ACTIONS(1817), - [aux_sym_tunnel_device_token1] = ACTIONS(1815), - [aux_sym_update_host_keys_token1] = ACTIONS(1815), - [aux_sym_use_keychain_token1] = ACTIONS(1815), - [aux_sym_use_roaming_token1] = ACTIONS(1815), - [aux_sym_user_token1] = ACTIONS(1817), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1815), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1815), - [aux_sym_visual_host_key_token1] = ACTIONS(1815), - [aux_sym_xauth_location_token1] = ACTIONS(1815), + [ts_builtin_sym_end] = ACTIONS(1844), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1846), + [aux_sym_match_token1] = ACTIONS(1844), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1844), + [aux_sym_address_family_token1] = ACTIONS(1844), + [aux_sym_batch_mode_token1] = ACTIONS(1844), + [aux_sym_bind_address_token1] = ACTIONS(1844), + [aux_sym_bind_interface_token1] = ACTIONS(1844), + [aux_sym_canonical_domains_token1] = ACTIONS(1844), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1844), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1844), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1844), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1844), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1844), + [aux_sym_certificate_file_token1] = ACTIONS(1844), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1844), + [aux_sym_check_host_ip_token1] = ACTIONS(1844), + [aux_sym_ciphers_token1] = ACTIONS(1844), + [aux_sym_cipher_token1] = ACTIONS(1846), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1844), + [aux_sym_compression_token1] = ACTIONS(1844), + [aux_sym_connection_attempts_token1] = ACTIONS(1844), + [aux_sym_connect_timeout_token1] = ACTIONS(1844), + [aux_sym_control_master_token1] = ACTIONS(1844), + [aux_sym_control_path_token1] = ACTIONS(1844), + [aux_sym_control_persist_token1] = ACTIONS(1844), + [aux_sym_dynamic_forward_token1] = ACTIONS(1844), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1844), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1844), + [aux_sym_escape_char_token1] = ACTIONS(1844), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1844), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1844), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1844), + [aux_sym_forward_agent_token1] = ACTIONS(1844), + [aux_sym_forward_x11_token1] = ACTIONS(1846), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1844), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1844), + [aux_sym_gateway_ports_token1] = ACTIONS(1844), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1844), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1844), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1844), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1844), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1844), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1844), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1844), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1844), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1844), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1844), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1844), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1844), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1844), + [aux_sym_host_key_alias_token1] = ACTIONS(1844), + [aux_sym_hostname_token1] = ACTIONS(1844), + [aux_sym_identities_only_token1] = ACTIONS(1844), + [aux_sym_identity_agent_token1] = ACTIONS(1844), + [aux_sym_identity_file_token1] = ACTIONS(1844), + [aux_sym_ignore_unknown_token1] = ACTIONS(1844), + [aux_sym_include_token1] = ACTIONS(1844), + [aux_sym_ip_qos_token1] = ACTIONS(1844), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1844), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1844), + [aux_sym_kex_algorithms_token1] = ACTIONS(1844), + [aux_sym_known_hosts_command_token1] = ACTIONS(1844), + [aux_sym_local_command_token1] = ACTIONS(1844), + [aux_sym_local_forward_token1] = ACTIONS(1844), + [aux_sym_log_level_token1] = ACTIONS(1844), + [aux_sym_log_verbose_token1] = ACTIONS(1844), + [aux_sym_macs_token1] = ACTIONS(1844), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1844), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1844), + [aux_sym_password_authentication_token1] = ACTIONS(1844), + [aux_sym_permit_local_command_token1] = ACTIONS(1844), + [aux_sym_permit_remote_open_token1] = ACTIONS(1844), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1844), + [aux_sym_port_token1] = ACTIONS(1844), + [aux_sym_preferred_authentications_token1] = ACTIONS(1844), + [aux_sym_protocol_token1] = ACTIONS(1844), + [aux_sym_proxy_command_token1] = ACTIONS(1844), + [aux_sym_proxy_jump_token1] = ACTIONS(1844), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1844), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1844), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1844), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1844), + [aux_sym_rekey_limit_token1] = ACTIONS(1844), + [aux_sym_remote_command_token1] = ACTIONS(1844), + [aux_sym_remote_forward_token1] = ACTIONS(1844), + [aux_sym_request_tty_token1] = ACTIONS(1844), + [aux_sym_required_rsa_size_token1] = ACTIONS(1844), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1844), + [aux_sym_security_key_provider_token1] = ACTIONS(1844), + [aux_sym_send_env_token1] = ACTIONS(1844), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1844), + [aux_sym_server_alive_interval_token1] = ACTIONS(1844), + [aux_sym_session_type_token1] = ACTIONS(1844), + [aux_sym_set_env_token1] = ACTIONS(1844), + [aux_sym_stdin_null_token1] = ACTIONS(1844), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1844), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1844), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1844), + [aux_sym_syslog_facility_token1] = ACTIONS(1844), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1844), + [aux_sym_keep_alive_token1] = ACTIONS(1844), + [aux_sym_tunnel_token1] = ACTIONS(1846), + [aux_sym_tunnel_device_token1] = ACTIONS(1844), + [aux_sym_update_host_keys_token1] = ACTIONS(1844), + [aux_sym_use_keychain_token1] = ACTIONS(1844), + [aux_sym_use_roaming_token1] = ACTIONS(1844), + [aux_sym_user_token1] = ACTIONS(1846), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1844), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1844), + [aux_sym_visual_host_key_token1] = ACTIONS(1844), + [aux_sym_xauth_location_token1] = ACTIONS(1844), }, [703] = { - [ts_builtin_sym_end] = ACTIONS(1311), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1313), - [aux_sym_match_token1] = ACTIONS(1311), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1311), - [aux_sym_address_family_token1] = ACTIONS(1311), - [aux_sym_batch_mode_token1] = ACTIONS(1311), - [aux_sym_bind_address_token1] = ACTIONS(1311), - [aux_sym_bind_interface_token1] = ACTIONS(1311), - [aux_sym_canonical_domains_token1] = ACTIONS(1311), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1311), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1311), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1311), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1311), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1311), - [aux_sym_certificate_file_token1] = ACTIONS(1311), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1311), - [aux_sym_check_host_ip_token1] = ACTIONS(1311), - [aux_sym_ciphers_token1] = ACTIONS(1311), - [aux_sym_cipher_token1] = ACTIONS(1313), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1311), - [aux_sym_compression_token1] = ACTIONS(1311), - [aux_sym_connection_attempts_token1] = ACTIONS(1311), - [aux_sym_connect_timeout_token1] = ACTIONS(1311), - [aux_sym_control_master_token1] = ACTIONS(1311), - [aux_sym_control_path_token1] = ACTIONS(1311), - [aux_sym_control_persist_token1] = ACTIONS(1311), - [aux_sym_dynamic_forward_token1] = ACTIONS(1311), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1311), - [aux_sym_escape_char_token1] = ACTIONS(1311), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1311), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1311), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1311), - [aux_sym_forward_agent_token1] = ACTIONS(1311), - [aux_sym_forward_x11_token1] = ACTIONS(1313), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1311), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1311), - [aux_sym_gateway_ports_token1] = ACTIONS(1311), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1311), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1311), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1311), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1311), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1311), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1311), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1311), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1311), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1311), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1311), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1311), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1311), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1311), - [aux_sym_host_key_alias_token1] = ACTIONS(1311), - [aux_sym_hostname_token1] = ACTIONS(1311), - [aux_sym_identities_only_token1] = ACTIONS(1311), - [aux_sym_identity_agent_token1] = ACTIONS(1311), - [aux_sym_identity_file_token1] = ACTIONS(1311), - [aux_sym_ignore_unknown_token1] = ACTIONS(1311), - [aux_sym_include_token1] = ACTIONS(1311), - [aux_sym_ip_qos_token1] = ACTIONS(1311), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1311), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1311), - [aux_sym_kex_algorithms_token1] = ACTIONS(1311), - [aux_sym_known_hosts_command_token1] = ACTIONS(1311), - [aux_sym_local_command_token1] = ACTIONS(1311), - [aux_sym_local_forward_token1] = ACTIONS(1311), - [aux_sym_log_level_token1] = ACTIONS(1311), - [aux_sym_log_verbose_token1] = ACTIONS(1311), - [aux_sym_macs_token1] = ACTIONS(1311), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1311), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1311), - [aux_sym_password_authentication_token1] = ACTIONS(1311), - [aux_sym_permit_local_command_token1] = ACTIONS(1311), - [aux_sym_permit_remote_open_token1] = ACTIONS(1311), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1311), - [aux_sym_port_token1] = ACTIONS(1311), - [aux_sym_preferred_authentications_token1] = ACTIONS(1311), - [aux_sym_protocol_token1] = ACTIONS(1311), - [aux_sym_proxy_command_token1] = ACTIONS(1311), - [aux_sym_proxy_jump_token1] = ACTIONS(1311), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1311), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1311), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1311), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1311), - [aux_sym_rekey_limit_token1] = ACTIONS(1311), - [aux_sym_remote_command_token1] = ACTIONS(1311), - [aux_sym_remote_forward_token1] = ACTIONS(1311), - [aux_sym_request_tty_token1] = ACTIONS(1311), - [aux_sym_required_rsa_size_token1] = ACTIONS(1311), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1311), - [aux_sym_security_key_provider_token1] = ACTIONS(1311), - [aux_sym_send_env_token1] = ACTIONS(1311), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1311), - [aux_sym_server_alive_interval_token1] = ACTIONS(1311), - [aux_sym_session_type_token1] = ACTIONS(1311), - [aux_sym_set_env_token1] = ACTIONS(1311), - [aux_sym_stdin_null_token1] = ACTIONS(1311), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1311), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1311), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1311), - [aux_sym_syslog_facility_token1] = ACTIONS(1311), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1311), - [aux_sym_keep_alive_token1] = ACTIONS(1311), - [aux_sym_tunnel_token1] = ACTIONS(1313), - [aux_sym_tunnel_device_token1] = ACTIONS(1311), - [aux_sym_update_host_keys_token1] = ACTIONS(1311), - [aux_sym_use_keychain_token1] = ACTIONS(1311), - [aux_sym_use_roaming_token1] = ACTIONS(1311), - [aux_sym_user_token1] = ACTIONS(1313), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1311), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1311), - [aux_sym_visual_host_key_token1] = ACTIONS(1311), - [aux_sym_xauth_location_token1] = ACTIONS(1311), + [ts_builtin_sym_end] = ACTIONS(656), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(658), + [aux_sym_match_token1] = ACTIONS(656), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(656), + [aux_sym_address_family_token1] = ACTIONS(656), + [aux_sym_batch_mode_token1] = ACTIONS(656), + [aux_sym_bind_address_token1] = ACTIONS(656), + [aux_sym_bind_interface_token1] = ACTIONS(656), + [aux_sym_canonical_domains_token1] = ACTIONS(656), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(656), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(656), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(656), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(656), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(656), + [aux_sym_certificate_file_token1] = ACTIONS(656), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(656), + [aux_sym_check_host_ip_token1] = ACTIONS(656), + [aux_sym_ciphers_token1] = ACTIONS(656), + [aux_sym_cipher_token1] = ACTIONS(658), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(656), + [aux_sym_compression_token1] = ACTIONS(656), + [aux_sym_connection_attempts_token1] = ACTIONS(656), + [aux_sym_connect_timeout_token1] = ACTIONS(656), + [aux_sym_control_master_token1] = ACTIONS(656), + [aux_sym_control_path_token1] = ACTIONS(656), + [aux_sym_control_persist_token1] = ACTIONS(656), + [aux_sym_dynamic_forward_token1] = ACTIONS(656), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(656), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(656), + [aux_sym_escape_char_token1] = ACTIONS(656), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(656), + [aux_sym_fingerprint_hash_token1] = ACTIONS(656), + [aux_sym_fork_after_authentication_token1] = ACTIONS(656), + [aux_sym_forward_agent_token1] = ACTIONS(656), + [aux_sym_forward_x11_token1] = ACTIONS(658), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(656), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(656), + [aux_sym_gateway_ports_token1] = ACTIONS(656), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(656), + [aux_sym_gssapi_authentication_token1] = ACTIONS(656), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(656), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(656), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(656), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(656), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(656), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(656), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(656), + [aux_sym_hash_known_hosts_token1] = ACTIONS(656), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(656), + [aux_sym_hostbased_authentication_token1] = ACTIONS(656), + [aux_sym_host_key_algorithms_token1] = ACTIONS(656), + [aux_sym_host_key_alias_token1] = ACTIONS(656), + [aux_sym_hostname_token1] = ACTIONS(656), + [aux_sym_identities_only_token1] = ACTIONS(656), + [aux_sym_identity_agent_token1] = ACTIONS(656), + [aux_sym_identity_file_token1] = ACTIONS(656), + [aux_sym_ignore_unknown_token1] = ACTIONS(656), + [aux_sym_include_token1] = ACTIONS(656), + [aux_sym_ip_qos_token1] = ACTIONS(656), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(656), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(656), + [aux_sym_kex_algorithms_token1] = ACTIONS(656), + [aux_sym_known_hosts_command_token1] = ACTIONS(656), + [aux_sym_local_command_token1] = ACTIONS(656), + [aux_sym_local_forward_token1] = ACTIONS(656), + [aux_sym_log_level_token1] = ACTIONS(656), + [aux_sym_log_verbose_token1] = ACTIONS(656), + [aux_sym_macs_token1] = ACTIONS(656), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(656), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(656), + [aux_sym_password_authentication_token1] = ACTIONS(656), + [aux_sym_permit_local_command_token1] = ACTIONS(656), + [aux_sym_permit_remote_open_token1] = ACTIONS(656), + [aux_sym_pkcs11_provider_token1] = ACTIONS(656), + [aux_sym_port_token1] = ACTIONS(656), + [aux_sym_preferred_authentications_token1] = ACTIONS(656), + [aux_sym_protocol_token1] = ACTIONS(656), + [aux_sym_proxy_command_token1] = ACTIONS(656), + [aux_sym_proxy_jump_token1] = ACTIONS(656), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(656), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(656), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(656), + [aux_sym_pubkey_authentication_token1] = ACTIONS(656), + [aux_sym_rekey_limit_token1] = ACTIONS(656), + [aux_sym_remote_command_token1] = ACTIONS(656), + [aux_sym_remote_forward_token1] = ACTIONS(656), + [aux_sym_request_tty_token1] = ACTIONS(656), + [aux_sym_required_rsa_size_token1] = ACTIONS(656), + [aux_sym_revoked_host_keys_token1] = ACTIONS(656), + [aux_sym_security_key_provider_token1] = ACTIONS(656), + [aux_sym_send_env_token1] = ACTIONS(656), + [aux_sym_server_alive_count_max_token1] = ACTIONS(656), + [aux_sym_server_alive_interval_token1] = ACTIONS(656), + [aux_sym_session_type_token1] = ACTIONS(656), + [aux_sym_set_env_token1] = ACTIONS(656), + [aux_sym_stdin_null_token1] = ACTIONS(656), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(656), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(656), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(656), + [aux_sym_syslog_facility_token1] = ACTIONS(656), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(656), + [aux_sym_keep_alive_token1] = ACTIONS(656), + [aux_sym_tunnel_token1] = ACTIONS(658), + [aux_sym_tunnel_device_token1] = ACTIONS(656), + [aux_sym_update_host_keys_token1] = ACTIONS(656), + [aux_sym_use_keychain_token1] = ACTIONS(656), + [aux_sym_use_roaming_token1] = ACTIONS(656), + [aux_sym_user_token1] = ACTIONS(658), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(656), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(656), + [aux_sym_visual_host_key_token1] = ACTIONS(656), + [aux_sym_xauth_location_token1] = ACTIONS(656), }, [704] = { - [ts_builtin_sym_end] = ACTIONS(1317), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1319), - [aux_sym_match_token1] = ACTIONS(1317), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1317), - [aux_sym_address_family_token1] = ACTIONS(1317), - [aux_sym_batch_mode_token1] = ACTIONS(1317), - [aux_sym_bind_address_token1] = ACTIONS(1317), - [aux_sym_bind_interface_token1] = ACTIONS(1317), - [aux_sym_canonical_domains_token1] = ACTIONS(1317), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1317), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1317), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1317), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1317), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1317), - [aux_sym_certificate_file_token1] = ACTIONS(1317), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1317), - [aux_sym_check_host_ip_token1] = ACTIONS(1317), - [aux_sym_ciphers_token1] = ACTIONS(1317), - [aux_sym_cipher_token1] = ACTIONS(1319), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1317), - [aux_sym_compression_token1] = ACTIONS(1317), - [aux_sym_connection_attempts_token1] = ACTIONS(1317), - [aux_sym_connect_timeout_token1] = ACTIONS(1317), - [aux_sym_control_master_token1] = ACTIONS(1317), - [aux_sym_control_path_token1] = ACTIONS(1317), - [aux_sym_control_persist_token1] = ACTIONS(1317), - [aux_sym_dynamic_forward_token1] = ACTIONS(1317), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1317), - [aux_sym_escape_char_token1] = ACTIONS(1317), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1317), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1317), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1317), - [aux_sym_forward_agent_token1] = ACTIONS(1317), - [aux_sym_forward_x11_token1] = ACTIONS(1319), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1317), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1317), - [aux_sym_gateway_ports_token1] = ACTIONS(1317), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1317), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1317), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1317), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1317), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1317), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1317), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1317), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1317), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1317), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1317), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1317), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1317), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1317), - [aux_sym_host_key_alias_token1] = ACTIONS(1317), - [aux_sym_hostname_token1] = ACTIONS(1317), - [aux_sym_identities_only_token1] = ACTIONS(1317), - [aux_sym_identity_agent_token1] = ACTIONS(1317), - [aux_sym_identity_file_token1] = ACTIONS(1317), - [aux_sym_ignore_unknown_token1] = ACTIONS(1317), - [aux_sym_include_token1] = ACTIONS(1317), - [aux_sym_ip_qos_token1] = ACTIONS(1317), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1317), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1317), - [aux_sym_kex_algorithms_token1] = ACTIONS(1317), - [aux_sym_known_hosts_command_token1] = ACTIONS(1317), - [aux_sym_local_command_token1] = ACTIONS(1317), - [aux_sym_local_forward_token1] = ACTIONS(1317), - [aux_sym_log_level_token1] = ACTIONS(1317), - [aux_sym_log_verbose_token1] = ACTIONS(1317), - [aux_sym_macs_token1] = ACTIONS(1317), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1317), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1317), - [aux_sym_password_authentication_token1] = ACTIONS(1317), - [aux_sym_permit_local_command_token1] = ACTIONS(1317), - [aux_sym_permit_remote_open_token1] = ACTIONS(1317), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1317), - [aux_sym_port_token1] = ACTIONS(1317), - [aux_sym_preferred_authentications_token1] = ACTIONS(1317), - [aux_sym_protocol_token1] = ACTIONS(1317), - [aux_sym_proxy_command_token1] = ACTIONS(1317), - [aux_sym_proxy_jump_token1] = ACTIONS(1317), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1317), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1317), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1317), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1317), - [aux_sym_rekey_limit_token1] = ACTIONS(1317), - [aux_sym_remote_command_token1] = ACTIONS(1317), - [aux_sym_remote_forward_token1] = ACTIONS(1317), - [aux_sym_request_tty_token1] = ACTIONS(1317), - [aux_sym_required_rsa_size_token1] = ACTIONS(1317), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1317), - [aux_sym_security_key_provider_token1] = ACTIONS(1317), - [aux_sym_send_env_token1] = ACTIONS(1317), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1317), - [aux_sym_server_alive_interval_token1] = ACTIONS(1317), - [aux_sym_session_type_token1] = ACTIONS(1317), - [aux_sym_set_env_token1] = ACTIONS(1317), - [aux_sym_stdin_null_token1] = ACTIONS(1317), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1317), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1317), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1317), - [aux_sym_syslog_facility_token1] = ACTIONS(1317), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1317), - [aux_sym_keep_alive_token1] = ACTIONS(1317), - [aux_sym_tunnel_token1] = ACTIONS(1319), - [aux_sym_tunnel_device_token1] = ACTIONS(1317), - [aux_sym_update_host_keys_token1] = ACTIONS(1317), - [aux_sym_use_keychain_token1] = ACTIONS(1317), - [aux_sym_use_roaming_token1] = ACTIONS(1317), - [aux_sym_user_token1] = ACTIONS(1319), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1317), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1317), - [aux_sym_visual_host_key_token1] = ACTIONS(1317), - [aux_sym_xauth_location_token1] = ACTIONS(1317), + [ts_builtin_sym_end] = ACTIONS(824), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(826), + [aux_sym_match_token1] = ACTIONS(824), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(824), + [aux_sym_address_family_token1] = ACTIONS(824), + [aux_sym_batch_mode_token1] = ACTIONS(824), + [aux_sym_bind_address_token1] = ACTIONS(824), + [aux_sym_bind_interface_token1] = ACTIONS(824), + [aux_sym_canonical_domains_token1] = ACTIONS(824), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(824), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(824), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(824), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(824), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(824), + [aux_sym_certificate_file_token1] = ACTIONS(824), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(824), + [aux_sym_check_host_ip_token1] = ACTIONS(824), + [aux_sym_ciphers_token1] = ACTIONS(824), + [aux_sym_cipher_token1] = ACTIONS(826), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(824), + [aux_sym_compression_token1] = ACTIONS(824), + [aux_sym_connection_attempts_token1] = ACTIONS(824), + [aux_sym_connect_timeout_token1] = ACTIONS(824), + [aux_sym_control_master_token1] = ACTIONS(824), + [aux_sym_control_path_token1] = ACTIONS(824), + [aux_sym_control_persist_token1] = ACTIONS(824), + [aux_sym_dynamic_forward_token1] = ACTIONS(824), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(824), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(824), + [aux_sym_escape_char_token1] = ACTIONS(824), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(824), + [aux_sym_fingerprint_hash_token1] = ACTIONS(824), + [aux_sym_fork_after_authentication_token1] = ACTIONS(824), + [aux_sym_forward_agent_token1] = ACTIONS(824), + [aux_sym_forward_x11_token1] = ACTIONS(826), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(824), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(824), + [aux_sym_gateway_ports_token1] = ACTIONS(824), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(824), + [aux_sym_gssapi_authentication_token1] = ACTIONS(824), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(824), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(824), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(824), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(824), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(824), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(824), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(824), + [aux_sym_hash_known_hosts_token1] = ACTIONS(824), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(824), + [aux_sym_hostbased_authentication_token1] = ACTIONS(824), + [aux_sym_host_key_algorithms_token1] = ACTIONS(824), + [aux_sym_host_key_alias_token1] = ACTIONS(824), + [aux_sym_hostname_token1] = ACTIONS(824), + [aux_sym_identities_only_token1] = ACTIONS(824), + [aux_sym_identity_agent_token1] = ACTIONS(824), + [aux_sym_identity_file_token1] = ACTIONS(824), + [aux_sym_ignore_unknown_token1] = ACTIONS(824), + [aux_sym_include_token1] = ACTIONS(824), + [aux_sym_ip_qos_token1] = ACTIONS(824), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(824), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(824), + [aux_sym_kex_algorithms_token1] = ACTIONS(824), + [aux_sym_known_hosts_command_token1] = ACTIONS(824), + [aux_sym_local_command_token1] = ACTIONS(824), + [aux_sym_local_forward_token1] = ACTIONS(824), + [aux_sym_log_level_token1] = ACTIONS(824), + [aux_sym_log_verbose_token1] = ACTIONS(824), + [aux_sym_macs_token1] = ACTIONS(824), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(824), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(824), + [aux_sym_password_authentication_token1] = ACTIONS(824), + [aux_sym_permit_local_command_token1] = ACTIONS(824), + [aux_sym_permit_remote_open_token1] = ACTIONS(824), + [aux_sym_pkcs11_provider_token1] = ACTIONS(824), + [aux_sym_port_token1] = ACTIONS(824), + [aux_sym_preferred_authentications_token1] = ACTIONS(824), + [aux_sym_protocol_token1] = ACTIONS(824), + [aux_sym_proxy_command_token1] = ACTIONS(824), + [aux_sym_proxy_jump_token1] = ACTIONS(824), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(824), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(824), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(824), + [aux_sym_pubkey_authentication_token1] = ACTIONS(824), + [aux_sym_rekey_limit_token1] = ACTIONS(824), + [aux_sym_remote_command_token1] = ACTIONS(824), + [aux_sym_remote_forward_token1] = ACTIONS(824), + [aux_sym_request_tty_token1] = ACTIONS(824), + [aux_sym_required_rsa_size_token1] = ACTIONS(824), + [aux_sym_revoked_host_keys_token1] = ACTIONS(824), + [aux_sym_security_key_provider_token1] = ACTIONS(824), + [aux_sym_send_env_token1] = ACTIONS(824), + [aux_sym_server_alive_count_max_token1] = ACTIONS(824), + [aux_sym_server_alive_interval_token1] = ACTIONS(824), + [aux_sym_session_type_token1] = ACTIONS(824), + [aux_sym_set_env_token1] = ACTIONS(824), + [aux_sym_stdin_null_token1] = ACTIONS(824), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(824), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(824), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(824), + [aux_sym_syslog_facility_token1] = ACTIONS(824), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(824), + [aux_sym_keep_alive_token1] = ACTIONS(824), + [aux_sym_tunnel_token1] = ACTIONS(826), + [aux_sym_tunnel_device_token1] = ACTIONS(824), + [aux_sym_update_host_keys_token1] = ACTIONS(824), + [aux_sym_use_keychain_token1] = ACTIONS(824), + [aux_sym_use_roaming_token1] = ACTIONS(824), + [aux_sym_user_token1] = ACTIONS(826), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(824), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(824), + [aux_sym_visual_host_key_token1] = ACTIONS(824), + [aux_sym_xauth_location_token1] = ACTIONS(824), }, [705] = { - [ts_builtin_sym_end] = ACTIONS(1809), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1811), - [aux_sym_match_token1] = ACTIONS(1809), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1809), - [aux_sym_address_family_token1] = ACTIONS(1809), - [aux_sym_batch_mode_token1] = ACTIONS(1809), - [aux_sym_bind_address_token1] = ACTIONS(1809), - [aux_sym_bind_interface_token1] = ACTIONS(1809), - [aux_sym_canonical_domains_token1] = ACTIONS(1809), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1809), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1809), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1809), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1809), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1809), - [aux_sym_certificate_file_token1] = ACTIONS(1809), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1809), - [aux_sym_check_host_ip_token1] = ACTIONS(1809), - [aux_sym_ciphers_token1] = ACTIONS(1809), - [aux_sym_cipher_token1] = ACTIONS(1811), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1809), - [aux_sym_compression_token1] = ACTIONS(1809), - [aux_sym_connection_attempts_token1] = ACTIONS(1809), - [aux_sym_connect_timeout_token1] = ACTIONS(1809), - [aux_sym_control_master_token1] = ACTIONS(1809), - [aux_sym_control_path_token1] = ACTIONS(1809), - [aux_sym_control_persist_token1] = ACTIONS(1809), - [aux_sym_dynamic_forward_token1] = ACTIONS(1809), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1809), - [aux_sym_escape_char_token1] = ACTIONS(1809), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1809), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1809), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1809), - [aux_sym_forward_agent_token1] = ACTIONS(1809), - [aux_sym_forward_x11_token1] = ACTIONS(1811), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1809), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1809), - [aux_sym_gateway_ports_token1] = ACTIONS(1809), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1809), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1809), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1809), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1809), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1809), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1809), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1809), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1809), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1809), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1809), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1809), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1809), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1809), - [aux_sym_host_key_alias_token1] = ACTIONS(1809), - [aux_sym_hostname_token1] = ACTIONS(1809), - [aux_sym_identities_only_token1] = ACTIONS(1809), - [aux_sym_identity_agent_token1] = ACTIONS(1809), - [aux_sym_identity_file_token1] = ACTIONS(1809), - [aux_sym_ignore_unknown_token1] = ACTIONS(1809), - [aux_sym_include_token1] = ACTIONS(1809), - [aux_sym_ip_qos_token1] = ACTIONS(1809), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1809), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1809), - [aux_sym_kex_algorithms_token1] = ACTIONS(1809), - [aux_sym_known_hosts_command_token1] = ACTIONS(1809), - [aux_sym_local_command_token1] = ACTIONS(1809), - [aux_sym_local_forward_token1] = ACTIONS(1809), - [aux_sym_log_level_token1] = ACTIONS(1809), - [aux_sym_log_verbose_token1] = ACTIONS(1809), - [aux_sym_macs_token1] = ACTIONS(1809), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1809), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1809), - [aux_sym_password_authentication_token1] = ACTIONS(1809), - [aux_sym_permit_local_command_token1] = ACTIONS(1809), - [aux_sym_permit_remote_open_token1] = ACTIONS(1809), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1809), - [aux_sym_port_token1] = ACTIONS(1809), - [aux_sym_preferred_authentications_token1] = ACTIONS(1809), - [aux_sym_protocol_token1] = ACTIONS(1809), - [aux_sym_proxy_command_token1] = ACTIONS(1809), - [aux_sym_proxy_jump_token1] = ACTIONS(1809), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1809), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1809), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1809), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1809), - [aux_sym_rekey_limit_token1] = ACTIONS(1809), - [aux_sym_remote_command_token1] = ACTIONS(1809), - [aux_sym_remote_forward_token1] = ACTIONS(1809), - [aux_sym_request_tty_token1] = ACTIONS(1809), - [aux_sym_required_rsa_size_token1] = ACTIONS(1809), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1809), - [aux_sym_security_key_provider_token1] = ACTIONS(1809), - [aux_sym_send_env_token1] = ACTIONS(1809), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1809), - [aux_sym_server_alive_interval_token1] = ACTIONS(1809), - [aux_sym_session_type_token1] = ACTIONS(1809), - [aux_sym_set_env_token1] = ACTIONS(1809), - [aux_sym_stdin_null_token1] = ACTIONS(1809), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1809), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1809), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1809), - [aux_sym_syslog_facility_token1] = ACTIONS(1809), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1809), - [aux_sym_keep_alive_token1] = ACTIONS(1809), - [aux_sym_tunnel_token1] = ACTIONS(1811), - [aux_sym_tunnel_device_token1] = ACTIONS(1809), - [aux_sym_update_host_keys_token1] = ACTIONS(1809), - [aux_sym_use_keychain_token1] = ACTIONS(1809), - [aux_sym_use_roaming_token1] = ACTIONS(1809), - [aux_sym_user_token1] = ACTIONS(1811), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1809), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1809), - [aux_sym_visual_host_key_token1] = ACTIONS(1809), - [aux_sym_xauth_location_token1] = ACTIONS(1809), + [ts_builtin_sym_end] = ACTIONS(1838), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1840), + [aux_sym_match_token1] = ACTIONS(1838), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1838), + [aux_sym_address_family_token1] = ACTIONS(1838), + [aux_sym_batch_mode_token1] = ACTIONS(1838), + [aux_sym_bind_address_token1] = ACTIONS(1838), + [aux_sym_bind_interface_token1] = ACTIONS(1838), + [aux_sym_canonical_domains_token1] = ACTIONS(1838), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1838), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1838), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1838), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1838), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1838), + [aux_sym_certificate_file_token1] = ACTIONS(1838), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1838), + [aux_sym_check_host_ip_token1] = ACTIONS(1838), + [aux_sym_ciphers_token1] = ACTIONS(1838), + [aux_sym_cipher_token1] = ACTIONS(1840), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1838), + [aux_sym_compression_token1] = ACTIONS(1838), + [aux_sym_connection_attempts_token1] = ACTIONS(1838), + [aux_sym_connect_timeout_token1] = ACTIONS(1838), + [aux_sym_control_master_token1] = ACTIONS(1838), + [aux_sym_control_path_token1] = ACTIONS(1838), + [aux_sym_control_persist_token1] = ACTIONS(1838), + [aux_sym_dynamic_forward_token1] = ACTIONS(1838), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1838), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1838), + [aux_sym_escape_char_token1] = ACTIONS(1838), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1838), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1838), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1838), + [aux_sym_forward_agent_token1] = ACTIONS(1838), + [aux_sym_forward_x11_token1] = ACTIONS(1840), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1838), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1838), + [aux_sym_gateway_ports_token1] = ACTIONS(1838), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1838), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1838), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1838), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1838), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1838), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1838), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1838), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1838), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1838), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1838), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1838), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1838), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1838), + [aux_sym_host_key_alias_token1] = ACTIONS(1838), + [aux_sym_hostname_token1] = ACTIONS(1838), + [aux_sym_identities_only_token1] = ACTIONS(1838), + [aux_sym_identity_agent_token1] = ACTIONS(1838), + [aux_sym_identity_file_token1] = ACTIONS(1838), + [aux_sym_ignore_unknown_token1] = ACTIONS(1838), + [aux_sym_include_token1] = ACTIONS(1838), + [aux_sym_ip_qos_token1] = ACTIONS(1838), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1838), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1838), + [aux_sym_kex_algorithms_token1] = ACTIONS(1838), + [aux_sym_known_hosts_command_token1] = ACTIONS(1838), + [aux_sym_local_command_token1] = ACTIONS(1838), + [aux_sym_local_forward_token1] = ACTIONS(1838), + [aux_sym_log_level_token1] = ACTIONS(1838), + [aux_sym_log_verbose_token1] = ACTIONS(1838), + [aux_sym_macs_token1] = ACTIONS(1838), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1838), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1838), + [aux_sym_password_authentication_token1] = ACTIONS(1838), + [aux_sym_permit_local_command_token1] = ACTIONS(1838), + [aux_sym_permit_remote_open_token1] = ACTIONS(1838), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1838), + [aux_sym_port_token1] = ACTIONS(1838), + [aux_sym_preferred_authentications_token1] = ACTIONS(1838), + [aux_sym_protocol_token1] = ACTIONS(1838), + [aux_sym_proxy_command_token1] = ACTIONS(1838), + [aux_sym_proxy_jump_token1] = ACTIONS(1838), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1838), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1838), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1838), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1838), + [aux_sym_rekey_limit_token1] = ACTIONS(1838), + [aux_sym_remote_command_token1] = ACTIONS(1838), + [aux_sym_remote_forward_token1] = ACTIONS(1838), + [aux_sym_request_tty_token1] = ACTIONS(1838), + [aux_sym_required_rsa_size_token1] = ACTIONS(1838), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1838), + [aux_sym_security_key_provider_token1] = ACTIONS(1838), + [aux_sym_send_env_token1] = ACTIONS(1838), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1838), + [aux_sym_server_alive_interval_token1] = ACTIONS(1838), + [aux_sym_session_type_token1] = ACTIONS(1838), + [aux_sym_set_env_token1] = ACTIONS(1838), + [aux_sym_stdin_null_token1] = ACTIONS(1838), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1838), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1838), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1838), + [aux_sym_syslog_facility_token1] = ACTIONS(1838), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1838), + [aux_sym_keep_alive_token1] = ACTIONS(1838), + [aux_sym_tunnel_token1] = ACTIONS(1840), + [aux_sym_tunnel_device_token1] = ACTIONS(1838), + [aux_sym_update_host_keys_token1] = ACTIONS(1838), + [aux_sym_use_keychain_token1] = ACTIONS(1838), + [aux_sym_use_roaming_token1] = ACTIONS(1838), + [aux_sym_user_token1] = ACTIONS(1840), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1838), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1838), + [aux_sym_visual_host_key_token1] = ACTIONS(1838), + [aux_sym_xauth_location_token1] = ACTIONS(1838), }, [706] = { - [ts_builtin_sym_end] = ACTIONS(1323), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1325), - [aux_sym_match_token1] = ACTIONS(1323), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1323), - [aux_sym_address_family_token1] = ACTIONS(1323), - [aux_sym_batch_mode_token1] = ACTIONS(1323), - [aux_sym_bind_address_token1] = ACTIONS(1323), - [aux_sym_bind_interface_token1] = ACTIONS(1323), - [aux_sym_canonical_domains_token1] = ACTIONS(1323), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1323), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1323), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1323), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1323), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1323), - [aux_sym_certificate_file_token1] = ACTIONS(1323), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1323), - [aux_sym_check_host_ip_token1] = ACTIONS(1323), - [aux_sym_ciphers_token1] = ACTIONS(1323), - [aux_sym_cipher_token1] = ACTIONS(1325), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1323), - [aux_sym_compression_token1] = ACTIONS(1323), - [aux_sym_connection_attempts_token1] = ACTIONS(1323), - [aux_sym_connect_timeout_token1] = ACTIONS(1323), - [aux_sym_control_master_token1] = ACTIONS(1323), - [aux_sym_control_path_token1] = ACTIONS(1323), - [aux_sym_control_persist_token1] = ACTIONS(1323), - [aux_sym_dynamic_forward_token1] = ACTIONS(1323), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1323), - [aux_sym_escape_char_token1] = ACTIONS(1323), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1323), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1323), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1323), - [aux_sym_forward_agent_token1] = ACTIONS(1323), - [aux_sym_forward_x11_token1] = ACTIONS(1325), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1323), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1323), - [aux_sym_gateway_ports_token1] = ACTIONS(1323), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1323), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1323), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1323), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1323), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1323), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1323), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1323), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1323), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1323), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1323), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1323), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1323), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1323), - [aux_sym_host_key_alias_token1] = ACTIONS(1323), - [aux_sym_hostname_token1] = ACTIONS(1323), - [aux_sym_identities_only_token1] = ACTIONS(1323), - [aux_sym_identity_agent_token1] = ACTIONS(1323), - [aux_sym_identity_file_token1] = ACTIONS(1323), - [aux_sym_ignore_unknown_token1] = ACTIONS(1323), - [aux_sym_include_token1] = ACTIONS(1323), - [aux_sym_ip_qos_token1] = ACTIONS(1323), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1323), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1323), - [aux_sym_kex_algorithms_token1] = ACTIONS(1323), - [aux_sym_known_hosts_command_token1] = ACTIONS(1323), - [aux_sym_local_command_token1] = ACTIONS(1323), - [aux_sym_local_forward_token1] = ACTIONS(1323), - [aux_sym_log_level_token1] = ACTIONS(1323), - [aux_sym_log_verbose_token1] = ACTIONS(1323), - [aux_sym_macs_token1] = ACTIONS(1323), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1323), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1323), - [aux_sym_password_authentication_token1] = ACTIONS(1323), - [aux_sym_permit_local_command_token1] = ACTIONS(1323), - [aux_sym_permit_remote_open_token1] = ACTIONS(1323), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1323), - [aux_sym_port_token1] = ACTIONS(1323), - [aux_sym_preferred_authentications_token1] = ACTIONS(1323), - [aux_sym_protocol_token1] = ACTIONS(1323), - [aux_sym_proxy_command_token1] = ACTIONS(1323), - [aux_sym_proxy_jump_token1] = ACTIONS(1323), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1323), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1323), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1323), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1323), - [aux_sym_rekey_limit_token1] = ACTIONS(1323), - [aux_sym_remote_command_token1] = ACTIONS(1323), - [aux_sym_remote_forward_token1] = ACTIONS(1323), - [aux_sym_request_tty_token1] = ACTIONS(1323), - [aux_sym_required_rsa_size_token1] = ACTIONS(1323), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1323), - [aux_sym_security_key_provider_token1] = ACTIONS(1323), - [aux_sym_send_env_token1] = ACTIONS(1323), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1323), - [aux_sym_server_alive_interval_token1] = ACTIONS(1323), - [aux_sym_session_type_token1] = ACTIONS(1323), - [aux_sym_set_env_token1] = ACTIONS(1323), - [aux_sym_stdin_null_token1] = ACTIONS(1323), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1323), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1323), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1323), - [aux_sym_syslog_facility_token1] = ACTIONS(1323), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1323), - [aux_sym_keep_alive_token1] = ACTIONS(1323), - [aux_sym_tunnel_token1] = ACTIONS(1325), - [aux_sym_tunnel_device_token1] = ACTIONS(1323), - [aux_sym_update_host_keys_token1] = ACTIONS(1323), - [aux_sym_use_keychain_token1] = ACTIONS(1323), - [aux_sym_use_roaming_token1] = ACTIONS(1323), - [aux_sym_user_token1] = ACTIONS(1325), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1323), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1323), - [aux_sym_visual_host_key_token1] = ACTIONS(1323), - [aux_sym_xauth_location_token1] = ACTIONS(1323), + [ts_builtin_sym_end] = ACTIONS(662), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(664), + [aux_sym_match_token1] = ACTIONS(662), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(662), + [aux_sym_address_family_token1] = ACTIONS(662), + [aux_sym_batch_mode_token1] = ACTIONS(662), + [aux_sym_bind_address_token1] = ACTIONS(662), + [aux_sym_bind_interface_token1] = ACTIONS(662), + [aux_sym_canonical_domains_token1] = ACTIONS(662), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(662), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(662), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(662), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(662), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(662), + [aux_sym_certificate_file_token1] = ACTIONS(662), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(662), + [aux_sym_check_host_ip_token1] = ACTIONS(662), + [aux_sym_ciphers_token1] = ACTIONS(662), + [aux_sym_cipher_token1] = ACTIONS(664), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(662), + [aux_sym_compression_token1] = ACTIONS(662), + [aux_sym_connection_attempts_token1] = ACTIONS(662), + [aux_sym_connect_timeout_token1] = ACTIONS(662), + [aux_sym_control_master_token1] = ACTIONS(662), + [aux_sym_control_path_token1] = ACTIONS(662), + [aux_sym_control_persist_token1] = ACTIONS(662), + [aux_sym_dynamic_forward_token1] = ACTIONS(662), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(662), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(662), + [aux_sym_escape_char_token1] = ACTIONS(662), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(662), + [aux_sym_fingerprint_hash_token1] = ACTIONS(662), + [aux_sym_fork_after_authentication_token1] = ACTIONS(662), + [aux_sym_forward_agent_token1] = ACTIONS(662), + [aux_sym_forward_x11_token1] = ACTIONS(664), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(662), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(662), + [aux_sym_gateway_ports_token1] = ACTIONS(662), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(662), + [aux_sym_gssapi_authentication_token1] = ACTIONS(662), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(662), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(662), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(662), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(662), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(662), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(662), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(662), + [aux_sym_hash_known_hosts_token1] = ACTIONS(662), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(662), + [aux_sym_hostbased_authentication_token1] = ACTIONS(662), + [aux_sym_host_key_algorithms_token1] = ACTIONS(662), + [aux_sym_host_key_alias_token1] = ACTIONS(662), + [aux_sym_hostname_token1] = ACTIONS(662), + [aux_sym_identities_only_token1] = ACTIONS(662), + [aux_sym_identity_agent_token1] = ACTIONS(662), + [aux_sym_identity_file_token1] = ACTIONS(662), + [aux_sym_ignore_unknown_token1] = ACTIONS(662), + [aux_sym_include_token1] = ACTIONS(662), + [aux_sym_ip_qos_token1] = ACTIONS(662), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(662), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(662), + [aux_sym_kex_algorithms_token1] = ACTIONS(662), + [aux_sym_known_hosts_command_token1] = ACTIONS(662), + [aux_sym_local_command_token1] = ACTIONS(662), + [aux_sym_local_forward_token1] = ACTIONS(662), + [aux_sym_log_level_token1] = ACTIONS(662), + [aux_sym_log_verbose_token1] = ACTIONS(662), + [aux_sym_macs_token1] = ACTIONS(662), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(662), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(662), + [aux_sym_password_authentication_token1] = ACTIONS(662), + [aux_sym_permit_local_command_token1] = ACTIONS(662), + [aux_sym_permit_remote_open_token1] = ACTIONS(662), + [aux_sym_pkcs11_provider_token1] = ACTIONS(662), + [aux_sym_port_token1] = ACTIONS(662), + [aux_sym_preferred_authentications_token1] = ACTIONS(662), + [aux_sym_protocol_token1] = ACTIONS(662), + [aux_sym_proxy_command_token1] = ACTIONS(662), + [aux_sym_proxy_jump_token1] = ACTIONS(662), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(662), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(662), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(662), + [aux_sym_pubkey_authentication_token1] = ACTIONS(662), + [aux_sym_rekey_limit_token1] = ACTIONS(662), + [aux_sym_remote_command_token1] = ACTIONS(662), + [aux_sym_remote_forward_token1] = ACTIONS(662), + [aux_sym_request_tty_token1] = ACTIONS(662), + [aux_sym_required_rsa_size_token1] = ACTIONS(662), + [aux_sym_revoked_host_keys_token1] = ACTIONS(662), + [aux_sym_security_key_provider_token1] = ACTIONS(662), + [aux_sym_send_env_token1] = ACTIONS(662), + [aux_sym_server_alive_count_max_token1] = ACTIONS(662), + [aux_sym_server_alive_interval_token1] = ACTIONS(662), + [aux_sym_session_type_token1] = ACTIONS(662), + [aux_sym_set_env_token1] = ACTIONS(662), + [aux_sym_stdin_null_token1] = ACTIONS(662), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(662), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(662), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(662), + [aux_sym_syslog_facility_token1] = ACTIONS(662), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(662), + [aux_sym_keep_alive_token1] = ACTIONS(662), + [aux_sym_tunnel_token1] = ACTIONS(664), + [aux_sym_tunnel_device_token1] = ACTIONS(662), + [aux_sym_update_host_keys_token1] = ACTIONS(662), + [aux_sym_use_keychain_token1] = ACTIONS(662), + [aux_sym_use_roaming_token1] = ACTIONS(662), + [aux_sym_user_token1] = ACTIONS(664), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(662), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(662), + [aux_sym_visual_host_key_token1] = ACTIONS(662), + [aux_sym_xauth_location_token1] = ACTIONS(662), }, [707] = { - [ts_builtin_sym_end] = ACTIONS(1653), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1655), - [aux_sym_match_token1] = ACTIONS(1653), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1653), - [aux_sym_address_family_token1] = ACTIONS(1653), - [aux_sym_batch_mode_token1] = ACTIONS(1653), - [aux_sym_bind_address_token1] = ACTIONS(1653), - [aux_sym_bind_interface_token1] = ACTIONS(1653), - [aux_sym_canonical_domains_token1] = ACTIONS(1653), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1653), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1653), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1653), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1653), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1653), - [aux_sym_certificate_file_token1] = ACTIONS(1653), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1653), - [aux_sym_check_host_ip_token1] = ACTIONS(1653), - [aux_sym_ciphers_token1] = ACTIONS(1653), - [aux_sym_cipher_token1] = ACTIONS(1655), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1653), - [aux_sym_compression_token1] = ACTIONS(1653), - [aux_sym_connection_attempts_token1] = ACTIONS(1653), - [aux_sym_connect_timeout_token1] = ACTIONS(1653), - [aux_sym_control_master_token1] = ACTIONS(1653), - [aux_sym_control_path_token1] = ACTIONS(1653), - [aux_sym_control_persist_token1] = ACTIONS(1653), - [aux_sym_dynamic_forward_token1] = ACTIONS(1653), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1653), - [aux_sym_escape_char_token1] = ACTIONS(1653), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1653), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1653), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1653), - [aux_sym_forward_agent_token1] = ACTIONS(1653), - [aux_sym_forward_x11_token1] = ACTIONS(1655), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1653), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1653), - [aux_sym_gateway_ports_token1] = ACTIONS(1653), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1653), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1653), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1653), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1653), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1653), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1653), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1653), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1653), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1653), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1653), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1653), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1653), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1653), - [aux_sym_host_key_alias_token1] = ACTIONS(1653), - [aux_sym_hostname_token1] = ACTIONS(1653), - [aux_sym_identities_only_token1] = ACTIONS(1653), - [aux_sym_identity_agent_token1] = ACTIONS(1653), - [aux_sym_identity_file_token1] = ACTIONS(1653), - [aux_sym_ignore_unknown_token1] = ACTIONS(1653), - [aux_sym_include_token1] = ACTIONS(1653), - [aux_sym_ip_qos_token1] = ACTIONS(1653), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1653), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1653), - [aux_sym_kex_algorithms_token1] = ACTIONS(1653), - [aux_sym_known_hosts_command_token1] = ACTIONS(1653), - [aux_sym_local_command_token1] = ACTIONS(1653), - [aux_sym_local_forward_token1] = ACTIONS(1653), - [aux_sym_log_level_token1] = ACTIONS(1653), - [aux_sym_log_verbose_token1] = ACTIONS(1653), - [aux_sym_macs_token1] = ACTIONS(1653), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1653), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1653), - [aux_sym_password_authentication_token1] = ACTIONS(1653), - [aux_sym_permit_local_command_token1] = ACTIONS(1653), - [aux_sym_permit_remote_open_token1] = ACTIONS(1653), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1653), - [aux_sym_port_token1] = ACTIONS(1653), - [aux_sym_preferred_authentications_token1] = ACTIONS(1653), - [aux_sym_protocol_token1] = ACTIONS(1653), - [aux_sym_proxy_command_token1] = ACTIONS(1653), - [aux_sym_proxy_jump_token1] = ACTIONS(1653), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1653), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1653), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1653), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1653), - [aux_sym_rekey_limit_token1] = ACTIONS(1653), - [aux_sym_remote_command_token1] = ACTIONS(1653), - [aux_sym_remote_forward_token1] = ACTIONS(1653), - [aux_sym_request_tty_token1] = ACTIONS(1653), - [aux_sym_required_rsa_size_token1] = ACTIONS(1653), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1653), - [aux_sym_security_key_provider_token1] = ACTIONS(1653), - [aux_sym_send_env_token1] = ACTIONS(1653), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1653), - [aux_sym_server_alive_interval_token1] = ACTIONS(1653), - [aux_sym_session_type_token1] = ACTIONS(1653), - [aux_sym_set_env_token1] = ACTIONS(1653), - [aux_sym_stdin_null_token1] = ACTIONS(1653), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1653), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1653), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1653), - [aux_sym_syslog_facility_token1] = ACTIONS(1653), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1653), - [aux_sym_keep_alive_token1] = ACTIONS(1653), - [aux_sym_tunnel_token1] = ACTIONS(1655), - [aux_sym_tunnel_device_token1] = ACTIONS(1653), - [aux_sym_update_host_keys_token1] = ACTIONS(1653), - [aux_sym_use_keychain_token1] = ACTIONS(1653), - [aux_sym_use_roaming_token1] = ACTIONS(1653), - [aux_sym_user_token1] = ACTIONS(1655), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1653), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1653), - [aux_sym_visual_host_key_token1] = ACTIONS(1653), - [aux_sym_xauth_location_token1] = ACTIONS(1653), + [ts_builtin_sym_end] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1540), + [aux_sym_match_token1] = ACTIONS(1538), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1538), + [aux_sym_address_family_token1] = ACTIONS(1538), + [aux_sym_batch_mode_token1] = ACTIONS(1538), + [aux_sym_bind_address_token1] = ACTIONS(1538), + [aux_sym_bind_interface_token1] = ACTIONS(1538), + [aux_sym_canonical_domains_token1] = ACTIONS(1538), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1538), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1538), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1538), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1538), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1538), + [aux_sym_certificate_file_token1] = ACTIONS(1538), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1538), + [aux_sym_check_host_ip_token1] = ACTIONS(1538), + [aux_sym_ciphers_token1] = ACTIONS(1538), + [aux_sym_cipher_token1] = ACTIONS(1540), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1538), + [aux_sym_compression_token1] = ACTIONS(1538), + [aux_sym_connection_attempts_token1] = ACTIONS(1538), + [aux_sym_connect_timeout_token1] = ACTIONS(1538), + [aux_sym_control_master_token1] = ACTIONS(1538), + [aux_sym_control_path_token1] = ACTIONS(1538), + [aux_sym_control_persist_token1] = ACTIONS(1538), + [aux_sym_dynamic_forward_token1] = ACTIONS(1538), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1538), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1538), + [aux_sym_escape_char_token1] = ACTIONS(1538), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1538), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1538), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1538), + [aux_sym_forward_agent_token1] = ACTIONS(1538), + [aux_sym_forward_x11_token1] = ACTIONS(1540), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1538), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1538), + [aux_sym_gateway_ports_token1] = ACTIONS(1538), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1538), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1538), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1538), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1538), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1538), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1538), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1538), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1538), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1538), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1538), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1538), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1538), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1538), + [aux_sym_host_key_alias_token1] = ACTIONS(1538), + [aux_sym_hostname_token1] = ACTIONS(1538), + [aux_sym_identities_only_token1] = ACTIONS(1538), + [aux_sym_identity_agent_token1] = ACTIONS(1538), + [aux_sym_identity_file_token1] = ACTIONS(1538), + [aux_sym_ignore_unknown_token1] = ACTIONS(1538), + [aux_sym_include_token1] = ACTIONS(1538), + [aux_sym_ip_qos_token1] = ACTIONS(1538), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1538), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1538), + [aux_sym_kex_algorithms_token1] = ACTIONS(1538), + [aux_sym_known_hosts_command_token1] = ACTIONS(1538), + [aux_sym_local_command_token1] = ACTIONS(1538), + [aux_sym_local_forward_token1] = ACTIONS(1538), + [aux_sym_log_level_token1] = ACTIONS(1538), + [aux_sym_log_verbose_token1] = ACTIONS(1538), + [aux_sym_macs_token1] = ACTIONS(1538), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1538), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1538), + [aux_sym_password_authentication_token1] = ACTIONS(1538), + [aux_sym_permit_local_command_token1] = ACTIONS(1538), + [aux_sym_permit_remote_open_token1] = ACTIONS(1538), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1538), + [aux_sym_port_token1] = ACTIONS(1538), + [aux_sym_preferred_authentications_token1] = ACTIONS(1538), + [aux_sym_protocol_token1] = ACTIONS(1538), + [aux_sym_proxy_command_token1] = ACTIONS(1538), + [aux_sym_proxy_jump_token1] = ACTIONS(1538), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1538), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1538), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1538), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1538), + [aux_sym_rekey_limit_token1] = ACTIONS(1538), + [aux_sym_remote_command_token1] = ACTIONS(1538), + [aux_sym_remote_forward_token1] = ACTIONS(1538), + [aux_sym_request_tty_token1] = ACTIONS(1538), + [aux_sym_required_rsa_size_token1] = ACTIONS(1538), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1538), + [aux_sym_security_key_provider_token1] = ACTIONS(1538), + [aux_sym_send_env_token1] = ACTIONS(1538), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1538), + [aux_sym_server_alive_interval_token1] = ACTIONS(1538), + [aux_sym_session_type_token1] = ACTIONS(1538), + [aux_sym_set_env_token1] = ACTIONS(1538), + [aux_sym_stdin_null_token1] = ACTIONS(1538), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1538), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1538), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1538), + [aux_sym_syslog_facility_token1] = ACTIONS(1538), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1538), + [aux_sym_keep_alive_token1] = ACTIONS(1538), + [aux_sym_tunnel_token1] = ACTIONS(1540), + [aux_sym_tunnel_device_token1] = ACTIONS(1538), + [aux_sym_update_host_keys_token1] = ACTIONS(1538), + [aux_sym_use_keychain_token1] = ACTIONS(1538), + [aux_sym_use_roaming_token1] = ACTIONS(1538), + [aux_sym_user_token1] = ACTIONS(1540), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1538), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1538), + [aux_sym_visual_host_key_token1] = ACTIONS(1538), + [aux_sym_xauth_location_token1] = ACTIONS(1538), }, [708] = { - [ts_builtin_sym_end] = ACTIONS(1803), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1805), - [aux_sym_match_token1] = ACTIONS(1803), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1803), - [aux_sym_address_family_token1] = ACTIONS(1803), - [aux_sym_batch_mode_token1] = ACTIONS(1803), - [aux_sym_bind_address_token1] = ACTIONS(1803), - [aux_sym_bind_interface_token1] = ACTIONS(1803), - [aux_sym_canonical_domains_token1] = ACTIONS(1803), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1803), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1803), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1803), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1803), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1803), - [aux_sym_certificate_file_token1] = ACTIONS(1803), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1803), - [aux_sym_check_host_ip_token1] = ACTIONS(1803), - [aux_sym_ciphers_token1] = ACTIONS(1803), - [aux_sym_cipher_token1] = ACTIONS(1805), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1803), - [aux_sym_compression_token1] = ACTIONS(1803), - [aux_sym_connection_attempts_token1] = ACTIONS(1803), - [aux_sym_connect_timeout_token1] = ACTIONS(1803), - [aux_sym_control_master_token1] = ACTIONS(1803), - [aux_sym_control_path_token1] = ACTIONS(1803), - [aux_sym_control_persist_token1] = ACTIONS(1803), - [aux_sym_dynamic_forward_token1] = ACTIONS(1803), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1803), - [aux_sym_escape_char_token1] = ACTIONS(1803), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1803), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1803), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1803), - [aux_sym_forward_agent_token1] = ACTIONS(1803), - [aux_sym_forward_x11_token1] = ACTIONS(1805), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1803), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1803), - [aux_sym_gateway_ports_token1] = ACTIONS(1803), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1803), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1803), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1803), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1803), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1803), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1803), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1803), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1803), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1803), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1803), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1803), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1803), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1803), - [aux_sym_host_key_alias_token1] = ACTIONS(1803), - [aux_sym_hostname_token1] = ACTIONS(1803), - [aux_sym_identities_only_token1] = ACTIONS(1803), - [aux_sym_identity_agent_token1] = ACTIONS(1803), - [aux_sym_identity_file_token1] = ACTIONS(1803), - [aux_sym_ignore_unknown_token1] = ACTIONS(1803), - [aux_sym_include_token1] = ACTIONS(1803), - [aux_sym_ip_qos_token1] = ACTIONS(1803), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1803), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1803), - [aux_sym_kex_algorithms_token1] = ACTIONS(1803), - [aux_sym_known_hosts_command_token1] = ACTIONS(1803), - [aux_sym_local_command_token1] = ACTIONS(1803), - [aux_sym_local_forward_token1] = ACTIONS(1803), - [aux_sym_log_level_token1] = ACTIONS(1803), - [aux_sym_log_verbose_token1] = ACTIONS(1803), - [aux_sym_macs_token1] = ACTIONS(1803), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1803), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1803), - [aux_sym_password_authentication_token1] = ACTIONS(1803), - [aux_sym_permit_local_command_token1] = ACTIONS(1803), - [aux_sym_permit_remote_open_token1] = ACTIONS(1803), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1803), - [aux_sym_port_token1] = ACTIONS(1803), - [aux_sym_preferred_authentications_token1] = ACTIONS(1803), - [aux_sym_protocol_token1] = ACTIONS(1803), - [aux_sym_proxy_command_token1] = ACTIONS(1803), - [aux_sym_proxy_jump_token1] = ACTIONS(1803), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1803), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1803), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1803), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1803), - [aux_sym_rekey_limit_token1] = ACTIONS(1803), - [aux_sym_remote_command_token1] = ACTIONS(1803), - [aux_sym_remote_forward_token1] = ACTIONS(1803), - [aux_sym_request_tty_token1] = ACTIONS(1803), - [aux_sym_required_rsa_size_token1] = ACTIONS(1803), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1803), - [aux_sym_security_key_provider_token1] = ACTIONS(1803), - [aux_sym_send_env_token1] = ACTIONS(1803), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1803), - [aux_sym_server_alive_interval_token1] = ACTIONS(1803), - [aux_sym_session_type_token1] = ACTIONS(1803), - [aux_sym_set_env_token1] = ACTIONS(1803), - [aux_sym_stdin_null_token1] = ACTIONS(1803), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1803), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1803), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1803), - [aux_sym_syslog_facility_token1] = ACTIONS(1803), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1803), - [aux_sym_keep_alive_token1] = ACTIONS(1803), - [aux_sym_tunnel_token1] = ACTIONS(1805), - [aux_sym_tunnel_device_token1] = ACTIONS(1803), - [aux_sym_update_host_keys_token1] = ACTIONS(1803), - [aux_sym_use_keychain_token1] = ACTIONS(1803), - [aux_sym_use_roaming_token1] = ACTIONS(1803), - [aux_sym_user_token1] = ACTIONS(1805), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1803), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1803), - [aux_sym_visual_host_key_token1] = ACTIONS(1803), - [aux_sym_xauth_location_token1] = ACTIONS(1803), + [ts_builtin_sym_end] = ACTIONS(1832), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1834), + [aux_sym_match_token1] = ACTIONS(1832), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1832), + [aux_sym_address_family_token1] = ACTIONS(1832), + [aux_sym_batch_mode_token1] = ACTIONS(1832), + [aux_sym_bind_address_token1] = ACTIONS(1832), + [aux_sym_bind_interface_token1] = ACTIONS(1832), + [aux_sym_canonical_domains_token1] = ACTIONS(1832), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1832), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1832), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1832), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1832), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1832), + [aux_sym_certificate_file_token1] = ACTIONS(1832), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1832), + [aux_sym_check_host_ip_token1] = ACTIONS(1832), + [aux_sym_ciphers_token1] = ACTIONS(1832), + [aux_sym_cipher_token1] = ACTIONS(1834), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1832), + [aux_sym_compression_token1] = ACTIONS(1832), + [aux_sym_connection_attempts_token1] = ACTIONS(1832), + [aux_sym_connect_timeout_token1] = ACTIONS(1832), + [aux_sym_control_master_token1] = ACTIONS(1832), + [aux_sym_control_path_token1] = ACTIONS(1832), + [aux_sym_control_persist_token1] = ACTIONS(1832), + [aux_sym_dynamic_forward_token1] = ACTIONS(1832), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1832), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1832), + [aux_sym_escape_char_token1] = ACTIONS(1832), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1832), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1832), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1832), + [aux_sym_forward_agent_token1] = ACTIONS(1832), + [aux_sym_forward_x11_token1] = ACTIONS(1834), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1832), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1832), + [aux_sym_gateway_ports_token1] = ACTIONS(1832), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1832), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1832), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1832), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1832), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1832), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1832), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1832), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1832), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1832), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1832), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1832), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1832), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1832), + [aux_sym_host_key_alias_token1] = ACTIONS(1832), + [aux_sym_hostname_token1] = ACTIONS(1832), + [aux_sym_identities_only_token1] = ACTIONS(1832), + [aux_sym_identity_agent_token1] = ACTIONS(1832), + [aux_sym_identity_file_token1] = ACTIONS(1832), + [aux_sym_ignore_unknown_token1] = ACTIONS(1832), + [aux_sym_include_token1] = ACTIONS(1832), + [aux_sym_ip_qos_token1] = ACTIONS(1832), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1832), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1832), + [aux_sym_kex_algorithms_token1] = ACTIONS(1832), + [aux_sym_known_hosts_command_token1] = ACTIONS(1832), + [aux_sym_local_command_token1] = ACTIONS(1832), + [aux_sym_local_forward_token1] = ACTIONS(1832), + [aux_sym_log_level_token1] = ACTIONS(1832), + [aux_sym_log_verbose_token1] = ACTIONS(1832), + [aux_sym_macs_token1] = ACTIONS(1832), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1832), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1832), + [aux_sym_password_authentication_token1] = ACTIONS(1832), + [aux_sym_permit_local_command_token1] = ACTIONS(1832), + [aux_sym_permit_remote_open_token1] = ACTIONS(1832), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1832), + [aux_sym_port_token1] = ACTIONS(1832), + [aux_sym_preferred_authentications_token1] = ACTIONS(1832), + [aux_sym_protocol_token1] = ACTIONS(1832), + [aux_sym_proxy_command_token1] = ACTIONS(1832), + [aux_sym_proxy_jump_token1] = ACTIONS(1832), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1832), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1832), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1832), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1832), + [aux_sym_rekey_limit_token1] = ACTIONS(1832), + [aux_sym_remote_command_token1] = ACTIONS(1832), + [aux_sym_remote_forward_token1] = ACTIONS(1832), + [aux_sym_request_tty_token1] = ACTIONS(1832), + [aux_sym_required_rsa_size_token1] = ACTIONS(1832), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1832), + [aux_sym_security_key_provider_token1] = ACTIONS(1832), + [aux_sym_send_env_token1] = ACTIONS(1832), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1832), + [aux_sym_server_alive_interval_token1] = ACTIONS(1832), + [aux_sym_session_type_token1] = ACTIONS(1832), + [aux_sym_set_env_token1] = ACTIONS(1832), + [aux_sym_stdin_null_token1] = ACTIONS(1832), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1832), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1832), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1832), + [aux_sym_syslog_facility_token1] = ACTIONS(1832), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1832), + [aux_sym_keep_alive_token1] = ACTIONS(1832), + [aux_sym_tunnel_token1] = ACTIONS(1834), + [aux_sym_tunnel_device_token1] = ACTIONS(1832), + [aux_sym_update_host_keys_token1] = ACTIONS(1832), + [aux_sym_use_keychain_token1] = ACTIONS(1832), + [aux_sym_use_roaming_token1] = ACTIONS(1832), + [aux_sym_user_token1] = ACTIONS(1834), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1832), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1832), + [aux_sym_visual_host_key_token1] = ACTIONS(1832), + [aux_sym_xauth_location_token1] = ACTIONS(1832), }, [709] = { - [ts_builtin_sym_end] = ACTIONS(1329), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1331), - [aux_sym_match_token1] = ACTIONS(1329), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1329), - [aux_sym_address_family_token1] = ACTIONS(1329), - [aux_sym_batch_mode_token1] = ACTIONS(1329), - [aux_sym_bind_address_token1] = ACTIONS(1329), - [aux_sym_bind_interface_token1] = ACTIONS(1329), - [aux_sym_canonical_domains_token1] = ACTIONS(1329), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1329), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1329), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1329), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1329), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1329), - [aux_sym_certificate_file_token1] = ACTIONS(1329), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1329), - [aux_sym_check_host_ip_token1] = ACTIONS(1329), - [aux_sym_ciphers_token1] = ACTIONS(1329), - [aux_sym_cipher_token1] = ACTIONS(1331), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1329), - [aux_sym_compression_token1] = ACTIONS(1329), - [aux_sym_connection_attempts_token1] = ACTIONS(1329), - [aux_sym_connect_timeout_token1] = ACTIONS(1329), - [aux_sym_control_master_token1] = ACTIONS(1329), - [aux_sym_control_path_token1] = ACTIONS(1329), - [aux_sym_control_persist_token1] = ACTIONS(1329), - [aux_sym_dynamic_forward_token1] = ACTIONS(1329), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1329), - [aux_sym_escape_char_token1] = ACTIONS(1329), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1329), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1329), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1329), - [aux_sym_forward_agent_token1] = ACTIONS(1329), - [aux_sym_forward_x11_token1] = ACTIONS(1331), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1329), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1329), - [aux_sym_gateway_ports_token1] = ACTIONS(1329), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1329), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1329), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1329), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1329), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1329), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1329), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1329), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1329), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1329), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1329), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1329), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1329), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1329), - [aux_sym_host_key_alias_token1] = ACTIONS(1329), - [aux_sym_hostname_token1] = ACTIONS(1329), - [aux_sym_identities_only_token1] = ACTIONS(1329), - [aux_sym_identity_agent_token1] = ACTIONS(1329), - [aux_sym_identity_file_token1] = ACTIONS(1329), - [aux_sym_ignore_unknown_token1] = ACTIONS(1329), - [aux_sym_include_token1] = ACTIONS(1329), - [aux_sym_ip_qos_token1] = ACTIONS(1329), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1329), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1329), - [aux_sym_kex_algorithms_token1] = ACTIONS(1329), - [aux_sym_known_hosts_command_token1] = ACTIONS(1329), - [aux_sym_local_command_token1] = ACTIONS(1329), - [aux_sym_local_forward_token1] = ACTIONS(1329), - [aux_sym_log_level_token1] = ACTIONS(1329), - [aux_sym_log_verbose_token1] = ACTIONS(1329), - [aux_sym_macs_token1] = ACTIONS(1329), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1329), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1329), - [aux_sym_password_authentication_token1] = ACTIONS(1329), - [aux_sym_permit_local_command_token1] = ACTIONS(1329), - [aux_sym_permit_remote_open_token1] = ACTIONS(1329), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1329), - [aux_sym_port_token1] = ACTIONS(1329), - [aux_sym_preferred_authentications_token1] = ACTIONS(1329), - [aux_sym_protocol_token1] = ACTIONS(1329), - [aux_sym_proxy_command_token1] = ACTIONS(1329), - [aux_sym_proxy_jump_token1] = ACTIONS(1329), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1329), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1329), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1329), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1329), - [aux_sym_rekey_limit_token1] = ACTIONS(1329), - [aux_sym_remote_command_token1] = ACTIONS(1329), - [aux_sym_remote_forward_token1] = ACTIONS(1329), - [aux_sym_request_tty_token1] = ACTIONS(1329), - [aux_sym_required_rsa_size_token1] = ACTIONS(1329), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1329), - [aux_sym_security_key_provider_token1] = ACTIONS(1329), - [aux_sym_send_env_token1] = ACTIONS(1329), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1329), - [aux_sym_server_alive_interval_token1] = ACTIONS(1329), - [aux_sym_session_type_token1] = ACTIONS(1329), - [aux_sym_set_env_token1] = ACTIONS(1329), - [aux_sym_stdin_null_token1] = ACTIONS(1329), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1329), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1329), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1329), - [aux_sym_syslog_facility_token1] = ACTIONS(1329), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1329), - [aux_sym_keep_alive_token1] = ACTIONS(1329), - [aux_sym_tunnel_token1] = ACTIONS(1331), - [aux_sym_tunnel_device_token1] = ACTIONS(1329), - [aux_sym_update_host_keys_token1] = ACTIONS(1329), - [aux_sym_use_keychain_token1] = ACTIONS(1329), - [aux_sym_use_roaming_token1] = ACTIONS(1329), - [aux_sym_user_token1] = ACTIONS(1331), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1329), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1329), - [aux_sym_visual_host_key_token1] = ACTIONS(1329), - [aux_sym_xauth_location_token1] = ACTIONS(1329), + [ts_builtin_sym_end] = ACTIONS(668), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(670), + [aux_sym_match_token1] = ACTIONS(668), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(668), + [aux_sym_address_family_token1] = ACTIONS(668), + [aux_sym_batch_mode_token1] = ACTIONS(668), + [aux_sym_bind_address_token1] = ACTIONS(668), + [aux_sym_bind_interface_token1] = ACTIONS(668), + [aux_sym_canonical_domains_token1] = ACTIONS(668), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(668), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(668), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(668), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(668), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(668), + [aux_sym_certificate_file_token1] = ACTIONS(668), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(668), + [aux_sym_check_host_ip_token1] = ACTIONS(668), + [aux_sym_ciphers_token1] = ACTIONS(668), + [aux_sym_cipher_token1] = ACTIONS(670), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(668), + [aux_sym_compression_token1] = ACTIONS(668), + [aux_sym_connection_attempts_token1] = ACTIONS(668), + [aux_sym_connect_timeout_token1] = ACTIONS(668), + [aux_sym_control_master_token1] = ACTIONS(668), + [aux_sym_control_path_token1] = ACTIONS(668), + [aux_sym_control_persist_token1] = ACTIONS(668), + [aux_sym_dynamic_forward_token1] = ACTIONS(668), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(668), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(668), + [aux_sym_escape_char_token1] = ACTIONS(668), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(668), + [aux_sym_fingerprint_hash_token1] = ACTIONS(668), + [aux_sym_fork_after_authentication_token1] = ACTIONS(668), + [aux_sym_forward_agent_token1] = ACTIONS(668), + [aux_sym_forward_x11_token1] = ACTIONS(670), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(668), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(668), + [aux_sym_gateway_ports_token1] = ACTIONS(668), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(668), + [aux_sym_gssapi_authentication_token1] = ACTIONS(668), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(668), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(668), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(668), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(668), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(668), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(668), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(668), + [aux_sym_hash_known_hosts_token1] = ACTIONS(668), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(668), + [aux_sym_hostbased_authentication_token1] = ACTIONS(668), + [aux_sym_host_key_algorithms_token1] = ACTIONS(668), + [aux_sym_host_key_alias_token1] = ACTIONS(668), + [aux_sym_hostname_token1] = ACTIONS(668), + [aux_sym_identities_only_token1] = ACTIONS(668), + [aux_sym_identity_agent_token1] = ACTIONS(668), + [aux_sym_identity_file_token1] = ACTIONS(668), + [aux_sym_ignore_unknown_token1] = ACTIONS(668), + [aux_sym_include_token1] = ACTIONS(668), + [aux_sym_ip_qos_token1] = ACTIONS(668), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(668), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(668), + [aux_sym_kex_algorithms_token1] = ACTIONS(668), + [aux_sym_known_hosts_command_token1] = ACTIONS(668), + [aux_sym_local_command_token1] = ACTIONS(668), + [aux_sym_local_forward_token1] = ACTIONS(668), + [aux_sym_log_level_token1] = ACTIONS(668), + [aux_sym_log_verbose_token1] = ACTIONS(668), + [aux_sym_macs_token1] = ACTIONS(668), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(668), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(668), + [aux_sym_password_authentication_token1] = ACTIONS(668), + [aux_sym_permit_local_command_token1] = ACTIONS(668), + [aux_sym_permit_remote_open_token1] = ACTIONS(668), + [aux_sym_pkcs11_provider_token1] = ACTIONS(668), + [aux_sym_port_token1] = ACTIONS(668), + [aux_sym_preferred_authentications_token1] = ACTIONS(668), + [aux_sym_protocol_token1] = ACTIONS(668), + [aux_sym_proxy_command_token1] = ACTIONS(668), + [aux_sym_proxy_jump_token1] = ACTIONS(668), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(668), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(668), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(668), + [aux_sym_pubkey_authentication_token1] = ACTIONS(668), + [aux_sym_rekey_limit_token1] = ACTIONS(668), + [aux_sym_remote_command_token1] = ACTIONS(668), + [aux_sym_remote_forward_token1] = ACTIONS(668), + [aux_sym_request_tty_token1] = ACTIONS(668), + [aux_sym_required_rsa_size_token1] = ACTIONS(668), + [aux_sym_revoked_host_keys_token1] = ACTIONS(668), + [aux_sym_security_key_provider_token1] = ACTIONS(668), + [aux_sym_send_env_token1] = ACTIONS(668), + [aux_sym_server_alive_count_max_token1] = ACTIONS(668), + [aux_sym_server_alive_interval_token1] = ACTIONS(668), + [aux_sym_session_type_token1] = ACTIONS(668), + [aux_sym_set_env_token1] = ACTIONS(668), + [aux_sym_stdin_null_token1] = ACTIONS(668), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(668), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(668), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(668), + [aux_sym_syslog_facility_token1] = ACTIONS(668), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(668), + [aux_sym_keep_alive_token1] = ACTIONS(668), + [aux_sym_tunnel_token1] = ACTIONS(670), + [aux_sym_tunnel_device_token1] = ACTIONS(668), + [aux_sym_update_host_keys_token1] = ACTIONS(668), + [aux_sym_use_keychain_token1] = ACTIONS(668), + [aux_sym_use_roaming_token1] = ACTIONS(668), + [aux_sym_user_token1] = ACTIONS(670), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(668), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(668), + [aux_sym_visual_host_key_token1] = ACTIONS(668), + [aux_sym_xauth_location_token1] = ACTIONS(668), }, [710] = { - [ts_builtin_sym_end] = ACTIONS(1617), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1619), - [aux_sym_match_token1] = ACTIONS(1617), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1617), - [aux_sym_address_family_token1] = ACTIONS(1617), - [aux_sym_batch_mode_token1] = ACTIONS(1617), - [aux_sym_bind_address_token1] = ACTIONS(1617), - [aux_sym_bind_interface_token1] = ACTIONS(1617), - [aux_sym_canonical_domains_token1] = ACTIONS(1617), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1617), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1617), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1617), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1617), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1617), - [aux_sym_certificate_file_token1] = ACTIONS(1617), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1617), - [aux_sym_check_host_ip_token1] = ACTIONS(1617), - [aux_sym_ciphers_token1] = ACTIONS(1617), - [aux_sym_cipher_token1] = ACTIONS(1619), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1617), - [aux_sym_compression_token1] = ACTIONS(1617), - [aux_sym_connection_attempts_token1] = ACTIONS(1617), - [aux_sym_connect_timeout_token1] = ACTIONS(1617), - [aux_sym_control_master_token1] = ACTIONS(1617), - [aux_sym_control_path_token1] = ACTIONS(1617), - [aux_sym_control_persist_token1] = ACTIONS(1617), - [aux_sym_dynamic_forward_token1] = ACTIONS(1617), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1617), - [aux_sym_escape_char_token1] = ACTIONS(1617), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1617), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1617), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1617), - [aux_sym_forward_agent_token1] = ACTIONS(1617), - [aux_sym_forward_x11_token1] = ACTIONS(1619), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1617), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1617), - [aux_sym_gateway_ports_token1] = ACTIONS(1617), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1617), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1617), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1617), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1617), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1617), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1617), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1617), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1617), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1617), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1617), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1617), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1617), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1617), - [aux_sym_host_key_alias_token1] = ACTIONS(1617), - [aux_sym_hostname_token1] = ACTIONS(1617), - [aux_sym_identities_only_token1] = ACTIONS(1617), - [aux_sym_identity_agent_token1] = ACTIONS(1617), - [aux_sym_identity_file_token1] = ACTIONS(1617), - [aux_sym_ignore_unknown_token1] = ACTIONS(1617), - [aux_sym_include_token1] = ACTIONS(1617), - [aux_sym_ip_qos_token1] = ACTIONS(1617), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1617), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1617), - [aux_sym_kex_algorithms_token1] = ACTIONS(1617), - [aux_sym_known_hosts_command_token1] = ACTIONS(1617), - [aux_sym_local_command_token1] = ACTIONS(1617), - [aux_sym_local_forward_token1] = ACTIONS(1617), - [aux_sym_log_level_token1] = ACTIONS(1617), - [aux_sym_log_verbose_token1] = ACTIONS(1617), - [aux_sym_macs_token1] = ACTIONS(1617), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1617), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1617), - [aux_sym_password_authentication_token1] = ACTIONS(1617), - [aux_sym_permit_local_command_token1] = ACTIONS(1617), - [aux_sym_permit_remote_open_token1] = ACTIONS(1617), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1617), - [aux_sym_port_token1] = ACTIONS(1617), - [aux_sym_preferred_authentications_token1] = ACTIONS(1617), - [aux_sym_protocol_token1] = ACTIONS(1617), - [aux_sym_proxy_command_token1] = ACTIONS(1617), - [aux_sym_proxy_jump_token1] = ACTIONS(1617), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1617), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1617), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1617), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1617), - [aux_sym_rekey_limit_token1] = ACTIONS(1617), - [aux_sym_remote_command_token1] = ACTIONS(1617), - [aux_sym_remote_forward_token1] = ACTIONS(1617), - [aux_sym_request_tty_token1] = ACTIONS(1617), - [aux_sym_required_rsa_size_token1] = ACTIONS(1617), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1617), - [aux_sym_security_key_provider_token1] = ACTIONS(1617), - [aux_sym_send_env_token1] = ACTIONS(1617), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1617), - [aux_sym_server_alive_interval_token1] = ACTIONS(1617), - [aux_sym_session_type_token1] = ACTIONS(1617), - [aux_sym_set_env_token1] = ACTIONS(1617), - [aux_sym_stdin_null_token1] = ACTIONS(1617), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1617), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1617), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1617), - [aux_sym_syslog_facility_token1] = ACTIONS(1617), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1617), - [aux_sym_keep_alive_token1] = ACTIONS(1617), - [aux_sym_tunnel_token1] = ACTIONS(1619), - [aux_sym_tunnel_device_token1] = ACTIONS(1617), - [aux_sym_update_host_keys_token1] = ACTIONS(1617), - [aux_sym_use_keychain_token1] = ACTIONS(1617), - [aux_sym_use_roaming_token1] = ACTIONS(1617), - [aux_sym_user_token1] = ACTIONS(1619), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1617), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1617), - [aux_sym_visual_host_key_token1] = ACTIONS(1617), - [aux_sym_xauth_location_token1] = ACTIONS(1617), + [ts_builtin_sym_end] = ACTIONS(818), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(820), + [aux_sym_match_token1] = ACTIONS(818), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(818), + [aux_sym_address_family_token1] = ACTIONS(818), + [aux_sym_batch_mode_token1] = ACTIONS(818), + [aux_sym_bind_address_token1] = ACTIONS(818), + [aux_sym_bind_interface_token1] = ACTIONS(818), + [aux_sym_canonical_domains_token1] = ACTIONS(818), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(818), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(818), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(818), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(818), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(818), + [aux_sym_certificate_file_token1] = ACTIONS(818), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(818), + [aux_sym_check_host_ip_token1] = ACTIONS(818), + [aux_sym_ciphers_token1] = ACTIONS(818), + [aux_sym_cipher_token1] = ACTIONS(820), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(818), + [aux_sym_compression_token1] = ACTIONS(818), + [aux_sym_connection_attempts_token1] = ACTIONS(818), + [aux_sym_connect_timeout_token1] = ACTIONS(818), + [aux_sym_control_master_token1] = ACTIONS(818), + [aux_sym_control_path_token1] = ACTIONS(818), + [aux_sym_control_persist_token1] = ACTIONS(818), + [aux_sym_dynamic_forward_token1] = ACTIONS(818), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(818), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(818), + [aux_sym_escape_char_token1] = ACTIONS(818), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(818), + [aux_sym_fingerprint_hash_token1] = ACTIONS(818), + [aux_sym_fork_after_authentication_token1] = ACTIONS(818), + [aux_sym_forward_agent_token1] = ACTIONS(818), + [aux_sym_forward_x11_token1] = ACTIONS(820), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(818), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(818), + [aux_sym_gateway_ports_token1] = ACTIONS(818), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(818), + [aux_sym_gssapi_authentication_token1] = ACTIONS(818), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(818), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(818), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(818), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(818), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(818), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(818), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(818), + [aux_sym_hash_known_hosts_token1] = ACTIONS(818), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(818), + [aux_sym_hostbased_authentication_token1] = ACTIONS(818), + [aux_sym_host_key_algorithms_token1] = ACTIONS(818), + [aux_sym_host_key_alias_token1] = ACTIONS(818), + [aux_sym_hostname_token1] = ACTIONS(818), + [aux_sym_identities_only_token1] = ACTIONS(818), + [aux_sym_identity_agent_token1] = ACTIONS(818), + [aux_sym_identity_file_token1] = ACTIONS(818), + [aux_sym_ignore_unknown_token1] = ACTIONS(818), + [aux_sym_include_token1] = ACTIONS(818), + [aux_sym_ip_qos_token1] = ACTIONS(818), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(818), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(818), + [aux_sym_kex_algorithms_token1] = ACTIONS(818), + [aux_sym_known_hosts_command_token1] = ACTIONS(818), + [aux_sym_local_command_token1] = ACTIONS(818), + [aux_sym_local_forward_token1] = ACTIONS(818), + [aux_sym_log_level_token1] = ACTIONS(818), + [aux_sym_log_verbose_token1] = ACTIONS(818), + [aux_sym_macs_token1] = ACTIONS(818), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(818), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(818), + [aux_sym_password_authentication_token1] = ACTIONS(818), + [aux_sym_permit_local_command_token1] = ACTIONS(818), + [aux_sym_permit_remote_open_token1] = ACTIONS(818), + [aux_sym_pkcs11_provider_token1] = ACTIONS(818), + [aux_sym_port_token1] = ACTIONS(818), + [aux_sym_preferred_authentications_token1] = ACTIONS(818), + [aux_sym_protocol_token1] = ACTIONS(818), + [aux_sym_proxy_command_token1] = ACTIONS(818), + [aux_sym_proxy_jump_token1] = ACTIONS(818), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(818), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(818), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(818), + [aux_sym_pubkey_authentication_token1] = ACTIONS(818), + [aux_sym_rekey_limit_token1] = ACTIONS(818), + [aux_sym_remote_command_token1] = ACTIONS(818), + [aux_sym_remote_forward_token1] = ACTIONS(818), + [aux_sym_request_tty_token1] = ACTIONS(818), + [aux_sym_required_rsa_size_token1] = ACTIONS(818), + [aux_sym_revoked_host_keys_token1] = ACTIONS(818), + [aux_sym_security_key_provider_token1] = ACTIONS(818), + [aux_sym_send_env_token1] = ACTIONS(818), + [aux_sym_server_alive_count_max_token1] = ACTIONS(818), + [aux_sym_server_alive_interval_token1] = ACTIONS(818), + [aux_sym_session_type_token1] = ACTIONS(818), + [aux_sym_set_env_token1] = ACTIONS(818), + [aux_sym_stdin_null_token1] = ACTIONS(818), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(818), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(818), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(818), + [aux_sym_syslog_facility_token1] = ACTIONS(818), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(818), + [aux_sym_keep_alive_token1] = ACTIONS(818), + [aux_sym_tunnel_token1] = ACTIONS(820), + [aux_sym_tunnel_device_token1] = ACTIONS(818), + [aux_sym_update_host_keys_token1] = ACTIONS(818), + [aux_sym_use_keychain_token1] = ACTIONS(818), + [aux_sym_use_roaming_token1] = ACTIONS(818), + [aux_sym_user_token1] = ACTIONS(820), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(818), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(818), + [aux_sym_visual_host_key_token1] = ACTIONS(818), + [aux_sym_xauth_location_token1] = ACTIONS(818), }, [711] = { - [ts_builtin_sym_end] = ACTIONS(1797), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1799), - [aux_sym_match_token1] = ACTIONS(1797), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1797), - [aux_sym_address_family_token1] = ACTIONS(1797), - [aux_sym_batch_mode_token1] = ACTIONS(1797), - [aux_sym_bind_address_token1] = ACTIONS(1797), - [aux_sym_bind_interface_token1] = ACTIONS(1797), - [aux_sym_canonical_domains_token1] = ACTIONS(1797), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1797), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1797), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1797), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1797), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1797), - [aux_sym_certificate_file_token1] = ACTIONS(1797), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1797), - [aux_sym_check_host_ip_token1] = ACTIONS(1797), - [aux_sym_ciphers_token1] = ACTIONS(1797), - [aux_sym_cipher_token1] = ACTIONS(1799), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1797), - [aux_sym_compression_token1] = ACTIONS(1797), - [aux_sym_connection_attempts_token1] = ACTIONS(1797), - [aux_sym_connect_timeout_token1] = ACTIONS(1797), - [aux_sym_control_master_token1] = ACTIONS(1797), - [aux_sym_control_path_token1] = ACTIONS(1797), - [aux_sym_control_persist_token1] = ACTIONS(1797), - [aux_sym_dynamic_forward_token1] = ACTIONS(1797), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1797), - [aux_sym_escape_char_token1] = ACTIONS(1797), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1797), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1797), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1797), - [aux_sym_forward_agent_token1] = ACTIONS(1797), - [aux_sym_forward_x11_token1] = ACTIONS(1799), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1797), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1797), - [aux_sym_gateway_ports_token1] = ACTIONS(1797), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1797), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1797), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1797), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1797), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1797), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1797), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1797), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1797), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1797), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1797), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1797), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1797), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1797), - [aux_sym_host_key_alias_token1] = ACTIONS(1797), - [aux_sym_hostname_token1] = ACTIONS(1797), - [aux_sym_identities_only_token1] = ACTIONS(1797), - [aux_sym_identity_agent_token1] = ACTIONS(1797), - [aux_sym_identity_file_token1] = ACTIONS(1797), - [aux_sym_ignore_unknown_token1] = ACTIONS(1797), - [aux_sym_include_token1] = ACTIONS(1797), - [aux_sym_ip_qos_token1] = ACTIONS(1797), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1797), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1797), - [aux_sym_kex_algorithms_token1] = ACTIONS(1797), - [aux_sym_known_hosts_command_token1] = ACTIONS(1797), - [aux_sym_local_command_token1] = ACTIONS(1797), - [aux_sym_local_forward_token1] = ACTIONS(1797), - [aux_sym_log_level_token1] = ACTIONS(1797), - [aux_sym_log_verbose_token1] = ACTIONS(1797), - [aux_sym_macs_token1] = ACTIONS(1797), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1797), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1797), - [aux_sym_password_authentication_token1] = ACTIONS(1797), - [aux_sym_permit_local_command_token1] = ACTIONS(1797), - [aux_sym_permit_remote_open_token1] = ACTIONS(1797), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1797), - [aux_sym_port_token1] = ACTIONS(1797), - [aux_sym_preferred_authentications_token1] = ACTIONS(1797), - [aux_sym_protocol_token1] = ACTIONS(1797), - [aux_sym_proxy_command_token1] = ACTIONS(1797), - [aux_sym_proxy_jump_token1] = ACTIONS(1797), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1797), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1797), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1797), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1797), - [aux_sym_rekey_limit_token1] = ACTIONS(1797), - [aux_sym_remote_command_token1] = ACTIONS(1797), - [aux_sym_remote_forward_token1] = ACTIONS(1797), - [aux_sym_request_tty_token1] = ACTIONS(1797), - [aux_sym_required_rsa_size_token1] = ACTIONS(1797), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1797), - [aux_sym_security_key_provider_token1] = ACTIONS(1797), - [aux_sym_send_env_token1] = ACTIONS(1797), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1797), - [aux_sym_server_alive_interval_token1] = ACTIONS(1797), - [aux_sym_session_type_token1] = ACTIONS(1797), - [aux_sym_set_env_token1] = ACTIONS(1797), - [aux_sym_stdin_null_token1] = ACTIONS(1797), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1797), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1797), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1797), - [aux_sym_syslog_facility_token1] = ACTIONS(1797), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1797), - [aux_sym_keep_alive_token1] = ACTIONS(1797), - [aux_sym_tunnel_token1] = ACTIONS(1799), - [aux_sym_tunnel_device_token1] = ACTIONS(1797), - [aux_sym_update_host_keys_token1] = ACTIONS(1797), - [aux_sym_use_keychain_token1] = ACTIONS(1797), - [aux_sym_use_roaming_token1] = ACTIONS(1797), - [aux_sym_user_token1] = ACTIONS(1799), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1797), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1797), - [aux_sym_visual_host_key_token1] = ACTIONS(1797), - [aux_sym_xauth_location_token1] = ACTIONS(1797), + [ts_builtin_sym_end] = ACTIONS(1826), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1828), + [aux_sym_match_token1] = ACTIONS(1826), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1826), + [aux_sym_address_family_token1] = ACTIONS(1826), + [aux_sym_batch_mode_token1] = ACTIONS(1826), + [aux_sym_bind_address_token1] = ACTIONS(1826), + [aux_sym_bind_interface_token1] = ACTIONS(1826), + [aux_sym_canonical_domains_token1] = ACTIONS(1826), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1826), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1826), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1826), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1826), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1826), + [aux_sym_certificate_file_token1] = ACTIONS(1826), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1826), + [aux_sym_check_host_ip_token1] = ACTIONS(1826), + [aux_sym_ciphers_token1] = ACTIONS(1826), + [aux_sym_cipher_token1] = ACTIONS(1828), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1826), + [aux_sym_compression_token1] = ACTIONS(1826), + [aux_sym_connection_attempts_token1] = ACTIONS(1826), + [aux_sym_connect_timeout_token1] = ACTIONS(1826), + [aux_sym_control_master_token1] = ACTIONS(1826), + [aux_sym_control_path_token1] = ACTIONS(1826), + [aux_sym_control_persist_token1] = ACTIONS(1826), + [aux_sym_dynamic_forward_token1] = ACTIONS(1826), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1826), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1826), + [aux_sym_escape_char_token1] = ACTIONS(1826), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1826), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1826), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1826), + [aux_sym_forward_agent_token1] = ACTIONS(1826), + [aux_sym_forward_x11_token1] = ACTIONS(1828), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1826), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1826), + [aux_sym_gateway_ports_token1] = ACTIONS(1826), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1826), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1826), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1826), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1826), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1826), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1826), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1826), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1826), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1826), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1826), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1826), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1826), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1826), + [aux_sym_host_key_alias_token1] = ACTIONS(1826), + [aux_sym_hostname_token1] = ACTIONS(1826), + [aux_sym_identities_only_token1] = ACTIONS(1826), + [aux_sym_identity_agent_token1] = ACTIONS(1826), + [aux_sym_identity_file_token1] = ACTIONS(1826), + [aux_sym_ignore_unknown_token1] = ACTIONS(1826), + [aux_sym_include_token1] = ACTIONS(1826), + [aux_sym_ip_qos_token1] = ACTIONS(1826), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1826), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1826), + [aux_sym_kex_algorithms_token1] = ACTIONS(1826), + [aux_sym_known_hosts_command_token1] = ACTIONS(1826), + [aux_sym_local_command_token1] = ACTIONS(1826), + [aux_sym_local_forward_token1] = ACTIONS(1826), + [aux_sym_log_level_token1] = ACTIONS(1826), + [aux_sym_log_verbose_token1] = ACTIONS(1826), + [aux_sym_macs_token1] = ACTIONS(1826), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1826), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1826), + [aux_sym_password_authentication_token1] = ACTIONS(1826), + [aux_sym_permit_local_command_token1] = ACTIONS(1826), + [aux_sym_permit_remote_open_token1] = ACTIONS(1826), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1826), + [aux_sym_port_token1] = ACTIONS(1826), + [aux_sym_preferred_authentications_token1] = ACTIONS(1826), + [aux_sym_protocol_token1] = ACTIONS(1826), + [aux_sym_proxy_command_token1] = ACTIONS(1826), + [aux_sym_proxy_jump_token1] = ACTIONS(1826), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1826), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1826), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1826), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1826), + [aux_sym_rekey_limit_token1] = ACTIONS(1826), + [aux_sym_remote_command_token1] = ACTIONS(1826), + [aux_sym_remote_forward_token1] = ACTIONS(1826), + [aux_sym_request_tty_token1] = ACTIONS(1826), + [aux_sym_required_rsa_size_token1] = ACTIONS(1826), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1826), + [aux_sym_security_key_provider_token1] = ACTIONS(1826), + [aux_sym_send_env_token1] = ACTIONS(1826), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1826), + [aux_sym_server_alive_interval_token1] = ACTIONS(1826), + [aux_sym_session_type_token1] = ACTIONS(1826), + [aux_sym_set_env_token1] = ACTIONS(1826), + [aux_sym_stdin_null_token1] = ACTIONS(1826), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1826), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1826), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1826), + [aux_sym_syslog_facility_token1] = ACTIONS(1826), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1826), + [aux_sym_keep_alive_token1] = ACTIONS(1826), + [aux_sym_tunnel_token1] = ACTIONS(1828), + [aux_sym_tunnel_device_token1] = ACTIONS(1826), + [aux_sym_update_host_keys_token1] = ACTIONS(1826), + [aux_sym_use_keychain_token1] = ACTIONS(1826), + [aux_sym_use_roaming_token1] = ACTIONS(1826), + [aux_sym_user_token1] = ACTIONS(1828), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1826), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1826), + [aux_sym_visual_host_key_token1] = ACTIONS(1826), + [aux_sym_xauth_location_token1] = ACTIONS(1826), }, [712] = { - [ts_builtin_sym_end] = ACTIONS(1335), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1337), - [aux_sym_match_token1] = ACTIONS(1335), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1335), - [aux_sym_address_family_token1] = ACTIONS(1335), - [aux_sym_batch_mode_token1] = ACTIONS(1335), - [aux_sym_bind_address_token1] = ACTIONS(1335), - [aux_sym_bind_interface_token1] = ACTIONS(1335), - [aux_sym_canonical_domains_token1] = ACTIONS(1335), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1335), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1335), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1335), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1335), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1335), - [aux_sym_certificate_file_token1] = ACTIONS(1335), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1335), - [aux_sym_check_host_ip_token1] = ACTIONS(1335), - [aux_sym_ciphers_token1] = ACTIONS(1335), - [aux_sym_cipher_token1] = ACTIONS(1337), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1335), - [aux_sym_compression_token1] = ACTIONS(1335), - [aux_sym_connection_attempts_token1] = ACTIONS(1335), - [aux_sym_connect_timeout_token1] = ACTIONS(1335), - [aux_sym_control_master_token1] = ACTIONS(1335), - [aux_sym_control_path_token1] = ACTIONS(1335), - [aux_sym_control_persist_token1] = ACTIONS(1335), - [aux_sym_dynamic_forward_token1] = ACTIONS(1335), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1335), - [aux_sym_escape_char_token1] = ACTIONS(1335), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1335), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1335), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1335), - [aux_sym_forward_agent_token1] = ACTIONS(1335), - [aux_sym_forward_x11_token1] = ACTIONS(1337), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1335), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1335), - [aux_sym_gateway_ports_token1] = ACTIONS(1335), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1335), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1335), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1335), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1335), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1335), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1335), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1335), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1335), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1335), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1335), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1335), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1335), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1335), - [aux_sym_host_key_alias_token1] = ACTIONS(1335), - [aux_sym_hostname_token1] = ACTIONS(1335), - [aux_sym_identities_only_token1] = ACTIONS(1335), - [aux_sym_identity_agent_token1] = ACTIONS(1335), - [aux_sym_identity_file_token1] = ACTIONS(1335), - [aux_sym_ignore_unknown_token1] = ACTIONS(1335), - [aux_sym_include_token1] = ACTIONS(1335), - [aux_sym_ip_qos_token1] = ACTIONS(1335), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1335), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1335), - [aux_sym_kex_algorithms_token1] = ACTIONS(1335), - [aux_sym_known_hosts_command_token1] = ACTIONS(1335), - [aux_sym_local_command_token1] = ACTIONS(1335), - [aux_sym_local_forward_token1] = ACTIONS(1335), - [aux_sym_log_level_token1] = ACTIONS(1335), - [aux_sym_log_verbose_token1] = ACTIONS(1335), - [aux_sym_macs_token1] = ACTIONS(1335), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1335), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1335), - [aux_sym_password_authentication_token1] = ACTIONS(1335), - [aux_sym_permit_local_command_token1] = ACTIONS(1335), - [aux_sym_permit_remote_open_token1] = ACTIONS(1335), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1335), - [aux_sym_port_token1] = ACTIONS(1335), - [aux_sym_preferred_authentications_token1] = ACTIONS(1335), - [aux_sym_protocol_token1] = ACTIONS(1335), - [aux_sym_proxy_command_token1] = ACTIONS(1335), - [aux_sym_proxy_jump_token1] = ACTIONS(1335), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1335), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1335), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1335), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1335), - [aux_sym_rekey_limit_token1] = ACTIONS(1335), - [aux_sym_remote_command_token1] = ACTIONS(1335), - [aux_sym_remote_forward_token1] = ACTIONS(1335), - [aux_sym_request_tty_token1] = ACTIONS(1335), - [aux_sym_required_rsa_size_token1] = ACTIONS(1335), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1335), - [aux_sym_security_key_provider_token1] = ACTIONS(1335), - [aux_sym_send_env_token1] = ACTIONS(1335), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1335), - [aux_sym_server_alive_interval_token1] = ACTIONS(1335), - [aux_sym_session_type_token1] = ACTIONS(1335), - [aux_sym_set_env_token1] = ACTIONS(1335), - [aux_sym_stdin_null_token1] = ACTIONS(1335), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1335), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1335), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1335), - [aux_sym_syslog_facility_token1] = ACTIONS(1335), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1335), - [aux_sym_keep_alive_token1] = ACTIONS(1335), - [aux_sym_tunnel_token1] = ACTIONS(1337), - [aux_sym_tunnel_device_token1] = ACTIONS(1335), - [aux_sym_update_host_keys_token1] = ACTIONS(1335), - [aux_sym_use_keychain_token1] = ACTIONS(1335), - [aux_sym_use_roaming_token1] = ACTIONS(1335), - [aux_sym_user_token1] = ACTIONS(1337), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1335), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1335), - [aux_sym_visual_host_key_token1] = ACTIONS(1335), - [aux_sym_xauth_location_token1] = ACTIONS(1335), + [ts_builtin_sym_end] = ACTIONS(674), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(676), + [aux_sym_match_token1] = ACTIONS(674), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(674), + [aux_sym_address_family_token1] = ACTIONS(674), + [aux_sym_batch_mode_token1] = ACTIONS(674), + [aux_sym_bind_address_token1] = ACTIONS(674), + [aux_sym_bind_interface_token1] = ACTIONS(674), + [aux_sym_canonical_domains_token1] = ACTIONS(674), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(674), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(674), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(674), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(674), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(674), + [aux_sym_certificate_file_token1] = ACTIONS(674), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(674), + [aux_sym_check_host_ip_token1] = ACTIONS(674), + [aux_sym_ciphers_token1] = ACTIONS(674), + [aux_sym_cipher_token1] = ACTIONS(676), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(674), + [aux_sym_compression_token1] = ACTIONS(674), + [aux_sym_connection_attempts_token1] = ACTIONS(674), + [aux_sym_connect_timeout_token1] = ACTIONS(674), + [aux_sym_control_master_token1] = ACTIONS(674), + [aux_sym_control_path_token1] = ACTIONS(674), + [aux_sym_control_persist_token1] = ACTIONS(674), + [aux_sym_dynamic_forward_token1] = ACTIONS(674), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(674), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(674), + [aux_sym_escape_char_token1] = ACTIONS(674), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(674), + [aux_sym_fingerprint_hash_token1] = ACTIONS(674), + [aux_sym_fork_after_authentication_token1] = ACTIONS(674), + [aux_sym_forward_agent_token1] = ACTIONS(674), + [aux_sym_forward_x11_token1] = ACTIONS(676), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(674), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(674), + [aux_sym_gateway_ports_token1] = ACTIONS(674), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(674), + [aux_sym_gssapi_authentication_token1] = ACTIONS(674), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(674), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(674), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(674), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(674), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(674), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(674), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(674), + [aux_sym_hash_known_hosts_token1] = ACTIONS(674), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(674), + [aux_sym_hostbased_authentication_token1] = ACTIONS(674), + [aux_sym_host_key_algorithms_token1] = ACTIONS(674), + [aux_sym_host_key_alias_token1] = ACTIONS(674), + [aux_sym_hostname_token1] = ACTIONS(674), + [aux_sym_identities_only_token1] = ACTIONS(674), + [aux_sym_identity_agent_token1] = ACTIONS(674), + [aux_sym_identity_file_token1] = ACTIONS(674), + [aux_sym_ignore_unknown_token1] = ACTIONS(674), + [aux_sym_include_token1] = ACTIONS(674), + [aux_sym_ip_qos_token1] = ACTIONS(674), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(674), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(674), + [aux_sym_kex_algorithms_token1] = ACTIONS(674), + [aux_sym_known_hosts_command_token1] = ACTIONS(674), + [aux_sym_local_command_token1] = ACTIONS(674), + [aux_sym_local_forward_token1] = ACTIONS(674), + [aux_sym_log_level_token1] = ACTIONS(674), + [aux_sym_log_verbose_token1] = ACTIONS(674), + [aux_sym_macs_token1] = ACTIONS(674), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(674), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(674), + [aux_sym_password_authentication_token1] = ACTIONS(674), + [aux_sym_permit_local_command_token1] = ACTIONS(674), + [aux_sym_permit_remote_open_token1] = ACTIONS(674), + [aux_sym_pkcs11_provider_token1] = ACTIONS(674), + [aux_sym_port_token1] = ACTIONS(674), + [aux_sym_preferred_authentications_token1] = ACTIONS(674), + [aux_sym_protocol_token1] = ACTIONS(674), + [aux_sym_proxy_command_token1] = ACTIONS(674), + [aux_sym_proxy_jump_token1] = ACTIONS(674), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(674), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(674), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(674), + [aux_sym_pubkey_authentication_token1] = ACTIONS(674), + [aux_sym_rekey_limit_token1] = ACTIONS(674), + [aux_sym_remote_command_token1] = ACTIONS(674), + [aux_sym_remote_forward_token1] = ACTIONS(674), + [aux_sym_request_tty_token1] = ACTIONS(674), + [aux_sym_required_rsa_size_token1] = ACTIONS(674), + [aux_sym_revoked_host_keys_token1] = ACTIONS(674), + [aux_sym_security_key_provider_token1] = ACTIONS(674), + [aux_sym_send_env_token1] = ACTIONS(674), + [aux_sym_server_alive_count_max_token1] = ACTIONS(674), + [aux_sym_server_alive_interval_token1] = ACTIONS(674), + [aux_sym_session_type_token1] = ACTIONS(674), + [aux_sym_set_env_token1] = ACTIONS(674), + [aux_sym_stdin_null_token1] = ACTIONS(674), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(674), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(674), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(674), + [aux_sym_syslog_facility_token1] = ACTIONS(674), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(674), + [aux_sym_keep_alive_token1] = ACTIONS(674), + [aux_sym_tunnel_token1] = ACTIONS(676), + [aux_sym_tunnel_device_token1] = ACTIONS(674), + [aux_sym_update_host_keys_token1] = ACTIONS(674), + [aux_sym_use_keychain_token1] = ACTIONS(674), + [aux_sym_use_roaming_token1] = ACTIONS(674), + [aux_sym_user_token1] = ACTIONS(676), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(674), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(674), + [aux_sym_visual_host_key_token1] = ACTIONS(674), + [aux_sym_xauth_location_token1] = ACTIONS(674), }, [713] = { - [ts_builtin_sym_end] = ACTIONS(1341), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1343), - [aux_sym_match_token1] = ACTIONS(1341), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1341), - [aux_sym_address_family_token1] = ACTIONS(1341), - [aux_sym_batch_mode_token1] = ACTIONS(1341), - [aux_sym_bind_address_token1] = ACTIONS(1341), - [aux_sym_bind_interface_token1] = ACTIONS(1341), - [aux_sym_canonical_domains_token1] = ACTIONS(1341), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1341), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1341), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1341), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1341), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1341), - [aux_sym_certificate_file_token1] = ACTIONS(1341), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1341), - [aux_sym_check_host_ip_token1] = ACTIONS(1341), - [aux_sym_ciphers_token1] = ACTIONS(1341), - [aux_sym_cipher_token1] = ACTIONS(1343), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1341), - [aux_sym_compression_token1] = ACTIONS(1341), - [aux_sym_connection_attempts_token1] = ACTIONS(1341), - [aux_sym_connect_timeout_token1] = ACTIONS(1341), - [aux_sym_control_master_token1] = ACTIONS(1341), - [aux_sym_control_path_token1] = ACTIONS(1341), - [aux_sym_control_persist_token1] = ACTIONS(1341), - [aux_sym_dynamic_forward_token1] = ACTIONS(1341), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1341), - [aux_sym_escape_char_token1] = ACTIONS(1341), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1341), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1341), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1341), - [aux_sym_forward_agent_token1] = ACTIONS(1341), - [aux_sym_forward_x11_token1] = ACTIONS(1343), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1341), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1341), - [aux_sym_gateway_ports_token1] = ACTIONS(1341), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1341), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1341), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1341), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1341), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1341), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1341), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1341), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1341), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1341), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1341), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1341), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1341), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1341), - [aux_sym_host_key_alias_token1] = ACTIONS(1341), - [aux_sym_hostname_token1] = ACTIONS(1341), - [aux_sym_identities_only_token1] = ACTIONS(1341), - [aux_sym_identity_agent_token1] = ACTIONS(1341), - [aux_sym_identity_file_token1] = ACTIONS(1341), - [aux_sym_ignore_unknown_token1] = ACTIONS(1341), - [aux_sym_include_token1] = ACTIONS(1341), - [aux_sym_ip_qos_token1] = ACTIONS(1341), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1341), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1341), - [aux_sym_kex_algorithms_token1] = ACTIONS(1341), - [aux_sym_known_hosts_command_token1] = ACTIONS(1341), - [aux_sym_local_command_token1] = ACTIONS(1341), - [aux_sym_local_forward_token1] = ACTIONS(1341), - [aux_sym_log_level_token1] = ACTIONS(1341), - [aux_sym_log_verbose_token1] = ACTIONS(1341), - [aux_sym_macs_token1] = ACTIONS(1341), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1341), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1341), - [aux_sym_password_authentication_token1] = ACTIONS(1341), - [aux_sym_permit_local_command_token1] = ACTIONS(1341), - [aux_sym_permit_remote_open_token1] = ACTIONS(1341), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1341), - [aux_sym_port_token1] = ACTIONS(1341), - [aux_sym_preferred_authentications_token1] = ACTIONS(1341), - [aux_sym_protocol_token1] = ACTIONS(1341), - [aux_sym_proxy_command_token1] = ACTIONS(1341), - [aux_sym_proxy_jump_token1] = ACTIONS(1341), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1341), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1341), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1341), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1341), - [aux_sym_rekey_limit_token1] = ACTIONS(1341), - [aux_sym_remote_command_token1] = ACTIONS(1341), - [aux_sym_remote_forward_token1] = ACTIONS(1341), - [aux_sym_request_tty_token1] = ACTIONS(1341), - [aux_sym_required_rsa_size_token1] = ACTIONS(1341), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1341), - [aux_sym_security_key_provider_token1] = ACTIONS(1341), - [aux_sym_send_env_token1] = ACTIONS(1341), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1341), - [aux_sym_server_alive_interval_token1] = ACTIONS(1341), - [aux_sym_session_type_token1] = ACTIONS(1341), - [aux_sym_set_env_token1] = ACTIONS(1341), - [aux_sym_stdin_null_token1] = ACTIONS(1341), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1341), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1341), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1341), - [aux_sym_syslog_facility_token1] = ACTIONS(1341), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1341), - [aux_sym_keep_alive_token1] = ACTIONS(1341), - [aux_sym_tunnel_token1] = ACTIONS(1343), - [aux_sym_tunnel_device_token1] = ACTIONS(1341), - [aux_sym_update_host_keys_token1] = ACTIONS(1341), - [aux_sym_use_keychain_token1] = ACTIONS(1341), - [aux_sym_use_roaming_token1] = ACTIONS(1341), - [aux_sym_user_token1] = ACTIONS(1343), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1341), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1341), - [aux_sym_visual_host_key_token1] = ACTIONS(1341), - [aux_sym_xauth_location_token1] = ACTIONS(1341), + [ts_builtin_sym_end] = ACTIONS(1544), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1546), + [aux_sym_match_token1] = ACTIONS(1544), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1544), + [aux_sym_address_family_token1] = ACTIONS(1544), + [aux_sym_batch_mode_token1] = ACTIONS(1544), + [aux_sym_bind_address_token1] = ACTIONS(1544), + [aux_sym_bind_interface_token1] = ACTIONS(1544), + [aux_sym_canonical_domains_token1] = ACTIONS(1544), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1544), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1544), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1544), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1544), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1544), + [aux_sym_certificate_file_token1] = ACTIONS(1544), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1544), + [aux_sym_check_host_ip_token1] = ACTIONS(1544), + [aux_sym_ciphers_token1] = ACTIONS(1544), + [aux_sym_cipher_token1] = ACTIONS(1546), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1544), + [aux_sym_compression_token1] = ACTIONS(1544), + [aux_sym_connection_attempts_token1] = ACTIONS(1544), + [aux_sym_connect_timeout_token1] = ACTIONS(1544), + [aux_sym_control_master_token1] = ACTIONS(1544), + [aux_sym_control_path_token1] = ACTIONS(1544), + [aux_sym_control_persist_token1] = ACTIONS(1544), + [aux_sym_dynamic_forward_token1] = ACTIONS(1544), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1544), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1544), + [aux_sym_escape_char_token1] = ACTIONS(1544), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1544), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1544), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1544), + [aux_sym_forward_agent_token1] = ACTIONS(1544), + [aux_sym_forward_x11_token1] = ACTIONS(1546), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1544), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1544), + [aux_sym_gateway_ports_token1] = ACTIONS(1544), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1544), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1544), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1544), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1544), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1544), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1544), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1544), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1544), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1544), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1544), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1544), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1544), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1544), + [aux_sym_host_key_alias_token1] = ACTIONS(1544), + [aux_sym_hostname_token1] = ACTIONS(1544), + [aux_sym_identities_only_token1] = ACTIONS(1544), + [aux_sym_identity_agent_token1] = ACTIONS(1544), + [aux_sym_identity_file_token1] = ACTIONS(1544), + [aux_sym_ignore_unknown_token1] = ACTIONS(1544), + [aux_sym_include_token1] = ACTIONS(1544), + [aux_sym_ip_qos_token1] = ACTIONS(1544), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1544), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1544), + [aux_sym_kex_algorithms_token1] = ACTIONS(1544), + [aux_sym_known_hosts_command_token1] = ACTIONS(1544), + [aux_sym_local_command_token1] = ACTIONS(1544), + [aux_sym_local_forward_token1] = ACTIONS(1544), + [aux_sym_log_level_token1] = ACTIONS(1544), + [aux_sym_log_verbose_token1] = ACTIONS(1544), + [aux_sym_macs_token1] = ACTIONS(1544), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1544), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1544), + [aux_sym_password_authentication_token1] = ACTIONS(1544), + [aux_sym_permit_local_command_token1] = ACTIONS(1544), + [aux_sym_permit_remote_open_token1] = ACTIONS(1544), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1544), + [aux_sym_port_token1] = ACTIONS(1544), + [aux_sym_preferred_authentications_token1] = ACTIONS(1544), + [aux_sym_protocol_token1] = ACTIONS(1544), + [aux_sym_proxy_command_token1] = ACTIONS(1544), + [aux_sym_proxy_jump_token1] = ACTIONS(1544), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1544), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1544), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1544), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1544), + [aux_sym_rekey_limit_token1] = ACTIONS(1544), + [aux_sym_remote_command_token1] = ACTIONS(1544), + [aux_sym_remote_forward_token1] = ACTIONS(1544), + [aux_sym_request_tty_token1] = ACTIONS(1544), + [aux_sym_required_rsa_size_token1] = ACTIONS(1544), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1544), + [aux_sym_security_key_provider_token1] = ACTIONS(1544), + [aux_sym_send_env_token1] = ACTIONS(1544), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1544), + [aux_sym_server_alive_interval_token1] = ACTIONS(1544), + [aux_sym_session_type_token1] = ACTIONS(1544), + [aux_sym_set_env_token1] = ACTIONS(1544), + [aux_sym_stdin_null_token1] = ACTIONS(1544), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1544), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1544), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1544), + [aux_sym_syslog_facility_token1] = ACTIONS(1544), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1544), + [aux_sym_keep_alive_token1] = ACTIONS(1544), + [aux_sym_tunnel_token1] = ACTIONS(1546), + [aux_sym_tunnel_device_token1] = ACTIONS(1544), + [aux_sym_update_host_keys_token1] = ACTIONS(1544), + [aux_sym_use_keychain_token1] = ACTIONS(1544), + [aux_sym_use_roaming_token1] = ACTIONS(1544), + [aux_sym_user_token1] = ACTIONS(1546), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1544), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1544), + [aux_sym_visual_host_key_token1] = ACTIONS(1544), + [aux_sym_xauth_location_token1] = ACTIONS(1544), }, [714] = { - [ts_builtin_sym_end] = ACTIONS(1791), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1793), - [aux_sym_match_token1] = ACTIONS(1791), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1791), - [aux_sym_address_family_token1] = ACTIONS(1791), - [aux_sym_batch_mode_token1] = ACTIONS(1791), - [aux_sym_bind_address_token1] = ACTIONS(1791), - [aux_sym_bind_interface_token1] = ACTIONS(1791), - [aux_sym_canonical_domains_token1] = ACTIONS(1791), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1791), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1791), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1791), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1791), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1791), - [aux_sym_certificate_file_token1] = ACTIONS(1791), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1791), - [aux_sym_check_host_ip_token1] = ACTIONS(1791), - [aux_sym_ciphers_token1] = ACTIONS(1791), - [aux_sym_cipher_token1] = ACTIONS(1793), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1791), - [aux_sym_compression_token1] = ACTIONS(1791), - [aux_sym_connection_attempts_token1] = ACTIONS(1791), - [aux_sym_connect_timeout_token1] = ACTIONS(1791), - [aux_sym_control_master_token1] = ACTIONS(1791), - [aux_sym_control_path_token1] = ACTIONS(1791), - [aux_sym_control_persist_token1] = ACTIONS(1791), - [aux_sym_dynamic_forward_token1] = ACTIONS(1791), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1791), - [aux_sym_escape_char_token1] = ACTIONS(1791), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1791), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1791), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1791), - [aux_sym_forward_agent_token1] = ACTIONS(1791), - [aux_sym_forward_x11_token1] = ACTIONS(1793), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1791), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1791), - [aux_sym_gateway_ports_token1] = ACTIONS(1791), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1791), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1791), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1791), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1791), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1791), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1791), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1791), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1791), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1791), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1791), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1791), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1791), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1791), - [aux_sym_host_key_alias_token1] = ACTIONS(1791), - [aux_sym_hostname_token1] = ACTIONS(1791), - [aux_sym_identities_only_token1] = ACTIONS(1791), - [aux_sym_identity_agent_token1] = ACTIONS(1791), - [aux_sym_identity_file_token1] = ACTIONS(1791), - [aux_sym_ignore_unknown_token1] = ACTIONS(1791), - [aux_sym_include_token1] = ACTIONS(1791), - [aux_sym_ip_qos_token1] = ACTIONS(1791), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1791), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1791), - [aux_sym_kex_algorithms_token1] = ACTIONS(1791), - [aux_sym_known_hosts_command_token1] = ACTIONS(1791), - [aux_sym_local_command_token1] = ACTIONS(1791), - [aux_sym_local_forward_token1] = ACTIONS(1791), - [aux_sym_log_level_token1] = ACTIONS(1791), - [aux_sym_log_verbose_token1] = ACTIONS(1791), - [aux_sym_macs_token1] = ACTIONS(1791), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1791), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1791), - [aux_sym_password_authentication_token1] = ACTIONS(1791), - [aux_sym_permit_local_command_token1] = ACTIONS(1791), - [aux_sym_permit_remote_open_token1] = ACTIONS(1791), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1791), - [aux_sym_port_token1] = ACTIONS(1791), - [aux_sym_preferred_authentications_token1] = ACTIONS(1791), - [aux_sym_protocol_token1] = ACTIONS(1791), - [aux_sym_proxy_command_token1] = ACTIONS(1791), - [aux_sym_proxy_jump_token1] = ACTIONS(1791), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1791), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1791), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1791), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1791), - [aux_sym_rekey_limit_token1] = ACTIONS(1791), - [aux_sym_remote_command_token1] = ACTIONS(1791), - [aux_sym_remote_forward_token1] = ACTIONS(1791), - [aux_sym_request_tty_token1] = ACTIONS(1791), - [aux_sym_required_rsa_size_token1] = ACTIONS(1791), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1791), - [aux_sym_security_key_provider_token1] = ACTIONS(1791), - [aux_sym_send_env_token1] = ACTIONS(1791), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1791), - [aux_sym_server_alive_interval_token1] = ACTIONS(1791), - [aux_sym_session_type_token1] = ACTIONS(1791), - [aux_sym_set_env_token1] = ACTIONS(1791), - [aux_sym_stdin_null_token1] = ACTIONS(1791), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1791), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1791), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1791), - [aux_sym_syslog_facility_token1] = ACTIONS(1791), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1791), - [aux_sym_keep_alive_token1] = ACTIONS(1791), - [aux_sym_tunnel_token1] = ACTIONS(1793), - [aux_sym_tunnel_device_token1] = ACTIONS(1791), - [aux_sym_update_host_keys_token1] = ACTIONS(1791), - [aux_sym_use_keychain_token1] = ACTIONS(1791), - [aux_sym_use_roaming_token1] = ACTIONS(1791), - [aux_sym_user_token1] = ACTIONS(1793), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1791), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1791), - [aux_sym_visual_host_key_token1] = ACTIONS(1791), - [aux_sym_xauth_location_token1] = ACTIONS(1791), + [ts_builtin_sym_end] = ACTIONS(1820), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1822), + [aux_sym_match_token1] = ACTIONS(1820), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1820), + [aux_sym_address_family_token1] = ACTIONS(1820), + [aux_sym_batch_mode_token1] = ACTIONS(1820), + [aux_sym_bind_address_token1] = ACTIONS(1820), + [aux_sym_bind_interface_token1] = ACTIONS(1820), + [aux_sym_canonical_domains_token1] = ACTIONS(1820), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1820), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1820), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1820), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1820), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1820), + [aux_sym_certificate_file_token1] = ACTIONS(1820), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1820), + [aux_sym_check_host_ip_token1] = ACTIONS(1820), + [aux_sym_ciphers_token1] = ACTIONS(1820), + [aux_sym_cipher_token1] = ACTIONS(1822), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1820), + [aux_sym_compression_token1] = ACTIONS(1820), + [aux_sym_connection_attempts_token1] = ACTIONS(1820), + [aux_sym_connect_timeout_token1] = ACTIONS(1820), + [aux_sym_control_master_token1] = ACTIONS(1820), + [aux_sym_control_path_token1] = ACTIONS(1820), + [aux_sym_control_persist_token1] = ACTIONS(1820), + [aux_sym_dynamic_forward_token1] = ACTIONS(1820), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1820), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1820), + [aux_sym_escape_char_token1] = ACTIONS(1820), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1820), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1820), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1820), + [aux_sym_forward_agent_token1] = ACTIONS(1820), + [aux_sym_forward_x11_token1] = ACTIONS(1822), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1820), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1820), + [aux_sym_gateway_ports_token1] = ACTIONS(1820), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1820), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1820), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1820), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1820), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1820), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1820), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1820), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1820), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1820), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1820), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1820), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1820), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1820), + [aux_sym_host_key_alias_token1] = ACTIONS(1820), + [aux_sym_hostname_token1] = ACTIONS(1820), + [aux_sym_identities_only_token1] = ACTIONS(1820), + [aux_sym_identity_agent_token1] = ACTIONS(1820), + [aux_sym_identity_file_token1] = ACTIONS(1820), + [aux_sym_ignore_unknown_token1] = ACTIONS(1820), + [aux_sym_include_token1] = ACTIONS(1820), + [aux_sym_ip_qos_token1] = ACTIONS(1820), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1820), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1820), + [aux_sym_kex_algorithms_token1] = ACTIONS(1820), + [aux_sym_known_hosts_command_token1] = ACTIONS(1820), + [aux_sym_local_command_token1] = ACTIONS(1820), + [aux_sym_local_forward_token1] = ACTIONS(1820), + [aux_sym_log_level_token1] = ACTIONS(1820), + [aux_sym_log_verbose_token1] = ACTIONS(1820), + [aux_sym_macs_token1] = ACTIONS(1820), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1820), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1820), + [aux_sym_password_authentication_token1] = ACTIONS(1820), + [aux_sym_permit_local_command_token1] = ACTIONS(1820), + [aux_sym_permit_remote_open_token1] = ACTIONS(1820), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1820), + [aux_sym_port_token1] = ACTIONS(1820), + [aux_sym_preferred_authentications_token1] = ACTIONS(1820), + [aux_sym_protocol_token1] = ACTIONS(1820), + [aux_sym_proxy_command_token1] = ACTIONS(1820), + [aux_sym_proxy_jump_token1] = ACTIONS(1820), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1820), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1820), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1820), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1820), + [aux_sym_rekey_limit_token1] = ACTIONS(1820), + [aux_sym_remote_command_token1] = ACTIONS(1820), + [aux_sym_remote_forward_token1] = ACTIONS(1820), + [aux_sym_request_tty_token1] = ACTIONS(1820), + [aux_sym_required_rsa_size_token1] = ACTIONS(1820), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1820), + [aux_sym_security_key_provider_token1] = ACTIONS(1820), + [aux_sym_send_env_token1] = ACTIONS(1820), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1820), + [aux_sym_server_alive_interval_token1] = ACTIONS(1820), + [aux_sym_session_type_token1] = ACTIONS(1820), + [aux_sym_set_env_token1] = ACTIONS(1820), + [aux_sym_stdin_null_token1] = ACTIONS(1820), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1820), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1820), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1820), + [aux_sym_syslog_facility_token1] = ACTIONS(1820), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1820), + [aux_sym_keep_alive_token1] = ACTIONS(1820), + [aux_sym_tunnel_token1] = ACTIONS(1822), + [aux_sym_tunnel_device_token1] = ACTIONS(1820), + [aux_sym_update_host_keys_token1] = ACTIONS(1820), + [aux_sym_use_keychain_token1] = ACTIONS(1820), + [aux_sym_use_roaming_token1] = ACTIONS(1820), + [aux_sym_user_token1] = ACTIONS(1822), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1820), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1820), + [aux_sym_visual_host_key_token1] = ACTIONS(1820), + [aux_sym_xauth_location_token1] = ACTIONS(1820), }, [715] = { - [ts_builtin_sym_end] = ACTIONS(1347), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1349), - [aux_sym_match_token1] = ACTIONS(1347), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1347), - [aux_sym_address_family_token1] = ACTIONS(1347), - [aux_sym_batch_mode_token1] = ACTIONS(1347), - [aux_sym_bind_address_token1] = ACTIONS(1347), - [aux_sym_bind_interface_token1] = ACTIONS(1347), - [aux_sym_canonical_domains_token1] = ACTIONS(1347), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1347), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1347), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1347), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1347), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1347), - [aux_sym_certificate_file_token1] = ACTIONS(1347), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1347), - [aux_sym_check_host_ip_token1] = ACTIONS(1347), - [aux_sym_ciphers_token1] = ACTIONS(1347), - [aux_sym_cipher_token1] = ACTIONS(1349), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1347), - [aux_sym_compression_token1] = ACTIONS(1347), - [aux_sym_connection_attempts_token1] = ACTIONS(1347), - [aux_sym_connect_timeout_token1] = ACTIONS(1347), - [aux_sym_control_master_token1] = ACTIONS(1347), - [aux_sym_control_path_token1] = ACTIONS(1347), - [aux_sym_control_persist_token1] = ACTIONS(1347), - [aux_sym_dynamic_forward_token1] = ACTIONS(1347), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1347), - [aux_sym_escape_char_token1] = ACTIONS(1347), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1347), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1347), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1347), - [aux_sym_forward_agent_token1] = ACTIONS(1347), - [aux_sym_forward_x11_token1] = ACTIONS(1349), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1347), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1347), - [aux_sym_gateway_ports_token1] = ACTIONS(1347), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1347), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1347), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1347), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1347), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1347), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1347), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1347), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1347), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1347), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1347), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1347), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1347), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1347), - [aux_sym_host_key_alias_token1] = ACTIONS(1347), - [aux_sym_hostname_token1] = ACTIONS(1347), - [aux_sym_identities_only_token1] = ACTIONS(1347), - [aux_sym_identity_agent_token1] = ACTIONS(1347), - [aux_sym_identity_file_token1] = ACTIONS(1347), - [aux_sym_ignore_unknown_token1] = ACTIONS(1347), - [aux_sym_include_token1] = ACTIONS(1347), - [aux_sym_ip_qos_token1] = ACTIONS(1347), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1347), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1347), - [aux_sym_kex_algorithms_token1] = ACTIONS(1347), - [aux_sym_known_hosts_command_token1] = ACTIONS(1347), - [aux_sym_local_command_token1] = ACTIONS(1347), - [aux_sym_local_forward_token1] = ACTIONS(1347), - [aux_sym_log_level_token1] = ACTIONS(1347), - [aux_sym_log_verbose_token1] = ACTIONS(1347), - [aux_sym_macs_token1] = ACTIONS(1347), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1347), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1347), - [aux_sym_password_authentication_token1] = ACTIONS(1347), - [aux_sym_permit_local_command_token1] = ACTIONS(1347), - [aux_sym_permit_remote_open_token1] = ACTIONS(1347), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1347), - [aux_sym_port_token1] = ACTIONS(1347), - [aux_sym_preferred_authentications_token1] = ACTIONS(1347), - [aux_sym_protocol_token1] = ACTIONS(1347), - [aux_sym_proxy_command_token1] = ACTIONS(1347), - [aux_sym_proxy_jump_token1] = ACTIONS(1347), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1347), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1347), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1347), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1347), - [aux_sym_rekey_limit_token1] = ACTIONS(1347), - [aux_sym_remote_command_token1] = ACTIONS(1347), - [aux_sym_remote_forward_token1] = ACTIONS(1347), - [aux_sym_request_tty_token1] = ACTIONS(1347), - [aux_sym_required_rsa_size_token1] = ACTIONS(1347), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1347), - [aux_sym_security_key_provider_token1] = ACTIONS(1347), - [aux_sym_send_env_token1] = ACTIONS(1347), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1347), - [aux_sym_server_alive_interval_token1] = ACTIONS(1347), - [aux_sym_session_type_token1] = ACTIONS(1347), - [aux_sym_set_env_token1] = ACTIONS(1347), - [aux_sym_stdin_null_token1] = ACTIONS(1347), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1347), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1347), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1347), - [aux_sym_syslog_facility_token1] = ACTIONS(1347), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1347), - [aux_sym_keep_alive_token1] = ACTIONS(1347), - [aux_sym_tunnel_token1] = ACTIONS(1349), - [aux_sym_tunnel_device_token1] = ACTIONS(1347), - [aux_sym_update_host_keys_token1] = ACTIONS(1347), - [aux_sym_use_keychain_token1] = ACTIONS(1347), - [aux_sym_use_roaming_token1] = ACTIONS(1347), - [aux_sym_user_token1] = ACTIONS(1349), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1347), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1347), - [aux_sym_visual_host_key_token1] = ACTIONS(1347), - [aux_sym_xauth_location_token1] = ACTIONS(1347), + [ts_builtin_sym_end] = ACTIONS(812), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(814), + [aux_sym_match_token1] = ACTIONS(812), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(812), + [aux_sym_address_family_token1] = ACTIONS(812), + [aux_sym_batch_mode_token1] = ACTIONS(812), + [aux_sym_bind_address_token1] = ACTIONS(812), + [aux_sym_bind_interface_token1] = ACTIONS(812), + [aux_sym_canonical_domains_token1] = ACTIONS(812), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(812), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(812), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(812), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(812), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(812), + [aux_sym_certificate_file_token1] = ACTIONS(812), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(812), + [aux_sym_check_host_ip_token1] = ACTIONS(812), + [aux_sym_ciphers_token1] = ACTIONS(812), + [aux_sym_cipher_token1] = ACTIONS(814), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(812), + [aux_sym_compression_token1] = ACTIONS(812), + [aux_sym_connection_attempts_token1] = ACTIONS(812), + [aux_sym_connect_timeout_token1] = ACTIONS(812), + [aux_sym_control_master_token1] = ACTIONS(812), + [aux_sym_control_path_token1] = ACTIONS(812), + [aux_sym_control_persist_token1] = ACTIONS(812), + [aux_sym_dynamic_forward_token1] = ACTIONS(812), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(812), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(812), + [aux_sym_escape_char_token1] = ACTIONS(812), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(812), + [aux_sym_fingerprint_hash_token1] = ACTIONS(812), + [aux_sym_fork_after_authentication_token1] = ACTIONS(812), + [aux_sym_forward_agent_token1] = ACTIONS(812), + [aux_sym_forward_x11_token1] = ACTIONS(814), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(812), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(812), + [aux_sym_gateway_ports_token1] = ACTIONS(812), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(812), + [aux_sym_gssapi_authentication_token1] = ACTIONS(812), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(812), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(812), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(812), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(812), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(812), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(812), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(812), + [aux_sym_hash_known_hosts_token1] = ACTIONS(812), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(812), + [aux_sym_hostbased_authentication_token1] = ACTIONS(812), + [aux_sym_host_key_algorithms_token1] = ACTIONS(812), + [aux_sym_host_key_alias_token1] = ACTIONS(812), + [aux_sym_hostname_token1] = ACTIONS(812), + [aux_sym_identities_only_token1] = ACTIONS(812), + [aux_sym_identity_agent_token1] = ACTIONS(812), + [aux_sym_identity_file_token1] = ACTIONS(812), + [aux_sym_ignore_unknown_token1] = ACTIONS(812), + [aux_sym_include_token1] = ACTIONS(812), + [aux_sym_ip_qos_token1] = ACTIONS(812), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(812), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(812), + [aux_sym_kex_algorithms_token1] = ACTIONS(812), + [aux_sym_known_hosts_command_token1] = ACTIONS(812), + [aux_sym_local_command_token1] = ACTIONS(812), + [aux_sym_local_forward_token1] = ACTIONS(812), + [aux_sym_log_level_token1] = ACTIONS(812), + [aux_sym_log_verbose_token1] = ACTIONS(812), + [aux_sym_macs_token1] = ACTIONS(812), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(812), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(812), + [aux_sym_password_authentication_token1] = ACTIONS(812), + [aux_sym_permit_local_command_token1] = ACTIONS(812), + [aux_sym_permit_remote_open_token1] = ACTIONS(812), + [aux_sym_pkcs11_provider_token1] = ACTIONS(812), + [aux_sym_port_token1] = ACTIONS(812), + [aux_sym_preferred_authentications_token1] = ACTIONS(812), + [aux_sym_protocol_token1] = ACTIONS(812), + [aux_sym_proxy_command_token1] = ACTIONS(812), + [aux_sym_proxy_jump_token1] = ACTIONS(812), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(812), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(812), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(812), + [aux_sym_pubkey_authentication_token1] = ACTIONS(812), + [aux_sym_rekey_limit_token1] = ACTIONS(812), + [aux_sym_remote_command_token1] = ACTIONS(812), + [aux_sym_remote_forward_token1] = ACTIONS(812), + [aux_sym_request_tty_token1] = ACTIONS(812), + [aux_sym_required_rsa_size_token1] = ACTIONS(812), + [aux_sym_revoked_host_keys_token1] = ACTIONS(812), + [aux_sym_security_key_provider_token1] = ACTIONS(812), + [aux_sym_send_env_token1] = ACTIONS(812), + [aux_sym_server_alive_count_max_token1] = ACTIONS(812), + [aux_sym_server_alive_interval_token1] = ACTIONS(812), + [aux_sym_session_type_token1] = ACTIONS(812), + [aux_sym_set_env_token1] = ACTIONS(812), + [aux_sym_stdin_null_token1] = ACTIONS(812), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(812), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(812), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(812), + [aux_sym_syslog_facility_token1] = ACTIONS(812), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(812), + [aux_sym_keep_alive_token1] = ACTIONS(812), + [aux_sym_tunnel_token1] = ACTIONS(814), + [aux_sym_tunnel_device_token1] = ACTIONS(812), + [aux_sym_update_host_keys_token1] = ACTIONS(812), + [aux_sym_use_keychain_token1] = ACTIONS(812), + [aux_sym_use_roaming_token1] = ACTIONS(812), + [aux_sym_user_token1] = ACTIONS(814), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(812), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(812), + [aux_sym_visual_host_key_token1] = ACTIONS(812), + [aux_sym_xauth_location_token1] = ACTIONS(812), }, [716] = { - [ts_builtin_sym_end] = ACTIONS(1353), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1355), - [aux_sym_match_token1] = ACTIONS(1353), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1353), - [aux_sym_address_family_token1] = ACTIONS(1353), - [aux_sym_batch_mode_token1] = ACTIONS(1353), - [aux_sym_bind_address_token1] = ACTIONS(1353), - [aux_sym_bind_interface_token1] = ACTIONS(1353), - [aux_sym_canonical_domains_token1] = ACTIONS(1353), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1353), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1353), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1353), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1353), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1353), - [aux_sym_certificate_file_token1] = ACTIONS(1353), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1353), - [aux_sym_check_host_ip_token1] = ACTIONS(1353), - [aux_sym_ciphers_token1] = ACTIONS(1353), - [aux_sym_cipher_token1] = ACTIONS(1355), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1353), - [aux_sym_compression_token1] = ACTIONS(1353), - [aux_sym_connection_attempts_token1] = ACTIONS(1353), - [aux_sym_connect_timeout_token1] = ACTIONS(1353), - [aux_sym_control_master_token1] = ACTIONS(1353), - [aux_sym_control_path_token1] = ACTIONS(1353), - [aux_sym_control_persist_token1] = ACTIONS(1353), - [aux_sym_dynamic_forward_token1] = ACTIONS(1353), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1353), - [aux_sym_escape_char_token1] = ACTIONS(1353), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1353), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1353), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1353), - [aux_sym_forward_agent_token1] = ACTIONS(1353), - [aux_sym_forward_x11_token1] = ACTIONS(1355), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1353), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1353), - [aux_sym_gateway_ports_token1] = ACTIONS(1353), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1353), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1353), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1353), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1353), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1353), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1353), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1353), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1353), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1353), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1353), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1353), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1353), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1353), - [aux_sym_host_key_alias_token1] = ACTIONS(1353), - [aux_sym_hostname_token1] = ACTIONS(1353), - [aux_sym_identities_only_token1] = ACTIONS(1353), - [aux_sym_identity_agent_token1] = ACTIONS(1353), - [aux_sym_identity_file_token1] = ACTIONS(1353), - [aux_sym_ignore_unknown_token1] = ACTIONS(1353), - [aux_sym_include_token1] = ACTIONS(1353), - [aux_sym_ip_qos_token1] = ACTIONS(1353), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1353), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1353), - [aux_sym_kex_algorithms_token1] = ACTIONS(1353), - [aux_sym_known_hosts_command_token1] = ACTIONS(1353), - [aux_sym_local_command_token1] = ACTIONS(1353), - [aux_sym_local_forward_token1] = ACTIONS(1353), - [aux_sym_log_level_token1] = ACTIONS(1353), - [aux_sym_log_verbose_token1] = ACTIONS(1353), - [aux_sym_macs_token1] = ACTIONS(1353), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1353), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1353), - [aux_sym_password_authentication_token1] = ACTIONS(1353), - [aux_sym_permit_local_command_token1] = ACTIONS(1353), - [aux_sym_permit_remote_open_token1] = ACTIONS(1353), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1353), - [aux_sym_port_token1] = ACTIONS(1353), - [aux_sym_preferred_authentications_token1] = ACTIONS(1353), - [aux_sym_protocol_token1] = ACTIONS(1353), - [aux_sym_proxy_command_token1] = ACTIONS(1353), - [aux_sym_proxy_jump_token1] = ACTIONS(1353), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1353), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1353), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1353), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1353), - [aux_sym_rekey_limit_token1] = ACTIONS(1353), - [aux_sym_remote_command_token1] = ACTIONS(1353), - [aux_sym_remote_forward_token1] = ACTIONS(1353), - [aux_sym_request_tty_token1] = ACTIONS(1353), - [aux_sym_required_rsa_size_token1] = ACTIONS(1353), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1353), - [aux_sym_security_key_provider_token1] = ACTIONS(1353), - [aux_sym_send_env_token1] = ACTIONS(1353), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1353), - [aux_sym_server_alive_interval_token1] = ACTIONS(1353), - [aux_sym_session_type_token1] = ACTIONS(1353), - [aux_sym_set_env_token1] = ACTIONS(1353), - [aux_sym_stdin_null_token1] = ACTIONS(1353), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1353), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1353), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1353), - [aux_sym_syslog_facility_token1] = ACTIONS(1353), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1353), - [aux_sym_keep_alive_token1] = ACTIONS(1353), - [aux_sym_tunnel_token1] = ACTIONS(1355), - [aux_sym_tunnel_device_token1] = ACTIONS(1353), - [aux_sym_update_host_keys_token1] = ACTIONS(1353), - [aux_sym_use_keychain_token1] = ACTIONS(1353), - [aux_sym_use_roaming_token1] = ACTIONS(1353), - [aux_sym_user_token1] = ACTIONS(1355), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1353), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1353), - [aux_sym_visual_host_key_token1] = ACTIONS(1353), - [aux_sym_xauth_location_token1] = ACTIONS(1353), + [ts_builtin_sym_end] = ACTIONS(1550), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1552), + [aux_sym_match_token1] = ACTIONS(1550), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1550), + [aux_sym_address_family_token1] = ACTIONS(1550), + [aux_sym_batch_mode_token1] = ACTIONS(1550), + [aux_sym_bind_address_token1] = ACTIONS(1550), + [aux_sym_bind_interface_token1] = ACTIONS(1550), + [aux_sym_canonical_domains_token1] = ACTIONS(1550), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1550), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1550), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1550), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1550), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1550), + [aux_sym_certificate_file_token1] = ACTIONS(1550), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1550), + [aux_sym_check_host_ip_token1] = ACTIONS(1550), + [aux_sym_ciphers_token1] = ACTIONS(1550), + [aux_sym_cipher_token1] = ACTIONS(1552), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1550), + [aux_sym_compression_token1] = ACTIONS(1550), + [aux_sym_connection_attempts_token1] = ACTIONS(1550), + [aux_sym_connect_timeout_token1] = ACTIONS(1550), + [aux_sym_control_master_token1] = ACTIONS(1550), + [aux_sym_control_path_token1] = ACTIONS(1550), + [aux_sym_control_persist_token1] = ACTIONS(1550), + [aux_sym_dynamic_forward_token1] = ACTIONS(1550), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1550), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1550), + [aux_sym_escape_char_token1] = ACTIONS(1550), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1550), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1550), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1550), + [aux_sym_forward_agent_token1] = ACTIONS(1550), + [aux_sym_forward_x11_token1] = ACTIONS(1552), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1550), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1550), + [aux_sym_gateway_ports_token1] = ACTIONS(1550), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1550), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1550), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1550), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1550), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1550), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1550), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1550), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1550), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1550), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1550), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1550), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1550), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1550), + [aux_sym_host_key_alias_token1] = ACTIONS(1550), + [aux_sym_hostname_token1] = ACTIONS(1550), + [aux_sym_identities_only_token1] = ACTIONS(1550), + [aux_sym_identity_agent_token1] = ACTIONS(1550), + [aux_sym_identity_file_token1] = ACTIONS(1550), + [aux_sym_ignore_unknown_token1] = ACTIONS(1550), + [aux_sym_include_token1] = ACTIONS(1550), + [aux_sym_ip_qos_token1] = ACTIONS(1550), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1550), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1550), + [aux_sym_kex_algorithms_token1] = ACTIONS(1550), + [aux_sym_known_hosts_command_token1] = ACTIONS(1550), + [aux_sym_local_command_token1] = ACTIONS(1550), + [aux_sym_local_forward_token1] = ACTIONS(1550), + [aux_sym_log_level_token1] = ACTIONS(1550), + [aux_sym_log_verbose_token1] = ACTIONS(1550), + [aux_sym_macs_token1] = ACTIONS(1550), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1550), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1550), + [aux_sym_password_authentication_token1] = ACTIONS(1550), + [aux_sym_permit_local_command_token1] = ACTIONS(1550), + [aux_sym_permit_remote_open_token1] = ACTIONS(1550), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1550), + [aux_sym_port_token1] = ACTIONS(1550), + [aux_sym_preferred_authentications_token1] = ACTIONS(1550), + [aux_sym_protocol_token1] = ACTIONS(1550), + [aux_sym_proxy_command_token1] = ACTIONS(1550), + [aux_sym_proxy_jump_token1] = ACTIONS(1550), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1550), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1550), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1550), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1550), + [aux_sym_rekey_limit_token1] = ACTIONS(1550), + [aux_sym_remote_command_token1] = ACTIONS(1550), + [aux_sym_remote_forward_token1] = ACTIONS(1550), + [aux_sym_request_tty_token1] = ACTIONS(1550), + [aux_sym_required_rsa_size_token1] = ACTIONS(1550), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1550), + [aux_sym_security_key_provider_token1] = ACTIONS(1550), + [aux_sym_send_env_token1] = ACTIONS(1550), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1550), + [aux_sym_server_alive_interval_token1] = ACTIONS(1550), + [aux_sym_session_type_token1] = ACTIONS(1550), + [aux_sym_set_env_token1] = ACTIONS(1550), + [aux_sym_stdin_null_token1] = ACTIONS(1550), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1550), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1550), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1550), + [aux_sym_syslog_facility_token1] = ACTIONS(1550), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1550), + [aux_sym_keep_alive_token1] = ACTIONS(1550), + [aux_sym_tunnel_token1] = ACTIONS(1552), + [aux_sym_tunnel_device_token1] = ACTIONS(1550), + [aux_sym_update_host_keys_token1] = ACTIONS(1550), + [aux_sym_use_keychain_token1] = ACTIONS(1550), + [aux_sym_use_roaming_token1] = ACTIONS(1550), + [aux_sym_user_token1] = ACTIONS(1552), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1550), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1550), + [aux_sym_visual_host_key_token1] = ACTIONS(1550), + [aux_sym_xauth_location_token1] = ACTIONS(1550), }, [717] = { - [ts_builtin_sym_end] = ACTIONS(1785), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1787), - [aux_sym_match_token1] = ACTIONS(1785), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1785), - [aux_sym_address_family_token1] = ACTIONS(1785), - [aux_sym_batch_mode_token1] = ACTIONS(1785), - [aux_sym_bind_address_token1] = ACTIONS(1785), - [aux_sym_bind_interface_token1] = ACTIONS(1785), - [aux_sym_canonical_domains_token1] = ACTIONS(1785), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1785), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1785), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1785), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1785), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1785), - [aux_sym_certificate_file_token1] = ACTIONS(1785), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1785), - [aux_sym_check_host_ip_token1] = ACTIONS(1785), - [aux_sym_ciphers_token1] = ACTIONS(1785), - [aux_sym_cipher_token1] = ACTIONS(1787), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1785), - [aux_sym_compression_token1] = ACTIONS(1785), - [aux_sym_connection_attempts_token1] = ACTIONS(1785), - [aux_sym_connect_timeout_token1] = ACTIONS(1785), - [aux_sym_control_master_token1] = ACTIONS(1785), - [aux_sym_control_path_token1] = ACTIONS(1785), - [aux_sym_control_persist_token1] = ACTIONS(1785), - [aux_sym_dynamic_forward_token1] = ACTIONS(1785), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1785), - [aux_sym_escape_char_token1] = ACTIONS(1785), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1785), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1785), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1785), - [aux_sym_forward_agent_token1] = ACTIONS(1785), - [aux_sym_forward_x11_token1] = ACTIONS(1787), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1785), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1785), - [aux_sym_gateway_ports_token1] = ACTIONS(1785), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1785), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1785), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1785), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1785), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1785), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1785), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1785), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1785), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1785), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1785), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1785), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1785), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1785), - [aux_sym_host_key_alias_token1] = ACTIONS(1785), - [aux_sym_hostname_token1] = ACTIONS(1785), - [aux_sym_identities_only_token1] = ACTIONS(1785), - [aux_sym_identity_agent_token1] = ACTIONS(1785), - [aux_sym_identity_file_token1] = ACTIONS(1785), - [aux_sym_ignore_unknown_token1] = ACTIONS(1785), - [aux_sym_include_token1] = ACTIONS(1785), - [aux_sym_ip_qos_token1] = ACTIONS(1785), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1785), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1785), - [aux_sym_kex_algorithms_token1] = ACTIONS(1785), - [aux_sym_known_hosts_command_token1] = ACTIONS(1785), - [aux_sym_local_command_token1] = ACTIONS(1785), - [aux_sym_local_forward_token1] = ACTIONS(1785), - [aux_sym_log_level_token1] = ACTIONS(1785), - [aux_sym_log_verbose_token1] = ACTIONS(1785), - [aux_sym_macs_token1] = ACTIONS(1785), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1785), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1785), - [aux_sym_password_authentication_token1] = ACTIONS(1785), - [aux_sym_permit_local_command_token1] = ACTIONS(1785), - [aux_sym_permit_remote_open_token1] = ACTIONS(1785), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1785), - [aux_sym_port_token1] = ACTIONS(1785), - [aux_sym_preferred_authentications_token1] = ACTIONS(1785), - [aux_sym_protocol_token1] = ACTIONS(1785), - [aux_sym_proxy_command_token1] = ACTIONS(1785), - [aux_sym_proxy_jump_token1] = ACTIONS(1785), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1785), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1785), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1785), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1785), - [aux_sym_rekey_limit_token1] = ACTIONS(1785), - [aux_sym_remote_command_token1] = ACTIONS(1785), - [aux_sym_remote_forward_token1] = ACTIONS(1785), - [aux_sym_request_tty_token1] = ACTIONS(1785), - [aux_sym_required_rsa_size_token1] = ACTIONS(1785), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1785), - [aux_sym_security_key_provider_token1] = ACTIONS(1785), - [aux_sym_send_env_token1] = ACTIONS(1785), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1785), - [aux_sym_server_alive_interval_token1] = ACTIONS(1785), - [aux_sym_session_type_token1] = ACTIONS(1785), - [aux_sym_set_env_token1] = ACTIONS(1785), - [aux_sym_stdin_null_token1] = ACTIONS(1785), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1785), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1785), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1785), - [aux_sym_syslog_facility_token1] = ACTIONS(1785), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1785), - [aux_sym_keep_alive_token1] = ACTIONS(1785), - [aux_sym_tunnel_token1] = ACTIONS(1787), - [aux_sym_tunnel_device_token1] = ACTIONS(1785), - [aux_sym_update_host_keys_token1] = ACTIONS(1785), - [aux_sym_use_keychain_token1] = ACTIONS(1785), - [aux_sym_use_roaming_token1] = ACTIONS(1785), - [aux_sym_user_token1] = ACTIONS(1787), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1785), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1785), - [aux_sym_visual_host_key_token1] = ACTIONS(1785), - [aux_sym_xauth_location_token1] = ACTIONS(1785), + [ts_builtin_sym_end] = ACTIONS(1814), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1816), + [aux_sym_match_token1] = ACTIONS(1814), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1814), + [aux_sym_address_family_token1] = ACTIONS(1814), + [aux_sym_batch_mode_token1] = ACTIONS(1814), + [aux_sym_bind_address_token1] = ACTIONS(1814), + [aux_sym_bind_interface_token1] = ACTIONS(1814), + [aux_sym_canonical_domains_token1] = ACTIONS(1814), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1814), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1814), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1814), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1814), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1814), + [aux_sym_certificate_file_token1] = ACTIONS(1814), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1814), + [aux_sym_check_host_ip_token1] = ACTIONS(1814), + [aux_sym_ciphers_token1] = ACTIONS(1814), + [aux_sym_cipher_token1] = ACTIONS(1816), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1814), + [aux_sym_compression_token1] = ACTIONS(1814), + [aux_sym_connection_attempts_token1] = ACTIONS(1814), + [aux_sym_connect_timeout_token1] = ACTIONS(1814), + [aux_sym_control_master_token1] = ACTIONS(1814), + [aux_sym_control_path_token1] = ACTIONS(1814), + [aux_sym_control_persist_token1] = ACTIONS(1814), + [aux_sym_dynamic_forward_token1] = ACTIONS(1814), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1814), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1814), + [aux_sym_escape_char_token1] = ACTIONS(1814), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1814), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1814), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1814), + [aux_sym_forward_agent_token1] = ACTIONS(1814), + [aux_sym_forward_x11_token1] = ACTIONS(1816), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1814), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1814), + [aux_sym_gateway_ports_token1] = ACTIONS(1814), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1814), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1814), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1814), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1814), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1814), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1814), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1814), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1814), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1814), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1814), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1814), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1814), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1814), + [aux_sym_host_key_alias_token1] = ACTIONS(1814), + [aux_sym_hostname_token1] = ACTIONS(1814), + [aux_sym_identities_only_token1] = ACTIONS(1814), + [aux_sym_identity_agent_token1] = ACTIONS(1814), + [aux_sym_identity_file_token1] = ACTIONS(1814), + [aux_sym_ignore_unknown_token1] = ACTIONS(1814), + [aux_sym_include_token1] = ACTIONS(1814), + [aux_sym_ip_qos_token1] = ACTIONS(1814), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1814), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1814), + [aux_sym_kex_algorithms_token1] = ACTIONS(1814), + [aux_sym_known_hosts_command_token1] = ACTIONS(1814), + [aux_sym_local_command_token1] = ACTIONS(1814), + [aux_sym_local_forward_token1] = ACTIONS(1814), + [aux_sym_log_level_token1] = ACTIONS(1814), + [aux_sym_log_verbose_token1] = ACTIONS(1814), + [aux_sym_macs_token1] = ACTIONS(1814), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1814), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1814), + [aux_sym_password_authentication_token1] = ACTIONS(1814), + [aux_sym_permit_local_command_token1] = ACTIONS(1814), + [aux_sym_permit_remote_open_token1] = ACTIONS(1814), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1814), + [aux_sym_port_token1] = ACTIONS(1814), + [aux_sym_preferred_authentications_token1] = ACTIONS(1814), + [aux_sym_protocol_token1] = ACTIONS(1814), + [aux_sym_proxy_command_token1] = ACTIONS(1814), + [aux_sym_proxy_jump_token1] = ACTIONS(1814), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1814), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1814), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1814), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1814), + [aux_sym_rekey_limit_token1] = ACTIONS(1814), + [aux_sym_remote_command_token1] = ACTIONS(1814), + [aux_sym_remote_forward_token1] = ACTIONS(1814), + [aux_sym_request_tty_token1] = ACTIONS(1814), + [aux_sym_required_rsa_size_token1] = ACTIONS(1814), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1814), + [aux_sym_security_key_provider_token1] = ACTIONS(1814), + [aux_sym_send_env_token1] = ACTIONS(1814), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1814), + [aux_sym_server_alive_interval_token1] = ACTIONS(1814), + [aux_sym_session_type_token1] = ACTIONS(1814), + [aux_sym_set_env_token1] = ACTIONS(1814), + [aux_sym_stdin_null_token1] = ACTIONS(1814), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1814), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1814), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1814), + [aux_sym_syslog_facility_token1] = ACTIONS(1814), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1814), + [aux_sym_keep_alive_token1] = ACTIONS(1814), + [aux_sym_tunnel_token1] = ACTIONS(1816), + [aux_sym_tunnel_device_token1] = ACTIONS(1814), + [aux_sym_update_host_keys_token1] = ACTIONS(1814), + [aux_sym_use_keychain_token1] = ACTIONS(1814), + [aux_sym_use_roaming_token1] = ACTIONS(1814), + [aux_sym_user_token1] = ACTIONS(1816), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1814), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1814), + [aux_sym_visual_host_key_token1] = ACTIONS(1814), + [aux_sym_xauth_location_token1] = ACTIONS(1814), }, [718] = { - [ts_builtin_sym_end] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1595), - [aux_sym_match_token1] = ACTIONS(1593), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1593), - [aux_sym_address_family_token1] = ACTIONS(1593), - [aux_sym_batch_mode_token1] = ACTIONS(1593), - [aux_sym_bind_address_token1] = ACTIONS(1593), - [aux_sym_bind_interface_token1] = ACTIONS(1593), - [aux_sym_canonical_domains_token1] = ACTIONS(1593), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1593), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1593), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1593), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1593), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1593), - [aux_sym_certificate_file_token1] = ACTIONS(1593), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1593), - [aux_sym_check_host_ip_token1] = ACTIONS(1593), - [aux_sym_ciphers_token1] = ACTIONS(1593), - [aux_sym_cipher_token1] = ACTIONS(1595), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1593), - [aux_sym_compression_token1] = ACTIONS(1593), - [aux_sym_connection_attempts_token1] = ACTIONS(1593), - [aux_sym_connect_timeout_token1] = ACTIONS(1593), - [aux_sym_control_master_token1] = ACTIONS(1593), - [aux_sym_control_path_token1] = ACTIONS(1593), - [aux_sym_control_persist_token1] = ACTIONS(1593), - [aux_sym_dynamic_forward_token1] = ACTIONS(1593), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1593), - [aux_sym_escape_char_token1] = ACTIONS(1593), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1593), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1593), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1593), - [aux_sym_forward_agent_token1] = ACTIONS(1593), - [aux_sym_forward_x11_token1] = ACTIONS(1595), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1593), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1593), - [aux_sym_gateway_ports_token1] = ACTIONS(1593), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1593), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1593), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1593), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1593), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1593), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1593), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1593), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1593), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1593), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1593), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1593), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1593), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1593), - [aux_sym_host_key_alias_token1] = ACTIONS(1593), - [aux_sym_hostname_token1] = ACTIONS(1593), - [aux_sym_identities_only_token1] = ACTIONS(1593), - [aux_sym_identity_agent_token1] = ACTIONS(1593), - [aux_sym_identity_file_token1] = ACTIONS(1593), - [aux_sym_ignore_unknown_token1] = ACTIONS(1593), - [aux_sym_include_token1] = ACTIONS(1593), - [aux_sym_ip_qos_token1] = ACTIONS(1593), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1593), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1593), - [aux_sym_kex_algorithms_token1] = ACTIONS(1593), - [aux_sym_known_hosts_command_token1] = ACTIONS(1593), - [aux_sym_local_command_token1] = ACTIONS(1593), - [aux_sym_local_forward_token1] = ACTIONS(1593), - [aux_sym_log_level_token1] = ACTIONS(1593), - [aux_sym_log_verbose_token1] = ACTIONS(1593), - [aux_sym_macs_token1] = ACTIONS(1593), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1593), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1593), - [aux_sym_password_authentication_token1] = ACTIONS(1593), - [aux_sym_permit_local_command_token1] = ACTIONS(1593), - [aux_sym_permit_remote_open_token1] = ACTIONS(1593), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1593), - [aux_sym_port_token1] = ACTIONS(1593), - [aux_sym_preferred_authentications_token1] = ACTIONS(1593), - [aux_sym_protocol_token1] = ACTIONS(1593), - [aux_sym_proxy_command_token1] = ACTIONS(1593), - [aux_sym_proxy_jump_token1] = ACTIONS(1593), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1593), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1593), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1593), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1593), - [aux_sym_rekey_limit_token1] = ACTIONS(1593), - [aux_sym_remote_command_token1] = ACTIONS(1593), - [aux_sym_remote_forward_token1] = ACTIONS(1593), - [aux_sym_request_tty_token1] = ACTIONS(1593), - [aux_sym_required_rsa_size_token1] = ACTIONS(1593), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1593), - [aux_sym_security_key_provider_token1] = ACTIONS(1593), - [aux_sym_send_env_token1] = ACTIONS(1593), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1593), - [aux_sym_server_alive_interval_token1] = ACTIONS(1593), - [aux_sym_session_type_token1] = ACTIONS(1593), - [aux_sym_set_env_token1] = ACTIONS(1593), - [aux_sym_stdin_null_token1] = ACTIONS(1593), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1593), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1593), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1593), - [aux_sym_syslog_facility_token1] = ACTIONS(1593), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1593), - [aux_sym_keep_alive_token1] = ACTIONS(1593), - [aux_sym_tunnel_token1] = ACTIONS(1595), - [aux_sym_tunnel_device_token1] = ACTIONS(1593), - [aux_sym_update_host_keys_token1] = ACTIONS(1593), - [aux_sym_use_keychain_token1] = ACTIONS(1593), - [aux_sym_use_roaming_token1] = ACTIONS(1593), - [aux_sym_user_token1] = ACTIONS(1595), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1593), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1593), - [aux_sym_visual_host_key_token1] = ACTIONS(1593), - [aux_sym_xauth_location_token1] = ACTIONS(1593), + [ts_builtin_sym_end] = ACTIONS(1556), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1558), + [aux_sym_match_token1] = ACTIONS(1556), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1556), + [aux_sym_address_family_token1] = ACTIONS(1556), + [aux_sym_batch_mode_token1] = ACTIONS(1556), + [aux_sym_bind_address_token1] = ACTIONS(1556), + [aux_sym_bind_interface_token1] = ACTIONS(1556), + [aux_sym_canonical_domains_token1] = ACTIONS(1556), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1556), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1556), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1556), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1556), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1556), + [aux_sym_certificate_file_token1] = ACTIONS(1556), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1556), + [aux_sym_check_host_ip_token1] = ACTIONS(1556), + [aux_sym_ciphers_token1] = ACTIONS(1556), + [aux_sym_cipher_token1] = ACTIONS(1558), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1556), + [aux_sym_compression_token1] = ACTIONS(1556), + [aux_sym_connection_attempts_token1] = ACTIONS(1556), + [aux_sym_connect_timeout_token1] = ACTIONS(1556), + [aux_sym_control_master_token1] = ACTIONS(1556), + [aux_sym_control_path_token1] = ACTIONS(1556), + [aux_sym_control_persist_token1] = ACTIONS(1556), + [aux_sym_dynamic_forward_token1] = ACTIONS(1556), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1556), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1556), + [aux_sym_escape_char_token1] = ACTIONS(1556), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1556), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1556), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1556), + [aux_sym_forward_agent_token1] = ACTIONS(1556), + [aux_sym_forward_x11_token1] = ACTIONS(1558), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1556), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1556), + [aux_sym_gateway_ports_token1] = ACTIONS(1556), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1556), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1556), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1556), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1556), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1556), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1556), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1556), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1556), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1556), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1556), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1556), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1556), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1556), + [aux_sym_host_key_alias_token1] = ACTIONS(1556), + [aux_sym_hostname_token1] = ACTIONS(1556), + [aux_sym_identities_only_token1] = ACTIONS(1556), + [aux_sym_identity_agent_token1] = ACTIONS(1556), + [aux_sym_identity_file_token1] = ACTIONS(1556), + [aux_sym_ignore_unknown_token1] = ACTIONS(1556), + [aux_sym_include_token1] = ACTIONS(1556), + [aux_sym_ip_qos_token1] = ACTIONS(1556), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1556), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1556), + [aux_sym_kex_algorithms_token1] = ACTIONS(1556), + [aux_sym_known_hosts_command_token1] = ACTIONS(1556), + [aux_sym_local_command_token1] = ACTIONS(1556), + [aux_sym_local_forward_token1] = ACTIONS(1556), + [aux_sym_log_level_token1] = ACTIONS(1556), + [aux_sym_log_verbose_token1] = ACTIONS(1556), + [aux_sym_macs_token1] = ACTIONS(1556), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1556), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1556), + [aux_sym_password_authentication_token1] = ACTIONS(1556), + [aux_sym_permit_local_command_token1] = ACTIONS(1556), + [aux_sym_permit_remote_open_token1] = ACTIONS(1556), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1556), + [aux_sym_port_token1] = ACTIONS(1556), + [aux_sym_preferred_authentications_token1] = ACTIONS(1556), + [aux_sym_protocol_token1] = ACTIONS(1556), + [aux_sym_proxy_command_token1] = ACTIONS(1556), + [aux_sym_proxy_jump_token1] = ACTIONS(1556), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1556), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1556), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1556), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1556), + [aux_sym_rekey_limit_token1] = ACTIONS(1556), + [aux_sym_remote_command_token1] = ACTIONS(1556), + [aux_sym_remote_forward_token1] = ACTIONS(1556), + [aux_sym_request_tty_token1] = ACTIONS(1556), + [aux_sym_required_rsa_size_token1] = ACTIONS(1556), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1556), + [aux_sym_security_key_provider_token1] = ACTIONS(1556), + [aux_sym_send_env_token1] = ACTIONS(1556), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1556), + [aux_sym_server_alive_interval_token1] = ACTIONS(1556), + [aux_sym_session_type_token1] = ACTIONS(1556), + [aux_sym_set_env_token1] = ACTIONS(1556), + [aux_sym_stdin_null_token1] = ACTIONS(1556), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1556), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1556), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1556), + [aux_sym_syslog_facility_token1] = ACTIONS(1556), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1556), + [aux_sym_keep_alive_token1] = ACTIONS(1556), + [aux_sym_tunnel_token1] = ACTIONS(1558), + [aux_sym_tunnel_device_token1] = ACTIONS(1556), + [aux_sym_update_host_keys_token1] = ACTIONS(1556), + [aux_sym_use_keychain_token1] = ACTIONS(1556), + [aux_sym_use_roaming_token1] = ACTIONS(1556), + [aux_sym_user_token1] = ACTIONS(1558), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1556), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1556), + [aux_sym_visual_host_key_token1] = ACTIONS(1556), + [aux_sym_xauth_location_token1] = ACTIONS(1556), }, [719] = { - [ts_builtin_sym_end] = ACTIONS(1359), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1361), - [aux_sym_match_token1] = ACTIONS(1359), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1359), - [aux_sym_address_family_token1] = ACTIONS(1359), - [aux_sym_batch_mode_token1] = ACTIONS(1359), - [aux_sym_bind_address_token1] = ACTIONS(1359), - [aux_sym_bind_interface_token1] = ACTIONS(1359), - [aux_sym_canonical_domains_token1] = ACTIONS(1359), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1359), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1359), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1359), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1359), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1359), - [aux_sym_certificate_file_token1] = ACTIONS(1359), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1359), - [aux_sym_check_host_ip_token1] = ACTIONS(1359), - [aux_sym_ciphers_token1] = ACTIONS(1359), - [aux_sym_cipher_token1] = ACTIONS(1361), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1359), - [aux_sym_compression_token1] = ACTIONS(1359), - [aux_sym_connection_attempts_token1] = ACTIONS(1359), - [aux_sym_connect_timeout_token1] = ACTIONS(1359), - [aux_sym_control_master_token1] = ACTIONS(1359), - [aux_sym_control_path_token1] = ACTIONS(1359), - [aux_sym_control_persist_token1] = ACTIONS(1359), - [aux_sym_dynamic_forward_token1] = ACTIONS(1359), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1359), - [aux_sym_escape_char_token1] = ACTIONS(1359), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1359), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1359), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1359), - [aux_sym_forward_agent_token1] = ACTIONS(1359), - [aux_sym_forward_x11_token1] = ACTIONS(1361), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1359), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1359), - [aux_sym_gateway_ports_token1] = ACTIONS(1359), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1359), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1359), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1359), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1359), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1359), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1359), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1359), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1359), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1359), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1359), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1359), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1359), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1359), - [aux_sym_host_key_alias_token1] = ACTIONS(1359), - [aux_sym_hostname_token1] = ACTIONS(1359), - [aux_sym_identities_only_token1] = ACTIONS(1359), - [aux_sym_identity_agent_token1] = ACTIONS(1359), - [aux_sym_identity_file_token1] = ACTIONS(1359), - [aux_sym_ignore_unknown_token1] = ACTIONS(1359), - [aux_sym_include_token1] = ACTIONS(1359), - [aux_sym_ip_qos_token1] = ACTIONS(1359), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1359), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1359), - [aux_sym_kex_algorithms_token1] = ACTIONS(1359), - [aux_sym_known_hosts_command_token1] = ACTIONS(1359), - [aux_sym_local_command_token1] = ACTIONS(1359), - [aux_sym_local_forward_token1] = ACTIONS(1359), - [aux_sym_log_level_token1] = ACTIONS(1359), - [aux_sym_log_verbose_token1] = ACTIONS(1359), - [aux_sym_macs_token1] = ACTIONS(1359), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1359), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1359), - [aux_sym_password_authentication_token1] = ACTIONS(1359), - [aux_sym_permit_local_command_token1] = ACTIONS(1359), - [aux_sym_permit_remote_open_token1] = ACTIONS(1359), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1359), - [aux_sym_port_token1] = ACTIONS(1359), - [aux_sym_preferred_authentications_token1] = ACTIONS(1359), - [aux_sym_protocol_token1] = ACTIONS(1359), - [aux_sym_proxy_command_token1] = ACTIONS(1359), - [aux_sym_proxy_jump_token1] = ACTIONS(1359), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1359), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1359), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1359), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1359), - [aux_sym_rekey_limit_token1] = ACTIONS(1359), - [aux_sym_remote_command_token1] = ACTIONS(1359), - [aux_sym_remote_forward_token1] = ACTIONS(1359), - [aux_sym_request_tty_token1] = ACTIONS(1359), - [aux_sym_required_rsa_size_token1] = ACTIONS(1359), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1359), - [aux_sym_security_key_provider_token1] = ACTIONS(1359), - [aux_sym_send_env_token1] = ACTIONS(1359), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1359), - [aux_sym_server_alive_interval_token1] = ACTIONS(1359), - [aux_sym_session_type_token1] = ACTIONS(1359), - [aux_sym_set_env_token1] = ACTIONS(1359), - [aux_sym_stdin_null_token1] = ACTIONS(1359), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1359), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1359), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1359), - [aux_sym_syslog_facility_token1] = ACTIONS(1359), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1359), - [aux_sym_keep_alive_token1] = ACTIONS(1359), - [aux_sym_tunnel_token1] = ACTIONS(1361), - [aux_sym_tunnel_device_token1] = ACTIONS(1359), - [aux_sym_update_host_keys_token1] = ACTIONS(1359), - [aux_sym_use_keychain_token1] = ACTIONS(1359), - [aux_sym_use_roaming_token1] = ACTIONS(1359), - [aux_sym_user_token1] = ACTIONS(1361), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1359), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1359), - [aux_sym_visual_host_key_token1] = ACTIONS(1359), - [aux_sym_xauth_location_token1] = ACTIONS(1359), + [ts_builtin_sym_end] = ACTIONS(1562), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1564), + [aux_sym_match_token1] = ACTIONS(1562), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1562), + [aux_sym_address_family_token1] = ACTIONS(1562), + [aux_sym_batch_mode_token1] = ACTIONS(1562), + [aux_sym_bind_address_token1] = ACTIONS(1562), + [aux_sym_bind_interface_token1] = ACTIONS(1562), + [aux_sym_canonical_domains_token1] = ACTIONS(1562), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1562), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1562), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1562), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1562), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1562), + [aux_sym_certificate_file_token1] = ACTIONS(1562), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1562), + [aux_sym_check_host_ip_token1] = ACTIONS(1562), + [aux_sym_ciphers_token1] = ACTIONS(1562), + [aux_sym_cipher_token1] = ACTIONS(1564), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1562), + [aux_sym_compression_token1] = ACTIONS(1562), + [aux_sym_connection_attempts_token1] = ACTIONS(1562), + [aux_sym_connect_timeout_token1] = ACTIONS(1562), + [aux_sym_control_master_token1] = ACTIONS(1562), + [aux_sym_control_path_token1] = ACTIONS(1562), + [aux_sym_control_persist_token1] = ACTIONS(1562), + [aux_sym_dynamic_forward_token1] = ACTIONS(1562), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1562), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1562), + [aux_sym_escape_char_token1] = ACTIONS(1562), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1562), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1562), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1562), + [aux_sym_forward_agent_token1] = ACTIONS(1562), + [aux_sym_forward_x11_token1] = ACTIONS(1564), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1562), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1562), + [aux_sym_gateway_ports_token1] = ACTIONS(1562), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1562), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1562), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1562), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1562), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1562), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1562), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1562), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1562), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1562), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1562), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1562), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1562), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1562), + [aux_sym_host_key_alias_token1] = ACTIONS(1562), + [aux_sym_hostname_token1] = ACTIONS(1562), + [aux_sym_identities_only_token1] = ACTIONS(1562), + [aux_sym_identity_agent_token1] = ACTIONS(1562), + [aux_sym_identity_file_token1] = ACTIONS(1562), + [aux_sym_ignore_unknown_token1] = ACTIONS(1562), + [aux_sym_include_token1] = ACTIONS(1562), + [aux_sym_ip_qos_token1] = ACTIONS(1562), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1562), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1562), + [aux_sym_kex_algorithms_token1] = ACTIONS(1562), + [aux_sym_known_hosts_command_token1] = ACTIONS(1562), + [aux_sym_local_command_token1] = ACTIONS(1562), + [aux_sym_local_forward_token1] = ACTIONS(1562), + [aux_sym_log_level_token1] = ACTIONS(1562), + [aux_sym_log_verbose_token1] = ACTIONS(1562), + [aux_sym_macs_token1] = ACTIONS(1562), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1562), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1562), + [aux_sym_password_authentication_token1] = ACTIONS(1562), + [aux_sym_permit_local_command_token1] = ACTIONS(1562), + [aux_sym_permit_remote_open_token1] = ACTIONS(1562), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1562), + [aux_sym_port_token1] = ACTIONS(1562), + [aux_sym_preferred_authentications_token1] = ACTIONS(1562), + [aux_sym_protocol_token1] = ACTIONS(1562), + [aux_sym_proxy_command_token1] = ACTIONS(1562), + [aux_sym_proxy_jump_token1] = ACTIONS(1562), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1562), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1562), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1562), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1562), + [aux_sym_rekey_limit_token1] = ACTIONS(1562), + [aux_sym_remote_command_token1] = ACTIONS(1562), + [aux_sym_remote_forward_token1] = ACTIONS(1562), + [aux_sym_request_tty_token1] = ACTIONS(1562), + [aux_sym_required_rsa_size_token1] = ACTIONS(1562), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1562), + [aux_sym_security_key_provider_token1] = ACTIONS(1562), + [aux_sym_send_env_token1] = ACTIONS(1562), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1562), + [aux_sym_server_alive_interval_token1] = ACTIONS(1562), + [aux_sym_session_type_token1] = ACTIONS(1562), + [aux_sym_set_env_token1] = ACTIONS(1562), + [aux_sym_stdin_null_token1] = ACTIONS(1562), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1562), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1562), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1562), + [aux_sym_syslog_facility_token1] = ACTIONS(1562), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1562), + [aux_sym_keep_alive_token1] = ACTIONS(1562), + [aux_sym_tunnel_token1] = ACTIONS(1564), + [aux_sym_tunnel_device_token1] = ACTIONS(1562), + [aux_sym_update_host_keys_token1] = ACTIONS(1562), + [aux_sym_use_keychain_token1] = ACTIONS(1562), + [aux_sym_use_roaming_token1] = ACTIONS(1562), + [aux_sym_user_token1] = ACTIONS(1564), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1562), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1562), + [aux_sym_visual_host_key_token1] = ACTIONS(1562), + [aux_sym_xauth_location_token1] = ACTIONS(1562), }, [720] = { - [ts_builtin_sym_end] = ACTIONS(1779), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1781), - [aux_sym_match_token1] = ACTIONS(1779), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1779), - [aux_sym_address_family_token1] = ACTIONS(1779), - [aux_sym_batch_mode_token1] = ACTIONS(1779), - [aux_sym_bind_address_token1] = ACTIONS(1779), - [aux_sym_bind_interface_token1] = ACTIONS(1779), - [aux_sym_canonical_domains_token1] = ACTIONS(1779), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1779), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1779), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1779), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1779), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1779), - [aux_sym_certificate_file_token1] = ACTIONS(1779), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1779), - [aux_sym_check_host_ip_token1] = ACTIONS(1779), - [aux_sym_ciphers_token1] = ACTIONS(1779), - [aux_sym_cipher_token1] = ACTIONS(1781), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1779), - [aux_sym_compression_token1] = ACTIONS(1779), - [aux_sym_connection_attempts_token1] = ACTIONS(1779), - [aux_sym_connect_timeout_token1] = ACTIONS(1779), - [aux_sym_control_master_token1] = ACTIONS(1779), - [aux_sym_control_path_token1] = ACTIONS(1779), - [aux_sym_control_persist_token1] = ACTIONS(1779), - [aux_sym_dynamic_forward_token1] = ACTIONS(1779), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1779), - [aux_sym_escape_char_token1] = ACTIONS(1779), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1779), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1779), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1779), - [aux_sym_forward_agent_token1] = ACTIONS(1779), - [aux_sym_forward_x11_token1] = ACTIONS(1781), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1779), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1779), - [aux_sym_gateway_ports_token1] = ACTIONS(1779), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1779), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1779), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1779), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1779), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1779), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1779), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1779), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1779), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1779), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1779), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1779), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1779), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1779), - [aux_sym_host_key_alias_token1] = ACTIONS(1779), - [aux_sym_hostname_token1] = ACTIONS(1779), - [aux_sym_identities_only_token1] = ACTIONS(1779), - [aux_sym_identity_agent_token1] = ACTIONS(1779), - [aux_sym_identity_file_token1] = ACTIONS(1779), - [aux_sym_ignore_unknown_token1] = ACTIONS(1779), - [aux_sym_include_token1] = ACTIONS(1779), - [aux_sym_ip_qos_token1] = ACTIONS(1779), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1779), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1779), - [aux_sym_kex_algorithms_token1] = ACTIONS(1779), - [aux_sym_known_hosts_command_token1] = ACTIONS(1779), - [aux_sym_local_command_token1] = ACTIONS(1779), - [aux_sym_local_forward_token1] = ACTIONS(1779), - [aux_sym_log_level_token1] = ACTIONS(1779), - [aux_sym_log_verbose_token1] = ACTIONS(1779), - [aux_sym_macs_token1] = ACTIONS(1779), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1779), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1779), - [aux_sym_password_authentication_token1] = ACTIONS(1779), - [aux_sym_permit_local_command_token1] = ACTIONS(1779), - [aux_sym_permit_remote_open_token1] = ACTIONS(1779), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1779), - [aux_sym_port_token1] = ACTIONS(1779), - [aux_sym_preferred_authentications_token1] = ACTIONS(1779), - [aux_sym_protocol_token1] = ACTIONS(1779), - [aux_sym_proxy_command_token1] = ACTIONS(1779), - [aux_sym_proxy_jump_token1] = ACTIONS(1779), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1779), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1779), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1779), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1779), - [aux_sym_rekey_limit_token1] = ACTIONS(1779), - [aux_sym_remote_command_token1] = ACTIONS(1779), - [aux_sym_remote_forward_token1] = ACTIONS(1779), - [aux_sym_request_tty_token1] = ACTIONS(1779), - [aux_sym_required_rsa_size_token1] = ACTIONS(1779), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1779), - [aux_sym_security_key_provider_token1] = ACTIONS(1779), - [aux_sym_send_env_token1] = ACTIONS(1779), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1779), - [aux_sym_server_alive_interval_token1] = ACTIONS(1779), - [aux_sym_session_type_token1] = ACTIONS(1779), - [aux_sym_set_env_token1] = ACTIONS(1779), - [aux_sym_stdin_null_token1] = ACTIONS(1779), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1779), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1779), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1779), - [aux_sym_syslog_facility_token1] = ACTIONS(1779), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1779), - [aux_sym_keep_alive_token1] = ACTIONS(1779), - [aux_sym_tunnel_token1] = ACTIONS(1781), - [aux_sym_tunnel_device_token1] = ACTIONS(1779), - [aux_sym_update_host_keys_token1] = ACTIONS(1779), - [aux_sym_use_keychain_token1] = ACTIONS(1779), - [aux_sym_use_roaming_token1] = ACTIONS(1779), - [aux_sym_user_token1] = ACTIONS(1781), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1779), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1779), - [aux_sym_visual_host_key_token1] = ACTIONS(1779), - [aux_sym_xauth_location_token1] = ACTIONS(1779), + [ts_builtin_sym_end] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1810), + [aux_sym_match_token1] = ACTIONS(1808), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1808), + [aux_sym_address_family_token1] = ACTIONS(1808), + [aux_sym_batch_mode_token1] = ACTIONS(1808), + [aux_sym_bind_address_token1] = ACTIONS(1808), + [aux_sym_bind_interface_token1] = ACTIONS(1808), + [aux_sym_canonical_domains_token1] = ACTIONS(1808), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1808), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1808), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1808), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1808), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1808), + [aux_sym_certificate_file_token1] = ACTIONS(1808), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1808), + [aux_sym_check_host_ip_token1] = ACTIONS(1808), + [aux_sym_ciphers_token1] = ACTIONS(1808), + [aux_sym_cipher_token1] = ACTIONS(1810), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1808), + [aux_sym_compression_token1] = ACTIONS(1808), + [aux_sym_connection_attempts_token1] = ACTIONS(1808), + [aux_sym_connect_timeout_token1] = ACTIONS(1808), + [aux_sym_control_master_token1] = ACTIONS(1808), + [aux_sym_control_path_token1] = ACTIONS(1808), + [aux_sym_control_persist_token1] = ACTIONS(1808), + [aux_sym_dynamic_forward_token1] = ACTIONS(1808), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1808), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1808), + [aux_sym_escape_char_token1] = ACTIONS(1808), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1808), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1808), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1808), + [aux_sym_forward_agent_token1] = ACTIONS(1808), + [aux_sym_forward_x11_token1] = ACTIONS(1810), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1808), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1808), + [aux_sym_gateway_ports_token1] = ACTIONS(1808), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1808), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1808), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1808), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1808), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1808), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1808), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1808), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1808), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1808), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1808), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1808), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1808), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1808), + [aux_sym_host_key_alias_token1] = ACTIONS(1808), + [aux_sym_hostname_token1] = ACTIONS(1808), + [aux_sym_identities_only_token1] = ACTIONS(1808), + [aux_sym_identity_agent_token1] = ACTIONS(1808), + [aux_sym_identity_file_token1] = ACTIONS(1808), + [aux_sym_ignore_unknown_token1] = ACTIONS(1808), + [aux_sym_include_token1] = ACTIONS(1808), + [aux_sym_ip_qos_token1] = ACTIONS(1808), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1808), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1808), + [aux_sym_kex_algorithms_token1] = ACTIONS(1808), + [aux_sym_known_hosts_command_token1] = ACTIONS(1808), + [aux_sym_local_command_token1] = ACTIONS(1808), + [aux_sym_local_forward_token1] = ACTIONS(1808), + [aux_sym_log_level_token1] = ACTIONS(1808), + [aux_sym_log_verbose_token1] = ACTIONS(1808), + [aux_sym_macs_token1] = ACTIONS(1808), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1808), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1808), + [aux_sym_password_authentication_token1] = ACTIONS(1808), + [aux_sym_permit_local_command_token1] = ACTIONS(1808), + [aux_sym_permit_remote_open_token1] = ACTIONS(1808), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1808), + [aux_sym_port_token1] = ACTIONS(1808), + [aux_sym_preferred_authentications_token1] = ACTIONS(1808), + [aux_sym_protocol_token1] = ACTIONS(1808), + [aux_sym_proxy_command_token1] = ACTIONS(1808), + [aux_sym_proxy_jump_token1] = ACTIONS(1808), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1808), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1808), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1808), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1808), + [aux_sym_rekey_limit_token1] = ACTIONS(1808), + [aux_sym_remote_command_token1] = ACTIONS(1808), + [aux_sym_remote_forward_token1] = ACTIONS(1808), + [aux_sym_request_tty_token1] = ACTIONS(1808), + [aux_sym_required_rsa_size_token1] = ACTIONS(1808), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1808), + [aux_sym_security_key_provider_token1] = ACTIONS(1808), + [aux_sym_send_env_token1] = ACTIONS(1808), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1808), + [aux_sym_server_alive_interval_token1] = ACTIONS(1808), + [aux_sym_session_type_token1] = ACTIONS(1808), + [aux_sym_set_env_token1] = ACTIONS(1808), + [aux_sym_stdin_null_token1] = ACTIONS(1808), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1808), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1808), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1808), + [aux_sym_syslog_facility_token1] = ACTIONS(1808), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1808), + [aux_sym_keep_alive_token1] = ACTIONS(1808), + [aux_sym_tunnel_token1] = ACTIONS(1810), + [aux_sym_tunnel_device_token1] = ACTIONS(1808), + [aux_sym_update_host_keys_token1] = ACTIONS(1808), + [aux_sym_use_keychain_token1] = ACTIONS(1808), + [aux_sym_use_roaming_token1] = ACTIONS(1808), + [aux_sym_user_token1] = ACTIONS(1810), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1808), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1808), + [aux_sym_visual_host_key_token1] = ACTIONS(1808), + [aux_sym_xauth_location_token1] = ACTIONS(1808), }, [721] = { - [ts_builtin_sym_end] = ACTIONS(1365), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1367), - [aux_sym_match_token1] = ACTIONS(1365), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1365), - [aux_sym_address_family_token1] = ACTIONS(1365), - [aux_sym_batch_mode_token1] = ACTIONS(1365), - [aux_sym_bind_address_token1] = ACTIONS(1365), - [aux_sym_bind_interface_token1] = ACTIONS(1365), - [aux_sym_canonical_domains_token1] = ACTIONS(1365), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1365), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1365), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1365), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1365), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1365), - [aux_sym_certificate_file_token1] = ACTIONS(1365), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1365), - [aux_sym_check_host_ip_token1] = ACTIONS(1365), - [aux_sym_ciphers_token1] = ACTIONS(1365), - [aux_sym_cipher_token1] = ACTIONS(1367), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1365), - [aux_sym_compression_token1] = ACTIONS(1365), - [aux_sym_connection_attempts_token1] = ACTIONS(1365), - [aux_sym_connect_timeout_token1] = ACTIONS(1365), - [aux_sym_control_master_token1] = ACTIONS(1365), - [aux_sym_control_path_token1] = ACTIONS(1365), - [aux_sym_control_persist_token1] = ACTIONS(1365), - [aux_sym_dynamic_forward_token1] = ACTIONS(1365), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1365), - [aux_sym_escape_char_token1] = ACTIONS(1365), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1365), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1365), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1365), - [aux_sym_forward_agent_token1] = ACTIONS(1365), - [aux_sym_forward_x11_token1] = ACTIONS(1367), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1365), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1365), - [aux_sym_gateway_ports_token1] = ACTIONS(1365), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1365), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1365), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1365), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1365), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1365), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1365), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1365), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1365), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1365), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1365), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1365), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1365), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1365), - [aux_sym_host_key_alias_token1] = ACTIONS(1365), - [aux_sym_hostname_token1] = ACTIONS(1365), - [aux_sym_identities_only_token1] = ACTIONS(1365), - [aux_sym_identity_agent_token1] = ACTIONS(1365), - [aux_sym_identity_file_token1] = ACTIONS(1365), - [aux_sym_ignore_unknown_token1] = ACTIONS(1365), - [aux_sym_include_token1] = ACTIONS(1365), - [aux_sym_ip_qos_token1] = ACTIONS(1365), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1365), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1365), - [aux_sym_kex_algorithms_token1] = ACTIONS(1365), - [aux_sym_known_hosts_command_token1] = ACTIONS(1365), - [aux_sym_local_command_token1] = ACTIONS(1365), - [aux_sym_local_forward_token1] = ACTIONS(1365), - [aux_sym_log_level_token1] = ACTIONS(1365), - [aux_sym_log_verbose_token1] = ACTIONS(1365), - [aux_sym_macs_token1] = ACTIONS(1365), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1365), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1365), - [aux_sym_password_authentication_token1] = ACTIONS(1365), - [aux_sym_permit_local_command_token1] = ACTIONS(1365), - [aux_sym_permit_remote_open_token1] = ACTIONS(1365), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1365), - [aux_sym_port_token1] = ACTIONS(1365), - [aux_sym_preferred_authentications_token1] = ACTIONS(1365), - [aux_sym_protocol_token1] = ACTIONS(1365), - [aux_sym_proxy_command_token1] = ACTIONS(1365), - [aux_sym_proxy_jump_token1] = ACTIONS(1365), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1365), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1365), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1365), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1365), - [aux_sym_rekey_limit_token1] = ACTIONS(1365), - [aux_sym_remote_command_token1] = ACTIONS(1365), - [aux_sym_remote_forward_token1] = ACTIONS(1365), - [aux_sym_request_tty_token1] = ACTIONS(1365), - [aux_sym_required_rsa_size_token1] = ACTIONS(1365), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1365), - [aux_sym_security_key_provider_token1] = ACTIONS(1365), - [aux_sym_send_env_token1] = ACTIONS(1365), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1365), - [aux_sym_server_alive_interval_token1] = ACTIONS(1365), - [aux_sym_session_type_token1] = ACTIONS(1365), - [aux_sym_set_env_token1] = ACTIONS(1365), - [aux_sym_stdin_null_token1] = ACTIONS(1365), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1365), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1365), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1365), - [aux_sym_syslog_facility_token1] = ACTIONS(1365), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1365), - [aux_sym_keep_alive_token1] = ACTIONS(1365), - [aux_sym_tunnel_token1] = ACTIONS(1367), - [aux_sym_tunnel_device_token1] = ACTIONS(1365), - [aux_sym_update_host_keys_token1] = ACTIONS(1365), - [aux_sym_use_keychain_token1] = ACTIONS(1365), - [aux_sym_use_roaming_token1] = ACTIONS(1365), - [aux_sym_user_token1] = ACTIONS(1367), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1365), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1365), - [aux_sym_visual_host_key_token1] = ACTIONS(1365), - [aux_sym_xauth_location_token1] = ACTIONS(1365), + [ts_builtin_sym_end] = ACTIONS(680), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(682), + [aux_sym_match_token1] = ACTIONS(680), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(680), + [aux_sym_address_family_token1] = ACTIONS(680), + [aux_sym_batch_mode_token1] = ACTIONS(680), + [aux_sym_bind_address_token1] = ACTIONS(680), + [aux_sym_bind_interface_token1] = ACTIONS(680), + [aux_sym_canonical_domains_token1] = ACTIONS(680), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(680), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(680), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(680), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(680), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(680), + [aux_sym_certificate_file_token1] = ACTIONS(680), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(680), + [aux_sym_check_host_ip_token1] = ACTIONS(680), + [aux_sym_ciphers_token1] = ACTIONS(680), + [aux_sym_cipher_token1] = ACTIONS(682), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(680), + [aux_sym_compression_token1] = ACTIONS(680), + [aux_sym_connection_attempts_token1] = ACTIONS(680), + [aux_sym_connect_timeout_token1] = ACTIONS(680), + [aux_sym_control_master_token1] = ACTIONS(680), + [aux_sym_control_path_token1] = ACTIONS(680), + [aux_sym_control_persist_token1] = ACTIONS(680), + [aux_sym_dynamic_forward_token1] = ACTIONS(680), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(680), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(680), + [aux_sym_escape_char_token1] = ACTIONS(680), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(680), + [aux_sym_fingerprint_hash_token1] = ACTIONS(680), + [aux_sym_fork_after_authentication_token1] = ACTIONS(680), + [aux_sym_forward_agent_token1] = ACTIONS(680), + [aux_sym_forward_x11_token1] = ACTIONS(682), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(680), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(680), + [aux_sym_gateway_ports_token1] = ACTIONS(680), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(680), + [aux_sym_gssapi_authentication_token1] = ACTIONS(680), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(680), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(680), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(680), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(680), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(680), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(680), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(680), + [aux_sym_hash_known_hosts_token1] = ACTIONS(680), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(680), + [aux_sym_hostbased_authentication_token1] = ACTIONS(680), + [aux_sym_host_key_algorithms_token1] = ACTIONS(680), + [aux_sym_host_key_alias_token1] = ACTIONS(680), + [aux_sym_hostname_token1] = ACTIONS(680), + [aux_sym_identities_only_token1] = ACTIONS(680), + [aux_sym_identity_agent_token1] = ACTIONS(680), + [aux_sym_identity_file_token1] = ACTIONS(680), + [aux_sym_ignore_unknown_token1] = ACTIONS(680), + [aux_sym_include_token1] = ACTIONS(680), + [aux_sym_ip_qos_token1] = ACTIONS(680), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(680), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(680), + [aux_sym_kex_algorithms_token1] = ACTIONS(680), + [aux_sym_known_hosts_command_token1] = ACTIONS(680), + [aux_sym_local_command_token1] = ACTIONS(680), + [aux_sym_local_forward_token1] = ACTIONS(680), + [aux_sym_log_level_token1] = ACTIONS(680), + [aux_sym_log_verbose_token1] = ACTIONS(680), + [aux_sym_macs_token1] = ACTIONS(680), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(680), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(680), + [aux_sym_password_authentication_token1] = ACTIONS(680), + [aux_sym_permit_local_command_token1] = ACTIONS(680), + [aux_sym_permit_remote_open_token1] = ACTIONS(680), + [aux_sym_pkcs11_provider_token1] = ACTIONS(680), + [aux_sym_port_token1] = ACTIONS(680), + [aux_sym_preferred_authentications_token1] = ACTIONS(680), + [aux_sym_protocol_token1] = ACTIONS(680), + [aux_sym_proxy_command_token1] = ACTIONS(680), + [aux_sym_proxy_jump_token1] = ACTIONS(680), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(680), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(680), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(680), + [aux_sym_pubkey_authentication_token1] = ACTIONS(680), + [aux_sym_rekey_limit_token1] = ACTIONS(680), + [aux_sym_remote_command_token1] = ACTIONS(680), + [aux_sym_remote_forward_token1] = ACTIONS(680), + [aux_sym_request_tty_token1] = ACTIONS(680), + [aux_sym_required_rsa_size_token1] = ACTIONS(680), + [aux_sym_revoked_host_keys_token1] = ACTIONS(680), + [aux_sym_security_key_provider_token1] = ACTIONS(680), + [aux_sym_send_env_token1] = ACTIONS(680), + [aux_sym_server_alive_count_max_token1] = ACTIONS(680), + [aux_sym_server_alive_interval_token1] = ACTIONS(680), + [aux_sym_session_type_token1] = ACTIONS(680), + [aux_sym_set_env_token1] = ACTIONS(680), + [aux_sym_stdin_null_token1] = ACTIONS(680), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(680), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(680), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(680), + [aux_sym_syslog_facility_token1] = ACTIONS(680), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(680), + [aux_sym_keep_alive_token1] = ACTIONS(680), + [aux_sym_tunnel_token1] = ACTIONS(682), + [aux_sym_tunnel_device_token1] = ACTIONS(680), + [aux_sym_update_host_keys_token1] = ACTIONS(680), + [aux_sym_use_keychain_token1] = ACTIONS(680), + [aux_sym_use_roaming_token1] = ACTIONS(680), + [aux_sym_user_token1] = ACTIONS(682), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(680), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(680), + [aux_sym_visual_host_key_token1] = ACTIONS(680), + [aux_sym_xauth_location_token1] = ACTIONS(680), }, [722] = { - [ts_builtin_sym_end] = ACTIONS(1659), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1661), - [aux_sym_match_token1] = ACTIONS(1659), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1659), - [aux_sym_address_family_token1] = ACTIONS(1659), - [aux_sym_batch_mode_token1] = ACTIONS(1659), - [aux_sym_bind_address_token1] = ACTIONS(1659), - [aux_sym_bind_interface_token1] = ACTIONS(1659), - [aux_sym_canonical_domains_token1] = ACTIONS(1659), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1659), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1659), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1659), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1659), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1659), - [aux_sym_certificate_file_token1] = ACTIONS(1659), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1659), - [aux_sym_check_host_ip_token1] = ACTIONS(1659), - [aux_sym_ciphers_token1] = ACTIONS(1659), - [aux_sym_cipher_token1] = ACTIONS(1661), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1659), - [aux_sym_compression_token1] = ACTIONS(1659), - [aux_sym_connection_attempts_token1] = ACTIONS(1659), - [aux_sym_connect_timeout_token1] = ACTIONS(1659), - [aux_sym_control_master_token1] = ACTIONS(1659), - [aux_sym_control_path_token1] = ACTIONS(1659), - [aux_sym_control_persist_token1] = ACTIONS(1659), - [aux_sym_dynamic_forward_token1] = ACTIONS(1659), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1659), - [aux_sym_escape_char_token1] = ACTIONS(1659), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1659), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1659), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1659), - [aux_sym_forward_agent_token1] = ACTIONS(1659), - [aux_sym_forward_x11_token1] = ACTIONS(1661), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1659), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1659), - [aux_sym_gateway_ports_token1] = ACTIONS(1659), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1659), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1659), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1659), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1659), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1659), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1659), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1659), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1659), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1659), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1659), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1659), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1659), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1659), - [aux_sym_host_key_alias_token1] = ACTIONS(1659), - [aux_sym_hostname_token1] = ACTIONS(1659), - [aux_sym_identities_only_token1] = ACTIONS(1659), - [aux_sym_identity_agent_token1] = ACTIONS(1659), - [aux_sym_identity_file_token1] = ACTIONS(1659), - [aux_sym_ignore_unknown_token1] = ACTIONS(1659), - [aux_sym_include_token1] = ACTIONS(1659), - [aux_sym_ip_qos_token1] = ACTIONS(1659), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1659), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1659), - [aux_sym_kex_algorithms_token1] = ACTIONS(1659), - [aux_sym_known_hosts_command_token1] = ACTIONS(1659), - [aux_sym_local_command_token1] = ACTIONS(1659), - [aux_sym_local_forward_token1] = ACTIONS(1659), - [aux_sym_log_level_token1] = ACTIONS(1659), - [aux_sym_log_verbose_token1] = ACTIONS(1659), - [aux_sym_macs_token1] = ACTIONS(1659), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1659), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1659), - [aux_sym_password_authentication_token1] = ACTIONS(1659), - [aux_sym_permit_local_command_token1] = ACTIONS(1659), - [aux_sym_permit_remote_open_token1] = ACTIONS(1659), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1659), - [aux_sym_port_token1] = ACTIONS(1659), - [aux_sym_preferred_authentications_token1] = ACTIONS(1659), - [aux_sym_protocol_token1] = ACTIONS(1659), - [aux_sym_proxy_command_token1] = ACTIONS(1659), - [aux_sym_proxy_jump_token1] = ACTIONS(1659), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1659), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1659), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1659), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1659), - [aux_sym_rekey_limit_token1] = ACTIONS(1659), - [aux_sym_remote_command_token1] = ACTIONS(1659), - [aux_sym_remote_forward_token1] = ACTIONS(1659), - [aux_sym_request_tty_token1] = ACTIONS(1659), - [aux_sym_required_rsa_size_token1] = ACTIONS(1659), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1659), - [aux_sym_security_key_provider_token1] = ACTIONS(1659), - [aux_sym_send_env_token1] = ACTIONS(1659), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1659), - [aux_sym_server_alive_interval_token1] = ACTIONS(1659), - [aux_sym_session_type_token1] = ACTIONS(1659), - [aux_sym_set_env_token1] = ACTIONS(1659), - [aux_sym_stdin_null_token1] = ACTIONS(1659), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1659), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1659), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1659), - [aux_sym_syslog_facility_token1] = ACTIONS(1659), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1659), - [aux_sym_keep_alive_token1] = ACTIONS(1659), - [aux_sym_tunnel_token1] = ACTIONS(1661), - [aux_sym_tunnel_device_token1] = ACTIONS(1659), - [aux_sym_update_host_keys_token1] = ACTIONS(1659), - [aux_sym_use_keychain_token1] = ACTIONS(1659), - [aux_sym_use_roaming_token1] = ACTIONS(1659), - [aux_sym_user_token1] = ACTIONS(1661), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1659), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1659), - [aux_sym_visual_host_key_token1] = ACTIONS(1659), - [aux_sym_xauth_location_token1] = ACTIONS(1659), + [ts_builtin_sym_end] = ACTIONS(806), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(808), + [aux_sym_match_token1] = ACTIONS(806), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(806), + [aux_sym_address_family_token1] = ACTIONS(806), + [aux_sym_batch_mode_token1] = ACTIONS(806), + [aux_sym_bind_address_token1] = ACTIONS(806), + [aux_sym_bind_interface_token1] = ACTIONS(806), + [aux_sym_canonical_domains_token1] = ACTIONS(806), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(806), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(806), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(806), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(806), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(806), + [aux_sym_certificate_file_token1] = ACTIONS(806), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(806), + [aux_sym_check_host_ip_token1] = ACTIONS(806), + [aux_sym_ciphers_token1] = ACTIONS(806), + [aux_sym_cipher_token1] = ACTIONS(808), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(806), + [aux_sym_compression_token1] = ACTIONS(806), + [aux_sym_connection_attempts_token1] = ACTIONS(806), + [aux_sym_connect_timeout_token1] = ACTIONS(806), + [aux_sym_control_master_token1] = ACTIONS(806), + [aux_sym_control_path_token1] = ACTIONS(806), + [aux_sym_control_persist_token1] = ACTIONS(806), + [aux_sym_dynamic_forward_token1] = ACTIONS(806), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(806), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(806), + [aux_sym_escape_char_token1] = ACTIONS(806), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(806), + [aux_sym_fingerprint_hash_token1] = ACTIONS(806), + [aux_sym_fork_after_authentication_token1] = ACTIONS(806), + [aux_sym_forward_agent_token1] = ACTIONS(806), + [aux_sym_forward_x11_token1] = ACTIONS(808), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(806), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(806), + [aux_sym_gateway_ports_token1] = ACTIONS(806), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(806), + [aux_sym_gssapi_authentication_token1] = ACTIONS(806), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(806), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(806), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(806), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(806), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(806), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(806), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(806), + [aux_sym_hash_known_hosts_token1] = ACTIONS(806), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(806), + [aux_sym_hostbased_authentication_token1] = ACTIONS(806), + [aux_sym_host_key_algorithms_token1] = ACTIONS(806), + [aux_sym_host_key_alias_token1] = ACTIONS(806), + [aux_sym_hostname_token1] = ACTIONS(806), + [aux_sym_identities_only_token1] = ACTIONS(806), + [aux_sym_identity_agent_token1] = ACTIONS(806), + [aux_sym_identity_file_token1] = ACTIONS(806), + [aux_sym_ignore_unknown_token1] = ACTIONS(806), + [aux_sym_include_token1] = ACTIONS(806), + [aux_sym_ip_qos_token1] = ACTIONS(806), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(806), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(806), + [aux_sym_kex_algorithms_token1] = ACTIONS(806), + [aux_sym_known_hosts_command_token1] = ACTIONS(806), + [aux_sym_local_command_token1] = ACTIONS(806), + [aux_sym_local_forward_token1] = ACTIONS(806), + [aux_sym_log_level_token1] = ACTIONS(806), + [aux_sym_log_verbose_token1] = ACTIONS(806), + [aux_sym_macs_token1] = ACTIONS(806), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(806), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(806), + [aux_sym_password_authentication_token1] = ACTIONS(806), + [aux_sym_permit_local_command_token1] = ACTIONS(806), + [aux_sym_permit_remote_open_token1] = ACTIONS(806), + [aux_sym_pkcs11_provider_token1] = ACTIONS(806), + [aux_sym_port_token1] = ACTIONS(806), + [aux_sym_preferred_authentications_token1] = ACTIONS(806), + [aux_sym_protocol_token1] = ACTIONS(806), + [aux_sym_proxy_command_token1] = ACTIONS(806), + [aux_sym_proxy_jump_token1] = ACTIONS(806), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(806), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(806), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(806), + [aux_sym_pubkey_authentication_token1] = ACTIONS(806), + [aux_sym_rekey_limit_token1] = ACTIONS(806), + [aux_sym_remote_command_token1] = ACTIONS(806), + [aux_sym_remote_forward_token1] = ACTIONS(806), + [aux_sym_request_tty_token1] = ACTIONS(806), + [aux_sym_required_rsa_size_token1] = ACTIONS(806), + [aux_sym_revoked_host_keys_token1] = ACTIONS(806), + [aux_sym_security_key_provider_token1] = ACTIONS(806), + [aux_sym_send_env_token1] = ACTIONS(806), + [aux_sym_server_alive_count_max_token1] = ACTIONS(806), + [aux_sym_server_alive_interval_token1] = ACTIONS(806), + [aux_sym_session_type_token1] = ACTIONS(806), + [aux_sym_set_env_token1] = ACTIONS(806), + [aux_sym_stdin_null_token1] = ACTIONS(806), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(806), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(806), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(806), + [aux_sym_syslog_facility_token1] = ACTIONS(806), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(806), + [aux_sym_keep_alive_token1] = ACTIONS(806), + [aux_sym_tunnel_token1] = ACTIONS(808), + [aux_sym_tunnel_device_token1] = ACTIONS(806), + [aux_sym_update_host_keys_token1] = ACTIONS(806), + [aux_sym_use_keychain_token1] = ACTIONS(806), + [aux_sym_use_roaming_token1] = ACTIONS(806), + [aux_sym_user_token1] = ACTIONS(808), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(806), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(806), + [aux_sym_visual_host_key_token1] = ACTIONS(806), + [aux_sym_xauth_location_token1] = ACTIONS(806), }, [723] = { - [ts_builtin_sym_end] = ACTIONS(1773), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1775), - [aux_sym_match_token1] = ACTIONS(1773), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1773), - [aux_sym_address_family_token1] = ACTIONS(1773), - [aux_sym_batch_mode_token1] = ACTIONS(1773), - [aux_sym_bind_address_token1] = ACTIONS(1773), - [aux_sym_bind_interface_token1] = ACTIONS(1773), - [aux_sym_canonical_domains_token1] = ACTIONS(1773), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1773), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1773), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1773), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1773), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1773), - [aux_sym_certificate_file_token1] = ACTIONS(1773), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1773), - [aux_sym_check_host_ip_token1] = ACTIONS(1773), - [aux_sym_ciphers_token1] = ACTIONS(1773), - [aux_sym_cipher_token1] = ACTIONS(1775), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1773), - [aux_sym_compression_token1] = ACTIONS(1773), - [aux_sym_connection_attempts_token1] = ACTIONS(1773), - [aux_sym_connect_timeout_token1] = ACTIONS(1773), - [aux_sym_control_master_token1] = ACTIONS(1773), - [aux_sym_control_path_token1] = ACTIONS(1773), - [aux_sym_control_persist_token1] = ACTIONS(1773), - [aux_sym_dynamic_forward_token1] = ACTIONS(1773), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1773), - [aux_sym_escape_char_token1] = ACTIONS(1773), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1773), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1773), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1773), - [aux_sym_forward_agent_token1] = ACTIONS(1773), - [aux_sym_forward_x11_token1] = ACTIONS(1775), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1773), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1773), - [aux_sym_gateway_ports_token1] = ACTIONS(1773), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1773), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1773), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1773), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1773), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1773), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1773), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1773), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1773), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1773), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1773), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1773), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1773), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1773), - [aux_sym_host_key_alias_token1] = ACTIONS(1773), - [aux_sym_hostname_token1] = ACTIONS(1773), - [aux_sym_identities_only_token1] = ACTIONS(1773), - [aux_sym_identity_agent_token1] = ACTIONS(1773), - [aux_sym_identity_file_token1] = ACTIONS(1773), - [aux_sym_ignore_unknown_token1] = ACTIONS(1773), - [aux_sym_include_token1] = ACTIONS(1773), - [aux_sym_ip_qos_token1] = ACTIONS(1773), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1773), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1773), - [aux_sym_kex_algorithms_token1] = ACTIONS(1773), - [aux_sym_known_hosts_command_token1] = ACTIONS(1773), - [aux_sym_local_command_token1] = ACTIONS(1773), - [aux_sym_local_forward_token1] = ACTIONS(1773), - [aux_sym_log_level_token1] = ACTIONS(1773), - [aux_sym_log_verbose_token1] = ACTIONS(1773), - [aux_sym_macs_token1] = ACTIONS(1773), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1773), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1773), - [aux_sym_password_authentication_token1] = ACTIONS(1773), - [aux_sym_permit_local_command_token1] = ACTIONS(1773), - [aux_sym_permit_remote_open_token1] = ACTIONS(1773), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1773), - [aux_sym_port_token1] = ACTIONS(1773), - [aux_sym_preferred_authentications_token1] = ACTIONS(1773), - [aux_sym_protocol_token1] = ACTIONS(1773), - [aux_sym_proxy_command_token1] = ACTIONS(1773), - [aux_sym_proxy_jump_token1] = ACTIONS(1773), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1773), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1773), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1773), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1773), - [aux_sym_rekey_limit_token1] = ACTIONS(1773), - [aux_sym_remote_command_token1] = ACTIONS(1773), - [aux_sym_remote_forward_token1] = ACTIONS(1773), - [aux_sym_request_tty_token1] = ACTIONS(1773), - [aux_sym_required_rsa_size_token1] = ACTIONS(1773), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1773), - [aux_sym_security_key_provider_token1] = ACTIONS(1773), - [aux_sym_send_env_token1] = ACTIONS(1773), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1773), - [aux_sym_server_alive_interval_token1] = ACTIONS(1773), - [aux_sym_session_type_token1] = ACTIONS(1773), - [aux_sym_set_env_token1] = ACTIONS(1773), - [aux_sym_stdin_null_token1] = ACTIONS(1773), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1773), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1773), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1773), - [aux_sym_syslog_facility_token1] = ACTIONS(1773), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1773), - [aux_sym_keep_alive_token1] = ACTIONS(1773), - [aux_sym_tunnel_token1] = ACTIONS(1775), - [aux_sym_tunnel_device_token1] = ACTIONS(1773), - [aux_sym_update_host_keys_token1] = ACTIONS(1773), - [aux_sym_use_keychain_token1] = ACTIONS(1773), - [aux_sym_use_roaming_token1] = ACTIONS(1773), - [aux_sym_user_token1] = ACTIONS(1775), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1773), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1773), - [aux_sym_visual_host_key_token1] = ACTIONS(1773), - [aux_sym_xauth_location_token1] = ACTIONS(1773), + [ts_builtin_sym_end] = ACTIONS(1802), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1804), + [aux_sym_match_token1] = ACTIONS(1802), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1802), + [aux_sym_address_family_token1] = ACTIONS(1802), + [aux_sym_batch_mode_token1] = ACTIONS(1802), + [aux_sym_bind_address_token1] = ACTIONS(1802), + [aux_sym_bind_interface_token1] = ACTIONS(1802), + [aux_sym_canonical_domains_token1] = ACTIONS(1802), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1802), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1802), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1802), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1802), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1802), + [aux_sym_certificate_file_token1] = ACTIONS(1802), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1802), + [aux_sym_check_host_ip_token1] = ACTIONS(1802), + [aux_sym_ciphers_token1] = ACTIONS(1802), + [aux_sym_cipher_token1] = ACTIONS(1804), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1802), + [aux_sym_compression_token1] = ACTIONS(1802), + [aux_sym_connection_attempts_token1] = ACTIONS(1802), + [aux_sym_connect_timeout_token1] = ACTIONS(1802), + [aux_sym_control_master_token1] = ACTIONS(1802), + [aux_sym_control_path_token1] = ACTIONS(1802), + [aux_sym_control_persist_token1] = ACTIONS(1802), + [aux_sym_dynamic_forward_token1] = ACTIONS(1802), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1802), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1802), + [aux_sym_escape_char_token1] = ACTIONS(1802), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1802), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1802), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1802), + [aux_sym_forward_agent_token1] = ACTIONS(1802), + [aux_sym_forward_x11_token1] = ACTIONS(1804), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1802), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1802), + [aux_sym_gateway_ports_token1] = ACTIONS(1802), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1802), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1802), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1802), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1802), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1802), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1802), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1802), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1802), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1802), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1802), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1802), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1802), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1802), + [aux_sym_host_key_alias_token1] = ACTIONS(1802), + [aux_sym_hostname_token1] = ACTIONS(1802), + [aux_sym_identities_only_token1] = ACTIONS(1802), + [aux_sym_identity_agent_token1] = ACTIONS(1802), + [aux_sym_identity_file_token1] = ACTIONS(1802), + [aux_sym_ignore_unknown_token1] = ACTIONS(1802), + [aux_sym_include_token1] = ACTIONS(1802), + [aux_sym_ip_qos_token1] = ACTIONS(1802), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1802), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1802), + [aux_sym_kex_algorithms_token1] = ACTIONS(1802), + [aux_sym_known_hosts_command_token1] = ACTIONS(1802), + [aux_sym_local_command_token1] = ACTIONS(1802), + [aux_sym_local_forward_token1] = ACTIONS(1802), + [aux_sym_log_level_token1] = ACTIONS(1802), + [aux_sym_log_verbose_token1] = ACTIONS(1802), + [aux_sym_macs_token1] = ACTIONS(1802), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1802), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1802), + [aux_sym_password_authentication_token1] = ACTIONS(1802), + [aux_sym_permit_local_command_token1] = ACTIONS(1802), + [aux_sym_permit_remote_open_token1] = ACTIONS(1802), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1802), + [aux_sym_port_token1] = ACTIONS(1802), + [aux_sym_preferred_authentications_token1] = ACTIONS(1802), + [aux_sym_protocol_token1] = ACTIONS(1802), + [aux_sym_proxy_command_token1] = ACTIONS(1802), + [aux_sym_proxy_jump_token1] = ACTIONS(1802), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1802), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1802), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1802), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1802), + [aux_sym_rekey_limit_token1] = ACTIONS(1802), + [aux_sym_remote_command_token1] = ACTIONS(1802), + [aux_sym_remote_forward_token1] = ACTIONS(1802), + [aux_sym_request_tty_token1] = ACTIONS(1802), + [aux_sym_required_rsa_size_token1] = ACTIONS(1802), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1802), + [aux_sym_security_key_provider_token1] = ACTIONS(1802), + [aux_sym_send_env_token1] = ACTIONS(1802), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1802), + [aux_sym_server_alive_interval_token1] = ACTIONS(1802), + [aux_sym_session_type_token1] = ACTIONS(1802), + [aux_sym_set_env_token1] = ACTIONS(1802), + [aux_sym_stdin_null_token1] = ACTIONS(1802), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1802), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1802), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1802), + [aux_sym_syslog_facility_token1] = ACTIONS(1802), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1802), + [aux_sym_keep_alive_token1] = ACTIONS(1802), + [aux_sym_tunnel_token1] = ACTIONS(1804), + [aux_sym_tunnel_device_token1] = ACTIONS(1802), + [aux_sym_update_host_keys_token1] = ACTIONS(1802), + [aux_sym_use_keychain_token1] = ACTIONS(1802), + [aux_sym_use_roaming_token1] = ACTIONS(1802), + [aux_sym_user_token1] = ACTIONS(1804), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1802), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1802), + [aux_sym_visual_host_key_token1] = ACTIONS(1802), + [aux_sym_xauth_location_token1] = ACTIONS(1802), }, [724] = { - [ts_builtin_sym_end] = ACTIONS(1371), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1373), - [aux_sym_match_token1] = ACTIONS(1371), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1371), - [aux_sym_address_family_token1] = ACTIONS(1371), - [aux_sym_batch_mode_token1] = ACTIONS(1371), - [aux_sym_bind_address_token1] = ACTIONS(1371), - [aux_sym_bind_interface_token1] = ACTIONS(1371), - [aux_sym_canonical_domains_token1] = ACTIONS(1371), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1371), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1371), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1371), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1371), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1371), - [aux_sym_certificate_file_token1] = ACTIONS(1371), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1371), - [aux_sym_check_host_ip_token1] = ACTIONS(1371), - [aux_sym_ciphers_token1] = ACTIONS(1371), - [aux_sym_cipher_token1] = ACTIONS(1373), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1371), - [aux_sym_compression_token1] = ACTIONS(1371), - [aux_sym_connection_attempts_token1] = ACTIONS(1371), - [aux_sym_connect_timeout_token1] = ACTIONS(1371), - [aux_sym_control_master_token1] = ACTIONS(1371), - [aux_sym_control_path_token1] = ACTIONS(1371), - [aux_sym_control_persist_token1] = ACTIONS(1371), - [aux_sym_dynamic_forward_token1] = ACTIONS(1371), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1371), - [aux_sym_escape_char_token1] = ACTIONS(1371), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1371), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1371), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1371), - [aux_sym_forward_agent_token1] = ACTIONS(1371), - [aux_sym_forward_x11_token1] = ACTIONS(1373), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1371), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1371), - [aux_sym_gateway_ports_token1] = ACTIONS(1371), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1371), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1371), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1371), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1371), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1371), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1371), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1371), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1371), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1371), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1371), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1371), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1371), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1371), - [aux_sym_host_key_alias_token1] = ACTIONS(1371), - [aux_sym_hostname_token1] = ACTIONS(1371), - [aux_sym_identities_only_token1] = ACTIONS(1371), - [aux_sym_identity_agent_token1] = ACTIONS(1371), - [aux_sym_identity_file_token1] = ACTIONS(1371), - [aux_sym_ignore_unknown_token1] = ACTIONS(1371), - [aux_sym_include_token1] = ACTIONS(1371), - [aux_sym_ip_qos_token1] = ACTIONS(1371), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1371), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1371), - [aux_sym_kex_algorithms_token1] = ACTIONS(1371), - [aux_sym_known_hosts_command_token1] = ACTIONS(1371), - [aux_sym_local_command_token1] = ACTIONS(1371), - [aux_sym_local_forward_token1] = ACTIONS(1371), - [aux_sym_log_level_token1] = ACTIONS(1371), - [aux_sym_log_verbose_token1] = ACTIONS(1371), - [aux_sym_macs_token1] = ACTIONS(1371), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1371), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1371), - [aux_sym_password_authentication_token1] = ACTIONS(1371), - [aux_sym_permit_local_command_token1] = ACTIONS(1371), - [aux_sym_permit_remote_open_token1] = ACTIONS(1371), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1371), - [aux_sym_port_token1] = ACTIONS(1371), - [aux_sym_preferred_authentications_token1] = ACTIONS(1371), - [aux_sym_protocol_token1] = ACTIONS(1371), - [aux_sym_proxy_command_token1] = ACTIONS(1371), - [aux_sym_proxy_jump_token1] = ACTIONS(1371), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1371), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1371), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1371), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1371), - [aux_sym_rekey_limit_token1] = ACTIONS(1371), - [aux_sym_remote_command_token1] = ACTIONS(1371), - [aux_sym_remote_forward_token1] = ACTIONS(1371), - [aux_sym_request_tty_token1] = ACTIONS(1371), - [aux_sym_required_rsa_size_token1] = ACTIONS(1371), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1371), - [aux_sym_security_key_provider_token1] = ACTIONS(1371), - [aux_sym_send_env_token1] = ACTIONS(1371), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1371), - [aux_sym_server_alive_interval_token1] = ACTIONS(1371), - [aux_sym_session_type_token1] = ACTIONS(1371), - [aux_sym_set_env_token1] = ACTIONS(1371), - [aux_sym_stdin_null_token1] = ACTIONS(1371), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1371), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1371), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1371), - [aux_sym_syslog_facility_token1] = ACTIONS(1371), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1371), - [aux_sym_keep_alive_token1] = ACTIONS(1371), - [aux_sym_tunnel_token1] = ACTIONS(1373), - [aux_sym_tunnel_device_token1] = ACTIONS(1371), - [aux_sym_update_host_keys_token1] = ACTIONS(1371), - [aux_sym_use_keychain_token1] = ACTIONS(1371), - [aux_sym_use_roaming_token1] = ACTIONS(1371), - [aux_sym_user_token1] = ACTIONS(1373), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1371), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1371), - [aux_sym_visual_host_key_token1] = ACTIONS(1371), - [aux_sym_xauth_location_token1] = ACTIONS(1371), + [ts_builtin_sym_end] = ACTIONS(686), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(688), + [aux_sym_match_token1] = ACTIONS(686), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(686), + [aux_sym_address_family_token1] = ACTIONS(686), + [aux_sym_batch_mode_token1] = ACTIONS(686), + [aux_sym_bind_address_token1] = ACTIONS(686), + [aux_sym_bind_interface_token1] = ACTIONS(686), + [aux_sym_canonical_domains_token1] = ACTIONS(686), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(686), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(686), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(686), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(686), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(686), + [aux_sym_certificate_file_token1] = ACTIONS(686), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(686), + [aux_sym_check_host_ip_token1] = ACTIONS(686), + [aux_sym_ciphers_token1] = ACTIONS(686), + [aux_sym_cipher_token1] = ACTIONS(688), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(686), + [aux_sym_compression_token1] = ACTIONS(686), + [aux_sym_connection_attempts_token1] = ACTIONS(686), + [aux_sym_connect_timeout_token1] = ACTIONS(686), + [aux_sym_control_master_token1] = ACTIONS(686), + [aux_sym_control_path_token1] = ACTIONS(686), + [aux_sym_control_persist_token1] = ACTIONS(686), + [aux_sym_dynamic_forward_token1] = ACTIONS(686), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(686), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(686), + [aux_sym_escape_char_token1] = ACTIONS(686), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(686), + [aux_sym_fingerprint_hash_token1] = ACTIONS(686), + [aux_sym_fork_after_authentication_token1] = ACTIONS(686), + [aux_sym_forward_agent_token1] = ACTIONS(686), + [aux_sym_forward_x11_token1] = ACTIONS(688), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(686), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(686), + [aux_sym_gateway_ports_token1] = ACTIONS(686), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(686), + [aux_sym_gssapi_authentication_token1] = ACTIONS(686), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(686), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(686), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(686), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(686), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(686), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(686), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(686), + [aux_sym_hash_known_hosts_token1] = ACTIONS(686), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(686), + [aux_sym_hostbased_authentication_token1] = ACTIONS(686), + [aux_sym_host_key_algorithms_token1] = ACTIONS(686), + [aux_sym_host_key_alias_token1] = ACTIONS(686), + [aux_sym_hostname_token1] = ACTIONS(686), + [aux_sym_identities_only_token1] = ACTIONS(686), + [aux_sym_identity_agent_token1] = ACTIONS(686), + [aux_sym_identity_file_token1] = ACTIONS(686), + [aux_sym_ignore_unknown_token1] = ACTIONS(686), + [aux_sym_include_token1] = ACTIONS(686), + [aux_sym_ip_qos_token1] = ACTIONS(686), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(686), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(686), + [aux_sym_kex_algorithms_token1] = ACTIONS(686), + [aux_sym_known_hosts_command_token1] = ACTIONS(686), + [aux_sym_local_command_token1] = ACTIONS(686), + [aux_sym_local_forward_token1] = ACTIONS(686), + [aux_sym_log_level_token1] = ACTIONS(686), + [aux_sym_log_verbose_token1] = ACTIONS(686), + [aux_sym_macs_token1] = ACTIONS(686), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(686), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(686), + [aux_sym_password_authentication_token1] = ACTIONS(686), + [aux_sym_permit_local_command_token1] = ACTIONS(686), + [aux_sym_permit_remote_open_token1] = ACTIONS(686), + [aux_sym_pkcs11_provider_token1] = ACTIONS(686), + [aux_sym_port_token1] = ACTIONS(686), + [aux_sym_preferred_authentications_token1] = ACTIONS(686), + [aux_sym_protocol_token1] = ACTIONS(686), + [aux_sym_proxy_command_token1] = ACTIONS(686), + [aux_sym_proxy_jump_token1] = ACTIONS(686), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(686), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(686), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(686), + [aux_sym_pubkey_authentication_token1] = ACTIONS(686), + [aux_sym_rekey_limit_token1] = ACTIONS(686), + [aux_sym_remote_command_token1] = ACTIONS(686), + [aux_sym_remote_forward_token1] = ACTIONS(686), + [aux_sym_request_tty_token1] = ACTIONS(686), + [aux_sym_required_rsa_size_token1] = ACTIONS(686), + [aux_sym_revoked_host_keys_token1] = ACTIONS(686), + [aux_sym_security_key_provider_token1] = ACTIONS(686), + [aux_sym_send_env_token1] = ACTIONS(686), + [aux_sym_server_alive_count_max_token1] = ACTIONS(686), + [aux_sym_server_alive_interval_token1] = ACTIONS(686), + [aux_sym_session_type_token1] = ACTIONS(686), + [aux_sym_set_env_token1] = ACTIONS(686), + [aux_sym_stdin_null_token1] = ACTIONS(686), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(686), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(686), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(686), + [aux_sym_syslog_facility_token1] = ACTIONS(686), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(686), + [aux_sym_keep_alive_token1] = ACTIONS(686), + [aux_sym_tunnel_token1] = ACTIONS(688), + [aux_sym_tunnel_device_token1] = ACTIONS(686), + [aux_sym_update_host_keys_token1] = ACTIONS(686), + [aux_sym_use_keychain_token1] = ACTIONS(686), + [aux_sym_use_roaming_token1] = ACTIONS(686), + [aux_sym_user_token1] = ACTIONS(688), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(686), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(686), + [aux_sym_visual_host_key_token1] = ACTIONS(686), + [aux_sym_xauth_location_token1] = ACTIONS(686), }, [725] = { - [ts_builtin_sym_end] = ACTIONS(1377), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1379), - [aux_sym_match_token1] = ACTIONS(1377), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1377), - [aux_sym_address_family_token1] = ACTIONS(1377), - [aux_sym_batch_mode_token1] = ACTIONS(1377), - [aux_sym_bind_address_token1] = ACTIONS(1377), - [aux_sym_bind_interface_token1] = ACTIONS(1377), - [aux_sym_canonical_domains_token1] = ACTIONS(1377), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1377), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1377), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1377), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1377), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1377), - [aux_sym_certificate_file_token1] = ACTIONS(1377), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1377), - [aux_sym_check_host_ip_token1] = ACTIONS(1377), - [aux_sym_ciphers_token1] = ACTIONS(1377), - [aux_sym_cipher_token1] = ACTIONS(1379), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1377), - [aux_sym_compression_token1] = ACTIONS(1377), - [aux_sym_connection_attempts_token1] = ACTIONS(1377), - [aux_sym_connect_timeout_token1] = ACTIONS(1377), - [aux_sym_control_master_token1] = ACTIONS(1377), - [aux_sym_control_path_token1] = ACTIONS(1377), - [aux_sym_control_persist_token1] = ACTIONS(1377), - [aux_sym_dynamic_forward_token1] = ACTIONS(1377), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1377), - [aux_sym_escape_char_token1] = ACTIONS(1377), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1377), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1377), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1377), - [aux_sym_forward_agent_token1] = ACTIONS(1377), - [aux_sym_forward_x11_token1] = ACTIONS(1379), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1377), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1377), - [aux_sym_gateway_ports_token1] = ACTIONS(1377), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1377), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1377), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1377), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1377), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1377), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1377), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1377), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1377), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1377), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1377), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1377), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1377), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1377), - [aux_sym_host_key_alias_token1] = ACTIONS(1377), - [aux_sym_hostname_token1] = ACTIONS(1377), - [aux_sym_identities_only_token1] = ACTIONS(1377), - [aux_sym_identity_agent_token1] = ACTIONS(1377), - [aux_sym_identity_file_token1] = ACTIONS(1377), - [aux_sym_ignore_unknown_token1] = ACTIONS(1377), - [aux_sym_include_token1] = ACTIONS(1377), - [aux_sym_ip_qos_token1] = ACTIONS(1377), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1377), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1377), - [aux_sym_kex_algorithms_token1] = ACTIONS(1377), - [aux_sym_known_hosts_command_token1] = ACTIONS(1377), - [aux_sym_local_command_token1] = ACTIONS(1377), - [aux_sym_local_forward_token1] = ACTIONS(1377), - [aux_sym_log_level_token1] = ACTIONS(1377), - [aux_sym_log_verbose_token1] = ACTIONS(1377), - [aux_sym_macs_token1] = ACTIONS(1377), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1377), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1377), - [aux_sym_password_authentication_token1] = ACTIONS(1377), - [aux_sym_permit_local_command_token1] = ACTIONS(1377), - [aux_sym_permit_remote_open_token1] = ACTIONS(1377), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1377), - [aux_sym_port_token1] = ACTIONS(1377), - [aux_sym_preferred_authentications_token1] = ACTIONS(1377), - [aux_sym_protocol_token1] = ACTIONS(1377), - [aux_sym_proxy_command_token1] = ACTIONS(1377), - [aux_sym_proxy_jump_token1] = ACTIONS(1377), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1377), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1377), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1377), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1377), - [aux_sym_rekey_limit_token1] = ACTIONS(1377), - [aux_sym_remote_command_token1] = ACTIONS(1377), - [aux_sym_remote_forward_token1] = ACTIONS(1377), - [aux_sym_request_tty_token1] = ACTIONS(1377), - [aux_sym_required_rsa_size_token1] = ACTIONS(1377), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1377), - [aux_sym_security_key_provider_token1] = ACTIONS(1377), - [aux_sym_send_env_token1] = ACTIONS(1377), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1377), - [aux_sym_server_alive_interval_token1] = ACTIONS(1377), - [aux_sym_session_type_token1] = ACTIONS(1377), - [aux_sym_set_env_token1] = ACTIONS(1377), - [aux_sym_stdin_null_token1] = ACTIONS(1377), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1377), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1377), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1377), - [aux_sym_syslog_facility_token1] = ACTIONS(1377), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1377), - [aux_sym_keep_alive_token1] = ACTIONS(1377), - [aux_sym_tunnel_token1] = ACTIONS(1379), - [aux_sym_tunnel_device_token1] = ACTIONS(1377), - [aux_sym_update_host_keys_token1] = ACTIONS(1377), - [aux_sym_use_keychain_token1] = ACTIONS(1377), - [aux_sym_use_roaming_token1] = ACTIONS(1377), - [aux_sym_user_token1] = ACTIONS(1379), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1377), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1377), - [aux_sym_visual_host_key_token1] = ACTIONS(1377), - [aux_sym_xauth_location_token1] = ACTIONS(1377), + [ts_builtin_sym_end] = ACTIONS(1568), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1570), + [aux_sym_match_token1] = ACTIONS(1568), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1568), + [aux_sym_address_family_token1] = ACTIONS(1568), + [aux_sym_batch_mode_token1] = ACTIONS(1568), + [aux_sym_bind_address_token1] = ACTIONS(1568), + [aux_sym_bind_interface_token1] = ACTIONS(1568), + [aux_sym_canonical_domains_token1] = ACTIONS(1568), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1568), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1568), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1568), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1568), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1568), + [aux_sym_certificate_file_token1] = ACTIONS(1568), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1568), + [aux_sym_check_host_ip_token1] = ACTIONS(1568), + [aux_sym_ciphers_token1] = ACTIONS(1568), + [aux_sym_cipher_token1] = ACTIONS(1570), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1568), + [aux_sym_compression_token1] = ACTIONS(1568), + [aux_sym_connection_attempts_token1] = ACTIONS(1568), + [aux_sym_connect_timeout_token1] = ACTIONS(1568), + [aux_sym_control_master_token1] = ACTIONS(1568), + [aux_sym_control_path_token1] = ACTIONS(1568), + [aux_sym_control_persist_token1] = ACTIONS(1568), + [aux_sym_dynamic_forward_token1] = ACTIONS(1568), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1568), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1568), + [aux_sym_escape_char_token1] = ACTIONS(1568), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1568), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1568), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1568), + [aux_sym_forward_agent_token1] = ACTIONS(1568), + [aux_sym_forward_x11_token1] = ACTIONS(1570), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1568), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1568), + [aux_sym_gateway_ports_token1] = ACTIONS(1568), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1568), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1568), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1568), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1568), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1568), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1568), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1568), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1568), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1568), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1568), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1568), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1568), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1568), + [aux_sym_host_key_alias_token1] = ACTIONS(1568), + [aux_sym_hostname_token1] = ACTIONS(1568), + [aux_sym_identities_only_token1] = ACTIONS(1568), + [aux_sym_identity_agent_token1] = ACTIONS(1568), + [aux_sym_identity_file_token1] = ACTIONS(1568), + [aux_sym_ignore_unknown_token1] = ACTIONS(1568), + [aux_sym_include_token1] = ACTIONS(1568), + [aux_sym_ip_qos_token1] = ACTIONS(1568), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1568), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1568), + [aux_sym_kex_algorithms_token1] = ACTIONS(1568), + [aux_sym_known_hosts_command_token1] = ACTIONS(1568), + [aux_sym_local_command_token1] = ACTIONS(1568), + [aux_sym_local_forward_token1] = ACTIONS(1568), + [aux_sym_log_level_token1] = ACTIONS(1568), + [aux_sym_log_verbose_token1] = ACTIONS(1568), + [aux_sym_macs_token1] = ACTIONS(1568), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1568), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1568), + [aux_sym_password_authentication_token1] = ACTIONS(1568), + [aux_sym_permit_local_command_token1] = ACTIONS(1568), + [aux_sym_permit_remote_open_token1] = ACTIONS(1568), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1568), + [aux_sym_port_token1] = ACTIONS(1568), + [aux_sym_preferred_authentications_token1] = ACTIONS(1568), + [aux_sym_protocol_token1] = ACTIONS(1568), + [aux_sym_proxy_command_token1] = ACTIONS(1568), + [aux_sym_proxy_jump_token1] = ACTIONS(1568), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1568), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1568), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1568), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1568), + [aux_sym_rekey_limit_token1] = ACTIONS(1568), + [aux_sym_remote_command_token1] = ACTIONS(1568), + [aux_sym_remote_forward_token1] = ACTIONS(1568), + [aux_sym_request_tty_token1] = ACTIONS(1568), + [aux_sym_required_rsa_size_token1] = ACTIONS(1568), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1568), + [aux_sym_security_key_provider_token1] = ACTIONS(1568), + [aux_sym_send_env_token1] = ACTIONS(1568), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1568), + [aux_sym_server_alive_interval_token1] = ACTIONS(1568), + [aux_sym_session_type_token1] = ACTIONS(1568), + [aux_sym_set_env_token1] = ACTIONS(1568), + [aux_sym_stdin_null_token1] = ACTIONS(1568), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1568), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1568), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1568), + [aux_sym_syslog_facility_token1] = ACTIONS(1568), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1568), + [aux_sym_keep_alive_token1] = ACTIONS(1568), + [aux_sym_tunnel_token1] = ACTIONS(1570), + [aux_sym_tunnel_device_token1] = ACTIONS(1568), + [aux_sym_update_host_keys_token1] = ACTIONS(1568), + [aux_sym_use_keychain_token1] = ACTIONS(1568), + [aux_sym_use_roaming_token1] = ACTIONS(1568), + [aux_sym_user_token1] = ACTIONS(1570), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1568), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1568), + [aux_sym_visual_host_key_token1] = ACTIONS(1568), + [aux_sym_xauth_location_token1] = ACTIONS(1568), }, [726] = { - [ts_builtin_sym_end] = ACTIONS(1767), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1769), - [aux_sym_match_token1] = ACTIONS(1767), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1767), - [aux_sym_address_family_token1] = ACTIONS(1767), - [aux_sym_batch_mode_token1] = ACTIONS(1767), - [aux_sym_bind_address_token1] = ACTIONS(1767), - [aux_sym_bind_interface_token1] = ACTIONS(1767), - [aux_sym_canonical_domains_token1] = ACTIONS(1767), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1767), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1767), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1767), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1767), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1767), - [aux_sym_certificate_file_token1] = ACTIONS(1767), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1767), - [aux_sym_check_host_ip_token1] = ACTIONS(1767), - [aux_sym_ciphers_token1] = ACTIONS(1767), - [aux_sym_cipher_token1] = ACTIONS(1769), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1767), - [aux_sym_compression_token1] = ACTIONS(1767), - [aux_sym_connection_attempts_token1] = ACTIONS(1767), - [aux_sym_connect_timeout_token1] = ACTIONS(1767), - [aux_sym_control_master_token1] = ACTIONS(1767), - [aux_sym_control_path_token1] = ACTIONS(1767), - [aux_sym_control_persist_token1] = ACTIONS(1767), - [aux_sym_dynamic_forward_token1] = ACTIONS(1767), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1767), - [aux_sym_escape_char_token1] = ACTIONS(1767), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1767), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1767), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1767), - [aux_sym_forward_agent_token1] = ACTIONS(1767), - [aux_sym_forward_x11_token1] = ACTIONS(1769), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1767), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1767), - [aux_sym_gateway_ports_token1] = ACTIONS(1767), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1767), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1767), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1767), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1767), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1767), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1767), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1767), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1767), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1767), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1767), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1767), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1767), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1767), - [aux_sym_host_key_alias_token1] = ACTIONS(1767), - [aux_sym_hostname_token1] = ACTIONS(1767), - [aux_sym_identities_only_token1] = ACTIONS(1767), - [aux_sym_identity_agent_token1] = ACTIONS(1767), - [aux_sym_identity_file_token1] = ACTIONS(1767), - [aux_sym_ignore_unknown_token1] = ACTIONS(1767), - [aux_sym_include_token1] = ACTIONS(1767), - [aux_sym_ip_qos_token1] = ACTIONS(1767), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1767), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1767), - [aux_sym_kex_algorithms_token1] = ACTIONS(1767), - [aux_sym_known_hosts_command_token1] = ACTIONS(1767), - [aux_sym_local_command_token1] = ACTIONS(1767), - [aux_sym_local_forward_token1] = ACTIONS(1767), - [aux_sym_log_level_token1] = ACTIONS(1767), - [aux_sym_log_verbose_token1] = ACTIONS(1767), - [aux_sym_macs_token1] = ACTIONS(1767), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1767), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1767), - [aux_sym_password_authentication_token1] = ACTIONS(1767), - [aux_sym_permit_local_command_token1] = ACTIONS(1767), - [aux_sym_permit_remote_open_token1] = ACTIONS(1767), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1767), - [aux_sym_port_token1] = ACTIONS(1767), - [aux_sym_preferred_authentications_token1] = ACTIONS(1767), - [aux_sym_protocol_token1] = ACTIONS(1767), - [aux_sym_proxy_command_token1] = ACTIONS(1767), - [aux_sym_proxy_jump_token1] = ACTIONS(1767), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1767), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1767), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1767), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1767), - [aux_sym_rekey_limit_token1] = ACTIONS(1767), - [aux_sym_remote_command_token1] = ACTIONS(1767), - [aux_sym_remote_forward_token1] = ACTIONS(1767), - [aux_sym_request_tty_token1] = ACTIONS(1767), - [aux_sym_required_rsa_size_token1] = ACTIONS(1767), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1767), - [aux_sym_security_key_provider_token1] = ACTIONS(1767), - [aux_sym_send_env_token1] = ACTIONS(1767), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1767), - [aux_sym_server_alive_interval_token1] = ACTIONS(1767), - [aux_sym_session_type_token1] = ACTIONS(1767), - [aux_sym_set_env_token1] = ACTIONS(1767), - [aux_sym_stdin_null_token1] = ACTIONS(1767), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1767), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1767), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1767), - [aux_sym_syslog_facility_token1] = ACTIONS(1767), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1767), - [aux_sym_keep_alive_token1] = ACTIONS(1767), - [aux_sym_tunnel_token1] = ACTIONS(1769), - [aux_sym_tunnel_device_token1] = ACTIONS(1767), - [aux_sym_update_host_keys_token1] = ACTIONS(1767), - [aux_sym_use_keychain_token1] = ACTIONS(1767), - [aux_sym_use_roaming_token1] = ACTIONS(1767), - [aux_sym_user_token1] = ACTIONS(1769), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1767), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1767), - [aux_sym_visual_host_key_token1] = ACTIONS(1767), - [aux_sym_xauth_location_token1] = ACTIONS(1767), + [ts_builtin_sym_end] = ACTIONS(1796), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1798), + [aux_sym_match_token1] = ACTIONS(1796), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1796), + [aux_sym_address_family_token1] = ACTIONS(1796), + [aux_sym_batch_mode_token1] = ACTIONS(1796), + [aux_sym_bind_address_token1] = ACTIONS(1796), + [aux_sym_bind_interface_token1] = ACTIONS(1796), + [aux_sym_canonical_domains_token1] = ACTIONS(1796), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1796), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1796), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1796), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1796), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1796), + [aux_sym_certificate_file_token1] = ACTIONS(1796), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1796), + [aux_sym_check_host_ip_token1] = ACTIONS(1796), + [aux_sym_ciphers_token1] = ACTIONS(1796), + [aux_sym_cipher_token1] = ACTIONS(1798), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1796), + [aux_sym_compression_token1] = ACTIONS(1796), + [aux_sym_connection_attempts_token1] = ACTIONS(1796), + [aux_sym_connect_timeout_token1] = ACTIONS(1796), + [aux_sym_control_master_token1] = ACTIONS(1796), + [aux_sym_control_path_token1] = ACTIONS(1796), + [aux_sym_control_persist_token1] = ACTIONS(1796), + [aux_sym_dynamic_forward_token1] = ACTIONS(1796), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1796), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1796), + [aux_sym_escape_char_token1] = ACTIONS(1796), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1796), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1796), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1796), + [aux_sym_forward_agent_token1] = ACTIONS(1796), + [aux_sym_forward_x11_token1] = ACTIONS(1798), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1796), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1796), + [aux_sym_gateway_ports_token1] = ACTIONS(1796), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1796), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1796), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1796), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1796), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1796), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1796), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1796), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1796), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1796), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1796), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1796), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1796), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1796), + [aux_sym_host_key_alias_token1] = ACTIONS(1796), + [aux_sym_hostname_token1] = ACTIONS(1796), + [aux_sym_identities_only_token1] = ACTIONS(1796), + [aux_sym_identity_agent_token1] = ACTIONS(1796), + [aux_sym_identity_file_token1] = ACTIONS(1796), + [aux_sym_ignore_unknown_token1] = ACTIONS(1796), + [aux_sym_include_token1] = ACTIONS(1796), + [aux_sym_ip_qos_token1] = ACTIONS(1796), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1796), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1796), + [aux_sym_kex_algorithms_token1] = ACTIONS(1796), + [aux_sym_known_hosts_command_token1] = ACTIONS(1796), + [aux_sym_local_command_token1] = ACTIONS(1796), + [aux_sym_local_forward_token1] = ACTIONS(1796), + [aux_sym_log_level_token1] = ACTIONS(1796), + [aux_sym_log_verbose_token1] = ACTIONS(1796), + [aux_sym_macs_token1] = ACTIONS(1796), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1796), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1796), + [aux_sym_password_authentication_token1] = ACTIONS(1796), + [aux_sym_permit_local_command_token1] = ACTIONS(1796), + [aux_sym_permit_remote_open_token1] = ACTIONS(1796), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1796), + [aux_sym_port_token1] = ACTIONS(1796), + [aux_sym_preferred_authentications_token1] = ACTIONS(1796), + [aux_sym_protocol_token1] = ACTIONS(1796), + [aux_sym_proxy_command_token1] = ACTIONS(1796), + [aux_sym_proxy_jump_token1] = ACTIONS(1796), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1796), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1796), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1796), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1796), + [aux_sym_rekey_limit_token1] = ACTIONS(1796), + [aux_sym_remote_command_token1] = ACTIONS(1796), + [aux_sym_remote_forward_token1] = ACTIONS(1796), + [aux_sym_request_tty_token1] = ACTIONS(1796), + [aux_sym_required_rsa_size_token1] = ACTIONS(1796), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1796), + [aux_sym_security_key_provider_token1] = ACTIONS(1796), + [aux_sym_send_env_token1] = ACTIONS(1796), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1796), + [aux_sym_server_alive_interval_token1] = ACTIONS(1796), + [aux_sym_session_type_token1] = ACTIONS(1796), + [aux_sym_set_env_token1] = ACTIONS(1796), + [aux_sym_stdin_null_token1] = ACTIONS(1796), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1796), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1796), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1796), + [aux_sym_syslog_facility_token1] = ACTIONS(1796), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1796), + [aux_sym_keep_alive_token1] = ACTIONS(1796), + [aux_sym_tunnel_token1] = ACTIONS(1798), + [aux_sym_tunnel_device_token1] = ACTIONS(1796), + [aux_sym_update_host_keys_token1] = ACTIONS(1796), + [aux_sym_use_keychain_token1] = ACTIONS(1796), + [aux_sym_use_roaming_token1] = ACTIONS(1796), + [aux_sym_user_token1] = ACTIONS(1798), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1796), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1796), + [aux_sym_visual_host_key_token1] = ACTIONS(1796), + [aux_sym_xauth_location_token1] = ACTIONS(1796), }, [727] = { - [ts_builtin_sym_end] = ACTIONS(1383), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1385), - [aux_sym_match_token1] = ACTIONS(1383), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1383), - [aux_sym_address_family_token1] = ACTIONS(1383), - [aux_sym_batch_mode_token1] = ACTIONS(1383), - [aux_sym_bind_address_token1] = ACTIONS(1383), - [aux_sym_bind_interface_token1] = ACTIONS(1383), - [aux_sym_canonical_domains_token1] = ACTIONS(1383), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1383), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1383), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1383), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1383), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1383), - [aux_sym_certificate_file_token1] = ACTIONS(1383), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1383), - [aux_sym_check_host_ip_token1] = ACTIONS(1383), - [aux_sym_ciphers_token1] = ACTIONS(1383), - [aux_sym_cipher_token1] = ACTIONS(1385), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1383), - [aux_sym_compression_token1] = ACTIONS(1383), - [aux_sym_connection_attempts_token1] = ACTIONS(1383), - [aux_sym_connect_timeout_token1] = ACTIONS(1383), - [aux_sym_control_master_token1] = ACTIONS(1383), - [aux_sym_control_path_token1] = ACTIONS(1383), - [aux_sym_control_persist_token1] = ACTIONS(1383), - [aux_sym_dynamic_forward_token1] = ACTIONS(1383), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1383), - [aux_sym_escape_char_token1] = ACTIONS(1383), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1383), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1383), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1383), - [aux_sym_forward_agent_token1] = ACTIONS(1383), - [aux_sym_forward_x11_token1] = ACTIONS(1385), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1383), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1383), - [aux_sym_gateway_ports_token1] = ACTIONS(1383), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1383), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1383), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1383), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1383), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1383), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1383), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1383), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1383), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1383), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1383), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1383), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1383), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1383), - [aux_sym_host_key_alias_token1] = ACTIONS(1383), - [aux_sym_hostname_token1] = ACTIONS(1383), - [aux_sym_identities_only_token1] = ACTIONS(1383), - [aux_sym_identity_agent_token1] = ACTIONS(1383), - [aux_sym_identity_file_token1] = ACTIONS(1383), - [aux_sym_ignore_unknown_token1] = ACTIONS(1383), - [aux_sym_include_token1] = ACTIONS(1383), - [aux_sym_ip_qos_token1] = ACTIONS(1383), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1383), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1383), - [aux_sym_kex_algorithms_token1] = ACTIONS(1383), - [aux_sym_known_hosts_command_token1] = ACTIONS(1383), - [aux_sym_local_command_token1] = ACTIONS(1383), - [aux_sym_local_forward_token1] = ACTIONS(1383), - [aux_sym_log_level_token1] = ACTIONS(1383), - [aux_sym_log_verbose_token1] = ACTIONS(1383), - [aux_sym_macs_token1] = ACTIONS(1383), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1383), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1383), - [aux_sym_password_authentication_token1] = ACTIONS(1383), - [aux_sym_permit_local_command_token1] = ACTIONS(1383), - [aux_sym_permit_remote_open_token1] = ACTIONS(1383), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1383), - [aux_sym_port_token1] = ACTIONS(1383), - [aux_sym_preferred_authentications_token1] = ACTIONS(1383), - [aux_sym_protocol_token1] = ACTIONS(1383), - [aux_sym_proxy_command_token1] = ACTIONS(1383), - [aux_sym_proxy_jump_token1] = ACTIONS(1383), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1383), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1383), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1383), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1383), - [aux_sym_rekey_limit_token1] = ACTIONS(1383), - [aux_sym_remote_command_token1] = ACTIONS(1383), - [aux_sym_remote_forward_token1] = ACTIONS(1383), - [aux_sym_request_tty_token1] = ACTIONS(1383), - [aux_sym_required_rsa_size_token1] = ACTIONS(1383), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1383), - [aux_sym_security_key_provider_token1] = ACTIONS(1383), - [aux_sym_send_env_token1] = ACTIONS(1383), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1383), - [aux_sym_server_alive_interval_token1] = ACTIONS(1383), - [aux_sym_session_type_token1] = ACTIONS(1383), - [aux_sym_set_env_token1] = ACTIONS(1383), - [aux_sym_stdin_null_token1] = ACTIONS(1383), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1383), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1383), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1383), - [aux_sym_syslog_facility_token1] = ACTIONS(1383), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1383), - [aux_sym_keep_alive_token1] = ACTIONS(1383), - [aux_sym_tunnel_token1] = ACTIONS(1385), - [aux_sym_tunnel_device_token1] = ACTIONS(1383), - [aux_sym_update_host_keys_token1] = ACTIONS(1383), - [aux_sym_use_keychain_token1] = ACTIONS(1383), - [aux_sym_use_roaming_token1] = ACTIONS(1383), - [aux_sym_user_token1] = ACTIONS(1385), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1383), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1383), - [aux_sym_visual_host_key_token1] = ACTIONS(1383), - [aux_sym_xauth_location_token1] = ACTIONS(1383), + [ts_builtin_sym_end] = ACTIONS(800), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(802), + [aux_sym_match_token1] = ACTIONS(800), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(800), + [aux_sym_address_family_token1] = ACTIONS(800), + [aux_sym_batch_mode_token1] = ACTIONS(800), + [aux_sym_bind_address_token1] = ACTIONS(800), + [aux_sym_bind_interface_token1] = ACTIONS(800), + [aux_sym_canonical_domains_token1] = ACTIONS(800), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(800), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(800), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(800), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(800), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(800), + [aux_sym_certificate_file_token1] = ACTIONS(800), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(800), + [aux_sym_check_host_ip_token1] = ACTIONS(800), + [aux_sym_ciphers_token1] = ACTIONS(800), + [aux_sym_cipher_token1] = ACTIONS(802), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(800), + [aux_sym_compression_token1] = ACTIONS(800), + [aux_sym_connection_attempts_token1] = ACTIONS(800), + [aux_sym_connect_timeout_token1] = ACTIONS(800), + [aux_sym_control_master_token1] = ACTIONS(800), + [aux_sym_control_path_token1] = ACTIONS(800), + [aux_sym_control_persist_token1] = ACTIONS(800), + [aux_sym_dynamic_forward_token1] = ACTIONS(800), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(800), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(800), + [aux_sym_escape_char_token1] = ACTIONS(800), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(800), + [aux_sym_fingerprint_hash_token1] = ACTIONS(800), + [aux_sym_fork_after_authentication_token1] = ACTIONS(800), + [aux_sym_forward_agent_token1] = ACTIONS(800), + [aux_sym_forward_x11_token1] = ACTIONS(802), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(800), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(800), + [aux_sym_gateway_ports_token1] = ACTIONS(800), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(800), + [aux_sym_gssapi_authentication_token1] = ACTIONS(800), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(800), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(800), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(800), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(800), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(800), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(800), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(800), + [aux_sym_hash_known_hosts_token1] = ACTIONS(800), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(800), + [aux_sym_hostbased_authentication_token1] = ACTIONS(800), + [aux_sym_host_key_algorithms_token1] = ACTIONS(800), + [aux_sym_host_key_alias_token1] = ACTIONS(800), + [aux_sym_hostname_token1] = ACTIONS(800), + [aux_sym_identities_only_token1] = ACTIONS(800), + [aux_sym_identity_agent_token1] = ACTIONS(800), + [aux_sym_identity_file_token1] = ACTIONS(800), + [aux_sym_ignore_unknown_token1] = ACTIONS(800), + [aux_sym_include_token1] = ACTIONS(800), + [aux_sym_ip_qos_token1] = ACTIONS(800), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(800), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(800), + [aux_sym_kex_algorithms_token1] = ACTIONS(800), + [aux_sym_known_hosts_command_token1] = ACTIONS(800), + [aux_sym_local_command_token1] = ACTIONS(800), + [aux_sym_local_forward_token1] = ACTIONS(800), + [aux_sym_log_level_token1] = ACTIONS(800), + [aux_sym_log_verbose_token1] = ACTIONS(800), + [aux_sym_macs_token1] = ACTIONS(800), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(800), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(800), + [aux_sym_password_authentication_token1] = ACTIONS(800), + [aux_sym_permit_local_command_token1] = ACTIONS(800), + [aux_sym_permit_remote_open_token1] = ACTIONS(800), + [aux_sym_pkcs11_provider_token1] = ACTIONS(800), + [aux_sym_port_token1] = ACTIONS(800), + [aux_sym_preferred_authentications_token1] = ACTIONS(800), + [aux_sym_protocol_token1] = ACTIONS(800), + [aux_sym_proxy_command_token1] = ACTIONS(800), + [aux_sym_proxy_jump_token1] = ACTIONS(800), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(800), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(800), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(800), + [aux_sym_pubkey_authentication_token1] = ACTIONS(800), + [aux_sym_rekey_limit_token1] = ACTIONS(800), + [aux_sym_remote_command_token1] = ACTIONS(800), + [aux_sym_remote_forward_token1] = ACTIONS(800), + [aux_sym_request_tty_token1] = ACTIONS(800), + [aux_sym_required_rsa_size_token1] = ACTIONS(800), + [aux_sym_revoked_host_keys_token1] = ACTIONS(800), + [aux_sym_security_key_provider_token1] = ACTIONS(800), + [aux_sym_send_env_token1] = ACTIONS(800), + [aux_sym_server_alive_count_max_token1] = ACTIONS(800), + [aux_sym_server_alive_interval_token1] = ACTIONS(800), + [aux_sym_session_type_token1] = ACTIONS(800), + [aux_sym_set_env_token1] = ACTIONS(800), + [aux_sym_stdin_null_token1] = ACTIONS(800), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(800), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(800), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(800), + [aux_sym_syslog_facility_token1] = ACTIONS(800), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(800), + [aux_sym_keep_alive_token1] = ACTIONS(800), + [aux_sym_tunnel_token1] = ACTIONS(802), + [aux_sym_tunnel_device_token1] = ACTIONS(800), + [aux_sym_update_host_keys_token1] = ACTIONS(800), + [aux_sym_use_keychain_token1] = ACTIONS(800), + [aux_sym_use_roaming_token1] = ACTIONS(800), + [aux_sym_user_token1] = ACTIONS(802), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(800), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(800), + [aux_sym_visual_host_key_token1] = ACTIONS(800), + [aux_sym_xauth_location_token1] = ACTIONS(800), }, [728] = { - [ts_builtin_sym_end] = ACTIONS(1389), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1391), - [aux_sym_match_token1] = ACTIONS(1389), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1389), - [aux_sym_address_family_token1] = ACTIONS(1389), - [aux_sym_batch_mode_token1] = ACTIONS(1389), - [aux_sym_bind_address_token1] = ACTIONS(1389), - [aux_sym_bind_interface_token1] = ACTIONS(1389), - [aux_sym_canonical_domains_token1] = ACTIONS(1389), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1389), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1389), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1389), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1389), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1389), - [aux_sym_certificate_file_token1] = ACTIONS(1389), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1389), - [aux_sym_check_host_ip_token1] = ACTIONS(1389), - [aux_sym_ciphers_token1] = ACTIONS(1389), - [aux_sym_cipher_token1] = ACTIONS(1391), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1389), - [aux_sym_compression_token1] = ACTIONS(1389), - [aux_sym_connection_attempts_token1] = ACTIONS(1389), - [aux_sym_connect_timeout_token1] = ACTIONS(1389), - [aux_sym_control_master_token1] = ACTIONS(1389), - [aux_sym_control_path_token1] = ACTIONS(1389), - [aux_sym_control_persist_token1] = ACTIONS(1389), - [aux_sym_dynamic_forward_token1] = ACTIONS(1389), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1389), - [aux_sym_escape_char_token1] = ACTIONS(1389), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1389), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1389), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1389), - [aux_sym_forward_agent_token1] = ACTIONS(1389), - [aux_sym_forward_x11_token1] = ACTIONS(1391), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1389), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1389), - [aux_sym_gateway_ports_token1] = ACTIONS(1389), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1389), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1389), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1389), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1389), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1389), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1389), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1389), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1389), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1389), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1389), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1389), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1389), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1389), - [aux_sym_host_key_alias_token1] = ACTIONS(1389), - [aux_sym_hostname_token1] = ACTIONS(1389), - [aux_sym_identities_only_token1] = ACTIONS(1389), - [aux_sym_identity_agent_token1] = ACTIONS(1389), - [aux_sym_identity_file_token1] = ACTIONS(1389), - [aux_sym_ignore_unknown_token1] = ACTIONS(1389), - [aux_sym_include_token1] = ACTIONS(1389), - [aux_sym_ip_qos_token1] = ACTIONS(1389), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1389), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1389), - [aux_sym_kex_algorithms_token1] = ACTIONS(1389), - [aux_sym_known_hosts_command_token1] = ACTIONS(1389), - [aux_sym_local_command_token1] = ACTIONS(1389), - [aux_sym_local_forward_token1] = ACTIONS(1389), - [aux_sym_log_level_token1] = ACTIONS(1389), - [aux_sym_log_verbose_token1] = ACTIONS(1389), - [aux_sym_macs_token1] = ACTIONS(1389), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1389), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1389), - [aux_sym_password_authentication_token1] = ACTIONS(1389), - [aux_sym_permit_local_command_token1] = ACTIONS(1389), - [aux_sym_permit_remote_open_token1] = ACTIONS(1389), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1389), - [aux_sym_port_token1] = ACTIONS(1389), - [aux_sym_preferred_authentications_token1] = ACTIONS(1389), - [aux_sym_protocol_token1] = ACTIONS(1389), - [aux_sym_proxy_command_token1] = ACTIONS(1389), - [aux_sym_proxy_jump_token1] = ACTIONS(1389), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1389), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1389), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1389), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1389), - [aux_sym_rekey_limit_token1] = ACTIONS(1389), - [aux_sym_remote_command_token1] = ACTIONS(1389), - [aux_sym_remote_forward_token1] = ACTIONS(1389), - [aux_sym_request_tty_token1] = ACTIONS(1389), - [aux_sym_required_rsa_size_token1] = ACTIONS(1389), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1389), - [aux_sym_security_key_provider_token1] = ACTIONS(1389), - [aux_sym_send_env_token1] = ACTIONS(1389), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1389), - [aux_sym_server_alive_interval_token1] = ACTIONS(1389), - [aux_sym_session_type_token1] = ACTIONS(1389), - [aux_sym_set_env_token1] = ACTIONS(1389), - [aux_sym_stdin_null_token1] = ACTIONS(1389), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1389), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1389), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1389), - [aux_sym_syslog_facility_token1] = ACTIONS(1389), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1389), - [aux_sym_keep_alive_token1] = ACTIONS(1389), - [aux_sym_tunnel_token1] = ACTIONS(1391), - [aux_sym_tunnel_device_token1] = ACTIONS(1389), - [aux_sym_update_host_keys_token1] = ACTIONS(1389), - [aux_sym_use_keychain_token1] = ACTIONS(1389), - [aux_sym_use_roaming_token1] = ACTIONS(1389), - [aux_sym_user_token1] = ACTIONS(1391), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1389), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1389), - [aux_sym_visual_host_key_token1] = ACTIONS(1389), - [aux_sym_xauth_location_token1] = ACTIONS(1389), + [ts_builtin_sym_end] = ACTIONS(1574), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1576), + [aux_sym_match_token1] = ACTIONS(1574), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1574), + [aux_sym_address_family_token1] = ACTIONS(1574), + [aux_sym_batch_mode_token1] = ACTIONS(1574), + [aux_sym_bind_address_token1] = ACTIONS(1574), + [aux_sym_bind_interface_token1] = ACTIONS(1574), + [aux_sym_canonical_domains_token1] = ACTIONS(1574), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1574), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1574), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1574), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1574), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1574), + [aux_sym_certificate_file_token1] = ACTIONS(1574), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1574), + [aux_sym_check_host_ip_token1] = ACTIONS(1574), + [aux_sym_ciphers_token1] = ACTIONS(1574), + [aux_sym_cipher_token1] = ACTIONS(1576), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1574), + [aux_sym_compression_token1] = ACTIONS(1574), + [aux_sym_connection_attempts_token1] = ACTIONS(1574), + [aux_sym_connect_timeout_token1] = ACTIONS(1574), + [aux_sym_control_master_token1] = ACTIONS(1574), + [aux_sym_control_path_token1] = ACTIONS(1574), + [aux_sym_control_persist_token1] = ACTIONS(1574), + [aux_sym_dynamic_forward_token1] = ACTIONS(1574), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1574), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1574), + [aux_sym_escape_char_token1] = ACTIONS(1574), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1574), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1574), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1574), + [aux_sym_forward_agent_token1] = ACTIONS(1574), + [aux_sym_forward_x11_token1] = ACTIONS(1576), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1574), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1574), + [aux_sym_gateway_ports_token1] = ACTIONS(1574), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1574), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1574), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1574), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1574), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1574), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1574), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1574), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1574), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1574), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1574), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1574), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1574), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1574), + [aux_sym_host_key_alias_token1] = ACTIONS(1574), + [aux_sym_hostname_token1] = ACTIONS(1574), + [aux_sym_identities_only_token1] = ACTIONS(1574), + [aux_sym_identity_agent_token1] = ACTIONS(1574), + [aux_sym_identity_file_token1] = ACTIONS(1574), + [aux_sym_ignore_unknown_token1] = ACTIONS(1574), + [aux_sym_include_token1] = ACTIONS(1574), + [aux_sym_ip_qos_token1] = ACTIONS(1574), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1574), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1574), + [aux_sym_kex_algorithms_token1] = ACTIONS(1574), + [aux_sym_known_hosts_command_token1] = ACTIONS(1574), + [aux_sym_local_command_token1] = ACTIONS(1574), + [aux_sym_local_forward_token1] = ACTIONS(1574), + [aux_sym_log_level_token1] = ACTIONS(1574), + [aux_sym_log_verbose_token1] = ACTIONS(1574), + [aux_sym_macs_token1] = ACTIONS(1574), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1574), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1574), + [aux_sym_password_authentication_token1] = ACTIONS(1574), + [aux_sym_permit_local_command_token1] = ACTIONS(1574), + [aux_sym_permit_remote_open_token1] = ACTIONS(1574), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1574), + [aux_sym_port_token1] = ACTIONS(1574), + [aux_sym_preferred_authentications_token1] = ACTIONS(1574), + [aux_sym_protocol_token1] = ACTIONS(1574), + [aux_sym_proxy_command_token1] = ACTIONS(1574), + [aux_sym_proxy_jump_token1] = ACTIONS(1574), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1574), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1574), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1574), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1574), + [aux_sym_rekey_limit_token1] = ACTIONS(1574), + [aux_sym_remote_command_token1] = ACTIONS(1574), + [aux_sym_remote_forward_token1] = ACTIONS(1574), + [aux_sym_request_tty_token1] = ACTIONS(1574), + [aux_sym_required_rsa_size_token1] = ACTIONS(1574), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1574), + [aux_sym_security_key_provider_token1] = ACTIONS(1574), + [aux_sym_send_env_token1] = ACTIONS(1574), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1574), + [aux_sym_server_alive_interval_token1] = ACTIONS(1574), + [aux_sym_session_type_token1] = ACTIONS(1574), + [aux_sym_set_env_token1] = ACTIONS(1574), + [aux_sym_stdin_null_token1] = ACTIONS(1574), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1574), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1574), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1574), + [aux_sym_syslog_facility_token1] = ACTIONS(1574), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1574), + [aux_sym_keep_alive_token1] = ACTIONS(1574), + [aux_sym_tunnel_token1] = ACTIONS(1576), + [aux_sym_tunnel_device_token1] = ACTIONS(1574), + [aux_sym_update_host_keys_token1] = ACTIONS(1574), + [aux_sym_use_keychain_token1] = ACTIONS(1574), + [aux_sym_use_roaming_token1] = ACTIONS(1574), + [aux_sym_user_token1] = ACTIONS(1576), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1574), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1574), + [aux_sym_visual_host_key_token1] = ACTIONS(1574), + [aux_sym_xauth_location_token1] = ACTIONS(1574), }, [729] = { - [ts_builtin_sym_end] = ACTIONS(1761), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1763), - [aux_sym_match_token1] = ACTIONS(1761), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1761), - [aux_sym_address_family_token1] = ACTIONS(1761), - [aux_sym_batch_mode_token1] = ACTIONS(1761), - [aux_sym_bind_address_token1] = ACTIONS(1761), - [aux_sym_bind_interface_token1] = ACTIONS(1761), - [aux_sym_canonical_domains_token1] = ACTIONS(1761), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1761), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1761), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1761), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1761), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1761), - [aux_sym_certificate_file_token1] = ACTIONS(1761), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1761), - [aux_sym_check_host_ip_token1] = ACTIONS(1761), - [aux_sym_ciphers_token1] = ACTIONS(1761), - [aux_sym_cipher_token1] = ACTIONS(1763), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1761), - [aux_sym_compression_token1] = ACTIONS(1761), - [aux_sym_connection_attempts_token1] = ACTIONS(1761), - [aux_sym_connect_timeout_token1] = ACTIONS(1761), - [aux_sym_control_master_token1] = ACTIONS(1761), - [aux_sym_control_path_token1] = ACTIONS(1761), - [aux_sym_control_persist_token1] = ACTIONS(1761), - [aux_sym_dynamic_forward_token1] = ACTIONS(1761), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1761), - [aux_sym_escape_char_token1] = ACTIONS(1761), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1761), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1761), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1761), - [aux_sym_forward_agent_token1] = ACTIONS(1761), - [aux_sym_forward_x11_token1] = ACTIONS(1763), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1761), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1761), - [aux_sym_gateway_ports_token1] = ACTIONS(1761), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1761), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1761), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1761), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1761), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1761), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1761), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1761), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1761), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1761), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1761), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1761), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1761), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1761), - [aux_sym_host_key_alias_token1] = ACTIONS(1761), - [aux_sym_hostname_token1] = ACTIONS(1761), - [aux_sym_identities_only_token1] = ACTIONS(1761), - [aux_sym_identity_agent_token1] = ACTIONS(1761), - [aux_sym_identity_file_token1] = ACTIONS(1761), - [aux_sym_ignore_unknown_token1] = ACTIONS(1761), - [aux_sym_include_token1] = ACTIONS(1761), - [aux_sym_ip_qos_token1] = ACTIONS(1761), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1761), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1761), - [aux_sym_kex_algorithms_token1] = ACTIONS(1761), - [aux_sym_known_hosts_command_token1] = ACTIONS(1761), - [aux_sym_local_command_token1] = ACTIONS(1761), - [aux_sym_local_forward_token1] = ACTIONS(1761), - [aux_sym_log_level_token1] = ACTIONS(1761), - [aux_sym_log_verbose_token1] = ACTIONS(1761), - [aux_sym_macs_token1] = ACTIONS(1761), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1761), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1761), - [aux_sym_password_authentication_token1] = ACTIONS(1761), - [aux_sym_permit_local_command_token1] = ACTIONS(1761), - [aux_sym_permit_remote_open_token1] = ACTIONS(1761), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1761), - [aux_sym_port_token1] = ACTIONS(1761), - [aux_sym_preferred_authentications_token1] = ACTIONS(1761), - [aux_sym_protocol_token1] = ACTIONS(1761), - [aux_sym_proxy_command_token1] = ACTIONS(1761), - [aux_sym_proxy_jump_token1] = ACTIONS(1761), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1761), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1761), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1761), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1761), - [aux_sym_rekey_limit_token1] = ACTIONS(1761), - [aux_sym_remote_command_token1] = ACTIONS(1761), - [aux_sym_remote_forward_token1] = ACTIONS(1761), - [aux_sym_request_tty_token1] = ACTIONS(1761), - [aux_sym_required_rsa_size_token1] = ACTIONS(1761), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1761), - [aux_sym_security_key_provider_token1] = ACTIONS(1761), - [aux_sym_send_env_token1] = ACTIONS(1761), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1761), - [aux_sym_server_alive_interval_token1] = ACTIONS(1761), - [aux_sym_session_type_token1] = ACTIONS(1761), - [aux_sym_set_env_token1] = ACTIONS(1761), - [aux_sym_stdin_null_token1] = ACTIONS(1761), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1761), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1761), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1761), - [aux_sym_syslog_facility_token1] = ACTIONS(1761), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1761), - [aux_sym_keep_alive_token1] = ACTIONS(1761), - [aux_sym_tunnel_token1] = ACTIONS(1763), - [aux_sym_tunnel_device_token1] = ACTIONS(1761), - [aux_sym_update_host_keys_token1] = ACTIONS(1761), - [aux_sym_use_keychain_token1] = ACTIONS(1761), - [aux_sym_use_roaming_token1] = ACTIONS(1761), - [aux_sym_user_token1] = ACTIONS(1763), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1761), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1761), - [aux_sym_visual_host_key_token1] = ACTIONS(1761), - [aux_sym_xauth_location_token1] = ACTIONS(1761), + [ts_builtin_sym_end] = ACTIONS(1790), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1792), + [aux_sym_match_token1] = ACTIONS(1790), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1790), + [aux_sym_address_family_token1] = ACTIONS(1790), + [aux_sym_batch_mode_token1] = ACTIONS(1790), + [aux_sym_bind_address_token1] = ACTIONS(1790), + [aux_sym_bind_interface_token1] = ACTIONS(1790), + [aux_sym_canonical_domains_token1] = ACTIONS(1790), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1790), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1790), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1790), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1790), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1790), + [aux_sym_certificate_file_token1] = ACTIONS(1790), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1790), + [aux_sym_check_host_ip_token1] = ACTIONS(1790), + [aux_sym_ciphers_token1] = ACTIONS(1790), + [aux_sym_cipher_token1] = ACTIONS(1792), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1790), + [aux_sym_compression_token1] = ACTIONS(1790), + [aux_sym_connection_attempts_token1] = ACTIONS(1790), + [aux_sym_connect_timeout_token1] = ACTIONS(1790), + [aux_sym_control_master_token1] = ACTIONS(1790), + [aux_sym_control_path_token1] = ACTIONS(1790), + [aux_sym_control_persist_token1] = ACTIONS(1790), + [aux_sym_dynamic_forward_token1] = ACTIONS(1790), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1790), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1790), + [aux_sym_escape_char_token1] = ACTIONS(1790), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1790), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1790), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1790), + [aux_sym_forward_agent_token1] = ACTIONS(1790), + [aux_sym_forward_x11_token1] = ACTIONS(1792), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1790), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1790), + [aux_sym_gateway_ports_token1] = ACTIONS(1790), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1790), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1790), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1790), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1790), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1790), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1790), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1790), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1790), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1790), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1790), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1790), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1790), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1790), + [aux_sym_host_key_alias_token1] = ACTIONS(1790), + [aux_sym_hostname_token1] = ACTIONS(1790), + [aux_sym_identities_only_token1] = ACTIONS(1790), + [aux_sym_identity_agent_token1] = ACTIONS(1790), + [aux_sym_identity_file_token1] = ACTIONS(1790), + [aux_sym_ignore_unknown_token1] = ACTIONS(1790), + [aux_sym_include_token1] = ACTIONS(1790), + [aux_sym_ip_qos_token1] = ACTIONS(1790), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1790), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1790), + [aux_sym_kex_algorithms_token1] = ACTIONS(1790), + [aux_sym_known_hosts_command_token1] = ACTIONS(1790), + [aux_sym_local_command_token1] = ACTIONS(1790), + [aux_sym_local_forward_token1] = ACTIONS(1790), + [aux_sym_log_level_token1] = ACTIONS(1790), + [aux_sym_log_verbose_token1] = ACTIONS(1790), + [aux_sym_macs_token1] = ACTIONS(1790), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1790), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1790), + [aux_sym_password_authentication_token1] = ACTIONS(1790), + [aux_sym_permit_local_command_token1] = ACTIONS(1790), + [aux_sym_permit_remote_open_token1] = ACTIONS(1790), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1790), + [aux_sym_port_token1] = ACTIONS(1790), + [aux_sym_preferred_authentications_token1] = ACTIONS(1790), + [aux_sym_protocol_token1] = ACTIONS(1790), + [aux_sym_proxy_command_token1] = ACTIONS(1790), + [aux_sym_proxy_jump_token1] = ACTIONS(1790), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1790), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1790), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1790), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1790), + [aux_sym_rekey_limit_token1] = ACTIONS(1790), + [aux_sym_remote_command_token1] = ACTIONS(1790), + [aux_sym_remote_forward_token1] = ACTIONS(1790), + [aux_sym_request_tty_token1] = ACTIONS(1790), + [aux_sym_required_rsa_size_token1] = ACTIONS(1790), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1790), + [aux_sym_security_key_provider_token1] = ACTIONS(1790), + [aux_sym_send_env_token1] = ACTIONS(1790), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1790), + [aux_sym_server_alive_interval_token1] = ACTIONS(1790), + [aux_sym_session_type_token1] = ACTIONS(1790), + [aux_sym_set_env_token1] = ACTIONS(1790), + [aux_sym_stdin_null_token1] = ACTIONS(1790), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1790), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1790), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1790), + [aux_sym_syslog_facility_token1] = ACTIONS(1790), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1790), + [aux_sym_keep_alive_token1] = ACTIONS(1790), + [aux_sym_tunnel_token1] = ACTIONS(1792), + [aux_sym_tunnel_device_token1] = ACTIONS(1790), + [aux_sym_update_host_keys_token1] = ACTIONS(1790), + [aux_sym_use_keychain_token1] = ACTIONS(1790), + [aux_sym_use_roaming_token1] = ACTIONS(1790), + [aux_sym_user_token1] = ACTIONS(1792), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1790), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1790), + [aux_sym_visual_host_key_token1] = ACTIONS(1790), + [aux_sym_xauth_location_token1] = ACTIONS(1790), }, [730] = { - [ts_builtin_sym_end] = ACTIONS(1395), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1397), - [aux_sym_match_token1] = ACTIONS(1395), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1395), - [aux_sym_address_family_token1] = ACTIONS(1395), - [aux_sym_batch_mode_token1] = ACTIONS(1395), - [aux_sym_bind_address_token1] = ACTIONS(1395), - [aux_sym_bind_interface_token1] = ACTIONS(1395), - [aux_sym_canonical_domains_token1] = ACTIONS(1395), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1395), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1395), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1395), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1395), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1395), - [aux_sym_certificate_file_token1] = ACTIONS(1395), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1395), - [aux_sym_check_host_ip_token1] = ACTIONS(1395), - [aux_sym_ciphers_token1] = ACTIONS(1395), - [aux_sym_cipher_token1] = ACTIONS(1397), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1395), - [aux_sym_compression_token1] = ACTIONS(1395), - [aux_sym_connection_attempts_token1] = ACTIONS(1395), - [aux_sym_connect_timeout_token1] = ACTIONS(1395), - [aux_sym_control_master_token1] = ACTIONS(1395), - [aux_sym_control_path_token1] = ACTIONS(1395), - [aux_sym_control_persist_token1] = ACTIONS(1395), - [aux_sym_dynamic_forward_token1] = ACTIONS(1395), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1395), - [aux_sym_escape_char_token1] = ACTIONS(1395), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1395), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1395), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1395), - [aux_sym_forward_agent_token1] = ACTIONS(1395), - [aux_sym_forward_x11_token1] = ACTIONS(1397), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1395), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1395), - [aux_sym_gateway_ports_token1] = ACTIONS(1395), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1395), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1395), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1395), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1395), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1395), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1395), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1395), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1395), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1395), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1395), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1395), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1395), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1395), - [aux_sym_host_key_alias_token1] = ACTIONS(1395), - [aux_sym_hostname_token1] = ACTIONS(1395), - [aux_sym_identities_only_token1] = ACTIONS(1395), - [aux_sym_identity_agent_token1] = ACTIONS(1395), - [aux_sym_identity_file_token1] = ACTIONS(1395), - [aux_sym_ignore_unknown_token1] = ACTIONS(1395), - [aux_sym_include_token1] = ACTIONS(1395), - [aux_sym_ip_qos_token1] = ACTIONS(1395), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1395), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1395), - [aux_sym_kex_algorithms_token1] = ACTIONS(1395), - [aux_sym_known_hosts_command_token1] = ACTIONS(1395), - [aux_sym_local_command_token1] = ACTIONS(1395), - [aux_sym_local_forward_token1] = ACTIONS(1395), - [aux_sym_log_level_token1] = ACTIONS(1395), - [aux_sym_log_verbose_token1] = ACTIONS(1395), - [aux_sym_macs_token1] = ACTIONS(1395), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1395), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1395), - [aux_sym_password_authentication_token1] = ACTIONS(1395), - [aux_sym_permit_local_command_token1] = ACTIONS(1395), - [aux_sym_permit_remote_open_token1] = ACTIONS(1395), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1395), - [aux_sym_port_token1] = ACTIONS(1395), - [aux_sym_preferred_authentications_token1] = ACTIONS(1395), - [aux_sym_protocol_token1] = ACTIONS(1395), - [aux_sym_proxy_command_token1] = ACTIONS(1395), - [aux_sym_proxy_jump_token1] = ACTIONS(1395), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1395), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1395), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1395), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1395), - [aux_sym_rekey_limit_token1] = ACTIONS(1395), - [aux_sym_remote_command_token1] = ACTIONS(1395), - [aux_sym_remote_forward_token1] = ACTIONS(1395), - [aux_sym_request_tty_token1] = ACTIONS(1395), - [aux_sym_required_rsa_size_token1] = ACTIONS(1395), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1395), - [aux_sym_security_key_provider_token1] = ACTIONS(1395), - [aux_sym_send_env_token1] = ACTIONS(1395), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1395), - [aux_sym_server_alive_interval_token1] = ACTIONS(1395), - [aux_sym_session_type_token1] = ACTIONS(1395), - [aux_sym_set_env_token1] = ACTIONS(1395), - [aux_sym_stdin_null_token1] = ACTIONS(1395), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1395), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1395), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1395), - [aux_sym_syslog_facility_token1] = ACTIONS(1395), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1395), - [aux_sym_keep_alive_token1] = ACTIONS(1395), - [aux_sym_tunnel_token1] = ACTIONS(1397), - [aux_sym_tunnel_device_token1] = ACTIONS(1395), - [aux_sym_update_host_keys_token1] = ACTIONS(1395), - [aux_sym_use_keychain_token1] = ACTIONS(1395), - [aux_sym_use_roaming_token1] = ACTIONS(1395), - [aux_sym_user_token1] = ACTIONS(1397), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1395), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1395), - [aux_sym_visual_host_key_token1] = ACTIONS(1395), - [aux_sym_xauth_location_token1] = ACTIONS(1395), + [ts_builtin_sym_end] = ACTIONS(794), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(796), + [aux_sym_match_token1] = ACTIONS(794), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(794), + [aux_sym_address_family_token1] = ACTIONS(794), + [aux_sym_batch_mode_token1] = ACTIONS(794), + [aux_sym_bind_address_token1] = ACTIONS(794), + [aux_sym_bind_interface_token1] = ACTIONS(794), + [aux_sym_canonical_domains_token1] = ACTIONS(794), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(794), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(794), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(794), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(794), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(794), + [aux_sym_certificate_file_token1] = ACTIONS(794), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(794), + [aux_sym_check_host_ip_token1] = ACTIONS(794), + [aux_sym_ciphers_token1] = ACTIONS(794), + [aux_sym_cipher_token1] = ACTIONS(796), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(794), + [aux_sym_compression_token1] = ACTIONS(794), + [aux_sym_connection_attempts_token1] = ACTIONS(794), + [aux_sym_connect_timeout_token1] = ACTIONS(794), + [aux_sym_control_master_token1] = ACTIONS(794), + [aux_sym_control_path_token1] = ACTIONS(794), + [aux_sym_control_persist_token1] = ACTIONS(794), + [aux_sym_dynamic_forward_token1] = ACTIONS(794), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(794), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(794), + [aux_sym_escape_char_token1] = ACTIONS(794), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(794), + [aux_sym_fingerprint_hash_token1] = ACTIONS(794), + [aux_sym_fork_after_authentication_token1] = ACTIONS(794), + [aux_sym_forward_agent_token1] = ACTIONS(794), + [aux_sym_forward_x11_token1] = ACTIONS(796), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(794), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(794), + [aux_sym_gateway_ports_token1] = ACTIONS(794), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(794), + [aux_sym_gssapi_authentication_token1] = ACTIONS(794), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(794), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(794), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(794), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(794), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(794), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(794), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(794), + [aux_sym_hash_known_hosts_token1] = ACTIONS(794), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(794), + [aux_sym_hostbased_authentication_token1] = ACTIONS(794), + [aux_sym_host_key_algorithms_token1] = ACTIONS(794), + [aux_sym_host_key_alias_token1] = ACTIONS(794), + [aux_sym_hostname_token1] = ACTIONS(794), + [aux_sym_identities_only_token1] = ACTIONS(794), + [aux_sym_identity_agent_token1] = ACTIONS(794), + [aux_sym_identity_file_token1] = ACTIONS(794), + [aux_sym_ignore_unknown_token1] = ACTIONS(794), + [aux_sym_include_token1] = ACTIONS(794), + [aux_sym_ip_qos_token1] = ACTIONS(794), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(794), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(794), + [aux_sym_kex_algorithms_token1] = ACTIONS(794), + [aux_sym_known_hosts_command_token1] = ACTIONS(794), + [aux_sym_local_command_token1] = ACTIONS(794), + [aux_sym_local_forward_token1] = ACTIONS(794), + [aux_sym_log_level_token1] = ACTIONS(794), + [aux_sym_log_verbose_token1] = ACTIONS(794), + [aux_sym_macs_token1] = ACTIONS(794), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(794), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(794), + [aux_sym_password_authentication_token1] = ACTIONS(794), + [aux_sym_permit_local_command_token1] = ACTIONS(794), + [aux_sym_permit_remote_open_token1] = ACTIONS(794), + [aux_sym_pkcs11_provider_token1] = ACTIONS(794), + [aux_sym_port_token1] = ACTIONS(794), + [aux_sym_preferred_authentications_token1] = ACTIONS(794), + [aux_sym_protocol_token1] = ACTIONS(794), + [aux_sym_proxy_command_token1] = ACTIONS(794), + [aux_sym_proxy_jump_token1] = ACTIONS(794), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(794), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(794), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(794), + [aux_sym_pubkey_authentication_token1] = ACTIONS(794), + [aux_sym_rekey_limit_token1] = ACTIONS(794), + [aux_sym_remote_command_token1] = ACTIONS(794), + [aux_sym_remote_forward_token1] = ACTIONS(794), + [aux_sym_request_tty_token1] = ACTIONS(794), + [aux_sym_required_rsa_size_token1] = ACTIONS(794), + [aux_sym_revoked_host_keys_token1] = ACTIONS(794), + [aux_sym_security_key_provider_token1] = ACTIONS(794), + [aux_sym_send_env_token1] = ACTIONS(794), + [aux_sym_server_alive_count_max_token1] = ACTIONS(794), + [aux_sym_server_alive_interval_token1] = ACTIONS(794), + [aux_sym_session_type_token1] = ACTIONS(794), + [aux_sym_set_env_token1] = ACTIONS(794), + [aux_sym_stdin_null_token1] = ACTIONS(794), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(794), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(794), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(794), + [aux_sym_syslog_facility_token1] = ACTIONS(794), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(794), + [aux_sym_keep_alive_token1] = ACTIONS(794), + [aux_sym_tunnel_token1] = ACTIONS(796), + [aux_sym_tunnel_device_token1] = ACTIONS(794), + [aux_sym_update_host_keys_token1] = ACTIONS(794), + [aux_sym_use_keychain_token1] = ACTIONS(794), + [aux_sym_use_roaming_token1] = ACTIONS(794), + [aux_sym_user_token1] = ACTIONS(796), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(794), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(794), + [aux_sym_visual_host_key_token1] = ACTIONS(794), + [aux_sym_xauth_location_token1] = ACTIONS(794), }, [731] = { - [ts_builtin_sym_end] = ACTIONS(1401), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1403), - [aux_sym_match_token1] = ACTIONS(1401), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1401), - [aux_sym_address_family_token1] = ACTIONS(1401), - [aux_sym_batch_mode_token1] = ACTIONS(1401), - [aux_sym_bind_address_token1] = ACTIONS(1401), - [aux_sym_bind_interface_token1] = ACTIONS(1401), - [aux_sym_canonical_domains_token1] = ACTIONS(1401), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1401), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1401), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1401), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1401), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1401), - [aux_sym_certificate_file_token1] = ACTIONS(1401), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1401), - [aux_sym_check_host_ip_token1] = ACTIONS(1401), - [aux_sym_ciphers_token1] = ACTIONS(1401), - [aux_sym_cipher_token1] = ACTIONS(1403), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1401), - [aux_sym_compression_token1] = ACTIONS(1401), - [aux_sym_connection_attempts_token1] = ACTIONS(1401), - [aux_sym_connect_timeout_token1] = ACTIONS(1401), - [aux_sym_control_master_token1] = ACTIONS(1401), - [aux_sym_control_path_token1] = ACTIONS(1401), - [aux_sym_control_persist_token1] = ACTIONS(1401), - [aux_sym_dynamic_forward_token1] = ACTIONS(1401), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1401), - [aux_sym_escape_char_token1] = ACTIONS(1401), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1401), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1401), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1401), - [aux_sym_forward_agent_token1] = ACTIONS(1401), - [aux_sym_forward_x11_token1] = ACTIONS(1403), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1401), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1401), - [aux_sym_gateway_ports_token1] = ACTIONS(1401), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1401), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1401), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1401), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1401), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1401), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1401), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1401), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1401), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1401), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1401), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1401), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1401), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1401), - [aux_sym_host_key_alias_token1] = ACTIONS(1401), - [aux_sym_hostname_token1] = ACTIONS(1401), - [aux_sym_identities_only_token1] = ACTIONS(1401), - [aux_sym_identity_agent_token1] = ACTIONS(1401), - [aux_sym_identity_file_token1] = ACTIONS(1401), - [aux_sym_ignore_unknown_token1] = ACTIONS(1401), - [aux_sym_include_token1] = ACTIONS(1401), - [aux_sym_ip_qos_token1] = ACTIONS(1401), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1401), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1401), - [aux_sym_kex_algorithms_token1] = ACTIONS(1401), - [aux_sym_known_hosts_command_token1] = ACTIONS(1401), - [aux_sym_local_command_token1] = ACTIONS(1401), - [aux_sym_local_forward_token1] = ACTIONS(1401), - [aux_sym_log_level_token1] = ACTIONS(1401), - [aux_sym_log_verbose_token1] = ACTIONS(1401), - [aux_sym_macs_token1] = ACTIONS(1401), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1401), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1401), - [aux_sym_password_authentication_token1] = ACTIONS(1401), - [aux_sym_permit_local_command_token1] = ACTIONS(1401), - [aux_sym_permit_remote_open_token1] = ACTIONS(1401), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1401), - [aux_sym_port_token1] = ACTIONS(1401), - [aux_sym_preferred_authentications_token1] = ACTIONS(1401), - [aux_sym_protocol_token1] = ACTIONS(1401), - [aux_sym_proxy_command_token1] = ACTIONS(1401), - [aux_sym_proxy_jump_token1] = ACTIONS(1401), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1401), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1401), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1401), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1401), - [aux_sym_rekey_limit_token1] = ACTIONS(1401), - [aux_sym_remote_command_token1] = ACTIONS(1401), - [aux_sym_remote_forward_token1] = ACTIONS(1401), - [aux_sym_request_tty_token1] = ACTIONS(1401), - [aux_sym_required_rsa_size_token1] = ACTIONS(1401), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1401), - [aux_sym_security_key_provider_token1] = ACTIONS(1401), - [aux_sym_send_env_token1] = ACTIONS(1401), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1401), - [aux_sym_server_alive_interval_token1] = ACTIONS(1401), - [aux_sym_session_type_token1] = ACTIONS(1401), - [aux_sym_set_env_token1] = ACTIONS(1401), - [aux_sym_stdin_null_token1] = ACTIONS(1401), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1401), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1401), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1401), - [aux_sym_syslog_facility_token1] = ACTIONS(1401), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1401), - [aux_sym_keep_alive_token1] = ACTIONS(1401), - [aux_sym_tunnel_token1] = ACTIONS(1403), - [aux_sym_tunnel_device_token1] = ACTIONS(1401), - [aux_sym_update_host_keys_token1] = ACTIONS(1401), - [aux_sym_use_keychain_token1] = ACTIONS(1401), - [aux_sym_use_roaming_token1] = ACTIONS(1401), - [aux_sym_user_token1] = ACTIONS(1403), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1401), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1401), - [aux_sym_visual_host_key_token1] = ACTIONS(1401), - [aux_sym_xauth_location_token1] = ACTIONS(1401), + [ts_builtin_sym_end] = ACTIONS(1580), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1582), + [aux_sym_match_token1] = ACTIONS(1580), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1580), + [aux_sym_address_family_token1] = ACTIONS(1580), + [aux_sym_batch_mode_token1] = ACTIONS(1580), + [aux_sym_bind_address_token1] = ACTIONS(1580), + [aux_sym_bind_interface_token1] = ACTIONS(1580), + [aux_sym_canonical_domains_token1] = ACTIONS(1580), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1580), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1580), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1580), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1580), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1580), + [aux_sym_certificate_file_token1] = ACTIONS(1580), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1580), + [aux_sym_check_host_ip_token1] = ACTIONS(1580), + [aux_sym_ciphers_token1] = ACTIONS(1580), + [aux_sym_cipher_token1] = ACTIONS(1582), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1580), + [aux_sym_compression_token1] = ACTIONS(1580), + [aux_sym_connection_attempts_token1] = ACTIONS(1580), + [aux_sym_connect_timeout_token1] = ACTIONS(1580), + [aux_sym_control_master_token1] = ACTIONS(1580), + [aux_sym_control_path_token1] = ACTIONS(1580), + [aux_sym_control_persist_token1] = ACTIONS(1580), + [aux_sym_dynamic_forward_token1] = ACTIONS(1580), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1580), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1580), + [aux_sym_escape_char_token1] = ACTIONS(1580), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1580), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1580), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1580), + [aux_sym_forward_agent_token1] = ACTIONS(1580), + [aux_sym_forward_x11_token1] = ACTIONS(1582), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1580), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1580), + [aux_sym_gateway_ports_token1] = ACTIONS(1580), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1580), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1580), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1580), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1580), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1580), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1580), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1580), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1580), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1580), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1580), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1580), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1580), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1580), + [aux_sym_host_key_alias_token1] = ACTIONS(1580), + [aux_sym_hostname_token1] = ACTIONS(1580), + [aux_sym_identities_only_token1] = ACTIONS(1580), + [aux_sym_identity_agent_token1] = ACTIONS(1580), + [aux_sym_identity_file_token1] = ACTIONS(1580), + [aux_sym_ignore_unknown_token1] = ACTIONS(1580), + [aux_sym_include_token1] = ACTIONS(1580), + [aux_sym_ip_qos_token1] = ACTIONS(1580), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1580), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1580), + [aux_sym_kex_algorithms_token1] = ACTIONS(1580), + [aux_sym_known_hosts_command_token1] = ACTIONS(1580), + [aux_sym_local_command_token1] = ACTIONS(1580), + [aux_sym_local_forward_token1] = ACTIONS(1580), + [aux_sym_log_level_token1] = ACTIONS(1580), + [aux_sym_log_verbose_token1] = ACTIONS(1580), + [aux_sym_macs_token1] = ACTIONS(1580), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1580), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1580), + [aux_sym_password_authentication_token1] = ACTIONS(1580), + [aux_sym_permit_local_command_token1] = ACTIONS(1580), + [aux_sym_permit_remote_open_token1] = ACTIONS(1580), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1580), + [aux_sym_port_token1] = ACTIONS(1580), + [aux_sym_preferred_authentications_token1] = ACTIONS(1580), + [aux_sym_protocol_token1] = ACTIONS(1580), + [aux_sym_proxy_command_token1] = ACTIONS(1580), + [aux_sym_proxy_jump_token1] = ACTIONS(1580), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1580), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1580), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1580), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1580), + [aux_sym_rekey_limit_token1] = ACTIONS(1580), + [aux_sym_remote_command_token1] = ACTIONS(1580), + [aux_sym_remote_forward_token1] = ACTIONS(1580), + [aux_sym_request_tty_token1] = ACTIONS(1580), + [aux_sym_required_rsa_size_token1] = ACTIONS(1580), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1580), + [aux_sym_security_key_provider_token1] = ACTIONS(1580), + [aux_sym_send_env_token1] = ACTIONS(1580), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1580), + [aux_sym_server_alive_interval_token1] = ACTIONS(1580), + [aux_sym_session_type_token1] = ACTIONS(1580), + [aux_sym_set_env_token1] = ACTIONS(1580), + [aux_sym_stdin_null_token1] = ACTIONS(1580), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1580), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1580), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1580), + [aux_sym_syslog_facility_token1] = ACTIONS(1580), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1580), + [aux_sym_keep_alive_token1] = ACTIONS(1580), + [aux_sym_tunnel_token1] = ACTIONS(1582), + [aux_sym_tunnel_device_token1] = ACTIONS(1580), + [aux_sym_update_host_keys_token1] = ACTIONS(1580), + [aux_sym_use_keychain_token1] = ACTIONS(1580), + [aux_sym_use_roaming_token1] = ACTIONS(1580), + [aux_sym_user_token1] = ACTIONS(1582), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1580), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1580), + [aux_sym_visual_host_key_token1] = ACTIONS(1580), + [aux_sym_xauth_location_token1] = ACTIONS(1580), }, [732] = { - [ts_builtin_sym_end] = ACTIONS(1755), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1757), - [aux_sym_match_token1] = ACTIONS(1755), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1755), - [aux_sym_address_family_token1] = ACTIONS(1755), - [aux_sym_batch_mode_token1] = ACTIONS(1755), - [aux_sym_bind_address_token1] = ACTIONS(1755), - [aux_sym_bind_interface_token1] = ACTIONS(1755), - [aux_sym_canonical_domains_token1] = ACTIONS(1755), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1755), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1755), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1755), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1755), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1755), - [aux_sym_certificate_file_token1] = ACTIONS(1755), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1755), - [aux_sym_check_host_ip_token1] = ACTIONS(1755), - [aux_sym_ciphers_token1] = ACTIONS(1755), - [aux_sym_cipher_token1] = ACTIONS(1757), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1755), - [aux_sym_compression_token1] = ACTIONS(1755), - [aux_sym_connection_attempts_token1] = ACTIONS(1755), - [aux_sym_connect_timeout_token1] = ACTIONS(1755), - [aux_sym_control_master_token1] = ACTIONS(1755), - [aux_sym_control_path_token1] = ACTIONS(1755), - [aux_sym_control_persist_token1] = ACTIONS(1755), - [aux_sym_dynamic_forward_token1] = ACTIONS(1755), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1755), - [aux_sym_escape_char_token1] = ACTIONS(1755), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1755), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1755), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1755), - [aux_sym_forward_agent_token1] = ACTIONS(1755), - [aux_sym_forward_x11_token1] = ACTIONS(1757), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1755), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1755), - [aux_sym_gateway_ports_token1] = ACTIONS(1755), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1755), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1755), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1755), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1755), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1755), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1755), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1755), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1755), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1755), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1755), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1755), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1755), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1755), - [aux_sym_host_key_alias_token1] = ACTIONS(1755), - [aux_sym_hostname_token1] = ACTIONS(1755), - [aux_sym_identities_only_token1] = ACTIONS(1755), - [aux_sym_identity_agent_token1] = ACTIONS(1755), - [aux_sym_identity_file_token1] = ACTIONS(1755), - [aux_sym_ignore_unknown_token1] = ACTIONS(1755), - [aux_sym_include_token1] = ACTIONS(1755), - [aux_sym_ip_qos_token1] = ACTIONS(1755), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1755), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1755), - [aux_sym_kex_algorithms_token1] = ACTIONS(1755), - [aux_sym_known_hosts_command_token1] = ACTIONS(1755), - [aux_sym_local_command_token1] = ACTIONS(1755), - [aux_sym_local_forward_token1] = ACTIONS(1755), - [aux_sym_log_level_token1] = ACTIONS(1755), - [aux_sym_log_verbose_token1] = ACTIONS(1755), - [aux_sym_macs_token1] = ACTIONS(1755), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1755), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1755), - [aux_sym_password_authentication_token1] = ACTIONS(1755), - [aux_sym_permit_local_command_token1] = ACTIONS(1755), - [aux_sym_permit_remote_open_token1] = ACTIONS(1755), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1755), - [aux_sym_port_token1] = ACTIONS(1755), - [aux_sym_preferred_authentications_token1] = ACTIONS(1755), - [aux_sym_protocol_token1] = ACTIONS(1755), - [aux_sym_proxy_command_token1] = ACTIONS(1755), - [aux_sym_proxy_jump_token1] = ACTIONS(1755), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1755), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1755), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1755), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1755), - [aux_sym_rekey_limit_token1] = ACTIONS(1755), - [aux_sym_remote_command_token1] = ACTIONS(1755), - [aux_sym_remote_forward_token1] = ACTIONS(1755), - [aux_sym_request_tty_token1] = ACTIONS(1755), - [aux_sym_required_rsa_size_token1] = ACTIONS(1755), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1755), - [aux_sym_security_key_provider_token1] = ACTIONS(1755), - [aux_sym_send_env_token1] = ACTIONS(1755), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1755), - [aux_sym_server_alive_interval_token1] = ACTIONS(1755), - [aux_sym_session_type_token1] = ACTIONS(1755), - [aux_sym_set_env_token1] = ACTIONS(1755), - [aux_sym_stdin_null_token1] = ACTIONS(1755), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1755), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1755), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1755), - [aux_sym_syslog_facility_token1] = ACTIONS(1755), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1755), - [aux_sym_keep_alive_token1] = ACTIONS(1755), - [aux_sym_tunnel_token1] = ACTIONS(1757), - [aux_sym_tunnel_device_token1] = ACTIONS(1755), - [aux_sym_update_host_keys_token1] = ACTIONS(1755), - [aux_sym_use_keychain_token1] = ACTIONS(1755), - [aux_sym_use_roaming_token1] = ACTIONS(1755), - [aux_sym_user_token1] = ACTIONS(1757), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1755), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1755), - [aux_sym_visual_host_key_token1] = ACTIONS(1755), - [aux_sym_xauth_location_token1] = ACTIONS(1755), + [ts_builtin_sym_end] = ACTIONS(1784), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1786), + [aux_sym_match_token1] = ACTIONS(1784), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1784), + [aux_sym_address_family_token1] = ACTIONS(1784), + [aux_sym_batch_mode_token1] = ACTIONS(1784), + [aux_sym_bind_address_token1] = ACTIONS(1784), + [aux_sym_bind_interface_token1] = ACTIONS(1784), + [aux_sym_canonical_domains_token1] = ACTIONS(1784), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1784), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1784), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1784), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1784), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1784), + [aux_sym_certificate_file_token1] = ACTIONS(1784), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1784), + [aux_sym_check_host_ip_token1] = ACTIONS(1784), + [aux_sym_ciphers_token1] = ACTIONS(1784), + [aux_sym_cipher_token1] = ACTIONS(1786), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1784), + [aux_sym_compression_token1] = ACTIONS(1784), + [aux_sym_connection_attempts_token1] = ACTIONS(1784), + [aux_sym_connect_timeout_token1] = ACTIONS(1784), + [aux_sym_control_master_token1] = ACTIONS(1784), + [aux_sym_control_path_token1] = ACTIONS(1784), + [aux_sym_control_persist_token1] = ACTIONS(1784), + [aux_sym_dynamic_forward_token1] = ACTIONS(1784), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1784), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1784), + [aux_sym_escape_char_token1] = ACTIONS(1784), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1784), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1784), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1784), + [aux_sym_forward_agent_token1] = ACTIONS(1784), + [aux_sym_forward_x11_token1] = ACTIONS(1786), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1784), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1784), + [aux_sym_gateway_ports_token1] = ACTIONS(1784), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1784), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1784), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1784), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1784), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1784), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1784), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1784), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1784), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1784), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1784), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1784), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1784), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1784), + [aux_sym_host_key_alias_token1] = ACTIONS(1784), + [aux_sym_hostname_token1] = ACTIONS(1784), + [aux_sym_identities_only_token1] = ACTIONS(1784), + [aux_sym_identity_agent_token1] = ACTIONS(1784), + [aux_sym_identity_file_token1] = ACTIONS(1784), + [aux_sym_ignore_unknown_token1] = ACTIONS(1784), + [aux_sym_include_token1] = ACTIONS(1784), + [aux_sym_ip_qos_token1] = ACTIONS(1784), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1784), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1784), + [aux_sym_kex_algorithms_token1] = ACTIONS(1784), + [aux_sym_known_hosts_command_token1] = ACTIONS(1784), + [aux_sym_local_command_token1] = ACTIONS(1784), + [aux_sym_local_forward_token1] = ACTIONS(1784), + [aux_sym_log_level_token1] = ACTIONS(1784), + [aux_sym_log_verbose_token1] = ACTIONS(1784), + [aux_sym_macs_token1] = ACTIONS(1784), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1784), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1784), + [aux_sym_password_authentication_token1] = ACTIONS(1784), + [aux_sym_permit_local_command_token1] = ACTIONS(1784), + [aux_sym_permit_remote_open_token1] = ACTIONS(1784), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1784), + [aux_sym_port_token1] = ACTIONS(1784), + [aux_sym_preferred_authentications_token1] = ACTIONS(1784), + [aux_sym_protocol_token1] = ACTIONS(1784), + [aux_sym_proxy_command_token1] = ACTIONS(1784), + [aux_sym_proxy_jump_token1] = ACTIONS(1784), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1784), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1784), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1784), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1784), + [aux_sym_rekey_limit_token1] = ACTIONS(1784), + [aux_sym_remote_command_token1] = ACTIONS(1784), + [aux_sym_remote_forward_token1] = ACTIONS(1784), + [aux_sym_request_tty_token1] = ACTIONS(1784), + [aux_sym_required_rsa_size_token1] = ACTIONS(1784), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1784), + [aux_sym_security_key_provider_token1] = ACTIONS(1784), + [aux_sym_send_env_token1] = ACTIONS(1784), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1784), + [aux_sym_server_alive_interval_token1] = ACTIONS(1784), + [aux_sym_session_type_token1] = ACTIONS(1784), + [aux_sym_set_env_token1] = ACTIONS(1784), + [aux_sym_stdin_null_token1] = ACTIONS(1784), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1784), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1784), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1784), + [aux_sym_syslog_facility_token1] = ACTIONS(1784), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1784), + [aux_sym_keep_alive_token1] = ACTIONS(1784), + [aux_sym_tunnel_token1] = ACTIONS(1786), + [aux_sym_tunnel_device_token1] = ACTIONS(1784), + [aux_sym_update_host_keys_token1] = ACTIONS(1784), + [aux_sym_use_keychain_token1] = ACTIONS(1784), + [aux_sym_use_roaming_token1] = ACTIONS(1784), + [aux_sym_user_token1] = ACTIONS(1786), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1784), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1784), + [aux_sym_visual_host_key_token1] = ACTIONS(1784), + [aux_sym_xauth_location_token1] = ACTIONS(1784), }, [733] = { - [ts_builtin_sym_end] = ACTIONS(1407), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1409), - [aux_sym_match_token1] = ACTIONS(1407), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1407), - [aux_sym_address_family_token1] = ACTIONS(1407), - [aux_sym_batch_mode_token1] = ACTIONS(1407), - [aux_sym_bind_address_token1] = ACTIONS(1407), - [aux_sym_bind_interface_token1] = ACTIONS(1407), - [aux_sym_canonical_domains_token1] = ACTIONS(1407), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1407), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1407), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1407), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1407), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1407), - [aux_sym_certificate_file_token1] = ACTIONS(1407), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1407), - [aux_sym_check_host_ip_token1] = ACTIONS(1407), - [aux_sym_ciphers_token1] = ACTIONS(1407), - [aux_sym_cipher_token1] = ACTIONS(1409), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1407), - [aux_sym_compression_token1] = ACTIONS(1407), - [aux_sym_connection_attempts_token1] = ACTIONS(1407), - [aux_sym_connect_timeout_token1] = ACTIONS(1407), - [aux_sym_control_master_token1] = ACTIONS(1407), - [aux_sym_control_path_token1] = ACTIONS(1407), - [aux_sym_control_persist_token1] = ACTIONS(1407), - [aux_sym_dynamic_forward_token1] = ACTIONS(1407), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1407), - [aux_sym_escape_char_token1] = ACTIONS(1407), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1407), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1407), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1407), - [aux_sym_forward_agent_token1] = ACTIONS(1407), - [aux_sym_forward_x11_token1] = ACTIONS(1409), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1407), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1407), - [aux_sym_gateway_ports_token1] = ACTIONS(1407), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1407), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1407), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1407), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1407), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1407), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1407), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1407), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1407), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1407), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1407), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1407), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1407), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1407), - [aux_sym_host_key_alias_token1] = ACTIONS(1407), - [aux_sym_hostname_token1] = ACTIONS(1407), - [aux_sym_identities_only_token1] = ACTIONS(1407), - [aux_sym_identity_agent_token1] = ACTIONS(1407), - [aux_sym_identity_file_token1] = ACTIONS(1407), - [aux_sym_ignore_unknown_token1] = ACTIONS(1407), - [aux_sym_include_token1] = ACTIONS(1407), - [aux_sym_ip_qos_token1] = ACTIONS(1407), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1407), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1407), - [aux_sym_kex_algorithms_token1] = ACTIONS(1407), - [aux_sym_known_hosts_command_token1] = ACTIONS(1407), - [aux_sym_local_command_token1] = ACTIONS(1407), - [aux_sym_local_forward_token1] = ACTIONS(1407), - [aux_sym_log_level_token1] = ACTIONS(1407), - [aux_sym_log_verbose_token1] = ACTIONS(1407), - [aux_sym_macs_token1] = ACTIONS(1407), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1407), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1407), - [aux_sym_password_authentication_token1] = ACTIONS(1407), - [aux_sym_permit_local_command_token1] = ACTIONS(1407), - [aux_sym_permit_remote_open_token1] = ACTIONS(1407), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1407), - [aux_sym_port_token1] = ACTIONS(1407), - [aux_sym_preferred_authentications_token1] = ACTIONS(1407), - [aux_sym_protocol_token1] = ACTIONS(1407), - [aux_sym_proxy_command_token1] = ACTIONS(1407), - [aux_sym_proxy_jump_token1] = ACTIONS(1407), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1407), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1407), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1407), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1407), - [aux_sym_rekey_limit_token1] = ACTIONS(1407), - [aux_sym_remote_command_token1] = ACTIONS(1407), - [aux_sym_remote_forward_token1] = ACTIONS(1407), - [aux_sym_request_tty_token1] = ACTIONS(1407), - [aux_sym_required_rsa_size_token1] = ACTIONS(1407), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1407), - [aux_sym_security_key_provider_token1] = ACTIONS(1407), - [aux_sym_send_env_token1] = ACTIONS(1407), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1407), - [aux_sym_server_alive_interval_token1] = ACTIONS(1407), - [aux_sym_session_type_token1] = ACTIONS(1407), - [aux_sym_set_env_token1] = ACTIONS(1407), - [aux_sym_stdin_null_token1] = ACTIONS(1407), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1407), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1407), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1407), - [aux_sym_syslog_facility_token1] = ACTIONS(1407), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1407), - [aux_sym_keep_alive_token1] = ACTIONS(1407), - [aux_sym_tunnel_token1] = ACTIONS(1409), - [aux_sym_tunnel_device_token1] = ACTIONS(1407), - [aux_sym_update_host_keys_token1] = ACTIONS(1407), - [aux_sym_use_keychain_token1] = ACTIONS(1407), - [aux_sym_use_roaming_token1] = ACTIONS(1407), - [aux_sym_user_token1] = ACTIONS(1409), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1407), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1407), - [aux_sym_visual_host_key_token1] = ACTIONS(1407), - [aux_sym_xauth_location_token1] = ACTIONS(1407), + [ts_builtin_sym_end] = ACTIONS(692), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(694), + [aux_sym_match_token1] = ACTIONS(692), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(692), + [aux_sym_address_family_token1] = ACTIONS(692), + [aux_sym_batch_mode_token1] = ACTIONS(692), + [aux_sym_bind_address_token1] = ACTIONS(692), + [aux_sym_bind_interface_token1] = ACTIONS(692), + [aux_sym_canonical_domains_token1] = ACTIONS(692), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(692), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(692), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(692), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(692), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(692), + [aux_sym_certificate_file_token1] = ACTIONS(692), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(692), + [aux_sym_check_host_ip_token1] = ACTIONS(692), + [aux_sym_ciphers_token1] = ACTIONS(692), + [aux_sym_cipher_token1] = ACTIONS(694), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(692), + [aux_sym_compression_token1] = ACTIONS(692), + [aux_sym_connection_attempts_token1] = ACTIONS(692), + [aux_sym_connect_timeout_token1] = ACTIONS(692), + [aux_sym_control_master_token1] = ACTIONS(692), + [aux_sym_control_path_token1] = ACTIONS(692), + [aux_sym_control_persist_token1] = ACTIONS(692), + [aux_sym_dynamic_forward_token1] = ACTIONS(692), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(692), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(692), + [aux_sym_escape_char_token1] = ACTIONS(692), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(692), + [aux_sym_fingerprint_hash_token1] = ACTIONS(692), + [aux_sym_fork_after_authentication_token1] = ACTIONS(692), + [aux_sym_forward_agent_token1] = ACTIONS(692), + [aux_sym_forward_x11_token1] = ACTIONS(694), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(692), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(692), + [aux_sym_gateway_ports_token1] = ACTIONS(692), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(692), + [aux_sym_gssapi_authentication_token1] = ACTIONS(692), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(692), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(692), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(692), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(692), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(692), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(692), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(692), + [aux_sym_hash_known_hosts_token1] = ACTIONS(692), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(692), + [aux_sym_hostbased_authentication_token1] = ACTIONS(692), + [aux_sym_host_key_algorithms_token1] = ACTIONS(692), + [aux_sym_host_key_alias_token1] = ACTIONS(692), + [aux_sym_hostname_token1] = ACTIONS(692), + [aux_sym_identities_only_token1] = ACTIONS(692), + [aux_sym_identity_agent_token1] = ACTIONS(692), + [aux_sym_identity_file_token1] = ACTIONS(692), + [aux_sym_ignore_unknown_token1] = ACTIONS(692), + [aux_sym_include_token1] = ACTIONS(692), + [aux_sym_ip_qos_token1] = ACTIONS(692), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(692), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(692), + [aux_sym_kex_algorithms_token1] = ACTIONS(692), + [aux_sym_known_hosts_command_token1] = ACTIONS(692), + [aux_sym_local_command_token1] = ACTIONS(692), + [aux_sym_local_forward_token1] = ACTIONS(692), + [aux_sym_log_level_token1] = ACTIONS(692), + [aux_sym_log_verbose_token1] = ACTIONS(692), + [aux_sym_macs_token1] = ACTIONS(692), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(692), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(692), + [aux_sym_password_authentication_token1] = ACTIONS(692), + [aux_sym_permit_local_command_token1] = ACTIONS(692), + [aux_sym_permit_remote_open_token1] = ACTIONS(692), + [aux_sym_pkcs11_provider_token1] = ACTIONS(692), + [aux_sym_port_token1] = ACTIONS(692), + [aux_sym_preferred_authentications_token1] = ACTIONS(692), + [aux_sym_protocol_token1] = ACTIONS(692), + [aux_sym_proxy_command_token1] = ACTIONS(692), + [aux_sym_proxy_jump_token1] = ACTIONS(692), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(692), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(692), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(692), + [aux_sym_pubkey_authentication_token1] = ACTIONS(692), + [aux_sym_rekey_limit_token1] = ACTIONS(692), + [aux_sym_remote_command_token1] = ACTIONS(692), + [aux_sym_remote_forward_token1] = ACTIONS(692), + [aux_sym_request_tty_token1] = ACTIONS(692), + [aux_sym_required_rsa_size_token1] = ACTIONS(692), + [aux_sym_revoked_host_keys_token1] = ACTIONS(692), + [aux_sym_security_key_provider_token1] = ACTIONS(692), + [aux_sym_send_env_token1] = ACTIONS(692), + [aux_sym_server_alive_count_max_token1] = ACTIONS(692), + [aux_sym_server_alive_interval_token1] = ACTIONS(692), + [aux_sym_session_type_token1] = ACTIONS(692), + [aux_sym_set_env_token1] = ACTIONS(692), + [aux_sym_stdin_null_token1] = ACTIONS(692), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(692), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(692), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(692), + [aux_sym_syslog_facility_token1] = ACTIONS(692), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(692), + [aux_sym_keep_alive_token1] = ACTIONS(692), + [aux_sym_tunnel_token1] = ACTIONS(694), + [aux_sym_tunnel_device_token1] = ACTIONS(692), + [aux_sym_update_host_keys_token1] = ACTIONS(692), + [aux_sym_use_keychain_token1] = ACTIONS(692), + [aux_sym_use_roaming_token1] = ACTIONS(692), + [aux_sym_user_token1] = ACTIONS(694), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(692), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(692), + [aux_sym_visual_host_key_token1] = ACTIONS(692), + [aux_sym_xauth_location_token1] = ACTIONS(692), }, [734] = { - [ts_builtin_sym_end] = ACTIONS(1413), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1415), - [aux_sym_match_token1] = ACTIONS(1413), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1413), - [aux_sym_address_family_token1] = ACTIONS(1413), - [aux_sym_batch_mode_token1] = ACTIONS(1413), - [aux_sym_bind_address_token1] = ACTIONS(1413), - [aux_sym_bind_interface_token1] = ACTIONS(1413), - [aux_sym_canonical_domains_token1] = ACTIONS(1413), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1413), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1413), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1413), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1413), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1413), - [aux_sym_certificate_file_token1] = ACTIONS(1413), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1413), - [aux_sym_check_host_ip_token1] = ACTIONS(1413), - [aux_sym_ciphers_token1] = ACTIONS(1413), - [aux_sym_cipher_token1] = ACTIONS(1415), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1413), - [aux_sym_compression_token1] = ACTIONS(1413), - [aux_sym_connection_attempts_token1] = ACTIONS(1413), - [aux_sym_connect_timeout_token1] = ACTIONS(1413), - [aux_sym_control_master_token1] = ACTIONS(1413), - [aux_sym_control_path_token1] = ACTIONS(1413), - [aux_sym_control_persist_token1] = ACTIONS(1413), - [aux_sym_dynamic_forward_token1] = ACTIONS(1413), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1413), - [aux_sym_escape_char_token1] = ACTIONS(1413), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1413), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1413), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1413), - [aux_sym_forward_agent_token1] = ACTIONS(1413), - [aux_sym_forward_x11_token1] = ACTIONS(1415), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1413), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1413), - [aux_sym_gateway_ports_token1] = ACTIONS(1413), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1413), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1413), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1413), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1413), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1413), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1413), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1413), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1413), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1413), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1413), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1413), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1413), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1413), - [aux_sym_host_key_alias_token1] = ACTIONS(1413), - [aux_sym_hostname_token1] = ACTIONS(1413), - [aux_sym_identities_only_token1] = ACTIONS(1413), - [aux_sym_identity_agent_token1] = ACTIONS(1413), - [aux_sym_identity_file_token1] = ACTIONS(1413), - [aux_sym_ignore_unknown_token1] = ACTIONS(1413), - [aux_sym_include_token1] = ACTIONS(1413), - [aux_sym_ip_qos_token1] = ACTIONS(1413), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1413), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1413), - [aux_sym_kex_algorithms_token1] = ACTIONS(1413), - [aux_sym_known_hosts_command_token1] = ACTIONS(1413), - [aux_sym_local_command_token1] = ACTIONS(1413), - [aux_sym_local_forward_token1] = ACTIONS(1413), - [aux_sym_log_level_token1] = ACTIONS(1413), - [aux_sym_log_verbose_token1] = ACTIONS(1413), - [aux_sym_macs_token1] = ACTIONS(1413), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1413), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1413), - [aux_sym_password_authentication_token1] = ACTIONS(1413), - [aux_sym_permit_local_command_token1] = ACTIONS(1413), - [aux_sym_permit_remote_open_token1] = ACTIONS(1413), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1413), - [aux_sym_port_token1] = ACTIONS(1413), - [aux_sym_preferred_authentications_token1] = ACTIONS(1413), - [aux_sym_protocol_token1] = ACTIONS(1413), - [aux_sym_proxy_command_token1] = ACTIONS(1413), - [aux_sym_proxy_jump_token1] = ACTIONS(1413), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1413), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1413), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1413), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1413), - [aux_sym_rekey_limit_token1] = ACTIONS(1413), - [aux_sym_remote_command_token1] = ACTIONS(1413), - [aux_sym_remote_forward_token1] = ACTIONS(1413), - [aux_sym_request_tty_token1] = ACTIONS(1413), - [aux_sym_required_rsa_size_token1] = ACTIONS(1413), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1413), - [aux_sym_security_key_provider_token1] = ACTIONS(1413), - [aux_sym_send_env_token1] = ACTIONS(1413), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1413), - [aux_sym_server_alive_interval_token1] = ACTIONS(1413), - [aux_sym_session_type_token1] = ACTIONS(1413), - [aux_sym_set_env_token1] = ACTIONS(1413), - [aux_sym_stdin_null_token1] = ACTIONS(1413), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1413), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1413), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1413), - [aux_sym_syslog_facility_token1] = ACTIONS(1413), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1413), - [aux_sym_keep_alive_token1] = ACTIONS(1413), - [aux_sym_tunnel_token1] = ACTIONS(1415), - [aux_sym_tunnel_device_token1] = ACTIONS(1413), - [aux_sym_update_host_keys_token1] = ACTIONS(1413), - [aux_sym_use_keychain_token1] = ACTIONS(1413), - [aux_sym_use_roaming_token1] = ACTIONS(1413), - [aux_sym_user_token1] = ACTIONS(1415), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1413), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1413), - [aux_sym_visual_host_key_token1] = ACTIONS(1413), - [aux_sym_xauth_location_token1] = ACTIONS(1413), + [ts_builtin_sym_end] = ACTIONS(788), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(790), + [aux_sym_match_token1] = ACTIONS(788), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(788), + [aux_sym_address_family_token1] = ACTIONS(788), + [aux_sym_batch_mode_token1] = ACTIONS(788), + [aux_sym_bind_address_token1] = ACTIONS(788), + [aux_sym_bind_interface_token1] = ACTIONS(788), + [aux_sym_canonical_domains_token1] = ACTIONS(788), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(788), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(788), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(788), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(788), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(788), + [aux_sym_certificate_file_token1] = ACTIONS(788), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(788), + [aux_sym_check_host_ip_token1] = ACTIONS(788), + [aux_sym_ciphers_token1] = ACTIONS(788), + [aux_sym_cipher_token1] = ACTIONS(790), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(788), + [aux_sym_compression_token1] = ACTIONS(788), + [aux_sym_connection_attempts_token1] = ACTIONS(788), + [aux_sym_connect_timeout_token1] = ACTIONS(788), + [aux_sym_control_master_token1] = ACTIONS(788), + [aux_sym_control_path_token1] = ACTIONS(788), + [aux_sym_control_persist_token1] = ACTIONS(788), + [aux_sym_dynamic_forward_token1] = ACTIONS(788), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(788), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(788), + [aux_sym_escape_char_token1] = ACTIONS(788), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(788), + [aux_sym_fingerprint_hash_token1] = ACTIONS(788), + [aux_sym_fork_after_authentication_token1] = ACTIONS(788), + [aux_sym_forward_agent_token1] = ACTIONS(788), + [aux_sym_forward_x11_token1] = ACTIONS(790), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(788), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(788), + [aux_sym_gateway_ports_token1] = ACTIONS(788), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(788), + [aux_sym_gssapi_authentication_token1] = ACTIONS(788), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(788), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(788), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(788), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(788), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(788), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(788), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(788), + [aux_sym_hash_known_hosts_token1] = ACTIONS(788), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(788), + [aux_sym_hostbased_authentication_token1] = ACTIONS(788), + [aux_sym_host_key_algorithms_token1] = ACTIONS(788), + [aux_sym_host_key_alias_token1] = ACTIONS(788), + [aux_sym_hostname_token1] = ACTIONS(788), + [aux_sym_identities_only_token1] = ACTIONS(788), + [aux_sym_identity_agent_token1] = ACTIONS(788), + [aux_sym_identity_file_token1] = ACTIONS(788), + [aux_sym_ignore_unknown_token1] = ACTIONS(788), + [aux_sym_include_token1] = ACTIONS(788), + [aux_sym_ip_qos_token1] = ACTIONS(788), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(788), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(788), + [aux_sym_kex_algorithms_token1] = ACTIONS(788), + [aux_sym_known_hosts_command_token1] = ACTIONS(788), + [aux_sym_local_command_token1] = ACTIONS(788), + [aux_sym_local_forward_token1] = ACTIONS(788), + [aux_sym_log_level_token1] = ACTIONS(788), + [aux_sym_log_verbose_token1] = ACTIONS(788), + [aux_sym_macs_token1] = ACTIONS(788), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(788), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(788), + [aux_sym_password_authentication_token1] = ACTIONS(788), + [aux_sym_permit_local_command_token1] = ACTIONS(788), + [aux_sym_permit_remote_open_token1] = ACTIONS(788), + [aux_sym_pkcs11_provider_token1] = ACTIONS(788), + [aux_sym_port_token1] = ACTIONS(788), + [aux_sym_preferred_authentications_token1] = ACTIONS(788), + [aux_sym_protocol_token1] = ACTIONS(788), + [aux_sym_proxy_command_token1] = ACTIONS(788), + [aux_sym_proxy_jump_token1] = ACTIONS(788), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(788), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(788), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(788), + [aux_sym_pubkey_authentication_token1] = ACTIONS(788), + [aux_sym_rekey_limit_token1] = ACTIONS(788), + [aux_sym_remote_command_token1] = ACTIONS(788), + [aux_sym_remote_forward_token1] = ACTIONS(788), + [aux_sym_request_tty_token1] = ACTIONS(788), + [aux_sym_required_rsa_size_token1] = ACTIONS(788), + [aux_sym_revoked_host_keys_token1] = ACTIONS(788), + [aux_sym_security_key_provider_token1] = ACTIONS(788), + [aux_sym_send_env_token1] = ACTIONS(788), + [aux_sym_server_alive_count_max_token1] = ACTIONS(788), + [aux_sym_server_alive_interval_token1] = ACTIONS(788), + [aux_sym_session_type_token1] = ACTIONS(788), + [aux_sym_set_env_token1] = ACTIONS(788), + [aux_sym_stdin_null_token1] = ACTIONS(788), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(788), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(788), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(788), + [aux_sym_syslog_facility_token1] = ACTIONS(788), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(788), + [aux_sym_keep_alive_token1] = ACTIONS(788), + [aux_sym_tunnel_token1] = ACTIONS(790), + [aux_sym_tunnel_device_token1] = ACTIONS(788), + [aux_sym_update_host_keys_token1] = ACTIONS(788), + [aux_sym_use_keychain_token1] = ACTIONS(788), + [aux_sym_use_roaming_token1] = ACTIONS(788), + [aux_sym_user_token1] = ACTIONS(790), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(788), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(788), + [aux_sym_visual_host_key_token1] = ACTIONS(788), + [aux_sym_xauth_location_token1] = ACTIONS(788), }, [735] = { - [ts_builtin_sym_end] = ACTIONS(1749), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1751), - [aux_sym_match_token1] = ACTIONS(1749), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1749), - [aux_sym_address_family_token1] = ACTIONS(1749), - [aux_sym_batch_mode_token1] = ACTIONS(1749), - [aux_sym_bind_address_token1] = ACTIONS(1749), - [aux_sym_bind_interface_token1] = ACTIONS(1749), - [aux_sym_canonical_domains_token1] = ACTIONS(1749), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1749), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1749), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1749), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1749), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1749), - [aux_sym_certificate_file_token1] = ACTIONS(1749), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1749), - [aux_sym_check_host_ip_token1] = ACTIONS(1749), - [aux_sym_ciphers_token1] = ACTIONS(1749), - [aux_sym_cipher_token1] = ACTIONS(1751), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1749), - [aux_sym_compression_token1] = ACTIONS(1749), - [aux_sym_connection_attempts_token1] = ACTIONS(1749), - [aux_sym_connect_timeout_token1] = ACTIONS(1749), - [aux_sym_control_master_token1] = ACTIONS(1749), - [aux_sym_control_path_token1] = ACTIONS(1749), - [aux_sym_control_persist_token1] = ACTIONS(1749), - [aux_sym_dynamic_forward_token1] = ACTIONS(1749), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1749), - [aux_sym_escape_char_token1] = ACTIONS(1749), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1749), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1749), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1749), - [aux_sym_forward_agent_token1] = ACTIONS(1749), - [aux_sym_forward_x11_token1] = ACTIONS(1751), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1749), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1749), - [aux_sym_gateway_ports_token1] = ACTIONS(1749), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1749), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1749), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1749), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1749), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1749), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1749), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1749), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1749), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1749), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1749), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1749), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1749), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1749), - [aux_sym_host_key_alias_token1] = ACTIONS(1749), - [aux_sym_hostname_token1] = ACTIONS(1749), - [aux_sym_identities_only_token1] = ACTIONS(1749), - [aux_sym_identity_agent_token1] = ACTIONS(1749), - [aux_sym_identity_file_token1] = ACTIONS(1749), - [aux_sym_ignore_unknown_token1] = ACTIONS(1749), - [aux_sym_include_token1] = ACTIONS(1749), - [aux_sym_ip_qos_token1] = ACTIONS(1749), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1749), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1749), - [aux_sym_kex_algorithms_token1] = ACTIONS(1749), - [aux_sym_known_hosts_command_token1] = ACTIONS(1749), - [aux_sym_local_command_token1] = ACTIONS(1749), - [aux_sym_local_forward_token1] = ACTIONS(1749), - [aux_sym_log_level_token1] = ACTIONS(1749), - [aux_sym_log_verbose_token1] = ACTIONS(1749), - [aux_sym_macs_token1] = ACTIONS(1749), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1749), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1749), - [aux_sym_password_authentication_token1] = ACTIONS(1749), - [aux_sym_permit_local_command_token1] = ACTIONS(1749), - [aux_sym_permit_remote_open_token1] = ACTIONS(1749), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1749), - [aux_sym_port_token1] = ACTIONS(1749), - [aux_sym_preferred_authentications_token1] = ACTIONS(1749), - [aux_sym_protocol_token1] = ACTIONS(1749), - [aux_sym_proxy_command_token1] = ACTIONS(1749), - [aux_sym_proxy_jump_token1] = ACTIONS(1749), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1749), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1749), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1749), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1749), - [aux_sym_rekey_limit_token1] = ACTIONS(1749), - [aux_sym_remote_command_token1] = ACTIONS(1749), - [aux_sym_remote_forward_token1] = ACTIONS(1749), - [aux_sym_request_tty_token1] = ACTIONS(1749), - [aux_sym_required_rsa_size_token1] = ACTIONS(1749), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1749), - [aux_sym_security_key_provider_token1] = ACTIONS(1749), - [aux_sym_send_env_token1] = ACTIONS(1749), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1749), - [aux_sym_server_alive_interval_token1] = ACTIONS(1749), - [aux_sym_session_type_token1] = ACTIONS(1749), - [aux_sym_set_env_token1] = ACTIONS(1749), - [aux_sym_stdin_null_token1] = ACTIONS(1749), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1749), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1749), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1749), - [aux_sym_syslog_facility_token1] = ACTIONS(1749), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1749), - [aux_sym_keep_alive_token1] = ACTIONS(1749), - [aux_sym_tunnel_token1] = ACTIONS(1751), - [aux_sym_tunnel_device_token1] = ACTIONS(1749), - [aux_sym_update_host_keys_token1] = ACTIONS(1749), - [aux_sym_use_keychain_token1] = ACTIONS(1749), - [aux_sym_use_roaming_token1] = ACTIONS(1749), - [aux_sym_user_token1] = ACTIONS(1751), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1749), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1749), - [aux_sym_visual_host_key_token1] = ACTIONS(1749), - [aux_sym_xauth_location_token1] = ACTIONS(1749), + [ts_builtin_sym_end] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1780), + [aux_sym_match_token1] = ACTIONS(1778), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1778), + [aux_sym_address_family_token1] = ACTIONS(1778), + [aux_sym_batch_mode_token1] = ACTIONS(1778), + [aux_sym_bind_address_token1] = ACTIONS(1778), + [aux_sym_bind_interface_token1] = ACTIONS(1778), + [aux_sym_canonical_domains_token1] = ACTIONS(1778), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1778), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1778), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1778), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1778), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1778), + [aux_sym_certificate_file_token1] = ACTIONS(1778), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1778), + [aux_sym_check_host_ip_token1] = ACTIONS(1778), + [aux_sym_ciphers_token1] = ACTIONS(1778), + [aux_sym_cipher_token1] = ACTIONS(1780), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1778), + [aux_sym_compression_token1] = ACTIONS(1778), + [aux_sym_connection_attempts_token1] = ACTIONS(1778), + [aux_sym_connect_timeout_token1] = ACTIONS(1778), + [aux_sym_control_master_token1] = ACTIONS(1778), + [aux_sym_control_path_token1] = ACTIONS(1778), + [aux_sym_control_persist_token1] = ACTIONS(1778), + [aux_sym_dynamic_forward_token1] = ACTIONS(1778), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1778), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1778), + [aux_sym_escape_char_token1] = ACTIONS(1778), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1778), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1778), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1778), + [aux_sym_forward_agent_token1] = ACTIONS(1778), + [aux_sym_forward_x11_token1] = ACTIONS(1780), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1778), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1778), + [aux_sym_gateway_ports_token1] = ACTIONS(1778), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1778), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1778), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1778), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1778), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1778), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1778), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1778), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1778), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1778), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1778), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1778), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1778), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1778), + [aux_sym_host_key_alias_token1] = ACTIONS(1778), + [aux_sym_hostname_token1] = ACTIONS(1778), + [aux_sym_identities_only_token1] = ACTIONS(1778), + [aux_sym_identity_agent_token1] = ACTIONS(1778), + [aux_sym_identity_file_token1] = ACTIONS(1778), + [aux_sym_ignore_unknown_token1] = ACTIONS(1778), + [aux_sym_include_token1] = ACTIONS(1778), + [aux_sym_ip_qos_token1] = ACTIONS(1778), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1778), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1778), + [aux_sym_kex_algorithms_token1] = ACTIONS(1778), + [aux_sym_known_hosts_command_token1] = ACTIONS(1778), + [aux_sym_local_command_token1] = ACTIONS(1778), + [aux_sym_local_forward_token1] = ACTIONS(1778), + [aux_sym_log_level_token1] = ACTIONS(1778), + [aux_sym_log_verbose_token1] = ACTIONS(1778), + [aux_sym_macs_token1] = ACTIONS(1778), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1778), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1778), + [aux_sym_password_authentication_token1] = ACTIONS(1778), + [aux_sym_permit_local_command_token1] = ACTIONS(1778), + [aux_sym_permit_remote_open_token1] = ACTIONS(1778), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1778), + [aux_sym_port_token1] = ACTIONS(1778), + [aux_sym_preferred_authentications_token1] = ACTIONS(1778), + [aux_sym_protocol_token1] = ACTIONS(1778), + [aux_sym_proxy_command_token1] = ACTIONS(1778), + [aux_sym_proxy_jump_token1] = ACTIONS(1778), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1778), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1778), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1778), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1778), + [aux_sym_rekey_limit_token1] = ACTIONS(1778), + [aux_sym_remote_command_token1] = ACTIONS(1778), + [aux_sym_remote_forward_token1] = ACTIONS(1778), + [aux_sym_request_tty_token1] = ACTIONS(1778), + [aux_sym_required_rsa_size_token1] = ACTIONS(1778), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1778), + [aux_sym_security_key_provider_token1] = ACTIONS(1778), + [aux_sym_send_env_token1] = ACTIONS(1778), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1778), + [aux_sym_server_alive_interval_token1] = ACTIONS(1778), + [aux_sym_session_type_token1] = ACTIONS(1778), + [aux_sym_set_env_token1] = ACTIONS(1778), + [aux_sym_stdin_null_token1] = ACTIONS(1778), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1778), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1778), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1778), + [aux_sym_syslog_facility_token1] = ACTIONS(1778), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1778), + [aux_sym_keep_alive_token1] = ACTIONS(1778), + [aux_sym_tunnel_token1] = ACTIONS(1780), + [aux_sym_tunnel_device_token1] = ACTIONS(1778), + [aux_sym_update_host_keys_token1] = ACTIONS(1778), + [aux_sym_use_keychain_token1] = ACTIONS(1778), + [aux_sym_use_roaming_token1] = ACTIONS(1778), + [aux_sym_user_token1] = ACTIONS(1780), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1778), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1778), + [aux_sym_visual_host_key_token1] = ACTIONS(1778), + [aux_sym_xauth_location_token1] = ACTIONS(1778), }, [736] = { - [ts_builtin_sym_end] = ACTIONS(1419), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1421), - [aux_sym_match_token1] = ACTIONS(1419), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1419), - [aux_sym_address_family_token1] = ACTIONS(1419), - [aux_sym_batch_mode_token1] = ACTIONS(1419), - [aux_sym_bind_address_token1] = ACTIONS(1419), - [aux_sym_bind_interface_token1] = ACTIONS(1419), - [aux_sym_canonical_domains_token1] = ACTIONS(1419), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1419), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1419), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1419), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1419), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1419), - [aux_sym_certificate_file_token1] = ACTIONS(1419), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1419), - [aux_sym_check_host_ip_token1] = ACTIONS(1419), - [aux_sym_ciphers_token1] = ACTIONS(1419), - [aux_sym_cipher_token1] = ACTIONS(1421), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1419), - [aux_sym_compression_token1] = ACTIONS(1419), - [aux_sym_connection_attempts_token1] = ACTIONS(1419), - [aux_sym_connect_timeout_token1] = ACTIONS(1419), - [aux_sym_control_master_token1] = ACTIONS(1419), - [aux_sym_control_path_token1] = ACTIONS(1419), - [aux_sym_control_persist_token1] = ACTIONS(1419), - [aux_sym_dynamic_forward_token1] = ACTIONS(1419), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1419), - [aux_sym_escape_char_token1] = ACTIONS(1419), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1419), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1419), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1419), - [aux_sym_forward_agent_token1] = ACTIONS(1419), - [aux_sym_forward_x11_token1] = ACTIONS(1421), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1419), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1419), - [aux_sym_gateway_ports_token1] = ACTIONS(1419), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1419), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1419), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1419), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1419), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1419), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1419), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1419), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1419), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1419), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1419), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1419), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1419), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1419), - [aux_sym_host_key_alias_token1] = ACTIONS(1419), - [aux_sym_hostname_token1] = ACTIONS(1419), - [aux_sym_identities_only_token1] = ACTIONS(1419), - [aux_sym_identity_agent_token1] = ACTIONS(1419), - [aux_sym_identity_file_token1] = ACTIONS(1419), - [aux_sym_ignore_unknown_token1] = ACTIONS(1419), - [aux_sym_include_token1] = ACTIONS(1419), - [aux_sym_ip_qos_token1] = ACTIONS(1419), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1419), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1419), - [aux_sym_kex_algorithms_token1] = ACTIONS(1419), - [aux_sym_known_hosts_command_token1] = ACTIONS(1419), - [aux_sym_local_command_token1] = ACTIONS(1419), - [aux_sym_local_forward_token1] = ACTIONS(1419), - [aux_sym_log_level_token1] = ACTIONS(1419), - [aux_sym_log_verbose_token1] = ACTIONS(1419), - [aux_sym_macs_token1] = ACTIONS(1419), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1419), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1419), - [aux_sym_password_authentication_token1] = ACTIONS(1419), - [aux_sym_permit_local_command_token1] = ACTIONS(1419), - [aux_sym_permit_remote_open_token1] = ACTIONS(1419), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1419), - [aux_sym_port_token1] = ACTIONS(1419), - [aux_sym_preferred_authentications_token1] = ACTIONS(1419), - [aux_sym_protocol_token1] = ACTIONS(1419), - [aux_sym_proxy_command_token1] = ACTIONS(1419), - [aux_sym_proxy_jump_token1] = ACTIONS(1419), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1419), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1419), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1419), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1419), - [aux_sym_rekey_limit_token1] = ACTIONS(1419), - [aux_sym_remote_command_token1] = ACTIONS(1419), - [aux_sym_remote_forward_token1] = ACTIONS(1419), - [aux_sym_request_tty_token1] = ACTIONS(1419), - [aux_sym_required_rsa_size_token1] = ACTIONS(1419), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1419), - [aux_sym_security_key_provider_token1] = ACTIONS(1419), - [aux_sym_send_env_token1] = ACTIONS(1419), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1419), - [aux_sym_server_alive_interval_token1] = ACTIONS(1419), - [aux_sym_session_type_token1] = ACTIONS(1419), - [aux_sym_set_env_token1] = ACTIONS(1419), - [aux_sym_stdin_null_token1] = ACTIONS(1419), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1419), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1419), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1419), - [aux_sym_syslog_facility_token1] = ACTIONS(1419), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1419), - [aux_sym_keep_alive_token1] = ACTIONS(1419), - [aux_sym_tunnel_token1] = ACTIONS(1421), - [aux_sym_tunnel_device_token1] = ACTIONS(1419), - [aux_sym_update_host_keys_token1] = ACTIONS(1419), - [aux_sym_use_keychain_token1] = ACTIONS(1419), - [aux_sym_use_roaming_token1] = ACTIONS(1419), - [aux_sym_user_token1] = ACTIONS(1421), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1419), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1419), - [aux_sym_visual_host_key_token1] = ACTIONS(1419), - [aux_sym_xauth_location_token1] = ACTIONS(1419), + [ts_builtin_sym_end] = ACTIONS(698), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(700), + [aux_sym_match_token1] = ACTIONS(698), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(698), + [aux_sym_address_family_token1] = ACTIONS(698), + [aux_sym_batch_mode_token1] = ACTIONS(698), + [aux_sym_bind_address_token1] = ACTIONS(698), + [aux_sym_bind_interface_token1] = ACTIONS(698), + [aux_sym_canonical_domains_token1] = ACTIONS(698), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(698), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(698), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(698), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(698), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(698), + [aux_sym_certificate_file_token1] = ACTIONS(698), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(698), + [aux_sym_check_host_ip_token1] = ACTIONS(698), + [aux_sym_ciphers_token1] = ACTIONS(698), + [aux_sym_cipher_token1] = ACTIONS(700), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(698), + [aux_sym_compression_token1] = ACTIONS(698), + [aux_sym_connection_attempts_token1] = ACTIONS(698), + [aux_sym_connect_timeout_token1] = ACTIONS(698), + [aux_sym_control_master_token1] = ACTIONS(698), + [aux_sym_control_path_token1] = ACTIONS(698), + [aux_sym_control_persist_token1] = ACTIONS(698), + [aux_sym_dynamic_forward_token1] = ACTIONS(698), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(698), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(698), + [aux_sym_escape_char_token1] = ACTIONS(698), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(698), + [aux_sym_fingerprint_hash_token1] = ACTIONS(698), + [aux_sym_fork_after_authentication_token1] = ACTIONS(698), + [aux_sym_forward_agent_token1] = ACTIONS(698), + [aux_sym_forward_x11_token1] = ACTIONS(700), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(698), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(698), + [aux_sym_gateway_ports_token1] = ACTIONS(698), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(698), + [aux_sym_gssapi_authentication_token1] = ACTIONS(698), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(698), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(698), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(698), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(698), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(698), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(698), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(698), + [aux_sym_hash_known_hosts_token1] = ACTIONS(698), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(698), + [aux_sym_hostbased_authentication_token1] = ACTIONS(698), + [aux_sym_host_key_algorithms_token1] = ACTIONS(698), + [aux_sym_host_key_alias_token1] = ACTIONS(698), + [aux_sym_hostname_token1] = ACTIONS(698), + [aux_sym_identities_only_token1] = ACTIONS(698), + [aux_sym_identity_agent_token1] = ACTIONS(698), + [aux_sym_identity_file_token1] = ACTIONS(698), + [aux_sym_ignore_unknown_token1] = ACTIONS(698), + [aux_sym_include_token1] = ACTIONS(698), + [aux_sym_ip_qos_token1] = ACTIONS(698), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(698), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(698), + [aux_sym_kex_algorithms_token1] = ACTIONS(698), + [aux_sym_known_hosts_command_token1] = ACTIONS(698), + [aux_sym_local_command_token1] = ACTIONS(698), + [aux_sym_local_forward_token1] = ACTIONS(698), + [aux_sym_log_level_token1] = ACTIONS(698), + [aux_sym_log_verbose_token1] = ACTIONS(698), + [aux_sym_macs_token1] = ACTIONS(698), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(698), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(698), + [aux_sym_password_authentication_token1] = ACTIONS(698), + [aux_sym_permit_local_command_token1] = ACTIONS(698), + [aux_sym_permit_remote_open_token1] = ACTIONS(698), + [aux_sym_pkcs11_provider_token1] = ACTIONS(698), + [aux_sym_port_token1] = ACTIONS(698), + [aux_sym_preferred_authentications_token1] = ACTIONS(698), + [aux_sym_protocol_token1] = ACTIONS(698), + [aux_sym_proxy_command_token1] = ACTIONS(698), + [aux_sym_proxy_jump_token1] = ACTIONS(698), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(698), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(698), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(698), + [aux_sym_pubkey_authentication_token1] = ACTIONS(698), + [aux_sym_rekey_limit_token1] = ACTIONS(698), + [aux_sym_remote_command_token1] = ACTIONS(698), + [aux_sym_remote_forward_token1] = ACTIONS(698), + [aux_sym_request_tty_token1] = ACTIONS(698), + [aux_sym_required_rsa_size_token1] = ACTIONS(698), + [aux_sym_revoked_host_keys_token1] = ACTIONS(698), + [aux_sym_security_key_provider_token1] = ACTIONS(698), + [aux_sym_send_env_token1] = ACTIONS(698), + [aux_sym_server_alive_count_max_token1] = ACTIONS(698), + [aux_sym_server_alive_interval_token1] = ACTIONS(698), + [aux_sym_session_type_token1] = ACTIONS(698), + [aux_sym_set_env_token1] = ACTIONS(698), + [aux_sym_stdin_null_token1] = ACTIONS(698), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(698), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(698), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(698), + [aux_sym_syslog_facility_token1] = ACTIONS(698), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(698), + [aux_sym_keep_alive_token1] = ACTIONS(698), + [aux_sym_tunnel_token1] = ACTIONS(700), + [aux_sym_tunnel_device_token1] = ACTIONS(698), + [aux_sym_update_host_keys_token1] = ACTIONS(698), + [aux_sym_use_keychain_token1] = ACTIONS(698), + [aux_sym_use_roaming_token1] = ACTIONS(698), + [aux_sym_user_token1] = ACTIONS(700), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(698), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(698), + [aux_sym_visual_host_key_token1] = ACTIONS(698), + [aux_sym_xauth_location_token1] = ACTIONS(698), }, [737] = { - [ts_builtin_sym_end] = ACTIONS(1425), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1427), - [aux_sym_match_token1] = ACTIONS(1425), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1425), - [aux_sym_address_family_token1] = ACTIONS(1425), - [aux_sym_batch_mode_token1] = ACTIONS(1425), - [aux_sym_bind_address_token1] = ACTIONS(1425), - [aux_sym_bind_interface_token1] = ACTIONS(1425), - [aux_sym_canonical_domains_token1] = ACTIONS(1425), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1425), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1425), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1425), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1425), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1425), - [aux_sym_certificate_file_token1] = ACTIONS(1425), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1425), - [aux_sym_check_host_ip_token1] = ACTIONS(1425), - [aux_sym_ciphers_token1] = ACTIONS(1425), - [aux_sym_cipher_token1] = ACTIONS(1427), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1425), - [aux_sym_compression_token1] = ACTIONS(1425), - [aux_sym_connection_attempts_token1] = ACTIONS(1425), - [aux_sym_connect_timeout_token1] = ACTIONS(1425), - [aux_sym_control_master_token1] = ACTIONS(1425), - [aux_sym_control_path_token1] = ACTIONS(1425), - [aux_sym_control_persist_token1] = ACTIONS(1425), - [aux_sym_dynamic_forward_token1] = ACTIONS(1425), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1425), - [aux_sym_escape_char_token1] = ACTIONS(1425), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1425), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1425), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1425), - [aux_sym_forward_agent_token1] = ACTIONS(1425), - [aux_sym_forward_x11_token1] = ACTIONS(1427), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1425), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1425), - [aux_sym_gateway_ports_token1] = ACTIONS(1425), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1425), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1425), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1425), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1425), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1425), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1425), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1425), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1425), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1425), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1425), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1425), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1425), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1425), - [aux_sym_host_key_alias_token1] = ACTIONS(1425), - [aux_sym_hostname_token1] = ACTIONS(1425), - [aux_sym_identities_only_token1] = ACTIONS(1425), - [aux_sym_identity_agent_token1] = ACTIONS(1425), - [aux_sym_identity_file_token1] = ACTIONS(1425), - [aux_sym_ignore_unknown_token1] = ACTIONS(1425), - [aux_sym_include_token1] = ACTIONS(1425), - [aux_sym_ip_qos_token1] = ACTIONS(1425), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1425), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1425), - [aux_sym_kex_algorithms_token1] = ACTIONS(1425), - [aux_sym_known_hosts_command_token1] = ACTIONS(1425), - [aux_sym_local_command_token1] = ACTIONS(1425), - [aux_sym_local_forward_token1] = ACTIONS(1425), - [aux_sym_log_level_token1] = ACTIONS(1425), - [aux_sym_log_verbose_token1] = ACTIONS(1425), - [aux_sym_macs_token1] = ACTIONS(1425), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1425), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1425), - [aux_sym_password_authentication_token1] = ACTIONS(1425), - [aux_sym_permit_local_command_token1] = ACTIONS(1425), - [aux_sym_permit_remote_open_token1] = ACTIONS(1425), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1425), - [aux_sym_port_token1] = ACTIONS(1425), - [aux_sym_preferred_authentications_token1] = ACTIONS(1425), - [aux_sym_protocol_token1] = ACTIONS(1425), - [aux_sym_proxy_command_token1] = ACTIONS(1425), - [aux_sym_proxy_jump_token1] = ACTIONS(1425), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1425), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1425), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1425), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1425), - [aux_sym_rekey_limit_token1] = ACTIONS(1425), - [aux_sym_remote_command_token1] = ACTIONS(1425), - [aux_sym_remote_forward_token1] = ACTIONS(1425), - [aux_sym_request_tty_token1] = ACTIONS(1425), - [aux_sym_required_rsa_size_token1] = ACTIONS(1425), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1425), - [aux_sym_security_key_provider_token1] = ACTIONS(1425), - [aux_sym_send_env_token1] = ACTIONS(1425), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1425), - [aux_sym_server_alive_interval_token1] = ACTIONS(1425), - [aux_sym_session_type_token1] = ACTIONS(1425), - [aux_sym_set_env_token1] = ACTIONS(1425), - [aux_sym_stdin_null_token1] = ACTIONS(1425), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1425), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1425), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1425), - [aux_sym_syslog_facility_token1] = ACTIONS(1425), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1425), - [aux_sym_keep_alive_token1] = ACTIONS(1425), - [aux_sym_tunnel_token1] = ACTIONS(1427), - [aux_sym_tunnel_device_token1] = ACTIONS(1425), - [aux_sym_update_host_keys_token1] = ACTIONS(1425), - [aux_sym_use_keychain_token1] = ACTIONS(1425), - [aux_sym_use_roaming_token1] = ACTIONS(1425), - [aux_sym_user_token1] = ACTIONS(1427), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1425), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1425), - [aux_sym_visual_host_key_token1] = ACTIONS(1425), - [aux_sym_xauth_location_token1] = ACTIONS(1425), + [ts_builtin_sym_end] = ACTIONS(1586), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1588), + [aux_sym_match_token1] = ACTIONS(1586), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1586), + [aux_sym_address_family_token1] = ACTIONS(1586), + [aux_sym_batch_mode_token1] = ACTIONS(1586), + [aux_sym_bind_address_token1] = ACTIONS(1586), + [aux_sym_bind_interface_token1] = ACTIONS(1586), + [aux_sym_canonical_domains_token1] = ACTIONS(1586), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1586), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1586), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1586), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1586), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1586), + [aux_sym_certificate_file_token1] = ACTIONS(1586), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1586), + [aux_sym_check_host_ip_token1] = ACTIONS(1586), + [aux_sym_ciphers_token1] = ACTIONS(1586), + [aux_sym_cipher_token1] = ACTIONS(1588), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1586), + [aux_sym_compression_token1] = ACTIONS(1586), + [aux_sym_connection_attempts_token1] = ACTIONS(1586), + [aux_sym_connect_timeout_token1] = ACTIONS(1586), + [aux_sym_control_master_token1] = ACTIONS(1586), + [aux_sym_control_path_token1] = ACTIONS(1586), + [aux_sym_control_persist_token1] = ACTIONS(1586), + [aux_sym_dynamic_forward_token1] = ACTIONS(1586), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1586), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1586), + [aux_sym_escape_char_token1] = ACTIONS(1586), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1586), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1586), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1586), + [aux_sym_forward_agent_token1] = ACTIONS(1586), + [aux_sym_forward_x11_token1] = ACTIONS(1588), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1586), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1586), + [aux_sym_gateway_ports_token1] = ACTIONS(1586), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1586), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1586), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1586), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1586), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1586), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1586), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1586), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1586), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1586), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1586), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1586), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1586), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1586), + [aux_sym_host_key_alias_token1] = ACTIONS(1586), + [aux_sym_hostname_token1] = ACTIONS(1586), + [aux_sym_identities_only_token1] = ACTIONS(1586), + [aux_sym_identity_agent_token1] = ACTIONS(1586), + [aux_sym_identity_file_token1] = ACTIONS(1586), + [aux_sym_ignore_unknown_token1] = ACTIONS(1586), + [aux_sym_include_token1] = ACTIONS(1586), + [aux_sym_ip_qos_token1] = ACTIONS(1586), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1586), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1586), + [aux_sym_kex_algorithms_token1] = ACTIONS(1586), + [aux_sym_known_hosts_command_token1] = ACTIONS(1586), + [aux_sym_local_command_token1] = ACTIONS(1586), + [aux_sym_local_forward_token1] = ACTIONS(1586), + [aux_sym_log_level_token1] = ACTIONS(1586), + [aux_sym_log_verbose_token1] = ACTIONS(1586), + [aux_sym_macs_token1] = ACTIONS(1586), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1586), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1586), + [aux_sym_password_authentication_token1] = ACTIONS(1586), + [aux_sym_permit_local_command_token1] = ACTIONS(1586), + [aux_sym_permit_remote_open_token1] = ACTIONS(1586), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1586), + [aux_sym_port_token1] = ACTIONS(1586), + [aux_sym_preferred_authentications_token1] = ACTIONS(1586), + [aux_sym_protocol_token1] = ACTIONS(1586), + [aux_sym_proxy_command_token1] = ACTIONS(1586), + [aux_sym_proxy_jump_token1] = ACTIONS(1586), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1586), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1586), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1586), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1586), + [aux_sym_rekey_limit_token1] = ACTIONS(1586), + [aux_sym_remote_command_token1] = ACTIONS(1586), + [aux_sym_remote_forward_token1] = ACTIONS(1586), + [aux_sym_request_tty_token1] = ACTIONS(1586), + [aux_sym_required_rsa_size_token1] = ACTIONS(1586), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1586), + [aux_sym_security_key_provider_token1] = ACTIONS(1586), + [aux_sym_send_env_token1] = ACTIONS(1586), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1586), + [aux_sym_server_alive_interval_token1] = ACTIONS(1586), + [aux_sym_session_type_token1] = ACTIONS(1586), + [aux_sym_set_env_token1] = ACTIONS(1586), + [aux_sym_stdin_null_token1] = ACTIONS(1586), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1586), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1586), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1586), + [aux_sym_syslog_facility_token1] = ACTIONS(1586), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1586), + [aux_sym_keep_alive_token1] = ACTIONS(1586), + [aux_sym_tunnel_token1] = ACTIONS(1588), + [aux_sym_tunnel_device_token1] = ACTIONS(1586), + [aux_sym_update_host_keys_token1] = ACTIONS(1586), + [aux_sym_use_keychain_token1] = ACTIONS(1586), + [aux_sym_use_roaming_token1] = ACTIONS(1586), + [aux_sym_user_token1] = ACTIONS(1588), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1586), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1586), + [aux_sym_visual_host_key_token1] = ACTIONS(1586), + [aux_sym_xauth_location_token1] = ACTIONS(1586), }, [738] = { - [ts_builtin_sym_end] = ACTIONS(1743), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1745), - [aux_sym_match_token1] = ACTIONS(1743), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1743), - [aux_sym_address_family_token1] = ACTIONS(1743), - [aux_sym_batch_mode_token1] = ACTIONS(1743), - [aux_sym_bind_address_token1] = ACTIONS(1743), - [aux_sym_bind_interface_token1] = ACTIONS(1743), - [aux_sym_canonical_domains_token1] = ACTIONS(1743), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1743), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1743), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1743), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1743), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1743), - [aux_sym_certificate_file_token1] = ACTIONS(1743), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1743), - [aux_sym_check_host_ip_token1] = ACTIONS(1743), - [aux_sym_ciphers_token1] = ACTIONS(1743), - [aux_sym_cipher_token1] = ACTIONS(1745), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1743), - [aux_sym_compression_token1] = ACTIONS(1743), - [aux_sym_connection_attempts_token1] = ACTIONS(1743), - [aux_sym_connect_timeout_token1] = ACTIONS(1743), - [aux_sym_control_master_token1] = ACTIONS(1743), - [aux_sym_control_path_token1] = ACTIONS(1743), - [aux_sym_control_persist_token1] = ACTIONS(1743), - [aux_sym_dynamic_forward_token1] = ACTIONS(1743), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1743), - [aux_sym_escape_char_token1] = ACTIONS(1743), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1743), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1743), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1743), - [aux_sym_forward_agent_token1] = ACTIONS(1743), - [aux_sym_forward_x11_token1] = ACTIONS(1745), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1743), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1743), - [aux_sym_gateway_ports_token1] = ACTIONS(1743), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1743), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1743), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1743), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1743), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1743), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1743), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1743), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1743), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1743), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1743), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1743), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1743), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1743), - [aux_sym_host_key_alias_token1] = ACTIONS(1743), - [aux_sym_hostname_token1] = ACTIONS(1743), - [aux_sym_identities_only_token1] = ACTIONS(1743), - [aux_sym_identity_agent_token1] = ACTIONS(1743), - [aux_sym_identity_file_token1] = ACTIONS(1743), - [aux_sym_ignore_unknown_token1] = ACTIONS(1743), - [aux_sym_include_token1] = ACTIONS(1743), - [aux_sym_ip_qos_token1] = ACTIONS(1743), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1743), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1743), - [aux_sym_kex_algorithms_token1] = ACTIONS(1743), - [aux_sym_known_hosts_command_token1] = ACTIONS(1743), - [aux_sym_local_command_token1] = ACTIONS(1743), - [aux_sym_local_forward_token1] = ACTIONS(1743), - [aux_sym_log_level_token1] = ACTIONS(1743), - [aux_sym_log_verbose_token1] = ACTIONS(1743), - [aux_sym_macs_token1] = ACTIONS(1743), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1743), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1743), - [aux_sym_password_authentication_token1] = ACTIONS(1743), - [aux_sym_permit_local_command_token1] = ACTIONS(1743), - [aux_sym_permit_remote_open_token1] = ACTIONS(1743), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1743), - [aux_sym_port_token1] = ACTIONS(1743), - [aux_sym_preferred_authentications_token1] = ACTIONS(1743), - [aux_sym_protocol_token1] = ACTIONS(1743), - [aux_sym_proxy_command_token1] = ACTIONS(1743), - [aux_sym_proxy_jump_token1] = ACTIONS(1743), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1743), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1743), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1743), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1743), - [aux_sym_rekey_limit_token1] = ACTIONS(1743), - [aux_sym_remote_command_token1] = ACTIONS(1743), - [aux_sym_remote_forward_token1] = ACTIONS(1743), - [aux_sym_request_tty_token1] = ACTIONS(1743), - [aux_sym_required_rsa_size_token1] = ACTIONS(1743), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1743), - [aux_sym_security_key_provider_token1] = ACTIONS(1743), - [aux_sym_send_env_token1] = ACTIONS(1743), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1743), - [aux_sym_server_alive_interval_token1] = ACTIONS(1743), - [aux_sym_session_type_token1] = ACTIONS(1743), - [aux_sym_set_env_token1] = ACTIONS(1743), - [aux_sym_stdin_null_token1] = ACTIONS(1743), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1743), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1743), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1743), - [aux_sym_syslog_facility_token1] = ACTIONS(1743), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1743), - [aux_sym_keep_alive_token1] = ACTIONS(1743), - [aux_sym_tunnel_token1] = ACTIONS(1745), - [aux_sym_tunnel_device_token1] = ACTIONS(1743), - [aux_sym_update_host_keys_token1] = ACTIONS(1743), - [aux_sym_use_keychain_token1] = ACTIONS(1743), - [aux_sym_use_roaming_token1] = ACTIONS(1743), - [aux_sym_user_token1] = ACTIONS(1745), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1743), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1743), - [aux_sym_visual_host_key_token1] = ACTIONS(1743), - [aux_sym_xauth_location_token1] = ACTIONS(1743), + [ts_builtin_sym_end] = ACTIONS(1772), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1774), + [aux_sym_match_token1] = ACTIONS(1772), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1772), + [aux_sym_address_family_token1] = ACTIONS(1772), + [aux_sym_batch_mode_token1] = ACTIONS(1772), + [aux_sym_bind_address_token1] = ACTIONS(1772), + [aux_sym_bind_interface_token1] = ACTIONS(1772), + [aux_sym_canonical_domains_token1] = ACTIONS(1772), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1772), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1772), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1772), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1772), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1772), + [aux_sym_certificate_file_token1] = ACTIONS(1772), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1772), + [aux_sym_check_host_ip_token1] = ACTIONS(1772), + [aux_sym_ciphers_token1] = ACTIONS(1772), + [aux_sym_cipher_token1] = ACTIONS(1774), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1772), + [aux_sym_compression_token1] = ACTIONS(1772), + [aux_sym_connection_attempts_token1] = ACTIONS(1772), + [aux_sym_connect_timeout_token1] = ACTIONS(1772), + [aux_sym_control_master_token1] = ACTIONS(1772), + [aux_sym_control_path_token1] = ACTIONS(1772), + [aux_sym_control_persist_token1] = ACTIONS(1772), + [aux_sym_dynamic_forward_token1] = ACTIONS(1772), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1772), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1772), + [aux_sym_escape_char_token1] = ACTIONS(1772), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1772), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1772), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1772), + [aux_sym_forward_agent_token1] = ACTIONS(1772), + [aux_sym_forward_x11_token1] = ACTIONS(1774), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1772), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1772), + [aux_sym_gateway_ports_token1] = ACTIONS(1772), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1772), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1772), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1772), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1772), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1772), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1772), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1772), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1772), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1772), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1772), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1772), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1772), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1772), + [aux_sym_host_key_alias_token1] = ACTIONS(1772), + [aux_sym_hostname_token1] = ACTIONS(1772), + [aux_sym_identities_only_token1] = ACTIONS(1772), + [aux_sym_identity_agent_token1] = ACTIONS(1772), + [aux_sym_identity_file_token1] = ACTIONS(1772), + [aux_sym_ignore_unknown_token1] = ACTIONS(1772), + [aux_sym_include_token1] = ACTIONS(1772), + [aux_sym_ip_qos_token1] = ACTIONS(1772), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1772), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1772), + [aux_sym_kex_algorithms_token1] = ACTIONS(1772), + [aux_sym_known_hosts_command_token1] = ACTIONS(1772), + [aux_sym_local_command_token1] = ACTIONS(1772), + [aux_sym_local_forward_token1] = ACTIONS(1772), + [aux_sym_log_level_token1] = ACTIONS(1772), + [aux_sym_log_verbose_token1] = ACTIONS(1772), + [aux_sym_macs_token1] = ACTIONS(1772), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1772), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1772), + [aux_sym_password_authentication_token1] = ACTIONS(1772), + [aux_sym_permit_local_command_token1] = ACTIONS(1772), + [aux_sym_permit_remote_open_token1] = ACTIONS(1772), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1772), + [aux_sym_port_token1] = ACTIONS(1772), + [aux_sym_preferred_authentications_token1] = ACTIONS(1772), + [aux_sym_protocol_token1] = ACTIONS(1772), + [aux_sym_proxy_command_token1] = ACTIONS(1772), + [aux_sym_proxy_jump_token1] = ACTIONS(1772), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1772), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1772), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1772), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1772), + [aux_sym_rekey_limit_token1] = ACTIONS(1772), + [aux_sym_remote_command_token1] = ACTIONS(1772), + [aux_sym_remote_forward_token1] = ACTIONS(1772), + [aux_sym_request_tty_token1] = ACTIONS(1772), + [aux_sym_required_rsa_size_token1] = ACTIONS(1772), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1772), + [aux_sym_security_key_provider_token1] = ACTIONS(1772), + [aux_sym_send_env_token1] = ACTIONS(1772), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1772), + [aux_sym_server_alive_interval_token1] = ACTIONS(1772), + [aux_sym_session_type_token1] = ACTIONS(1772), + [aux_sym_set_env_token1] = ACTIONS(1772), + [aux_sym_stdin_null_token1] = ACTIONS(1772), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1772), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1772), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1772), + [aux_sym_syslog_facility_token1] = ACTIONS(1772), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1772), + [aux_sym_keep_alive_token1] = ACTIONS(1772), + [aux_sym_tunnel_token1] = ACTIONS(1774), + [aux_sym_tunnel_device_token1] = ACTIONS(1772), + [aux_sym_update_host_keys_token1] = ACTIONS(1772), + [aux_sym_use_keychain_token1] = ACTIONS(1772), + [aux_sym_use_roaming_token1] = ACTIONS(1772), + [aux_sym_user_token1] = ACTIONS(1774), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1772), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1772), + [aux_sym_visual_host_key_token1] = ACTIONS(1772), + [aux_sym_xauth_location_token1] = ACTIONS(1772), }, [739] = { - [ts_builtin_sym_end] = ACTIONS(1431), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1433), - [aux_sym_match_token1] = ACTIONS(1431), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1431), - [aux_sym_address_family_token1] = ACTIONS(1431), - [aux_sym_batch_mode_token1] = ACTIONS(1431), - [aux_sym_bind_address_token1] = ACTIONS(1431), - [aux_sym_bind_interface_token1] = ACTIONS(1431), - [aux_sym_canonical_domains_token1] = ACTIONS(1431), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1431), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1431), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1431), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1431), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1431), - [aux_sym_certificate_file_token1] = ACTIONS(1431), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1431), - [aux_sym_check_host_ip_token1] = ACTIONS(1431), - [aux_sym_ciphers_token1] = ACTIONS(1431), - [aux_sym_cipher_token1] = ACTIONS(1433), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1431), - [aux_sym_compression_token1] = ACTIONS(1431), - [aux_sym_connection_attempts_token1] = ACTIONS(1431), - [aux_sym_connect_timeout_token1] = ACTIONS(1431), - [aux_sym_control_master_token1] = ACTIONS(1431), - [aux_sym_control_path_token1] = ACTIONS(1431), - [aux_sym_control_persist_token1] = ACTIONS(1431), - [aux_sym_dynamic_forward_token1] = ACTIONS(1431), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1431), - [aux_sym_escape_char_token1] = ACTIONS(1431), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1431), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1431), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1431), - [aux_sym_forward_agent_token1] = ACTIONS(1431), - [aux_sym_forward_x11_token1] = ACTIONS(1433), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1431), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1431), - [aux_sym_gateway_ports_token1] = ACTIONS(1431), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1431), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1431), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1431), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1431), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1431), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1431), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1431), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1431), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1431), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1431), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1431), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1431), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1431), - [aux_sym_host_key_alias_token1] = ACTIONS(1431), - [aux_sym_hostname_token1] = ACTIONS(1431), - [aux_sym_identities_only_token1] = ACTIONS(1431), - [aux_sym_identity_agent_token1] = ACTIONS(1431), - [aux_sym_identity_file_token1] = ACTIONS(1431), - [aux_sym_ignore_unknown_token1] = ACTIONS(1431), - [aux_sym_include_token1] = ACTIONS(1431), - [aux_sym_ip_qos_token1] = ACTIONS(1431), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1431), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1431), - [aux_sym_kex_algorithms_token1] = ACTIONS(1431), - [aux_sym_known_hosts_command_token1] = ACTIONS(1431), - [aux_sym_local_command_token1] = ACTIONS(1431), - [aux_sym_local_forward_token1] = ACTIONS(1431), - [aux_sym_log_level_token1] = ACTIONS(1431), - [aux_sym_log_verbose_token1] = ACTIONS(1431), - [aux_sym_macs_token1] = ACTIONS(1431), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1431), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1431), - [aux_sym_password_authentication_token1] = ACTIONS(1431), - [aux_sym_permit_local_command_token1] = ACTIONS(1431), - [aux_sym_permit_remote_open_token1] = ACTIONS(1431), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1431), - [aux_sym_port_token1] = ACTIONS(1431), - [aux_sym_preferred_authentications_token1] = ACTIONS(1431), - [aux_sym_protocol_token1] = ACTIONS(1431), - [aux_sym_proxy_command_token1] = ACTIONS(1431), - [aux_sym_proxy_jump_token1] = ACTIONS(1431), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1431), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1431), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1431), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1431), - [aux_sym_rekey_limit_token1] = ACTIONS(1431), - [aux_sym_remote_command_token1] = ACTIONS(1431), - [aux_sym_remote_forward_token1] = ACTIONS(1431), - [aux_sym_request_tty_token1] = ACTIONS(1431), - [aux_sym_required_rsa_size_token1] = ACTIONS(1431), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1431), - [aux_sym_security_key_provider_token1] = ACTIONS(1431), - [aux_sym_send_env_token1] = ACTIONS(1431), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1431), - [aux_sym_server_alive_interval_token1] = ACTIONS(1431), - [aux_sym_session_type_token1] = ACTIONS(1431), - [aux_sym_set_env_token1] = ACTIONS(1431), - [aux_sym_stdin_null_token1] = ACTIONS(1431), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1431), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1431), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1431), - [aux_sym_syslog_facility_token1] = ACTIONS(1431), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1431), - [aux_sym_keep_alive_token1] = ACTIONS(1431), - [aux_sym_tunnel_token1] = ACTIONS(1433), - [aux_sym_tunnel_device_token1] = ACTIONS(1431), - [aux_sym_update_host_keys_token1] = ACTIONS(1431), - [aux_sym_use_keychain_token1] = ACTIONS(1431), - [aux_sym_use_roaming_token1] = ACTIONS(1431), - [aux_sym_user_token1] = ACTIONS(1433), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1431), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1431), - [aux_sym_visual_host_key_token1] = ACTIONS(1431), - [aux_sym_xauth_location_token1] = ACTIONS(1431), + [ts_builtin_sym_end] = ACTIONS(1592), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1594), + [aux_sym_match_token1] = ACTIONS(1592), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1592), + [aux_sym_address_family_token1] = ACTIONS(1592), + [aux_sym_batch_mode_token1] = ACTIONS(1592), + [aux_sym_bind_address_token1] = ACTIONS(1592), + [aux_sym_bind_interface_token1] = ACTIONS(1592), + [aux_sym_canonical_domains_token1] = ACTIONS(1592), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1592), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1592), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1592), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1592), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1592), + [aux_sym_certificate_file_token1] = ACTIONS(1592), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1592), + [aux_sym_check_host_ip_token1] = ACTIONS(1592), + [aux_sym_ciphers_token1] = ACTIONS(1592), + [aux_sym_cipher_token1] = ACTIONS(1594), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1592), + [aux_sym_compression_token1] = ACTIONS(1592), + [aux_sym_connection_attempts_token1] = ACTIONS(1592), + [aux_sym_connect_timeout_token1] = ACTIONS(1592), + [aux_sym_control_master_token1] = ACTIONS(1592), + [aux_sym_control_path_token1] = ACTIONS(1592), + [aux_sym_control_persist_token1] = ACTIONS(1592), + [aux_sym_dynamic_forward_token1] = ACTIONS(1592), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1592), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1592), + [aux_sym_escape_char_token1] = ACTIONS(1592), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1592), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1592), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1592), + [aux_sym_forward_agent_token1] = ACTIONS(1592), + [aux_sym_forward_x11_token1] = ACTIONS(1594), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1592), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1592), + [aux_sym_gateway_ports_token1] = ACTIONS(1592), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1592), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1592), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1592), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1592), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1592), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1592), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1592), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1592), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1592), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1592), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1592), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1592), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1592), + [aux_sym_host_key_alias_token1] = ACTIONS(1592), + [aux_sym_hostname_token1] = ACTIONS(1592), + [aux_sym_identities_only_token1] = ACTIONS(1592), + [aux_sym_identity_agent_token1] = ACTIONS(1592), + [aux_sym_identity_file_token1] = ACTIONS(1592), + [aux_sym_ignore_unknown_token1] = ACTIONS(1592), + [aux_sym_include_token1] = ACTIONS(1592), + [aux_sym_ip_qos_token1] = ACTIONS(1592), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1592), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1592), + [aux_sym_kex_algorithms_token1] = ACTIONS(1592), + [aux_sym_known_hosts_command_token1] = ACTIONS(1592), + [aux_sym_local_command_token1] = ACTIONS(1592), + [aux_sym_local_forward_token1] = ACTIONS(1592), + [aux_sym_log_level_token1] = ACTIONS(1592), + [aux_sym_log_verbose_token1] = ACTIONS(1592), + [aux_sym_macs_token1] = ACTIONS(1592), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1592), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1592), + [aux_sym_password_authentication_token1] = ACTIONS(1592), + [aux_sym_permit_local_command_token1] = ACTIONS(1592), + [aux_sym_permit_remote_open_token1] = ACTIONS(1592), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1592), + [aux_sym_port_token1] = ACTIONS(1592), + [aux_sym_preferred_authentications_token1] = ACTIONS(1592), + [aux_sym_protocol_token1] = ACTIONS(1592), + [aux_sym_proxy_command_token1] = ACTIONS(1592), + [aux_sym_proxy_jump_token1] = ACTIONS(1592), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1592), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1592), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1592), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1592), + [aux_sym_rekey_limit_token1] = ACTIONS(1592), + [aux_sym_remote_command_token1] = ACTIONS(1592), + [aux_sym_remote_forward_token1] = ACTIONS(1592), + [aux_sym_request_tty_token1] = ACTIONS(1592), + [aux_sym_required_rsa_size_token1] = ACTIONS(1592), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1592), + [aux_sym_security_key_provider_token1] = ACTIONS(1592), + [aux_sym_send_env_token1] = ACTIONS(1592), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1592), + [aux_sym_server_alive_interval_token1] = ACTIONS(1592), + [aux_sym_session_type_token1] = ACTIONS(1592), + [aux_sym_set_env_token1] = ACTIONS(1592), + [aux_sym_stdin_null_token1] = ACTIONS(1592), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1592), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1592), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1592), + [aux_sym_syslog_facility_token1] = ACTIONS(1592), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1592), + [aux_sym_keep_alive_token1] = ACTIONS(1592), + [aux_sym_tunnel_token1] = ACTIONS(1594), + [aux_sym_tunnel_device_token1] = ACTIONS(1592), + [aux_sym_update_host_keys_token1] = ACTIONS(1592), + [aux_sym_use_keychain_token1] = ACTIONS(1592), + [aux_sym_use_roaming_token1] = ACTIONS(1592), + [aux_sym_user_token1] = ACTIONS(1594), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1592), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1592), + [aux_sym_visual_host_key_token1] = ACTIONS(1592), + [aux_sym_xauth_location_token1] = ACTIONS(1592), }, [740] = { - [ts_builtin_sym_end] = ACTIONS(1437), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1439), - [aux_sym_match_token1] = ACTIONS(1437), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1437), - [aux_sym_address_family_token1] = ACTIONS(1437), - [aux_sym_batch_mode_token1] = ACTIONS(1437), - [aux_sym_bind_address_token1] = ACTIONS(1437), - [aux_sym_bind_interface_token1] = ACTIONS(1437), - [aux_sym_canonical_domains_token1] = ACTIONS(1437), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1437), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1437), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1437), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1437), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1437), - [aux_sym_certificate_file_token1] = ACTIONS(1437), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1437), - [aux_sym_check_host_ip_token1] = ACTIONS(1437), - [aux_sym_ciphers_token1] = ACTIONS(1437), - [aux_sym_cipher_token1] = ACTIONS(1439), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1437), - [aux_sym_compression_token1] = ACTIONS(1437), - [aux_sym_connection_attempts_token1] = ACTIONS(1437), - [aux_sym_connect_timeout_token1] = ACTIONS(1437), - [aux_sym_control_master_token1] = ACTIONS(1437), - [aux_sym_control_path_token1] = ACTIONS(1437), - [aux_sym_control_persist_token1] = ACTIONS(1437), - [aux_sym_dynamic_forward_token1] = ACTIONS(1437), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1437), - [aux_sym_escape_char_token1] = ACTIONS(1437), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1437), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1437), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1437), - [aux_sym_forward_agent_token1] = ACTIONS(1437), - [aux_sym_forward_x11_token1] = ACTIONS(1439), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1437), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1437), - [aux_sym_gateway_ports_token1] = ACTIONS(1437), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1437), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1437), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1437), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1437), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1437), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1437), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1437), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1437), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1437), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1437), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1437), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1437), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1437), - [aux_sym_host_key_alias_token1] = ACTIONS(1437), - [aux_sym_hostname_token1] = ACTIONS(1437), - [aux_sym_identities_only_token1] = ACTIONS(1437), - [aux_sym_identity_agent_token1] = ACTIONS(1437), - [aux_sym_identity_file_token1] = ACTIONS(1437), - [aux_sym_ignore_unknown_token1] = ACTIONS(1437), - [aux_sym_include_token1] = ACTIONS(1437), - [aux_sym_ip_qos_token1] = ACTIONS(1437), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1437), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1437), - [aux_sym_kex_algorithms_token1] = ACTIONS(1437), - [aux_sym_known_hosts_command_token1] = ACTIONS(1437), - [aux_sym_local_command_token1] = ACTIONS(1437), - [aux_sym_local_forward_token1] = ACTIONS(1437), - [aux_sym_log_level_token1] = ACTIONS(1437), - [aux_sym_log_verbose_token1] = ACTIONS(1437), - [aux_sym_macs_token1] = ACTIONS(1437), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1437), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1437), - [aux_sym_password_authentication_token1] = ACTIONS(1437), - [aux_sym_permit_local_command_token1] = ACTIONS(1437), - [aux_sym_permit_remote_open_token1] = ACTIONS(1437), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1437), - [aux_sym_port_token1] = ACTIONS(1437), - [aux_sym_preferred_authentications_token1] = ACTIONS(1437), - [aux_sym_protocol_token1] = ACTIONS(1437), - [aux_sym_proxy_command_token1] = ACTIONS(1437), - [aux_sym_proxy_jump_token1] = ACTIONS(1437), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1437), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1437), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1437), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1437), - [aux_sym_rekey_limit_token1] = ACTIONS(1437), - [aux_sym_remote_command_token1] = ACTIONS(1437), - [aux_sym_remote_forward_token1] = ACTIONS(1437), - [aux_sym_request_tty_token1] = ACTIONS(1437), - [aux_sym_required_rsa_size_token1] = ACTIONS(1437), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1437), - [aux_sym_security_key_provider_token1] = ACTIONS(1437), - [aux_sym_send_env_token1] = ACTIONS(1437), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1437), - [aux_sym_server_alive_interval_token1] = ACTIONS(1437), - [aux_sym_session_type_token1] = ACTIONS(1437), - [aux_sym_set_env_token1] = ACTIONS(1437), - [aux_sym_stdin_null_token1] = ACTIONS(1437), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1437), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1437), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1437), - [aux_sym_syslog_facility_token1] = ACTIONS(1437), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1437), - [aux_sym_keep_alive_token1] = ACTIONS(1437), - [aux_sym_tunnel_token1] = ACTIONS(1439), - [aux_sym_tunnel_device_token1] = ACTIONS(1437), - [aux_sym_update_host_keys_token1] = ACTIONS(1437), - [aux_sym_use_keychain_token1] = ACTIONS(1437), - [aux_sym_use_roaming_token1] = ACTIONS(1437), - [aux_sym_user_token1] = ACTIONS(1439), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1437), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1437), - [aux_sym_visual_host_key_token1] = ACTIONS(1437), - [aux_sym_xauth_location_token1] = ACTIONS(1437), + [ts_builtin_sym_end] = ACTIONS(782), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(784), + [aux_sym_match_token1] = ACTIONS(782), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(782), + [aux_sym_address_family_token1] = ACTIONS(782), + [aux_sym_batch_mode_token1] = ACTIONS(782), + [aux_sym_bind_address_token1] = ACTIONS(782), + [aux_sym_bind_interface_token1] = ACTIONS(782), + [aux_sym_canonical_domains_token1] = ACTIONS(782), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(782), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(782), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(782), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(782), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(782), + [aux_sym_certificate_file_token1] = ACTIONS(782), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(782), + [aux_sym_check_host_ip_token1] = ACTIONS(782), + [aux_sym_ciphers_token1] = ACTIONS(782), + [aux_sym_cipher_token1] = ACTIONS(784), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(782), + [aux_sym_compression_token1] = ACTIONS(782), + [aux_sym_connection_attempts_token1] = ACTIONS(782), + [aux_sym_connect_timeout_token1] = ACTIONS(782), + [aux_sym_control_master_token1] = ACTIONS(782), + [aux_sym_control_path_token1] = ACTIONS(782), + [aux_sym_control_persist_token1] = ACTIONS(782), + [aux_sym_dynamic_forward_token1] = ACTIONS(782), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(782), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(782), + [aux_sym_escape_char_token1] = ACTIONS(782), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(782), + [aux_sym_fingerprint_hash_token1] = ACTIONS(782), + [aux_sym_fork_after_authentication_token1] = ACTIONS(782), + [aux_sym_forward_agent_token1] = ACTIONS(782), + [aux_sym_forward_x11_token1] = ACTIONS(784), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(782), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(782), + [aux_sym_gateway_ports_token1] = ACTIONS(782), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(782), + [aux_sym_gssapi_authentication_token1] = ACTIONS(782), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(782), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(782), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(782), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(782), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(782), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(782), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(782), + [aux_sym_hash_known_hosts_token1] = ACTIONS(782), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(782), + [aux_sym_hostbased_authentication_token1] = ACTIONS(782), + [aux_sym_host_key_algorithms_token1] = ACTIONS(782), + [aux_sym_host_key_alias_token1] = ACTIONS(782), + [aux_sym_hostname_token1] = ACTIONS(782), + [aux_sym_identities_only_token1] = ACTIONS(782), + [aux_sym_identity_agent_token1] = ACTIONS(782), + [aux_sym_identity_file_token1] = ACTIONS(782), + [aux_sym_ignore_unknown_token1] = ACTIONS(782), + [aux_sym_include_token1] = ACTIONS(782), + [aux_sym_ip_qos_token1] = ACTIONS(782), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(782), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(782), + [aux_sym_kex_algorithms_token1] = ACTIONS(782), + [aux_sym_known_hosts_command_token1] = ACTIONS(782), + [aux_sym_local_command_token1] = ACTIONS(782), + [aux_sym_local_forward_token1] = ACTIONS(782), + [aux_sym_log_level_token1] = ACTIONS(782), + [aux_sym_log_verbose_token1] = ACTIONS(782), + [aux_sym_macs_token1] = ACTIONS(782), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(782), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(782), + [aux_sym_password_authentication_token1] = ACTIONS(782), + [aux_sym_permit_local_command_token1] = ACTIONS(782), + [aux_sym_permit_remote_open_token1] = ACTIONS(782), + [aux_sym_pkcs11_provider_token1] = ACTIONS(782), + [aux_sym_port_token1] = ACTIONS(782), + [aux_sym_preferred_authentications_token1] = ACTIONS(782), + [aux_sym_protocol_token1] = ACTIONS(782), + [aux_sym_proxy_command_token1] = ACTIONS(782), + [aux_sym_proxy_jump_token1] = ACTIONS(782), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(782), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(782), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(782), + [aux_sym_pubkey_authentication_token1] = ACTIONS(782), + [aux_sym_rekey_limit_token1] = ACTIONS(782), + [aux_sym_remote_command_token1] = ACTIONS(782), + [aux_sym_remote_forward_token1] = ACTIONS(782), + [aux_sym_request_tty_token1] = ACTIONS(782), + [aux_sym_required_rsa_size_token1] = ACTIONS(782), + [aux_sym_revoked_host_keys_token1] = ACTIONS(782), + [aux_sym_security_key_provider_token1] = ACTIONS(782), + [aux_sym_send_env_token1] = ACTIONS(782), + [aux_sym_server_alive_count_max_token1] = ACTIONS(782), + [aux_sym_server_alive_interval_token1] = ACTIONS(782), + [aux_sym_session_type_token1] = ACTIONS(782), + [aux_sym_set_env_token1] = ACTIONS(782), + [aux_sym_stdin_null_token1] = ACTIONS(782), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(782), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(782), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(782), + [aux_sym_syslog_facility_token1] = ACTIONS(782), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(782), + [aux_sym_keep_alive_token1] = ACTIONS(782), + [aux_sym_tunnel_token1] = ACTIONS(784), + [aux_sym_tunnel_device_token1] = ACTIONS(782), + [aux_sym_update_host_keys_token1] = ACTIONS(782), + [aux_sym_use_keychain_token1] = ACTIONS(782), + [aux_sym_use_roaming_token1] = ACTIONS(782), + [aux_sym_user_token1] = ACTIONS(784), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(782), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(782), + [aux_sym_visual_host_key_token1] = ACTIONS(782), + [aux_sym_xauth_location_token1] = ACTIONS(782), }, [741] = { - [ts_builtin_sym_end] = ACTIONS(1737), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1739), - [aux_sym_match_token1] = ACTIONS(1737), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1737), - [aux_sym_address_family_token1] = ACTIONS(1737), - [aux_sym_batch_mode_token1] = ACTIONS(1737), - [aux_sym_bind_address_token1] = ACTIONS(1737), - [aux_sym_bind_interface_token1] = ACTIONS(1737), - [aux_sym_canonical_domains_token1] = ACTIONS(1737), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1737), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1737), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1737), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1737), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1737), - [aux_sym_certificate_file_token1] = ACTIONS(1737), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1737), - [aux_sym_check_host_ip_token1] = ACTIONS(1737), - [aux_sym_ciphers_token1] = ACTIONS(1737), - [aux_sym_cipher_token1] = ACTIONS(1739), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1737), - [aux_sym_compression_token1] = ACTIONS(1737), - [aux_sym_connection_attempts_token1] = ACTIONS(1737), - [aux_sym_connect_timeout_token1] = ACTIONS(1737), - [aux_sym_control_master_token1] = ACTIONS(1737), - [aux_sym_control_path_token1] = ACTIONS(1737), - [aux_sym_control_persist_token1] = ACTIONS(1737), - [aux_sym_dynamic_forward_token1] = ACTIONS(1737), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1737), - [aux_sym_escape_char_token1] = ACTIONS(1737), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1737), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1737), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1737), - [aux_sym_forward_agent_token1] = ACTIONS(1737), - [aux_sym_forward_x11_token1] = ACTIONS(1739), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1737), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1737), - [aux_sym_gateway_ports_token1] = ACTIONS(1737), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1737), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1737), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1737), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1737), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1737), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1737), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1737), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1737), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1737), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1737), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1737), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1737), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1737), - [aux_sym_host_key_alias_token1] = ACTIONS(1737), - [aux_sym_hostname_token1] = ACTIONS(1737), - [aux_sym_identities_only_token1] = ACTIONS(1737), - [aux_sym_identity_agent_token1] = ACTIONS(1737), - [aux_sym_identity_file_token1] = ACTIONS(1737), - [aux_sym_ignore_unknown_token1] = ACTIONS(1737), - [aux_sym_include_token1] = ACTIONS(1737), - [aux_sym_ip_qos_token1] = ACTIONS(1737), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1737), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1737), - [aux_sym_kex_algorithms_token1] = ACTIONS(1737), - [aux_sym_known_hosts_command_token1] = ACTIONS(1737), - [aux_sym_local_command_token1] = ACTIONS(1737), - [aux_sym_local_forward_token1] = ACTIONS(1737), - [aux_sym_log_level_token1] = ACTIONS(1737), - [aux_sym_log_verbose_token1] = ACTIONS(1737), - [aux_sym_macs_token1] = ACTIONS(1737), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1737), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1737), - [aux_sym_password_authentication_token1] = ACTIONS(1737), - [aux_sym_permit_local_command_token1] = ACTIONS(1737), - [aux_sym_permit_remote_open_token1] = ACTIONS(1737), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1737), - [aux_sym_port_token1] = ACTIONS(1737), - [aux_sym_preferred_authentications_token1] = ACTIONS(1737), - [aux_sym_protocol_token1] = ACTIONS(1737), - [aux_sym_proxy_command_token1] = ACTIONS(1737), - [aux_sym_proxy_jump_token1] = ACTIONS(1737), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1737), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1737), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1737), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1737), - [aux_sym_rekey_limit_token1] = ACTIONS(1737), - [aux_sym_remote_command_token1] = ACTIONS(1737), - [aux_sym_remote_forward_token1] = ACTIONS(1737), - [aux_sym_request_tty_token1] = ACTIONS(1737), - [aux_sym_required_rsa_size_token1] = ACTIONS(1737), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1737), - [aux_sym_security_key_provider_token1] = ACTIONS(1737), - [aux_sym_send_env_token1] = ACTIONS(1737), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1737), - [aux_sym_server_alive_interval_token1] = ACTIONS(1737), - [aux_sym_session_type_token1] = ACTIONS(1737), - [aux_sym_set_env_token1] = ACTIONS(1737), - [aux_sym_stdin_null_token1] = ACTIONS(1737), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1737), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1737), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1737), - [aux_sym_syslog_facility_token1] = ACTIONS(1737), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1737), - [aux_sym_keep_alive_token1] = ACTIONS(1737), - [aux_sym_tunnel_token1] = ACTIONS(1739), - [aux_sym_tunnel_device_token1] = ACTIONS(1737), - [aux_sym_update_host_keys_token1] = ACTIONS(1737), - [aux_sym_use_keychain_token1] = ACTIONS(1737), - [aux_sym_use_roaming_token1] = ACTIONS(1737), - [aux_sym_user_token1] = ACTIONS(1739), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1737), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1737), - [aux_sym_visual_host_key_token1] = ACTIONS(1737), - [aux_sym_xauth_location_token1] = ACTIONS(1737), + [ts_builtin_sym_end] = ACTIONS(1766), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1768), + [aux_sym_match_token1] = ACTIONS(1766), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1766), + [aux_sym_address_family_token1] = ACTIONS(1766), + [aux_sym_batch_mode_token1] = ACTIONS(1766), + [aux_sym_bind_address_token1] = ACTIONS(1766), + [aux_sym_bind_interface_token1] = ACTIONS(1766), + [aux_sym_canonical_domains_token1] = ACTIONS(1766), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1766), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1766), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1766), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1766), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1766), + [aux_sym_certificate_file_token1] = ACTIONS(1766), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1766), + [aux_sym_check_host_ip_token1] = ACTIONS(1766), + [aux_sym_ciphers_token1] = ACTIONS(1766), + [aux_sym_cipher_token1] = ACTIONS(1768), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1766), + [aux_sym_compression_token1] = ACTIONS(1766), + [aux_sym_connection_attempts_token1] = ACTIONS(1766), + [aux_sym_connect_timeout_token1] = ACTIONS(1766), + [aux_sym_control_master_token1] = ACTIONS(1766), + [aux_sym_control_path_token1] = ACTIONS(1766), + [aux_sym_control_persist_token1] = ACTIONS(1766), + [aux_sym_dynamic_forward_token1] = ACTIONS(1766), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1766), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1766), + [aux_sym_escape_char_token1] = ACTIONS(1766), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1766), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1766), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1766), + [aux_sym_forward_agent_token1] = ACTIONS(1766), + [aux_sym_forward_x11_token1] = ACTIONS(1768), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1766), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1766), + [aux_sym_gateway_ports_token1] = ACTIONS(1766), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1766), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1766), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1766), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1766), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1766), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1766), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1766), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1766), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1766), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1766), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1766), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1766), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1766), + [aux_sym_host_key_alias_token1] = ACTIONS(1766), + [aux_sym_hostname_token1] = ACTIONS(1766), + [aux_sym_identities_only_token1] = ACTIONS(1766), + [aux_sym_identity_agent_token1] = ACTIONS(1766), + [aux_sym_identity_file_token1] = ACTIONS(1766), + [aux_sym_ignore_unknown_token1] = ACTIONS(1766), + [aux_sym_include_token1] = ACTIONS(1766), + [aux_sym_ip_qos_token1] = ACTIONS(1766), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1766), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1766), + [aux_sym_kex_algorithms_token1] = ACTIONS(1766), + [aux_sym_known_hosts_command_token1] = ACTIONS(1766), + [aux_sym_local_command_token1] = ACTIONS(1766), + [aux_sym_local_forward_token1] = ACTIONS(1766), + [aux_sym_log_level_token1] = ACTIONS(1766), + [aux_sym_log_verbose_token1] = ACTIONS(1766), + [aux_sym_macs_token1] = ACTIONS(1766), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1766), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1766), + [aux_sym_password_authentication_token1] = ACTIONS(1766), + [aux_sym_permit_local_command_token1] = ACTIONS(1766), + [aux_sym_permit_remote_open_token1] = ACTIONS(1766), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1766), + [aux_sym_port_token1] = ACTIONS(1766), + [aux_sym_preferred_authentications_token1] = ACTIONS(1766), + [aux_sym_protocol_token1] = ACTIONS(1766), + [aux_sym_proxy_command_token1] = ACTIONS(1766), + [aux_sym_proxy_jump_token1] = ACTIONS(1766), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1766), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1766), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1766), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1766), + [aux_sym_rekey_limit_token1] = ACTIONS(1766), + [aux_sym_remote_command_token1] = ACTIONS(1766), + [aux_sym_remote_forward_token1] = ACTIONS(1766), + [aux_sym_request_tty_token1] = ACTIONS(1766), + [aux_sym_required_rsa_size_token1] = ACTIONS(1766), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1766), + [aux_sym_security_key_provider_token1] = ACTIONS(1766), + [aux_sym_send_env_token1] = ACTIONS(1766), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1766), + [aux_sym_server_alive_interval_token1] = ACTIONS(1766), + [aux_sym_session_type_token1] = ACTIONS(1766), + [aux_sym_set_env_token1] = ACTIONS(1766), + [aux_sym_stdin_null_token1] = ACTIONS(1766), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1766), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1766), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1766), + [aux_sym_syslog_facility_token1] = ACTIONS(1766), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1766), + [aux_sym_keep_alive_token1] = ACTIONS(1766), + [aux_sym_tunnel_token1] = ACTIONS(1768), + [aux_sym_tunnel_device_token1] = ACTIONS(1766), + [aux_sym_update_host_keys_token1] = ACTIONS(1766), + [aux_sym_use_keychain_token1] = ACTIONS(1766), + [aux_sym_use_roaming_token1] = ACTIONS(1766), + [aux_sym_user_token1] = ACTIONS(1768), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1766), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1766), + [aux_sym_visual_host_key_token1] = ACTIONS(1766), + [aux_sym_xauth_location_token1] = ACTIONS(1766), }, [742] = { - [ts_builtin_sym_end] = ACTIONS(1443), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1445), - [aux_sym_match_token1] = ACTIONS(1443), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1443), - [aux_sym_address_family_token1] = ACTIONS(1443), - [aux_sym_batch_mode_token1] = ACTIONS(1443), - [aux_sym_bind_address_token1] = ACTIONS(1443), - [aux_sym_bind_interface_token1] = ACTIONS(1443), - [aux_sym_canonical_domains_token1] = ACTIONS(1443), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1443), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1443), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1443), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1443), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1443), - [aux_sym_certificate_file_token1] = ACTIONS(1443), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1443), - [aux_sym_check_host_ip_token1] = ACTIONS(1443), - [aux_sym_ciphers_token1] = ACTIONS(1443), - [aux_sym_cipher_token1] = ACTIONS(1445), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1443), - [aux_sym_compression_token1] = ACTIONS(1443), - [aux_sym_connection_attempts_token1] = ACTIONS(1443), - [aux_sym_connect_timeout_token1] = ACTIONS(1443), - [aux_sym_control_master_token1] = ACTIONS(1443), - [aux_sym_control_path_token1] = ACTIONS(1443), - [aux_sym_control_persist_token1] = ACTIONS(1443), - [aux_sym_dynamic_forward_token1] = ACTIONS(1443), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1443), - [aux_sym_escape_char_token1] = ACTIONS(1443), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1443), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1443), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1443), - [aux_sym_forward_agent_token1] = ACTIONS(1443), - [aux_sym_forward_x11_token1] = ACTIONS(1445), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1443), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1443), - [aux_sym_gateway_ports_token1] = ACTIONS(1443), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1443), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1443), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1443), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1443), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1443), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1443), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1443), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1443), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1443), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1443), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1443), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1443), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1443), - [aux_sym_host_key_alias_token1] = ACTIONS(1443), - [aux_sym_hostname_token1] = ACTIONS(1443), - [aux_sym_identities_only_token1] = ACTIONS(1443), - [aux_sym_identity_agent_token1] = ACTIONS(1443), - [aux_sym_identity_file_token1] = ACTIONS(1443), - [aux_sym_ignore_unknown_token1] = ACTIONS(1443), - [aux_sym_include_token1] = ACTIONS(1443), - [aux_sym_ip_qos_token1] = ACTIONS(1443), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1443), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1443), - [aux_sym_kex_algorithms_token1] = ACTIONS(1443), - [aux_sym_known_hosts_command_token1] = ACTIONS(1443), - [aux_sym_local_command_token1] = ACTIONS(1443), - [aux_sym_local_forward_token1] = ACTIONS(1443), - [aux_sym_log_level_token1] = ACTIONS(1443), - [aux_sym_log_verbose_token1] = ACTIONS(1443), - [aux_sym_macs_token1] = ACTIONS(1443), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1443), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1443), - [aux_sym_password_authentication_token1] = ACTIONS(1443), - [aux_sym_permit_local_command_token1] = ACTIONS(1443), - [aux_sym_permit_remote_open_token1] = ACTIONS(1443), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1443), - [aux_sym_port_token1] = ACTIONS(1443), - [aux_sym_preferred_authentications_token1] = ACTIONS(1443), - [aux_sym_protocol_token1] = ACTIONS(1443), - [aux_sym_proxy_command_token1] = ACTIONS(1443), - [aux_sym_proxy_jump_token1] = ACTIONS(1443), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1443), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1443), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1443), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1443), - [aux_sym_rekey_limit_token1] = ACTIONS(1443), - [aux_sym_remote_command_token1] = ACTIONS(1443), - [aux_sym_remote_forward_token1] = ACTIONS(1443), - [aux_sym_request_tty_token1] = ACTIONS(1443), - [aux_sym_required_rsa_size_token1] = ACTIONS(1443), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1443), - [aux_sym_security_key_provider_token1] = ACTIONS(1443), - [aux_sym_send_env_token1] = ACTIONS(1443), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1443), - [aux_sym_server_alive_interval_token1] = ACTIONS(1443), - [aux_sym_session_type_token1] = ACTIONS(1443), - [aux_sym_set_env_token1] = ACTIONS(1443), - [aux_sym_stdin_null_token1] = ACTIONS(1443), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1443), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1443), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1443), - [aux_sym_syslog_facility_token1] = ACTIONS(1443), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1443), - [aux_sym_keep_alive_token1] = ACTIONS(1443), - [aux_sym_tunnel_token1] = ACTIONS(1445), - [aux_sym_tunnel_device_token1] = ACTIONS(1443), - [aux_sym_update_host_keys_token1] = ACTIONS(1443), - [aux_sym_use_keychain_token1] = ACTIONS(1443), - [aux_sym_use_roaming_token1] = ACTIONS(1443), - [aux_sym_user_token1] = ACTIONS(1445), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1443), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1443), - [aux_sym_visual_host_key_token1] = ACTIONS(1443), - [aux_sym_xauth_location_token1] = ACTIONS(1443), + [ts_builtin_sym_end] = ACTIONS(704), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(706), + [aux_sym_match_token1] = ACTIONS(704), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(704), + [aux_sym_address_family_token1] = ACTIONS(704), + [aux_sym_batch_mode_token1] = ACTIONS(704), + [aux_sym_bind_address_token1] = ACTIONS(704), + [aux_sym_bind_interface_token1] = ACTIONS(704), + [aux_sym_canonical_domains_token1] = ACTIONS(704), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(704), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(704), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(704), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(704), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(704), + [aux_sym_certificate_file_token1] = ACTIONS(704), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(704), + [aux_sym_check_host_ip_token1] = ACTIONS(704), + [aux_sym_ciphers_token1] = ACTIONS(704), + [aux_sym_cipher_token1] = ACTIONS(706), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(704), + [aux_sym_compression_token1] = ACTIONS(704), + [aux_sym_connection_attempts_token1] = ACTIONS(704), + [aux_sym_connect_timeout_token1] = ACTIONS(704), + [aux_sym_control_master_token1] = ACTIONS(704), + [aux_sym_control_path_token1] = ACTIONS(704), + [aux_sym_control_persist_token1] = ACTIONS(704), + [aux_sym_dynamic_forward_token1] = ACTIONS(704), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(704), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(704), + [aux_sym_escape_char_token1] = ACTIONS(704), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(704), + [aux_sym_fingerprint_hash_token1] = ACTIONS(704), + [aux_sym_fork_after_authentication_token1] = ACTIONS(704), + [aux_sym_forward_agent_token1] = ACTIONS(704), + [aux_sym_forward_x11_token1] = ACTIONS(706), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(704), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(704), + [aux_sym_gateway_ports_token1] = ACTIONS(704), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(704), + [aux_sym_gssapi_authentication_token1] = ACTIONS(704), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(704), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(704), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(704), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(704), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(704), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(704), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(704), + [aux_sym_hash_known_hosts_token1] = ACTIONS(704), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(704), + [aux_sym_hostbased_authentication_token1] = ACTIONS(704), + [aux_sym_host_key_algorithms_token1] = ACTIONS(704), + [aux_sym_host_key_alias_token1] = ACTIONS(704), + [aux_sym_hostname_token1] = ACTIONS(704), + [aux_sym_identities_only_token1] = ACTIONS(704), + [aux_sym_identity_agent_token1] = ACTIONS(704), + [aux_sym_identity_file_token1] = ACTIONS(704), + [aux_sym_ignore_unknown_token1] = ACTIONS(704), + [aux_sym_include_token1] = ACTIONS(704), + [aux_sym_ip_qos_token1] = ACTIONS(704), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(704), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(704), + [aux_sym_kex_algorithms_token1] = ACTIONS(704), + [aux_sym_known_hosts_command_token1] = ACTIONS(704), + [aux_sym_local_command_token1] = ACTIONS(704), + [aux_sym_local_forward_token1] = ACTIONS(704), + [aux_sym_log_level_token1] = ACTIONS(704), + [aux_sym_log_verbose_token1] = ACTIONS(704), + [aux_sym_macs_token1] = ACTIONS(704), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(704), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(704), + [aux_sym_password_authentication_token1] = ACTIONS(704), + [aux_sym_permit_local_command_token1] = ACTIONS(704), + [aux_sym_permit_remote_open_token1] = ACTIONS(704), + [aux_sym_pkcs11_provider_token1] = ACTIONS(704), + [aux_sym_port_token1] = ACTIONS(704), + [aux_sym_preferred_authentications_token1] = ACTIONS(704), + [aux_sym_protocol_token1] = ACTIONS(704), + [aux_sym_proxy_command_token1] = ACTIONS(704), + [aux_sym_proxy_jump_token1] = ACTIONS(704), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(704), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(704), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(704), + [aux_sym_pubkey_authentication_token1] = ACTIONS(704), + [aux_sym_rekey_limit_token1] = ACTIONS(704), + [aux_sym_remote_command_token1] = ACTIONS(704), + [aux_sym_remote_forward_token1] = ACTIONS(704), + [aux_sym_request_tty_token1] = ACTIONS(704), + [aux_sym_required_rsa_size_token1] = ACTIONS(704), + [aux_sym_revoked_host_keys_token1] = ACTIONS(704), + [aux_sym_security_key_provider_token1] = ACTIONS(704), + [aux_sym_send_env_token1] = ACTIONS(704), + [aux_sym_server_alive_count_max_token1] = ACTIONS(704), + [aux_sym_server_alive_interval_token1] = ACTIONS(704), + [aux_sym_session_type_token1] = ACTIONS(704), + [aux_sym_set_env_token1] = ACTIONS(704), + [aux_sym_stdin_null_token1] = ACTIONS(704), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(704), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(704), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(704), + [aux_sym_syslog_facility_token1] = ACTIONS(704), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(704), + [aux_sym_keep_alive_token1] = ACTIONS(704), + [aux_sym_tunnel_token1] = ACTIONS(706), + [aux_sym_tunnel_device_token1] = ACTIONS(704), + [aux_sym_update_host_keys_token1] = ACTIONS(704), + [aux_sym_use_keychain_token1] = ACTIONS(704), + [aux_sym_use_roaming_token1] = ACTIONS(704), + [aux_sym_user_token1] = ACTIONS(706), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(704), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(704), + [aux_sym_visual_host_key_token1] = ACTIONS(704), + [aux_sym_xauth_location_token1] = ACTIONS(704), }, [743] = { - [ts_builtin_sym_end] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1451), - [aux_sym_match_token1] = ACTIONS(1449), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1449), - [aux_sym_address_family_token1] = ACTIONS(1449), - [aux_sym_batch_mode_token1] = ACTIONS(1449), - [aux_sym_bind_address_token1] = ACTIONS(1449), - [aux_sym_bind_interface_token1] = ACTIONS(1449), - [aux_sym_canonical_domains_token1] = ACTIONS(1449), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1449), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1449), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1449), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1449), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1449), - [aux_sym_certificate_file_token1] = ACTIONS(1449), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1449), - [aux_sym_check_host_ip_token1] = ACTIONS(1449), - [aux_sym_ciphers_token1] = ACTIONS(1449), - [aux_sym_cipher_token1] = ACTIONS(1451), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1449), - [aux_sym_compression_token1] = ACTIONS(1449), - [aux_sym_connection_attempts_token1] = ACTIONS(1449), - [aux_sym_connect_timeout_token1] = ACTIONS(1449), - [aux_sym_control_master_token1] = ACTIONS(1449), - [aux_sym_control_path_token1] = ACTIONS(1449), - [aux_sym_control_persist_token1] = ACTIONS(1449), - [aux_sym_dynamic_forward_token1] = ACTIONS(1449), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1449), - [aux_sym_escape_char_token1] = ACTIONS(1449), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1449), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1449), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1449), - [aux_sym_forward_agent_token1] = ACTIONS(1449), - [aux_sym_forward_x11_token1] = ACTIONS(1451), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1449), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1449), - [aux_sym_gateway_ports_token1] = ACTIONS(1449), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1449), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1449), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1449), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1449), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1449), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1449), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1449), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1449), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1449), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1449), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1449), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1449), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1449), - [aux_sym_host_key_alias_token1] = ACTIONS(1449), - [aux_sym_hostname_token1] = ACTIONS(1449), - [aux_sym_identities_only_token1] = ACTIONS(1449), - [aux_sym_identity_agent_token1] = ACTIONS(1449), - [aux_sym_identity_file_token1] = ACTIONS(1449), - [aux_sym_ignore_unknown_token1] = ACTIONS(1449), - [aux_sym_include_token1] = ACTIONS(1449), - [aux_sym_ip_qos_token1] = ACTIONS(1449), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1449), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1449), - [aux_sym_kex_algorithms_token1] = ACTIONS(1449), - [aux_sym_known_hosts_command_token1] = ACTIONS(1449), - [aux_sym_local_command_token1] = ACTIONS(1449), - [aux_sym_local_forward_token1] = ACTIONS(1449), - [aux_sym_log_level_token1] = ACTIONS(1449), - [aux_sym_log_verbose_token1] = ACTIONS(1449), - [aux_sym_macs_token1] = ACTIONS(1449), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1449), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1449), - [aux_sym_password_authentication_token1] = ACTIONS(1449), - [aux_sym_permit_local_command_token1] = ACTIONS(1449), - [aux_sym_permit_remote_open_token1] = ACTIONS(1449), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1449), - [aux_sym_port_token1] = ACTIONS(1449), - [aux_sym_preferred_authentications_token1] = ACTIONS(1449), - [aux_sym_protocol_token1] = ACTIONS(1449), - [aux_sym_proxy_command_token1] = ACTIONS(1449), - [aux_sym_proxy_jump_token1] = ACTIONS(1449), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1449), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1449), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1449), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1449), - [aux_sym_rekey_limit_token1] = ACTIONS(1449), - [aux_sym_remote_command_token1] = ACTIONS(1449), - [aux_sym_remote_forward_token1] = ACTIONS(1449), - [aux_sym_request_tty_token1] = ACTIONS(1449), - [aux_sym_required_rsa_size_token1] = ACTIONS(1449), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1449), - [aux_sym_security_key_provider_token1] = ACTIONS(1449), - [aux_sym_send_env_token1] = ACTIONS(1449), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1449), - [aux_sym_server_alive_interval_token1] = ACTIONS(1449), - [aux_sym_session_type_token1] = ACTIONS(1449), - [aux_sym_set_env_token1] = ACTIONS(1449), - [aux_sym_stdin_null_token1] = ACTIONS(1449), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1449), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1449), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1449), - [aux_sym_syslog_facility_token1] = ACTIONS(1449), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1449), - [aux_sym_keep_alive_token1] = ACTIONS(1449), - [aux_sym_tunnel_token1] = ACTIONS(1451), - [aux_sym_tunnel_device_token1] = ACTIONS(1449), - [aux_sym_update_host_keys_token1] = ACTIONS(1449), - [aux_sym_use_keychain_token1] = ACTIONS(1449), - [aux_sym_use_roaming_token1] = ACTIONS(1449), - [aux_sym_user_token1] = ACTIONS(1451), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1449), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1449), - [aux_sym_visual_host_key_token1] = ACTIONS(1449), - [aux_sym_xauth_location_token1] = ACTIONS(1449), + [ts_builtin_sym_end] = ACTIONS(1598), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1600), + [aux_sym_match_token1] = ACTIONS(1598), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1598), + [aux_sym_address_family_token1] = ACTIONS(1598), + [aux_sym_batch_mode_token1] = ACTIONS(1598), + [aux_sym_bind_address_token1] = ACTIONS(1598), + [aux_sym_bind_interface_token1] = ACTIONS(1598), + [aux_sym_canonical_domains_token1] = ACTIONS(1598), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1598), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1598), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1598), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1598), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1598), + [aux_sym_certificate_file_token1] = ACTIONS(1598), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1598), + [aux_sym_check_host_ip_token1] = ACTIONS(1598), + [aux_sym_ciphers_token1] = ACTIONS(1598), + [aux_sym_cipher_token1] = ACTIONS(1600), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1598), + [aux_sym_compression_token1] = ACTIONS(1598), + [aux_sym_connection_attempts_token1] = ACTIONS(1598), + [aux_sym_connect_timeout_token1] = ACTIONS(1598), + [aux_sym_control_master_token1] = ACTIONS(1598), + [aux_sym_control_path_token1] = ACTIONS(1598), + [aux_sym_control_persist_token1] = ACTIONS(1598), + [aux_sym_dynamic_forward_token1] = ACTIONS(1598), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1598), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1598), + [aux_sym_escape_char_token1] = ACTIONS(1598), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1598), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1598), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1598), + [aux_sym_forward_agent_token1] = ACTIONS(1598), + [aux_sym_forward_x11_token1] = ACTIONS(1600), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1598), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1598), + [aux_sym_gateway_ports_token1] = ACTIONS(1598), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1598), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1598), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1598), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1598), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1598), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1598), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1598), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1598), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1598), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1598), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1598), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1598), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1598), + [aux_sym_host_key_alias_token1] = ACTIONS(1598), + [aux_sym_hostname_token1] = ACTIONS(1598), + [aux_sym_identities_only_token1] = ACTIONS(1598), + [aux_sym_identity_agent_token1] = ACTIONS(1598), + [aux_sym_identity_file_token1] = ACTIONS(1598), + [aux_sym_ignore_unknown_token1] = ACTIONS(1598), + [aux_sym_include_token1] = ACTIONS(1598), + [aux_sym_ip_qos_token1] = ACTIONS(1598), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1598), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1598), + [aux_sym_kex_algorithms_token1] = ACTIONS(1598), + [aux_sym_known_hosts_command_token1] = ACTIONS(1598), + [aux_sym_local_command_token1] = ACTIONS(1598), + [aux_sym_local_forward_token1] = ACTIONS(1598), + [aux_sym_log_level_token1] = ACTIONS(1598), + [aux_sym_log_verbose_token1] = ACTIONS(1598), + [aux_sym_macs_token1] = ACTIONS(1598), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1598), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1598), + [aux_sym_password_authentication_token1] = ACTIONS(1598), + [aux_sym_permit_local_command_token1] = ACTIONS(1598), + [aux_sym_permit_remote_open_token1] = ACTIONS(1598), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1598), + [aux_sym_port_token1] = ACTIONS(1598), + [aux_sym_preferred_authentications_token1] = ACTIONS(1598), + [aux_sym_protocol_token1] = ACTIONS(1598), + [aux_sym_proxy_command_token1] = ACTIONS(1598), + [aux_sym_proxy_jump_token1] = ACTIONS(1598), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1598), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1598), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1598), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1598), + [aux_sym_rekey_limit_token1] = ACTIONS(1598), + [aux_sym_remote_command_token1] = ACTIONS(1598), + [aux_sym_remote_forward_token1] = ACTIONS(1598), + [aux_sym_request_tty_token1] = ACTIONS(1598), + [aux_sym_required_rsa_size_token1] = ACTIONS(1598), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1598), + [aux_sym_security_key_provider_token1] = ACTIONS(1598), + [aux_sym_send_env_token1] = ACTIONS(1598), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1598), + [aux_sym_server_alive_interval_token1] = ACTIONS(1598), + [aux_sym_session_type_token1] = ACTIONS(1598), + [aux_sym_set_env_token1] = ACTIONS(1598), + [aux_sym_stdin_null_token1] = ACTIONS(1598), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1598), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1598), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1598), + [aux_sym_syslog_facility_token1] = ACTIONS(1598), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1598), + [aux_sym_keep_alive_token1] = ACTIONS(1598), + [aux_sym_tunnel_token1] = ACTIONS(1600), + [aux_sym_tunnel_device_token1] = ACTIONS(1598), + [aux_sym_update_host_keys_token1] = ACTIONS(1598), + [aux_sym_use_keychain_token1] = ACTIONS(1598), + [aux_sym_use_roaming_token1] = ACTIONS(1598), + [aux_sym_user_token1] = ACTIONS(1600), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1598), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1598), + [aux_sym_visual_host_key_token1] = ACTIONS(1598), + [aux_sym_xauth_location_token1] = ACTIONS(1598), }, [744] = { - [ts_builtin_sym_end] = ACTIONS(1731), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1733), - [aux_sym_match_token1] = ACTIONS(1731), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1731), - [aux_sym_address_family_token1] = ACTIONS(1731), - [aux_sym_batch_mode_token1] = ACTIONS(1731), - [aux_sym_bind_address_token1] = ACTIONS(1731), - [aux_sym_bind_interface_token1] = ACTIONS(1731), - [aux_sym_canonical_domains_token1] = ACTIONS(1731), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1731), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1731), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1731), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1731), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1731), - [aux_sym_certificate_file_token1] = ACTIONS(1731), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1731), - [aux_sym_check_host_ip_token1] = ACTIONS(1731), - [aux_sym_ciphers_token1] = ACTIONS(1731), - [aux_sym_cipher_token1] = ACTIONS(1733), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1731), - [aux_sym_compression_token1] = ACTIONS(1731), - [aux_sym_connection_attempts_token1] = ACTIONS(1731), - [aux_sym_connect_timeout_token1] = ACTIONS(1731), - [aux_sym_control_master_token1] = ACTIONS(1731), - [aux_sym_control_path_token1] = ACTIONS(1731), - [aux_sym_control_persist_token1] = ACTIONS(1731), - [aux_sym_dynamic_forward_token1] = ACTIONS(1731), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1731), - [aux_sym_escape_char_token1] = ACTIONS(1731), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1731), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1731), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1731), - [aux_sym_forward_agent_token1] = ACTIONS(1731), - [aux_sym_forward_x11_token1] = ACTIONS(1733), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1731), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1731), - [aux_sym_gateway_ports_token1] = ACTIONS(1731), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1731), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1731), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1731), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1731), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1731), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1731), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1731), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1731), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1731), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1731), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1731), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1731), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1731), - [aux_sym_host_key_alias_token1] = ACTIONS(1731), - [aux_sym_hostname_token1] = ACTIONS(1731), - [aux_sym_identities_only_token1] = ACTIONS(1731), - [aux_sym_identity_agent_token1] = ACTIONS(1731), - [aux_sym_identity_file_token1] = ACTIONS(1731), - [aux_sym_ignore_unknown_token1] = ACTIONS(1731), - [aux_sym_include_token1] = ACTIONS(1731), - [aux_sym_ip_qos_token1] = ACTIONS(1731), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1731), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1731), - [aux_sym_kex_algorithms_token1] = ACTIONS(1731), - [aux_sym_known_hosts_command_token1] = ACTIONS(1731), - [aux_sym_local_command_token1] = ACTIONS(1731), - [aux_sym_local_forward_token1] = ACTIONS(1731), - [aux_sym_log_level_token1] = ACTIONS(1731), - [aux_sym_log_verbose_token1] = ACTIONS(1731), - [aux_sym_macs_token1] = ACTIONS(1731), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1731), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1731), - [aux_sym_password_authentication_token1] = ACTIONS(1731), - [aux_sym_permit_local_command_token1] = ACTIONS(1731), - [aux_sym_permit_remote_open_token1] = ACTIONS(1731), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1731), - [aux_sym_port_token1] = ACTIONS(1731), - [aux_sym_preferred_authentications_token1] = ACTIONS(1731), - [aux_sym_protocol_token1] = ACTIONS(1731), - [aux_sym_proxy_command_token1] = ACTIONS(1731), - [aux_sym_proxy_jump_token1] = ACTIONS(1731), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1731), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1731), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1731), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1731), - [aux_sym_rekey_limit_token1] = ACTIONS(1731), - [aux_sym_remote_command_token1] = ACTIONS(1731), - [aux_sym_remote_forward_token1] = ACTIONS(1731), - [aux_sym_request_tty_token1] = ACTIONS(1731), - [aux_sym_required_rsa_size_token1] = ACTIONS(1731), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1731), - [aux_sym_security_key_provider_token1] = ACTIONS(1731), - [aux_sym_send_env_token1] = ACTIONS(1731), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1731), - [aux_sym_server_alive_interval_token1] = ACTIONS(1731), - [aux_sym_session_type_token1] = ACTIONS(1731), - [aux_sym_set_env_token1] = ACTIONS(1731), - [aux_sym_stdin_null_token1] = ACTIONS(1731), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1731), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1731), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1731), - [aux_sym_syslog_facility_token1] = ACTIONS(1731), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1731), - [aux_sym_keep_alive_token1] = ACTIONS(1731), - [aux_sym_tunnel_token1] = ACTIONS(1733), - [aux_sym_tunnel_device_token1] = ACTIONS(1731), - [aux_sym_update_host_keys_token1] = ACTIONS(1731), - [aux_sym_use_keychain_token1] = ACTIONS(1731), - [aux_sym_use_roaming_token1] = ACTIONS(1731), - [aux_sym_user_token1] = ACTIONS(1733), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1731), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1731), - [aux_sym_visual_host_key_token1] = ACTIONS(1731), - [aux_sym_xauth_location_token1] = ACTIONS(1731), + [ts_builtin_sym_end] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1762), + [aux_sym_match_token1] = ACTIONS(1760), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1760), + [aux_sym_address_family_token1] = ACTIONS(1760), + [aux_sym_batch_mode_token1] = ACTIONS(1760), + [aux_sym_bind_address_token1] = ACTIONS(1760), + [aux_sym_bind_interface_token1] = ACTIONS(1760), + [aux_sym_canonical_domains_token1] = ACTIONS(1760), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1760), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1760), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1760), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1760), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1760), + [aux_sym_certificate_file_token1] = ACTIONS(1760), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1760), + [aux_sym_check_host_ip_token1] = ACTIONS(1760), + [aux_sym_ciphers_token1] = ACTIONS(1760), + [aux_sym_cipher_token1] = ACTIONS(1762), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1760), + [aux_sym_compression_token1] = ACTIONS(1760), + [aux_sym_connection_attempts_token1] = ACTIONS(1760), + [aux_sym_connect_timeout_token1] = ACTIONS(1760), + [aux_sym_control_master_token1] = ACTIONS(1760), + [aux_sym_control_path_token1] = ACTIONS(1760), + [aux_sym_control_persist_token1] = ACTIONS(1760), + [aux_sym_dynamic_forward_token1] = ACTIONS(1760), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1760), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1760), + [aux_sym_escape_char_token1] = ACTIONS(1760), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1760), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1760), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1760), + [aux_sym_forward_agent_token1] = ACTIONS(1760), + [aux_sym_forward_x11_token1] = ACTIONS(1762), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1760), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1760), + [aux_sym_gateway_ports_token1] = ACTIONS(1760), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1760), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1760), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1760), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1760), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1760), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1760), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1760), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1760), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1760), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1760), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1760), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1760), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1760), + [aux_sym_host_key_alias_token1] = ACTIONS(1760), + [aux_sym_hostname_token1] = ACTIONS(1760), + [aux_sym_identities_only_token1] = ACTIONS(1760), + [aux_sym_identity_agent_token1] = ACTIONS(1760), + [aux_sym_identity_file_token1] = ACTIONS(1760), + [aux_sym_ignore_unknown_token1] = ACTIONS(1760), + [aux_sym_include_token1] = ACTIONS(1760), + [aux_sym_ip_qos_token1] = ACTIONS(1760), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1760), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1760), + [aux_sym_kex_algorithms_token1] = ACTIONS(1760), + [aux_sym_known_hosts_command_token1] = ACTIONS(1760), + [aux_sym_local_command_token1] = ACTIONS(1760), + [aux_sym_local_forward_token1] = ACTIONS(1760), + [aux_sym_log_level_token1] = ACTIONS(1760), + [aux_sym_log_verbose_token1] = ACTIONS(1760), + [aux_sym_macs_token1] = ACTIONS(1760), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1760), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1760), + [aux_sym_password_authentication_token1] = ACTIONS(1760), + [aux_sym_permit_local_command_token1] = ACTIONS(1760), + [aux_sym_permit_remote_open_token1] = ACTIONS(1760), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1760), + [aux_sym_port_token1] = ACTIONS(1760), + [aux_sym_preferred_authentications_token1] = ACTIONS(1760), + [aux_sym_protocol_token1] = ACTIONS(1760), + [aux_sym_proxy_command_token1] = ACTIONS(1760), + [aux_sym_proxy_jump_token1] = ACTIONS(1760), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1760), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1760), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1760), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1760), + [aux_sym_rekey_limit_token1] = ACTIONS(1760), + [aux_sym_remote_command_token1] = ACTIONS(1760), + [aux_sym_remote_forward_token1] = ACTIONS(1760), + [aux_sym_request_tty_token1] = ACTIONS(1760), + [aux_sym_required_rsa_size_token1] = ACTIONS(1760), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1760), + [aux_sym_security_key_provider_token1] = ACTIONS(1760), + [aux_sym_send_env_token1] = ACTIONS(1760), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1760), + [aux_sym_server_alive_interval_token1] = ACTIONS(1760), + [aux_sym_session_type_token1] = ACTIONS(1760), + [aux_sym_set_env_token1] = ACTIONS(1760), + [aux_sym_stdin_null_token1] = ACTIONS(1760), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1760), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1760), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1760), + [aux_sym_syslog_facility_token1] = ACTIONS(1760), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1760), + [aux_sym_keep_alive_token1] = ACTIONS(1760), + [aux_sym_tunnel_token1] = ACTIONS(1762), + [aux_sym_tunnel_device_token1] = ACTIONS(1760), + [aux_sym_update_host_keys_token1] = ACTIONS(1760), + [aux_sym_use_keychain_token1] = ACTIONS(1760), + [aux_sym_use_roaming_token1] = ACTIONS(1760), + [aux_sym_user_token1] = ACTIONS(1762), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1760), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1760), + [aux_sym_visual_host_key_token1] = ACTIONS(1760), + [aux_sym_xauth_location_token1] = ACTIONS(1760), }, [745] = { - [ts_builtin_sym_end] = ACTIONS(1455), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1457), - [aux_sym_match_token1] = ACTIONS(1455), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1455), - [aux_sym_address_family_token1] = ACTIONS(1455), - [aux_sym_batch_mode_token1] = ACTIONS(1455), - [aux_sym_bind_address_token1] = ACTIONS(1455), - [aux_sym_bind_interface_token1] = ACTIONS(1455), - [aux_sym_canonical_domains_token1] = ACTIONS(1455), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1455), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1455), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1455), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1455), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1455), - [aux_sym_certificate_file_token1] = ACTIONS(1455), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1455), - [aux_sym_check_host_ip_token1] = ACTIONS(1455), - [aux_sym_ciphers_token1] = ACTIONS(1455), - [aux_sym_cipher_token1] = ACTIONS(1457), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1455), - [aux_sym_compression_token1] = ACTIONS(1455), - [aux_sym_connection_attempts_token1] = ACTIONS(1455), - [aux_sym_connect_timeout_token1] = ACTIONS(1455), - [aux_sym_control_master_token1] = ACTIONS(1455), - [aux_sym_control_path_token1] = ACTIONS(1455), - [aux_sym_control_persist_token1] = ACTIONS(1455), - [aux_sym_dynamic_forward_token1] = ACTIONS(1455), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1455), - [aux_sym_escape_char_token1] = ACTIONS(1455), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1455), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1455), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1455), - [aux_sym_forward_agent_token1] = ACTIONS(1455), - [aux_sym_forward_x11_token1] = ACTIONS(1457), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1455), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1455), - [aux_sym_gateway_ports_token1] = ACTIONS(1455), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1455), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1455), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1455), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1455), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1455), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1455), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1455), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1455), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1455), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1455), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1455), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1455), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1455), - [aux_sym_host_key_alias_token1] = ACTIONS(1455), - [aux_sym_hostname_token1] = ACTIONS(1455), - [aux_sym_identities_only_token1] = ACTIONS(1455), - [aux_sym_identity_agent_token1] = ACTIONS(1455), - [aux_sym_identity_file_token1] = ACTIONS(1455), - [aux_sym_ignore_unknown_token1] = ACTIONS(1455), - [aux_sym_include_token1] = ACTIONS(1455), - [aux_sym_ip_qos_token1] = ACTIONS(1455), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1455), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1455), - [aux_sym_kex_algorithms_token1] = ACTIONS(1455), - [aux_sym_known_hosts_command_token1] = ACTIONS(1455), - [aux_sym_local_command_token1] = ACTIONS(1455), - [aux_sym_local_forward_token1] = ACTIONS(1455), - [aux_sym_log_level_token1] = ACTIONS(1455), - [aux_sym_log_verbose_token1] = ACTIONS(1455), - [aux_sym_macs_token1] = ACTIONS(1455), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1455), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1455), - [aux_sym_password_authentication_token1] = ACTIONS(1455), - [aux_sym_permit_local_command_token1] = ACTIONS(1455), - [aux_sym_permit_remote_open_token1] = ACTIONS(1455), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1455), - [aux_sym_port_token1] = ACTIONS(1455), - [aux_sym_preferred_authentications_token1] = ACTIONS(1455), - [aux_sym_protocol_token1] = ACTIONS(1455), - [aux_sym_proxy_command_token1] = ACTIONS(1455), - [aux_sym_proxy_jump_token1] = ACTIONS(1455), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1455), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1455), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1455), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1455), - [aux_sym_rekey_limit_token1] = ACTIONS(1455), - [aux_sym_remote_command_token1] = ACTIONS(1455), - [aux_sym_remote_forward_token1] = ACTIONS(1455), - [aux_sym_request_tty_token1] = ACTIONS(1455), - [aux_sym_required_rsa_size_token1] = ACTIONS(1455), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1455), - [aux_sym_security_key_provider_token1] = ACTIONS(1455), - [aux_sym_send_env_token1] = ACTIONS(1455), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1455), - [aux_sym_server_alive_interval_token1] = ACTIONS(1455), - [aux_sym_session_type_token1] = ACTIONS(1455), - [aux_sym_set_env_token1] = ACTIONS(1455), - [aux_sym_stdin_null_token1] = ACTIONS(1455), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1455), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1455), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1455), - [aux_sym_syslog_facility_token1] = ACTIONS(1455), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1455), - [aux_sym_keep_alive_token1] = ACTIONS(1455), - [aux_sym_tunnel_token1] = ACTIONS(1457), - [aux_sym_tunnel_device_token1] = ACTIONS(1455), - [aux_sym_update_host_keys_token1] = ACTIONS(1455), - [aux_sym_use_keychain_token1] = ACTIONS(1455), - [aux_sym_use_roaming_token1] = ACTIONS(1455), - [aux_sym_user_token1] = ACTIONS(1457), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1455), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1455), - [aux_sym_visual_host_key_token1] = ACTIONS(1455), - [aux_sym_xauth_location_token1] = ACTIONS(1455), + [ts_builtin_sym_end] = ACTIONS(776), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(778), + [aux_sym_match_token1] = ACTIONS(776), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(776), + [aux_sym_address_family_token1] = ACTIONS(776), + [aux_sym_batch_mode_token1] = ACTIONS(776), + [aux_sym_bind_address_token1] = ACTIONS(776), + [aux_sym_bind_interface_token1] = ACTIONS(776), + [aux_sym_canonical_domains_token1] = ACTIONS(776), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(776), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(776), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(776), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(776), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(776), + [aux_sym_certificate_file_token1] = ACTIONS(776), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(776), + [aux_sym_check_host_ip_token1] = ACTIONS(776), + [aux_sym_ciphers_token1] = ACTIONS(776), + [aux_sym_cipher_token1] = ACTIONS(778), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(776), + [aux_sym_compression_token1] = ACTIONS(776), + [aux_sym_connection_attempts_token1] = ACTIONS(776), + [aux_sym_connect_timeout_token1] = ACTIONS(776), + [aux_sym_control_master_token1] = ACTIONS(776), + [aux_sym_control_path_token1] = ACTIONS(776), + [aux_sym_control_persist_token1] = ACTIONS(776), + [aux_sym_dynamic_forward_token1] = ACTIONS(776), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(776), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(776), + [aux_sym_escape_char_token1] = ACTIONS(776), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(776), + [aux_sym_fingerprint_hash_token1] = ACTIONS(776), + [aux_sym_fork_after_authentication_token1] = ACTIONS(776), + [aux_sym_forward_agent_token1] = ACTIONS(776), + [aux_sym_forward_x11_token1] = ACTIONS(778), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(776), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(776), + [aux_sym_gateway_ports_token1] = ACTIONS(776), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(776), + [aux_sym_gssapi_authentication_token1] = ACTIONS(776), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(776), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(776), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(776), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(776), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(776), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(776), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(776), + [aux_sym_hash_known_hosts_token1] = ACTIONS(776), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(776), + [aux_sym_hostbased_authentication_token1] = ACTIONS(776), + [aux_sym_host_key_algorithms_token1] = ACTIONS(776), + [aux_sym_host_key_alias_token1] = ACTIONS(776), + [aux_sym_hostname_token1] = ACTIONS(776), + [aux_sym_identities_only_token1] = ACTIONS(776), + [aux_sym_identity_agent_token1] = ACTIONS(776), + [aux_sym_identity_file_token1] = ACTIONS(776), + [aux_sym_ignore_unknown_token1] = ACTIONS(776), + [aux_sym_include_token1] = ACTIONS(776), + [aux_sym_ip_qos_token1] = ACTIONS(776), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(776), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(776), + [aux_sym_kex_algorithms_token1] = ACTIONS(776), + [aux_sym_known_hosts_command_token1] = ACTIONS(776), + [aux_sym_local_command_token1] = ACTIONS(776), + [aux_sym_local_forward_token1] = ACTIONS(776), + [aux_sym_log_level_token1] = ACTIONS(776), + [aux_sym_log_verbose_token1] = ACTIONS(776), + [aux_sym_macs_token1] = ACTIONS(776), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(776), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(776), + [aux_sym_password_authentication_token1] = ACTIONS(776), + [aux_sym_permit_local_command_token1] = ACTIONS(776), + [aux_sym_permit_remote_open_token1] = ACTIONS(776), + [aux_sym_pkcs11_provider_token1] = ACTIONS(776), + [aux_sym_port_token1] = ACTIONS(776), + [aux_sym_preferred_authentications_token1] = ACTIONS(776), + [aux_sym_protocol_token1] = ACTIONS(776), + [aux_sym_proxy_command_token1] = ACTIONS(776), + [aux_sym_proxy_jump_token1] = ACTIONS(776), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(776), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(776), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(776), + [aux_sym_pubkey_authentication_token1] = ACTIONS(776), + [aux_sym_rekey_limit_token1] = ACTIONS(776), + [aux_sym_remote_command_token1] = ACTIONS(776), + [aux_sym_remote_forward_token1] = ACTIONS(776), + [aux_sym_request_tty_token1] = ACTIONS(776), + [aux_sym_required_rsa_size_token1] = ACTIONS(776), + [aux_sym_revoked_host_keys_token1] = ACTIONS(776), + [aux_sym_security_key_provider_token1] = ACTIONS(776), + [aux_sym_send_env_token1] = ACTIONS(776), + [aux_sym_server_alive_count_max_token1] = ACTIONS(776), + [aux_sym_server_alive_interval_token1] = ACTIONS(776), + [aux_sym_session_type_token1] = ACTIONS(776), + [aux_sym_set_env_token1] = ACTIONS(776), + [aux_sym_stdin_null_token1] = ACTIONS(776), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(776), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(776), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(776), + [aux_sym_syslog_facility_token1] = ACTIONS(776), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(776), + [aux_sym_keep_alive_token1] = ACTIONS(776), + [aux_sym_tunnel_token1] = ACTIONS(778), + [aux_sym_tunnel_device_token1] = ACTIONS(776), + [aux_sym_update_host_keys_token1] = ACTIONS(776), + [aux_sym_use_keychain_token1] = ACTIONS(776), + [aux_sym_use_roaming_token1] = ACTIONS(776), + [aux_sym_user_token1] = ACTIONS(778), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(776), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(776), + [aux_sym_visual_host_key_token1] = ACTIONS(776), + [aux_sym_xauth_location_token1] = ACTIONS(776), }, [746] = { - [ts_builtin_sym_end] = ACTIONS(1569), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1571), - [aux_sym_match_token1] = ACTIONS(1569), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1569), - [aux_sym_address_family_token1] = ACTIONS(1569), - [aux_sym_batch_mode_token1] = ACTIONS(1569), - [aux_sym_bind_address_token1] = ACTIONS(1569), - [aux_sym_bind_interface_token1] = ACTIONS(1569), - [aux_sym_canonical_domains_token1] = ACTIONS(1569), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1569), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1569), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1569), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1569), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1569), - [aux_sym_certificate_file_token1] = ACTIONS(1569), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1569), - [aux_sym_check_host_ip_token1] = ACTIONS(1569), - [aux_sym_ciphers_token1] = ACTIONS(1569), - [aux_sym_cipher_token1] = ACTIONS(1571), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1569), - [aux_sym_compression_token1] = ACTIONS(1569), - [aux_sym_connection_attempts_token1] = ACTIONS(1569), - [aux_sym_connect_timeout_token1] = ACTIONS(1569), - [aux_sym_control_master_token1] = ACTIONS(1569), - [aux_sym_control_path_token1] = ACTIONS(1569), - [aux_sym_control_persist_token1] = ACTIONS(1569), - [aux_sym_dynamic_forward_token1] = ACTIONS(1569), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1569), - [aux_sym_escape_char_token1] = ACTIONS(1569), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1569), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1569), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1569), - [aux_sym_forward_agent_token1] = ACTIONS(1569), - [aux_sym_forward_x11_token1] = ACTIONS(1571), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1569), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1569), - [aux_sym_gateway_ports_token1] = ACTIONS(1569), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1569), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1569), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1569), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1569), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1569), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1569), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1569), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1569), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1569), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1569), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1569), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1569), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1569), - [aux_sym_host_key_alias_token1] = ACTIONS(1569), - [aux_sym_hostname_token1] = ACTIONS(1569), - [aux_sym_identities_only_token1] = ACTIONS(1569), - [aux_sym_identity_agent_token1] = ACTIONS(1569), - [aux_sym_identity_file_token1] = ACTIONS(1569), - [aux_sym_ignore_unknown_token1] = ACTIONS(1569), - [aux_sym_include_token1] = ACTIONS(1569), - [aux_sym_ip_qos_token1] = ACTIONS(1569), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1569), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1569), - [aux_sym_kex_algorithms_token1] = ACTIONS(1569), - [aux_sym_known_hosts_command_token1] = ACTIONS(1569), - [aux_sym_local_command_token1] = ACTIONS(1569), - [aux_sym_local_forward_token1] = ACTIONS(1569), - [aux_sym_log_level_token1] = ACTIONS(1569), - [aux_sym_log_verbose_token1] = ACTIONS(1569), - [aux_sym_macs_token1] = ACTIONS(1569), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1569), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1569), - [aux_sym_password_authentication_token1] = ACTIONS(1569), - [aux_sym_permit_local_command_token1] = ACTIONS(1569), - [aux_sym_permit_remote_open_token1] = ACTIONS(1569), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1569), - [aux_sym_port_token1] = ACTIONS(1569), - [aux_sym_preferred_authentications_token1] = ACTIONS(1569), - [aux_sym_protocol_token1] = ACTIONS(1569), - [aux_sym_proxy_command_token1] = ACTIONS(1569), - [aux_sym_proxy_jump_token1] = ACTIONS(1569), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1569), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1569), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1569), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1569), - [aux_sym_rekey_limit_token1] = ACTIONS(1569), - [aux_sym_remote_command_token1] = ACTIONS(1569), - [aux_sym_remote_forward_token1] = ACTIONS(1569), - [aux_sym_request_tty_token1] = ACTIONS(1569), - [aux_sym_required_rsa_size_token1] = ACTIONS(1569), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1569), - [aux_sym_security_key_provider_token1] = ACTIONS(1569), - [aux_sym_send_env_token1] = ACTIONS(1569), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1569), - [aux_sym_server_alive_interval_token1] = ACTIONS(1569), - [aux_sym_session_type_token1] = ACTIONS(1569), - [aux_sym_set_env_token1] = ACTIONS(1569), - [aux_sym_stdin_null_token1] = ACTIONS(1569), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1569), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1569), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1569), - [aux_sym_syslog_facility_token1] = ACTIONS(1569), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1569), - [aux_sym_keep_alive_token1] = ACTIONS(1569), - [aux_sym_tunnel_token1] = ACTIONS(1571), - [aux_sym_tunnel_device_token1] = ACTIONS(1569), - [aux_sym_update_host_keys_token1] = ACTIONS(1569), - [aux_sym_use_keychain_token1] = ACTIONS(1569), - [aux_sym_use_roaming_token1] = ACTIONS(1569), - [aux_sym_user_token1] = ACTIONS(1571), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1569), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1569), - [aux_sym_visual_host_key_token1] = ACTIONS(1569), - [aux_sym_xauth_location_token1] = ACTIONS(1569), + [ts_builtin_sym_end] = ACTIONS(1604), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1606), + [aux_sym_match_token1] = ACTIONS(1604), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1604), + [aux_sym_address_family_token1] = ACTIONS(1604), + [aux_sym_batch_mode_token1] = ACTIONS(1604), + [aux_sym_bind_address_token1] = ACTIONS(1604), + [aux_sym_bind_interface_token1] = ACTIONS(1604), + [aux_sym_canonical_domains_token1] = ACTIONS(1604), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1604), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1604), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1604), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1604), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1604), + [aux_sym_certificate_file_token1] = ACTIONS(1604), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1604), + [aux_sym_check_host_ip_token1] = ACTIONS(1604), + [aux_sym_ciphers_token1] = ACTIONS(1604), + [aux_sym_cipher_token1] = ACTIONS(1606), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1604), + [aux_sym_compression_token1] = ACTIONS(1604), + [aux_sym_connection_attempts_token1] = ACTIONS(1604), + [aux_sym_connect_timeout_token1] = ACTIONS(1604), + [aux_sym_control_master_token1] = ACTIONS(1604), + [aux_sym_control_path_token1] = ACTIONS(1604), + [aux_sym_control_persist_token1] = ACTIONS(1604), + [aux_sym_dynamic_forward_token1] = ACTIONS(1604), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1604), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1604), + [aux_sym_escape_char_token1] = ACTIONS(1604), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1604), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1604), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1604), + [aux_sym_forward_agent_token1] = ACTIONS(1604), + [aux_sym_forward_x11_token1] = ACTIONS(1606), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1604), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1604), + [aux_sym_gateway_ports_token1] = ACTIONS(1604), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1604), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1604), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1604), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1604), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1604), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1604), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1604), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1604), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1604), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1604), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1604), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1604), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1604), + [aux_sym_host_key_alias_token1] = ACTIONS(1604), + [aux_sym_hostname_token1] = ACTIONS(1604), + [aux_sym_identities_only_token1] = ACTIONS(1604), + [aux_sym_identity_agent_token1] = ACTIONS(1604), + [aux_sym_identity_file_token1] = ACTIONS(1604), + [aux_sym_ignore_unknown_token1] = ACTIONS(1604), + [aux_sym_include_token1] = ACTIONS(1604), + [aux_sym_ip_qos_token1] = ACTIONS(1604), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1604), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1604), + [aux_sym_kex_algorithms_token1] = ACTIONS(1604), + [aux_sym_known_hosts_command_token1] = ACTIONS(1604), + [aux_sym_local_command_token1] = ACTIONS(1604), + [aux_sym_local_forward_token1] = ACTIONS(1604), + [aux_sym_log_level_token1] = ACTIONS(1604), + [aux_sym_log_verbose_token1] = ACTIONS(1604), + [aux_sym_macs_token1] = ACTIONS(1604), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1604), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1604), + [aux_sym_password_authentication_token1] = ACTIONS(1604), + [aux_sym_permit_local_command_token1] = ACTIONS(1604), + [aux_sym_permit_remote_open_token1] = ACTIONS(1604), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1604), + [aux_sym_port_token1] = ACTIONS(1604), + [aux_sym_preferred_authentications_token1] = ACTIONS(1604), + [aux_sym_protocol_token1] = ACTIONS(1604), + [aux_sym_proxy_command_token1] = ACTIONS(1604), + [aux_sym_proxy_jump_token1] = ACTIONS(1604), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1604), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1604), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1604), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1604), + [aux_sym_rekey_limit_token1] = ACTIONS(1604), + [aux_sym_remote_command_token1] = ACTIONS(1604), + [aux_sym_remote_forward_token1] = ACTIONS(1604), + [aux_sym_request_tty_token1] = ACTIONS(1604), + [aux_sym_required_rsa_size_token1] = ACTIONS(1604), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1604), + [aux_sym_security_key_provider_token1] = ACTIONS(1604), + [aux_sym_send_env_token1] = ACTIONS(1604), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1604), + [aux_sym_server_alive_interval_token1] = ACTIONS(1604), + [aux_sym_session_type_token1] = ACTIONS(1604), + [aux_sym_set_env_token1] = ACTIONS(1604), + [aux_sym_stdin_null_token1] = ACTIONS(1604), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1604), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1604), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1604), + [aux_sym_syslog_facility_token1] = ACTIONS(1604), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1604), + [aux_sym_keep_alive_token1] = ACTIONS(1604), + [aux_sym_tunnel_token1] = ACTIONS(1606), + [aux_sym_tunnel_device_token1] = ACTIONS(1604), + [aux_sym_update_host_keys_token1] = ACTIONS(1604), + [aux_sym_use_keychain_token1] = ACTIONS(1604), + [aux_sym_use_roaming_token1] = ACTIONS(1604), + [aux_sym_user_token1] = ACTIONS(1606), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1604), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1604), + [aux_sym_visual_host_key_token1] = ACTIONS(1604), + [aux_sym_xauth_location_token1] = ACTIONS(1604), }, [747] = { - [ts_builtin_sym_end] = ACTIONS(1725), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1727), - [aux_sym_match_token1] = ACTIONS(1725), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1725), - [aux_sym_address_family_token1] = ACTIONS(1725), - [aux_sym_batch_mode_token1] = ACTIONS(1725), - [aux_sym_bind_address_token1] = ACTIONS(1725), - [aux_sym_bind_interface_token1] = ACTIONS(1725), - [aux_sym_canonical_domains_token1] = ACTIONS(1725), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1725), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1725), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1725), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1725), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1725), - [aux_sym_certificate_file_token1] = ACTIONS(1725), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1725), - [aux_sym_check_host_ip_token1] = ACTIONS(1725), - [aux_sym_ciphers_token1] = ACTIONS(1725), - [aux_sym_cipher_token1] = ACTIONS(1727), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1725), - [aux_sym_compression_token1] = ACTIONS(1725), - [aux_sym_connection_attempts_token1] = ACTIONS(1725), - [aux_sym_connect_timeout_token1] = ACTIONS(1725), - [aux_sym_control_master_token1] = ACTIONS(1725), - [aux_sym_control_path_token1] = ACTIONS(1725), - [aux_sym_control_persist_token1] = ACTIONS(1725), - [aux_sym_dynamic_forward_token1] = ACTIONS(1725), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1725), - [aux_sym_escape_char_token1] = ACTIONS(1725), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1725), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1725), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1725), - [aux_sym_forward_agent_token1] = ACTIONS(1725), - [aux_sym_forward_x11_token1] = ACTIONS(1727), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1725), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1725), - [aux_sym_gateway_ports_token1] = ACTIONS(1725), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1725), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1725), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1725), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1725), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1725), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1725), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1725), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1725), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1725), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1725), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1725), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1725), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1725), - [aux_sym_host_key_alias_token1] = ACTIONS(1725), - [aux_sym_hostname_token1] = ACTIONS(1725), - [aux_sym_identities_only_token1] = ACTIONS(1725), - [aux_sym_identity_agent_token1] = ACTIONS(1725), - [aux_sym_identity_file_token1] = ACTIONS(1725), - [aux_sym_ignore_unknown_token1] = ACTIONS(1725), - [aux_sym_include_token1] = ACTIONS(1725), - [aux_sym_ip_qos_token1] = ACTIONS(1725), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1725), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1725), - [aux_sym_kex_algorithms_token1] = ACTIONS(1725), - [aux_sym_known_hosts_command_token1] = ACTIONS(1725), - [aux_sym_local_command_token1] = ACTIONS(1725), - [aux_sym_local_forward_token1] = ACTIONS(1725), - [aux_sym_log_level_token1] = ACTIONS(1725), - [aux_sym_log_verbose_token1] = ACTIONS(1725), - [aux_sym_macs_token1] = ACTIONS(1725), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1725), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1725), - [aux_sym_password_authentication_token1] = ACTIONS(1725), - [aux_sym_permit_local_command_token1] = ACTIONS(1725), - [aux_sym_permit_remote_open_token1] = ACTIONS(1725), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1725), - [aux_sym_port_token1] = ACTIONS(1725), - [aux_sym_preferred_authentications_token1] = ACTIONS(1725), - [aux_sym_protocol_token1] = ACTIONS(1725), - [aux_sym_proxy_command_token1] = ACTIONS(1725), - [aux_sym_proxy_jump_token1] = ACTIONS(1725), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1725), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1725), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1725), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1725), - [aux_sym_rekey_limit_token1] = ACTIONS(1725), - [aux_sym_remote_command_token1] = ACTIONS(1725), - [aux_sym_remote_forward_token1] = ACTIONS(1725), - [aux_sym_request_tty_token1] = ACTIONS(1725), - [aux_sym_required_rsa_size_token1] = ACTIONS(1725), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1725), - [aux_sym_security_key_provider_token1] = ACTIONS(1725), - [aux_sym_send_env_token1] = ACTIONS(1725), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1725), - [aux_sym_server_alive_interval_token1] = ACTIONS(1725), - [aux_sym_session_type_token1] = ACTIONS(1725), - [aux_sym_set_env_token1] = ACTIONS(1725), - [aux_sym_stdin_null_token1] = ACTIONS(1725), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1725), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1725), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1725), - [aux_sym_syslog_facility_token1] = ACTIONS(1725), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1725), - [aux_sym_keep_alive_token1] = ACTIONS(1725), - [aux_sym_tunnel_token1] = ACTIONS(1727), - [aux_sym_tunnel_device_token1] = ACTIONS(1725), - [aux_sym_update_host_keys_token1] = ACTIONS(1725), - [aux_sym_use_keychain_token1] = ACTIONS(1725), - [aux_sym_use_roaming_token1] = ACTIONS(1725), - [aux_sym_user_token1] = ACTIONS(1727), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1725), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1725), - [aux_sym_visual_host_key_token1] = ACTIONS(1725), - [aux_sym_xauth_location_token1] = ACTIONS(1725), + [ts_builtin_sym_end] = ACTIONS(1754), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1756), + [aux_sym_match_token1] = ACTIONS(1754), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1754), + [aux_sym_address_family_token1] = ACTIONS(1754), + [aux_sym_batch_mode_token1] = ACTIONS(1754), + [aux_sym_bind_address_token1] = ACTIONS(1754), + [aux_sym_bind_interface_token1] = ACTIONS(1754), + [aux_sym_canonical_domains_token1] = ACTIONS(1754), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1754), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1754), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1754), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1754), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1754), + [aux_sym_certificate_file_token1] = ACTIONS(1754), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1754), + [aux_sym_check_host_ip_token1] = ACTIONS(1754), + [aux_sym_ciphers_token1] = ACTIONS(1754), + [aux_sym_cipher_token1] = ACTIONS(1756), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1754), + [aux_sym_compression_token1] = ACTIONS(1754), + [aux_sym_connection_attempts_token1] = ACTIONS(1754), + [aux_sym_connect_timeout_token1] = ACTIONS(1754), + [aux_sym_control_master_token1] = ACTIONS(1754), + [aux_sym_control_path_token1] = ACTIONS(1754), + [aux_sym_control_persist_token1] = ACTIONS(1754), + [aux_sym_dynamic_forward_token1] = ACTIONS(1754), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1754), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1754), + [aux_sym_escape_char_token1] = ACTIONS(1754), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1754), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1754), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1754), + [aux_sym_forward_agent_token1] = ACTIONS(1754), + [aux_sym_forward_x11_token1] = ACTIONS(1756), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1754), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1754), + [aux_sym_gateway_ports_token1] = ACTIONS(1754), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1754), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1754), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1754), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1754), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1754), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1754), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1754), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1754), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1754), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1754), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1754), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1754), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1754), + [aux_sym_host_key_alias_token1] = ACTIONS(1754), + [aux_sym_hostname_token1] = ACTIONS(1754), + [aux_sym_identities_only_token1] = ACTIONS(1754), + [aux_sym_identity_agent_token1] = ACTIONS(1754), + [aux_sym_identity_file_token1] = ACTIONS(1754), + [aux_sym_ignore_unknown_token1] = ACTIONS(1754), + [aux_sym_include_token1] = ACTIONS(1754), + [aux_sym_ip_qos_token1] = ACTIONS(1754), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1754), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1754), + [aux_sym_kex_algorithms_token1] = ACTIONS(1754), + [aux_sym_known_hosts_command_token1] = ACTIONS(1754), + [aux_sym_local_command_token1] = ACTIONS(1754), + [aux_sym_local_forward_token1] = ACTIONS(1754), + [aux_sym_log_level_token1] = ACTIONS(1754), + [aux_sym_log_verbose_token1] = ACTIONS(1754), + [aux_sym_macs_token1] = ACTIONS(1754), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1754), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1754), + [aux_sym_password_authentication_token1] = ACTIONS(1754), + [aux_sym_permit_local_command_token1] = ACTIONS(1754), + [aux_sym_permit_remote_open_token1] = ACTIONS(1754), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1754), + [aux_sym_port_token1] = ACTIONS(1754), + [aux_sym_preferred_authentications_token1] = ACTIONS(1754), + [aux_sym_protocol_token1] = ACTIONS(1754), + [aux_sym_proxy_command_token1] = ACTIONS(1754), + [aux_sym_proxy_jump_token1] = ACTIONS(1754), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1754), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1754), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1754), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1754), + [aux_sym_rekey_limit_token1] = ACTIONS(1754), + [aux_sym_remote_command_token1] = ACTIONS(1754), + [aux_sym_remote_forward_token1] = ACTIONS(1754), + [aux_sym_request_tty_token1] = ACTIONS(1754), + [aux_sym_required_rsa_size_token1] = ACTIONS(1754), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1754), + [aux_sym_security_key_provider_token1] = ACTIONS(1754), + [aux_sym_send_env_token1] = ACTIONS(1754), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1754), + [aux_sym_server_alive_interval_token1] = ACTIONS(1754), + [aux_sym_session_type_token1] = ACTIONS(1754), + [aux_sym_set_env_token1] = ACTIONS(1754), + [aux_sym_stdin_null_token1] = ACTIONS(1754), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1754), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1754), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1754), + [aux_sym_syslog_facility_token1] = ACTIONS(1754), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1754), + [aux_sym_keep_alive_token1] = ACTIONS(1754), + [aux_sym_tunnel_token1] = ACTIONS(1756), + [aux_sym_tunnel_device_token1] = ACTIONS(1754), + [aux_sym_update_host_keys_token1] = ACTIONS(1754), + [aux_sym_use_keychain_token1] = ACTIONS(1754), + [aux_sym_use_roaming_token1] = ACTIONS(1754), + [aux_sym_user_token1] = ACTIONS(1756), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1754), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1754), + [aux_sym_visual_host_key_token1] = ACTIONS(1754), + [aux_sym_xauth_location_token1] = ACTIONS(1754), }, [748] = { - [ts_builtin_sym_end] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1463), - [aux_sym_match_token1] = ACTIONS(1461), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1461), - [aux_sym_address_family_token1] = ACTIONS(1461), - [aux_sym_batch_mode_token1] = ACTIONS(1461), - [aux_sym_bind_address_token1] = ACTIONS(1461), - [aux_sym_bind_interface_token1] = ACTIONS(1461), - [aux_sym_canonical_domains_token1] = ACTIONS(1461), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1461), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1461), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1461), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1461), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1461), - [aux_sym_certificate_file_token1] = ACTIONS(1461), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1461), - [aux_sym_check_host_ip_token1] = ACTIONS(1461), - [aux_sym_ciphers_token1] = ACTIONS(1461), - [aux_sym_cipher_token1] = ACTIONS(1463), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1461), - [aux_sym_compression_token1] = ACTIONS(1461), - [aux_sym_connection_attempts_token1] = ACTIONS(1461), - [aux_sym_connect_timeout_token1] = ACTIONS(1461), - [aux_sym_control_master_token1] = ACTIONS(1461), - [aux_sym_control_path_token1] = ACTIONS(1461), - [aux_sym_control_persist_token1] = ACTIONS(1461), - [aux_sym_dynamic_forward_token1] = ACTIONS(1461), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1461), - [aux_sym_escape_char_token1] = ACTIONS(1461), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1461), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1461), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1461), - [aux_sym_forward_agent_token1] = ACTIONS(1461), - [aux_sym_forward_x11_token1] = ACTIONS(1463), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1461), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1461), - [aux_sym_gateway_ports_token1] = ACTIONS(1461), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1461), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1461), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1461), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1461), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1461), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1461), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1461), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1461), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1461), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1461), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1461), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1461), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1461), - [aux_sym_host_key_alias_token1] = ACTIONS(1461), - [aux_sym_hostname_token1] = ACTIONS(1461), - [aux_sym_identities_only_token1] = ACTIONS(1461), - [aux_sym_identity_agent_token1] = ACTIONS(1461), - [aux_sym_identity_file_token1] = ACTIONS(1461), - [aux_sym_ignore_unknown_token1] = ACTIONS(1461), - [aux_sym_include_token1] = ACTIONS(1461), - [aux_sym_ip_qos_token1] = ACTIONS(1461), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1461), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1461), - [aux_sym_kex_algorithms_token1] = ACTIONS(1461), - [aux_sym_known_hosts_command_token1] = ACTIONS(1461), - [aux_sym_local_command_token1] = ACTIONS(1461), - [aux_sym_local_forward_token1] = ACTIONS(1461), - [aux_sym_log_level_token1] = ACTIONS(1461), - [aux_sym_log_verbose_token1] = ACTIONS(1461), - [aux_sym_macs_token1] = ACTIONS(1461), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1461), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1461), - [aux_sym_password_authentication_token1] = ACTIONS(1461), - [aux_sym_permit_local_command_token1] = ACTIONS(1461), - [aux_sym_permit_remote_open_token1] = ACTIONS(1461), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1461), - [aux_sym_port_token1] = ACTIONS(1461), - [aux_sym_preferred_authentications_token1] = ACTIONS(1461), - [aux_sym_protocol_token1] = ACTIONS(1461), - [aux_sym_proxy_command_token1] = ACTIONS(1461), - [aux_sym_proxy_jump_token1] = ACTIONS(1461), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1461), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1461), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1461), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1461), - [aux_sym_rekey_limit_token1] = ACTIONS(1461), - [aux_sym_remote_command_token1] = ACTIONS(1461), - [aux_sym_remote_forward_token1] = ACTIONS(1461), - [aux_sym_request_tty_token1] = ACTIONS(1461), - [aux_sym_required_rsa_size_token1] = ACTIONS(1461), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1461), - [aux_sym_security_key_provider_token1] = ACTIONS(1461), - [aux_sym_send_env_token1] = ACTIONS(1461), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1461), - [aux_sym_server_alive_interval_token1] = ACTIONS(1461), - [aux_sym_session_type_token1] = ACTIONS(1461), - [aux_sym_set_env_token1] = ACTIONS(1461), - [aux_sym_stdin_null_token1] = ACTIONS(1461), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1461), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1461), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1461), - [aux_sym_syslog_facility_token1] = ACTIONS(1461), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1461), - [aux_sym_keep_alive_token1] = ACTIONS(1461), - [aux_sym_tunnel_token1] = ACTIONS(1463), - [aux_sym_tunnel_device_token1] = ACTIONS(1461), - [aux_sym_update_host_keys_token1] = ACTIONS(1461), - [aux_sym_use_keychain_token1] = ACTIONS(1461), - [aux_sym_use_roaming_token1] = ACTIONS(1461), - [aux_sym_user_token1] = ACTIONS(1463), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1461), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1461), - [aux_sym_visual_host_key_token1] = ACTIONS(1461), - [aux_sym_xauth_location_token1] = ACTIONS(1461), + [ts_builtin_sym_end] = ACTIONS(710), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(712), + [aux_sym_match_token1] = ACTIONS(710), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(710), + [aux_sym_address_family_token1] = ACTIONS(710), + [aux_sym_batch_mode_token1] = ACTIONS(710), + [aux_sym_bind_address_token1] = ACTIONS(710), + [aux_sym_bind_interface_token1] = ACTIONS(710), + [aux_sym_canonical_domains_token1] = ACTIONS(710), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(710), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(710), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(710), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(710), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(710), + [aux_sym_certificate_file_token1] = ACTIONS(710), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(710), + [aux_sym_check_host_ip_token1] = ACTIONS(710), + [aux_sym_ciphers_token1] = ACTIONS(710), + [aux_sym_cipher_token1] = ACTIONS(712), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(710), + [aux_sym_compression_token1] = ACTIONS(710), + [aux_sym_connection_attempts_token1] = ACTIONS(710), + [aux_sym_connect_timeout_token1] = ACTIONS(710), + [aux_sym_control_master_token1] = ACTIONS(710), + [aux_sym_control_path_token1] = ACTIONS(710), + [aux_sym_control_persist_token1] = ACTIONS(710), + [aux_sym_dynamic_forward_token1] = ACTIONS(710), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(710), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(710), + [aux_sym_escape_char_token1] = ACTIONS(710), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(710), + [aux_sym_fingerprint_hash_token1] = ACTIONS(710), + [aux_sym_fork_after_authentication_token1] = ACTIONS(710), + [aux_sym_forward_agent_token1] = ACTIONS(710), + [aux_sym_forward_x11_token1] = ACTIONS(712), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(710), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(710), + [aux_sym_gateway_ports_token1] = ACTIONS(710), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(710), + [aux_sym_gssapi_authentication_token1] = ACTIONS(710), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(710), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(710), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(710), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(710), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(710), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(710), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(710), + [aux_sym_hash_known_hosts_token1] = ACTIONS(710), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(710), + [aux_sym_hostbased_authentication_token1] = ACTIONS(710), + [aux_sym_host_key_algorithms_token1] = ACTIONS(710), + [aux_sym_host_key_alias_token1] = ACTIONS(710), + [aux_sym_hostname_token1] = ACTIONS(710), + [aux_sym_identities_only_token1] = ACTIONS(710), + [aux_sym_identity_agent_token1] = ACTIONS(710), + [aux_sym_identity_file_token1] = ACTIONS(710), + [aux_sym_ignore_unknown_token1] = ACTIONS(710), + [aux_sym_include_token1] = ACTIONS(710), + [aux_sym_ip_qos_token1] = ACTIONS(710), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(710), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(710), + [aux_sym_kex_algorithms_token1] = ACTIONS(710), + [aux_sym_known_hosts_command_token1] = ACTIONS(710), + [aux_sym_local_command_token1] = ACTIONS(710), + [aux_sym_local_forward_token1] = ACTIONS(710), + [aux_sym_log_level_token1] = ACTIONS(710), + [aux_sym_log_verbose_token1] = ACTIONS(710), + [aux_sym_macs_token1] = ACTIONS(710), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(710), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(710), + [aux_sym_password_authentication_token1] = ACTIONS(710), + [aux_sym_permit_local_command_token1] = ACTIONS(710), + [aux_sym_permit_remote_open_token1] = ACTIONS(710), + [aux_sym_pkcs11_provider_token1] = ACTIONS(710), + [aux_sym_port_token1] = ACTIONS(710), + [aux_sym_preferred_authentications_token1] = ACTIONS(710), + [aux_sym_protocol_token1] = ACTIONS(710), + [aux_sym_proxy_command_token1] = ACTIONS(710), + [aux_sym_proxy_jump_token1] = ACTIONS(710), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(710), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(710), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(710), + [aux_sym_pubkey_authentication_token1] = ACTIONS(710), + [aux_sym_rekey_limit_token1] = ACTIONS(710), + [aux_sym_remote_command_token1] = ACTIONS(710), + [aux_sym_remote_forward_token1] = ACTIONS(710), + [aux_sym_request_tty_token1] = ACTIONS(710), + [aux_sym_required_rsa_size_token1] = ACTIONS(710), + [aux_sym_revoked_host_keys_token1] = ACTIONS(710), + [aux_sym_security_key_provider_token1] = ACTIONS(710), + [aux_sym_send_env_token1] = ACTIONS(710), + [aux_sym_server_alive_count_max_token1] = ACTIONS(710), + [aux_sym_server_alive_interval_token1] = ACTIONS(710), + [aux_sym_session_type_token1] = ACTIONS(710), + [aux_sym_set_env_token1] = ACTIONS(710), + [aux_sym_stdin_null_token1] = ACTIONS(710), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(710), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(710), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(710), + [aux_sym_syslog_facility_token1] = ACTIONS(710), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(710), + [aux_sym_keep_alive_token1] = ACTIONS(710), + [aux_sym_tunnel_token1] = ACTIONS(712), + [aux_sym_tunnel_device_token1] = ACTIONS(710), + [aux_sym_update_host_keys_token1] = ACTIONS(710), + [aux_sym_use_keychain_token1] = ACTIONS(710), + [aux_sym_use_roaming_token1] = ACTIONS(710), + [aux_sym_user_token1] = ACTIONS(712), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(710), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(710), + [aux_sym_visual_host_key_token1] = ACTIONS(710), + [aux_sym_xauth_location_token1] = ACTIONS(710), }, [749] = { - [ts_builtin_sym_end] = ACTIONS(1467), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1469), - [aux_sym_match_token1] = ACTIONS(1467), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1467), - [aux_sym_address_family_token1] = ACTIONS(1467), - [aux_sym_batch_mode_token1] = ACTIONS(1467), - [aux_sym_bind_address_token1] = ACTIONS(1467), - [aux_sym_bind_interface_token1] = ACTIONS(1467), - [aux_sym_canonical_domains_token1] = ACTIONS(1467), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1467), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1467), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1467), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1467), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1467), - [aux_sym_certificate_file_token1] = ACTIONS(1467), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1467), - [aux_sym_check_host_ip_token1] = ACTIONS(1467), - [aux_sym_ciphers_token1] = ACTIONS(1467), - [aux_sym_cipher_token1] = ACTIONS(1469), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1467), - [aux_sym_compression_token1] = ACTIONS(1467), - [aux_sym_connection_attempts_token1] = ACTIONS(1467), - [aux_sym_connect_timeout_token1] = ACTIONS(1467), - [aux_sym_control_master_token1] = ACTIONS(1467), - [aux_sym_control_path_token1] = ACTIONS(1467), - [aux_sym_control_persist_token1] = ACTIONS(1467), - [aux_sym_dynamic_forward_token1] = ACTIONS(1467), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1467), - [aux_sym_escape_char_token1] = ACTIONS(1467), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1467), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1467), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1467), - [aux_sym_forward_agent_token1] = ACTIONS(1467), - [aux_sym_forward_x11_token1] = ACTIONS(1469), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1467), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1467), - [aux_sym_gateway_ports_token1] = ACTIONS(1467), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1467), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1467), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1467), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1467), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1467), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1467), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1467), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1467), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1467), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1467), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1467), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1467), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1467), - [aux_sym_host_key_alias_token1] = ACTIONS(1467), - [aux_sym_hostname_token1] = ACTIONS(1467), - [aux_sym_identities_only_token1] = ACTIONS(1467), - [aux_sym_identity_agent_token1] = ACTIONS(1467), - [aux_sym_identity_file_token1] = ACTIONS(1467), - [aux_sym_ignore_unknown_token1] = ACTIONS(1467), - [aux_sym_include_token1] = ACTIONS(1467), - [aux_sym_ip_qos_token1] = ACTIONS(1467), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1467), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1467), - [aux_sym_kex_algorithms_token1] = ACTIONS(1467), - [aux_sym_known_hosts_command_token1] = ACTIONS(1467), - [aux_sym_local_command_token1] = ACTIONS(1467), - [aux_sym_local_forward_token1] = ACTIONS(1467), - [aux_sym_log_level_token1] = ACTIONS(1467), - [aux_sym_log_verbose_token1] = ACTIONS(1467), - [aux_sym_macs_token1] = ACTIONS(1467), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1467), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1467), - [aux_sym_password_authentication_token1] = ACTIONS(1467), - [aux_sym_permit_local_command_token1] = ACTIONS(1467), - [aux_sym_permit_remote_open_token1] = ACTIONS(1467), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1467), - [aux_sym_port_token1] = ACTIONS(1467), - [aux_sym_preferred_authentications_token1] = ACTIONS(1467), - [aux_sym_protocol_token1] = ACTIONS(1467), - [aux_sym_proxy_command_token1] = ACTIONS(1467), - [aux_sym_proxy_jump_token1] = ACTIONS(1467), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1467), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1467), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1467), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1467), - [aux_sym_rekey_limit_token1] = ACTIONS(1467), - [aux_sym_remote_command_token1] = ACTIONS(1467), - [aux_sym_remote_forward_token1] = ACTIONS(1467), - [aux_sym_request_tty_token1] = ACTIONS(1467), - [aux_sym_required_rsa_size_token1] = ACTIONS(1467), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1467), - [aux_sym_security_key_provider_token1] = ACTIONS(1467), - [aux_sym_send_env_token1] = ACTIONS(1467), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1467), - [aux_sym_server_alive_interval_token1] = ACTIONS(1467), - [aux_sym_session_type_token1] = ACTIONS(1467), - [aux_sym_set_env_token1] = ACTIONS(1467), - [aux_sym_stdin_null_token1] = ACTIONS(1467), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1467), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1467), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1467), - [aux_sym_syslog_facility_token1] = ACTIONS(1467), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1467), - [aux_sym_keep_alive_token1] = ACTIONS(1467), - [aux_sym_tunnel_token1] = ACTIONS(1469), - [aux_sym_tunnel_device_token1] = ACTIONS(1467), - [aux_sym_update_host_keys_token1] = ACTIONS(1467), - [aux_sym_use_keychain_token1] = ACTIONS(1467), - [aux_sym_use_roaming_token1] = ACTIONS(1467), - [aux_sym_user_token1] = ACTIONS(1469), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1467), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1467), - [aux_sym_visual_host_key_token1] = ACTIONS(1467), - [aux_sym_xauth_location_token1] = ACTIONS(1467), + [ts_builtin_sym_end] = ACTIONS(770), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(772), + [aux_sym_match_token1] = ACTIONS(770), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(770), + [aux_sym_address_family_token1] = ACTIONS(770), + [aux_sym_batch_mode_token1] = ACTIONS(770), + [aux_sym_bind_address_token1] = ACTIONS(770), + [aux_sym_bind_interface_token1] = ACTIONS(770), + [aux_sym_canonical_domains_token1] = ACTIONS(770), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(770), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(770), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(770), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(770), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(770), + [aux_sym_certificate_file_token1] = ACTIONS(770), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(770), + [aux_sym_check_host_ip_token1] = ACTIONS(770), + [aux_sym_ciphers_token1] = ACTIONS(770), + [aux_sym_cipher_token1] = ACTIONS(772), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(770), + [aux_sym_compression_token1] = ACTIONS(770), + [aux_sym_connection_attempts_token1] = ACTIONS(770), + [aux_sym_connect_timeout_token1] = ACTIONS(770), + [aux_sym_control_master_token1] = ACTIONS(770), + [aux_sym_control_path_token1] = ACTIONS(770), + [aux_sym_control_persist_token1] = ACTIONS(770), + [aux_sym_dynamic_forward_token1] = ACTIONS(770), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(770), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(770), + [aux_sym_escape_char_token1] = ACTIONS(770), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(770), + [aux_sym_fingerprint_hash_token1] = ACTIONS(770), + [aux_sym_fork_after_authentication_token1] = ACTIONS(770), + [aux_sym_forward_agent_token1] = ACTIONS(770), + [aux_sym_forward_x11_token1] = ACTIONS(772), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(770), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(770), + [aux_sym_gateway_ports_token1] = ACTIONS(770), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(770), + [aux_sym_gssapi_authentication_token1] = ACTIONS(770), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(770), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(770), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(770), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(770), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(770), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(770), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(770), + [aux_sym_hash_known_hosts_token1] = ACTIONS(770), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(770), + [aux_sym_hostbased_authentication_token1] = ACTIONS(770), + [aux_sym_host_key_algorithms_token1] = ACTIONS(770), + [aux_sym_host_key_alias_token1] = ACTIONS(770), + [aux_sym_hostname_token1] = ACTIONS(770), + [aux_sym_identities_only_token1] = ACTIONS(770), + [aux_sym_identity_agent_token1] = ACTIONS(770), + [aux_sym_identity_file_token1] = ACTIONS(770), + [aux_sym_ignore_unknown_token1] = ACTIONS(770), + [aux_sym_include_token1] = ACTIONS(770), + [aux_sym_ip_qos_token1] = ACTIONS(770), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(770), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(770), + [aux_sym_kex_algorithms_token1] = ACTIONS(770), + [aux_sym_known_hosts_command_token1] = ACTIONS(770), + [aux_sym_local_command_token1] = ACTIONS(770), + [aux_sym_local_forward_token1] = ACTIONS(770), + [aux_sym_log_level_token1] = ACTIONS(770), + [aux_sym_log_verbose_token1] = ACTIONS(770), + [aux_sym_macs_token1] = ACTIONS(770), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(770), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(770), + [aux_sym_password_authentication_token1] = ACTIONS(770), + [aux_sym_permit_local_command_token1] = ACTIONS(770), + [aux_sym_permit_remote_open_token1] = ACTIONS(770), + [aux_sym_pkcs11_provider_token1] = ACTIONS(770), + [aux_sym_port_token1] = ACTIONS(770), + [aux_sym_preferred_authentications_token1] = ACTIONS(770), + [aux_sym_protocol_token1] = ACTIONS(770), + [aux_sym_proxy_command_token1] = ACTIONS(770), + [aux_sym_proxy_jump_token1] = ACTIONS(770), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(770), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(770), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(770), + [aux_sym_pubkey_authentication_token1] = ACTIONS(770), + [aux_sym_rekey_limit_token1] = ACTIONS(770), + [aux_sym_remote_command_token1] = ACTIONS(770), + [aux_sym_remote_forward_token1] = ACTIONS(770), + [aux_sym_request_tty_token1] = ACTIONS(770), + [aux_sym_required_rsa_size_token1] = ACTIONS(770), + [aux_sym_revoked_host_keys_token1] = ACTIONS(770), + [aux_sym_security_key_provider_token1] = ACTIONS(770), + [aux_sym_send_env_token1] = ACTIONS(770), + [aux_sym_server_alive_count_max_token1] = ACTIONS(770), + [aux_sym_server_alive_interval_token1] = ACTIONS(770), + [aux_sym_session_type_token1] = ACTIONS(770), + [aux_sym_set_env_token1] = ACTIONS(770), + [aux_sym_stdin_null_token1] = ACTIONS(770), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(770), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(770), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(770), + [aux_sym_syslog_facility_token1] = ACTIONS(770), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(770), + [aux_sym_keep_alive_token1] = ACTIONS(770), + [aux_sym_tunnel_token1] = ACTIONS(772), + [aux_sym_tunnel_device_token1] = ACTIONS(770), + [aux_sym_update_host_keys_token1] = ACTIONS(770), + [aux_sym_use_keychain_token1] = ACTIONS(770), + [aux_sym_use_roaming_token1] = ACTIONS(770), + [aux_sym_user_token1] = ACTIONS(772), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(770), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(770), + [aux_sym_visual_host_key_token1] = ACTIONS(770), + [aux_sym_xauth_location_token1] = ACTIONS(770), }, [750] = { - [ts_builtin_sym_end] = ACTIONS(1719), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1721), - [aux_sym_match_token1] = ACTIONS(1719), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1719), - [aux_sym_address_family_token1] = ACTIONS(1719), - [aux_sym_batch_mode_token1] = ACTIONS(1719), - [aux_sym_bind_address_token1] = ACTIONS(1719), - [aux_sym_bind_interface_token1] = ACTIONS(1719), - [aux_sym_canonical_domains_token1] = ACTIONS(1719), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1719), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1719), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1719), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1719), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1719), - [aux_sym_certificate_file_token1] = ACTIONS(1719), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1719), - [aux_sym_check_host_ip_token1] = ACTIONS(1719), - [aux_sym_ciphers_token1] = ACTIONS(1719), - [aux_sym_cipher_token1] = ACTIONS(1721), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1719), - [aux_sym_compression_token1] = ACTIONS(1719), - [aux_sym_connection_attempts_token1] = ACTIONS(1719), - [aux_sym_connect_timeout_token1] = ACTIONS(1719), - [aux_sym_control_master_token1] = ACTIONS(1719), - [aux_sym_control_path_token1] = ACTIONS(1719), - [aux_sym_control_persist_token1] = ACTIONS(1719), - [aux_sym_dynamic_forward_token1] = ACTIONS(1719), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1719), - [aux_sym_escape_char_token1] = ACTIONS(1719), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1719), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1719), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1719), - [aux_sym_forward_agent_token1] = ACTIONS(1719), - [aux_sym_forward_x11_token1] = ACTIONS(1721), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1719), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1719), - [aux_sym_gateway_ports_token1] = ACTIONS(1719), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1719), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1719), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1719), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1719), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1719), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1719), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1719), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1719), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1719), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1719), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1719), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1719), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1719), - [aux_sym_host_key_alias_token1] = ACTIONS(1719), - [aux_sym_hostname_token1] = ACTIONS(1719), - [aux_sym_identities_only_token1] = ACTIONS(1719), - [aux_sym_identity_agent_token1] = ACTIONS(1719), - [aux_sym_identity_file_token1] = ACTIONS(1719), - [aux_sym_ignore_unknown_token1] = ACTIONS(1719), - [aux_sym_include_token1] = ACTIONS(1719), - [aux_sym_ip_qos_token1] = ACTIONS(1719), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1719), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1719), - [aux_sym_kex_algorithms_token1] = ACTIONS(1719), - [aux_sym_known_hosts_command_token1] = ACTIONS(1719), - [aux_sym_local_command_token1] = ACTIONS(1719), - [aux_sym_local_forward_token1] = ACTIONS(1719), - [aux_sym_log_level_token1] = ACTIONS(1719), - [aux_sym_log_verbose_token1] = ACTIONS(1719), - [aux_sym_macs_token1] = ACTIONS(1719), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1719), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1719), - [aux_sym_password_authentication_token1] = ACTIONS(1719), - [aux_sym_permit_local_command_token1] = ACTIONS(1719), - [aux_sym_permit_remote_open_token1] = ACTIONS(1719), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1719), - [aux_sym_port_token1] = ACTIONS(1719), - [aux_sym_preferred_authentications_token1] = ACTIONS(1719), - [aux_sym_protocol_token1] = ACTIONS(1719), - [aux_sym_proxy_command_token1] = ACTIONS(1719), - [aux_sym_proxy_jump_token1] = ACTIONS(1719), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1719), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1719), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1719), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1719), - [aux_sym_rekey_limit_token1] = ACTIONS(1719), - [aux_sym_remote_command_token1] = ACTIONS(1719), - [aux_sym_remote_forward_token1] = ACTIONS(1719), - [aux_sym_request_tty_token1] = ACTIONS(1719), - [aux_sym_required_rsa_size_token1] = ACTIONS(1719), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1719), - [aux_sym_security_key_provider_token1] = ACTIONS(1719), - [aux_sym_send_env_token1] = ACTIONS(1719), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1719), - [aux_sym_server_alive_interval_token1] = ACTIONS(1719), - [aux_sym_session_type_token1] = ACTIONS(1719), - [aux_sym_set_env_token1] = ACTIONS(1719), - [aux_sym_stdin_null_token1] = ACTIONS(1719), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1719), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1719), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1719), - [aux_sym_syslog_facility_token1] = ACTIONS(1719), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1719), - [aux_sym_keep_alive_token1] = ACTIONS(1719), - [aux_sym_tunnel_token1] = ACTIONS(1721), - [aux_sym_tunnel_device_token1] = ACTIONS(1719), - [aux_sym_update_host_keys_token1] = ACTIONS(1719), - [aux_sym_use_keychain_token1] = ACTIONS(1719), - [aux_sym_use_roaming_token1] = ACTIONS(1719), - [aux_sym_user_token1] = ACTIONS(1721), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1719), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1719), - [aux_sym_visual_host_key_token1] = ACTIONS(1719), - [aux_sym_xauth_location_token1] = ACTIONS(1719), + [ts_builtin_sym_end] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1750), + [aux_sym_match_token1] = ACTIONS(1748), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1748), + [aux_sym_address_family_token1] = ACTIONS(1748), + [aux_sym_batch_mode_token1] = ACTIONS(1748), + [aux_sym_bind_address_token1] = ACTIONS(1748), + [aux_sym_bind_interface_token1] = ACTIONS(1748), + [aux_sym_canonical_domains_token1] = ACTIONS(1748), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1748), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1748), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1748), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1748), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1748), + [aux_sym_certificate_file_token1] = ACTIONS(1748), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1748), + [aux_sym_check_host_ip_token1] = ACTIONS(1748), + [aux_sym_ciphers_token1] = ACTIONS(1748), + [aux_sym_cipher_token1] = ACTIONS(1750), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1748), + [aux_sym_compression_token1] = ACTIONS(1748), + [aux_sym_connection_attempts_token1] = ACTIONS(1748), + [aux_sym_connect_timeout_token1] = ACTIONS(1748), + [aux_sym_control_master_token1] = ACTIONS(1748), + [aux_sym_control_path_token1] = ACTIONS(1748), + [aux_sym_control_persist_token1] = ACTIONS(1748), + [aux_sym_dynamic_forward_token1] = ACTIONS(1748), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1748), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1748), + [aux_sym_escape_char_token1] = ACTIONS(1748), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1748), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1748), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1748), + [aux_sym_forward_agent_token1] = ACTIONS(1748), + [aux_sym_forward_x11_token1] = ACTIONS(1750), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1748), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1748), + [aux_sym_gateway_ports_token1] = ACTIONS(1748), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1748), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1748), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1748), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1748), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1748), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1748), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1748), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1748), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1748), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1748), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1748), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1748), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1748), + [aux_sym_host_key_alias_token1] = ACTIONS(1748), + [aux_sym_hostname_token1] = ACTIONS(1748), + [aux_sym_identities_only_token1] = ACTIONS(1748), + [aux_sym_identity_agent_token1] = ACTIONS(1748), + [aux_sym_identity_file_token1] = ACTIONS(1748), + [aux_sym_ignore_unknown_token1] = ACTIONS(1748), + [aux_sym_include_token1] = ACTIONS(1748), + [aux_sym_ip_qos_token1] = ACTIONS(1748), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1748), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1748), + [aux_sym_kex_algorithms_token1] = ACTIONS(1748), + [aux_sym_known_hosts_command_token1] = ACTIONS(1748), + [aux_sym_local_command_token1] = ACTIONS(1748), + [aux_sym_local_forward_token1] = ACTIONS(1748), + [aux_sym_log_level_token1] = ACTIONS(1748), + [aux_sym_log_verbose_token1] = ACTIONS(1748), + [aux_sym_macs_token1] = ACTIONS(1748), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1748), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1748), + [aux_sym_password_authentication_token1] = ACTIONS(1748), + [aux_sym_permit_local_command_token1] = ACTIONS(1748), + [aux_sym_permit_remote_open_token1] = ACTIONS(1748), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1748), + [aux_sym_port_token1] = ACTIONS(1748), + [aux_sym_preferred_authentications_token1] = ACTIONS(1748), + [aux_sym_protocol_token1] = ACTIONS(1748), + [aux_sym_proxy_command_token1] = ACTIONS(1748), + [aux_sym_proxy_jump_token1] = ACTIONS(1748), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1748), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1748), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1748), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1748), + [aux_sym_rekey_limit_token1] = ACTIONS(1748), + [aux_sym_remote_command_token1] = ACTIONS(1748), + [aux_sym_remote_forward_token1] = ACTIONS(1748), + [aux_sym_request_tty_token1] = ACTIONS(1748), + [aux_sym_required_rsa_size_token1] = ACTIONS(1748), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1748), + [aux_sym_security_key_provider_token1] = ACTIONS(1748), + [aux_sym_send_env_token1] = ACTIONS(1748), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1748), + [aux_sym_server_alive_interval_token1] = ACTIONS(1748), + [aux_sym_session_type_token1] = ACTIONS(1748), + [aux_sym_set_env_token1] = ACTIONS(1748), + [aux_sym_stdin_null_token1] = ACTIONS(1748), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1748), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1748), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1748), + [aux_sym_syslog_facility_token1] = ACTIONS(1748), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1748), + [aux_sym_keep_alive_token1] = ACTIONS(1748), + [aux_sym_tunnel_token1] = ACTIONS(1750), + [aux_sym_tunnel_device_token1] = ACTIONS(1748), + [aux_sym_update_host_keys_token1] = ACTIONS(1748), + [aux_sym_use_keychain_token1] = ACTIONS(1748), + [aux_sym_use_roaming_token1] = ACTIONS(1748), + [aux_sym_user_token1] = ACTIONS(1750), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1748), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1748), + [aux_sym_visual_host_key_token1] = ACTIONS(1748), + [aux_sym_xauth_location_token1] = ACTIONS(1748), }, [751] = { - [ts_builtin_sym_end] = ACTIONS(1473), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1475), - [aux_sym_match_token1] = ACTIONS(1473), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1473), - [aux_sym_address_family_token1] = ACTIONS(1473), - [aux_sym_batch_mode_token1] = ACTIONS(1473), - [aux_sym_bind_address_token1] = ACTIONS(1473), - [aux_sym_bind_interface_token1] = ACTIONS(1473), - [aux_sym_canonical_domains_token1] = ACTIONS(1473), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1473), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1473), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1473), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1473), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1473), - [aux_sym_certificate_file_token1] = ACTIONS(1473), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1473), - [aux_sym_check_host_ip_token1] = ACTIONS(1473), - [aux_sym_ciphers_token1] = ACTIONS(1473), - [aux_sym_cipher_token1] = ACTIONS(1475), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1473), - [aux_sym_compression_token1] = ACTIONS(1473), - [aux_sym_connection_attempts_token1] = ACTIONS(1473), - [aux_sym_connect_timeout_token1] = ACTIONS(1473), - [aux_sym_control_master_token1] = ACTIONS(1473), - [aux_sym_control_path_token1] = ACTIONS(1473), - [aux_sym_control_persist_token1] = ACTIONS(1473), - [aux_sym_dynamic_forward_token1] = ACTIONS(1473), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1473), - [aux_sym_escape_char_token1] = ACTIONS(1473), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1473), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1473), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1473), - [aux_sym_forward_agent_token1] = ACTIONS(1473), - [aux_sym_forward_x11_token1] = ACTIONS(1475), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1473), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1473), - [aux_sym_gateway_ports_token1] = ACTIONS(1473), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1473), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1473), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1473), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1473), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1473), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1473), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1473), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1473), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1473), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1473), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1473), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1473), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1473), - [aux_sym_host_key_alias_token1] = ACTIONS(1473), - [aux_sym_hostname_token1] = ACTIONS(1473), - [aux_sym_identities_only_token1] = ACTIONS(1473), - [aux_sym_identity_agent_token1] = ACTIONS(1473), - [aux_sym_identity_file_token1] = ACTIONS(1473), - [aux_sym_ignore_unknown_token1] = ACTIONS(1473), - [aux_sym_include_token1] = ACTIONS(1473), - [aux_sym_ip_qos_token1] = ACTIONS(1473), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1473), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1473), - [aux_sym_kex_algorithms_token1] = ACTIONS(1473), - [aux_sym_known_hosts_command_token1] = ACTIONS(1473), - [aux_sym_local_command_token1] = ACTIONS(1473), - [aux_sym_local_forward_token1] = ACTIONS(1473), - [aux_sym_log_level_token1] = ACTIONS(1473), - [aux_sym_log_verbose_token1] = ACTIONS(1473), - [aux_sym_macs_token1] = ACTIONS(1473), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1473), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1473), - [aux_sym_password_authentication_token1] = ACTIONS(1473), - [aux_sym_permit_local_command_token1] = ACTIONS(1473), - [aux_sym_permit_remote_open_token1] = ACTIONS(1473), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1473), - [aux_sym_port_token1] = ACTIONS(1473), - [aux_sym_preferred_authentications_token1] = ACTIONS(1473), - [aux_sym_protocol_token1] = ACTIONS(1473), - [aux_sym_proxy_command_token1] = ACTIONS(1473), - [aux_sym_proxy_jump_token1] = ACTIONS(1473), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1473), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1473), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1473), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1473), - [aux_sym_rekey_limit_token1] = ACTIONS(1473), - [aux_sym_remote_command_token1] = ACTIONS(1473), - [aux_sym_remote_forward_token1] = ACTIONS(1473), - [aux_sym_request_tty_token1] = ACTIONS(1473), - [aux_sym_required_rsa_size_token1] = ACTIONS(1473), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1473), - [aux_sym_security_key_provider_token1] = ACTIONS(1473), - [aux_sym_send_env_token1] = ACTIONS(1473), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1473), - [aux_sym_server_alive_interval_token1] = ACTIONS(1473), - [aux_sym_session_type_token1] = ACTIONS(1473), - [aux_sym_set_env_token1] = ACTIONS(1473), - [aux_sym_stdin_null_token1] = ACTIONS(1473), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1473), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1473), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1473), - [aux_sym_syslog_facility_token1] = ACTIONS(1473), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1473), - [aux_sym_keep_alive_token1] = ACTIONS(1473), - [aux_sym_tunnel_token1] = ACTIONS(1475), - [aux_sym_tunnel_device_token1] = ACTIONS(1473), - [aux_sym_update_host_keys_token1] = ACTIONS(1473), - [aux_sym_use_keychain_token1] = ACTIONS(1473), - [aux_sym_use_roaming_token1] = ACTIONS(1473), - [aux_sym_user_token1] = ACTIONS(1475), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1473), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1473), - [aux_sym_visual_host_key_token1] = ACTIONS(1473), - [aux_sym_xauth_location_token1] = ACTIONS(1473), + [ts_builtin_sym_end] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1612), + [aux_sym_match_token1] = ACTIONS(1610), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1610), + [aux_sym_address_family_token1] = ACTIONS(1610), + [aux_sym_batch_mode_token1] = ACTIONS(1610), + [aux_sym_bind_address_token1] = ACTIONS(1610), + [aux_sym_bind_interface_token1] = ACTIONS(1610), + [aux_sym_canonical_domains_token1] = ACTIONS(1610), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1610), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1610), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1610), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1610), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1610), + [aux_sym_certificate_file_token1] = ACTIONS(1610), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1610), + [aux_sym_check_host_ip_token1] = ACTIONS(1610), + [aux_sym_ciphers_token1] = ACTIONS(1610), + [aux_sym_cipher_token1] = ACTIONS(1612), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1610), + [aux_sym_compression_token1] = ACTIONS(1610), + [aux_sym_connection_attempts_token1] = ACTIONS(1610), + [aux_sym_connect_timeout_token1] = ACTIONS(1610), + [aux_sym_control_master_token1] = ACTIONS(1610), + [aux_sym_control_path_token1] = ACTIONS(1610), + [aux_sym_control_persist_token1] = ACTIONS(1610), + [aux_sym_dynamic_forward_token1] = ACTIONS(1610), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1610), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1610), + [aux_sym_escape_char_token1] = ACTIONS(1610), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1610), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1610), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1610), + [aux_sym_forward_agent_token1] = ACTIONS(1610), + [aux_sym_forward_x11_token1] = ACTIONS(1612), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1610), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1610), + [aux_sym_gateway_ports_token1] = ACTIONS(1610), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1610), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1610), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1610), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1610), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1610), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1610), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1610), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1610), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1610), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1610), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1610), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1610), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1610), + [aux_sym_host_key_alias_token1] = ACTIONS(1610), + [aux_sym_hostname_token1] = ACTIONS(1610), + [aux_sym_identities_only_token1] = ACTIONS(1610), + [aux_sym_identity_agent_token1] = ACTIONS(1610), + [aux_sym_identity_file_token1] = ACTIONS(1610), + [aux_sym_ignore_unknown_token1] = ACTIONS(1610), + [aux_sym_include_token1] = ACTIONS(1610), + [aux_sym_ip_qos_token1] = ACTIONS(1610), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1610), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1610), + [aux_sym_kex_algorithms_token1] = ACTIONS(1610), + [aux_sym_known_hosts_command_token1] = ACTIONS(1610), + [aux_sym_local_command_token1] = ACTIONS(1610), + [aux_sym_local_forward_token1] = ACTIONS(1610), + [aux_sym_log_level_token1] = ACTIONS(1610), + [aux_sym_log_verbose_token1] = ACTIONS(1610), + [aux_sym_macs_token1] = ACTIONS(1610), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1610), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1610), + [aux_sym_password_authentication_token1] = ACTIONS(1610), + [aux_sym_permit_local_command_token1] = ACTIONS(1610), + [aux_sym_permit_remote_open_token1] = ACTIONS(1610), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1610), + [aux_sym_port_token1] = ACTIONS(1610), + [aux_sym_preferred_authentications_token1] = ACTIONS(1610), + [aux_sym_protocol_token1] = ACTIONS(1610), + [aux_sym_proxy_command_token1] = ACTIONS(1610), + [aux_sym_proxy_jump_token1] = ACTIONS(1610), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1610), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1610), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1610), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1610), + [aux_sym_rekey_limit_token1] = ACTIONS(1610), + [aux_sym_remote_command_token1] = ACTIONS(1610), + [aux_sym_remote_forward_token1] = ACTIONS(1610), + [aux_sym_request_tty_token1] = ACTIONS(1610), + [aux_sym_required_rsa_size_token1] = ACTIONS(1610), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1610), + [aux_sym_security_key_provider_token1] = ACTIONS(1610), + [aux_sym_send_env_token1] = ACTIONS(1610), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1610), + [aux_sym_server_alive_interval_token1] = ACTIONS(1610), + [aux_sym_session_type_token1] = ACTIONS(1610), + [aux_sym_set_env_token1] = ACTIONS(1610), + [aux_sym_stdin_null_token1] = ACTIONS(1610), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1610), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1610), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1610), + [aux_sym_syslog_facility_token1] = ACTIONS(1610), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1610), + [aux_sym_keep_alive_token1] = ACTIONS(1610), + [aux_sym_tunnel_token1] = ACTIONS(1612), + [aux_sym_tunnel_device_token1] = ACTIONS(1610), + [aux_sym_update_host_keys_token1] = ACTIONS(1610), + [aux_sym_use_keychain_token1] = ACTIONS(1610), + [aux_sym_use_roaming_token1] = ACTIONS(1610), + [aux_sym_user_token1] = ACTIONS(1612), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1610), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1610), + [aux_sym_visual_host_key_token1] = ACTIONS(1610), + [aux_sym_xauth_location_token1] = ACTIONS(1610), }, [752] = { - [ts_builtin_sym_end] = ACTIONS(1479), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1481), - [aux_sym_match_token1] = ACTIONS(1479), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1479), - [aux_sym_address_family_token1] = ACTIONS(1479), - [aux_sym_batch_mode_token1] = ACTIONS(1479), - [aux_sym_bind_address_token1] = ACTIONS(1479), - [aux_sym_bind_interface_token1] = ACTIONS(1479), - [aux_sym_canonical_domains_token1] = ACTIONS(1479), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1479), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1479), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1479), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1479), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1479), - [aux_sym_certificate_file_token1] = ACTIONS(1479), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1479), - [aux_sym_check_host_ip_token1] = ACTIONS(1479), - [aux_sym_ciphers_token1] = ACTIONS(1479), - [aux_sym_cipher_token1] = ACTIONS(1481), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1479), - [aux_sym_compression_token1] = ACTIONS(1479), - [aux_sym_connection_attempts_token1] = ACTIONS(1479), - [aux_sym_connect_timeout_token1] = ACTIONS(1479), - [aux_sym_control_master_token1] = ACTIONS(1479), - [aux_sym_control_path_token1] = ACTIONS(1479), - [aux_sym_control_persist_token1] = ACTIONS(1479), - [aux_sym_dynamic_forward_token1] = ACTIONS(1479), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1479), - [aux_sym_escape_char_token1] = ACTIONS(1479), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1479), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1479), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1479), - [aux_sym_forward_agent_token1] = ACTIONS(1479), - [aux_sym_forward_x11_token1] = ACTIONS(1481), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1479), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1479), - [aux_sym_gateway_ports_token1] = ACTIONS(1479), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1479), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1479), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1479), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1479), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1479), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1479), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1479), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1479), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1479), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1479), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1479), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1479), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1479), - [aux_sym_host_key_alias_token1] = ACTIONS(1479), - [aux_sym_hostname_token1] = ACTIONS(1479), - [aux_sym_identities_only_token1] = ACTIONS(1479), - [aux_sym_identity_agent_token1] = ACTIONS(1479), - [aux_sym_identity_file_token1] = ACTIONS(1479), - [aux_sym_ignore_unknown_token1] = ACTIONS(1479), - [aux_sym_include_token1] = ACTIONS(1479), - [aux_sym_ip_qos_token1] = ACTIONS(1479), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1479), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1479), - [aux_sym_kex_algorithms_token1] = ACTIONS(1479), - [aux_sym_known_hosts_command_token1] = ACTIONS(1479), - [aux_sym_local_command_token1] = ACTIONS(1479), - [aux_sym_local_forward_token1] = ACTIONS(1479), - [aux_sym_log_level_token1] = ACTIONS(1479), - [aux_sym_log_verbose_token1] = ACTIONS(1479), - [aux_sym_macs_token1] = ACTIONS(1479), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1479), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1479), - [aux_sym_password_authentication_token1] = ACTIONS(1479), - [aux_sym_permit_local_command_token1] = ACTIONS(1479), - [aux_sym_permit_remote_open_token1] = ACTIONS(1479), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1479), - [aux_sym_port_token1] = ACTIONS(1479), - [aux_sym_preferred_authentications_token1] = ACTIONS(1479), - [aux_sym_protocol_token1] = ACTIONS(1479), - [aux_sym_proxy_command_token1] = ACTIONS(1479), - [aux_sym_proxy_jump_token1] = ACTIONS(1479), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1479), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1479), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1479), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1479), - [aux_sym_rekey_limit_token1] = ACTIONS(1479), - [aux_sym_remote_command_token1] = ACTIONS(1479), - [aux_sym_remote_forward_token1] = ACTIONS(1479), - [aux_sym_request_tty_token1] = ACTIONS(1479), - [aux_sym_required_rsa_size_token1] = ACTIONS(1479), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1479), - [aux_sym_security_key_provider_token1] = ACTIONS(1479), - [aux_sym_send_env_token1] = ACTIONS(1479), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1479), - [aux_sym_server_alive_interval_token1] = ACTIONS(1479), - [aux_sym_session_type_token1] = ACTIONS(1479), - [aux_sym_set_env_token1] = ACTIONS(1479), - [aux_sym_stdin_null_token1] = ACTIONS(1479), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1479), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1479), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1479), - [aux_sym_syslog_facility_token1] = ACTIONS(1479), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1479), - [aux_sym_keep_alive_token1] = ACTIONS(1479), - [aux_sym_tunnel_token1] = ACTIONS(1481), - [aux_sym_tunnel_device_token1] = ACTIONS(1479), - [aux_sym_update_host_keys_token1] = ACTIONS(1479), - [aux_sym_use_keychain_token1] = ACTIONS(1479), - [aux_sym_use_roaming_token1] = ACTIONS(1479), - [aux_sym_user_token1] = ACTIONS(1481), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1479), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1479), - [aux_sym_visual_host_key_token1] = ACTIONS(1479), - [aux_sym_xauth_location_token1] = ACTIONS(1479), + [ts_builtin_sym_end] = ACTIONS(1616), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1618), + [aux_sym_match_token1] = ACTIONS(1616), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1616), + [aux_sym_address_family_token1] = ACTIONS(1616), + [aux_sym_batch_mode_token1] = ACTIONS(1616), + [aux_sym_bind_address_token1] = ACTIONS(1616), + [aux_sym_bind_interface_token1] = ACTIONS(1616), + [aux_sym_canonical_domains_token1] = ACTIONS(1616), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1616), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1616), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1616), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1616), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1616), + [aux_sym_certificate_file_token1] = ACTIONS(1616), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1616), + [aux_sym_check_host_ip_token1] = ACTIONS(1616), + [aux_sym_ciphers_token1] = ACTIONS(1616), + [aux_sym_cipher_token1] = ACTIONS(1618), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1616), + [aux_sym_compression_token1] = ACTIONS(1616), + [aux_sym_connection_attempts_token1] = ACTIONS(1616), + [aux_sym_connect_timeout_token1] = ACTIONS(1616), + [aux_sym_control_master_token1] = ACTIONS(1616), + [aux_sym_control_path_token1] = ACTIONS(1616), + [aux_sym_control_persist_token1] = ACTIONS(1616), + [aux_sym_dynamic_forward_token1] = ACTIONS(1616), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1616), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1616), + [aux_sym_escape_char_token1] = ACTIONS(1616), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1616), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1616), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1616), + [aux_sym_forward_agent_token1] = ACTIONS(1616), + [aux_sym_forward_x11_token1] = ACTIONS(1618), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1616), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1616), + [aux_sym_gateway_ports_token1] = ACTIONS(1616), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1616), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1616), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1616), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1616), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1616), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1616), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1616), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1616), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1616), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1616), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1616), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1616), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1616), + [aux_sym_host_key_alias_token1] = ACTIONS(1616), + [aux_sym_hostname_token1] = ACTIONS(1616), + [aux_sym_identities_only_token1] = ACTIONS(1616), + [aux_sym_identity_agent_token1] = ACTIONS(1616), + [aux_sym_identity_file_token1] = ACTIONS(1616), + [aux_sym_ignore_unknown_token1] = ACTIONS(1616), + [aux_sym_include_token1] = ACTIONS(1616), + [aux_sym_ip_qos_token1] = ACTIONS(1616), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1616), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1616), + [aux_sym_kex_algorithms_token1] = ACTIONS(1616), + [aux_sym_known_hosts_command_token1] = ACTIONS(1616), + [aux_sym_local_command_token1] = ACTIONS(1616), + [aux_sym_local_forward_token1] = ACTIONS(1616), + [aux_sym_log_level_token1] = ACTIONS(1616), + [aux_sym_log_verbose_token1] = ACTIONS(1616), + [aux_sym_macs_token1] = ACTIONS(1616), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1616), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1616), + [aux_sym_password_authentication_token1] = ACTIONS(1616), + [aux_sym_permit_local_command_token1] = ACTIONS(1616), + [aux_sym_permit_remote_open_token1] = ACTIONS(1616), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1616), + [aux_sym_port_token1] = ACTIONS(1616), + [aux_sym_preferred_authentications_token1] = ACTIONS(1616), + [aux_sym_protocol_token1] = ACTIONS(1616), + [aux_sym_proxy_command_token1] = ACTIONS(1616), + [aux_sym_proxy_jump_token1] = ACTIONS(1616), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1616), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1616), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1616), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1616), + [aux_sym_rekey_limit_token1] = ACTIONS(1616), + [aux_sym_remote_command_token1] = ACTIONS(1616), + [aux_sym_remote_forward_token1] = ACTIONS(1616), + [aux_sym_request_tty_token1] = ACTIONS(1616), + [aux_sym_required_rsa_size_token1] = ACTIONS(1616), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1616), + [aux_sym_security_key_provider_token1] = ACTIONS(1616), + [aux_sym_send_env_token1] = ACTIONS(1616), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1616), + [aux_sym_server_alive_interval_token1] = ACTIONS(1616), + [aux_sym_session_type_token1] = ACTIONS(1616), + [aux_sym_set_env_token1] = ACTIONS(1616), + [aux_sym_stdin_null_token1] = ACTIONS(1616), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1616), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1616), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1616), + [aux_sym_syslog_facility_token1] = ACTIONS(1616), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1616), + [aux_sym_keep_alive_token1] = ACTIONS(1616), + [aux_sym_tunnel_token1] = ACTIONS(1618), + [aux_sym_tunnel_device_token1] = ACTIONS(1616), + [aux_sym_update_host_keys_token1] = ACTIONS(1616), + [aux_sym_use_keychain_token1] = ACTIONS(1616), + [aux_sym_use_roaming_token1] = ACTIONS(1616), + [aux_sym_user_token1] = ACTIONS(1618), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1616), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1616), + [aux_sym_visual_host_key_token1] = ACTIONS(1616), + [aux_sym_xauth_location_token1] = ACTIONS(1616), }, [753] = { - [ts_builtin_sym_end] = ACTIONS(1713), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1715), - [aux_sym_match_token1] = ACTIONS(1713), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1713), - [aux_sym_address_family_token1] = ACTIONS(1713), - [aux_sym_batch_mode_token1] = ACTIONS(1713), - [aux_sym_bind_address_token1] = ACTIONS(1713), - [aux_sym_bind_interface_token1] = ACTIONS(1713), - [aux_sym_canonical_domains_token1] = ACTIONS(1713), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1713), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1713), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1713), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1713), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1713), - [aux_sym_certificate_file_token1] = ACTIONS(1713), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1713), - [aux_sym_check_host_ip_token1] = ACTIONS(1713), - [aux_sym_ciphers_token1] = ACTIONS(1713), - [aux_sym_cipher_token1] = ACTIONS(1715), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1713), - [aux_sym_compression_token1] = ACTIONS(1713), - [aux_sym_connection_attempts_token1] = ACTIONS(1713), - [aux_sym_connect_timeout_token1] = ACTIONS(1713), - [aux_sym_control_master_token1] = ACTIONS(1713), - [aux_sym_control_path_token1] = ACTIONS(1713), - [aux_sym_control_persist_token1] = ACTIONS(1713), - [aux_sym_dynamic_forward_token1] = ACTIONS(1713), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1713), - [aux_sym_escape_char_token1] = ACTIONS(1713), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1713), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1713), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1713), - [aux_sym_forward_agent_token1] = ACTIONS(1713), - [aux_sym_forward_x11_token1] = ACTIONS(1715), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1713), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1713), - [aux_sym_gateway_ports_token1] = ACTIONS(1713), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1713), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1713), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1713), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1713), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1713), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1713), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1713), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1713), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1713), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1713), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1713), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1713), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1713), - [aux_sym_host_key_alias_token1] = ACTIONS(1713), - [aux_sym_hostname_token1] = ACTIONS(1713), - [aux_sym_identities_only_token1] = ACTIONS(1713), - [aux_sym_identity_agent_token1] = ACTIONS(1713), - [aux_sym_identity_file_token1] = ACTIONS(1713), - [aux_sym_ignore_unknown_token1] = ACTIONS(1713), - [aux_sym_include_token1] = ACTIONS(1713), - [aux_sym_ip_qos_token1] = ACTIONS(1713), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1713), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1713), - [aux_sym_kex_algorithms_token1] = ACTIONS(1713), - [aux_sym_known_hosts_command_token1] = ACTIONS(1713), - [aux_sym_local_command_token1] = ACTIONS(1713), - [aux_sym_local_forward_token1] = ACTIONS(1713), - [aux_sym_log_level_token1] = ACTIONS(1713), - [aux_sym_log_verbose_token1] = ACTIONS(1713), - [aux_sym_macs_token1] = ACTIONS(1713), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1713), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1713), - [aux_sym_password_authentication_token1] = ACTIONS(1713), - [aux_sym_permit_local_command_token1] = ACTIONS(1713), - [aux_sym_permit_remote_open_token1] = ACTIONS(1713), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1713), - [aux_sym_port_token1] = ACTIONS(1713), - [aux_sym_preferred_authentications_token1] = ACTIONS(1713), - [aux_sym_protocol_token1] = ACTIONS(1713), - [aux_sym_proxy_command_token1] = ACTIONS(1713), - [aux_sym_proxy_jump_token1] = ACTIONS(1713), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1713), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1713), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1713), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1713), - [aux_sym_rekey_limit_token1] = ACTIONS(1713), - [aux_sym_remote_command_token1] = ACTIONS(1713), - [aux_sym_remote_forward_token1] = ACTIONS(1713), - [aux_sym_request_tty_token1] = ACTIONS(1713), - [aux_sym_required_rsa_size_token1] = ACTIONS(1713), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1713), - [aux_sym_security_key_provider_token1] = ACTIONS(1713), - [aux_sym_send_env_token1] = ACTIONS(1713), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1713), - [aux_sym_server_alive_interval_token1] = ACTIONS(1713), - [aux_sym_session_type_token1] = ACTIONS(1713), - [aux_sym_set_env_token1] = ACTIONS(1713), - [aux_sym_stdin_null_token1] = ACTIONS(1713), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1713), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1713), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1713), - [aux_sym_syslog_facility_token1] = ACTIONS(1713), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1713), - [aux_sym_keep_alive_token1] = ACTIONS(1713), - [aux_sym_tunnel_token1] = ACTIONS(1715), - [aux_sym_tunnel_device_token1] = ACTIONS(1713), - [aux_sym_update_host_keys_token1] = ACTIONS(1713), - [aux_sym_use_keychain_token1] = ACTIONS(1713), - [aux_sym_use_roaming_token1] = ACTIONS(1713), - [aux_sym_user_token1] = ACTIONS(1715), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1713), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1713), - [aux_sym_visual_host_key_token1] = ACTIONS(1713), - [aux_sym_xauth_location_token1] = ACTIONS(1713), + [ts_builtin_sym_end] = ACTIONS(1742), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1744), + [aux_sym_match_token1] = ACTIONS(1742), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1742), + [aux_sym_address_family_token1] = ACTIONS(1742), + [aux_sym_batch_mode_token1] = ACTIONS(1742), + [aux_sym_bind_address_token1] = ACTIONS(1742), + [aux_sym_bind_interface_token1] = ACTIONS(1742), + [aux_sym_canonical_domains_token1] = ACTIONS(1742), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1742), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1742), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1742), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1742), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1742), + [aux_sym_certificate_file_token1] = ACTIONS(1742), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1742), + [aux_sym_check_host_ip_token1] = ACTIONS(1742), + [aux_sym_ciphers_token1] = ACTIONS(1742), + [aux_sym_cipher_token1] = ACTIONS(1744), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1742), + [aux_sym_compression_token1] = ACTIONS(1742), + [aux_sym_connection_attempts_token1] = ACTIONS(1742), + [aux_sym_connect_timeout_token1] = ACTIONS(1742), + [aux_sym_control_master_token1] = ACTIONS(1742), + [aux_sym_control_path_token1] = ACTIONS(1742), + [aux_sym_control_persist_token1] = ACTIONS(1742), + [aux_sym_dynamic_forward_token1] = ACTIONS(1742), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1742), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1742), + [aux_sym_escape_char_token1] = ACTIONS(1742), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1742), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1742), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1742), + [aux_sym_forward_agent_token1] = ACTIONS(1742), + [aux_sym_forward_x11_token1] = ACTIONS(1744), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1742), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1742), + [aux_sym_gateway_ports_token1] = ACTIONS(1742), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1742), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1742), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1742), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1742), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1742), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1742), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1742), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1742), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1742), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1742), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1742), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1742), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1742), + [aux_sym_host_key_alias_token1] = ACTIONS(1742), + [aux_sym_hostname_token1] = ACTIONS(1742), + [aux_sym_identities_only_token1] = ACTIONS(1742), + [aux_sym_identity_agent_token1] = ACTIONS(1742), + [aux_sym_identity_file_token1] = ACTIONS(1742), + [aux_sym_ignore_unknown_token1] = ACTIONS(1742), + [aux_sym_include_token1] = ACTIONS(1742), + [aux_sym_ip_qos_token1] = ACTIONS(1742), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1742), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1742), + [aux_sym_kex_algorithms_token1] = ACTIONS(1742), + [aux_sym_known_hosts_command_token1] = ACTIONS(1742), + [aux_sym_local_command_token1] = ACTIONS(1742), + [aux_sym_local_forward_token1] = ACTIONS(1742), + [aux_sym_log_level_token1] = ACTIONS(1742), + [aux_sym_log_verbose_token1] = ACTIONS(1742), + [aux_sym_macs_token1] = ACTIONS(1742), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1742), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1742), + [aux_sym_password_authentication_token1] = ACTIONS(1742), + [aux_sym_permit_local_command_token1] = ACTIONS(1742), + [aux_sym_permit_remote_open_token1] = ACTIONS(1742), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1742), + [aux_sym_port_token1] = ACTIONS(1742), + [aux_sym_preferred_authentications_token1] = ACTIONS(1742), + [aux_sym_protocol_token1] = ACTIONS(1742), + [aux_sym_proxy_command_token1] = ACTIONS(1742), + [aux_sym_proxy_jump_token1] = ACTIONS(1742), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1742), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1742), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1742), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1742), + [aux_sym_rekey_limit_token1] = ACTIONS(1742), + [aux_sym_remote_command_token1] = ACTIONS(1742), + [aux_sym_remote_forward_token1] = ACTIONS(1742), + [aux_sym_request_tty_token1] = ACTIONS(1742), + [aux_sym_required_rsa_size_token1] = ACTIONS(1742), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1742), + [aux_sym_security_key_provider_token1] = ACTIONS(1742), + [aux_sym_send_env_token1] = ACTIONS(1742), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1742), + [aux_sym_server_alive_interval_token1] = ACTIONS(1742), + [aux_sym_session_type_token1] = ACTIONS(1742), + [aux_sym_set_env_token1] = ACTIONS(1742), + [aux_sym_stdin_null_token1] = ACTIONS(1742), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1742), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1742), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1742), + [aux_sym_syslog_facility_token1] = ACTIONS(1742), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1742), + [aux_sym_keep_alive_token1] = ACTIONS(1742), + [aux_sym_tunnel_token1] = ACTIONS(1744), + [aux_sym_tunnel_device_token1] = ACTIONS(1742), + [aux_sym_update_host_keys_token1] = ACTIONS(1742), + [aux_sym_use_keychain_token1] = ACTIONS(1742), + [aux_sym_use_roaming_token1] = ACTIONS(1742), + [aux_sym_user_token1] = ACTIONS(1744), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1742), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1742), + [aux_sym_visual_host_key_token1] = ACTIONS(1742), + [aux_sym_xauth_location_token1] = ACTIONS(1742), }, [754] = { - [ts_builtin_sym_end] = ACTIONS(1485), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1487), - [aux_sym_match_token1] = ACTIONS(1485), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1485), - [aux_sym_address_family_token1] = ACTIONS(1485), - [aux_sym_batch_mode_token1] = ACTIONS(1485), - [aux_sym_bind_address_token1] = ACTIONS(1485), - [aux_sym_bind_interface_token1] = ACTIONS(1485), - [aux_sym_canonical_domains_token1] = ACTIONS(1485), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1485), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1485), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1485), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1485), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1485), - [aux_sym_certificate_file_token1] = ACTIONS(1485), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1485), - [aux_sym_check_host_ip_token1] = ACTIONS(1485), - [aux_sym_ciphers_token1] = ACTIONS(1485), - [aux_sym_cipher_token1] = ACTIONS(1487), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1485), - [aux_sym_compression_token1] = ACTIONS(1485), - [aux_sym_connection_attempts_token1] = ACTIONS(1485), - [aux_sym_connect_timeout_token1] = ACTIONS(1485), - [aux_sym_control_master_token1] = ACTIONS(1485), - [aux_sym_control_path_token1] = ACTIONS(1485), - [aux_sym_control_persist_token1] = ACTIONS(1485), - [aux_sym_dynamic_forward_token1] = ACTIONS(1485), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1485), - [aux_sym_escape_char_token1] = ACTIONS(1485), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1485), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1485), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1485), - [aux_sym_forward_agent_token1] = ACTIONS(1485), - [aux_sym_forward_x11_token1] = ACTIONS(1487), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1485), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1485), - [aux_sym_gateway_ports_token1] = ACTIONS(1485), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1485), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1485), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1485), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1485), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1485), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1485), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1485), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1485), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1485), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1485), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1485), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1485), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1485), - [aux_sym_host_key_alias_token1] = ACTIONS(1485), - [aux_sym_hostname_token1] = ACTIONS(1485), - [aux_sym_identities_only_token1] = ACTIONS(1485), - [aux_sym_identity_agent_token1] = ACTIONS(1485), - [aux_sym_identity_file_token1] = ACTIONS(1485), - [aux_sym_ignore_unknown_token1] = ACTIONS(1485), - [aux_sym_include_token1] = ACTIONS(1485), - [aux_sym_ip_qos_token1] = ACTIONS(1485), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1485), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1485), - [aux_sym_kex_algorithms_token1] = ACTIONS(1485), - [aux_sym_known_hosts_command_token1] = ACTIONS(1485), - [aux_sym_local_command_token1] = ACTIONS(1485), - [aux_sym_local_forward_token1] = ACTIONS(1485), - [aux_sym_log_level_token1] = ACTIONS(1485), - [aux_sym_log_verbose_token1] = ACTIONS(1485), - [aux_sym_macs_token1] = ACTIONS(1485), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1485), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1485), - [aux_sym_password_authentication_token1] = ACTIONS(1485), - [aux_sym_permit_local_command_token1] = ACTIONS(1485), - [aux_sym_permit_remote_open_token1] = ACTIONS(1485), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1485), - [aux_sym_port_token1] = ACTIONS(1485), - [aux_sym_preferred_authentications_token1] = ACTIONS(1485), - [aux_sym_protocol_token1] = ACTIONS(1485), - [aux_sym_proxy_command_token1] = ACTIONS(1485), - [aux_sym_proxy_jump_token1] = ACTIONS(1485), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1485), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1485), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1485), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1485), - [aux_sym_rekey_limit_token1] = ACTIONS(1485), - [aux_sym_remote_command_token1] = ACTIONS(1485), - [aux_sym_remote_forward_token1] = ACTIONS(1485), - [aux_sym_request_tty_token1] = ACTIONS(1485), - [aux_sym_required_rsa_size_token1] = ACTIONS(1485), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1485), - [aux_sym_security_key_provider_token1] = ACTIONS(1485), - [aux_sym_send_env_token1] = ACTIONS(1485), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1485), - [aux_sym_server_alive_interval_token1] = ACTIONS(1485), - [aux_sym_session_type_token1] = ACTIONS(1485), - [aux_sym_set_env_token1] = ACTIONS(1485), - [aux_sym_stdin_null_token1] = ACTIONS(1485), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1485), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1485), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1485), - [aux_sym_syslog_facility_token1] = ACTIONS(1485), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1485), - [aux_sym_keep_alive_token1] = ACTIONS(1485), - [aux_sym_tunnel_token1] = ACTIONS(1487), - [aux_sym_tunnel_device_token1] = ACTIONS(1485), - [aux_sym_update_host_keys_token1] = ACTIONS(1485), - [aux_sym_use_keychain_token1] = ACTIONS(1485), - [aux_sym_use_roaming_token1] = ACTIONS(1485), - [aux_sym_user_token1] = ACTIONS(1487), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1485), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1485), - [aux_sym_visual_host_key_token1] = ACTIONS(1485), - [aux_sym_xauth_location_token1] = ACTIONS(1485), + [ts_builtin_sym_end] = ACTIONS(764), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(766), + [aux_sym_match_token1] = ACTIONS(764), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(764), + [aux_sym_address_family_token1] = ACTIONS(764), + [aux_sym_batch_mode_token1] = ACTIONS(764), + [aux_sym_bind_address_token1] = ACTIONS(764), + [aux_sym_bind_interface_token1] = ACTIONS(764), + [aux_sym_canonical_domains_token1] = ACTIONS(764), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(764), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(764), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(764), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(764), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(764), + [aux_sym_certificate_file_token1] = ACTIONS(764), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(764), + [aux_sym_check_host_ip_token1] = ACTIONS(764), + [aux_sym_ciphers_token1] = ACTIONS(764), + [aux_sym_cipher_token1] = ACTIONS(766), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(764), + [aux_sym_compression_token1] = ACTIONS(764), + [aux_sym_connection_attempts_token1] = ACTIONS(764), + [aux_sym_connect_timeout_token1] = ACTIONS(764), + [aux_sym_control_master_token1] = ACTIONS(764), + [aux_sym_control_path_token1] = ACTIONS(764), + [aux_sym_control_persist_token1] = ACTIONS(764), + [aux_sym_dynamic_forward_token1] = ACTIONS(764), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(764), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(764), + [aux_sym_escape_char_token1] = ACTIONS(764), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(764), + [aux_sym_fingerprint_hash_token1] = ACTIONS(764), + [aux_sym_fork_after_authentication_token1] = ACTIONS(764), + [aux_sym_forward_agent_token1] = ACTIONS(764), + [aux_sym_forward_x11_token1] = ACTIONS(766), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(764), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(764), + [aux_sym_gateway_ports_token1] = ACTIONS(764), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(764), + [aux_sym_gssapi_authentication_token1] = ACTIONS(764), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(764), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(764), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(764), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(764), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(764), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(764), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(764), + [aux_sym_hash_known_hosts_token1] = ACTIONS(764), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(764), + [aux_sym_hostbased_authentication_token1] = ACTIONS(764), + [aux_sym_host_key_algorithms_token1] = ACTIONS(764), + [aux_sym_host_key_alias_token1] = ACTIONS(764), + [aux_sym_hostname_token1] = ACTIONS(764), + [aux_sym_identities_only_token1] = ACTIONS(764), + [aux_sym_identity_agent_token1] = ACTIONS(764), + [aux_sym_identity_file_token1] = ACTIONS(764), + [aux_sym_ignore_unknown_token1] = ACTIONS(764), + [aux_sym_include_token1] = ACTIONS(764), + [aux_sym_ip_qos_token1] = ACTIONS(764), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(764), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(764), + [aux_sym_kex_algorithms_token1] = ACTIONS(764), + [aux_sym_known_hosts_command_token1] = ACTIONS(764), + [aux_sym_local_command_token1] = ACTIONS(764), + [aux_sym_local_forward_token1] = ACTIONS(764), + [aux_sym_log_level_token1] = ACTIONS(764), + [aux_sym_log_verbose_token1] = ACTIONS(764), + [aux_sym_macs_token1] = ACTIONS(764), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(764), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(764), + [aux_sym_password_authentication_token1] = ACTIONS(764), + [aux_sym_permit_local_command_token1] = ACTIONS(764), + [aux_sym_permit_remote_open_token1] = ACTIONS(764), + [aux_sym_pkcs11_provider_token1] = ACTIONS(764), + [aux_sym_port_token1] = ACTIONS(764), + [aux_sym_preferred_authentications_token1] = ACTIONS(764), + [aux_sym_protocol_token1] = ACTIONS(764), + [aux_sym_proxy_command_token1] = ACTIONS(764), + [aux_sym_proxy_jump_token1] = ACTIONS(764), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(764), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(764), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(764), + [aux_sym_pubkey_authentication_token1] = ACTIONS(764), + [aux_sym_rekey_limit_token1] = ACTIONS(764), + [aux_sym_remote_command_token1] = ACTIONS(764), + [aux_sym_remote_forward_token1] = ACTIONS(764), + [aux_sym_request_tty_token1] = ACTIONS(764), + [aux_sym_required_rsa_size_token1] = ACTIONS(764), + [aux_sym_revoked_host_keys_token1] = ACTIONS(764), + [aux_sym_security_key_provider_token1] = ACTIONS(764), + [aux_sym_send_env_token1] = ACTIONS(764), + [aux_sym_server_alive_count_max_token1] = ACTIONS(764), + [aux_sym_server_alive_interval_token1] = ACTIONS(764), + [aux_sym_session_type_token1] = ACTIONS(764), + [aux_sym_set_env_token1] = ACTIONS(764), + [aux_sym_stdin_null_token1] = ACTIONS(764), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(764), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(764), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(764), + [aux_sym_syslog_facility_token1] = ACTIONS(764), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(764), + [aux_sym_keep_alive_token1] = ACTIONS(764), + [aux_sym_tunnel_token1] = ACTIONS(766), + [aux_sym_tunnel_device_token1] = ACTIONS(764), + [aux_sym_update_host_keys_token1] = ACTIONS(764), + [aux_sym_use_keychain_token1] = ACTIONS(764), + [aux_sym_use_roaming_token1] = ACTIONS(764), + [aux_sym_user_token1] = ACTIONS(766), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(764), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(764), + [aux_sym_visual_host_key_token1] = ACTIONS(764), + [aux_sym_xauth_location_token1] = ACTIONS(764), }, [755] = { - [ts_builtin_sym_end] = ACTIONS(1491), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1493), - [aux_sym_match_token1] = ACTIONS(1491), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1491), - [aux_sym_address_family_token1] = ACTIONS(1491), - [aux_sym_batch_mode_token1] = ACTIONS(1491), - [aux_sym_bind_address_token1] = ACTIONS(1491), - [aux_sym_bind_interface_token1] = ACTIONS(1491), - [aux_sym_canonical_domains_token1] = ACTIONS(1491), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1491), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1491), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1491), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1491), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1491), - [aux_sym_certificate_file_token1] = ACTIONS(1491), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1491), - [aux_sym_check_host_ip_token1] = ACTIONS(1491), - [aux_sym_ciphers_token1] = ACTIONS(1491), - [aux_sym_cipher_token1] = ACTIONS(1493), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1491), - [aux_sym_compression_token1] = ACTIONS(1491), - [aux_sym_connection_attempts_token1] = ACTIONS(1491), - [aux_sym_connect_timeout_token1] = ACTIONS(1491), - [aux_sym_control_master_token1] = ACTIONS(1491), - [aux_sym_control_path_token1] = ACTIONS(1491), - [aux_sym_control_persist_token1] = ACTIONS(1491), - [aux_sym_dynamic_forward_token1] = ACTIONS(1491), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1491), - [aux_sym_escape_char_token1] = ACTIONS(1491), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1491), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1491), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1491), - [aux_sym_forward_agent_token1] = ACTIONS(1491), - [aux_sym_forward_x11_token1] = ACTIONS(1493), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1491), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1491), - [aux_sym_gateway_ports_token1] = ACTIONS(1491), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1491), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1491), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1491), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1491), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1491), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1491), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1491), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1491), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1491), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1491), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1491), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1491), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1491), - [aux_sym_host_key_alias_token1] = ACTIONS(1491), - [aux_sym_hostname_token1] = ACTIONS(1491), - [aux_sym_identities_only_token1] = ACTIONS(1491), - [aux_sym_identity_agent_token1] = ACTIONS(1491), - [aux_sym_identity_file_token1] = ACTIONS(1491), - [aux_sym_ignore_unknown_token1] = ACTIONS(1491), - [aux_sym_include_token1] = ACTIONS(1491), - [aux_sym_ip_qos_token1] = ACTIONS(1491), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1491), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1491), - [aux_sym_kex_algorithms_token1] = ACTIONS(1491), - [aux_sym_known_hosts_command_token1] = ACTIONS(1491), - [aux_sym_local_command_token1] = ACTIONS(1491), - [aux_sym_local_forward_token1] = ACTIONS(1491), - [aux_sym_log_level_token1] = ACTIONS(1491), - [aux_sym_log_verbose_token1] = ACTIONS(1491), - [aux_sym_macs_token1] = ACTIONS(1491), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1491), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1491), - [aux_sym_password_authentication_token1] = ACTIONS(1491), - [aux_sym_permit_local_command_token1] = ACTIONS(1491), - [aux_sym_permit_remote_open_token1] = ACTIONS(1491), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1491), - [aux_sym_port_token1] = ACTIONS(1491), - [aux_sym_preferred_authentications_token1] = ACTIONS(1491), - [aux_sym_protocol_token1] = ACTIONS(1491), - [aux_sym_proxy_command_token1] = ACTIONS(1491), - [aux_sym_proxy_jump_token1] = ACTIONS(1491), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1491), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1491), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1491), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1491), - [aux_sym_rekey_limit_token1] = ACTIONS(1491), - [aux_sym_remote_command_token1] = ACTIONS(1491), - [aux_sym_remote_forward_token1] = ACTIONS(1491), - [aux_sym_request_tty_token1] = ACTIONS(1491), - [aux_sym_required_rsa_size_token1] = ACTIONS(1491), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1491), - [aux_sym_security_key_provider_token1] = ACTIONS(1491), - [aux_sym_send_env_token1] = ACTIONS(1491), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1491), - [aux_sym_server_alive_interval_token1] = ACTIONS(1491), - [aux_sym_session_type_token1] = ACTIONS(1491), - [aux_sym_set_env_token1] = ACTIONS(1491), - [aux_sym_stdin_null_token1] = ACTIONS(1491), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1491), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1491), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1491), - [aux_sym_syslog_facility_token1] = ACTIONS(1491), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1491), - [aux_sym_keep_alive_token1] = ACTIONS(1491), - [aux_sym_tunnel_token1] = ACTIONS(1493), - [aux_sym_tunnel_device_token1] = ACTIONS(1491), - [aux_sym_update_host_keys_token1] = ACTIONS(1491), - [aux_sym_use_keychain_token1] = ACTIONS(1491), - [aux_sym_use_roaming_token1] = ACTIONS(1491), - [aux_sym_user_token1] = ACTIONS(1493), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1491), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1491), - [aux_sym_visual_host_key_token1] = ACTIONS(1491), - [aux_sym_xauth_location_token1] = ACTIONS(1491), + [ts_builtin_sym_end] = ACTIONS(1622), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1624), + [aux_sym_match_token1] = ACTIONS(1622), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1622), + [aux_sym_address_family_token1] = ACTIONS(1622), + [aux_sym_batch_mode_token1] = ACTIONS(1622), + [aux_sym_bind_address_token1] = ACTIONS(1622), + [aux_sym_bind_interface_token1] = ACTIONS(1622), + [aux_sym_canonical_domains_token1] = ACTIONS(1622), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1622), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1622), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1622), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1622), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1622), + [aux_sym_certificate_file_token1] = ACTIONS(1622), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1622), + [aux_sym_check_host_ip_token1] = ACTIONS(1622), + [aux_sym_ciphers_token1] = ACTIONS(1622), + [aux_sym_cipher_token1] = ACTIONS(1624), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1622), + [aux_sym_compression_token1] = ACTIONS(1622), + [aux_sym_connection_attempts_token1] = ACTIONS(1622), + [aux_sym_connect_timeout_token1] = ACTIONS(1622), + [aux_sym_control_master_token1] = ACTIONS(1622), + [aux_sym_control_path_token1] = ACTIONS(1622), + [aux_sym_control_persist_token1] = ACTIONS(1622), + [aux_sym_dynamic_forward_token1] = ACTIONS(1622), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1622), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1622), + [aux_sym_escape_char_token1] = ACTIONS(1622), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1622), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1622), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1622), + [aux_sym_forward_agent_token1] = ACTIONS(1622), + [aux_sym_forward_x11_token1] = ACTIONS(1624), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1622), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1622), + [aux_sym_gateway_ports_token1] = ACTIONS(1622), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1622), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1622), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1622), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1622), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1622), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1622), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1622), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1622), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1622), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1622), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1622), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1622), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1622), + [aux_sym_host_key_alias_token1] = ACTIONS(1622), + [aux_sym_hostname_token1] = ACTIONS(1622), + [aux_sym_identities_only_token1] = ACTIONS(1622), + [aux_sym_identity_agent_token1] = ACTIONS(1622), + [aux_sym_identity_file_token1] = ACTIONS(1622), + [aux_sym_ignore_unknown_token1] = ACTIONS(1622), + [aux_sym_include_token1] = ACTIONS(1622), + [aux_sym_ip_qos_token1] = ACTIONS(1622), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1622), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1622), + [aux_sym_kex_algorithms_token1] = ACTIONS(1622), + [aux_sym_known_hosts_command_token1] = ACTIONS(1622), + [aux_sym_local_command_token1] = ACTIONS(1622), + [aux_sym_local_forward_token1] = ACTIONS(1622), + [aux_sym_log_level_token1] = ACTIONS(1622), + [aux_sym_log_verbose_token1] = ACTIONS(1622), + [aux_sym_macs_token1] = ACTIONS(1622), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1622), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1622), + [aux_sym_password_authentication_token1] = ACTIONS(1622), + [aux_sym_permit_local_command_token1] = ACTIONS(1622), + [aux_sym_permit_remote_open_token1] = ACTIONS(1622), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1622), + [aux_sym_port_token1] = ACTIONS(1622), + [aux_sym_preferred_authentications_token1] = ACTIONS(1622), + [aux_sym_protocol_token1] = ACTIONS(1622), + [aux_sym_proxy_command_token1] = ACTIONS(1622), + [aux_sym_proxy_jump_token1] = ACTIONS(1622), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1622), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1622), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1622), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1622), + [aux_sym_rekey_limit_token1] = ACTIONS(1622), + [aux_sym_remote_command_token1] = ACTIONS(1622), + [aux_sym_remote_forward_token1] = ACTIONS(1622), + [aux_sym_request_tty_token1] = ACTIONS(1622), + [aux_sym_required_rsa_size_token1] = ACTIONS(1622), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1622), + [aux_sym_security_key_provider_token1] = ACTIONS(1622), + [aux_sym_send_env_token1] = ACTIONS(1622), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1622), + [aux_sym_server_alive_interval_token1] = ACTIONS(1622), + [aux_sym_session_type_token1] = ACTIONS(1622), + [aux_sym_set_env_token1] = ACTIONS(1622), + [aux_sym_stdin_null_token1] = ACTIONS(1622), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1622), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1622), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1622), + [aux_sym_syslog_facility_token1] = ACTIONS(1622), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1622), + [aux_sym_keep_alive_token1] = ACTIONS(1622), + [aux_sym_tunnel_token1] = ACTIONS(1624), + [aux_sym_tunnel_device_token1] = ACTIONS(1622), + [aux_sym_update_host_keys_token1] = ACTIONS(1622), + [aux_sym_use_keychain_token1] = ACTIONS(1622), + [aux_sym_use_roaming_token1] = ACTIONS(1622), + [aux_sym_user_token1] = ACTIONS(1624), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1622), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1622), + [aux_sym_visual_host_key_token1] = ACTIONS(1622), + [aux_sym_xauth_location_token1] = ACTIONS(1622), }, [756] = { - [ts_builtin_sym_end] = ACTIONS(1707), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1709), - [aux_sym_match_token1] = ACTIONS(1707), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1707), - [aux_sym_address_family_token1] = ACTIONS(1707), - [aux_sym_batch_mode_token1] = ACTIONS(1707), - [aux_sym_bind_address_token1] = ACTIONS(1707), - [aux_sym_bind_interface_token1] = ACTIONS(1707), - [aux_sym_canonical_domains_token1] = ACTIONS(1707), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1707), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1707), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1707), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1707), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1707), - [aux_sym_certificate_file_token1] = ACTIONS(1707), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1707), - [aux_sym_check_host_ip_token1] = ACTIONS(1707), - [aux_sym_ciphers_token1] = ACTIONS(1707), - [aux_sym_cipher_token1] = ACTIONS(1709), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1707), - [aux_sym_compression_token1] = ACTIONS(1707), - [aux_sym_connection_attempts_token1] = ACTIONS(1707), - [aux_sym_connect_timeout_token1] = ACTIONS(1707), - [aux_sym_control_master_token1] = ACTIONS(1707), - [aux_sym_control_path_token1] = ACTIONS(1707), - [aux_sym_control_persist_token1] = ACTIONS(1707), - [aux_sym_dynamic_forward_token1] = ACTIONS(1707), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1707), - [aux_sym_escape_char_token1] = ACTIONS(1707), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1707), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1707), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1707), - [aux_sym_forward_agent_token1] = ACTIONS(1707), - [aux_sym_forward_x11_token1] = ACTIONS(1709), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1707), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1707), - [aux_sym_gateway_ports_token1] = ACTIONS(1707), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1707), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1707), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1707), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1707), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1707), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1707), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1707), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1707), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1707), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1707), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1707), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1707), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1707), - [aux_sym_host_key_alias_token1] = ACTIONS(1707), - [aux_sym_hostname_token1] = ACTIONS(1707), - [aux_sym_identities_only_token1] = ACTIONS(1707), - [aux_sym_identity_agent_token1] = ACTIONS(1707), - [aux_sym_identity_file_token1] = ACTIONS(1707), - [aux_sym_ignore_unknown_token1] = ACTIONS(1707), - [aux_sym_include_token1] = ACTIONS(1707), - [aux_sym_ip_qos_token1] = ACTIONS(1707), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1707), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1707), - [aux_sym_kex_algorithms_token1] = ACTIONS(1707), - [aux_sym_known_hosts_command_token1] = ACTIONS(1707), - [aux_sym_local_command_token1] = ACTIONS(1707), - [aux_sym_local_forward_token1] = ACTIONS(1707), - [aux_sym_log_level_token1] = ACTIONS(1707), - [aux_sym_log_verbose_token1] = ACTIONS(1707), - [aux_sym_macs_token1] = ACTIONS(1707), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1707), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1707), - [aux_sym_password_authentication_token1] = ACTIONS(1707), - [aux_sym_permit_local_command_token1] = ACTIONS(1707), - [aux_sym_permit_remote_open_token1] = ACTIONS(1707), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1707), - [aux_sym_port_token1] = ACTIONS(1707), - [aux_sym_preferred_authentications_token1] = ACTIONS(1707), - [aux_sym_protocol_token1] = ACTIONS(1707), - [aux_sym_proxy_command_token1] = ACTIONS(1707), - [aux_sym_proxy_jump_token1] = ACTIONS(1707), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1707), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1707), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1707), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1707), - [aux_sym_rekey_limit_token1] = ACTIONS(1707), - [aux_sym_remote_command_token1] = ACTIONS(1707), - [aux_sym_remote_forward_token1] = ACTIONS(1707), - [aux_sym_request_tty_token1] = ACTIONS(1707), - [aux_sym_required_rsa_size_token1] = ACTIONS(1707), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1707), - [aux_sym_security_key_provider_token1] = ACTIONS(1707), - [aux_sym_send_env_token1] = ACTIONS(1707), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1707), - [aux_sym_server_alive_interval_token1] = ACTIONS(1707), - [aux_sym_session_type_token1] = ACTIONS(1707), - [aux_sym_set_env_token1] = ACTIONS(1707), - [aux_sym_stdin_null_token1] = ACTIONS(1707), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1707), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1707), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1707), - [aux_sym_syslog_facility_token1] = ACTIONS(1707), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1707), - [aux_sym_keep_alive_token1] = ACTIONS(1707), - [aux_sym_tunnel_token1] = ACTIONS(1709), - [aux_sym_tunnel_device_token1] = ACTIONS(1707), - [aux_sym_update_host_keys_token1] = ACTIONS(1707), - [aux_sym_use_keychain_token1] = ACTIONS(1707), - [aux_sym_use_roaming_token1] = ACTIONS(1707), - [aux_sym_user_token1] = ACTIONS(1709), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1707), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1707), - [aux_sym_visual_host_key_token1] = ACTIONS(1707), - [aux_sym_xauth_location_token1] = ACTIONS(1707), + [ts_builtin_sym_end] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1738), + [aux_sym_match_token1] = ACTIONS(1736), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1736), + [aux_sym_address_family_token1] = ACTIONS(1736), + [aux_sym_batch_mode_token1] = ACTIONS(1736), + [aux_sym_bind_address_token1] = ACTIONS(1736), + [aux_sym_bind_interface_token1] = ACTIONS(1736), + [aux_sym_canonical_domains_token1] = ACTIONS(1736), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1736), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1736), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1736), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1736), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1736), + [aux_sym_certificate_file_token1] = ACTIONS(1736), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1736), + [aux_sym_check_host_ip_token1] = ACTIONS(1736), + [aux_sym_ciphers_token1] = ACTIONS(1736), + [aux_sym_cipher_token1] = ACTIONS(1738), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1736), + [aux_sym_compression_token1] = ACTIONS(1736), + [aux_sym_connection_attempts_token1] = ACTIONS(1736), + [aux_sym_connect_timeout_token1] = ACTIONS(1736), + [aux_sym_control_master_token1] = ACTIONS(1736), + [aux_sym_control_path_token1] = ACTIONS(1736), + [aux_sym_control_persist_token1] = ACTIONS(1736), + [aux_sym_dynamic_forward_token1] = ACTIONS(1736), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1736), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1736), + [aux_sym_escape_char_token1] = ACTIONS(1736), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1736), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1736), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1736), + [aux_sym_forward_agent_token1] = ACTIONS(1736), + [aux_sym_forward_x11_token1] = ACTIONS(1738), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1736), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1736), + [aux_sym_gateway_ports_token1] = ACTIONS(1736), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1736), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1736), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1736), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1736), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1736), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1736), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1736), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1736), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1736), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1736), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1736), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1736), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1736), + [aux_sym_host_key_alias_token1] = ACTIONS(1736), + [aux_sym_hostname_token1] = ACTIONS(1736), + [aux_sym_identities_only_token1] = ACTIONS(1736), + [aux_sym_identity_agent_token1] = ACTIONS(1736), + [aux_sym_identity_file_token1] = ACTIONS(1736), + [aux_sym_ignore_unknown_token1] = ACTIONS(1736), + [aux_sym_include_token1] = ACTIONS(1736), + [aux_sym_ip_qos_token1] = ACTIONS(1736), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1736), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1736), + [aux_sym_kex_algorithms_token1] = ACTIONS(1736), + [aux_sym_known_hosts_command_token1] = ACTIONS(1736), + [aux_sym_local_command_token1] = ACTIONS(1736), + [aux_sym_local_forward_token1] = ACTIONS(1736), + [aux_sym_log_level_token1] = ACTIONS(1736), + [aux_sym_log_verbose_token1] = ACTIONS(1736), + [aux_sym_macs_token1] = ACTIONS(1736), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1736), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1736), + [aux_sym_password_authentication_token1] = ACTIONS(1736), + [aux_sym_permit_local_command_token1] = ACTIONS(1736), + [aux_sym_permit_remote_open_token1] = ACTIONS(1736), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1736), + [aux_sym_port_token1] = ACTIONS(1736), + [aux_sym_preferred_authentications_token1] = ACTIONS(1736), + [aux_sym_protocol_token1] = ACTIONS(1736), + [aux_sym_proxy_command_token1] = ACTIONS(1736), + [aux_sym_proxy_jump_token1] = ACTIONS(1736), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1736), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1736), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1736), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1736), + [aux_sym_rekey_limit_token1] = ACTIONS(1736), + [aux_sym_remote_command_token1] = ACTIONS(1736), + [aux_sym_remote_forward_token1] = ACTIONS(1736), + [aux_sym_request_tty_token1] = ACTIONS(1736), + [aux_sym_required_rsa_size_token1] = ACTIONS(1736), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1736), + [aux_sym_security_key_provider_token1] = ACTIONS(1736), + [aux_sym_send_env_token1] = ACTIONS(1736), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1736), + [aux_sym_server_alive_interval_token1] = ACTIONS(1736), + [aux_sym_session_type_token1] = ACTIONS(1736), + [aux_sym_set_env_token1] = ACTIONS(1736), + [aux_sym_stdin_null_token1] = ACTIONS(1736), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1736), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1736), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1736), + [aux_sym_syslog_facility_token1] = ACTIONS(1736), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1736), + [aux_sym_keep_alive_token1] = ACTIONS(1736), + [aux_sym_tunnel_token1] = ACTIONS(1738), + [aux_sym_tunnel_device_token1] = ACTIONS(1736), + [aux_sym_update_host_keys_token1] = ACTIONS(1736), + [aux_sym_use_keychain_token1] = ACTIONS(1736), + [aux_sym_use_roaming_token1] = ACTIONS(1736), + [aux_sym_user_token1] = ACTIONS(1738), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1736), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1736), + [aux_sym_visual_host_key_token1] = ACTIONS(1736), + [aux_sym_xauth_location_token1] = ACTIONS(1736), }, [757] = { - [ts_builtin_sym_end] = ACTIONS(1497), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1499), - [aux_sym_match_token1] = ACTIONS(1497), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1497), - [aux_sym_address_family_token1] = ACTIONS(1497), - [aux_sym_batch_mode_token1] = ACTIONS(1497), - [aux_sym_bind_address_token1] = ACTIONS(1497), - [aux_sym_bind_interface_token1] = ACTIONS(1497), - [aux_sym_canonical_domains_token1] = ACTIONS(1497), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1497), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1497), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1497), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1497), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1497), - [aux_sym_certificate_file_token1] = ACTIONS(1497), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1497), - [aux_sym_check_host_ip_token1] = ACTIONS(1497), - [aux_sym_ciphers_token1] = ACTIONS(1497), - [aux_sym_cipher_token1] = ACTIONS(1499), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1497), - [aux_sym_compression_token1] = ACTIONS(1497), - [aux_sym_connection_attempts_token1] = ACTIONS(1497), - [aux_sym_connect_timeout_token1] = ACTIONS(1497), - [aux_sym_control_master_token1] = ACTIONS(1497), - [aux_sym_control_path_token1] = ACTIONS(1497), - [aux_sym_control_persist_token1] = ACTIONS(1497), - [aux_sym_dynamic_forward_token1] = ACTIONS(1497), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1497), - [aux_sym_escape_char_token1] = ACTIONS(1497), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1497), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1497), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1497), - [aux_sym_forward_agent_token1] = ACTIONS(1497), - [aux_sym_forward_x11_token1] = ACTIONS(1499), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1497), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1497), - [aux_sym_gateway_ports_token1] = ACTIONS(1497), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1497), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1497), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1497), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1497), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1497), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1497), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1497), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1497), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1497), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1497), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1497), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1497), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1497), - [aux_sym_host_key_alias_token1] = ACTIONS(1497), - [aux_sym_hostname_token1] = ACTIONS(1497), - [aux_sym_identities_only_token1] = ACTIONS(1497), - [aux_sym_identity_agent_token1] = ACTIONS(1497), - [aux_sym_identity_file_token1] = ACTIONS(1497), - [aux_sym_ignore_unknown_token1] = ACTIONS(1497), - [aux_sym_include_token1] = ACTIONS(1497), - [aux_sym_ip_qos_token1] = ACTIONS(1497), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1497), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1497), - [aux_sym_kex_algorithms_token1] = ACTIONS(1497), - [aux_sym_known_hosts_command_token1] = ACTIONS(1497), - [aux_sym_local_command_token1] = ACTIONS(1497), - [aux_sym_local_forward_token1] = ACTIONS(1497), - [aux_sym_log_level_token1] = ACTIONS(1497), - [aux_sym_log_verbose_token1] = ACTIONS(1497), - [aux_sym_macs_token1] = ACTIONS(1497), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1497), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1497), - [aux_sym_password_authentication_token1] = ACTIONS(1497), - [aux_sym_permit_local_command_token1] = ACTIONS(1497), - [aux_sym_permit_remote_open_token1] = ACTIONS(1497), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1497), - [aux_sym_port_token1] = ACTIONS(1497), - [aux_sym_preferred_authentications_token1] = ACTIONS(1497), - [aux_sym_protocol_token1] = ACTIONS(1497), - [aux_sym_proxy_command_token1] = ACTIONS(1497), - [aux_sym_proxy_jump_token1] = ACTIONS(1497), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1497), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1497), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1497), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1497), - [aux_sym_rekey_limit_token1] = ACTIONS(1497), - [aux_sym_remote_command_token1] = ACTIONS(1497), - [aux_sym_remote_forward_token1] = ACTIONS(1497), - [aux_sym_request_tty_token1] = ACTIONS(1497), - [aux_sym_required_rsa_size_token1] = ACTIONS(1497), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1497), - [aux_sym_security_key_provider_token1] = ACTIONS(1497), - [aux_sym_send_env_token1] = ACTIONS(1497), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1497), - [aux_sym_server_alive_interval_token1] = ACTIONS(1497), - [aux_sym_session_type_token1] = ACTIONS(1497), - [aux_sym_set_env_token1] = ACTIONS(1497), - [aux_sym_stdin_null_token1] = ACTIONS(1497), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1497), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1497), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1497), - [aux_sym_syslog_facility_token1] = ACTIONS(1497), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1497), - [aux_sym_keep_alive_token1] = ACTIONS(1497), - [aux_sym_tunnel_token1] = ACTIONS(1499), - [aux_sym_tunnel_device_token1] = ACTIONS(1497), - [aux_sym_update_host_keys_token1] = ACTIONS(1497), - [aux_sym_use_keychain_token1] = ACTIONS(1497), - [aux_sym_use_roaming_token1] = ACTIONS(1497), - [aux_sym_user_token1] = ACTIONS(1499), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1497), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1497), - [aux_sym_visual_host_key_token1] = ACTIONS(1497), - [aux_sym_xauth_location_token1] = ACTIONS(1497), + [ts_builtin_sym_end] = ACTIONS(716), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(718), + [aux_sym_match_token1] = ACTIONS(716), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(716), + [aux_sym_address_family_token1] = ACTIONS(716), + [aux_sym_batch_mode_token1] = ACTIONS(716), + [aux_sym_bind_address_token1] = ACTIONS(716), + [aux_sym_bind_interface_token1] = ACTIONS(716), + [aux_sym_canonical_domains_token1] = ACTIONS(716), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(716), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(716), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(716), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(716), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(716), + [aux_sym_certificate_file_token1] = ACTIONS(716), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(716), + [aux_sym_check_host_ip_token1] = ACTIONS(716), + [aux_sym_ciphers_token1] = ACTIONS(716), + [aux_sym_cipher_token1] = ACTIONS(718), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(716), + [aux_sym_compression_token1] = ACTIONS(716), + [aux_sym_connection_attempts_token1] = ACTIONS(716), + [aux_sym_connect_timeout_token1] = ACTIONS(716), + [aux_sym_control_master_token1] = ACTIONS(716), + [aux_sym_control_path_token1] = ACTIONS(716), + [aux_sym_control_persist_token1] = ACTIONS(716), + [aux_sym_dynamic_forward_token1] = ACTIONS(716), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(716), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(716), + [aux_sym_escape_char_token1] = ACTIONS(716), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(716), + [aux_sym_fingerprint_hash_token1] = ACTIONS(716), + [aux_sym_fork_after_authentication_token1] = ACTIONS(716), + [aux_sym_forward_agent_token1] = ACTIONS(716), + [aux_sym_forward_x11_token1] = ACTIONS(718), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(716), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(716), + [aux_sym_gateway_ports_token1] = ACTIONS(716), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(716), + [aux_sym_gssapi_authentication_token1] = ACTIONS(716), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(716), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(716), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(716), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(716), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(716), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(716), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(716), + [aux_sym_hash_known_hosts_token1] = ACTIONS(716), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(716), + [aux_sym_hostbased_authentication_token1] = ACTIONS(716), + [aux_sym_host_key_algorithms_token1] = ACTIONS(716), + [aux_sym_host_key_alias_token1] = ACTIONS(716), + [aux_sym_hostname_token1] = ACTIONS(716), + [aux_sym_identities_only_token1] = ACTIONS(716), + [aux_sym_identity_agent_token1] = ACTIONS(716), + [aux_sym_identity_file_token1] = ACTIONS(716), + [aux_sym_ignore_unknown_token1] = ACTIONS(716), + [aux_sym_include_token1] = ACTIONS(716), + [aux_sym_ip_qos_token1] = ACTIONS(716), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(716), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(716), + [aux_sym_kex_algorithms_token1] = ACTIONS(716), + [aux_sym_known_hosts_command_token1] = ACTIONS(716), + [aux_sym_local_command_token1] = ACTIONS(716), + [aux_sym_local_forward_token1] = ACTIONS(716), + [aux_sym_log_level_token1] = ACTIONS(716), + [aux_sym_log_verbose_token1] = ACTIONS(716), + [aux_sym_macs_token1] = ACTIONS(716), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(716), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(716), + [aux_sym_password_authentication_token1] = ACTIONS(716), + [aux_sym_permit_local_command_token1] = ACTIONS(716), + [aux_sym_permit_remote_open_token1] = ACTIONS(716), + [aux_sym_pkcs11_provider_token1] = ACTIONS(716), + [aux_sym_port_token1] = ACTIONS(716), + [aux_sym_preferred_authentications_token1] = ACTIONS(716), + [aux_sym_protocol_token1] = ACTIONS(716), + [aux_sym_proxy_command_token1] = ACTIONS(716), + [aux_sym_proxy_jump_token1] = ACTIONS(716), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(716), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(716), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(716), + [aux_sym_pubkey_authentication_token1] = ACTIONS(716), + [aux_sym_rekey_limit_token1] = ACTIONS(716), + [aux_sym_remote_command_token1] = ACTIONS(716), + [aux_sym_remote_forward_token1] = ACTIONS(716), + [aux_sym_request_tty_token1] = ACTIONS(716), + [aux_sym_required_rsa_size_token1] = ACTIONS(716), + [aux_sym_revoked_host_keys_token1] = ACTIONS(716), + [aux_sym_security_key_provider_token1] = ACTIONS(716), + [aux_sym_send_env_token1] = ACTIONS(716), + [aux_sym_server_alive_count_max_token1] = ACTIONS(716), + [aux_sym_server_alive_interval_token1] = ACTIONS(716), + [aux_sym_session_type_token1] = ACTIONS(716), + [aux_sym_set_env_token1] = ACTIONS(716), + [aux_sym_stdin_null_token1] = ACTIONS(716), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(716), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(716), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(716), + [aux_sym_syslog_facility_token1] = ACTIONS(716), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(716), + [aux_sym_keep_alive_token1] = ACTIONS(716), + [aux_sym_tunnel_token1] = ACTIONS(718), + [aux_sym_tunnel_device_token1] = ACTIONS(716), + [aux_sym_update_host_keys_token1] = ACTIONS(716), + [aux_sym_use_keychain_token1] = ACTIONS(716), + [aux_sym_use_roaming_token1] = ACTIONS(716), + [aux_sym_user_token1] = ACTIONS(718), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(716), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(716), + [aux_sym_visual_host_key_token1] = ACTIONS(716), + [aux_sym_xauth_location_token1] = ACTIONS(716), }, [758] = { - [ts_builtin_sym_end] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1625), - [aux_sym_match_token1] = ACTIONS(1623), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1623), - [aux_sym_address_family_token1] = ACTIONS(1623), - [aux_sym_batch_mode_token1] = ACTIONS(1623), - [aux_sym_bind_address_token1] = ACTIONS(1623), - [aux_sym_bind_interface_token1] = ACTIONS(1623), - [aux_sym_canonical_domains_token1] = ACTIONS(1623), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1623), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1623), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1623), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1623), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1623), - [aux_sym_certificate_file_token1] = ACTIONS(1623), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1623), - [aux_sym_check_host_ip_token1] = ACTIONS(1623), - [aux_sym_ciphers_token1] = ACTIONS(1623), - [aux_sym_cipher_token1] = ACTIONS(1625), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1623), - [aux_sym_compression_token1] = ACTIONS(1623), - [aux_sym_connection_attempts_token1] = ACTIONS(1623), - [aux_sym_connect_timeout_token1] = ACTIONS(1623), - [aux_sym_control_master_token1] = ACTIONS(1623), - [aux_sym_control_path_token1] = ACTIONS(1623), - [aux_sym_control_persist_token1] = ACTIONS(1623), - [aux_sym_dynamic_forward_token1] = ACTIONS(1623), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1623), - [aux_sym_escape_char_token1] = ACTIONS(1623), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1623), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1623), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1623), - [aux_sym_forward_agent_token1] = ACTIONS(1623), - [aux_sym_forward_x11_token1] = ACTIONS(1625), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1623), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1623), - [aux_sym_gateway_ports_token1] = ACTIONS(1623), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1623), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1623), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1623), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1623), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1623), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1623), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1623), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1623), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1623), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1623), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1623), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1623), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1623), - [aux_sym_host_key_alias_token1] = ACTIONS(1623), - [aux_sym_hostname_token1] = ACTIONS(1623), - [aux_sym_identities_only_token1] = ACTIONS(1623), - [aux_sym_identity_agent_token1] = ACTIONS(1623), - [aux_sym_identity_file_token1] = ACTIONS(1623), - [aux_sym_ignore_unknown_token1] = ACTIONS(1623), - [aux_sym_include_token1] = ACTIONS(1623), - [aux_sym_ip_qos_token1] = ACTIONS(1623), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1623), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1623), - [aux_sym_kex_algorithms_token1] = ACTIONS(1623), - [aux_sym_known_hosts_command_token1] = ACTIONS(1623), - [aux_sym_local_command_token1] = ACTIONS(1623), - [aux_sym_local_forward_token1] = ACTIONS(1623), - [aux_sym_log_level_token1] = ACTIONS(1623), - [aux_sym_log_verbose_token1] = ACTIONS(1623), - [aux_sym_macs_token1] = ACTIONS(1623), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1623), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1623), - [aux_sym_password_authentication_token1] = ACTIONS(1623), - [aux_sym_permit_local_command_token1] = ACTIONS(1623), - [aux_sym_permit_remote_open_token1] = ACTIONS(1623), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1623), - [aux_sym_port_token1] = ACTIONS(1623), - [aux_sym_preferred_authentications_token1] = ACTIONS(1623), - [aux_sym_protocol_token1] = ACTIONS(1623), - [aux_sym_proxy_command_token1] = ACTIONS(1623), - [aux_sym_proxy_jump_token1] = ACTIONS(1623), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1623), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1623), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1623), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1623), - [aux_sym_rekey_limit_token1] = ACTIONS(1623), - [aux_sym_remote_command_token1] = ACTIONS(1623), - [aux_sym_remote_forward_token1] = ACTIONS(1623), - [aux_sym_request_tty_token1] = ACTIONS(1623), - [aux_sym_required_rsa_size_token1] = ACTIONS(1623), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1623), - [aux_sym_security_key_provider_token1] = ACTIONS(1623), - [aux_sym_send_env_token1] = ACTIONS(1623), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1623), - [aux_sym_server_alive_interval_token1] = ACTIONS(1623), - [aux_sym_session_type_token1] = ACTIONS(1623), - [aux_sym_set_env_token1] = ACTIONS(1623), - [aux_sym_stdin_null_token1] = ACTIONS(1623), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1623), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1623), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1623), - [aux_sym_syslog_facility_token1] = ACTIONS(1623), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1623), - [aux_sym_keep_alive_token1] = ACTIONS(1623), - [aux_sym_tunnel_token1] = ACTIONS(1625), - [aux_sym_tunnel_device_token1] = ACTIONS(1623), - [aux_sym_update_host_keys_token1] = ACTIONS(1623), - [aux_sym_use_keychain_token1] = ACTIONS(1623), - [aux_sym_use_roaming_token1] = ACTIONS(1623), - [aux_sym_user_token1] = ACTIONS(1625), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1623), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1623), - [aux_sym_visual_host_key_token1] = ACTIONS(1623), - [aux_sym_xauth_location_token1] = ACTIONS(1623), + [ts_builtin_sym_end] = ACTIONS(1628), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1630), + [aux_sym_match_token1] = ACTIONS(1628), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1628), + [aux_sym_address_family_token1] = ACTIONS(1628), + [aux_sym_batch_mode_token1] = ACTIONS(1628), + [aux_sym_bind_address_token1] = ACTIONS(1628), + [aux_sym_bind_interface_token1] = ACTIONS(1628), + [aux_sym_canonical_domains_token1] = ACTIONS(1628), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1628), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1628), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1628), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1628), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1628), + [aux_sym_certificate_file_token1] = ACTIONS(1628), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1628), + [aux_sym_check_host_ip_token1] = ACTIONS(1628), + [aux_sym_ciphers_token1] = ACTIONS(1628), + [aux_sym_cipher_token1] = ACTIONS(1630), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1628), + [aux_sym_compression_token1] = ACTIONS(1628), + [aux_sym_connection_attempts_token1] = ACTIONS(1628), + [aux_sym_connect_timeout_token1] = ACTIONS(1628), + [aux_sym_control_master_token1] = ACTIONS(1628), + [aux_sym_control_path_token1] = ACTIONS(1628), + [aux_sym_control_persist_token1] = ACTIONS(1628), + [aux_sym_dynamic_forward_token1] = ACTIONS(1628), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1628), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1628), + [aux_sym_escape_char_token1] = ACTIONS(1628), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1628), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1628), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1628), + [aux_sym_forward_agent_token1] = ACTIONS(1628), + [aux_sym_forward_x11_token1] = ACTIONS(1630), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1628), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1628), + [aux_sym_gateway_ports_token1] = ACTIONS(1628), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1628), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1628), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1628), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1628), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1628), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1628), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1628), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1628), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1628), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1628), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1628), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1628), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1628), + [aux_sym_host_key_alias_token1] = ACTIONS(1628), + [aux_sym_hostname_token1] = ACTIONS(1628), + [aux_sym_identities_only_token1] = ACTIONS(1628), + [aux_sym_identity_agent_token1] = ACTIONS(1628), + [aux_sym_identity_file_token1] = ACTIONS(1628), + [aux_sym_ignore_unknown_token1] = ACTIONS(1628), + [aux_sym_include_token1] = ACTIONS(1628), + [aux_sym_ip_qos_token1] = ACTIONS(1628), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1628), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1628), + [aux_sym_kex_algorithms_token1] = ACTIONS(1628), + [aux_sym_known_hosts_command_token1] = ACTIONS(1628), + [aux_sym_local_command_token1] = ACTIONS(1628), + [aux_sym_local_forward_token1] = ACTIONS(1628), + [aux_sym_log_level_token1] = ACTIONS(1628), + [aux_sym_log_verbose_token1] = ACTIONS(1628), + [aux_sym_macs_token1] = ACTIONS(1628), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1628), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1628), + [aux_sym_password_authentication_token1] = ACTIONS(1628), + [aux_sym_permit_local_command_token1] = ACTIONS(1628), + [aux_sym_permit_remote_open_token1] = ACTIONS(1628), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1628), + [aux_sym_port_token1] = ACTIONS(1628), + [aux_sym_preferred_authentications_token1] = ACTIONS(1628), + [aux_sym_protocol_token1] = ACTIONS(1628), + [aux_sym_proxy_command_token1] = ACTIONS(1628), + [aux_sym_proxy_jump_token1] = ACTIONS(1628), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1628), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1628), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1628), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1628), + [aux_sym_rekey_limit_token1] = ACTIONS(1628), + [aux_sym_remote_command_token1] = ACTIONS(1628), + [aux_sym_remote_forward_token1] = ACTIONS(1628), + [aux_sym_request_tty_token1] = ACTIONS(1628), + [aux_sym_required_rsa_size_token1] = ACTIONS(1628), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1628), + [aux_sym_security_key_provider_token1] = ACTIONS(1628), + [aux_sym_send_env_token1] = ACTIONS(1628), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1628), + [aux_sym_server_alive_interval_token1] = ACTIONS(1628), + [aux_sym_session_type_token1] = ACTIONS(1628), + [aux_sym_set_env_token1] = ACTIONS(1628), + [aux_sym_stdin_null_token1] = ACTIONS(1628), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1628), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1628), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1628), + [aux_sym_syslog_facility_token1] = ACTIONS(1628), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1628), + [aux_sym_keep_alive_token1] = ACTIONS(1628), + [aux_sym_tunnel_token1] = ACTIONS(1630), + [aux_sym_tunnel_device_token1] = ACTIONS(1628), + [aux_sym_update_host_keys_token1] = ACTIONS(1628), + [aux_sym_use_keychain_token1] = ACTIONS(1628), + [aux_sym_use_roaming_token1] = ACTIONS(1628), + [aux_sym_user_token1] = ACTIONS(1630), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1628), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1628), + [aux_sym_visual_host_key_token1] = ACTIONS(1628), + [aux_sym_xauth_location_token1] = ACTIONS(1628), }, [759] = { - [ts_builtin_sym_end] = ACTIONS(1701), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1703), - [aux_sym_match_token1] = ACTIONS(1701), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1701), - [aux_sym_address_family_token1] = ACTIONS(1701), - [aux_sym_batch_mode_token1] = ACTIONS(1701), - [aux_sym_bind_address_token1] = ACTIONS(1701), - [aux_sym_bind_interface_token1] = ACTIONS(1701), - [aux_sym_canonical_domains_token1] = ACTIONS(1701), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1701), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1701), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1701), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1701), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1701), - [aux_sym_certificate_file_token1] = ACTIONS(1701), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1701), - [aux_sym_check_host_ip_token1] = ACTIONS(1701), - [aux_sym_ciphers_token1] = ACTIONS(1701), - [aux_sym_cipher_token1] = ACTIONS(1703), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1701), - [aux_sym_compression_token1] = ACTIONS(1701), - [aux_sym_connection_attempts_token1] = ACTIONS(1701), - [aux_sym_connect_timeout_token1] = ACTIONS(1701), - [aux_sym_control_master_token1] = ACTIONS(1701), - [aux_sym_control_path_token1] = ACTIONS(1701), - [aux_sym_control_persist_token1] = ACTIONS(1701), - [aux_sym_dynamic_forward_token1] = ACTIONS(1701), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1701), - [aux_sym_escape_char_token1] = ACTIONS(1701), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1701), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1701), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1701), - [aux_sym_forward_agent_token1] = ACTIONS(1701), - [aux_sym_forward_x11_token1] = ACTIONS(1703), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1701), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1701), - [aux_sym_gateway_ports_token1] = ACTIONS(1701), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1701), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1701), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1701), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1701), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1701), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1701), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1701), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1701), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1701), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1701), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1701), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1701), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1701), - [aux_sym_host_key_alias_token1] = ACTIONS(1701), - [aux_sym_hostname_token1] = ACTIONS(1701), - [aux_sym_identities_only_token1] = ACTIONS(1701), - [aux_sym_identity_agent_token1] = ACTIONS(1701), - [aux_sym_identity_file_token1] = ACTIONS(1701), - [aux_sym_ignore_unknown_token1] = ACTIONS(1701), - [aux_sym_include_token1] = ACTIONS(1701), - [aux_sym_ip_qos_token1] = ACTIONS(1701), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1701), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1701), - [aux_sym_kex_algorithms_token1] = ACTIONS(1701), - [aux_sym_known_hosts_command_token1] = ACTIONS(1701), - [aux_sym_local_command_token1] = ACTIONS(1701), - [aux_sym_local_forward_token1] = ACTIONS(1701), - [aux_sym_log_level_token1] = ACTIONS(1701), - [aux_sym_log_verbose_token1] = ACTIONS(1701), - [aux_sym_macs_token1] = ACTIONS(1701), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1701), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1701), - [aux_sym_password_authentication_token1] = ACTIONS(1701), - [aux_sym_permit_local_command_token1] = ACTIONS(1701), - [aux_sym_permit_remote_open_token1] = ACTIONS(1701), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1701), - [aux_sym_port_token1] = ACTIONS(1701), - [aux_sym_preferred_authentications_token1] = ACTIONS(1701), - [aux_sym_protocol_token1] = ACTIONS(1701), - [aux_sym_proxy_command_token1] = ACTIONS(1701), - [aux_sym_proxy_jump_token1] = ACTIONS(1701), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1701), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1701), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1701), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1701), - [aux_sym_rekey_limit_token1] = ACTIONS(1701), - [aux_sym_remote_command_token1] = ACTIONS(1701), - [aux_sym_remote_forward_token1] = ACTIONS(1701), - [aux_sym_request_tty_token1] = ACTIONS(1701), - [aux_sym_required_rsa_size_token1] = ACTIONS(1701), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1701), - [aux_sym_security_key_provider_token1] = ACTIONS(1701), - [aux_sym_send_env_token1] = ACTIONS(1701), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1701), - [aux_sym_server_alive_interval_token1] = ACTIONS(1701), - [aux_sym_session_type_token1] = ACTIONS(1701), - [aux_sym_set_env_token1] = ACTIONS(1701), - [aux_sym_stdin_null_token1] = ACTIONS(1701), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1701), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1701), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1701), - [aux_sym_syslog_facility_token1] = ACTIONS(1701), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1701), - [aux_sym_keep_alive_token1] = ACTIONS(1701), - [aux_sym_tunnel_token1] = ACTIONS(1703), - [aux_sym_tunnel_device_token1] = ACTIONS(1701), - [aux_sym_update_host_keys_token1] = ACTIONS(1701), - [aux_sym_use_keychain_token1] = ACTIONS(1701), - [aux_sym_use_roaming_token1] = ACTIONS(1701), - [aux_sym_user_token1] = ACTIONS(1703), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1701), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1701), - [aux_sym_visual_host_key_token1] = ACTIONS(1701), - [aux_sym_xauth_location_token1] = ACTIONS(1701), + [ts_builtin_sym_end] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1732), + [aux_sym_match_token1] = ACTIONS(1730), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1730), + [aux_sym_address_family_token1] = ACTIONS(1730), + [aux_sym_batch_mode_token1] = ACTIONS(1730), + [aux_sym_bind_address_token1] = ACTIONS(1730), + [aux_sym_bind_interface_token1] = ACTIONS(1730), + [aux_sym_canonical_domains_token1] = ACTIONS(1730), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1730), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1730), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1730), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1730), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1730), + [aux_sym_certificate_file_token1] = ACTIONS(1730), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1730), + [aux_sym_check_host_ip_token1] = ACTIONS(1730), + [aux_sym_ciphers_token1] = ACTIONS(1730), + [aux_sym_cipher_token1] = ACTIONS(1732), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1730), + [aux_sym_compression_token1] = ACTIONS(1730), + [aux_sym_connection_attempts_token1] = ACTIONS(1730), + [aux_sym_connect_timeout_token1] = ACTIONS(1730), + [aux_sym_control_master_token1] = ACTIONS(1730), + [aux_sym_control_path_token1] = ACTIONS(1730), + [aux_sym_control_persist_token1] = ACTIONS(1730), + [aux_sym_dynamic_forward_token1] = ACTIONS(1730), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1730), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1730), + [aux_sym_escape_char_token1] = ACTIONS(1730), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1730), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1730), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1730), + [aux_sym_forward_agent_token1] = ACTIONS(1730), + [aux_sym_forward_x11_token1] = ACTIONS(1732), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1730), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1730), + [aux_sym_gateway_ports_token1] = ACTIONS(1730), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1730), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1730), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1730), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1730), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1730), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1730), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1730), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1730), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1730), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1730), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1730), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1730), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1730), + [aux_sym_host_key_alias_token1] = ACTIONS(1730), + [aux_sym_hostname_token1] = ACTIONS(1730), + [aux_sym_identities_only_token1] = ACTIONS(1730), + [aux_sym_identity_agent_token1] = ACTIONS(1730), + [aux_sym_identity_file_token1] = ACTIONS(1730), + [aux_sym_ignore_unknown_token1] = ACTIONS(1730), + [aux_sym_include_token1] = ACTIONS(1730), + [aux_sym_ip_qos_token1] = ACTIONS(1730), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1730), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1730), + [aux_sym_kex_algorithms_token1] = ACTIONS(1730), + [aux_sym_known_hosts_command_token1] = ACTIONS(1730), + [aux_sym_local_command_token1] = ACTIONS(1730), + [aux_sym_local_forward_token1] = ACTIONS(1730), + [aux_sym_log_level_token1] = ACTIONS(1730), + [aux_sym_log_verbose_token1] = ACTIONS(1730), + [aux_sym_macs_token1] = ACTIONS(1730), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1730), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1730), + [aux_sym_password_authentication_token1] = ACTIONS(1730), + [aux_sym_permit_local_command_token1] = ACTIONS(1730), + [aux_sym_permit_remote_open_token1] = ACTIONS(1730), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1730), + [aux_sym_port_token1] = ACTIONS(1730), + [aux_sym_preferred_authentications_token1] = ACTIONS(1730), + [aux_sym_protocol_token1] = ACTIONS(1730), + [aux_sym_proxy_command_token1] = ACTIONS(1730), + [aux_sym_proxy_jump_token1] = ACTIONS(1730), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1730), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1730), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1730), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1730), + [aux_sym_rekey_limit_token1] = ACTIONS(1730), + [aux_sym_remote_command_token1] = ACTIONS(1730), + [aux_sym_remote_forward_token1] = ACTIONS(1730), + [aux_sym_request_tty_token1] = ACTIONS(1730), + [aux_sym_required_rsa_size_token1] = ACTIONS(1730), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1730), + [aux_sym_security_key_provider_token1] = ACTIONS(1730), + [aux_sym_send_env_token1] = ACTIONS(1730), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1730), + [aux_sym_server_alive_interval_token1] = ACTIONS(1730), + [aux_sym_session_type_token1] = ACTIONS(1730), + [aux_sym_set_env_token1] = ACTIONS(1730), + [aux_sym_stdin_null_token1] = ACTIONS(1730), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1730), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1730), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1730), + [aux_sym_syslog_facility_token1] = ACTIONS(1730), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1730), + [aux_sym_keep_alive_token1] = ACTIONS(1730), + [aux_sym_tunnel_token1] = ACTIONS(1732), + [aux_sym_tunnel_device_token1] = ACTIONS(1730), + [aux_sym_update_host_keys_token1] = ACTIONS(1730), + [aux_sym_use_keychain_token1] = ACTIONS(1730), + [aux_sym_use_roaming_token1] = ACTIONS(1730), + [aux_sym_user_token1] = ACTIONS(1732), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1730), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1730), + [aux_sym_visual_host_key_token1] = ACTIONS(1730), + [aux_sym_xauth_location_token1] = ACTIONS(1730), }, [760] = { - [ts_builtin_sym_end] = ACTIONS(1503), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1505), - [aux_sym_match_token1] = ACTIONS(1503), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1503), - [aux_sym_address_family_token1] = ACTIONS(1503), - [aux_sym_batch_mode_token1] = ACTIONS(1503), - [aux_sym_bind_address_token1] = ACTIONS(1503), - [aux_sym_bind_interface_token1] = ACTIONS(1503), - [aux_sym_canonical_domains_token1] = ACTIONS(1503), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1503), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1503), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1503), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1503), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1503), - [aux_sym_certificate_file_token1] = ACTIONS(1503), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1503), - [aux_sym_check_host_ip_token1] = ACTIONS(1503), - [aux_sym_ciphers_token1] = ACTIONS(1503), - [aux_sym_cipher_token1] = ACTIONS(1505), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1503), - [aux_sym_compression_token1] = ACTIONS(1503), - [aux_sym_connection_attempts_token1] = ACTIONS(1503), - [aux_sym_connect_timeout_token1] = ACTIONS(1503), - [aux_sym_control_master_token1] = ACTIONS(1503), - [aux_sym_control_path_token1] = ACTIONS(1503), - [aux_sym_control_persist_token1] = ACTIONS(1503), - [aux_sym_dynamic_forward_token1] = ACTIONS(1503), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1503), - [aux_sym_escape_char_token1] = ACTIONS(1503), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1503), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1503), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1503), - [aux_sym_forward_agent_token1] = ACTIONS(1503), - [aux_sym_forward_x11_token1] = ACTIONS(1505), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1503), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1503), - [aux_sym_gateway_ports_token1] = ACTIONS(1503), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1503), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1503), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1503), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1503), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1503), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1503), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1503), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1503), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1503), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1503), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1503), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1503), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1503), - [aux_sym_host_key_alias_token1] = ACTIONS(1503), - [aux_sym_hostname_token1] = ACTIONS(1503), - [aux_sym_identities_only_token1] = ACTIONS(1503), - [aux_sym_identity_agent_token1] = ACTIONS(1503), - [aux_sym_identity_file_token1] = ACTIONS(1503), - [aux_sym_ignore_unknown_token1] = ACTIONS(1503), - [aux_sym_include_token1] = ACTIONS(1503), - [aux_sym_ip_qos_token1] = ACTIONS(1503), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1503), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1503), - [aux_sym_kex_algorithms_token1] = ACTIONS(1503), - [aux_sym_known_hosts_command_token1] = ACTIONS(1503), - [aux_sym_local_command_token1] = ACTIONS(1503), - [aux_sym_local_forward_token1] = ACTIONS(1503), - [aux_sym_log_level_token1] = ACTIONS(1503), - [aux_sym_log_verbose_token1] = ACTIONS(1503), - [aux_sym_macs_token1] = ACTIONS(1503), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1503), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1503), - [aux_sym_password_authentication_token1] = ACTIONS(1503), - [aux_sym_permit_local_command_token1] = ACTIONS(1503), - [aux_sym_permit_remote_open_token1] = ACTIONS(1503), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1503), - [aux_sym_port_token1] = ACTIONS(1503), - [aux_sym_preferred_authentications_token1] = ACTIONS(1503), - [aux_sym_protocol_token1] = ACTIONS(1503), - [aux_sym_proxy_command_token1] = ACTIONS(1503), - [aux_sym_proxy_jump_token1] = ACTIONS(1503), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1503), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1503), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1503), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1503), - [aux_sym_rekey_limit_token1] = ACTIONS(1503), - [aux_sym_remote_command_token1] = ACTIONS(1503), - [aux_sym_remote_forward_token1] = ACTIONS(1503), - [aux_sym_request_tty_token1] = ACTIONS(1503), - [aux_sym_required_rsa_size_token1] = ACTIONS(1503), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1503), - [aux_sym_security_key_provider_token1] = ACTIONS(1503), - [aux_sym_send_env_token1] = ACTIONS(1503), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1503), - [aux_sym_server_alive_interval_token1] = ACTIONS(1503), - [aux_sym_session_type_token1] = ACTIONS(1503), - [aux_sym_set_env_token1] = ACTIONS(1503), - [aux_sym_stdin_null_token1] = ACTIONS(1503), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1503), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1503), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1503), - [aux_sym_syslog_facility_token1] = ACTIONS(1503), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1503), - [aux_sym_keep_alive_token1] = ACTIONS(1503), - [aux_sym_tunnel_token1] = ACTIONS(1505), - [aux_sym_tunnel_device_token1] = ACTIONS(1503), - [aux_sym_update_host_keys_token1] = ACTIONS(1503), - [aux_sym_use_keychain_token1] = ACTIONS(1503), - [aux_sym_use_roaming_token1] = ACTIONS(1503), - [aux_sym_user_token1] = ACTIONS(1505), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1503), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1503), - [aux_sym_visual_host_key_token1] = ACTIONS(1503), - [aux_sym_xauth_location_token1] = ACTIONS(1503), + [ts_builtin_sym_end] = ACTIONS(758), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(760), + [aux_sym_match_token1] = ACTIONS(758), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(758), + [aux_sym_address_family_token1] = ACTIONS(758), + [aux_sym_batch_mode_token1] = ACTIONS(758), + [aux_sym_bind_address_token1] = ACTIONS(758), + [aux_sym_bind_interface_token1] = ACTIONS(758), + [aux_sym_canonical_domains_token1] = ACTIONS(758), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(758), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(758), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(758), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(758), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(758), + [aux_sym_certificate_file_token1] = ACTIONS(758), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(758), + [aux_sym_check_host_ip_token1] = ACTIONS(758), + [aux_sym_ciphers_token1] = ACTIONS(758), + [aux_sym_cipher_token1] = ACTIONS(760), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(758), + [aux_sym_compression_token1] = ACTIONS(758), + [aux_sym_connection_attempts_token1] = ACTIONS(758), + [aux_sym_connect_timeout_token1] = ACTIONS(758), + [aux_sym_control_master_token1] = ACTIONS(758), + [aux_sym_control_path_token1] = ACTIONS(758), + [aux_sym_control_persist_token1] = ACTIONS(758), + [aux_sym_dynamic_forward_token1] = ACTIONS(758), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(758), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(758), + [aux_sym_escape_char_token1] = ACTIONS(758), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(758), + [aux_sym_fingerprint_hash_token1] = ACTIONS(758), + [aux_sym_fork_after_authentication_token1] = ACTIONS(758), + [aux_sym_forward_agent_token1] = ACTIONS(758), + [aux_sym_forward_x11_token1] = ACTIONS(760), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(758), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(758), + [aux_sym_gateway_ports_token1] = ACTIONS(758), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(758), + [aux_sym_gssapi_authentication_token1] = ACTIONS(758), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(758), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(758), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(758), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(758), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(758), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(758), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(758), + [aux_sym_hash_known_hosts_token1] = ACTIONS(758), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(758), + [aux_sym_hostbased_authentication_token1] = ACTIONS(758), + [aux_sym_host_key_algorithms_token1] = ACTIONS(758), + [aux_sym_host_key_alias_token1] = ACTIONS(758), + [aux_sym_hostname_token1] = ACTIONS(758), + [aux_sym_identities_only_token1] = ACTIONS(758), + [aux_sym_identity_agent_token1] = ACTIONS(758), + [aux_sym_identity_file_token1] = ACTIONS(758), + [aux_sym_ignore_unknown_token1] = ACTIONS(758), + [aux_sym_include_token1] = ACTIONS(758), + [aux_sym_ip_qos_token1] = ACTIONS(758), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(758), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(758), + [aux_sym_kex_algorithms_token1] = ACTIONS(758), + [aux_sym_known_hosts_command_token1] = ACTIONS(758), + [aux_sym_local_command_token1] = ACTIONS(758), + [aux_sym_local_forward_token1] = ACTIONS(758), + [aux_sym_log_level_token1] = ACTIONS(758), + [aux_sym_log_verbose_token1] = ACTIONS(758), + [aux_sym_macs_token1] = ACTIONS(758), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(758), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(758), + [aux_sym_password_authentication_token1] = ACTIONS(758), + [aux_sym_permit_local_command_token1] = ACTIONS(758), + [aux_sym_permit_remote_open_token1] = ACTIONS(758), + [aux_sym_pkcs11_provider_token1] = ACTIONS(758), + [aux_sym_port_token1] = ACTIONS(758), + [aux_sym_preferred_authentications_token1] = ACTIONS(758), + [aux_sym_protocol_token1] = ACTIONS(758), + [aux_sym_proxy_command_token1] = ACTIONS(758), + [aux_sym_proxy_jump_token1] = ACTIONS(758), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(758), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(758), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(758), + [aux_sym_pubkey_authentication_token1] = ACTIONS(758), + [aux_sym_rekey_limit_token1] = ACTIONS(758), + [aux_sym_remote_command_token1] = ACTIONS(758), + [aux_sym_remote_forward_token1] = ACTIONS(758), + [aux_sym_request_tty_token1] = ACTIONS(758), + [aux_sym_required_rsa_size_token1] = ACTIONS(758), + [aux_sym_revoked_host_keys_token1] = ACTIONS(758), + [aux_sym_security_key_provider_token1] = ACTIONS(758), + [aux_sym_send_env_token1] = ACTIONS(758), + [aux_sym_server_alive_count_max_token1] = ACTIONS(758), + [aux_sym_server_alive_interval_token1] = ACTIONS(758), + [aux_sym_session_type_token1] = ACTIONS(758), + [aux_sym_set_env_token1] = ACTIONS(758), + [aux_sym_stdin_null_token1] = ACTIONS(758), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(758), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(758), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(758), + [aux_sym_syslog_facility_token1] = ACTIONS(758), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(758), + [aux_sym_keep_alive_token1] = ACTIONS(758), + [aux_sym_tunnel_token1] = ACTIONS(760), + [aux_sym_tunnel_device_token1] = ACTIONS(758), + [aux_sym_update_host_keys_token1] = ACTIONS(758), + [aux_sym_use_keychain_token1] = ACTIONS(758), + [aux_sym_use_roaming_token1] = ACTIONS(758), + [aux_sym_user_token1] = ACTIONS(760), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(758), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(758), + [aux_sym_visual_host_key_token1] = ACTIONS(758), + [aux_sym_xauth_location_token1] = ACTIONS(758), }, [761] = { - [ts_builtin_sym_end] = ACTIONS(1665), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1667), - [aux_sym_match_token1] = ACTIONS(1665), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1665), - [aux_sym_address_family_token1] = ACTIONS(1665), - [aux_sym_batch_mode_token1] = ACTIONS(1665), - [aux_sym_bind_address_token1] = ACTIONS(1665), - [aux_sym_bind_interface_token1] = ACTIONS(1665), - [aux_sym_canonical_domains_token1] = ACTIONS(1665), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1665), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1665), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1665), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1665), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1665), - [aux_sym_certificate_file_token1] = ACTIONS(1665), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1665), - [aux_sym_check_host_ip_token1] = ACTIONS(1665), - [aux_sym_ciphers_token1] = ACTIONS(1665), - [aux_sym_cipher_token1] = ACTIONS(1667), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1665), - [aux_sym_compression_token1] = ACTIONS(1665), - [aux_sym_connection_attempts_token1] = ACTIONS(1665), - [aux_sym_connect_timeout_token1] = ACTIONS(1665), - [aux_sym_control_master_token1] = ACTIONS(1665), - [aux_sym_control_path_token1] = ACTIONS(1665), - [aux_sym_control_persist_token1] = ACTIONS(1665), - [aux_sym_dynamic_forward_token1] = ACTIONS(1665), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1665), - [aux_sym_escape_char_token1] = ACTIONS(1665), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1665), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1665), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1665), - [aux_sym_forward_agent_token1] = ACTIONS(1665), - [aux_sym_forward_x11_token1] = ACTIONS(1667), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1665), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1665), - [aux_sym_gateway_ports_token1] = ACTIONS(1665), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1665), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1665), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1665), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1665), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1665), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1665), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1665), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1665), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1665), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1665), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1665), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1665), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1665), - [aux_sym_host_key_alias_token1] = ACTIONS(1665), - [aux_sym_hostname_token1] = ACTIONS(1665), - [aux_sym_identities_only_token1] = ACTIONS(1665), - [aux_sym_identity_agent_token1] = ACTIONS(1665), - [aux_sym_identity_file_token1] = ACTIONS(1665), - [aux_sym_ignore_unknown_token1] = ACTIONS(1665), - [aux_sym_include_token1] = ACTIONS(1665), - [aux_sym_ip_qos_token1] = ACTIONS(1665), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1665), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1665), - [aux_sym_kex_algorithms_token1] = ACTIONS(1665), - [aux_sym_known_hosts_command_token1] = ACTIONS(1665), - [aux_sym_local_command_token1] = ACTIONS(1665), - [aux_sym_local_forward_token1] = ACTIONS(1665), - [aux_sym_log_level_token1] = ACTIONS(1665), - [aux_sym_log_verbose_token1] = ACTIONS(1665), - [aux_sym_macs_token1] = ACTIONS(1665), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1665), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1665), - [aux_sym_password_authentication_token1] = ACTIONS(1665), - [aux_sym_permit_local_command_token1] = ACTIONS(1665), - [aux_sym_permit_remote_open_token1] = ACTIONS(1665), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1665), - [aux_sym_port_token1] = ACTIONS(1665), - [aux_sym_preferred_authentications_token1] = ACTIONS(1665), - [aux_sym_protocol_token1] = ACTIONS(1665), - [aux_sym_proxy_command_token1] = ACTIONS(1665), - [aux_sym_proxy_jump_token1] = ACTIONS(1665), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1665), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1665), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1665), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1665), - [aux_sym_rekey_limit_token1] = ACTIONS(1665), - [aux_sym_remote_command_token1] = ACTIONS(1665), - [aux_sym_remote_forward_token1] = ACTIONS(1665), - [aux_sym_request_tty_token1] = ACTIONS(1665), - [aux_sym_required_rsa_size_token1] = ACTIONS(1665), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1665), - [aux_sym_security_key_provider_token1] = ACTIONS(1665), - [aux_sym_send_env_token1] = ACTIONS(1665), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1665), - [aux_sym_server_alive_interval_token1] = ACTIONS(1665), - [aux_sym_session_type_token1] = ACTIONS(1665), - [aux_sym_set_env_token1] = ACTIONS(1665), - [aux_sym_stdin_null_token1] = ACTIONS(1665), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1665), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1665), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1665), - [aux_sym_syslog_facility_token1] = ACTIONS(1665), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1665), - [aux_sym_keep_alive_token1] = ACTIONS(1665), - [aux_sym_tunnel_token1] = ACTIONS(1667), - [aux_sym_tunnel_device_token1] = ACTIONS(1665), - [aux_sym_update_host_keys_token1] = ACTIONS(1665), - [aux_sym_use_keychain_token1] = ACTIONS(1665), - [aux_sym_use_roaming_token1] = ACTIONS(1665), - [aux_sym_user_token1] = ACTIONS(1667), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1665), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1665), - [aux_sym_visual_host_key_token1] = ACTIONS(1665), - [aux_sym_xauth_location_token1] = ACTIONS(1665), + [ts_builtin_sym_end] = ACTIONS(1634), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1636), + [aux_sym_match_token1] = ACTIONS(1634), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1634), + [aux_sym_address_family_token1] = ACTIONS(1634), + [aux_sym_batch_mode_token1] = ACTIONS(1634), + [aux_sym_bind_address_token1] = ACTIONS(1634), + [aux_sym_bind_interface_token1] = ACTIONS(1634), + [aux_sym_canonical_domains_token1] = ACTIONS(1634), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1634), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1634), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1634), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1634), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1634), + [aux_sym_certificate_file_token1] = ACTIONS(1634), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1634), + [aux_sym_check_host_ip_token1] = ACTIONS(1634), + [aux_sym_ciphers_token1] = ACTIONS(1634), + [aux_sym_cipher_token1] = ACTIONS(1636), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1634), + [aux_sym_compression_token1] = ACTIONS(1634), + [aux_sym_connection_attempts_token1] = ACTIONS(1634), + [aux_sym_connect_timeout_token1] = ACTIONS(1634), + [aux_sym_control_master_token1] = ACTIONS(1634), + [aux_sym_control_path_token1] = ACTIONS(1634), + [aux_sym_control_persist_token1] = ACTIONS(1634), + [aux_sym_dynamic_forward_token1] = ACTIONS(1634), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1634), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1634), + [aux_sym_escape_char_token1] = ACTIONS(1634), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1634), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1634), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1634), + [aux_sym_forward_agent_token1] = ACTIONS(1634), + [aux_sym_forward_x11_token1] = ACTIONS(1636), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1634), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1634), + [aux_sym_gateway_ports_token1] = ACTIONS(1634), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1634), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1634), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1634), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1634), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1634), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1634), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1634), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1634), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1634), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1634), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1634), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1634), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1634), + [aux_sym_host_key_alias_token1] = ACTIONS(1634), + [aux_sym_hostname_token1] = ACTIONS(1634), + [aux_sym_identities_only_token1] = ACTIONS(1634), + [aux_sym_identity_agent_token1] = ACTIONS(1634), + [aux_sym_identity_file_token1] = ACTIONS(1634), + [aux_sym_ignore_unknown_token1] = ACTIONS(1634), + [aux_sym_include_token1] = ACTIONS(1634), + [aux_sym_ip_qos_token1] = ACTIONS(1634), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1634), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1634), + [aux_sym_kex_algorithms_token1] = ACTIONS(1634), + [aux_sym_known_hosts_command_token1] = ACTIONS(1634), + [aux_sym_local_command_token1] = ACTIONS(1634), + [aux_sym_local_forward_token1] = ACTIONS(1634), + [aux_sym_log_level_token1] = ACTIONS(1634), + [aux_sym_log_verbose_token1] = ACTIONS(1634), + [aux_sym_macs_token1] = ACTIONS(1634), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1634), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1634), + [aux_sym_password_authentication_token1] = ACTIONS(1634), + [aux_sym_permit_local_command_token1] = ACTIONS(1634), + [aux_sym_permit_remote_open_token1] = ACTIONS(1634), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1634), + [aux_sym_port_token1] = ACTIONS(1634), + [aux_sym_preferred_authentications_token1] = ACTIONS(1634), + [aux_sym_protocol_token1] = ACTIONS(1634), + [aux_sym_proxy_command_token1] = ACTIONS(1634), + [aux_sym_proxy_jump_token1] = ACTIONS(1634), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1634), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1634), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1634), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1634), + [aux_sym_rekey_limit_token1] = ACTIONS(1634), + [aux_sym_remote_command_token1] = ACTIONS(1634), + [aux_sym_remote_forward_token1] = ACTIONS(1634), + [aux_sym_request_tty_token1] = ACTIONS(1634), + [aux_sym_required_rsa_size_token1] = ACTIONS(1634), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1634), + [aux_sym_security_key_provider_token1] = ACTIONS(1634), + [aux_sym_send_env_token1] = ACTIONS(1634), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1634), + [aux_sym_server_alive_interval_token1] = ACTIONS(1634), + [aux_sym_session_type_token1] = ACTIONS(1634), + [aux_sym_set_env_token1] = ACTIONS(1634), + [aux_sym_stdin_null_token1] = ACTIONS(1634), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1634), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1634), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1634), + [aux_sym_syslog_facility_token1] = ACTIONS(1634), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1634), + [aux_sym_keep_alive_token1] = ACTIONS(1634), + [aux_sym_tunnel_token1] = ACTIONS(1636), + [aux_sym_tunnel_device_token1] = ACTIONS(1634), + [aux_sym_update_host_keys_token1] = ACTIONS(1634), + [aux_sym_use_keychain_token1] = ACTIONS(1634), + [aux_sym_use_roaming_token1] = ACTIONS(1634), + [aux_sym_user_token1] = ACTIONS(1636), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1634), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1634), + [aux_sym_visual_host_key_token1] = ACTIONS(1634), + [aux_sym_xauth_location_token1] = ACTIONS(1634), }, [762] = { - [ts_builtin_sym_end] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1697), - [aux_sym_match_token1] = ACTIONS(1695), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1695), - [aux_sym_address_family_token1] = ACTIONS(1695), - [aux_sym_batch_mode_token1] = ACTIONS(1695), - [aux_sym_bind_address_token1] = ACTIONS(1695), - [aux_sym_bind_interface_token1] = ACTIONS(1695), - [aux_sym_canonical_domains_token1] = ACTIONS(1695), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1695), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1695), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1695), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1695), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1695), - [aux_sym_certificate_file_token1] = ACTIONS(1695), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1695), - [aux_sym_check_host_ip_token1] = ACTIONS(1695), - [aux_sym_ciphers_token1] = ACTIONS(1695), - [aux_sym_cipher_token1] = ACTIONS(1697), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1695), - [aux_sym_compression_token1] = ACTIONS(1695), - [aux_sym_connection_attempts_token1] = ACTIONS(1695), - [aux_sym_connect_timeout_token1] = ACTIONS(1695), - [aux_sym_control_master_token1] = ACTIONS(1695), - [aux_sym_control_path_token1] = ACTIONS(1695), - [aux_sym_control_persist_token1] = ACTIONS(1695), - [aux_sym_dynamic_forward_token1] = ACTIONS(1695), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1695), - [aux_sym_escape_char_token1] = ACTIONS(1695), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1695), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1695), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1695), - [aux_sym_forward_agent_token1] = ACTIONS(1695), - [aux_sym_forward_x11_token1] = ACTIONS(1697), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1695), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1695), - [aux_sym_gateway_ports_token1] = ACTIONS(1695), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1695), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1695), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1695), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1695), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1695), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1695), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1695), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1695), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1695), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1695), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1695), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1695), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1695), - [aux_sym_host_key_alias_token1] = ACTIONS(1695), - [aux_sym_hostname_token1] = ACTIONS(1695), - [aux_sym_identities_only_token1] = ACTIONS(1695), - [aux_sym_identity_agent_token1] = ACTIONS(1695), - [aux_sym_identity_file_token1] = ACTIONS(1695), - [aux_sym_ignore_unknown_token1] = ACTIONS(1695), - [aux_sym_include_token1] = ACTIONS(1695), - [aux_sym_ip_qos_token1] = ACTIONS(1695), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1695), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1695), - [aux_sym_kex_algorithms_token1] = ACTIONS(1695), - [aux_sym_known_hosts_command_token1] = ACTIONS(1695), - [aux_sym_local_command_token1] = ACTIONS(1695), - [aux_sym_local_forward_token1] = ACTIONS(1695), - [aux_sym_log_level_token1] = ACTIONS(1695), - [aux_sym_log_verbose_token1] = ACTIONS(1695), - [aux_sym_macs_token1] = ACTIONS(1695), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1695), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1695), - [aux_sym_password_authentication_token1] = ACTIONS(1695), - [aux_sym_permit_local_command_token1] = ACTIONS(1695), - [aux_sym_permit_remote_open_token1] = ACTIONS(1695), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1695), - [aux_sym_port_token1] = ACTIONS(1695), - [aux_sym_preferred_authentications_token1] = ACTIONS(1695), - [aux_sym_protocol_token1] = ACTIONS(1695), - [aux_sym_proxy_command_token1] = ACTIONS(1695), - [aux_sym_proxy_jump_token1] = ACTIONS(1695), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1695), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1695), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1695), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1695), - [aux_sym_rekey_limit_token1] = ACTIONS(1695), - [aux_sym_remote_command_token1] = ACTIONS(1695), - [aux_sym_remote_forward_token1] = ACTIONS(1695), - [aux_sym_request_tty_token1] = ACTIONS(1695), - [aux_sym_required_rsa_size_token1] = ACTIONS(1695), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1695), - [aux_sym_security_key_provider_token1] = ACTIONS(1695), - [aux_sym_send_env_token1] = ACTIONS(1695), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1695), - [aux_sym_server_alive_interval_token1] = ACTIONS(1695), - [aux_sym_session_type_token1] = ACTIONS(1695), - [aux_sym_set_env_token1] = ACTIONS(1695), - [aux_sym_stdin_null_token1] = ACTIONS(1695), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1695), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1695), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1695), - [aux_sym_syslog_facility_token1] = ACTIONS(1695), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1695), - [aux_sym_keep_alive_token1] = ACTIONS(1695), - [aux_sym_tunnel_token1] = ACTIONS(1697), - [aux_sym_tunnel_device_token1] = ACTIONS(1695), - [aux_sym_update_host_keys_token1] = ACTIONS(1695), - [aux_sym_use_keychain_token1] = ACTIONS(1695), - [aux_sym_use_roaming_token1] = ACTIONS(1695), - [aux_sym_user_token1] = ACTIONS(1697), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1695), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1695), - [aux_sym_visual_host_key_token1] = ACTIONS(1695), - [aux_sym_xauth_location_token1] = ACTIONS(1695), + [ts_builtin_sym_end] = ACTIONS(1724), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1726), + [aux_sym_match_token1] = ACTIONS(1724), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1724), + [aux_sym_address_family_token1] = ACTIONS(1724), + [aux_sym_batch_mode_token1] = ACTIONS(1724), + [aux_sym_bind_address_token1] = ACTIONS(1724), + [aux_sym_bind_interface_token1] = ACTIONS(1724), + [aux_sym_canonical_domains_token1] = ACTIONS(1724), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1724), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1724), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1724), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1724), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1724), + [aux_sym_certificate_file_token1] = ACTIONS(1724), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1724), + [aux_sym_check_host_ip_token1] = ACTIONS(1724), + [aux_sym_ciphers_token1] = ACTIONS(1724), + [aux_sym_cipher_token1] = ACTIONS(1726), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1724), + [aux_sym_compression_token1] = ACTIONS(1724), + [aux_sym_connection_attempts_token1] = ACTIONS(1724), + [aux_sym_connect_timeout_token1] = ACTIONS(1724), + [aux_sym_control_master_token1] = ACTIONS(1724), + [aux_sym_control_path_token1] = ACTIONS(1724), + [aux_sym_control_persist_token1] = ACTIONS(1724), + [aux_sym_dynamic_forward_token1] = ACTIONS(1724), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1724), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1724), + [aux_sym_escape_char_token1] = ACTIONS(1724), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1724), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1724), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1724), + [aux_sym_forward_agent_token1] = ACTIONS(1724), + [aux_sym_forward_x11_token1] = ACTIONS(1726), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1724), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1724), + [aux_sym_gateway_ports_token1] = ACTIONS(1724), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1724), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1724), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1724), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1724), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1724), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1724), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1724), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1724), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1724), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1724), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1724), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1724), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1724), + [aux_sym_host_key_alias_token1] = ACTIONS(1724), + [aux_sym_hostname_token1] = ACTIONS(1724), + [aux_sym_identities_only_token1] = ACTIONS(1724), + [aux_sym_identity_agent_token1] = ACTIONS(1724), + [aux_sym_identity_file_token1] = ACTIONS(1724), + [aux_sym_ignore_unknown_token1] = ACTIONS(1724), + [aux_sym_include_token1] = ACTIONS(1724), + [aux_sym_ip_qos_token1] = ACTIONS(1724), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1724), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1724), + [aux_sym_kex_algorithms_token1] = ACTIONS(1724), + [aux_sym_known_hosts_command_token1] = ACTIONS(1724), + [aux_sym_local_command_token1] = ACTIONS(1724), + [aux_sym_local_forward_token1] = ACTIONS(1724), + [aux_sym_log_level_token1] = ACTIONS(1724), + [aux_sym_log_verbose_token1] = ACTIONS(1724), + [aux_sym_macs_token1] = ACTIONS(1724), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1724), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1724), + [aux_sym_password_authentication_token1] = ACTIONS(1724), + [aux_sym_permit_local_command_token1] = ACTIONS(1724), + [aux_sym_permit_remote_open_token1] = ACTIONS(1724), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1724), + [aux_sym_port_token1] = ACTIONS(1724), + [aux_sym_preferred_authentications_token1] = ACTIONS(1724), + [aux_sym_protocol_token1] = ACTIONS(1724), + [aux_sym_proxy_command_token1] = ACTIONS(1724), + [aux_sym_proxy_jump_token1] = ACTIONS(1724), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1724), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1724), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1724), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1724), + [aux_sym_rekey_limit_token1] = ACTIONS(1724), + [aux_sym_remote_command_token1] = ACTIONS(1724), + [aux_sym_remote_forward_token1] = ACTIONS(1724), + [aux_sym_request_tty_token1] = ACTIONS(1724), + [aux_sym_required_rsa_size_token1] = ACTIONS(1724), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1724), + [aux_sym_security_key_provider_token1] = ACTIONS(1724), + [aux_sym_send_env_token1] = ACTIONS(1724), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1724), + [aux_sym_server_alive_interval_token1] = ACTIONS(1724), + [aux_sym_session_type_token1] = ACTIONS(1724), + [aux_sym_set_env_token1] = ACTIONS(1724), + [aux_sym_stdin_null_token1] = ACTIONS(1724), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1724), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1724), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1724), + [aux_sym_syslog_facility_token1] = ACTIONS(1724), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1724), + [aux_sym_keep_alive_token1] = ACTIONS(1724), + [aux_sym_tunnel_token1] = ACTIONS(1726), + [aux_sym_tunnel_device_token1] = ACTIONS(1724), + [aux_sym_update_host_keys_token1] = ACTIONS(1724), + [aux_sym_use_keychain_token1] = ACTIONS(1724), + [aux_sym_use_roaming_token1] = ACTIONS(1724), + [aux_sym_user_token1] = ACTIONS(1726), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1724), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1724), + [aux_sym_visual_host_key_token1] = ACTIONS(1724), + [aux_sym_xauth_location_token1] = ACTIONS(1724), }, [763] = { - [ts_builtin_sym_end] = ACTIONS(1509), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1511), - [aux_sym_match_token1] = ACTIONS(1509), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1509), - [aux_sym_address_family_token1] = ACTIONS(1509), - [aux_sym_batch_mode_token1] = ACTIONS(1509), - [aux_sym_bind_address_token1] = ACTIONS(1509), - [aux_sym_bind_interface_token1] = ACTIONS(1509), - [aux_sym_canonical_domains_token1] = ACTIONS(1509), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1509), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1509), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1509), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1509), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1509), - [aux_sym_certificate_file_token1] = ACTIONS(1509), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1509), - [aux_sym_check_host_ip_token1] = ACTIONS(1509), - [aux_sym_ciphers_token1] = ACTIONS(1509), - [aux_sym_cipher_token1] = ACTIONS(1511), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1509), - [aux_sym_compression_token1] = ACTIONS(1509), - [aux_sym_connection_attempts_token1] = ACTIONS(1509), - [aux_sym_connect_timeout_token1] = ACTIONS(1509), - [aux_sym_control_master_token1] = ACTIONS(1509), - [aux_sym_control_path_token1] = ACTIONS(1509), - [aux_sym_control_persist_token1] = ACTIONS(1509), - [aux_sym_dynamic_forward_token1] = ACTIONS(1509), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1509), - [aux_sym_escape_char_token1] = ACTIONS(1509), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1509), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1509), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1509), - [aux_sym_forward_agent_token1] = ACTIONS(1509), - [aux_sym_forward_x11_token1] = ACTIONS(1511), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1509), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1509), - [aux_sym_gateway_ports_token1] = ACTIONS(1509), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1509), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1509), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1509), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1509), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1509), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1509), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1509), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1509), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1509), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1509), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1509), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1509), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1509), - [aux_sym_host_key_alias_token1] = ACTIONS(1509), - [aux_sym_hostname_token1] = ACTIONS(1509), - [aux_sym_identities_only_token1] = ACTIONS(1509), - [aux_sym_identity_agent_token1] = ACTIONS(1509), - [aux_sym_identity_file_token1] = ACTIONS(1509), - [aux_sym_ignore_unknown_token1] = ACTIONS(1509), - [aux_sym_include_token1] = ACTIONS(1509), - [aux_sym_ip_qos_token1] = ACTIONS(1509), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1509), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1509), - [aux_sym_kex_algorithms_token1] = ACTIONS(1509), - [aux_sym_known_hosts_command_token1] = ACTIONS(1509), - [aux_sym_local_command_token1] = ACTIONS(1509), - [aux_sym_local_forward_token1] = ACTIONS(1509), - [aux_sym_log_level_token1] = ACTIONS(1509), - [aux_sym_log_verbose_token1] = ACTIONS(1509), - [aux_sym_macs_token1] = ACTIONS(1509), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1509), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1509), - [aux_sym_password_authentication_token1] = ACTIONS(1509), - [aux_sym_permit_local_command_token1] = ACTIONS(1509), - [aux_sym_permit_remote_open_token1] = ACTIONS(1509), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1509), - [aux_sym_port_token1] = ACTIONS(1509), - [aux_sym_preferred_authentications_token1] = ACTIONS(1509), - [aux_sym_protocol_token1] = ACTIONS(1509), - [aux_sym_proxy_command_token1] = ACTIONS(1509), - [aux_sym_proxy_jump_token1] = ACTIONS(1509), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1509), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1509), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1509), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1509), - [aux_sym_rekey_limit_token1] = ACTIONS(1509), - [aux_sym_remote_command_token1] = ACTIONS(1509), - [aux_sym_remote_forward_token1] = ACTIONS(1509), - [aux_sym_request_tty_token1] = ACTIONS(1509), - [aux_sym_required_rsa_size_token1] = ACTIONS(1509), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1509), - [aux_sym_security_key_provider_token1] = ACTIONS(1509), - [aux_sym_send_env_token1] = ACTIONS(1509), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1509), - [aux_sym_server_alive_interval_token1] = ACTIONS(1509), - [aux_sym_session_type_token1] = ACTIONS(1509), - [aux_sym_set_env_token1] = ACTIONS(1509), - [aux_sym_stdin_null_token1] = ACTIONS(1509), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1509), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1509), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1509), - [aux_sym_syslog_facility_token1] = ACTIONS(1509), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1509), - [aux_sym_keep_alive_token1] = ACTIONS(1509), - [aux_sym_tunnel_token1] = ACTIONS(1511), - [aux_sym_tunnel_device_token1] = ACTIONS(1509), - [aux_sym_update_host_keys_token1] = ACTIONS(1509), - [aux_sym_use_keychain_token1] = ACTIONS(1509), - [aux_sym_use_roaming_token1] = ACTIONS(1509), - [aux_sym_user_token1] = ACTIONS(1511), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1509), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1509), - [aux_sym_visual_host_key_token1] = ACTIONS(1509), - [aux_sym_xauth_location_token1] = ACTIONS(1509), + [ts_builtin_sym_end] = ACTIONS(722), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(724), + [aux_sym_match_token1] = ACTIONS(722), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(722), + [aux_sym_address_family_token1] = ACTIONS(722), + [aux_sym_batch_mode_token1] = ACTIONS(722), + [aux_sym_bind_address_token1] = ACTIONS(722), + [aux_sym_bind_interface_token1] = ACTIONS(722), + [aux_sym_canonical_domains_token1] = ACTIONS(722), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(722), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(722), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(722), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(722), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(722), + [aux_sym_certificate_file_token1] = ACTIONS(722), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(722), + [aux_sym_check_host_ip_token1] = ACTIONS(722), + [aux_sym_ciphers_token1] = ACTIONS(722), + [aux_sym_cipher_token1] = ACTIONS(724), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(722), + [aux_sym_compression_token1] = ACTIONS(722), + [aux_sym_connection_attempts_token1] = ACTIONS(722), + [aux_sym_connect_timeout_token1] = ACTIONS(722), + [aux_sym_control_master_token1] = ACTIONS(722), + [aux_sym_control_path_token1] = ACTIONS(722), + [aux_sym_control_persist_token1] = ACTIONS(722), + [aux_sym_dynamic_forward_token1] = ACTIONS(722), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(722), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(722), + [aux_sym_escape_char_token1] = ACTIONS(722), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(722), + [aux_sym_fingerprint_hash_token1] = ACTIONS(722), + [aux_sym_fork_after_authentication_token1] = ACTIONS(722), + [aux_sym_forward_agent_token1] = ACTIONS(722), + [aux_sym_forward_x11_token1] = ACTIONS(724), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(722), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(722), + [aux_sym_gateway_ports_token1] = ACTIONS(722), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(722), + [aux_sym_gssapi_authentication_token1] = ACTIONS(722), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(722), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(722), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(722), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(722), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(722), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(722), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(722), + [aux_sym_hash_known_hosts_token1] = ACTIONS(722), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(722), + [aux_sym_hostbased_authentication_token1] = ACTIONS(722), + [aux_sym_host_key_algorithms_token1] = ACTIONS(722), + [aux_sym_host_key_alias_token1] = ACTIONS(722), + [aux_sym_hostname_token1] = ACTIONS(722), + [aux_sym_identities_only_token1] = ACTIONS(722), + [aux_sym_identity_agent_token1] = ACTIONS(722), + [aux_sym_identity_file_token1] = ACTIONS(722), + [aux_sym_ignore_unknown_token1] = ACTIONS(722), + [aux_sym_include_token1] = ACTIONS(722), + [aux_sym_ip_qos_token1] = ACTIONS(722), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(722), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(722), + [aux_sym_kex_algorithms_token1] = ACTIONS(722), + [aux_sym_known_hosts_command_token1] = ACTIONS(722), + [aux_sym_local_command_token1] = ACTIONS(722), + [aux_sym_local_forward_token1] = ACTIONS(722), + [aux_sym_log_level_token1] = ACTIONS(722), + [aux_sym_log_verbose_token1] = ACTIONS(722), + [aux_sym_macs_token1] = ACTIONS(722), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(722), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(722), + [aux_sym_password_authentication_token1] = ACTIONS(722), + [aux_sym_permit_local_command_token1] = ACTIONS(722), + [aux_sym_permit_remote_open_token1] = ACTIONS(722), + [aux_sym_pkcs11_provider_token1] = ACTIONS(722), + [aux_sym_port_token1] = ACTIONS(722), + [aux_sym_preferred_authentications_token1] = ACTIONS(722), + [aux_sym_protocol_token1] = ACTIONS(722), + [aux_sym_proxy_command_token1] = ACTIONS(722), + [aux_sym_proxy_jump_token1] = ACTIONS(722), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(722), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(722), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(722), + [aux_sym_pubkey_authentication_token1] = ACTIONS(722), + [aux_sym_rekey_limit_token1] = ACTIONS(722), + [aux_sym_remote_command_token1] = ACTIONS(722), + [aux_sym_remote_forward_token1] = ACTIONS(722), + [aux_sym_request_tty_token1] = ACTIONS(722), + [aux_sym_required_rsa_size_token1] = ACTIONS(722), + [aux_sym_revoked_host_keys_token1] = ACTIONS(722), + [aux_sym_security_key_provider_token1] = ACTIONS(722), + [aux_sym_send_env_token1] = ACTIONS(722), + [aux_sym_server_alive_count_max_token1] = ACTIONS(722), + [aux_sym_server_alive_interval_token1] = ACTIONS(722), + [aux_sym_session_type_token1] = ACTIONS(722), + [aux_sym_set_env_token1] = ACTIONS(722), + [aux_sym_stdin_null_token1] = ACTIONS(722), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(722), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(722), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(722), + [aux_sym_syslog_facility_token1] = ACTIONS(722), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(722), + [aux_sym_keep_alive_token1] = ACTIONS(722), + [aux_sym_tunnel_token1] = ACTIONS(724), + [aux_sym_tunnel_device_token1] = ACTIONS(722), + [aux_sym_update_host_keys_token1] = ACTIONS(722), + [aux_sym_use_keychain_token1] = ACTIONS(722), + [aux_sym_use_roaming_token1] = ACTIONS(722), + [aux_sym_user_token1] = ACTIONS(724), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(722), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(722), + [aux_sym_visual_host_key_token1] = ACTIONS(722), + [aux_sym_xauth_location_token1] = ACTIONS(722), }, [764] = { - [ts_builtin_sym_end] = ACTIONS(1515), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1517), - [aux_sym_match_token1] = ACTIONS(1515), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1515), - [aux_sym_address_family_token1] = ACTIONS(1515), - [aux_sym_batch_mode_token1] = ACTIONS(1515), - [aux_sym_bind_address_token1] = ACTIONS(1515), - [aux_sym_bind_interface_token1] = ACTIONS(1515), - [aux_sym_canonical_domains_token1] = ACTIONS(1515), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1515), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1515), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1515), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1515), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1515), - [aux_sym_certificate_file_token1] = ACTIONS(1515), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1515), - [aux_sym_check_host_ip_token1] = ACTIONS(1515), - [aux_sym_ciphers_token1] = ACTIONS(1515), - [aux_sym_cipher_token1] = ACTIONS(1517), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1515), - [aux_sym_compression_token1] = ACTIONS(1515), - [aux_sym_connection_attempts_token1] = ACTIONS(1515), - [aux_sym_connect_timeout_token1] = ACTIONS(1515), - [aux_sym_control_master_token1] = ACTIONS(1515), - [aux_sym_control_path_token1] = ACTIONS(1515), - [aux_sym_control_persist_token1] = ACTIONS(1515), - [aux_sym_dynamic_forward_token1] = ACTIONS(1515), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1515), - [aux_sym_escape_char_token1] = ACTIONS(1515), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1515), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1515), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1515), - [aux_sym_forward_agent_token1] = ACTIONS(1515), - [aux_sym_forward_x11_token1] = ACTIONS(1517), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1515), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1515), - [aux_sym_gateway_ports_token1] = ACTIONS(1515), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1515), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1515), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1515), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1515), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1515), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1515), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1515), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1515), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1515), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1515), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1515), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1515), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1515), - [aux_sym_host_key_alias_token1] = ACTIONS(1515), - [aux_sym_hostname_token1] = ACTIONS(1515), - [aux_sym_identities_only_token1] = ACTIONS(1515), - [aux_sym_identity_agent_token1] = ACTIONS(1515), - [aux_sym_identity_file_token1] = ACTIONS(1515), - [aux_sym_ignore_unknown_token1] = ACTIONS(1515), - [aux_sym_include_token1] = ACTIONS(1515), - [aux_sym_ip_qos_token1] = ACTIONS(1515), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1515), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1515), - [aux_sym_kex_algorithms_token1] = ACTIONS(1515), - [aux_sym_known_hosts_command_token1] = ACTIONS(1515), - [aux_sym_local_command_token1] = ACTIONS(1515), - [aux_sym_local_forward_token1] = ACTIONS(1515), - [aux_sym_log_level_token1] = ACTIONS(1515), - [aux_sym_log_verbose_token1] = ACTIONS(1515), - [aux_sym_macs_token1] = ACTIONS(1515), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1515), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1515), - [aux_sym_password_authentication_token1] = ACTIONS(1515), - [aux_sym_permit_local_command_token1] = ACTIONS(1515), - [aux_sym_permit_remote_open_token1] = ACTIONS(1515), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1515), - [aux_sym_port_token1] = ACTIONS(1515), - [aux_sym_preferred_authentications_token1] = ACTIONS(1515), - [aux_sym_protocol_token1] = ACTIONS(1515), - [aux_sym_proxy_command_token1] = ACTIONS(1515), - [aux_sym_proxy_jump_token1] = ACTIONS(1515), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1515), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1515), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1515), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1515), - [aux_sym_rekey_limit_token1] = ACTIONS(1515), - [aux_sym_remote_command_token1] = ACTIONS(1515), - [aux_sym_remote_forward_token1] = ACTIONS(1515), - [aux_sym_request_tty_token1] = ACTIONS(1515), - [aux_sym_required_rsa_size_token1] = ACTIONS(1515), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1515), - [aux_sym_security_key_provider_token1] = ACTIONS(1515), - [aux_sym_send_env_token1] = ACTIONS(1515), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1515), - [aux_sym_server_alive_interval_token1] = ACTIONS(1515), - [aux_sym_session_type_token1] = ACTIONS(1515), - [aux_sym_set_env_token1] = ACTIONS(1515), - [aux_sym_stdin_null_token1] = ACTIONS(1515), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1515), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1515), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1515), - [aux_sym_syslog_facility_token1] = ACTIONS(1515), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1515), - [aux_sym_keep_alive_token1] = ACTIONS(1515), - [aux_sym_tunnel_token1] = ACTIONS(1517), - [aux_sym_tunnel_device_token1] = ACTIONS(1515), - [aux_sym_update_host_keys_token1] = ACTIONS(1515), - [aux_sym_use_keychain_token1] = ACTIONS(1515), - [aux_sym_use_roaming_token1] = ACTIONS(1515), - [aux_sym_user_token1] = ACTIONS(1517), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1515), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1515), - [aux_sym_visual_host_key_token1] = ACTIONS(1515), - [aux_sym_xauth_location_token1] = ACTIONS(1515), + [ts_builtin_sym_end] = ACTIONS(1640), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1642), + [aux_sym_match_token1] = ACTIONS(1640), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1640), + [aux_sym_address_family_token1] = ACTIONS(1640), + [aux_sym_batch_mode_token1] = ACTIONS(1640), + [aux_sym_bind_address_token1] = ACTIONS(1640), + [aux_sym_bind_interface_token1] = ACTIONS(1640), + [aux_sym_canonical_domains_token1] = ACTIONS(1640), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1640), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1640), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1640), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1640), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1640), + [aux_sym_certificate_file_token1] = ACTIONS(1640), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1640), + [aux_sym_check_host_ip_token1] = ACTIONS(1640), + [aux_sym_ciphers_token1] = ACTIONS(1640), + [aux_sym_cipher_token1] = ACTIONS(1642), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1640), + [aux_sym_compression_token1] = ACTIONS(1640), + [aux_sym_connection_attempts_token1] = ACTIONS(1640), + [aux_sym_connect_timeout_token1] = ACTIONS(1640), + [aux_sym_control_master_token1] = ACTIONS(1640), + [aux_sym_control_path_token1] = ACTIONS(1640), + [aux_sym_control_persist_token1] = ACTIONS(1640), + [aux_sym_dynamic_forward_token1] = ACTIONS(1640), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1640), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1640), + [aux_sym_escape_char_token1] = ACTIONS(1640), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1640), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1640), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1640), + [aux_sym_forward_agent_token1] = ACTIONS(1640), + [aux_sym_forward_x11_token1] = ACTIONS(1642), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1640), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1640), + [aux_sym_gateway_ports_token1] = ACTIONS(1640), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1640), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1640), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1640), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1640), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1640), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1640), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1640), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1640), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1640), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1640), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1640), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1640), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1640), + [aux_sym_host_key_alias_token1] = ACTIONS(1640), + [aux_sym_hostname_token1] = ACTIONS(1640), + [aux_sym_identities_only_token1] = ACTIONS(1640), + [aux_sym_identity_agent_token1] = ACTIONS(1640), + [aux_sym_identity_file_token1] = ACTIONS(1640), + [aux_sym_ignore_unknown_token1] = ACTIONS(1640), + [aux_sym_include_token1] = ACTIONS(1640), + [aux_sym_ip_qos_token1] = ACTIONS(1640), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1640), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1640), + [aux_sym_kex_algorithms_token1] = ACTIONS(1640), + [aux_sym_known_hosts_command_token1] = ACTIONS(1640), + [aux_sym_local_command_token1] = ACTIONS(1640), + [aux_sym_local_forward_token1] = ACTIONS(1640), + [aux_sym_log_level_token1] = ACTIONS(1640), + [aux_sym_log_verbose_token1] = ACTIONS(1640), + [aux_sym_macs_token1] = ACTIONS(1640), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1640), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1640), + [aux_sym_password_authentication_token1] = ACTIONS(1640), + [aux_sym_permit_local_command_token1] = ACTIONS(1640), + [aux_sym_permit_remote_open_token1] = ACTIONS(1640), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1640), + [aux_sym_port_token1] = ACTIONS(1640), + [aux_sym_preferred_authentications_token1] = ACTIONS(1640), + [aux_sym_protocol_token1] = ACTIONS(1640), + [aux_sym_proxy_command_token1] = ACTIONS(1640), + [aux_sym_proxy_jump_token1] = ACTIONS(1640), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1640), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1640), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1640), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1640), + [aux_sym_rekey_limit_token1] = ACTIONS(1640), + [aux_sym_remote_command_token1] = ACTIONS(1640), + [aux_sym_remote_forward_token1] = ACTIONS(1640), + [aux_sym_request_tty_token1] = ACTIONS(1640), + [aux_sym_required_rsa_size_token1] = ACTIONS(1640), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1640), + [aux_sym_security_key_provider_token1] = ACTIONS(1640), + [aux_sym_send_env_token1] = ACTIONS(1640), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1640), + [aux_sym_server_alive_interval_token1] = ACTIONS(1640), + [aux_sym_session_type_token1] = ACTIONS(1640), + [aux_sym_set_env_token1] = ACTIONS(1640), + [aux_sym_stdin_null_token1] = ACTIONS(1640), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1640), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1640), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1640), + [aux_sym_syslog_facility_token1] = ACTIONS(1640), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1640), + [aux_sym_keep_alive_token1] = ACTIONS(1640), + [aux_sym_tunnel_token1] = ACTIONS(1642), + [aux_sym_tunnel_device_token1] = ACTIONS(1640), + [aux_sym_update_host_keys_token1] = ACTIONS(1640), + [aux_sym_use_keychain_token1] = ACTIONS(1640), + [aux_sym_use_roaming_token1] = ACTIONS(1640), + [aux_sym_user_token1] = ACTIONS(1642), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1640), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1640), + [aux_sym_visual_host_key_token1] = ACTIONS(1640), + [aux_sym_xauth_location_token1] = ACTIONS(1640), }, [765] = { - [ts_builtin_sym_end] = ACTIONS(1689), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1691), - [aux_sym_match_token1] = ACTIONS(1689), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1689), - [aux_sym_address_family_token1] = ACTIONS(1689), - [aux_sym_batch_mode_token1] = ACTIONS(1689), - [aux_sym_bind_address_token1] = ACTIONS(1689), - [aux_sym_bind_interface_token1] = ACTIONS(1689), - [aux_sym_canonical_domains_token1] = ACTIONS(1689), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1689), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1689), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1689), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1689), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1689), - [aux_sym_certificate_file_token1] = ACTIONS(1689), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1689), - [aux_sym_check_host_ip_token1] = ACTIONS(1689), - [aux_sym_ciphers_token1] = ACTIONS(1689), - [aux_sym_cipher_token1] = ACTIONS(1691), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1689), - [aux_sym_compression_token1] = ACTIONS(1689), - [aux_sym_connection_attempts_token1] = ACTIONS(1689), - [aux_sym_connect_timeout_token1] = ACTIONS(1689), - [aux_sym_control_master_token1] = ACTIONS(1689), - [aux_sym_control_path_token1] = ACTIONS(1689), - [aux_sym_control_persist_token1] = ACTIONS(1689), - [aux_sym_dynamic_forward_token1] = ACTIONS(1689), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1689), - [aux_sym_escape_char_token1] = ACTIONS(1689), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1689), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1689), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1689), - [aux_sym_forward_agent_token1] = ACTIONS(1689), - [aux_sym_forward_x11_token1] = ACTIONS(1691), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1689), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1689), - [aux_sym_gateway_ports_token1] = ACTIONS(1689), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1689), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1689), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1689), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1689), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1689), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1689), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1689), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1689), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1689), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1689), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1689), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1689), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1689), - [aux_sym_host_key_alias_token1] = ACTIONS(1689), - [aux_sym_hostname_token1] = ACTIONS(1689), - [aux_sym_identities_only_token1] = ACTIONS(1689), - [aux_sym_identity_agent_token1] = ACTIONS(1689), - [aux_sym_identity_file_token1] = ACTIONS(1689), - [aux_sym_ignore_unknown_token1] = ACTIONS(1689), - [aux_sym_include_token1] = ACTIONS(1689), - [aux_sym_ip_qos_token1] = ACTIONS(1689), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1689), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1689), - [aux_sym_kex_algorithms_token1] = ACTIONS(1689), - [aux_sym_known_hosts_command_token1] = ACTIONS(1689), - [aux_sym_local_command_token1] = ACTIONS(1689), - [aux_sym_local_forward_token1] = ACTIONS(1689), - [aux_sym_log_level_token1] = ACTIONS(1689), - [aux_sym_log_verbose_token1] = ACTIONS(1689), - [aux_sym_macs_token1] = ACTIONS(1689), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1689), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1689), - [aux_sym_password_authentication_token1] = ACTIONS(1689), - [aux_sym_permit_local_command_token1] = ACTIONS(1689), - [aux_sym_permit_remote_open_token1] = ACTIONS(1689), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1689), - [aux_sym_port_token1] = ACTIONS(1689), - [aux_sym_preferred_authentications_token1] = ACTIONS(1689), - [aux_sym_protocol_token1] = ACTIONS(1689), - [aux_sym_proxy_command_token1] = ACTIONS(1689), - [aux_sym_proxy_jump_token1] = ACTIONS(1689), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1689), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1689), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1689), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1689), - [aux_sym_rekey_limit_token1] = ACTIONS(1689), - [aux_sym_remote_command_token1] = ACTIONS(1689), - [aux_sym_remote_forward_token1] = ACTIONS(1689), - [aux_sym_request_tty_token1] = ACTIONS(1689), - [aux_sym_required_rsa_size_token1] = ACTIONS(1689), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1689), - [aux_sym_security_key_provider_token1] = ACTIONS(1689), - [aux_sym_send_env_token1] = ACTIONS(1689), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1689), - [aux_sym_server_alive_interval_token1] = ACTIONS(1689), - [aux_sym_session_type_token1] = ACTIONS(1689), - [aux_sym_set_env_token1] = ACTIONS(1689), - [aux_sym_stdin_null_token1] = ACTIONS(1689), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1689), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1689), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1689), - [aux_sym_syslog_facility_token1] = ACTIONS(1689), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1689), - [aux_sym_keep_alive_token1] = ACTIONS(1689), - [aux_sym_tunnel_token1] = ACTIONS(1691), - [aux_sym_tunnel_device_token1] = ACTIONS(1689), - [aux_sym_update_host_keys_token1] = ACTIONS(1689), - [aux_sym_use_keychain_token1] = ACTIONS(1689), - [aux_sym_use_roaming_token1] = ACTIONS(1689), - [aux_sym_user_token1] = ACTIONS(1691), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1689), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1689), - [aux_sym_visual_host_key_token1] = ACTIONS(1689), - [aux_sym_xauth_location_token1] = ACTIONS(1689), + [ts_builtin_sym_end] = ACTIONS(1718), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1720), + [aux_sym_match_token1] = ACTIONS(1718), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1718), + [aux_sym_address_family_token1] = ACTIONS(1718), + [aux_sym_batch_mode_token1] = ACTIONS(1718), + [aux_sym_bind_address_token1] = ACTIONS(1718), + [aux_sym_bind_interface_token1] = ACTIONS(1718), + [aux_sym_canonical_domains_token1] = ACTIONS(1718), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1718), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1718), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1718), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1718), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1718), + [aux_sym_certificate_file_token1] = ACTIONS(1718), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1718), + [aux_sym_check_host_ip_token1] = ACTIONS(1718), + [aux_sym_ciphers_token1] = ACTIONS(1718), + [aux_sym_cipher_token1] = ACTIONS(1720), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1718), + [aux_sym_compression_token1] = ACTIONS(1718), + [aux_sym_connection_attempts_token1] = ACTIONS(1718), + [aux_sym_connect_timeout_token1] = ACTIONS(1718), + [aux_sym_control_master_token1] = ACTIONS(1718), + [aux_sym_control_path_token1] = ACTIONS(1718), + [aux_sym_control_persist_token1] = ACTIONS(1718), + [aux_sym_dynamic_forward_token1] = ACTIONS(1718), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1718), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1718), + [aux_sym_escape_char_token1] = ACTIONS(1718), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1718), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1718), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1718), + [aux_sym_forward_agent_token1] = ACTIONS(1718), + [aux_sym_forward_x11_token1] = ACTIONS(1720), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1718), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1718), + [aux_sym_gateway_ports_token1] = ACTIONS(1718), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1718), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1718), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1718), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1718), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1718), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1718), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1718), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1718), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1718), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1718), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1718), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1718), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1718), + [aux_sym_host_key_alias_token1] = ACTIONS(1718), + [aux_sym_hostname_token1] = ACTIONS(1718), + [aux_sym_identities_only_token1] = ACTIONS(1718), + [aux_sym_identity_agent_token1] = ACTIONS(1718), + [aux_sym_identity_file_token1] = ACTIONS(1718), + [aux_sym_ignore_unknown_token1] = ACTIONS(1718), + [aux_sym_include_token1] = ACTIONS(1718), + [aux_sym_ip_qos_token1] = ACTIONS(1718), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1718), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1718), + [aux_sym_kex_algorithms_token1] = ACTIONS(1718), + [aux_sym_known_hosts_command_token1] = ACTIONS(1718), + [aux_sym_local_command_token1] = ACTIONS(1718), + [aux_sym_local_forward_token1] = ACTIONS(1718), + [aux_sym_log_level_token1] = ACTIONS(1718), + [aux_sym_log_verbose_token1] = ACTIONS(1718), + [aux_sym_macs_token1] = ACTIONS(1718), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1718), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1718), + [aux_sym_password_authentication_token1] = ACTIONS(1718), + [aux_sym_permit_local_command_token1] = ACTIONS(1718), + [aux_sym_permit_remote_open_token1] = ACTIONS(1718), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1718), + [aux_sym_port_token1] = ACTIONS(1718), + [aux_sym_preferred_authentications_token1] = ACTIONS(1718), + [aux_sym_protocol_token1] = ACTIONS(1718), + [aux_sym_proxy_command_token1] = ACTIONS(1718), + [aux_sym_proxy_jump_token1] = ACTIONS(1718), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1718), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1718), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1718), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1718), + [aux_sym_rekey_limit_token1] = ACTIONS(1718), + [aux_sym_remote_command_token1] = ACTIONS(1718), + [aux_sym_remote_forward_token1] = ACTIONS(1718), + [aux_sym_request_tty_token1] = ACTIONS(1718), + [aux_sym_required_rsa_size_token1] = ACTIONS(1718), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1718), + [aux_sym_security_key_provider_token1] = ACTIONS(1718), + [aux_sym_send_env_token1] = ACTIONS(1718), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1718), + [aux_sym_server_alive_interval_token1] = ACTIONS(1718), + [aux_sym_session_type_token1] = ACTIONS(1718), + [aux_sym_set_env_token1] = ACTIONS(1718), + [aux_sym_stdin_null_token1] = ACTIONS(1718), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1718), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1718), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1718), + [aux_sym_syslog_facility_token1] = ACTIONS(1718), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1718), + [aux_sym_keep_alive_token1] = ACTIONS(1718), + [aux_sym_tunnel_token1] = ACTIONS(1720), + [aux_sym_tunnel_device_token1] = ACTIONS(1718), + [aux_sym_update_host_keys_token1] = ACTIONS(1718), + [aux_sym_use_keychain_token1] = ACTIONS(1718), + [aux_sym_use_roaming_token1] = ACTIONS(1718), + [aux_sym_user_token1] = ACTIONS(1720), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1718), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1718), + [aux_sym_visual_host_key_token1] = ACTIONS(1718), + [aux_sym_xauth_location_token1] = ACTIONS(1718), }, [766] = { - [ts_builtin_sym_end] = ACTIONS(1521), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1523), - [aux_sym_match_token1] = ACTIONS(1521), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1521), - [aux_sym_address_family_token1] = ACTIONS(1521), - [aux_sym_batch_mode_token1] = ACTIONS(1521), - [aux_sym_bind_address_token1] = ACTIONS(1521), - [aux_sym_bind_interface_token1] = ACTIONS(1521), - [aux_sym_canonical_domains_token1] = ACTIONS(1521), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1521), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1521), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1521), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1521), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1521), - [aux_sym_certificate_file_token1] = ACTIONS(1521), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1521), - [aux_sym_check_host_ip_token1] = ACTIONS(1521), - [aux_sym_ciphers_token1] = ACTIONS(1521), - [aux_sym_cipher_token1] = ACTIONS(1523), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1521), - [aux_sym_compression_token1] = ACTIONS(1521), - [aux_sym_connection_attempts_token1] = ACTIONS(1521), - [aux_sym_connect_timeout_token1] = ACTIONS(1521), - [aux_sym_control_master_token1] = ACTIONS(1521), - [aux_sym_control_path_token1] = ACTIONS(1521), - [aux_sym_control_persist_token1] = ACTIONS(1521), - [aux_sym_dynamic_forward_token1] = ACTIONS(1521), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1521), - [aux_sym_escape_char_token1] = ACTIONS(1521), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1521), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1521), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1521), - [aux_sym_forward_agent_token1] = ACTIONS(1521), - [aux_sym_forward_x11_token1] = ACTIONS(1523), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1521), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1521), - [aux_sym_gateway_ports_token1] = ACTIONS(1521), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1521), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1521), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1521), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1521), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1521), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1521), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1521), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1521), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1521), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1521), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1521), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1521), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1521), - [aux_sym_host_key_alias_token1] = ACTIONS(1521), - [aux_sym_hostname_token1] = ACTIONS(1521), - [aux_sym_identities_only_token1] = ACTIONS(1521), - [aux_sym_identity_agent_token1] = ACTIONS(1521), - [aux_sym_identity_file_token1] = ACTIONS(1521), - [aux_sym_ignore_unknown_token1] = ACTIONS(1521), - [aux_sym_include_token1] = ACTIONS(1521), - [aux_sym_ip_qos_token1] = ACTIONS(1521), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1521), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1521), - [aux_sym_kex_algorithms_token1] = ACTIONS(1521), - [aux_sym_known_hosts_command_token1] = ACTIONS(1521), - [aux_sym_local_command_token1] = ACTIONS(1521), - [aux_sym_local_forward_token1] = ACTIONS(1521), - [aux_sym_log_level_token1] = ACTIONS(1521), - [aux_sym_log_verbose_token1] = ACTIONS(1521), - [aux_sym_macs_token1] = ACTIONS(1521), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1521), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1521), - [aux_sym_password_authentication_token1] = ACTIONS(1521), - [aux_sym_permit_local_command_token1] = ACTIONS(1521), - [aux_sym_permit_remote_open_token1] = ACTIONS(1521), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1521), - [aux_sym_port_token1] = ACTIONS(1521), - [aux_sym_preferred_authentications_token1] = ACTIONS(1521), - [aux_sym_protocol_token1] = ACTIONS(1521), - [aux_sym_proxy_command_token1] = ACTIONS(1521), - [aux_sym_proxy_jump_token1] = ACTIONS(1521), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1521), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1521), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1521), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1521), - [aux_sym_rekey_limit_token1] = ACTIONS(1521), - [aux_sym_remote_command_token1] = ACTIONS(1521), - [aux_sym_remote_forward_token1] = ACTIONS(1521), - [aux_sym_request_tty_token1] = ACTIONS(1521), - [aux_sym_required_rsa_size_token1] = ACTIONS(1521), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1521), - [aux_sym_security_key_provider_token1] = ACTIONS(1521), - [aux_sym_send_env_token1] = ACTIONS(1521), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1521), - [aux_sym_server_alive_interval_token1] = ACTIONS(1521), - [aux_sym_session_type_token1] = ACTIONS(1521), - [aux_sym_set_env_token1] = ACTIONS(1521), - [aux_sym_stdin_null_token1] = ACTIONS(1521), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1521), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1521), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1521), - [aux_sym_syslog_facility_token1] = ACTIONS(1521), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1521), - [aux_sym_keep_alive_token1] = ACTIONS(1521), - [aux_sym_tunnel_token1] = ACTIONS(1523), - [aux_sym_tunnel_device_token1] = ACTIONS(1521), - [aux_sym_update_host_keys_token1] = ACTIONS(1521), - [aux_sym_use_keychain_token1] = ACTIONS(1521), - [aux_sym_use_roaming_token1] = ACTIONS(1521), - [aux_sym_user_token1] = ACTIONS(1523), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1521), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1521), - [aux_sym_visual_host_key_token1] = ACTIONS(1521), - [aux_sym_xauth_location_token1] = ACTIONS(1521), + [ts_builtin_sym_end] = ACTIONS(752), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(754), + [aux_sym_match_token1] = ACTIONS(752), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(752), + [aux_sym_address_family_token1] = ACTIONS(752), + [aux_sym_batch_mode_token1] = ACTIONS(752), + [aux_sym_bind_address_token1] = ACTIONS(752), + [aux_sym_bind_interface_token1] = ACTIONS(752), + [aux_sym_canonical_domains_token1] = ACTIONS(752), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(752), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(752), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(752), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(752), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(752), + [aux_sym_certificate_file_token1] = ACTIONS(752), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(752), + [aux_sym_check_host_ip_token1] = ACTIONS(752), + [aux_sym_ciphers_token1] = ACTIONS(752), + [aux_sym_cipher_token1] = ACTIONS(754), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(752), + [aux_sym_compression_token1] = ACTIONS(752), + [aux_sym_connection_attempts_token1] = ACTIONS(752), + [aux_sym_connect_timeout_token1] = ACTIONS(752), + [aux_sym_control_master_token1] = ACTIONS(752), + [aux_sym_control_path_token1] = ACTIONS(752), + [aux_sym_control_persist_token1] = ACTIONS(752), + [aux_sym_dynamic_forward_token1] = ACTIONS(752), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(752), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(752), + [aux_sym_escape_char_token1] = ACTIONS(752), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(752), + [aux_sym_fingerprint_hash_token1] = ACTIONS(752), + [aux_sym_fork_after_authentication_token1] = ACTIONS(752), + [aux_sym_forward_agent_token1] = ACTIONS(752), + [aux_sym_forward_x11_token1] = ACTIONS(754), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(752), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(752), + [aux_sym_gateway_ports_token1] = ACTIONS(752), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(752), + [aux_sym_gssapi_authentication_token1] = ACTIONS(752), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(752), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(752), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(752), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(752), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(752), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(752), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(752), + [aux_sym_hash_known_hosts_token1] = ACTIONS(752), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(752), + [aux_sym_hostbased_authentication_token1] = ACTIONS(752), + [aux_sym_host_key_algorithms_token1] = ACTIONS(752), + [aux_sym_host_key_alias_token1] = ACTIONS(752), + [aux_sym_hostname_token1] = ACTIONS(752), + [aux_sym_identities_only_token1] = ACTIONS(752), + [aux_sym_identity_agent_token1] = ACTIONS(752), + [aux_sym_identity_file_token1] = ACTIONS(752), + [aux_sym_ignore_unknown_token1] = ACTIONS(752), + [aux_sym_include_token1] = ACTIONS(752), + [aux_sym_ip_qos_token1] = ACTIONS(752), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(752), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(752), + [aux_sym_kex_algorithms_token1] = ACTIONS(752), + [aux_sym_known_hosts_command_token1] = ACTIONS(752), + [aux_sym_local_command_token1] = ACTIONS(752), + [aux_sym_local_forward_token1] = ACTIONS(752), + [aux_sym_log_level_token1] = ACTIONS(752), + [aux_sym_log_verbose_token1] = ACTIONS(752), + [aux_sym_macs_token1] = ACTIONS(752), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(752), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(752), + [aux_sym_password_authentication_token1] = ACTIONS(752), + [aux_sym_permit_local_command_token1] = ACTIONS(752), + [aux_sym_permit_remote_open_token1] = ACTIONS(752), + [aux_sym_pkcs11_provider_token1] = ACTIONS(752), + [aux_sym_port_token1] = ACTIONS(752), + [aux_sym_preferred_authentications_token1] = ACTIONS(752), + [aux_sym_protocol_token1] = ACTIONS(752), + [aux_sym_proxy_command_token1] = ACTIONS(752), + [aux_sym_proxy_jump_token1] = ACTIONS(752), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(752), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(752), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(752), + [aux_sym_pubkey_authentication_token1] = ACTIONS(752), + [aux_sym_rekey_limit_token1] = ACTIONS(752), + [aux_sym_remote_command_token1] = ACTIONS(752), + [aux_sym_remote_forward_token1] = ACTIONS(752), + [aux_sym_request_tty_token1] = ACTIONS(752), + [aux_sym_required_rsa_size_token1] = ACTIONS(752), + [aux_sym_revoked_host_keys_token1] = ACTIONS(752), + [aux_sym_security_key_provider_token1] = ACTIONS(752), + [aux_sym_send_env_token1] = ACTIONS(752), + [aux_sym_server_alive_count_max_token1] = ACTIONS(752), + [aux_sym_server_alive_interval_token1] = ACTIONS(752), + [aux_sym_session_type_token1] = ACTIONS(752), + [aux_sym_set_env_token1] = ACTIONS(752), + [aux_sym_stdin_null_token1] = ACTIONS(752), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(752), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(752), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(752), + [aux_sym_syslog_facility_token1] = ACTIONS(752), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(752), + [aux_sym_keep_alive_token1] = ACTIONS(752), + [aux_sym_tunnel_token1] = ACTIONS(754), + [aux_sym_tunnel_device_token1] = ACTIONS(752), + [aux_sym_update_host_keys_token1] = ACTIONS(752), + [aux_sym_use_keychain_token1] = ACTIONS(752), + [aux_sym_use_roaming_token1] = ACTIONS(752), + [aux_sym_user_token1] = ACTIONS(754), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(752), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(752), + [aux_sym_visual_host_key_token1] = ACTIONS(752), + [aux_sym_xauth_location_token1] = ACTIONS(752), }, [767] = { - [ts_builtin_sym_end] = ACTIONS(1527), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1529), - [aux_sym_match_token1] = ACTIONS(1527), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1527), - [aux_sym_address_family_token1] = ACTIONS(1527), - [aux_sym_batch_mode_token1] = ACTIONS(1527), - [aux_sym_bind_address_token1] = ACTIONS(1527), - [aux_sym_bind_interface_token1] = ACTIONS(1527), - [aux_sym_canonical_domains_token1] = ACTIONS(1527), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1527), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1527), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1527), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1527), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1527), - [aux_sym_certificate_file_token1] = ACTIONS(1527), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1527), - [aux_sym_check_host_ip_token1] = ACTIONS(1527), - [aux_sym_ciphers_token1] = ACTIONS(1527), - [aux_sym_cipher_token1] = ACTIONS(1529), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1527), - [aux_sym_compression_token1] = ACTIONS(1527), - [aux_sym_connection_attempts_token1] = ACTIONS(1527), - [aux_sym_connect_timeout_token1] = ACTIONS(1527), - [aux_sym_control_master_token1] = ACTIONS(1527), - [aux_sym_control_path_token1] = ACTIONS(1527), - [aux_sym_control_persist_token1] = ACTIONS(1527), - [aux_sym_dynamic_forward_token1] = ACTIONS(1527), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1527), - [aux_sym_escape_char_token1] = ACTIONS(1527), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1527), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1527), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1527), - [aux_sym_forward_agent_token1] = ACTIONS(1527), - [aux_sym_forward_x11_token1] = ACTIONS(1529), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1527), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1527), - [aux_sym_gateway_ports_token1] = ACTIONS(1527), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1527), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1527), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1527), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1527), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1527), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1527), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1527), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1527), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1527), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1527), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1527), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1527), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1527), - [aux_sym_host_key_alias_token1] = ACTIONS(1527), - [aux_sym_hostname_token1] = ACTIONS(1527), - [aux_sym_identities_only_token1] = ACTIONS(1527), - [aux_sym_identity_agent_token1] = ACTIONS(1527), - [aux_sym_identity_file_token1] = ACTIONS(1527), - [aux_sym_ignore_unknown_token1] = ACTIONS(1527), - [aux_sym_include_token1] = ACTIONS(1527), - [aux_sym_ip_qos_token1] = ACTIONS(1527), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1527), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1527), - [aux_sym_kex_algorithms_token1] = ACTIONS(1527), - [aux_sym_known_hosts_command_token1] = ACTIONS(1527), - [aux_sym_local_command_token1] = ACTIONS(1527), - [aux_sym_local_forward_token1] = ACTIONS(1527), - [aux_sym_log_level_token1] = ACTIONS(1527), - [aux_sym_log_verbose_token1] = ACTIONS(1527), - [aux_sym_macs_token1] = ACTIONS(1527), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1527), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1527), - [aux_sym_password_authentication_token1] = ACTIONS(1527), - [aux_sym_permit_local_command_token1] = ACTIONS(1527), - [aux_sym_permit_remote_open_token1] = ACTIONS(1527), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1527), - [aux_sym_port_token1] = ACTIONS(1527), - [aux_sym_preferred_authentications_token1] = ACTIONS(1527), - [aux_sym_protocol_token1] = ACTIONS(1527), - [aux_sym_proxy_command_token1] = ACTIONS(1527), - [aux_sym_proxy_jump_token1] = ACTIONS(1527), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1527), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1527), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1527), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1527), - [aux_sym_rekey_limit_token1] = ACTIONS(1527), - [aux_sym_remote_command_token1] = ACTIONS(1527), - [aux_sym_remote_forward_token1] = ACTIONS(1527), - [aux_sym_request_tty_token1] = ACTIONS(1527), - [aux_sym_required_rsa_size_token1] = ACTIONS(1527), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1527), - [aux_sym_security_key_provider_token1] = ACTIONS(1527), - [aux_sym_send_env_token1] = ACTIONS(1527), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1527), - [aux_sym_server_alive_interval_token1] = ACTIONS(1527), - [aux_sym_session_type_token1] = ACTIONS(1527), - [aux_sym_set_env_token1] = ACTIONS(1527), - [aux_sym_stdin_null_token1] = ACTIONS(1527), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1527), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1527), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1527), - [aux_sym_syslog_facility_token1] = ACTIONS(1527), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1527), - [aux_sym_keep_alive_token1] = ACTIONS(1527), - [aux_sym_tunnel_token1] = ACTIONS(1529), - [aux_sym_tunnel_device_token1] = ACTIONS(1527), - [aux_sym_update_host_keys_token1] = ACTIONS(1527), - [aux_sym_use_keychain_token1] = ACTIONS(1527), - [aux_sym_use_roaming_token1] = ACTIONS(1527), - [aux_sym_user_token1] = ACTIONS(1529), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1527), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1527), - [aux_sym_visual_host_key_token1] = ACTIONS(1527), - [aux_sym_xauth_location_token1] = ACTIONS(1527), + [ts_builtin_sym_end] = ACTIONS(1646), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1648), + [aux_sym_match_token1] = ACTIONS(1646), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1646), + [aux_sym_address_family_token1] = ACTIONS(1646), + [aux_sym_batch_mode_token1] = ACTIONS(1646), + [aux_sym_bind_address_token1] = ACTIONS(1646), + [aux_sym_bind_interface_token1] = ACTIONS(1646), + [aux_sym_canonical_domains_token1] = ACTIONS(1646), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1646), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1646), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1646), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1646), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1646), + [aux_sym_certificate_file_token1] = ACTIONS(1646), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1646), + [aux_sym_check_host_ip_token1] = ACTIONS(1646), + [aux_sym_ciphers_token1] = ACTIONS(1646), + [aux_sym_cipher_token1] = ACTIONS(1648), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1646), + [aux_sym_compression_token1] = ACTIONS(1646), + [aux_sym_connection_attempts_token1] = ACTIONS(1646), + [aux_sym_connect_timeout_token1] = ACTIONS(1646), + [aux_sym_control_master_token1] = ACTIONS(1646), + [aux_sym_control_path_token1] = ACTIONS(1646), + [aux_sym_control_persist_token1] = ACTIONS(1646), + [aux_sym_dynamic_forward_token1] = ACTIONS(1646), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1646), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1646), + [aux_sym_escape_char_token1] = ACTIONS(1646), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1646), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1646), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1646), + [aux_sym_forward_agent_token1] = ACTIONS(1646), + [aux_sym_forward_x11_token1] = ACTIONS(1648), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1646), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1646), + [aux_sym_gateway_ports_token1] = ACTIONS(1646), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1646), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1646), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1646), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1646), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1646), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1646), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1646), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1646), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1646), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1646), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1646), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1646), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1646), + [aux_sym_host_key_alias_token1] = ACTIONS(1646), + [aux_sym_hostname_token1] = ACTIONS(1646), + [aux_sym_identities_only_token1] = ACTIONS(1646), + [aux_sym_identity_agent_token1] = ACTIONS(1646), + [aux_sym_identity_file_token1] = ACTIONS(1646), + [aux_sym_ignore_unknown_token1] = ACTIONS(1646), + [aux_sym_include_token1] = ACTIONS(1646), + [aux_sym_ip_qos_token1] = ACTIONS(1646), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1646), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1646), + [aux_sym_kex_algorithms_token1] = ACTIONS(1646), + [aux_sym_known_hosts_command_token1] = ACTIONS(1646), + [aux_sym_local_command_token1] = ACTIONS(1646), + [aux_sym_local_forward_token1] = ACTIONS(1646), + [aux_sym_log_level_token1] = ACTIONS(1646), + [aux_sym_log_verbose_token1] = ACTIONS(1646), + [aux_sym_macs_token1] = ACTIONS(1646), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1646), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1646), + [aux_sym_password_authentication_token1] = ACTIONS(1646), + [aux_sym_permit_local_command_token1] = ACTIONS(1646), + [aux_sym_permit_remote_open_token1] = ACTIONS(1646), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1646), + [aux_sym_port_token1] = ACTIONS(1646), + [aux_sym_preferred_authentications_token1] = ACTIONS(1646), + [aux_sym_protocol_token1] = ACTIONS(1646), + [aux_sym_proxy_command_token1] = ACTIONS(1646), + [aux_sym_proxy_jump_token1] = ACTIONS(1646), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1646), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1646), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1646), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1646), + [aux_sym_rekey_limit_token1] = ACTIONS(1646), + [aux_sym_remote_command_token1] = ACTIONS(1646), + [aux_sym_remote_forward_token1] = ACTIONS(1646), + [aux_sym_request_tty_token1] = ACTIONS(1646), + [aux_sym_required_rsa_size_token1] = ACTIONS(1646), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1646), + [aux_sym_security_key_provider_token1] = ACTIONS(1646), + [aux_sym_send_env_token1] = ACTIONS(1646), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1646), + [aux_sym_server_alive_interval_token1] = ACTIONS(1646), + [aux_sym_session_type_token1] = ACTIONS(1646), + [aux_sym_set_env_token1] = ACTIONS(1646), + [aux_sym_stdin_null_token1] = ACTIONS(1646), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1646), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1646), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1646), + [aux_sym_syslog_facility_token1] = ACTIONS(1646), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1646), + [aux_sym_keep_alive_token1] = ACTIONS(1646), + [aux_sym_tunnel_token1] = ACTIONS(1648), + [aux_sym_tunnel_device_token1] = ACTIONS(1646), + [aux_sym_update_host_keys_token1] = ACTIONS(1646), + [aux_sym_use_keychain_token1] = ACTIONS(1646), + [aux_sym_use_roaming_token1] = ACTIONS(1646), + [aux_sym_user_token1] = ACTIONS(1648), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1646), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1646), + [aux_sym_visual_host_key_token1] = ACTIONS(1646), + [aux_sym_xauth_location_token1] = ACTIONS(1646), }, [768] = { - [ts_builtin_sym_end] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1685), - [aux_sym_match_token1] = ACTIONS(1683), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1683), - [aux_sym_address_family_token1] = ACTIONS(1683), - [aux_sym_batch_mode_token1] = ACTIONS(1683), - [aux_sym_bind_address_token1] = ACTIONS(1683), - [aux_sym_bind_interface_token1] = ACTIONS(1683), - [aux_sym_canonical_domains_token1] = ACTIONS(1683), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1683), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1683), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1683), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1683), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1683), - [aux_sym_certificate_file_token1] = ACTIONS(1683), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1683), - [aux_sym_check_host_ip_token1] = ACTIONS(1683), - [aux_sym_ciphers_token1] = ACTIONS(1683), - [aux_sym_cipher_token1] = ACTIONS(1685), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1683), - [aux_sym_compression_token1] = ACTIONS(1683), - [aux_sym_connection_attempts_token1] = ACTIONS(1683), - [aux_sym_connect_timeout_token1] = ACTIONS(1683), - [aux_sym_control_master_token1] = ACTIONS(1683), - [aux_sym_control_path_token1] = ACTIONS(1683), - [aux_sym_control_persist_token1] = ACTIONS(1683), - [aux_sym_dynamic_forward_token1] = ACTIONS(1683), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1683), - [aux_sym_escape_char_token1] = ACTIONS(1683), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1683), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1683), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1683), - [aux_sym_forward_agent_token1] = ACTIONS(1683), - [aux_sym_forward_x11_token1] = ACTIONS(1685), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1683), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1683), - [aux_sym_gateway_ports_token1] = ACTIONS(1683), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1683), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1683), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1683), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1683), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1683), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1683), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1683), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1683), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1683), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1683), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1683), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1683), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1683), - [aux_sym_host_key_alias_token1] = ACTIONS(1683), - [aux_sym_hostname_token1] = ACTIONS(1683), - [aux_sym_identities_only_token1] = ACTIONS(1683), - [aux_sym_identity_agent_token1] = ACTIONS(1683), - [aux_sym_identity_file_token1] = ACTIONS(1683), - [aux_sym_ignore_unknown_token1] = ACTIONS(1683), - [aux_sym_include_token1] = ACTIONS(1683), - [aux_sym_ip_qos_token1] = ACTIONS(1683), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1683), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1683), - [aux_sym_kex_algorithms_token1] = ACTIONS(1683), - [aux_sym_known_hosts_command_token1] = ACTIONS(1683), - [aux_sym_local_command_token1] = ACTIONS(1683), - [aux_sym_local_forward_token1] = ACTIONS(1683), - [aux_sym_log_level_token1] = ACTIONS(1683), - [aux_sym_log_verbose_token1] = ACTIONS(1683), - [aux_sym_macs_token1] = ACTIONS(1683), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1683), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1683), - [aux_sym_password_authentication_token1] = ACTIONS(1683), - [aux_sym_permit_local_command_token1] = ACTIONS(1683), - [aux_sym_permit_remote_open_token1] = ACTIONS(1683), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1683), - [aux_sym_port_token1] = ACTIONS(1683), - [aux_sym_preferred_authentications_token1] = ACTIONS(1683), - [aux_sym_protocol_token1] = ACTIONS(1683), - [aux_sym_proxy_command_token1] = ACTIONS(1683), - [aux_sym_proxy_jump_token1] = ACTIONS(1683), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1683), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1683), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1683), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1683), - [aux_sym_rekey_limit_token1] = ACTIONS(1683), - [aux_sym_remote_command_token1] = ACTIONS(1683), - [aux_sym_remote_forward_token1] = ACTIONS(1683), - [aux_sym_request_tty_token1] = ACTIONS(1683), - [aux_sym_required_rsa_size_token1] = ACTIONS(1683), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1683), - [aux_sym_security_key_provider_token1] = ACTIONS(1683), - [aux_sym_send_env_token1] = ACTIONS(1683), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1683), - [aux_sym_server_alive_interval_token1] = ACTIONS(1683), - [aux_sym_session_type_token1] = ACTIONS(1683), - [aux_sym_set_env_token1] = ACTIONS(1683), - [aux_sym_stdin_null_token1] = ACTIONS(1683), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1683), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1683), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1683), - [aux_sym_syslog_facility_token1] = ACTIONS(1683), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1683), - [aux_sym_keep_alive_token1] = ACTIONS(1683), - [aux_sym_tunnel_token1] = ACTIONS(1685), - [aux_sym_tunnel_device_token1] = ACTIONS(1683), - [aux_sym_update_host_keys_token1] = ACTIONS(1683), - [aux_sym_use_keychain_token1] = ACTIONS(1683), - [aux_sym_use_roaming_token1] = ACTIONS(1683), - [aux_sym_user_token1] = ACTIONS(1685), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1683), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1683), - [aux_sym_visual_host_key_token1] = ACTIONS(1683), - [aux_sym_xauth_location_token1] = ACTIONS(1683), + [ts_builtin_sym_end] = ACTIONS(1712), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1714), + [aux_sym_match_token1] = ACTIONS(1712), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1712), + [aux_sym_address_family_token1] = ACTIONS(1712), + [aux_sym_batch_mode_token1] = ACTIONS(1712), + [aux_sym_bind_address_token1] = ACTIONS(1712), + [aux_sym_bind_interface_token1] = ACTIONS(1712), + [aux_sym_canonical_domains_token1] = ACTIONS(1712), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1712), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1712), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1712), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1712), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1712), + [aux_sym_certificate_file_token1] = ACTIONS(1712), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1712), + [aux_sym_check_host_ip_token1] = ACTIONS(1712), + [aux_sym_ciphers_token1] = ACTIONS(1712), + [aux_sym_cipher_token1] = ACTIONS(1714), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1712), + [aux_sym_compression_token1] = ACTIONS(1712), + [aux_sym_connection_attempts_token1] = ACTIONS(1712), + [aux_sym_connect_timeout_token1] = ACTIONS(1712), + [aux_sym_control_master_token1] = ACTIONS(1712), + [aux_sym_control_path_token1] = ACTIONS(1712), + [aux_sym_control_persist_token1] = ACTIONS(1712), + [aux_sym_dynamic_forward_token1] = ACTIONS(1712), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1712), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1712), + [aux_sym_escape_char_token1] = ACTIONS(1712), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1712), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1712), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1712), + [aux_sym_forward_agent_token1] = ACTIONS(1712), + [aux_sym_forward_x11_token1] = ACTIONS(1714), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1712), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1712), + [aux_sym_gateway_ports_token1] = ACTIONS(1712), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1712), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1712), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1712), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1712), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1712), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1712), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1712), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1712), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1712), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1712), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1712), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1712), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1712), + [aux_sym_host_key_alias_token1] = ACTIONS(1712), + [aux_sym_hostname_token1] = ACTIONS(1712), + [aux_sym_identities_only_token1] = ACTIONS(1712), + [aux_sym_identity_agent_token1] = ACTIONS(1712), + [aux_sym_identity_file_token1] = ACTIONS(1712), + [aux_sym_ignore_unknown_token1] = ACTIONS(1712), + [aux_sym_include_token1] = ACTIONS(1712), + [aux_sym_ip_qos_token1] = ACTIONS(1712), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1712), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1712), + [aux_sym_kex_algorithms_token1] = ACTIONS(1712), + [aux_sym_known_hosts_command_token1] = ACTIONS(1712), + [aux_sym_local_command_token1] = ACTIONS(1712), + [aux_sym_local_forward_token1] = ACTIONS(1712), + [aux_sym_log_level_token1] = ACTIONS(1712), + [aux_sym_log_verbose_token1] = ACTIONS(1712), + [aux_sym_macs_token1] = ACTIONS(1712), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1712), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1712), + [aux_sym_password_authentication_token1] = ACTIONS(1712), + [aux_sym_permit_local_command_token1] = ACTIONS(1712), + [aux_sym_permit_remote_open_token1] = ACTIONS(1712), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1712), + [aux_sym_port_token1] = ACTIONS(1712), + [aux_sym_preferred_authentications_token1] = ACTIONS(1712), + [aux_sym_protocol_token1] = ACTIONS(1712), + [aux_sym_proxy_command_token1] = ACTIONS(1712), + [aux_sym_proxy_jump_token1] = ACTIONS(1712), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1712), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1712), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1712), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1712), + [aux_sym_rekey_limit_token1] = ACTIONS(1712), + [aux_sym_remote_command_token1] = ACTIONS(1712), + [aux_sym_remote_forward_token1] = ACTIONS(1712), + [aux_sym_request_tty_token1] = ACTIONS(1712), + [aux_sym_required_rsa_size_token1] = ACTIONS(1712), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1712), + [aux_sym_security_key_provider_token1] = ACTIONS(1712), + [aux_sym_send_env_token1] = ACTIONS(1712), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1712), + [aux_sym_server_alive_interval_token1] = ACTIONS(1712), + [aux_sym_session_type_token1] = ACTIONS(1712), + [aux_sym_set_env_token1] = ACTIONS(1712), + [aux_sym_stdin_null_token1] = ACTIONS(1712), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1712), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1712), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1712), + [aux_sym_syslog_facility_token1] = ACTIONS(1712), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1712), + [aux_sym_keep_alive_token1] = ACTIONS(1712), + [aux_sym_tunnel_token1] = ACTIONS(1714), + [aux_sym_tunnel_device_token1] = ACTIONS(1712), + [aux_sym_update_host_keys_token1] = ACTIONS(1712), + [aux_sym_use_keychain_token1] = ACTIONS(1712), + [aux_sym_use_roaming_token1] = ACTIONS(1712), + [aux_sym_user_token1] = ACTIONS(1714), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1712), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1712), + [aux_sym_visual_host_key_token1] = ACTIONS(1712), + [aux_sym_xauth_location_token1] = ACTIONS(1712), }, [769] = { - [ts_builtin_sym_end] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1535), - [aux_sym_match_token1] = ACTIONS(1533), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1533), - [aux_sym_address_family_token1] = ACTIONS(1533), - [aux_sym_batch_mode_token1] = ACTIONS(1533), - [aux_sym_bind_address_token1] = ACTIONS(1533), - [aux_sym_bind_interface_token1] = ACTIONS(1533), - [aux_sym_canonical_domains_token1] = ACTIONS(1533), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1533), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1533), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1533), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1533), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1533), - [aux_sym_certificate_file_token1] = ACTIONS(1533), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1533), - [aux_sym_check_host_ip_token1] = ACTIONS(1533), - [aux_sym_ciphers_token1] = ACTIONS(1533), - [aux_sym_cipher_token1] = ACTIONS(1535), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1533), - [aux_sym_compression_token1] = ACTIONS(1533), - [aux_sym_connection_attempts_token1] = ACTIONS(1533), - [aux_sym_connect_timeout_token1] = ACTIONS(1533), - [aux_sym_control_master_token1] = ACTIONS(1533), - [aux_sym_control_path_token1] = ACTIONS(1533), - [aux_sym_control_persist_token1] = ACTIONS(1533), - [aux_sym_dynamic_forward_token1] = ACTIONS(1533), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1533), - [aux_sym_escape_char_token1] = ACTIONS(1533), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1533), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1533), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1533), - [aux_sym_forward_agent_token1] = ACTIONS(1533), - [aux_sym_forward_x11_token1] = ACTIONS(1535), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1533), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1533), - [aux_sym_gateway_ports_token1] = ACTIONS(1533), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1533), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1533), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1533), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1533), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1533), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1533), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1533), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1533), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1533), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1533), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1533), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1533), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1533), - [aux_sym_host_key_alias_token1] = ACTIONS(1533), - [aux_sym_hostname_token1] = ACTIONS(1533), - [aux_sym_identities_only_token1] = ACTIONS(1533), - [aux_sym_identity_agent_token1] = ACTIONS(1533), - [aux_sym_identity_file_token1] = ACTIONS(1533), - [aux_sym_ignore_unknown_token1] = ACTIONS(1533), - [aux_sym_include_token1] = ACTIONS(1533), - [aux_sym_ip_qos_token1] = ACTIONS(1533), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1533), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1533), - [aux_sym_kex_algorithms_token1] = ACTIONS(1533), - [aux_sym_known_hosts_command_token1] = ACTIONS(1533), - [aux_sym_local_command_token1] = ACTIONS(1533), - [aux_sym_local_forward_token1] = ACTIONS(1533), - [aux_sym_log_level_token1] = ACTIONS(1533), - [aux_sym_log_verbose_token1] = ACTIONS(1533), - [aux_sym_macs_token1] = ACTIONS(1533), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1533), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1533), - [aux_sym_password_authentication_token1] = ACTIONS(1533), - [aux_sym_permit_local_command_token1] = ACTIONS(1533), - [aux_sym_permit_remote_open_token1] = ACTIONS(1533), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1533), - [aux_sym_port_token1] = ACTIONS(1533), - [aux_sym_preferred_authentications_token1] = ACTIONS(1533), - [aux_sym_protocol_token1] = ACTIONS(1533), - [aux_sym_proxy_command_token1] = ACTIONS(1533), - [aux_sym_proxy_jump_token1] = ACTIONS(1533), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1533), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1533), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1533), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1533), - [aux_sym_rekey_limit_token1] = ACTIONS(1533), - [aux_sym_remote_command_token1] = ACTIONS(1533), - [aux_sym_remote_forward_token1] = ACTIONS(1533), - [aux_sym_request_tty_token1] = ACTIONS(1533), - [aux_sym_required_rsa_size_token1] = ACTIONS(1533), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1533), - [aux_sym_security_key_provider_token1] = ACTIONS(1533), - [aux_sym_send_env_token1] = ACTIONS(1533), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1533), - [aux_sym_server_alive_interval_token1] = ACTIONS(1533), - [aux_sym_session_type_token1] = ACTIONS(1533), - [aux_sym_set_env_token1] = ACTIONS(1533), - [aux_sym_stdin_null_token1] = ACTIONS(1533), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1533), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1533), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1533), - [aux_sym_syslog_facility_token1] = ACTIONS(1533), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1533), - [aux_sym_keep_alive_token1] = ACTIONS(1533), - [aux_sym_tunnel_token1] = ACTIONS(1535), - [aux_sym_tunnel_device_token1] = ACTIONS(1533), - [aux_sym_update_host_keys_token1] = ACTIONS(1533), - [aux_sym_use_keychain_token1] = ACTIONS(1533), - [aux_sym_use_roaming_token1] = ACTIONS(1533), - [aux_sym_user_token1] = ACTIONS(1535), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1533), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1533), - [aux_sym_visual_host_key_token1] = ACTIONS(1533), - [aux_sym_xauth_location_token1] = ACTIONS(1533), + [ts_builtin_sym_end] = ACTIONS(728), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(730), + [aux_sym_match_token1] = ACTIONS(728), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(728), + [aux_sym_address_family_token1] = ACTIONS(728), + [aux_sym_batch_mode_token1] = ACTIONS(728), + [aux_sym_bind_address_token1] = ACTIONS(728), + [aux_sym_bind_interface_token1] = ACTIONS(728), + [aux_sym_canonical_domains_token1] = ACTIONS(728), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(728), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(728), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(728), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(728), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(728), + [aux_sym_certificate_file_token1] = ACTIONS(728), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(728), + [aux_sym_check_host_ip_token1] = ACTIONS(728), + [aux_sym_ciphers_token1] = ACTIONS(728), + [aux_sym_cipher_token1] = ACTIONS(730), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(728), + [aux_sym_compression_token1] = ACTIONS(728), + [aux_sym_connection_attempts_token1] = ACTIONS(728), + [aux_sym_connect_timeout_token1] = ACTIONS(728), + [aux_sym_control_master_token1] = ACTIONS(728), + [aux_sym_control_path_token1] = ACTIONS(728), + [aux_sym_control_persist_token1] = ACTIONS(728), + [aux_sym_dynamic_forward_token1] = ACTIONS(728), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(728), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(728), + [aux_sym_escape_char_token1] = ACTIONS(728), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(728), + [aux_sym_fingerprint_hash_token1] = ACTIONS(728), + [aux_sym_fork_after_authentication_token1] = ACTIONS(728), + [aux_sym_forward_agent_token1] = ACTIONS(728), + [aux_sym_forward_x11_token1] = ACTIONS(730), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(728), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(728), + [aux_sym_gateway_ports_token1] = ACTIONS(728), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(728), + [aux_sym_gssapi_authentication_token1] = ACTIONS(728), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(728), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(728), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(728), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(728), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(728), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(728), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(728), + [aux_sym_hash_known_hosts_token1] = ACTIONS(728), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(728), + [aux_sym_hostbased_authentication_token1] = ACTIONS(728), + [aux_sym_host_key_algorithms_token1] = ACTIONS(728), + [aux_sym_host_key_alias_token1] = ACTIONS(728), + [aux_sym_hostname_token1] = ACTIONS(728), + [aux_sym_identities_only_token1] = ACTIONS(728), + [aux_sym_identity_agent_token1] = ACTIONS(728), + [aux_sym_identity_file_token1] = ACTIONS(728), + [aux_sym_ignore_unknown_token1] = ACTIONS(728), + [aux_sym_include_token1] = ACTIONS(728), + [aux_sym_ip_qos_token1] = ACTIONS(728), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(728), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(728), + [aux_sym_kex_algorithms_token1] = ACTIONS(728), + [aux_sym_known_hosts_command_token1] = ACTIONS(728), + [aux_sym_local_command_token1] = ACTIONS(728), + [aux_sym_local_forward_token1] = ACTIONS(728), + [aux_sym_log_level_token1] = ACTIONS(728), + [aux_sym_log_verbose_token1] = ACTIONS(728), + [aux_sym_macs_token1] = ACTIONS(728), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(728), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(728), + [aux_sym_password_authentication_token1] = ACTIONS(728), + [aux_sym_permit_local_command_token1] = ACTIONS(728), + [aux_sym_permit_remote_open_token1] = ACTIONS(728), + [aux_sym_pkcs11_provider_token1] = ACTIONS(728), + [aux_sym_port_token1] = ACTIONS(728), + [aux_sym_preferred_authentications_token1] = ACTIONS(728), + [aux_sym_protocol_token1] = ACTIONS(728), + [aux_sym_proxy_command_token1] = ACTIONS(728), + [aux_sym_proxy_jump_token1] = ACTIONS(728), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(728), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(728), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(728), + [aux_sym_pubkey_authentication_token1] = ACTIONS(728), + [aux_sym_rekey_limit_token1] = ACTIONS(728), + [aux_sym_remote_command_token1] = ACTIONS(728), + [aux_sym_remote_forward_token1] = ACTIONS(728), + [aux_sym_request_tty_token1] = ACTIONS(728), + [aux_sym_required_rsa_size_token1] = ACTIONS(728), + [aux_sym_revoked_host_keys_token1] = ACTIONS(728), + [aux_sym_security_key_provider_token1] = ACTIONS(728), + [aux_sym_send_env_token1] = ACTIONS(728), + [aux_sym_server_alive_count_max_token1] = ACTIONS(728), + [aux_sym_server_alive_interval_token1] = ACTIONS(728), + [aux_sym_session_type_token1] = ACTIONS(728), + [aux_sym_set_env_token1] = ACTIONS(728), + [aux_sym_stdin_null_token1] = ACTIONS(728), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(728), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(728), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(728), + [aux_sym_syslog_facility_token1] = ACTIONS(728), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(728), + [aux_sym_keep_alive_token1] = ACTIONS(728), + [aux_sym_tunnel_token1] = ACTIONS(730), + [aux_sym_tunnel_device_token1] = ACTIONS(728), + [aux_sym_update_host_keys_token1] = ACTIONS(728), + [aux_sym_use_keychain_token1] = ACTIONS(728), + [aux_sym_use_roaming_token1] = ACTIONS(728), + [aux_sym_user_token1] = ACTIONS(730), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(728), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(728), + [aux_sym_visual_host_key_token1] = ACTIONS(728), + [aux_sym_xauth_location_token1] = ACTIONS(728), }, [770] = { - [ts_builtin_sym_end] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1541), - [aux_sym_match_token1] = ACTIONS(1539), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1539), - [aux_sym_address_family_token1] = ACTIONS(1539), - [aux_sym_batch_mode_token1] = ACTIONS(1539), - [aux_sym_bind_address_token1] = ACTIONS(1539), - [aux_sym_bind_interface_token1] = ACTIONS(1539), - [aux_sym_canonical_domains_token1] = ACTIONS(1539), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1539), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1539), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1539), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1539), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1539), - [aux_sym_certificate_file_token1] = ACTIONS(1539), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1539), - [aux_sym_check_host_ip_token1] = ACTIONS(1539), - [aux_sym_ciphers_token1] = ACTIONS(1539), - [aux_sym_cipher_token1] = ACTIONS(1541), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1539), - [aux_sym_compression_token1] = ACTIONS(1539), - [aux_sym_connection_attempts_token1] = ACTIONS(1539), - [aux_sym_connect_timeout_token1] = ACTIONS(1539), - [aux_sym_control_master_token1] = ACTIONS(1539), - [aux_sym_control_path_token1] = ACTIONS(1539), - [aux_sym_control_persist_token1] = ACTIONS(1539), - [aux_sym_dynamic_forward_token1] = ACTIONS(1539), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1539), - [aux_sym_escape_char_token1] = ACTIONS(1539), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1539), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1539), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1539), - [aux_sym_forward_agent_token1] = ACTIONS(1539), - [aux_sym_forward_x11_token1] = ACTIONS(1541), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1539), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1539), - [aux_sym_gateway_ports_token1] = ACTIONS(1539), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1539), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1539), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1539), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1539), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1539), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1539), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1539), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1539), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1539), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1539), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1539), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1539), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1539), - [aux_sym_host_key_alias_token1] = ACTIONS(1539), - [aux_sym_hostname_token1] = ACTIONS(1539), - [aux_sym_identities_only_token1] = ACTIONS(1539), - [aux_sym_identity_agent_token1] = ACTIONS(1539), - [aux_sym_identity_file_token1] = ACTIONS(1539), - [aux_sym_ignore_unknown_token1] = ACTIONS(1539), - [aux_sym_include_token1] = ACTIONS(1539), - [aux_sym_ip_qos_token1] = ACTIONS(1539), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1539), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1539), - [aux_sym_kex_algorithms_token1] = ACTIONS(1539), - [aux_sym_known_hosts_command_token1] = ACTIONS(1539), - [aux_sym_local_command_token1] = ACTIONS(1539), - [aux_sym_local_forward_token1] = ACTIONS(1539), - [aux_sym_log_level_token1] = ACTIONS(1539), - [aux_sym_log_verbose_token1] = ACTIONS(1539), - [aux_sym_macs_token1] = ACTIONS(1539), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1539), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1539), - [aux_sym_password_authentication_token1] = ACTIONS(1539), - [aux_sym_permit_local_command_token1] = ACTIONS(1539), - [aux_sym_permit_remote_open_token1] = ACTIONS(1539), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1539), - [aux_sym_port_token1] = ACTIONS(1539), - [aux_sym_preferred_authentications_token1] = ACTIONS(1539), - [aux_sym_protocol_token1] = ACTIONS(1539), - [aux_sym_proxy_command_token1] = ACTIONS(1539), - [aux_sym_proxy_jump_token1] = ACTIONS(1539), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1539), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1539), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1539), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1539), - [aux_sym_rekey_limit_token1] = ACTIONS(1539), - [aux_sym_remote_command_token1] = ACTIONS(1539), - [aux_sym_remote_forward_token1] = ACTIONS(1539), - [aux_sym_request_tty_token1] = ACTIONS(1539), - [aux_sym_required_rsa_size_token1] = ACTIONS(1539), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1539), - [aux_sym_security_key_provider_token1] = ACTIONS(1539), - [aux_sym_send_env_token1] = ACTIONS(1539), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1539), - [aux_sym_server_alive_interval_token1] = ACTIONS(1539), - [aux_sym_session_type_token1] = ACTIONS(1539), - [aux_sym_set_env_token1] = ACTIONS(1539), - [aux_sym_stdin_null_token1] = ACTIONS(1539), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1539), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1539), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1539), - [aux_sym_syslog_facility_token1] = ACTIONS(1539), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1539), - [aux_sym_keep_alive_token1] = ACTIONS(1539), - [aux_sym_tunnel_token1] = ACTIONS(1541), - [aux_sym_tunnel_device_token1] = ACTIONS(1539), - [aux_sym_update_host_keys_token1] = ACTIONS(1539), - [aux_sym_use_keychain_token1] = ACTIONS(1539), - [aux_sym_use_roaming_token1] = ACTIONS(1539), - [aux_sym_user_token1] = ACTIONS(1541), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1539), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1539), - [aux_sym_visual_host_key_token1] = ACTIONS(1539), - [aux_sym_xauth_location_token1] = ACTIONS(1539), + [ts_builtin_sym_end] = ACTIONS(1652), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1654), + [aux_sym_match_token1] = ACTIONS(1652), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1652), + [aux_sym_address_family_token1] = ACTIONS(1652), + [aux_sym_batch_mode_token1] = ACTIONS(1652), + [aux_sym_bind_address_token1] = ACTIONS(1652), + [aux_sym_bind_interface_token1] = ACTIONS(1652), + [aux_sym_canonical_domains_token1] = ACTIONS(1652), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1652), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1652), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1652), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1652), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1652), + [aux_sym_certificate_file_token1] = ACTIONS(1652), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1652), + [aux_sym_check_host_ip_token1] = ACTIONS(1652), + [aux_sym_ciphers_token1] = ACTIONS(1652), + [aux_sym_cipher_token1] = ACTIONS(1654), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1652), + [aux_sym_compression_token1] = ACTIONS(1652), + [aux_sym_connection_attempts_token1] = ACTIONS(1652), + [aux_sym_connect_timeout_token1] = ACTIONS(1652), + [aux_sym_control_master_token1] = ACTIONS(1652), + [aux_sym_control_path_token1] = ACTIONS(1652), + [aux_sym_control_persist_token1] = ACTIONS(1652), + [aux_sym_dynamic_forward_token1] = ACTIONS(1652), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1652), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1652), + [aux_sym_escape_char_token1] = ACTIONS(1652), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1652), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1652), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1652), + [aux_sym_forward_agent_token1] = ACTIONS(1652), + [aux_sym_forward_x11_token1] = ACTIONS(1654), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1652), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1652), + [aux_sym_gateway_ports_token1] = ACTIONS(1652), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1652), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1652), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1652), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1652), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1652), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1652), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1652), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1652), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1652), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1652), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1652), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1652), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1652), + [aux_sym_host_key_alias_token1] = ACTIONS(1652), + [aux_sym_hostname_token1] = ACTIONS(1652), + [aux_sym_identities_only_token1] = ACTIONS(1652), + [aux_sym_identity_agent_token1] = ACTIONS(1652), + [aux_sym_identity_file_token1] = ACTIONS(1652), + [aux_sym_ignore_unknown_token1] = ACTIONS(1652), + [aux_sym_include_token1] = ACTIONS(1652), + [aux_sym_ip_qos_token1] = ACTIONS(1652), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1652), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1652), + [aux_sym_kex_algorithms_token1] = ACTIONS(1652), + [aux_sym_known_hosts_command_token1] = ACTIONS(1652), + [aux_sym_local_command_token1] = ACTIONS(1652), + [aux_sym_local_forward_token1] = ACTIONS(1652), + [aux_sym_log_level_token1] = ACTIONS(1652), + [aux_sym_log_verbose_token1] = ACTIONS(1652), + [aux_sym_macs_token1] = ACTIONS(1652), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1652), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1652), + [aux_sym_password_authentication_token1] = ACTIONS(1652), + [aux_sym_permit_local_command_token1] = ACTIONS(1652), + [aux_sym_permit_remote_open_token1] = ACTIONS(1652), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1652), + [aux_sym_port_token1] = ACTIONS(1652), + [aux_sym_preferred_authentications_token1] = ACTIONS(1652), + [aux_sym_protocol_token1] = ACTIONS(1652), + [aux_sym_proxy_command_token1] = ACTIONS(1652), + [aux_sym_proxy_jump_token1] = ACTIONS(1652), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1652), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1652), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1652), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1652), + [aux_sym_rekey_limit_token1] = ACTIONS(1652), + [aux_sym_remote_command_token1] = ACTIONS(1652), + [aux_sym_remote_forward_token1] = ACTIONS(1652), + [aux_sym_request_tty_token1] = ACTIONS(1652), + [aux_sym_required_rsa_size_token1] = ACTIONS(1652), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1652), + [aux_sym_security_key_provider_token1] = ACTIONS(1652), + [aux_sym_send_env_token1] = ACTIONS(1652), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1652), + [aux_sym_server_alive_interval_token1] = ACTIONS(1652), + [aux_sym_session_type_token1] = ACTIONS(1652), + [aux_sym_set_env_token1] = ACTIONS(1652), + [aux_sym_stdin_null_token1] = ACTIONS(1652), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1652), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1652), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1652), + [aux_sym_syslog_facility_token1] = ACTIONS(1652), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1652), + [aux_sym_keep_alive_token1] = ACTIONS(1652), + [aux_sym_tunnel_token1] = ACTIONS(1654), + [aux_sym_tunnel_device_token1] = ACTIONS(1652), + [aux_sym_update_host_keys_token1] = ACTIONS(1652), + [aux_sym_use_keychain_token1] = ACTIONS(1652), + [aux_sym_use_roaming_token1] = ACTIONS(1652), + [aux_sym_user_token1] = ACTIONS(1654), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1652), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1652), + [aux_sym_visual_host_key_token1] = ACTIONS(1652), + [aux_sym_xauth_location_token1] = ACTIONS(1652), }, [771] = { - [ts_builtin_sym_end] = ACTIONS(1677), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1679), - [aux_sym_match_token1] = ACTIONS(1677), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1677), - [aux_sym_address_family_token1] = ACTIONS(1677), - [aux_sym_batch_mode_token1] = ACTIONS(1677), - [aux_sym_bind_address_token1] = ACTIONS(1677), - [aux_sym_bind_interface_token1] = ACTIONS(1677), - [aux_sym_canonical_domains_token1] = ACTIONS(1677), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1677), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1677), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1677), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1677), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1677), - [aux_sym_certificate_file_token1] = ACTIONS(1677), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1677), - [aux_sym_check_host_ip_token1] = ACTIONS(1677), - [aux_sym_ciphers_token1] = ACTIONS(1677), - [aux_sym_cipher_token1] = ACTIONS(1679), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1677), - [aux_sym_compression_token1] = ACTIONS(1677), - [aux_sym_connection_attempts_token1] = ACTIONS(1677), - [aux_sym_connect_timeout_token1] = ACTIONS(1677), - [aux_sym_control_master_token1] = ACTIONS(1677), - [aux_sym_control_path_token1] = ACTIONS(1677), - [aux_sym_control_persist_token1] = ACTIONS(1677), - [aux_sym_dynamic_forward_token1] = ACTIONS(1677), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1677), - [aux_sym_escape_char_token1] = ACTIONS(1677), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1677), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1677), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1677), - [aux_sym_forward_agent_token1] = ACTIONS(1677), - [aux_sym_forward_x11_token1] = ACTIONS(1679), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1677), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1677), - [aux_sym_gateway_ports_token1] = ACTIONS(1677), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1677), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1677), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1677), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1677), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1677), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1677), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1677), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1677), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1677), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1677), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1677), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1677), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1677), - [aux_sym_host_key_alias_token1] = ACTIONS(1677), - [aux_sym_hostname_token1] = ACTIONS(1677), - [aux_sym_identities_only_token1] = ACTIONS(1677), - [aux_sym_identity_agent_token1] = ACTIONS(1677), - [aux_sym_identity_file_token1] = ACTIONS(1677), - [aux_sym_ignore_unknown_token1] = ACTIONS(1677), - [aux_sym_include_token1] = ACTIONS(1677), - [aux_sym_ip_qos_token1] = ACTIONS(1677), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1677), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1677), - [aux_sym_kex_algorithms_token1] = ACTIONS(1677), - [aux_sym_known_hosts_command_token1] = ACTIONS(1677), - [aux_sym_local_command_token1] = ACTIONS(1677), - [aux_sym_local_forward_token1] = ACTIONS(1677), - [aux_sym_log_level_token1] = ACTIONS(1677), - [aux_sym_log_verbose_token1] = ACTIONS(1677), - [aux_sym_macs_token1] = ACTIONS(1677), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1677), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1677), - [aux_sym_password_authentication_token1] = ACTIONS(1677), - [aux_sym_permit_local_command_token1] = ACTIONS(1677), - [aux_sym_permit_remote_open_token1] = ACTIONS(1677), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1677), - [aux_sym_port_token1] = ACTIONS(1677), - [aux_sym_preferred_authentications_token1] = ACTIONS(1677), - [aux_sym_protocol_token1] = ACTIONS(1677), - [aux_sym_proxy_command_token1] = ACTIONS(1677), - [aux_sym_proxy_jump_token1] = ACTIONS(1677), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1677), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1677), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1677), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1677), - [aux_sym_rekey_limit_token1] = ACTIONS(1677), - [aux_sym_remote_command_token1] = ACTIONS(1677), - [aux_sym_remote_forward_token1] = ACTIONS(1677), - [aux_sym_request_tty_token1] = ACTIONS(1677), - [aux_sym_required_rsa_size_token1] = ACTIONS(1677), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1677), - [aux_sym_security_key_provider_token1] = ACTIONS(1677), - [aux_sym_send_env_token1] = ACTIONS(1677), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1677), - [aux_sym_server_alive_interval_token1] = ACTIONS(1677), - [aux_sym_session_type_token1] = ACTIONS(1677), - [aux_sym_set_env_token1] = ACTIONS(1677), - [aux_sym_stdin_null_token1] = ACTIONS(1677), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1677), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1677), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1677), - [aux_sym_syslog_facility_token1] = ACTIONS(1677), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1677), - [aux_sym_keep_alive_token1] = ACTIONS(1677), - [aux_sym_tunnel_token1] = ACTIONS(1679), - [aux_sym_tunnel_device_token1] = ACTIONS(1677), - [aux_sym_update_host_keys_token1] = ACTIONS(1677), - [aux_sym_use_keychain_token1] = ACTIONS(1677), - [aux_sym_use_roaming_token1] = ACTIONS(1677), - [aux_sym_user_token1] = ACTIONS(1679), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1677), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1677), - [aux_sym_visual_host_key_token1] = ACTIONS(1677), - [aux_sym_xauth_location_token1] = ACTIONS(1677), + [ts_builtin_sym_end] = ACTIONS(1706), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1708), + [aux_sym_match_token1] = ACTIONS(1706), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1706), + [aux_sym_address_family_token1] = ACTIONS(1706), + [aux_sym_batch_mode_token1] = ACTIONS(1706), + [aux_sym_bind_address_token1] = ACTIONS(1706), + [aux_sym_bind_interface_token1] = ACTIONS(1706), + [aux_sym_canonical_domains_token1] = ACTIONS(1706), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1706), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1706), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1706), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1706), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1706), + [aux_sym_certificate_file_token1] = ACTIONS(1706), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1706), + [aux_sym_check_host_ip_token1] = ACTIONS(1706), + [aux_sym_ciphers_token1] = ACTIONS(1706), + [aux_sym_cipher_token1] = ACTIONS(1708), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1706), + [aux_sym_compression_token1] = ACTIONS(1706), + [aux_sym_connection_attempts_token1] = ACTIONS(1706), + [aux_sym_connect_timeout_token1] = ACTIONS(1706), + [aux_sym_control_master_token1] = ACTIONS(1706), + [aux_sym_control_path_token1] = ACTIONS(1706), + [aux_sym_control_persist_token1] = ACTIONS(1706), + [aux_sym_dynamic_forward_token1] = ACTIONS(1706), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1706), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1706), + [aux_sym_escape_char_token1] = ACTIONS(1706), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1706), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1706), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1706), + [aux_sym_forward_agent_token1] = ACTIONS(1706), + [aux_sym_forward_x11_token1] = ACTIONS(1708), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1706), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1706), + [aux_sym_gateway_ports_token1] = ACTIONS(1706), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1706), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1706), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1706), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1706), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1706), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1706), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1706), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1706), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1706), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1706), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1706), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1706), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1706), + [aux_sym_host_key_alias_token1] = ACTIONS(1706), + [aux_sym_hostname_token1] = ACTIONS(1706), + [aux_sym_identities_only_token1] = ACTIONS(1706), + [aux_sym_identity_agent_token1] = ACTIONS(1706), + [aux_sym_identity_file_token1] = ACTIONS(1706), + [aux_sym_ignore_unknown_token1] = ACTIONS(1706), + [aux_sym_include_token1] = ACTIONS(1706), + [aux_sym_ip_qos_token1] = ACTIONS(1706), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1706), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1706), + [aux_sym_kex_algorithms_token1] = ACTIONS(1706), + [aux_sym_known_hosts_command_token1] = ACTIONS(1706), + [aux_sym_local_command_token1] = ACTIONS(1706), + [aux_sym_local_forward_token1] = ACTIONS(1706), + [aux_sym_log_level_token1] = ACTIONS(1706), + [aux_sym_log_verbose_token1] = ACTIONS(1706), + [aux_sym_macs_token1] = ACTIONS(1706), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1706), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1706), + [aux_sym_password_authentication_token1] = ACTIONS(1706), + [aux_sym_permit_local_command_token1] = ACTIONS(1706), + [aux_sym_permit_remote_open_token1] = ACTIONS(1706), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1706), + [aux_sym_port_token1] = ACTIONS(1706), + [aux_sym_preferred_authentications_token1] = ACTIONS(1706), + [aux_sym_protocol_token1] = ACTIONS(1706), + [aux_sym_proxy_command_token1] = ACTIONS(1706), + [aux_sym_proxy_jump_token1] = ACTIONS(1706), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1706), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1706), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1706), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1706), + [aux_sym_rekey_limit_token1] = ACTIONS(1706), + [aux_sym_remote_command_token1] = ACTIONS(1706), + [aux_sym_remote_forward_token1] = ACTIONS(1706), + [aux_sym_request_tty_token1] = ACTIONS(1706), + [aux_sym_required_rsa_size_token1] = ACTIONS(1706), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1706), + [aux_sym_security_key_provider_token1] = ACTIONS(1706), + [aux_sym_send_env_token1] = ACTIONS(1706), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1706), + [aux_sym_server_alive_interval_token1] = ACTIONS(1706), + [aux_sym_session_type_token1] = ACTIONS(1706), + [aux_sym_set_env_token1] = ACTIONS(1706), + [aux_sym_stdin_null_token1] = ACTIONS(1706), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1706), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1706), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1706), + [aux_sym_syslog_facility_token1] = ACTIONS(1706), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1706), + [aux_sym_keep_alive_token1] = ACTIONS(1706), + [aux_sym_tunnel_token1] = ACTIONS(1708), + [aux_sym_tunnel_device_token1] = ACTIONS(1706), + [aux_sym_update_host_keys_token1] = ACTIONS(1706), + [aux_sym_use_keychain_token1] = ACTIONS(1706), + [aux_sym_use_roaming_token1] = ACTIONS(1706), + [aux_sym_user_token1] = ACTIONS(1708), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1706), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1706), + [aux_sym_visual_host_key_token1] = ACTIONS(1706), + [aux_sym_xauth_location_token1] = ACTIONS(1706), }, [772] = { - [ts_builtin_sym_end] = ACTIONS(1545), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1547), - [aux_sym_match_token1] = ACTIONS(1545), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1545), - [aux_sym_address_family_token1] = ACTIONS(1545), - [aux_sym_batch_mode_token1] = ACTIONS(1545), - [aux_sym_bind_address_token1] = ACTIONS(1545), - [aux_sym_bind_interface_token1] = ACTIONS(1545), - [aux_sym_canonical_domains_token1] = ACTIONS(1545), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1545), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1545), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1545), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1545), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1545), - [aux_sym_certificate_file_token1] = ACTIONS(1545), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1545), - [aux_sym_check_host_ip_token1] = ACTIONS(1545), - [aux_sym_ciphers_token1] = ACTIONS(1545), - [aux_sym_cipher_token1] = ACTIONS(1547), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1545), - [aux_sym_compression_token1] = ACTIONS(1545), - [aux_sym_connection_attempts_token1] = ACTIONS(1545), - [aux_sym_connect_timeout_token1] = ACTIONS(1545), - [aux_sym_control_master_token1] = ACTIONS(1545), - [aux_sym_control_path_token1] = ACTIONS(1545), - [aux_sym_control_persist_token1] = ACTIONS(1545), - [aux_sym_dynamic_forward_token1] = ACTIONS(1545), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1545), - [aux_sym_escape_char_token1] = ACTIONS(1545), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1545), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1545), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1545), - [aux_sym_forward_agent_token1] = ACTIONS(1545), - [aux_sym_forward_x11_token1] = ACTIONS(1547), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1545), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1545), - [aux_sym_gateway_ports_token1] = ACTIONS(1545), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1545), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1545), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1545), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1545), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1545), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1545), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1545), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1545), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1545), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1545), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1545), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1545), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1545), - [aux_sym_host_key_alias_token1] = ACTIONS(1545), - [aux_sym_hostname_token1] = ACTIONS(1545), - [aux_sym_identities_only_token1] = ACTIONS(1545), - [aux_sym_identity_agent_token1] = ACTIONS(1545), - [aux_sym_identity_file_token1] = ACTIONS(1545), - [aux_sym_ignore_unknown_token1] = ACTIONS(1545), - [aux_sym_include_token1] = ACTIONS(1545), - [aux_sym_ip_qos_token1] = ACTIONS(1545), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1545), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1545), - [aux_sym_kex_algorithms_token1] = ACTIONS(1545), - [aux_sym_known_hosts_command_token1] = ACTIONS(1545), - [aux_sym_local_command_token1] = ACTIONS(1545), - [aux_sym_local_forward_token1] = ACTIONS(1545), - [aux_sym_log_level_token1] = ACTIONS(1545), - [aux_sym_log_verbose_token1] = ACTIONS(1545), - [aux_sym_macs_token1] = ACTIONS(1545), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1545), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1545), - [aux_sym_password_authentication_token1] = ACTIONS(1545), - [aux_sym_permit_local_command_token1] = ACTIONS(1545), - [aux_sym_permit_remote_open_token1] = ACTIONS(1545), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1545), - [aux_sym_port_token1] = ACTIONS(1545), - [aux_sym_preferred_authentications_token1] = ACTIONS(1545), - [aux_sym_protocol_token1] = ACTIONS(1545), - [aux_sym_proxy_command_token1] = ACTIONS(1545), - [aux_sym_proxy_jump_token1] = ACTIONS(1545), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1545), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1545), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1545), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1545), - [aux_sym_rekey_limit_token1] = ACTIONS(1545), - [aux_sym_remote_command_token1] = ACTIONS(1545), - [aux_sym_remote_forward_token1] = ACTIONS(1545), - [aux_sym_request_tty_token1] = ACTIONS(1545), - [aux_sym_required_rsa_size_token1] = ACTIONS(1545), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1545), - [aux_sym_security_key_provider_token1] = ACTIONS(1545), - [aux_sym_send_env_token1] = ACTIONS(1545), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1545), - [aux_sym_server_alive_interval_token1] = ACTIONS(1545), - [aux_sym_session_type_token1] = ACTIONS(1545), - [aux_sym_set_env_token1] = ACTIONS(1545), - [aux_sym_stdin_null_token1] = ACTIONS(1545), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1545), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1545), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1545), - [aux_sym_syslog_facility_token1] = ACTIONS(1545), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1545), - [aux_sym_keep_alive_token1] = ACTIONS(1545), - [aux_sym_tunnel_token1] = ACTIONS(1547), - [aux_sym_tunnel_device_token1] = ACTIONS(1545), - [aux_sym_update_host_keys_token1] = ACTIONS(1545), - [aux_sym_use_keychain_token1] = ACTIONS(1545), - [aux_sym_use_roaming_token1] = ACTIONS(1545), - [aux_sym_user_token1] = ACTIONS(1547), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1545), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1545), - [aux_sym_visual_host_key_token1] = ACTIONS(1545), - [aux_sym_xauth_location_token1] = ACTIONS(1545), + [ts_builtin_sym_end] = ACTIONS(1658), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1660), + [aux_sym_match_token1] = ACTIONS(1658), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1658), + [aux_sym_address_family_token1] = ACTIONS(1658), + [aux_sym_batch_mode_token1] = ACTIONS(1658), + [aux_sym_bind_address_token1] = ACTIONS(1658), + [aux_sym_bind_interface_token1] = ACTIONS(1658), + [aux_sym_canonical_domains_token1] = ACTIONS(1658), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1658), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1658), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1658), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1658), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1658), + [aux_sym_certificate_file_token1] = ACTIONS(1658), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1658), + [aux_sym_check_host_ip_token1] = ACTIONS(1658), + [aux_sym_ciphers_token1] = ACTIONS(1658), + [aux_sym_cipher_token1] = ACTIONS(1660), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1658), + [aux_sym_compression_token1] = ACTIONS(1658), + [aux_sym_connection_attempts_token1] = ACTIONS(1658), + [aux_sym_connect_timeout_token1] = ACTIONS(1658), + [aux_sym_control_master_token1] = ACTIONS(1658), + [aux_sym_control_path_token1] = ACTIONS(1658), + [aux_sym_control_persist_token1] = ACTIONS(1658), + [aux_sym_dynamic_forward_token1] = ACTIONS(1658), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1658), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1658), + [aux_sym_escape_char_token1] = ACTIONS(1658), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1658), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1658), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1658), + [aux_sym_forward_agent_token1] = ACTIONS(1658), + [aux_sym_forward_x11_token1] = ACTIONS(1660), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1658), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1658), + [aux_sym_gateway_ports_token1] = ACTIONS(1658), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1658), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1658), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1658), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1658), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1658), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1658), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1658), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1658), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1658), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1658), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1658), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1658), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1658), + [aux_sym_host_key_alias_token1] = ACTIONS(1658), + [aux_sym_hostname_token1] = ACTIONS(1658), + [aux_sym_identities_only_token1] = ACTIONS(1658), + [aux_sym_identity_agent_token1] = ACTIONS(1658), + [aux_sym_identity_file_token1] = ACTIONS(1658), + [aux_sym_ignore_unknown_token1] = ACTIONS(1658), + [aux_sym_include_token1] = ACTIONS(1658), + [aux_sym_ip_qos_token1] = ACTIONS(1658), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1658), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1658), + [aux_sym_kex_algorithms_token1] = ACTIONS(1658), + [aux_sym_known_hosts_command_token1] = ACTIONS(1658), + [aux_sym_local_command_token1] = ACTIONS(1658), + [aux_sym_local_forward_token1] = ACTIONS(1658), + [aux_sym_log_level_token1] = ACTIONS(1658), + [aux_sym_log_verbose_token1] = ACTIONS(1658), + [aux_sym_macs_token1] = ACTIONS(1658), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1658), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1658), + [aux_sym_password_authentication_token1] = ACTIONS(1658), + [aux_sym_permit_local_command_token1] = ACTIONS(1658), + [aux_sym_permit_remote_open_token1] = ACTIONS(1658), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1658), + [aux_sym_port_token1] = ACTIONS(1658), + [aux_sym_preferred_authentications_token1] = ACTIONS(1658), + [aux_sym_protocol_token1] = ACTIONS(1658), + [aux_sym_proxy_command_token1] = ACTIONS(1658), + [aux_sym_proxy_jump_token1] = ACTIONS(1658), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1658), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1658), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1658), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1658), + [aux_sym_rekey_limit_token1] = ACTIONS(1658), + [aux_sym_remote_command_token1] = ACTIONS(1658), + [aux_sym_remote_forward_token1] = ACTIONS(1658), + [aux_sym_request_tty_token1] = ACTIONS(1658), + [aux_sym_required_rsa_size_token1] = ACTIONS(1658), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1658), + [aux_sym_security_key_provider_token1] = ACTIONS(1658), + [aux_sym_send_env_token1] = ACTIONS(1658), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1658), + [aux_sym_server_alive_interval_token1] = ACTIONS(1658), + [aux_sym_session_type_token1] = ACTIONS(1658), + [aux_sym_set_env_token1] = ACTIONS(1658), + [aux_sym_stdin_null_token1] = ACTIONS(1658), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1658), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1658), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1658), + [aux_sym_syslog_facility_token1] = ACTIONS(1658), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1658), + [aux_sym_keep_alive_token1] = ACTIONS(1658), + [aux_sym_tunnel_token1] = ACTIONS(1660), + [aux_sym_tunnel_device_token1] = ACTIONS(1658), + [aux_sym_update_host_keys_token1] = ACTIONS(1658), + [aux_sym_use_keychain_token1] = ACTIONS(1658), + [aux_sym_use_roaming_token1] = ACTIONS(1658), + [aux_sym_user_token1] = ACTIONS(1660), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1658), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1658), + [aux_sym_visual_host_key_token1] = ACTIONS(1658), + [aux_sym_xauth_location_token1] = ACTIONS(1658), }, [773] = { - [ts_builtin_sym_end] = ACTIONS(1581), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1583), - [aux_sym_match_token1] = ACTIONS(1581), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1581), - [aux_sym_address_family_token1] = ACTIONS(1581), - [aux_sym_batch_mode_token1] = ACTIONS(1581), - [aux_sym_bind_address_token1] = ACTIONS(1581), - [aux_sym_bind_interface_token1] = ACTIONS(1581), - [aux_sym_canonical_domains_token1] = ACTIONS(1581), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1581), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1581), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1581), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1581), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1581), - [aux_sym_certificate_file_token1] = ACTIONS(1581), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1581), - [aux_sym_check_host_ip_token1] = ACTIONS(1581), - [aux_sym_ciphers_token1] = ACTIONS(1581), - [aux_sym_cipher_token1] = ACTIONS(1583), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1581), - [aux_sym_compression_token1] = ACTIONS(1581), - [aux_sym_connection_attempts_token1] = ACTIONS(1581), - [aux_sym_connect_timeout_token1] = ACTIONS(1581), - [aux_sym_control_master_token1] = ACTIONS(1581), - [aux_sym_control_path_token1] = ACTIONS(1581), - [aux_sym_control_persist_token1] = ACTIONS(1581), - [aux_sym_dynamic_forward_token1] = ACTIONS(1581), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1581), - [aux_sym_escape_char_token1] = ACTIONS(1581), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1581), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1581), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1581), - [aux_sym_forward_agent_token1] = ACTIONS(1581), - [aux_sym_forward_x11_token1] = ACTIONS(1583), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1581), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1581), - [aux_sym_gateway_ports_token1] = ACTIONS(1581), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1581), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1581), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1581), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1581), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1581), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1581), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1581), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1581), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1581), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1581), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1581), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1581), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1581), - [aux_sym_host_key_alias_token1] = ACTIONS(1581), - [aux_sym_hostname_token1] = ACTIONS(1581), - [aux_sym_identities_only_token1] = ACTIONS(1581), - [aux_sym_identity_agent_token1] = ACTIONS(1581), - [aux_sym_identity_file_token1] = ACTIONS(1581), - [aux_sym_ignore_unknown_token1] = ACTIONS(1581), - [aux_sym_include_token1] = ACTIONS(1581), - [aux_sym_ip_qos_token1] = ACTIONS(1581), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1581), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1581), - [aux_sym_kex_algorithms_token1] = ACTIONS(1581), - [aux_sym_known_hosts_command_token1] = ACTIONS(1581), - [aux_sym_local_command_token1] = ACTIONS(1581), - [aux_sym_local_forward_token1] = ACTIONS(1581), - [aux_sym_log_level_token1] = ACTIONS(1581), - [aux_sym_log_verbose_token1] = ACTIONS(1581), - [aux_sym_macs_token1] = ACTIONS(1581), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1581), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1581), - [aux_sym_password_authentication_token1] = ACTIONS(1581), - [aux_sym_permit_local_command_token1] = ACTIONS(1581), - [aux_sym_permit_remote_open_token1] = ACTIONS(1581), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1581), - [aux_sym_port_token1] = ACTIONS(1581), - [aux_sym_preferred_authentications_token1] = ACTIONS(1581), - [aux_sym_protocol_token1] = ACTIONS(1581), - [aux_sym_proxy_command_token1] = ACTIONS(1581), - [aux_sym_proxy_jump_token1] = ACTIONS(1581), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1581), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1581), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1581), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1581), - [aux_sym_rekey_limit_token1] = ACTIONS(1581), - [aux_sym_remote_command_token1] = ACTIONS(1581), - [aux_sym_remote_forward_token1] = ACTIONS(1581), - [aux_sym_request_tty_token1] = ACTIONS(1581), - [aux_sym_required_rsa_size_token1] = ACTIONS(1581), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1581), - [aux_sym_security_key_provider_token1] = ACTIONS(1581), - [aux_sym_send_env_token1] = ACTIONS(1581), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1581), - [aux_sym_server_alive_interval_token1] = ACTIONS(1581), - [aux_sym_session_type_token1] = ACTIONS(1581), - [aux_sym_set_env_token1] = ACTIONS(1581), - [aux_sym_stdin_null_token1] = ACTIONS(1581), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1581), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1581), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1581), - [aux_sym_syslog_facility_token1] = ACTIONS(1581), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1581), - [aux_sym_keep_alive_token1] = ACTIONS(1581), - [aux_sym_tunnel_token1] = ACTIONS(1583), - [aux_sym_tunnel_device_token1] = ACTIONS(1581), - [aux_sym_update_host_keys_token1] = ACTIONS(1581), - [aux_sym_use_keychain_token1] = ACTIONS(1581), - [aux_sym_use_roaming_token1] = ACTIONS(1581), - [aux_sym_user_token1] = ACTIONS(1583), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1581), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1581), - [aux_sym_visual_host_key_token1] = ACTIONS(1581), - [aux_sym_xauth_location_token1] = ACTIONS(1581), + [ts_builtin_sym_end] = ACTIONS(1664), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1666), + [aux_sym_match_token1] = ACTIONS(1664), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1664), + [aux_sym_address_family_token1] = ACTIONS(1664), + [aux_sym_batch_mode_token1] = ACTIONS(1664), + [aux_sym_bind_address_token1] = ACTIONS(1664), + [aux_sym_bind_interface_token1] = ACTIONS(1664), + [aux_sym_canonical_domains_token1] = ACTIONS(1664), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1664), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1664), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1664), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1664), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1664), + [aux_sym_certificate_file_token1] = ACTIONS(1664), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1664), + [aux_sym_check_host_ip_token1] = ACTIONS(1664), + [aux_sym_ciphers_token1] = ACTIONS(1664), + [aux_sym_cipher_token1] = ACTIONS(1666), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1664), + [aux_sym_compression_token1] = ACTIONS(1664), + [aux_sym_connection_attempts_token1] = ACTIONS(1664), + [aux_sym_connect_timeout_token1] = ACTIONS(1664), + [aux_sym_control_master_token1] = ACTIONS(1664), + [aux_sym_control_path_token1] = ACTIONS(1664), + [aux_sym_control_persist_token1] = ACTIONS(1664), + [aux_sym_dynamic_forward_token1] = ACTIONS(1664), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1664), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1664), + [aux_sym_escape_char_token1] = ACTIONS(1664), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1664), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1664), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1664), + [aux_sym_forward_agent_token1] = ACTIONS(1664), + [aux_sym_forward_x11_token1] = ACTIONS(1666), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1664), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1664), + [aux_sym_gateway_ports_token1] = ACTIONS(1664), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1664), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1664), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1664), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1664), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1664), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1664), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1664), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1664), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1664), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1664), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1664), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1664), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1664), + [aux_sym_host_key_alias_token1] = ACTIONS(1664), + [aux_sym_hostname_token1] = ACTIONS(1664), + [aux_sym_identities_only_token1] = ACTIONS(1664), + [aux_sym_identity_agent_token1] = ACTIONS(1664), + [aux_sym_identity_file_token1] = ACTIONS(1664), + [aux_sym_ignore_unknown_token1] = ACTIONS(1664), + [aux_sym_include_token1] = ACTIONS(1664), + [aux_sym_ip_qos_token1] = ACTIONS(1664), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1664), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1664), + [aux_sym_kex_algorithms_token1] = ACTIONS(1664), + [aux_sym_known_hosts_command_token1] = ACTIONS(1664), + [aux_sym_local_command_token1] = ACTIONS(1664), + [aux_sym_local_forward_token1] = ACTIONS(1664), + [aux_sym_log_level_token1] = ACTIONS(1664), + [aux_sym_log_verbose_token1] = ACTIONS(1664), + [aux_sym_macs_token1] = ACTIONS(1664), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1664), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1664), + [aux_sym_password_authentication_token1] = ACTIONS(1664), + [aux_sym_permit_local_command_token1] = ACTIONS(1664), + [aux_sym_permit_remote_open_token1] = ACTIONS(1664), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1664), + [aux_sym_port_token1] = ACTIONS(1664), + [aux_sym_preferred_authentications_token1] = ACTIONS(1664), + [aux_sym_protocol_token1] = ACTIONS(1664), + [aux_sym_proxy_command_token1] = ACTIONS(1664), + [aux_sym_proxy_jump_token1] = ACTIONS(1664), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1664), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1664), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1664), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1664), + [aux_sym_rekey_limit_token1] = ACTIONS(1664), + [aux_sym_remote_command_token1] = ACTIONS(1664), + [aux_sym_remote_forward_token1] = ACTIONS(1664), + [aux_sym_request_tty_token1] = ACTIONS(1664), + [aux_sym_required_rsa_size_token1] = ACTIONS(1664), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1664), + [aux_sym_security_key_provider_token1] = ACTIONS(1664), + [aux_sym_send_env_token1] = ACTIONS(1664), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1664), + [aux_sym_server_alive_interval_token1] = ACTIONS(1664), + [aux_sym_session_type_token1] = ACTIONS(1664), + [aux_sym_set_env_token1] = ACTIONS(1664), + [aux_sym_stdin_null_token1] = ACTIONS(1664), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1664), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1664), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1664), + [aux_sym_syslog_facility_token1] = ACTIONS(1664), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1664), + [aux_sym_keep_alive_token1] = ACTIONS(1664), + [aux_sym_tunnel_token1] = ACTIONS(1666), + [aux_sym_tunnel_device_token1] = ACTIONS(1664), + [aux_sym_update_host_keys_token1] = ACTIONS(1664), + [aux_sym_use_keychain_token1] = ACTIONS(1664), + [aux_sym_use_roaming_token1] = ACTIONS(1664), + [aux_sym_user_token1] = ACTIONS(1666), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1664), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1664), + [aux_sym_visual_host_key_token1] = ACTIONS(1664), + [aux_sym_xauth_location_token1] = ACTIONS(1664), }, [774] = { - [ts_builtin_sym_end] = ACTIONS(1671), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1673), - [aux_sym_match_token1] = ACTIONS(1671), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1671), - [aux_sym_address_family_token1] = ACTIONS(1671), - [aux_sym_batch_mode_token1] = ACTIONS(1671), - [aux_sym_bind_address_token1] = ACTIONS(1671), - [aux_sym_bind_interface_token1] = ACTIONS(1671), - [aux_sym_canonical_domains_token1] = ACTIONS(1671), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1671), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1671), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1671), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1671), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1671), - [aux_sym_certificate_file_token1] = ACTIONS(1671), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1671), - [aux_sym_check_host_ip_token1] = ACTIONS(1671), - [aux_sym_ciphers_token1] = ACTIONS(1671), - [aux_sym_cipher_token1] = ACTIONS(1673), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1671), - [aux_sym_compression_token1] = ACTIONS(1671), - [aux_sym_connection_attempts_token1] = ACTIONS(1671), - [aux_sym_connect_timeout_token1] = ACTIONS(1671), - [aux_sym_control_master_token1] = ACTIONS(1671), - [aux_sym_control_path_token1] = ACTIONS(1671), - [aux_sym_control_persist_token1] = ACTIONS(1671), - [aux_sym_dynamic_forward_token1] = ACTIONS(1671), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1671), - [aux_sym_escape_char_token1] = ACTIONS(1671), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1671), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1671), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1671), - [aux_sym_forward_agent_token1] = ACTIONS(1671), - [aux_sym_forward_x11_token1] = ACTIONS(1673), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1671), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1671), - [aux_sym_gateway_ports_token1] = ACTIONS(1671), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1671), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1671), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1671), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1671), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1671), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1671), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1671), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1671), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1671), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1671), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1671), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1671), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1671), - [aux_sym_host_key_alias_token1] = ACTIONS(1671), - [aux_sym_hostname_token1] = ACTIONS(1671), - [aux_sym_identities_only_token1] = ACTIONS(1671), - [aux_sym_identity_agent_token1] = ACTIONS(1671), - [aux_sym_identity_file_token1] = ACTIONS(1671), - [aux_sym_ignore_unknown_token1] = ACTIONS(1671), - [aux_sym_include_token1] = ACTIONS(1671), - [aux_sym_ip_qos_token1] = ACTIONS(1671), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1671), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1671), - [aux_sym_kex_algorithms_token1] = ACTIONS(1671), - [aux_sym_known_hosts_command_token1] = ACTIONS(1671), - [aux_sym_local_command_token1] = ACTIONS(1671), - [aux_sym_local_forward_token1] = ACTIONS(1671), - [aux_sym_log_level_token1] = ACTIONS(1671), - [aux_sym_log_verbose_token1] = ACTIONS(1671), - [aux_sym_macs_token1] = ACTIONS(1671), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1671), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1671), - [aux_sym_password_authentication_token1] = ACTIONS(1671), - [aux_sym_permit_local_command_token1] = ACTIONS(1671), - [aux_sym_permit_remote_open_token1] = ACTIONS(1671), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1671), - [aux_sym_port_token1] = ACTIONS(1671), - [aux_sym_preferred_authentications_token1] = ACTIONS(1671), - [aux_sym_protocol_token1] = ACTIONS(1671), - [aux_sym_proxy_command_token1] = ACTIONS(1671), - [aux_sym_proxy_jump_token1] = ACTIONS(1671), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1671), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1671), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1671), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1671), - [aux_sym_rekey_limit_token1] = ACTIONS(1671), - [aux_sym_remote_command_token1] = ACTIONS(1671), - [aux_sym_remote_forward_token1] = ACTIONS(1671), - [aux_sym_request_tty_token1] = ACTIONS(1671), - [aux_sym_required_rsa_size_token1] = ACTIONS(1671), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1671), - [aux_sym_security_key_provider_token1] = ACTIONS(1671), - [aux_sym_send_env_token1] = ACTIONS(1671), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1671), - [aux_sym_server_alive_interval_token1] = ACTIONS(1671), - [aux_sym_session_type_token1] = ACTIONS(1671), - [aux_sym_set_env_token1] = ACTIONS(1671), - [aux_sym_stdin_null_token1] = ACTIONS(1671), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1671), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1671), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1671), - [aux_sym_syslog_facility_token1] = ACTIONS(1671), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1671), - [aux_sym_keep_alive_token1] = ACTIONS(1671), - [aux_sym_tunnel_token1] = ACTIONS(1673), - [aux_sym_tunnel_device_token1] = ACTIONS(1671), - [aux_sym_update_host_keys_token1] = ACTIONS(1671), - [aux_sym_use_keychain_token1] = ACTIONS(1671), - [aux_sym_use_roaming_token1] = ACTIONS(1671), - [aux_sym_user_token1] = ACTIONS(1673), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1671), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1671), - [aux_sym_visual_host_key_token1] = ACTIONS(1671), - [aux_sym_xauth_location_token1] = ACTIONS(1671), + [ts_builtin_sym_end] = ACTIONS(1700), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1702), + [aux_sym_match_token1] = ACTIONS(1700), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1700), + [aux_sym_address_family_token1] = ACTIONS(1700), + [aux_sym_batch_mode_token1] = ACTIONS(1700), + [aux_sym_bind_address_token1] = ACTIONS(1700), + [aux_sym_bind_interface_token1] = ACTIONS(1700), + [aux_sym_canonical_domains_token1] = ACTIONS(1700), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1700), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1700), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1700), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1700), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1700), + [aux_sym_certificate_file_token1] = ACTIONS(1700), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1700), + [aux_sym_check_host_ip_token1] = ACTIONS(1700), + [aux_sym_ciphers_token1] = ACTIONS(1700), + [aux_sym_cipher_token1] = ACTIONS(1702), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1700), + [aux_sym_compression_token1] = ACTIONS(1700), + [aux_sym_connection_attempts_token1] = ACTIONS(1700), + [aux_sym_connect_timeout_token1] = ACTIONS(1700), + [aux_sym_control_master_token1] = ACTIONS(1700), + [aux_sym_control_path_token1] = ACTIONS(1700), + [aux_sym_control_persist_token1] = ACTIONS(1700), + [aux_sym_dynamic_forward_token1] = ACTIONS(1700), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1700), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1700), + [aux_sym_escape_char_token1] = ACTIONS(1700), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1700), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1700), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1700), + [aux_sym_forward_agent_token1] = ACTIONS(1700), + [aux_sym_forward_x11_token1] = ACTIONS(1702), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1700), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1700), + [aux_sym_gateway_ports_token1] = ACTIONS(1700), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1700), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1700), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1700), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1700), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1700), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1700), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1700), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1700), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1700), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1700), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1700), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1700), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1700), + [aux_sym_host_key_alias_token1] = ACTIONS(1700), + [aux_sym_hostname_token1] = ACTIONS(1700), + [aux_sym_identities_only_token1] = ACTIONS(1700), + [aux_sym_identity_agent_token1] = ACTIONS(1700), + [aux_sym_identity_file_token1] = ACTIONS(1700), + [aux_sym_ignore_unknown_token1] = ACTIONS(1700), + [aux_sym_include_token1] = ACTIONS(1700), + [aux_sym_ip_qos_token1] = ACTIONS(1700), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1700), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1700), + [aux_sym_kex_algorithms_token1] = ACTIONS(1700), + [aux_sym_known_hosts_command_token1] = ACTIONS(1700), + [aux_sym_local_command_token1] = ACTIONS(1700), + [aux_sym_local_forward_token1] = ACTIONS(1700), + [aux_sym_log_level_token1] = ACTIONS(1700), + [aux_sym_log_verbose_token1] = ACTIONS(1700), + [aux_sym_macs_token1] = ACTIONS(1700), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1700), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1700), + [aux_sym_password_authentication_token1] = ACTIONS(1700), + [aux_sym_permit_local_command_token1] = ACTIONS(1700), + [aux_sym_permit_remote_open_token1] = ACTIONS(1700), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1700), + [aux_sym_port_token1] = ACTIONS(1700), + [aux_sym_preferred_authentications_token1] = ACTIONS(1700), + [aux_sym_protocol_token1] = ACTIONS(1700), + [aux_sym_proxy_command_token1] = ACTIONS(1700), + [aux_sym_proxy_jump_token1] = ACTIONS(1700), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1700), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1700), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1700), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1700), + [aux_sym_rekey_limit_token1] = ACTIONS(1700), + [aux_sym_remote_command_token1] = ACTIONS(1700), + [aux_sym_remote_forward_token1] = ACTIONS(1700), + [aux_sym_request_tty_token1] = ACTIONS(1700), + [aux_sym_required_rsa_size_token1] = ACTIONS(1700), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1700), + [aux_sym_security_key_provider_token1] = ACTIONS(1700), + [aux_sym_send_env_token1] = ACTIONS(1700), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1700), + [aux_sym_server_alive_interval_token1] = ACTIONS(1700), + [aux_sym_session_type_token1] = ACTIONS(1700), + [aux_sym_set_env_token1] = ACTIONS(1700), + [aux_sym_stdin_null_token1] = ACTIONS(1700), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1700), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1700), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1700), + [aux_sym_syslog_facility_token1] = ACTIONS(1700), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1700), + [aux_sym_keep_alive_token1] = ACTIONS(1700), + [aux_sym_tunnel_token1] = ACTIONS(1702), + [aux_sym_tunnel_device_token1] = ACTIONS(1700), + [aux_sym_update_host_keys_token1] = ACTIONS(1700), + [aux_sym_use_keychain_token1] = ACTIONS(1700), + [aux_sym_use_roaming_token1] = ACTIONS(1700), + [aux_sym_user_token1] = ACTIONS(1702), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1700), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1700), + [aux_sym_visual_host_key_token1] = ACTIONS(1700), + [aux_sym_xauth_location_token1] = ACTIONS(1700), }, [775] = { - [ts_builtin_sym_end] = ACTIONS(1551), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1553), - [aux_sym_match_token1] = ACTIONS(1551), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1551), - [aux_sym_address_family_token1] = ACTIONS(1551), - [aux_sym_batch_mode_token1] = ACTIONS(1551), - [aux_sym_bind_address_token1] = ACTIONS(1551), - [aux_sym_bind_interface_token1] = ACTIONS(1551), - [aux_sym_canonical_domains_token1] = ACTIONS(1551), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1551), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1551), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1551), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1551), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1551), - [aux_sym_certificate_file_token1] = ACTIONS(1551), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1551), - [aux_sym_check_host_ip_token1] = ACTIONS(1551), - [aux_sym_ciphers_token1] = ACTIONS(1551), - [aux_sym_cipher_token1] = ACTIONS(1553), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1551), - [aux_sym_compression_token1] = ACTIONS(1551), - [aux_sym_connection_attempts_token1] = ACTIONS(1551), - [aux_sym_connect_timeout_token1] = ACTIONS(1551), - [aux_sym_control_master_token1] = ACTIONS(1551), - [aux_sym_control_path_token1] = ACTIONS(1551), - [aux_sym_control_persist_token1] = ACTIONS(1551), - [aux_sym_dynamic_forward_token1] = ACTIONS(1551), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1551), - [aux_sym_escape_char_token1] = ACTIONS(1551), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1551), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1551), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1551), - [aux_sym_forward_agent_token1] = ACTIONS(1551), - [aux_sym_forward_x11_token1] = ACTIONS(1553), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1551), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1551), - [aux_sym_gateway_ports_token1] = ACTIONS(1551), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1551), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1551), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1551), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1551), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1551), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1551), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1551), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1551), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1551), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1551), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1551), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1551), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1551), - [aux_sym_host_key_alias_token1] = ACTIONS(1551), - [aux_sym_hostname_token1] = ACTIONS(1551), - [aux_sym_identities_only_token1] = ACTIONS(1551), - [aux_sym_identity_agent_token1] = ACTIONS(1551), - [aux_sym_identity_file_token1] = ACTIONS(1551), - [aux_sym_ignore_unknown_token1] = ACTIONS(1551), - [aux_sym_include_token1] = ACTIONS(1551), - [aux_sym_ip_qos_token1] = ACTIONS(1551), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1551), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1551), - [aux_sym_kex_algorithms_token1] = ACTIONS(1551), - [aux_sym_known_hosts_command_token1] = ACTIONS(1551), - [aux_sym_local_command_token1] = ACTIONS(1551), - [aux_sym_local_forward_token1] = ACTIONS(1551), - [aux_sym_log_level_token1] = ACTIONS(1551), - [aux_sym_log_verbose_token1] = ACTIONS(1551), - [aux_sym_macs_token1] = ACTIONS(1551), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1551), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1551), - [aux_sym_password_authentication_token1] = ACTIONS(1551), - [aux_sym_permit_local_command_token1] = ACTIONS(1551), - [aux_sym_permit_remote_open_token1] = ACTIONS(1551), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1551), - [aux_sym_port_token1] = ACTIONS(1551), - [aux_sym_preferred_authentications_token1] = ACTIONS(1551), - [aux_sym_protocol_token1] = ACTIONS(1551), - [aux_sym_proxy_command_token1] = ACTIONS(1551), - [aux_sym_proxy_jump_token1] = ACTIONS(1551), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1551), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1551), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1551), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1551), - [aux_sym_rekey_limit_token1] = ACTIONS(1551), - [aux_sym_remote_command_token1] = ACTIONS(1551), - [aux_sym_remote_forward_token1] = ACTIONS(1551), - [aux_sym_request_tty_token1] = ACTIONS(1551), - [aux_sym_required_rsa_size_token1] = ACTIONS(1551), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1551), - [aux_sym_security_key_provider_token1] = ACTIONS(1551), - [aux_sym_send_env_token1] = ACTIONS(1551), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1551), - [aux_sym_server_alive_interval_token1] = ACTIONS(1551), - [aux_sym_session_type_token1] = ACTIONS(1551), - [aux_sym_set_env_token1] = ACTIONS(1551), - [aux_sym_stdin_null_token1] = ACTIONS(1551), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1551), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1551), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1551), - [aux_sym_syslog_facility_token1] = ACTIONS(1551), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1551), - [aux_sym_keep_alive_token1] = ACTIONS(1551), - [aux_sym_tunnel_token1] = ACTIONS(1553), - [aux_sym_tunnel_device_token1] = ACTIONS(1551), - [aux_sym_update_host_keys_token1] = ACTIONS(1551), - [aux_sym_use_keychain_token1] = ACTIONS(1551), - [aux_sym_use_roaming_token1] = ACTIONS(1551), - [aux_sym_user_token1] = ACTIONS(1553), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1551), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1551), - [aux_sym_visual_host_key_token1] = ACTIONS(1551), - [aux_sym_xauth_location_token1] = ACTIONS(1551), + [ts_builtin_sym_end] = ACTIONS(734), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(736), + [aux_sym_match_token1] = ACTIONS(734), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(734), + [aux_sym_address_family_token1] = ACTIONS(734), + [aux_sym_batch_mode_token1] = ACTIONS(734), + [aux_sym_bind_address_token1] = ACTIONS(734), + [aux_sym_bind_interface_token1] = ACTIONS(734), + [aux_sym_canonical_domains_token1] = ACTIONS(734), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(734), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(734), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(734), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(734), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(734), + [aux_sym_certificate_file_token1] = ACTIONS(734), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(734), + [aux_sym_check_host_ip_token1] = ACTIONS(734), + [aux_sym_ciphers_token1] = ACTIONS(734), + [aux_sym_cipher_token1] = ACTIONS(736), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(734), + [aux_sym_compression_token1] = ACTIONS(734), + [aux_sym_connection_attempts_token1] = ACTIONS(734), + [aux_sym_connect_timeout_token1] = ACTIONS(734), + [aux_sym_control_master_token1] = ACTIONS(734), + [aux_sym_control_path_token1] = ACTIONS(734), + [aux_sym_control_persist_token1] = ACTIONS(734), + [aux_sym_dynamic_forward_token1] = ACTIONS(734), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(734), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(734), + [aux_sym_escape_char_token1] = ACTIONS(734), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(734), + [aux_sym_fingerprint_hash_token1] = ACTIONS(734), + [aux_sym_fork_after_authentication_token1] = ACTIONS(734), + [aux_sym_forward_agent_token1] = ACTIONS(734), + [aux_sym_forward_x11_token1] = ACTIONS(736), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(734), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(734), + [aux_sym_gateway_ports_token1] = ACTIONS(734), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(734), + [aux_sym_gssapi_authentication_token1] = ACTIONS(734), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(734), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(734), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(734), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(734), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(734), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(734), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(734), + [aux_sym_hash_known_hosts_token1] = ACTIONS(734), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(734), + [aux_sym_hostbased_authentication_token1] = ACTIONS(734), + [aux_sym_host_key_algorithms_token1] = ACTIONS(734), + [aux_sym_host_key_alias_token1] = ACTIONS(734), + [aux_sym_hostname_token1] = ACTIONS(734), + [aux_sym_identities_only_token1] = ACTIONS(734), + [aux_sym_identity_agent_token1] = ACTIONS(734), + [aux_sym_identity_file_token1] = ACTIONS(734), + [aux_sym_ignore_unknown_token1] = ACTIONS(734), + [aux_sym_include_token1] = ACTIONS(734), + [aux_sym_ip_qos_token1] = ACTIONS(734), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(734), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(734), + [aux_sym_kex_algorithms_token1] = ACTIONS(734), + [aux_sym_known_hosts_command_token1] = ACTIONS(734), + [aux_sym_local_command_token1] = ACTIONS(734), + [aux_sym_local_forward_token1] = ACTIONS(734), + [aux_sym_log_level_token1] = ACTIONS(734), + [aux_sym_log_verbose_token1] = ACTIONS(734), + [aux_sym_macs_token1] = ACTIONS(734), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(734), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(734), + [aux_sym_password_authentication_token1] = ACTIONS(734), + [aux_sym_permit_local_command_token1] = ACTIONS(734), + [aux_sym_permit_remote_open_token1] = ACTIONS(734), + [aux_sym_pkcs11_provider_token1] = ACTIONS(734), + [aux_sym_port_token1] = ACTIONS(734), + [aux_sym_preferred_authentications_token1] = ACTIONS(734), + [aux_sym_protocol_token1] = ACTIONS(734), + [aux_sym_proxy_command_token1] = ACTIONS(734), + [aux_sym_proxy_jump_token1] = ACTIONS(734), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(734), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(734), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(734), + [aux_sym_pubkey_authentication_token1] = ACTIONS(734), + [aux_sym_rekey_limit_token1] = ACTIONS(734), + [aux_sym_remote_command_token1] = ACTIONS(734), + [aux_sym_remote_forward_token1] = ACTIONS(734), + [aux_sym_request_tty_token1] = ACTIONS(734), + [aux_sym_required_rsa_size_token1] = ACTIONS(734), + [aux_sym_revoked_host_keys_token1] = ACTIONS(734), + [aux_sym_security_key_provider_token1] = ACTIONS(734), + [aux_sym_send_env_token1] = ACTIONS(734), + [aux_sym_server_alive_count_max_token1] = ACTIONS(734), + [aux_sym_server_alive_interval_token1] = ACTIONS(734), + [aux_sym_session_type_token1] = ACTIONS(734), + [aux_sym_set_env_token1] = ACTIONS(734), + [aux_sym_stdin_null_token1] = ACTIONS(734), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(734), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(734), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(734), + [aux_sym_syslog_facility_token1] = ACTIONS(734), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(734), + [aux_sym_keep_alive_token1] = ACTIONS(734), + [aux_sym_tunnel_token1] = ACTIONS(736), + [aux_sym_tunnel_device_token1] = ACTIONS(734), + [aux_sym_update_host_keys_token1] = ACTIONS(734), + [aux_sym_use_keychain_token1] = ACTIONS(734), + [aux_sym_use_roaming_token1] = ACTIONS(734), + [aux_sym_user_token1] = ACTIONS(736), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(734), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(734), + [aux_sym_visual_host_key_token1] = ACTIONS(734), + [aux_sym_xauth_location_token1] = ACTIONS(734), + }, + [776] = { + [ts_builtin_sym_end] = ACTIONS(746), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(748), + [aux_sym_match_token1] = ACTIONS(746), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(746), + [aux_sym_address_family_token1] = ACTIONS(746), + [aux_sym_batch_mode_token1] = ACTIONS(746), + [aux_sym_bind_address_token1] = ACTIONS(746), + [aux_sym_bind_interface_token1] = ACTIONS(746), + [aux_sym_canonical_domains_token1] = ACTIONS(746), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(746), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(746), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(746), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(746), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(746), + [aux_sym_certificate_file_token1] = ACTIONS(746), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(746), + [aux_sym_check_host_ip_token1] = ACTIONS(746), + [aux_sym_ciphers_token1] = ACTIONS(746), + [aux_sym_cipher_token1] = ACTIONS(748), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(746), + [aux_sym_compression_token1] = ACTIONS(746), + [aux_sym_connection_attempts_token1] = ACTIONS(746), + [aux_sym_connect_timeout_token1] = ACTIONS(746), + [aux_sym_control_master_token1] = ACTIONS(746), + [aux_sym_control_path_token1] = ACTIONS(746), + [aux_sym_control_persist_token1] = ACTIONS(746), + [aux_sym_dynamic_forward_token1] = ACTIONS(746), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(746), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(746), + [aux_sym_escape_char_token1] = ACTIONS(746), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(746), + [aux_sym_fingerprint_hash_token1] = ACTIONS(746), + [aux_sym_fork_after_authentication_token1] = ACTIONS(746), + [aux_sym_forward_agent_token1] = ACTIONS(746), + [aux_sym_forward_x11_token1] = ACTIONS(748), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(746), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(746), + [aux_sym_gateway_ports_token1] = ACTIONS(746), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(746), + [aux_sym_gssapi_authentication_token1] = ACTIONS(746), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(746), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(746), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(746), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(746), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(746), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(746), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(746), + [aux_sym_hash_known_hosts_token1] = ACTIONS(746), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(746), + [aux_sym_hostbased_authentication_token1] = ACTIONS(746), + [aux_sym_host_key_algorithms_token1] = ACTIONS(746), + [aux_sym_host_key_alias_token1] = ACTIONS(746), + [aux_sym_hostname_token1] = ACTIONS(746), + [aux_sym_identities_only_token1] = ACTIONS(746), + [aux_sym_identity_agent_token1] = ACTIONS(746), + [aux_sym_identity_file_token1] = ACTIONS(746), + [aux_sym_ignore_unknown_token1] = ACTIONS(746), + [aux_sym_include_token1] = ACTIONS(746), + [aux_sym_ip_qos_token1] = ACTIONS(746), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(746), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(746), + [aux_sym_kex_algorithms_token1] = ACTIONS(746), + [aux_sym_known_hosts_command_token1] = ACTIONS(746), + [aux_sym_local_command_token1] = ACTIONS(746), + [aux_sym_local_forward_token1] = ACTIONS(746), + [aux_sym_log_level_token1] = ACTIONS(746), + [aux_sym_log_verbose_token1] = ACTIONS(746), + [aux_sym_macs_token1] = ACTIONS(746), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(746), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(746), + [aux_sym_password_authentication_token1] = ACTIONS(746), + [aux_sym_permit_local_command_token1] = ACTIONS(746), + [aux_sym_permit_remote_open_token1] = ACTIONS(746), + [aux_sym_pkcs11_provider_token1] = ACTIONS(746), + [aux_sym_port_token1] = ACTIONS(746), + [aux_sym_preferred_authentications_token1] = ACTIONS(746), + [aux_sym_protocol_token1] = ACTIONS(746), + [aux_sym_proxy_command_token1] = ACTIONS(746), + [aux_sym_proxy_jump_token1] = ACTIONS(746), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(746), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(746), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(746), + [aux_sym_pubkey_authentication_token1] = ACTIONS(746), + [aux_sym_rekey_limit_token1] = ACTIONS(746), + [aux_sym_remote_command_token1] = ACTIONS(746), + [aux_sym_remote_forward_token1] = ACTIONS(746), + [aux_sym_request_tty_token1] = ACTIONS(746), + [aux_sym_required_rsa_size_token1] = ACTIONS(746), + [aux_sym_revoked_host_keys_token1] = ACTIONS(746), + [aux_sym_security_key_provider_token1] = ACTIONS(746), + [aux_sym_send_env_token1] = ACTIONS(746), + [aux_sym_server_alive_count_max_token1] = ACTIONS(746), + [aux_sym_server_alive_interval_token1] = ACTIONS(746), + [aux_sym_session_type_token1] = ACTIONS(746), + [aux_sym_set_env_token1] = ACTIONS(746), + [aux_sym_stdin_null_token1] = ACTIONS(746), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(746), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(746), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(746), + [aux_sym_syslog_facility_token1] = ACTIONS(746), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(746), + [aux_sym_keep_alive_token1] = ACTIONS(746), + [aux_sym_tunnel_token1] = ACTIONS(748), + [aux_sym_tunnel_device_token1] = ACTIONS(746), + [aux_sym_update_host_keys_token1] = ACTIONS(746), + [aux_sym_use_keychain_token1] = ACTIONS(746), + [aux_sym_use_roaming_token1] = ACTIONS(746), + [aux_sym_user_token1] = ACTIONS(748), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(746), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(746), + [aux_sym_visual_host_key_token1] = ACTIONS(746), + [aux_sym_xauth_location_token1] = ACTIONS(746), + }, + [777] = { + [ts_builtin_sym_end] = ACTIONS(1694), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1696), + [aux_sym_match_token1] = ACTIONS(1694), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1694), + [aux_sym_address_family_token1] = ACTIONS(1694), + [aux_sym_batch_mode_token1] = ACTIONS(1694), + [aux_sym_bind_address_token1] = ACTIONS(1694), + [aux_sym_bind_interface_token1] = ACTIONS(1694), + [aux_sym_canonical_domains_token1] = ACTIONS(1694), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1694), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1694), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1694), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1694), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1694), + [aux_sym_certificate_file_token1] = ACTIONS(1694), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1694), + [aux_sym_check_host_ip_token1] = ACTIONS(1694), + [aux_sym_ciphers_token1] = ACTIONS(1694), + [aux_sym_cipher_token1] = ACTIONS(1696), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1694), + [aux_sym_compression_token1] = ACTIONS(1694), + [aux_sym_connection_attempts_token1] = ACTIONS(1694), + [aux_sym_connect_timeout_token1] = ACTIONS(1694), + [aux_sym_control_master_token1] = ACTIONS(1694), + [aux_sym_control_path_token1] = ACTIONS(1694), + [aux_sym_control_persist_token1] = ACTIONS(1694), + [aux_sym_dynamic_forward_token1] = ACTIONS(1694), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1694), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1694), + [aux_sym_escape_char_token1] = ACTIONS(1694), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1694), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1694), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1694), + [aux_sym_forward_agent_token1] = ACTIONS(1694), + [aux_sym_forward_x11_token1] = ACTIONS(1696), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1694), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1694), + [aux_sym_gateway_ports_token1] = ACTIONS(1694), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1694), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1694), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1694), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1694), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1694), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1694), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1694), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1694), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1694), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1694), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1694), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1694), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1694), + [aux_sym_host_key_alias_token1] = ACTIONS(1694), + [aux_sym_hostname_token1] = ACTIONS(1694), + [aux_sym_identities_only_token1] = ACTIONS(1694), + [aux_sym_identity_agent_token1] = ACTIONS(1694), + [aux_sym_identity_file_token1] = ACTIONS(1694), + [aux_sym_ignore_unknown_token1] = ACTIONS(1694), + [aux_sym_include_token1] = ACTIONS(1694), + [aux_sym_ip_qos_token1] = ACTIONS(1694), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1694), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1694), + [aux_sym_kex_algorithms_token1] = ACTIONS(1694), + [aux_sym_known_hosts_command_token1] = ACTIONS(1694), + [aux_sym_local_command_token1] = ACTIONS(1694), + [aux_sym_local_forward_token1] = ACTIONS(1694), + [aux_sym_log_level_token1] = ACTIONS(1694), + [aux_sym_log_verbose_token1] = ACTIONS(1694), + [aux_sym_macs_token1] = ACTIONS(1694), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1694), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1694), + [aux_sym_password_authentication_token1] = ACTIONS(1694), + [aux_sym_permit_local_command_token1] = ACTIONS(1694), + [aux_sym_permit_remote_open_token1] = ACTIONS(1694), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1694), + [aux_sym_port_token1] = ACTIONS(1694), + [aux_sym_preferred_authentications_token1] = ACTIONS(1694), + [aux_sym_protocol_token1] = ACTIONS(1694), + [aux_sym_proxy_command_token1] = ACTIONS(1694), + [aux_sym_proxy_jump_token1] = ACTIONS(1694), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1694), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1694), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1694), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1694), + [aux_sym_rekey_limit_token1] = ACTIONS(1694), + [aux_sym_remote_command_token1] = ACTIONS(1694), + [aux_sym_remote_forward_token1] = ACTIONS(1694), + [aux_sym_request_tty_token1] = ACTIONS(1694), + [aux_sym_required_rsa_size_token1] = ACTIONS(1694), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1694), + [aux_sym_security_key_provider_token1] = ACTIONS(1694), + [aux_sym_send_env_token1] = ACTIONS(1694), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1694), + [aux_sym_server_alive_interval_token1] = ACTIONS(1694), + [aux_sym_session_type_token1] = ACTIONS(1694), + [aux_sym_set_env_token1] = ACTIONS(1694), + [aux_sym_stdin_null_token1] = ACTIONS(1694), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1694), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1694), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1694), + [aux_sym_syslog_facility_token1] = ACTIONS(1694), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1694), + [aux_sym_keep_alive_token1] = ACTIONS(1694), + [aux_sym_tunnel_token1] = ACTIONS(1696), + [aux_sym_tunnel_device_token1] = ACTIONS(1694), + [aux_sym_update_host_keys_token1] = ACTIONS(1694), + [aux_sym_use_keychain_token1] = ACTIONS(1694), + [aux_sym_use_roaming_token1] = ACTIONS(1694), + [aux_sym_user_token1] = ACTIONS(1696), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1694), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1694), + [aux_sym_visual_host_key_token1] = ACTIONS(1694), + [aux_sym_xauth_location_token1] = ACTIONS(1694), + }, + [778] = { + [ts_builtin_sym_end] = ACTIONS(1670), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1672), + [aux_sym_match_token1] = ACTIONS(1670), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1670), + [aux_sym_address_family_token1] = ACTIONS(1670), + [aux_sym_batch_mode_token1] = ACTIONS(1670), + [aux_sym_bind_address_token1] = ACTIONS(1670), + [aux_sym_bind_interface_token1] = ACTIONS(1670), + [aux_sym_canonical_domains_token1] = ACTIONS(1670), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1670), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1670), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1670), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1670), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1670), + [aux_sym_certificate_file_token1] = ACTIONS(1670), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1670), + [aux_sym_check_host_ip_token1] = ACTIONS(1670), + [aux_sym_ciphers_token1] = ACTIONS(1670), + [aux_sym_cipher_token1] = ACTIONS(1672), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1670), + [aux_sym_compression_token1] = ACTIONS(1670), + [aux_sym_connection_attempts_token1] = ACTIONS(1670), + [aux_sym_connect_timeout_token1] = ACTIONS(1670), + [aux_sym_control_master_token1] = ACTIONS(1670), + [aux_sym_control_path_token1] = ACTIONS(1670), + [aux_sym_control_persist_token1] = ACTIONS(1670), + [aux_sym_dynamic_forward_token1] = ACTIONS(1670), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1670), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1670), + [aux_sym_escape_char_token1] = ACTIONS(1670), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1670), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1670), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1670), + [aux_sym_forward_agent_token1] = ACTIONS(1670), + [aux_sym_forward_x11_token1] = ACTIONS(1672), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1670), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1670), + [aux_sym_gateway_ports_token1] = ACTIONS(1670), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1670), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1670), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1670), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1670), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1670), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1670), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1670), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1670), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1670), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1670), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1670), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1670), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1670), + [aux_sym_host_key_alias_token1] = ACTIONS(1670), + [aux_sym_hostname_token1] = ACTIONS(1670), + [aux_sym_identities_only_token1] = ACTIONS(1670), + [aux_sym_identity_agent_token1] = ACTIONS(1670), + [aux_sym_identity_file_token1] = ACTIONS(1670), + [aux_sym_ignore_unknown_token1] = ACTIONS(1670), + [aux_sym_include_token1] = ACTIONS(1670), + [aux_sym_ip_qos_token1] = ACTIONS(1670), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1670), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1670), + [aux_sym_kex_algorithms_token1] = ACTIONS(1670), + [aux_sym_known_hosts_command_token1] = ACTIONS(1670), + [aux_sym_local_command_token1] = ACTIONS(1670), + [aux_sym_local_forward_token1] = ACTIONS(1670), + [aux_sym_log_level_token1] = ACTIONS(1670), + [aux_sym_log_verbose_token1] = ACTIONS(1670), + [aux_sym_macs_token1] = ACTIONS(1670), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1670), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1670), + [aux_sym_password_authentication_token1] = ACTIONS(1670), + [aux_sym_permit_local_command_token1] = ACTIONS(1670), + [aux_sym_permit_remote_open_token1] = ACTIONS(1670), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1670), + [aux_sym_port_token1] = ACTIONS(1670), + [aux_sym_preferred_authentications_token1] = ACTIONS(1670), + [aux_sym_protocol_token1] = ACTIONS(1670), + [aux_sym_proxy_command_token1] = ACTIONS(1670), + [aux_sym_proxy_jump_token1] = ACTIONS(1670), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1670), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1670), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1670), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1670), + [aux_sym_rekey_limit_token1] = ACTIONS(1670), + [aux_sym_remote_command_token1] = ACTIONS(1670), + [aux_sym_remote_forward_token1] = ACTIONS(1670), + [aux_sym_request_tty_token1] = ACTIONS(1670), + [aux_sym_required_rsa_size_token1] = ACTIONS(1670), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1670), + [aux_sym_security_key_provider_token1] = ACTIONS(1670), + [aux_sym_send_env_token1] = ACTIONS(1670), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1670), + [aux_sym_server_alive_interval_token1] = ACTIONS(1670), + [aux_sym_session_type_token1] = ACTIONS(1670), + [aux_sym_set_env_token1] = ACTIONS(1670), + [aux_sym_stdin_null_token1] = ACTIONS(1670), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1670), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1670), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1670), + [aux_sym_syslog_facility_token1] = ACTIONS(1670), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1670), + [aux_sym_keep_alive_token1] = ACTIONS(1670), + [aux_sym_tunnel_token1] = ACTIONS(1672), + [aux_sym_tunnel_device_token1] = ACTIONS(1670), + [aux_sym_update_host_keys_token1] = ACTIONS(1670), + [aux_sym_use_keychain_token1] = ACTIONS(1670), + [aux_sym_use_roaming_token1] = ACTIONS(1670), + [aux_sym_user_token1] = ACTIONS(1672), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1670), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1670), + [aux_sym_visual_host_key_token1] = ACTIONS(1670), + [aux_sym_xauth_location_token1] = ACTIONS(1670), + }, + [779] = { + [ts_builtin_sym_end] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1678), + [aux_sym_match_token1] = ACTIONS(1676), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1676), + [aux_sym_address_family_token1] = ACTIONS(1676), + [aux_sym_batch_mode_token1] = ACTIONS(1676), + [aux_sym_bind_address_token1] = ACTIONS(1676), + [aux_sym_bind_interface_token1] = ACTIONS(1676), + [aux_sym_canonical_domains_token1] = ACTIONS(1676), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1676), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1676), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1676), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1676), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1676), + [aux_sym_certificate_file_token1] = ACTIONS(1676), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1676), + [aux_sym_check_host_ip_token1] = ACTIONS(1676), + [aux_sym_ciphers_token1] = ACTIONS(1676), + [aux_sym_cipher_token1] = ACTIONS(1678), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1676), + [aux_sym_compression_token1] = ACTIONS(1676), + [aux_sym_connection_attempts_token1] = ACTIONS(1676), + [aux_sym_connect_timeout_token1] = ACTIONS(1676), + [aux_sym_control_master_token1] = ACTIONS(1676), + [aux_sym_control_path_token1] = ACTIONS(1676), + [aux_sym_control_persist_token1] = ACTIONS(1676), + [aux_sym_dynamic_forward_token1] = ACTIONS(1676), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1676), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1676), + [aux_sym_escape_char_token1] = ACTIONS(1676), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1676), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1676), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1676), + [aux_sym_forward_agent_token1] = ACTIONS(1676), + [aux_sym_forward_x11_token1] = ACTIONS(1678), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1676), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1676), + [aux_sym_gateway_ports_token1] = ACTIONS(1676), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1676), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1676), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1676), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1676), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1676), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1676), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1676), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1676), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1676), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1676), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1676), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1676), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1676), + [aux_sym_host_key_alias_token1] = ACTIONS(1676), + [aux_sym_hostname_token1] = ACTIONS(1676), + [aux_sym_identities_only_token1] = ACTIONS(1676), + [aux_sym_identity_agent_token1] = ACTIONS(1676), + [aux_sym_identity_file_token1] = ACTIONS(1676), + [aux_sym_ignore_unknown_token1] = ACTIONS(1676), + [aux_sym_include_token1] = ACTIONS(1676), + [aux_sym_ip_qos_token1] = ACTIONS(1676), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1676), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1676), + [aux_sym_kex_algorithms_token1] = ACTIONS(1676), + [aux_sym_known_hosts_command_token1] = ACTIONS(1676), + [aux_sym_local_command_token1] = ACTIONS(1676), + [aux_sym_local_forward_token1] = ACTIONS(1676), + [aux_sym_log_level_token1] = ACTIONS(1676), + [aux_sym_log_verbose_token1] = ACTIONS(1676), + [aux_sym_macs_token1] = ACTIONS(1676), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1676), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1676), + [aux_sym_password_authentication_token1] = ACTIONS(1676), + [aux_sym_permit_local_command_token1] = ACTIONS(1676), + [aux_sym_permit_remote_open_token1] = ACTIONS(1676), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1676), + [aux_sym_port_token1] = ACTIONS(1676), + [aux_sym_preferred_authentications_token1] = ACTIONS(1676), + [aux_sym_protocol_token1] = ACTIONS(1676), + [aux_sym_proxy_command_token1] = ACTIONS(1676), + [aux_sym_proxy_jump_token1] = ACTIONS(1676), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1676), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1676), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1676), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1676), + [aux_sym_rekey_limit_token1] = ACTIONS(1676), + [aux_sym_remote_command_token1] = ACTIONS(1676), + [aux_sym_remote_forward_token1] = ACTIONS(1676), + [aux_sym_request_tty_token1] = ACTIONS(1676), + [aux_sym_required_rsa_size_token1] = ACTIONS(1676), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1676), + [aux_sym_security_key_provider_token1] = ACTIONS(1676), + [aux_sym_send_env_token1] = ACTIONS(1676), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1676), + [aux_sym_server_alive_interval_token1] = ACTIONS(1676), + [aux_sym_session_type_token1] = ACTIONS(1676), + [aux_sym_set_env_token1] = ACTIONS(1676), + [aux_sym_stdin_null_token1] = ACTIONS(1676), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1676), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1676), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1676), + [aux_sym_syslog_facility_token1] = ACTIONS(1676), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1676), + [aux_sym_keep_alive_token1] = ACTIONS(1676), + [aux_sym_tunnel_token1] = ACTIONS(1678), + [aux_sym_tunnel_device_token1] = ACTIONS(1676), + [aux_sym_update_host_keys_token1] = ACTIONS(1676), + [aux_sym_use_keychain_token1] = ACTIONS(1676), + [aux_sym_use_roaming_token1] = ACTIONS(1676), + [aux_sym_user_token1] = ACTIONS(1678), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1676), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1676), + [aux_sym_visual_host_key_token1] = ACTIONS(1676), + [aux_sym_xauth_location_token1] = ACTIONS(1676), + }, + [780] = { + [ts_builtin_sym_end] = ACTIONS(1688), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1690), + [aux_sym_match_token1] = ACTIONS(1688), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1688), + [aux_sym_address_family_token1] = ACTIONS(1688), + [aux_sym_batch_mode_token1] = ACTIONS(1688), + [aux_sym_bind_address_token1] = ACTIONS(1688), + [aux_sym_bind_interface_token1] = ACTIONS(1688), + [aux_sym_canonical_domains_token1] = ACTIONS(1688), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1688), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1688), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1688), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1688), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1688), + [aux_sym_certificate_file_token1] = ACTIONS(1688), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1688), + [aux_sym_check_host_ip_token1] = ACTIONS(1688), + [aux_sym_ciphers_token1] = ACTIONS(1688), + [aux_sym_cipher_token1] = ACTIONS(1690), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1688), + [aux_sym_compression_token1] = ACTIONS(1688), + [aux_sym_connection_attempts_token1] = ACTIONS(1688), + [aux_sym_connect_timeout_token1] = ACTIONS(1688), + [aux_sym_control_master_token1] = ACTIONS(1688), + [aux_sym_control_path_token1] = ACTIONS(1688), + [aux_sym_control_persist_token1] = ACTIONS(1688), + [aux_sym_dynamic_forward_token1] = ACTIONS(1688), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1688), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1688), + [aux_sym_escape_char_token1] = ACTIONS(1688), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1688), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1688), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1688), + [aux_sym_forward_agent_token1] = ACTIONS(1688), + [aux_sym_forward_x11_token1] = ACTIONS(1690), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1688), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1688), + [aux_sym_gateway_ports_token1] = ACTIONS(1688), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1688), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1688), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1688), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1688), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1688), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1688), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1688), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1688), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1688), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1688), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1688), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1688), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1688), + [aux_sym_host_key_alias_token1] = ACTIONS(1688), + [aux_sym_hostname_token1] = ACTIONS(1688), + [aux_sym_identities_only_token1] = ACTIONS(1688), + [aux_sym_identity_agent_token1] = ACTIONS(1688), + [aux_sym_identity_file_token1] = ACTIONS(1688), + [aux_sym_ignore_unknown_token1] = ACTIONS(1688), + [aux_sym_include_token1] = ACTIONS(1688), + [aux_sym_ip_qos_token1] = ACTIONS(1688), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1688), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1688), + [aux_sym_kex_algorithms_token1] = ACTIONS(1688), + [aux_sym_known_hosts_command_token1] = ACTIONS(1688), + [aux_sym_local_command_token1] = ACTIONS(1688), + [aux_sym_local_forward_token1] = ACTIONS(1688), + [aux_sym_log_level_token1] = ACTIONS(1688), + [aux_sym_log_verbose_token1] = ACTIONS(1688), + [aux_sym_macs_token1] = ACTIONS(1688), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1688), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1688), + [aux_sym_password_authentication_token1] = ACTIONS(1688), + [aux_sym_permit_local_command_token1] = ACTIONS(1688), + [aux_sym_permit_remote_open_token1] = ACTIONS(1688), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1688), + [aux_sym_port_token1] = ACTIONS(1688), + [aux_sym_preferred_authentications_token1] = ACTIONS(1688), + [aux_sym_protocol_token1] = ACTIONS(1688), + [aux_sym_proxy_command_token1] = ACTIONS(1688), + [aux_sym_proxy_jump_token1] = ACTIONS(1688), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1688), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1688), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1688), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1688), + [aux_sym_rekey_limit_token1] = ACTIONS(1688), + [aux_sym_remote_command_token1] = ACTIONS(1688), + [aux_sym_remote_forward_token1] = ACTIONS(1688), + [aux_sym_request_tty_token1] = ACTIONS(1688), + [aux_sym_required_rsa_size_token1] = ACTIONS(1688), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1688), + [aux_sym_security_key_provider_token1] = ACTIONS(1688), + [aux_sym_send_env_token1] = ACTIONS(1688), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1688), + [aux_sym_server_alive_interval_token1] = ACTIONS(1688), + [aux_sym_session_type_token1] = ACTIONS(1688), + [aux_sym_set_env_token1] = ACTIONS(1688), + [aux_sym_stdin_null_token1] = ACTIONS(1688), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1688), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1688), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1688), + [aux_sym_syslog_facility_token1] = ACTIONS(1688), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1688), + [aux_sym_keep_alive_token1] = ACTIONS(1688), + [aux_sym_tunnel_token1] = ACTIONS(1690), + [aux_sym_tunnel_device_token1] = ACTIONS(1688), + [aux_sym_update_host_keys_token1] = ACTIONS(1688), + [aux_sym_use_keychain_token1] = ACTIONS(1688), + [aux_sym_use_roaming_token1] = ACTIONS(1688), + [aux_sym_user_token1] = ACTIONS(1690), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1688), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1688), + [aux_sym_visual_host_key_token1] = ACTIONS(1688), + [aux_sym_xauth_location_token1] = ACTIONS(1688), + }, + [781] = { + [ts_builtin_sym_end] = ACTIONS(740), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(742), + [aux_sym_match_token1] = ACTIONS(740), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(740), + [aux_sym_address_family_token1] = ACTIONS(740), + [aux_sym_batch_mode_token1] = ACTIONS(740), + [aux_sym_bind_address_token1] = ACTIONS(740), + [aux_sym_bind_interface_token1] = ACTIONS(740), + [aux_sym_canonical_domains_token1] = ACTIONS(740), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(740), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(740), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(740), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(740), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(740), + [aux_sym_certificate_file_token1] = ACTIONS(740), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(740), + [aux_sym_check_host_ip_token1] = ACTIONS(740), + [aux_sym_ciphers_token1] = ACTIONS(740), + [aux_sym_cipher_token1] = ACTIONS(742), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(740), + [aux_sym_compression_token1] = ACTIONS(740), + [aux_sym_connection_attempts_token1] = ACTIONS(740), + [aux_sym_connect_timeout_token1] = ACTIONS(740), + [aux_sym_control_master_token1] = ACTIONS(740), + [aux_sym_control_path_token1] = ACTIONS(740), + [aux_sym_control_persist_token1] = ACTIONS(740), + [aux_sym_dynamic_forward_token1] = ACTIONS(740), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(740), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(740), + [aux_sym_escape_char_token1] = ACTIONS(740), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(740), + [aux_sym_fingerprint_hash_token1] = ACTIONS(740), + [aux_sym_fork_after_authentication_token1] = ACTIONS(740), + [aux_sym_forward_agent_token1] = ACTIONS(740), + [aux_sym_forward_x11_token1] = ACTIONS(742), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(740), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(740), + [aux_sym_gateway_ports_token1] = ACTIONS(740), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(740), + [aux_sym_gssapi_authentication_token1] = ACTIONS(740), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(740), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(740), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(740), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(740), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(740), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(740), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(740), + [aux_sym_hash_known_hosts_token1] = ACTIONS(740), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(740), + [aux_sym_hostbased_authentication_token1] = ACTIONS(740), + [aux_sym_host_key_algorithms_token1] = ACTIONS(740), + [aux_sym_host_key_alias_token1] = ACTIONS(740), + [aux_sym_hostname_token1] = ACTIONS(740), + [aux_sym_identities_only_token1] = ACTIONS(740), + [aux_sym_identity_agent_token1] = ACTIONS(740), + [aux_sym_identity_file_token1] = ACTIONS(740), + [aux_sym_ignore_unknown_token1] = ACTIONS(740), + [aux_sym_include_token1] = ACTIONS(740), + [aux_sym_ip_qos_token1] = ACTIONS(740), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(740), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(740), + [aux_sym_kex_algorithms_token1] = ACTIONS(740), + [aux_sym_known_hosts_command_token1] = ACTIONS(740), + [aux_sym_local_command_token1] = ACTIONS(740), + [aux_sym_local_forward_token1] = ACTIONS(740), + [aux_sym_log_level_token1] = ACTIONS(740), + [aux_sym_log_verbose_token1] = ACTIONS(740), + [aux_sym_macs_token1] = ACTIONS(740), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(740), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(740), + [aux_sym_password_authentication_token1] = ACTIONS(740), + [aux_sym_permit_local_command_token1] = ACTIONS(740), + [aux_sym_permit_remote_open_token1] = ACTIONS(740), + [aux_sym_pkcs11_provider_token1] = ACTIONS(740), + [aux_sym_port_token1] = ACTIONS(740), + [aux_sym_preferred_authentications_token1] = ACTIONS(740), + [aux_sym_protocol_token1] = ACTIONS(740), + [aux_sym_proxy_command_token1] = ACTIONS(740), + [aux_sym_proxy_jump_token1] = ACTIONS(740), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(740), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(740), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(740), + [aux_sym_pubkey_authentication_token1] = ACTIONS(740), + [aux_sym_rekey_limit_token1] = ACTIONS(740), + [aux_sym_remote_command_token1] = ACTIONS(740), + [aux_sym_remote_forward_token1] = ACTIONS(740), + [aux_sym_request_tty_token1] = ACTIONS(740), + [aux_sym_required_rsa_size_token1] = ACTIONS(740), + [aux_sym_revoked_host_keys_token1] = ACTIONS(740), + [aux_sym_security_key_provider_token1] = ACTIONS(740), + [aux_sym_send_env_token1] = ACTIONS(740), + [aux_sym_server_alive_count_max_token1] = ACTIONS(740), + [aux_sym_server_alive_interval_token1] = ACTIONS(740), + [aux_sym_session_type_token1] = ACTIONS(740), + [aux_sym_set_env_token1] = ACTIONS(740), + [aux_sym_stdin_null_token1] = ACTIONS(740), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(740), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(740), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(740), + [aux_sym_syslog_facility_token1] = ACTIONS(740), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(740), + [aux_sym_keep_alive_token1] = ACTIONS(740), + [aux_sym_tunnel_token1] = ACTIONS(742), + [aux_sym_tunnel_device_token1] = ACTIONS(740), + [aux_sym_update_host_keys_token1] = ACTIONS(740), + [aux_sym_use_keychain_token1] = ACTIONS(740), + [aux_sym_use_roaming_token1] = ACTIONS(740), + [aux_sym_user_token1] = ACTIONS(742), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(740), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(740), + [aux_sym_visual_host_key_token1] = ACTIONS(740), + [aux_sym_xauth_location_token1] = ACTIONS(740), + }, + [782] = { + [ts_builtin_sym_end] = ACTIONS(1682), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1684), + [aux_sym_match_token1] = ACTIONS(1682), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1682), + [aux_sym_address_family_token1] = ACTIONS(1682), + [aux_sym_batch_mode_token1] = ACTIONS(1682), + [aux_sym_bind_address_token1] = ACTIONS(1682), + [aux_sym_bind_interface_token1] = ACTIONS(1682), + [aux_sym_canonical_domains_token1] = ACTIONS(1682), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1682), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1682), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1682), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1682), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1682), + [aux_sym_certificate_file_token1] = ACTIONS(1682), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1682), + [aux_sym_check_host_ip_token1] = ACTIONS(1682), + [aux_sym_ciphers_token1] = ACTIONS(1682), + [aux_sym_cipher_token1] = ACTIONS(1684), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1682), + [aux_sym_compression_token1] = ACTIONS(1682), + [aux_sym_connection_attempts_token1] = ACTIONS(1682), + [aux_sym_connect_timeout_token1] = ACTIONS(1682), + [aux_sym_control_master_token1] = ACTIONS(1682), + [aux_sym_control_path_token1] = ACTIONS(1682), + [aux_sym_control_persist_token1] = ACTIONS(1682), + [aux_sym_dynamic_forward_token1] = ACTIONS(1682), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1682), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1682), + [aux_sym_escape_char_token1] = ACTIONS(1682), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1682), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1682), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1682), + [aux_sym_forward_agent_token1] = ACTIONS(1682), + [aux_sym_forward_x11_token1] = ACTIONS(1684), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1682), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1682), + [aux_sym_gateway_ports_token1] = ACTIONS(1682), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1682), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1682), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1682), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1682), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1682), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1682), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1682), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1682), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1682), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1682), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1682), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1682), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1682), + [aux_sym_host_key_alias_token1] = ACTIONS(1682), + [aux_sym_hostname_token1] = ACTIONS(1682), + [aux_sym_identities_only_token1] = ACTIONS(1682), + [aux_sym_identity_agent_token1] = ACTIONS(1682), + [aux_sym_identity_file_token1] = ACTIONS(1682), + [aux_sym_ignore_unknown_token1] = ACTIONS(1682), + [aux_sym_include_token1] = ACTIONS(1682), + [aux_sym_ip_qos_token1] = ACTIONS(1682), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1682), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1682), + [aux_sym_kex_algorithms_token1] = ACTIONS(1682), + [aux_sym_known_hosts_command_token1] = ACTIONS(1682), + [aux_sym_local_command_token1] = ACTIONS(1682), + [aux_sym_local_forward_token1] = ACTIONS(1682), + [aux_sym_log_level_token1] = ACTIONS(1682), + [aux_sym_log_verbose_token1] = ACTIONS(1682), + [aux_sym_macs_token1] = ACTIONS(1682), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1682), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1682), + [aux_sym_password_authentication_token1] = ACTIONS(1682), + [aux_sym_permit_local_command_token1] = ACTIONS(1682), + [aux_sym_permit_remote_open_token1] = ACTIONS(1682), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1682), + [aux_sym_port_token1] = ACTIONS(1682), + [aux_sym_preferred_authentications_token1] = ACTIONS(1682), + [aux_sym_protocol_token1] = ACTIONS(1682), + [aux_sym_proxy_command_token1] = ACTIONS(1682), + [aux_sym_proxy_jump_token1] = ACTIONS(1682), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1682), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1682), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1682), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1682), + [aux_sym_rekey_limit_token1] = ACTIONS(1682), + [aux_sym_remote_command_token1] = ACTIONS(1682), + [aux_sym_remote_forward_token1] = ACTIONS(1682), + [aux_sym_request_tty_token1] = ACTIONS(1682), + [aux_sym_required_rsa_size_token1] = ACTIONS(1682), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1682), + [aux_sym_security_key_provider_token1] = ACTIONS(1682), + [aux_sym_send_env_token1] = ACTIONS(1682), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1682), + [aux_sym_server_alive_interval_token1] = ACTIONS(1682), + [aux_sym_session_type_token1] = ACTIONS(1682), + [aux_sym_set_env_token1] = ACTIONS(1682), + [aux_sym_stdin_null_token1] = ACTIONS(1682), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1682), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1682), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1682), + [aux_sym_syslog_facility_token1] = ACTIONS(1682), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1682), + [aux_sym_keep_alive_token1] = ACTIONS(1682), + [aux_sym_tunnel_token1] = ACTIONS(1684), + [aux_sym_tunnel_device_token1] = ACTIONS(1682), + [aux_sym_update_host_keys_token1] = ACTIONS(1682), + [aux_sym_use_keychain_token1] = ACTIONS(1682), + [aux_sym_use_roaming_token1] = ACTIONS(1682), + [aux_sym_user_token1] = ACTIONS(1684), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1682), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1682), + [aux_sym_visual_host_key_token1] = ACTIONS(1682), + [aux_sym_xauth_location_token1] = ACTIONS(1682), }, }; @@ -102101,13 +103814,13 @@ static const uint16_t ts_small_parse_table[] = { [0] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3431), 1, + ACTIONS(3462), 1, anon_sym_EQ, - ACTIONS(3433), 1, + ACTIONS(3464), 1, anon_sym_DQUOTE, - STATE(440), 1, + STATE(442), 1, sym_ip_qos_value, - ACTIONS(3429), 27, + ACTIONS(3460), 27, sym_number, anon_sym_none, anon_sym_af11, @@ -102138,11 +103851,11 @@ static const uint16_t ts_small_parse_table[] = { [42] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3435), 1, + ACTIONS(3466), 1, anon_sym_DQUOTE, - STATE(168), 1, + STATE(169), 1, sym_ip_qos_value, - ACTIONS(3429), 27, + ACTIONS(3460), 27, sym_number, anon_sym_none, anon_sym_af11, @@ -102173,9 +103886,9 @@ static const uint16_t ts_small_parse_table[] = { [81] = 3, ACTIONS(3), 1, sym_comment, - STATE(58), 1, + STATE(169), 1, sym_ip_qos_value, - ACTIONS(3429), 27, + ACTIONS(3460), 27, sym_number, anon_sym_none, anon_sym_af11, @@ -102206,9 +103919,9 @@ static const uint16_t ts_small_parse_table[] = { [117] = 3, ACTIONS(3), 1, sym_comment, - STATE(168), 1, + STATE(58), 1, sym_ip_qos_value, - ACTIONS(3429), 27, + ACTIONS(3460), 27, sym_number, anon_sym_none, anon_sym_af11, @@ -102239,13 +103952,13 @@ static const uint16_t ts_small_parse_table[] = { [153] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3437), 1, + ACTIONS(3468), 1, anon_sym_EQ, - ACTIONS(3439), 1, + ACTIONS(3470), 1, anon_sym_DQUOTE, - STATE(276), 1, + STATE(278), 1, sym_syslog_facility_value, - ACTIONS(3441), 11, + ACTIONS(3472), 11, anon_sym_DAEMON, anon_sym_USER, anon_sym_AUTH, @@ -102260,11 +103973,11 @@ static const uint16_t ts_small_parse_table[] = { [179] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3443), 1, + ACTIONS(3474), 1, anon_sym_DQUOTE, - STATE(127), 1, + STATE(128), 1, sym_syslog_facility_value, - ACTIONS(3441), 11, + ACTIONS(3472), 11, anon_sym_DAEMON, anon_sym_USER, anon_sym_AUTH, @@ -102276,12 +103989,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LOCAL5, anon_sym_LOCAL6, anon_sym_LOCAL7, - [202] = 3, + [202] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3476), 1, + anon_sym_EQ, + ACTIONS(3478), 1, + anon_sym_DQUOTE, + ACTIONS(3482), 1, + aux_sym_log_level_value_token6, + STATE(413), 1, + sym_log_level_value, + ACTIONS(3480), 8, + aux_sym_log_level_value_token1, + aux_sym_log_level_value_token2, + aux_sym_log_level_value_token3, + aux_sym_log_level_value_token4, + aux_sym_log_level_value_token5, + aux_sym_log_level_value_token7, + aux_sym_log_level_value_token8, + aux_sym_log_level_value_token9, + [228] = 3, ACTIONS(3), 1, sym_comment, STATE(17), 1, sym_syslog_facility_value, - ACTIONS(3441), 11, + ACTIONS(3472), 11, anon_sym_DAEMON, anon_sym_USER, anon_sym_AUTH, @@ -102293,12 +104026,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LOCAL5, anon_sym_LOCAL6, anon_sym_LOCAL7, - [222] = 3, + [248] = 3, ACTIONS(3), 1, sym_comment, - STATE(127), 1, + STATE(128), 1, sym_syslog_facility_value, - ACTIONS(3441), 11, + ACTIONS(3472), 11, anon_sym_DAEMON, anon_sym_USER, anon_sym_AUTH, @@ -102310,18 +104043,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LOCAL5, anon_sym_LOCAL6, anon_sym_LOCAL7, - [242] = 6, + [268] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3445), 1, - anon_sym_EQ, - ACTIONS(3447), 1, - anon_sym_DQUOTE, - ACTIONS(3451), 1, + ACTIONS(3482), 1, aux_sym_log_level_value_token6, - STATE(412), 1, + ACTIONS(3484), 1, + anon_sym_DQUOTE, + STATE(162), 1, sym_log_level_value, - ACTIONS(3449), 8, + ACTIONS(3480), 8, aux_sym_log_level_value_token1, aux_sym_log_level_value_token2, aux_sym_log_level_value_token3, @@ -102330,16 +104061,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_log_level_value_token7, aux_sym_log_level_value_token8, aux_sym_log_level_value_token9, - [268] = 5, + [291] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3482), 1, aux_sym_log_level_value_token6, - ACTIONS(3453), 1, - anon_sym_DQUOTE, - STATE(161), 1, + STATE(162), 1, sym_log_level_value, - ACTIONS(3449), 8, + ACTIONS(3480), 8, aux_sym_log_level_value_token1, aux_sym_log_level_value_token2, aux_sym_log_level_value_token3, @@ -102348,14 +104077,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_log_level_value_token7, aux_sym_log_level_value_token8, aux_sym_log_level_value_token9, - [291] = 4, + [311] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3482), 1, aux_sym_log_level_value_token6, STATE(51), 1, sym_log_level_value, - ACTIONS(3449), 8, + ACTIONS(3480), 8, aux_sym_log_level_value_token1, aux_sym_log_level_value_token2, aux_sym_log_level_value_token3, @@ -102364,34 +104093,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_log_level_value_token7, aux_sym_log_level_value_token8, aux_sym_log_level_value_token9, - [311] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3457), 1, - anon_sym_EQ, - ACTIONS(3459), 1, - anon_sym_DQUOTE, - ACTIONS(3461), 1, - aux_sym_control_master_value_token2, - STATE(318), 1, - sym_control_master_value, - ACTIONS(3455), 6, - aux_sym_boolean_token1, - aux_sym_boolean_token2, - aux_sym_boolean_token3, - aux_sym_boolean_token4, - aux_sym_control_master_value_token1, - aux_sym_control_master_value_token3, - [335] = 5, + [331] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3465), 1, + ACTIONS(3488), 1, anon_sym_EQ, - ACTIONS(3467), 1, + ACTIONS(3490), 1, anon_sym_DQUOTE, - STATE(280), 1, + STATE(282), 1, sym_strict_host_key_checking_value, - ACTIONS(3463), 7, + ACTIONS(3486), 7, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, @@ -102399,97 +104110,99 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_control_master_value_token1, aux_sym_strict_host_key_checking_value_token1, aux_sym_strict_host_key_checking_value_token2, - [357] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3451), 1, - aux_sym_log_level_value_token6, - STATE(161), 1, - sym_log_level_value, - ACTIONS(3449), 8, - aux_sym_log_level_value_token1, - aux_sym_log_level_value_token2, - aux_sym_log_level_value_token3, - aux_sym_log_level_value_token4, - aux_sym_log_level_value_token5, - aux_sym_log_level_value_token7, - aux_sym_log_level_value_token8, - aux_sym_log_level_value_token9, - [377] = 5, + [353] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 1, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(3473), 1, + ACTIONS(3496), 1, anon_sym_DQUOTE, - STATE(343), 1, - sym_pubkey_authentication_value, - ACTIONS(3469), 6, + ACTIONS(3498), 1, + aux_sym_control_master_value_token2, + STATE(320), 1, + sym_control_master_value, + ACTIONS(3492), 6, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_pubkey_authentication_value_token1, - aux_sym_pubkey_authentication_value_token2, - [398] = 5, + aux_sym_control_master_value_token1, + aux_sym_control_master_value_token3, + [377] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3502), 1, anon_sym_EQ, - ACTIONS(3479), 1, + ACTIONS(3504), 1, anon_sym_DQUOTE, - STATE(328), 1, + STATE(330), 1, sym_request_tty_value, - ACTIONS(3475), 6, + ACTIONS(3500), 6, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, aux_sym_control_master_value_token2, aux_sym_request_tty_value_token1, - [419] = 7, + [398] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3483), 1, - sym_time_format, - ACTIONS(3485), 1, - anon_sym_EQ, - ACTIONS(3487), 1, + ACTIONS(3498), 1, + aux_sym_control_master_value_token2, + ACTIONS(3506), 1, anon_sym_DQUOTE, - STATE(323), 1, - sym_boolean, - STATE(326), 1, - sym_control_persist_value, - ACTIONS(3481), 4, + STATE(204), 1, + sym_control_master_value, + ACTIONS(3492), 6, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [444] = 6, + aux_sym_control_master_value_token1, + aux_sym_control_master_value_token3, + [419] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3491), 1, + ACTIONS(3510), 1, aux_sym_boolean_token3, - ACTIONS(3493), 1, + ACTIONS(3512), 1, anon_sym_EQ, - ACTIONS(3495), 1, + ACTIONS(3514), 1, anon_sym_DQUOTE, - STATE(266), 1, + STATE(268), 1, sym_canonicalize_hostname_value, - ACTIONS(3489), 5, + ACTIONS(3508), 5, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token4, aux_sym_canonicalize_hostname_value_token1, aux_sym_canonicalize_hostname_value_token2, + [442] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3518), 1, + sym_time_format, + ACTIONS(3520), 1, + anon_sym_EQ, + ACTIONS(3522), 1, + anon_sym_DQUOTE, + STATE(325), 1, + sym_boolean, + STATE(328), 1, + sym_control_persist_value, + ACTIONS(3516), 4, + aux_sym_boolean_token1, + aux_sym_boolean_token2, + aux_sym_boolean_token3, + aux_sym_boolean_token4, [467] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3497), 1, + ACTIONS(3524), 1, anon_sym_DQUOTE, - STATE(128), 1, + STATE(129), 1, sym_strict_host_key_checking_value, - ACTIONS(3463), 7, + ACTIONS(3486), 7, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, @@ -102500,31 +104213,31 @@ static const uint16_t ts_small_parse_table[] = { [486] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 1, - aux_sym_control_master_value_token2, - ACTIONS(3499), 1, + ACTIONS(3528), 1, + anon_sym_EQ, + ACTIONS(3530), 1, anon_sym_DQUOTE, - STATE(202), 1, - sym_control_master_value, - ACTIONS(3455), 6, + STATE(345), 1, + sym_pubkey_authentication_value, + ACTIONS(3526), 6, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_control_master_value_token1, - aux_sym_control_master_value_token3, + aux_sym_pubkey_authentication_value_token1, + aux_sym_pubkey_authentication_value_token2, [507] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3501), 1, + ACTIONS(3532), 1, anon_sym_EQ, - ACTIONS(3503), 1, + ACTIONS(3534), 1, anon_sym_DQUOTE, - STATE(377), 1, + STATE(371), 1, sym_boolean, - STATE(378), 1, - sym_gssapi_authentication_value, - ACTIONS(3481), 4, + STATE(372), 1, + sym_forward_x11_trusted_value, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, @@ -102532,15 +104245,15 @@ static const uint16_t ts_small_parse_table[] = { [529] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3505), 1, + ACTIONS(3536), 1, anon_sym_EQ, - ACTIONS(3507), 1, + ACTIONS(3538), 1, anon_sym_DQUOTE, - STATE(385), 1, + STATE(355), 1, sym_boolean, - STATE(386), 1, - sym_gssapi_delegate_credentials_value, - ACTIONS(3481), 4, + STATE(356), 1, + sym_fork_after_authentication_value, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, @@ -102548,71 +104261,41 @@ static const uint16_t ts_small_parse_table[] = { [551] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, + ACTIONS(3540), 1, anon_sym_EQ, - ACTIONS(3511), 1, + ACTIONS(3542), 1, anon_sym_DQUOTE, - STATE(272), 1, - sym_tcp_keep_alive_value, - STATE(273), 1, + STATE(393), 1, + sym_password_authentication_value, + STATE(394), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [573] = 5, + [573] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3491), 1, - aux_sym_boolean_token3, - ACTIONS(3513), 1, - anon_sym_DQUOTE, - STATE(215), 1, - sym_canonicalize_hostname_value, - ACTIONS(3489), 5, - aux_sym_boolean_token1, - aux_sym_boolean_token2, - aux_sym_boolean_token4, - aux_sym_canonicalize_hostname_value_token1, - aux_sym_canonicalize_hostname_value_token2, - [593] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3515), 1, + ACTIONS(3544), 1, anon_sym_EQ, - ACTIONS(3517), 1, + ACTIONS(3546), 1, anon_sym_DQUOTE, - STATE(230), 1, - sym_visual_host_key_value, - STATE(231), 1, + STATE(439), 1, sym_boolean, - ACTIONS(3481), 4, - aux_sym_boolean_token1, - aux_sym_boolean_token2, - aux_sym_boolean_token3, - aux_sym_boolean_token4, - [615] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3521), 1, - anon_sym_EQ, - ACTIONS(3523), 1, - anon_sym_DQUOTE, - STATE(235), 1, - sym_verify_host_key_dns_value, - ACTIONS(3519), 5, + STATE(440), 1, + sym_identities_only_value, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_control_master_value_token1, - [635] = 3, + [595] = 3, ACTIONS(3), 1, sym_comment, - STATE(128), 1, + STATE(18), 1, sym_strict_host_key_checking_value, - ACTIONS(3463), 7, + ACTIONS(3486), 7, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, @@ -102620,5629 +104303,5725 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_control_master_value_token1, aux_sym_strict_host_key_checking_value_token1, aux_sym_strict_host_key_checking_value_token2, - [651] = 6, + [611] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3525), 1, + ACTIONS(3548), 1, anon_sym_EQ, - ACTIONS(3527), 1, + ACTIONS(3550), 1, anon_sym_DQUOTE, - STATE(237), 1, + STATE(303), 1, sym_boolean, - STATE(238), 1, - sym_add_keys_to_agent_value, - ACTIONS(3481), 4, + STATE(304), 1, + sym_clear_all_forwardings_value, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [673] = 6, + [633] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3552), 1, anon_sym_EQ, - ACTIONS(3531), 1, + ACTIONS(3554), 1, anon_sym_DQUOTE, - STATE(245), 1, + STATE(307), 1, sym_boolean, - STATE(246), 1, - sym_batch_mode_value, - ACTIONS(3481), 4, + STATE(308), 1, + sym_compression_value, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [695] = 6, + [655] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3533), 1, + ACTIONS(3556), 1, anon_sym_EQ, - ACTIONS(3535), 1, + ACTIONS(3558), 1, anon_sym_DQUOTE, - STATE(248), 1, - sym_use_roaming_value, - STATE(249), 1, + STATE(402), 1, + sym_no_host_authentication_for_localhost_value, + STATE(403), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [717] = 6, + [677] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3537), 1, - anon_sym_EQ, - ACTIONS(3539), 1, + ACTIONS(3560), 1, anon_sym_DQUOTE, - STATE(252), 1, - sym_use_keychain_value, - STATE(253), 1, - sym_boolean, - ACTIONS(3481), 4, + STATE(141), 1, + sym_request_tty_value, + ACTIONS(3500), 6, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [739] = 6, + aux_sym_control_master_value_token2, + aux_sym_request_tty_value_token1, + [695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3541), 1, - anon_sym_EQ, - ACTIONS(3543), 1, - anon_sym_DQUOTE, - STATE(387), 1, - sym_permit_local_command_value, - STATE(388), 1, - sym_boolean, - ACTIONS(3481), 4, + STATE(129), 1, + sym_strict_host_key_checking_value, + ACTIONS(3486), 7, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [761] = 6, + aux_sym_control_master_value_token1, + aux_sym_strict_host_key_checking_value_token1, + aux_sym_strict_host_key_checking_value_token2, + [711] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3545), 1, - anon_sym_EQ, - ACTIONS(3547), 1, - anon_sym_DQUOTE, - STATE(261), 1, - sym_boolean, - STATE(262), 1, - sym_canonicalize_fallback_local_value, - ACTIONS(3481), 4, + ACTIONS(3498), 1, + aux_sym_control_master_value_token2, + STATE(204), 1, + sym_control_master_value, + ACTIONS(3492), 6, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [783] = 6, + aux_sym_control_master_value_token1, + aux_sym_control_master_value_token3, + [729] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, + ACTIONS(3562), 1, anon_sym_EQ, - ACTIONS(3551), 1, + ACTIONS(3564), 1, anon_sym_DQUOTE, - STATE(391), 1, - sym_password_authentication_value, - STATE(392), 1, + STATE(335), 1, sym_boolean, - ACTIONS(3481), 4, + STATE(336), 1, + sym_enable_escape_commandline_value, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [805] = 5, + [751] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, + ACTIONS(3566), 1, anon_sym_EQ, - ACTIONS(3557), 1, + ACTIONS(3568), 1, anon_sym_DQUOTE, - STATE(256), 1, - sym_update_host_keys_value, - ACTIONS(3553), 5, + STATE(339), 1, + sym_boolean, + STATE(340), 1, + sym_enable_ssh_keysign_value, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_control_master_value_token1, - [825] = 6, + [773] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3559), 1, + ACTIONS(3570), 1, anon_sym_EQ, - ACTIONS(3561), 1, + ACTIONS(3572), 1, anon_sym_DQUOTE, - STATE(268), 1, - sym_keep_alive_value, - STATE(269), 1, - sym_boolean, - ACTIONS(3481), 4, - aux_sym_boolean_token1, - aux_sym_boolean_token2, - aux_sym_boolean_token3, - aux_sym_boolean_token4, - [847] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3563), 1, - anon_sym_EQ, - ACTIONS(3565), 1, - anon_sym_DQUOTE, - STATE(285), 1, + STATE(383), 1, sym_boolean, - STATE(286), 1, - sym_challenge_response_authentication_value, - ACTIONS(3481), 4, + STATE(384), 1, + sym_gssapi_authentication_value, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [869] = 6, + [795] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3567), 1, + ACTIONS(3574), 1, anon_sym_EQ, - ACTIONS(3569), 1, + ACTIONS(3576), 1, anon_sym_DQUOTE, - STATE(399), 1, - sym_no_host_authentication_for_localhost_value, - STATE(400), 1, + STATE(347), 1, sym_boolean, - ACTIONS(3481), 4, + STATE(348), 1, + sym_exit_on_forward_failure_value, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [891] = 3, + [817] = 5, ACTIONS(3), 1, sym_comment, - STATE(18), 1, - sym_strict_host_key_checking_value, - ACTIONS(3463), 7, - aux_sym_boolean_token1, - aux_sym_boolean_token2, + ACTIONS(3510), 1, aux_sym_boolean_token3, - aux_sym_boolean_token4, - aux_sym_control_master_value_token1, - aux_sym_strict_host_key_checking_value_token1, - aux_sym_strict_host_key_checking_value_token2, - [907] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3571), 1, - anon_sym_EQ, - ACTIONS(3573), 1, + ACTIONS(3578), 1, anon_sym_DQUOTE, - STATE(289), 1, - sym_boolean, - STATE(290), 1, - sym_check_host_ip_value, - ACTIONS(3481), 4, + STATE(217), 1, + sym_canonicalize_hostname_value, + ACTIONS(3508), 5, aux_sym_boolean_token1, aux_sym_boolean_token2, - aux_sym_boolean_token3, aux_sym_boolean_token4, - [929] = 6, + aux_sym_canonicalize_hostname_value_token1, + aux_sym_canonicalize_hostname_value_token2, + [837] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3575), 1, + ACTIONS(3580), 1, anon_sym_EQ, - ACTIONS(3577), 1, + ACTIONS(3582), 1, anon_sym_DQUOTE, - STATE(301), 1, + STATE(239), 1, sym_boolean, - STATE(302), 1, - sym_clear_all_forwardings_value, - ACTIONS(3481), 4, + STATE(240), 1, + sym_add_keys_to_agent_value, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [951] = 6, + [859] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, + ACTIONS(3584), 1, anon_sym_EQ, - ACTIONS(3581), 1, + ACTIONS(3586), 1, anon_sym_DQUOTE, - STATE(283), 1, - sym_stream_local_bind_unlink_value, - STATE(284), 1, + STATE(415), 1, sym_boolean, - ACTIONS(3481), 4, + STATE(416), 1, + sym_hash_known_hosts_value, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [973] = 6, + [881] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3583), 1, + ACTIONS(3588), 1, anon_sym_EQ, - ACTIONS(3585), 1, + ACTIONS(3590), 1, anon_sym_DQUOTE, - STATE(305), 1, + STATE(399), 1, sym_boolean, - STATE(306), 1, - sym_compression_value, - ACTIONS(3481), 4, + STATE(400), 1, + sym_gssapi_renewal_forces_rekey_value, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [995] = 6, + [903] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3483), 1, + ACTIONS(3518), 1, sym_time_format, - ACTIONS(3587), 1, + ACTIONS(3592), 1, anon_sym_DQUOTE, - STATE(200), 1, + STATE(202), 1, sym_control_persist_value, - STATE(323), 1, + STATE(325), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1017] = 6, + [925] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, + ACTIONS(3594), 1, anon_sym_EQ, - ACTIONS(3591), 1, + ACTIONS(3596), 1, anon_sym_DQUOTE, - STATE(292), 1, - sym_stdin_null_value, - STATE(293), 1, + STATE(287), 1, sym_boolean, - ACTIONS(3481), 4, + STATE(288), 1, + sym_challenge_response_authentication_value, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1039] = 4, + [947] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3593), 1, + ACTIONS(3598), 1, + anon_sym_EQ, + ACTIONS(3600), 1, anon_sym_DQUOTE, - STATE(140), 1, - sym_request_tty_value, - ACTIONS(3475), 6, + STATE(389), 1, + sym_permit_local_command_value, + STATE(390), 1, + sym_boolean, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_control_master_value_token2, - aux_sym_request_tty_value_token1, - [1057] = 6, + [969] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3602), 1, anon_sym_EQ, - ACTIONS(3597), 1, + ACTIONS(3604), 1, anon_sym_DQUOTE, - STATE(333), 1, + STATE(391), 1, sym_boolean, - STATE(334), 1, - sym_enable_ssh_keysign_value, - ACTIONS(3481), 4, + STATE(392), 1, + sym_gssapi_delegate_credentials_value, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1079] = 6, + [991] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3599), 1, + ACTIONS(3606), 1, anon_sym_EQ, - ACTIONS(3601), 1, + ACTIONS(3608), 1, anon_sym_DQUOTE, - STATE(341), 1, + STATE(375), 1, sym_boolean, - STATE(342), 1, - sym_exit_on_forward_failure_value, - ACTIONS(3481), 4, + STATE(376), 1, + sym_gateway_ports_value, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1101] = 4, + [1013] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3603), 1, + ACTIONS(3610), 1, + anon_sym_EQ, + ACTIONS(3612), 1, anon_sym_DQUOTE, - STATE(144), 1, - sym_pubkey_authentication_value, - ACTIONS(3469), 6, + STATE(270), 1, + sym_keep_alive_value, + STATE(271), 1, + sym_boolean, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_pubkey_authentication_value_token1, - aux_sym_pubkey_authentication_value_token2, - [1119] = 4, + [1035] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 1, + ACTIONS(3498), 1, aux_sym_control_master_value_token2, - STATE(92), 1, + STATE(93), 1, sym_control_master_value, - ACTIONS(3455), 6, + ACTIONS(3492), 6, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, aux_sym_control_master_value_token1, aux_sym_control_master_value_token3, - [1137] = 6, + [1053] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3605), 1, + ACTIONS(3616), 1, anon_sym_EQ, - ACTIONS(3607), 1, + ACTIONS(3618), 1, anon_sym_DQUOTE, - STATE(349), 1, - sym_boolean, - STATE(350), 1, - sym_fork_after_authentication_value, - ACTIONS(3481), 4, + STATE(237), 1, + sym_verify_host_key_dns_value, + ACTIONS(3614), 5, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1159] = 4, + aux_sym_control_master_value_token1, + [1073] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 1, - aux_sym_control_master_value_token2, - STATE(202), 1, - sym_control_master_value, - ACTIONS(3455), 6, + ACTIONS(3620), 1, + anon_sym_EQ, + ACTIONS(3622), 1, + anon_sym_DQUOTE, + STATE(395), 1, + sym_boolean, + STATE(396), 1, + sym_gssapi_key_exchange_value, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_control_master_value_token1, - aux_sym_control_master_value_token3, - [1177] = 6, + [1095] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3609), 1, + ACTIONS(3624), 1, anon_sym_EQ, - ACTIONS(3611), 1, + ACTIONS(3626), 1, anon_sym_DQUOTE, - STATE(409), 1, + STATE(407), 1, sym_boolean, - STATE(410), 1, - sym_hash_known_hosts_value, - ACTIONS(3481), 4, + STATE(408), 1, + sym_gssapi_trust_dns_value, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1199] = 6, + [1117] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3613), 1, + ACTIONS(3628), 1, anon_sym_EQ, - ACTIONS(3615), 1, + ACTIONS(3630), 1, anon_sym_DQUOTE, - STATE(365), 1, + STATE(363), 1, sym_boolean, - STATE(366), 1, - sym_forward_x11_trusted_value, - ACTIONS(3481), 4, + STATE(364), 1, + sym_forward_x11_value, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1221] = 6, + [1139] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3617), 1, + ACTIONS(3632), 1, anon_sym_EQ, - ACTIONS(3619), 1, + ACTIONS(3634), 1, anon_sym_DQUOTE, - STATE(436), 1, - sym_kbd_interactive_authentication_value, STATE(437), 1, + sym_kbd_interactive_authentication_value, + STATE(438), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1243] = 6, + [1161] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3621), 1, + ACTIONS(3636), 1, anon_sym_EQ, - ACTIONS(3623), 1, + ACTIONS(3638), 1, anon_sym_DQUOTE, - STATE(389), 1, + STATE(232), 1, + sym_visual_host_key_value, + STATE(233), 1, sym_boolean, - STATE(390), 1, - sym_gssapi_key_exchange_value, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1265] = 6, + [1183] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3625), 1, + ACTIONS(3642), 1, anon_sym_EQ, - ACTIONS(3627), 1, + ACTIONS(3644), 1, anon_sym_DQUOTE, - STATE(357), 1, - sym_boolean, - STATE(358), 1, - sym_forward_x11_value, - ACTIONS(3481), 4, + STATE(258), 1, + sym_update_host_keys_value, + ACTIONS(3640), 5, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1287] = 6, + aux_sym_control_master_value_token1, + [1203] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3629), 1, + ACTIONS(3646), 1, anon_sym_EQ, - ACTIONS(3631), 1, + ACTIONS(3648), 1, anon_sym_DQUOTE, - STATE(433), 1, + STATE(358), 1, + sym_proxy_use_fdpass_value, + STATE(359), 1, sym_boolean, - STATE(434), 1, - sym_identities_only_value, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1309] = 6, + [1225] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 1, + ACTIONS(3650), 1, anon_sym_EQ, - ACTIONS(3635), 1, + ACTIONS(3652), 1, anon_sym_DQUOTE, - STATE(417), 1, + STATE(263), 1, sym_boolean, - STATE(418), 1, - sym_hostbased_authentication_value, - ACTIONS(3481), 4, + STATE(264), 1, + sym_canonicalize_fallback_local_value, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1331] = 6, + [1247] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3637), 1, + ACTIONS(3654), 1, anon_sym_EQ, - ACTIONS(3639), 1, + ACTIONS(3656), 1, anon_sym_DQUOTE, - STATE(369), 1, + STATE(423), 1, sym_boolean, - STATE(370), 1, - sym_gateway_ports_value, - ACTIONS(3481), 4, + STATE(424), 1, + sym_hostbased_authentication_value, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1353] = 6, + [1269] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3641), 1, + ACTIONS(3658), 1, anon_sym_EQ, - ACTIONS(3643), 1, + ACTIONS(3660), 1, anon_sym_DQUOTE, - STATE(393), 1, + STATE(254), 1, + sym_use_keychain_value, + STATE(255), 1, sym_boolean, - STATE(394), 1, - sym_gssapi_renewal_forces_rekey_value, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1375] = 6, + [1291] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3645), 1, + ACTIONS(3662), 1, anon_sym_EQ, - ACTIONS(3647), 1, + ACTIONS(3664), 1, anon_sym_DQUOTE, - STATE(355), 1, - sym_proxy_use_fdpass_value, - STATE(356), 1, + STATE(294), 1, + sym_stdin_null_value, + STATE(295), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1397] = 6, + [1313] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3649), 1, + ACTIONS(3666), 1, anon_sym_EQ, - ACTIONS(3651), 1, + ACTIONS(3668), 1, anon_sym_DQUOTE, - STATE(401), 1, + STATE(247), 1, sym_boolean, - STATE(402), 1, - sym_gssapi_trust_dns_value, - ACTIONS(3481), 4, + STATE(248), 1, + sym_batch_mode_value, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1419] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3491), 1, - aux_sym_boolean_token3, - STATE(105), 1, - sym_canonicalize_hostname_value, - ACTIONS(3489), 5, - aux_sym_boolean_token1, - aux_sym_boolean_token2, - aux_sym_boolean_token4, - aux_sym_canonicalize_hostname_value_token1, - aux_sym_canonicalize_hostname_value_token2, - [1436] = 5, + [1335] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3483), 1, - sym_time_format, - STATE(90), 1, - sym_control_persist_value, - STATE(323), 1, + ACTIONS(3670), 1, + anon_sym_EQ, + ACTIONS(3672), 1, + anon_sym_DQUOTE, + STATE(274), 1, + sym_tcp_keep_alive_value, + STATE(275), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1455] = 4, + [1357] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3653), 1, + ACTIONS(3674), 1, + anon_sym_EQ, + ACTIONS(3676), 1, anon_sym_DQUOTE, - STATE(117), 1, - sym_verify_host_key_dns_value, - ACTIONS(3519), 5, + STATE(285), 1, + sym_stream_local_bind_unlink_value, + STATE(286), 1, + sym_boolean, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_control_master_value_token1, - [1472] = 5, + [1379] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3655), 1, + ACTIONS(3678), 1, anon_sym_DQUOTE, - STATE(179), 1, - sym_hash_known_hosts_value, - STATE(409), 1, - sym_boolean, - ACTIONS(3481), 4, + STATE(145), 1, + sym_pubkey_authentication_value, + ACTIONS(3526), 6, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1491] = 5, + aux_sym_pubkey_authentication_value_token1, + aux_sym_pubkey_authentication_value_token2, + [1397] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3657), 1, + ACTIONS(3680), 1, + anon_sym_EQ, + ACTIONS(3682), 1, anon_sym_DQUOTE, - STATE(158), 1, - sym_no_host_authentication_for_localhost_value, - STATE(400), 1, + STATE(291), 1, sym_boolean, - ACTIONS(3481), 4, + STATE(292), 1, + sym_check_host_ip_value, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1510] = 5, + [1419] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3659), 1, + ACTIONS(3684), 1, + anon_sym_EQ, + ACTIONS(3686), 1, anon_sym_DQUOTE, - STATE(222), 1, - sym_add_keys_to_agent_value, - STATE(237), 1, + STATE(250), 1, + sym_use_roaming_value, + STATE(251), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1529] = 5, + [1441] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3661), 1, + ACTIONS(3688), 1, anon_sym_DQUOTE, - STATE(220), 1, - sym_batch_mode_value, - STATE(245), 1, + STATE(200), 1, + sym_enable_escape_commandline_value, + STATE(335), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1548] = 5, + [1460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3663), 1, - anon_sym_DQUOTE, - STATE(120), 1, - sym_use_roaming_value, - STATE(249), 1, - sym_boolean, - ACTIONS(3481), 4, + STATE(30), 1, + sym_request_tty_value, + ACTIONS(3500), 6, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1567] = 4, + aux_sym_control_master_value_token2, + aux_sym_request_tty_value_token1, + [1475] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3665), 1, + ACTIONS(3690), 1, anon_sym_DQUOTE, - STATE(122), 1, - sym_update_host_keys_value, - ACTIONS(3553), 5, + STATE(168), 1, + sym_kbd_interactive_authentication_value, + STATE(438), 1, + sym_boolean, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_control_master_value_token1, - [1584] = 5, + [1494] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3667), 1, + ACTIONS(3692), 1, anon_sym_DQUOTE, - STATE(184), 1, - sym_gssapi_key_exchange_value, - STATE(389), 1, + STATE(174), 1, + sym_identities_only_value, + STATE(439), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1603] = 4, + [1513] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3491), 1, - aux_sym_boolean_token3, - STATE(215), 1, - sym_canonicalize_hostname_value, - ACTIONS(3489), 5, + ACTIONS(3518), 1, + sym_time_format, + STATE(91), 1, + sym_control_persist_value, + STATE(325), 1, + sym_boolean, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, + aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_canonicalize_hostname_value_token1, - aux_sym_canonicalize_hostname_value_token2, - [1620] = 5, + [1532] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3669), 1, + ACTIONS(3694), 1, anon_sym_DQUOTE, - STATE(125), 1, - sym_keep_alive_value, - STATE(269), 1, + STATE(178), 1, + sym_hostbased_authentication_value, + STATE(423), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1639] = 5, + [1551] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3671), 1, + ACTIONS(3696), 1, anon_sym_DQUOTE, - STATE(126), 1, - sym_tcp_keep_alive_value, - STATE(273), 1, + STATE(180), 1, + sym_hash_known_hosts_value, + STATE(415), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1658] = 5, + [1570] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 1, + ACTIONS(3698), 1, anon_sym_DQUOTE, - STATE(210), 1, - sym_challenge_response_authentication_value, - STATE(285), 1, + STATE(159), 1, + sym_no_host_authentication_for_localhost_value, + STATE(403), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1677] = 5, + [1589] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3675), 1, + ACTIONS(3700), 1, anon_sym_DQUOTE, - STATE(181), 1, + STATE(182), 1, sym_gssapi_trust_dns_value, - STATE(401), 1, + STATE(407), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1696] = 5, + [1608] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3677), 1, + ACTIONS(3702), 1, anon_sym_DQUOTE, - STATE(209), 1, - sym_check_host_ip_value, - STATE(289), 1, + STATE(157), 1, + sym_password_authentication_value, + STATE(394), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1715] = 5, + [1627] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3679), 1, + ACTIONS(3704), 1, anon_sym_DQUOTE, - STATE(129), 1, - sym_stream_local_bind_unlink_value, - STATE(284), 1, + STATE(184), 1, + sym_gssapi_renewal_forces_rekey_value, + STATE(399), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1734] = 5, + [1646] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(3706), 1, anon_sym_DQUOTE, STATE(156), 1, - sym_password_authentication_value, - STATE(392), 1, - sym_boolean, - ACTIONS(3481), 4, - aux_sym_boolean_token1, - aux_sym_boolean_token2, - aux_sym_boolean_token3, - aux_sym_boolean_token4, - [1753] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3683), 1, - anon_sym_DQUOTE, - STATE(167), 1, - sym_kbd_interactive_authentication_value, - STATE(437), 1, + sym_permit_local_command_value, + STATE(390), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1772] = 5, + [1665] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(3708), 1, anon_sym_DQUOTE, - STATE(116), 1, - sym_visual_host_key_value, - STATE(231), 1, + STATE(185), 1, + sym_gssapi_key_exchange_value, + STATE(395), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1791] = 5, + [1684] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3687), 1, + ACTIONS(3710), 1, anon_sym_DQUOTE, - STATE(131), 1, - sym_stdin_null_value, - STATE(293), 1, + STATE(186), 1, + sym_gssapi_delegate_credentials_value, + STATE(391), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1810] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3689), 1, - anon_sym_EQ, - ACTIONS(3691), 1, - anon_sym_DQUOTE, - STATE(264), 1, - sym_tunnel_value, - ACTIONS(3693), 4, - anon_sym_yes, - anon_sym_no, - anon_sym_point_DASHto_DASHpoint, - anon_sym_ethernet, - [1829] = 5, + [1703] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(3712), 1, anon_sym_DQUOTE, - STATE(206), 1, - sym_clear_all_forwardings_value, - STATE(301), 1, + STATE(188), 1, + sym_gssapi_authentication_value, + STATE(383), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1848] = 5, + [1722] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3697), 1, + ACTIONS(3714), 1, anon_sym_DQUOTE, - STATE(155), 1, - sym_permit_local_command_value, - STATE(388), 1, + STATE(190), 1, + sym_gateway_ports_value, + STATE(375), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1867] = 5, + [1741] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3699), 1, + ACTIONS(3716), 1, anon_sym_DQUOTE, - STATE(205), 1, - sym_compression_value, - STATE(305), 1, + STATE(191), 1, + sym_forward_x11_trusted_value, + STATE(371), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1886] = 5, + [1760] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3701), 1, + ACTIONS(3718), 1, anon_sym_DQUOTE, - STATE(121), 1, - sym_use_keychain_value, - STATE(253), 1, + STATE(148), 1, + sym_proxy_use_fdpass_value, + STATE(359), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1905] = 5, + [1779] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3703), 1, + ACTIONS(3720), 1, anon_sym_DQUOTE, - STATE(173), 1, - sym_identities_only_value, - STATE(433), 1, + STATE(193), 1, + sym_forward_x11_value, + STATE(363), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1924] = 5, + [1798] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3705), 1, + ACTIONS(3722), 1, anon_sym_DQUOTE, - STATE(216), 1, - sym_canonicalize_fallback_local_value, - STATE(261), 1, + STATE(195), 1, + sym_fork_after_authentication_value, + STATE(355), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1943] = 5, + [1817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3707), 1, - anon_sym_DQUOTE, - STATE(187), 1, - sym_gssapi_authentication_value, - STATE(377), 1, - sym_boolean, - ACTIONS(3481), 4, + STATE(145), 1, + sym_pubkey_authentication_value, + ACTIONS(3526), 6, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1962] = 5, + aux_sym_pubkey_authentication_value_token1, + aux_sym_pubkey_authentication_value_token2, + [1832] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3709), 1, + ACTIONS(3724), 1, anon_sym_DQUOTE, - STATE(183), 1, - sym_gssapi_renewal_forces_rekey_value, - STATE(393), 1, + STATE(197), 1, + sym_exit_on_forward_failure_value, + STATE(347), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1981] = 5, + [1851] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3711), 1, + ACTIONS(3726), 1, anon_sym_DQUOTE, - STATE(198), 1, + STATE(199), 1, sym_enable_ssh_keysign_value, - STATE(333), 1, + STATE(339), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2000] = 3, + [1870] = 3, ACTIONS(3), 1, sym_comment, - STATE(140), 1, + STATE(141), 1, sym_request_tty_value, - ACTIONS(3475), 6, + ACTIONS(3500), 6, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, aux_sym_control_master_value_token2, aux_sym_request_tty_value_token1, - [2015] = 5, + [1885] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3483), 1, + ACTIONS(3518), 1, sym_time_format, - STATE(200), 1, + STATE(202), 1, sym_control_persist_value, - STATE(323), 1, + STATE(325), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2034] = 5, + [1904] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3713), 1, + ACTIONS(3728), 1, anon_sym_DQUOTE, - STATE(192), 1, - sym_forward_x11_value, - STATE(357), 1, + STATE(207), 1, + sym_compression_value, + STATE(307), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2053] = 5, + [1923] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3715), 1, + ACTIONS(3730), 1, + anon_sym_EQ, + ACTIONS(3732), 1, anon_sym_DQUOTE, - STATE(189), 1, - sym_gateway_ports_value, - STATE(369), 1, + STATE(266), 1, + sym_tunnel_value, + ACTIONS(3734), 4, + anon_sym_yes, + anon_sym_no, + anon_sym_point_DASHto_DASHpoint, + anon_sym_ethernet, + [1942] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3736), 1, + anon_sym_DQUOTE, + STATE(208), 1, + sym_clear_all_forwardings_value, + STATE(303), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2072] = 3, + [1961] = 5, ACTIONS(3), 1, sym_comment, - STATE(30), 1, - sym_request_tty_value, - ACTIONS(3475), 6, + ACTIONS(3738), 1, + anon_sym_DQUOTE, + STATE(132), 1, + sym_stdin_null_value, + STATE(295), 1, + sym_boolean, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_control_master_value_token2, - aux_sym_request_tty_value_token1, - [2087] = 5, + [1980] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3510), 1, + aux_sym_boolean_token3, + STATE(106), 1, + sym_canonicalize_hostname_value, + ACTIONS(3508), 5, + aux_sym_boolean_token1, + aux_sym_boolean_token2, + aux_sym_boolean_token4, + aux_sym_canonicalize_hostname_value_token1, + aux_sym_canonicalize_hostname_value_token2, + [1997] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3717), 1, + ACTIONS(3740), 1, anon_sym_DQUOTE, - STATE(194), 1, - sym_fork_after_authentication_value, - STATE(349), 1, + STATE(130), 1, + sym_stream_local_bind_unlink_value, + STATE(286), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2106] = 5, + [2016] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3719), 1, + ACTIONS(3742), 1, anon_sym_DQUOTE, - STATE(185), 1, - sym_gssapi_delegate_credentials_value, - STATE(385), 1, + STATE(224), 1, + sym_add_keys_to_agent_value, + STATE(239), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2125] = 5, + [2035] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3721), 1, + ACTIONS(3744), 1, anon_sym_DQUOTE, - STATE(190), 1, - sym_forward_x11_trusted_value, - STATE(365), 1, + STATE(211), 1, + sym_check_host_ip_value, + STATE(291), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2144] = 3, + [2054] = 5, ACTIONS(3), 1, sym_comment, - STATE(144), 1, - sym_pubkey_authentication_value, - ACTIONS(3469), 6, + ACTIONS(3746), 1, + anon_sym_DQUOTE, + STATE(212), 1, + sym_challenge_response_authentication_value, + STATE(287), 1, + sym_boolean, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_pubkey_authentication_value_token1, - aux_sym_pubkey_authentication_value_token2, - [2159] = 5, + [2073] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3723), 1, + ACTIONS(3748), 1, anon_sym_DQUOTE, - STATE(147), 1, - sym_proxy_use_fdpass_value, - STATE(356), 1, + STATE(117), 1, + sym_visual_host_key_value, + STATE(233), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2178] = 5, + [2092] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3725), 1, + ACTIONS(3750), 1, anon_sym_DQUOTE, - STATE(177), 1, - sym_hostbased_authentication_value, - STATE(417), 1, + STATE(122), 1, + sym_use_keychain_value, + STATE(255), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2197] = 3, + [2111] = 5, ACTIONS(3), 1, sym_comment, - STATE(34), 1, - sym_pubkey_authentication_value, - ACTIONS(3469), 6, + ACTIONS(3752), 1, + anon_sym_DQUOTE, + STATE(127), 1, + sym_tcp_keep_alive_value, + STATE(275), 1, + sym_boolean, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_pubkey_authentication_value_token1, - aux_sym_pubkey_authentication_value_token2, - [2212] = 5, + [2130] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3727), 1, + ACTIONS(3754), 1, anon_sym_DQUOTE, - STATE(196), 1, - sym_exit_on_forward_failure_value, - STATE(341), 1, - sym_boolean, - ACTIONS(3481), 4, + STATE(118), 1, + sym_verify_host_key_dns_value, + ACTIONS(3614), 5, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2231] = 4, + aux_sym_control_master_value_token1, + [2147] = 4, ACTIONS(3), 1, sym_comment, - STATE(129), 1, - sym_stream_local_bind_unlink_value, - STATE(284), 1, - sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3510), 1, + aux_sym_boolean_token3, + STATE(217), 1, + sym_canonicalize_hostname_value, + ACTIONS(3508), 5, aux_sym_boolean_token1, aux_sym_boolean_token2, - aux_sym_boolean_token3, aux_sym_boolean_token4, - [2247] = 4, + aux_sym_canonicalize_hostname_value_token1, + aux_sym_canonicalize_hostname_value_token2, + [2164] = 4, ACTIONS(3), 1, sym_comment, - STATE(110), 1, - sym_batch_mode_value, - STATE(245), 1, - sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3756), 1, + anon_sym_DQUOTE, + STATE(123), 1, + sym_update_host_keys_value, + ACTIONS(3640), 5, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2263] = 4, + aux_sym_control_master_value_token1, + [2181] = 5, ACTIONS(3), 1, sym_comment, - STATE(220), 1, - sym_batch_mode_value, - STATE(245), 1, + ACTIONS(3758), 1, + anon_sym_DQUOTE, + STATE(126), 1, + sym_keep_alive_value, + STATE(271), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2279] = 4, + [2200] = 5, ACTIONS(3), 1, sym_comment, - STATE(184), 1, - sym_gssapi_key_exchange_value, - STATE(389), 1, + ACTIONS(3760), 1, + anon_sym_DQUOTE, + STATE(222), 1, + sym_batch_mode_value, + STATE(247), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2295] = 4, + [2219] = 5, ACTIONS(3), 1, sym_comment, - STATE(84), 1, - sym_fork_after_authentication_value, - STATE(349), 1, + ACTIONS(3762), 1, + anon_sym_DQUOTE, + STATE(218), 1, + sym_canonicalize_fallback_local_value, + STATE(263), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2311] = 4, + [2238] = 3, ACTIONS(3), 1, sym_comment, - STATE(48), 1, - sym_no_host_authentication_for_localhost_value, - STATE(400), 1, - sym_boolean, - ACTIONS(3481), 4, + STATE(34), 1, + sym_pubkey_authentication_value, + ACTIONS(3526), 6, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2327] = 4, + aux_sym_pubkey_authentication_value_token1, + aux_sym_pubkey_authentication_value_token2, + [2253] = 5, ACTIONS(3), 1, sym_comment, - STATE(116), 1, - sym_visual_host_key_value, - STATE(231), 1, + ACTIONS(3764), 1, + anon_sym_DQUOTE, + STATE(121), 1, + sym_use_roaming_value, + STATE(251), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2343] = 4, + [2272] = 4, ACTIONS(3), 1, sym_comment, - STATE(158), 1, - sym_no_host_authentication_for_localhost_value, - STATE(400), 1, + STATE(130), 1, + sym_stream_local_bind_unlink_value, + STATE(286), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2359] = 4, + [2288] = 4, ACTIONS(3), 1, sym_comment, - STATE(185), 1, - sym_gssapi_delegate_credentials_value, - STATE(385), 1, + STATE(195), 1, + sym_fork_after_authentication_value, + STATE(355), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2375] = 4, + [2304] = 4, ACTIONS(3), 1, sym_comment, - STATE(46), 1, - sym_password_authentication_value, - STATE(392), 1, + STATE(168), 1, + sym_kbd_interactive_authentication_value, + STATE(438), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2391] = 3, + [2320] = 4, ACTIONS(3), 1, sym_comment, - STATE(117), 1, - sym_verify_host_key_dns_value, - ACTIONS(3519), 5, + STATE(174), 1, + sym_identities_only_value, + STATE(439), 1, + sym_boolean, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_control_master_value_token1, - [2405] = 4, + [2336] = 4, ACTIONS(3), 1, sym_comment, - STATE(99), 1, - sym_check_host_ip_value, - STATE(289), 1, + STATE(178), 1, + sym_hostbased_authentication_value, + STATE(423), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2421] = 4, + [2352] = 4, ACTIONS(3), 1, sym_comment, - STATE(45), 1, - sym_permit_local_command_value, - STATE(388), 1, + STATE(111), 1, + sym_batch_mode_value, + STATE(247), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2437] = 4, + [2368] = 4, ACTIONS(3), 1, sym_comment, - STATE(86), 1, - sym_exit_on_forward_failure_value, - STATE(341), 1, + STATE(77), 1, + sym_gssapi_authentication_value, + STATE(383), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2453] = 4, + [2384] = 4, ACTIONS(3), 1, sym_comment, - STATE(187), 1, - sym_gssapi_authentication_value, - STATE(377), 1, + STATE(48), 1, + sym_no_host_authentication_for_localhost_value, + STATE(403), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2469] = 4, + [2400] = 4, ACTIONS(3), 1, sym_comment, - STATE(222), 1, - sym_add_keys_to_agent_value, - STATE(237), 1, + STATE(180), 1, + sym_hash_known_hosts_value, + STATE(415), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2485] = 4, + [2416] = 4, ACTIONS(3), 1, sym_comment, - STATE(183), 1, - sym_gssapi_renewal_forces_rekey_value, - STATE(393), 1, + STATE(182), 1, + sym_gssapi_trust_dns_value, + STATE(407), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2501] = 4, + [2432] = 4, ACTIONS(3), 1, sym_comment, - STATE(189), 1, - sym_gateway_ports_value, - STATE(369), 1, + STATE(113), 1, + sym_add_keys_to_agent_value, + STATE(239), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2517] = 4, + [2448] = 4, ACTIONS(3), 1, sym_comment, - STATE(15), 1, - sym_keep_alive_value, - STATE(269), 1, + STATE(46), 1, + sym_password_authentication_value, + STATE(394), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2533] = 4, + [2464] = 4, ACTIONS(3), 1, sym_comment, - STATE(88), 1, - sym_enable_ssh_keysign_value, - STATE(333), 1, + STATE(159), 1, + sym_no_host_authentication_for_localhost_value, + STATE(403), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2549] = 4, + [2480] = 4, ACTIONS(3), 1, sym_comment, - STATE(190), 1, - sym_forward_x11_trusted_value, - STATE(365), 1, + STATE(45), 1, + sym_permit_local_command_value, + STATE(390), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2565] = 4, + [2496] = 4, ACTIONS(3), 1, sym_comment, - STATE(120), 1, - sym_use_roaming_value, - STATE(249), 1, + STATE(63), 1, + sym_identities_only_value, + STATE(439), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2581] = 4, + [2512] = 4, ACTIONS(3), 1, sym_comment, - STATE(181), 1, - sym_gssapi_trust_dns_value, - STATE(401), 1, + STATE(184), 1, + sym_gssapi_renewal_forces_rekey_value, + STATE(399), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2597] = 4, + [2528] = 4, ACTIONS(3), 1, sym_comment, - STATE(147), 1, - sym_proxy_use_fdpass_value, - STATE(356), 1, + STATE(117), 1, + sym_visual_host_key_value, + STATE(233), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2613] = 4, + [2544] = 4, ACTIONS(3), 1, sym_comment, - STATE(121), 1, - sym_use_keychain_value, - STATE(253), 1, + STATE(157), 1, + sym_password_authentication_value, + STATE(394), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2629] = 4, + [2560] = 4, ACTIONS(3), 1, sym_comment, - STATE(192), 1, - sym_forward_x11_value, - STATE(357), 1, + STATE(224), 1, + sym_add_keys_to_agent_value, + STATE(239), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2645] = 4, + [2576] = 3, ACTIONS(3), 1, sym_comment, - STATE(37), 1, - sym_proxy_use_fdpass_value, - STATE(356), 1, - sym_boolean, - ACTIONS(3481), 4, + STATE(118), 1, + sym_verify_host_key_dns_value, + ACTIONS(3614), 5, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2661] = 3, + aux_sym_control_master_value_token1, + [2590] = 4, ACTIONS(3), 1, sym_comment, - STATE(122), 1, - sym_update_host_keys_value, - ACTIONS(3553), 5, + STATE(185), 1, + sym_gssapi_key_exchange_value, + STATE(395), 1, + sym_boolean, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_control_master_value_token1, - [2675] = 4, + [2606] = 4, ACTIONS(3), 1, sym_comment, - STATE(216), 1, - sym_canonicalize_fallback_local_value, - STATE(261), 1, + STATE(156), 1, + sym_permit_local_command_value, + STATE(390), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2691] = 4, + [2622] = 5, ACTIONS(3), 1, sym_comment, - STATE(194), 1, - sym_fork_after_authentication_value, - STATE(349), 1, + ACTIONS(3766), 1, + anon_sym_EQ, + ACTIONS(3768), 1, + anon_sym_DQUOTE, + STATE(301), 1, + sym_session_type_value, + ACTIONS(3770), 3, + aux_sym_canonicalize_hostname_value_token2, + aux_sym_session_type_value_token1, + aux_sym_session_type_value_token2, + [2640] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(222), 1, + sym_batch_mode_value, + STATE(247), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2707] = 4, + [2656] = 4, ACTIONS(3), 1, sym_comment, - STATE(57), 1, - sym_kbd_interactive_authentication_value, - STATE(437), 1, + STATE(121), 1, + sym_use_roaming_value, + STATE(251), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2723] = 4, + [2672] = 4, ACTIONS(3), 1, sym_comment, - STATE(155), 1, - sym_permit_local_command_value, - STATE(388), 1, + STATE(186), 1, + sym_gssapi_delegate_credentials_value, + STATE(391), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2739] = 4, + [2688] = 4, ACTIONS(3), 1, sym_comment, - STATE(77), 1, - sym_gssapi_authentication_value, - STATE(377), 1, + STATE(37), 1, + sym_proxy_use_fdpass_value, + STATE(359), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2755] = 4, + [2704] = 4, ACTIONS(3), 1, sym_comment, - STATE(112), 1, - sym_add_keys_to_agent_value, - STATE(237), 1, + STATE(122), 1, + sym_use_keychain_value, + STATE(255), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2771] = 4, + [2720] = 4, ACTIONS(3), 1, sym_comment, - STATE(63), 1, - sym_identities_only_value, - STATE(433), 1, + STATE(96), 1, + sym_compression_value, + STATE(307), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2787] = 4, + [2736] = 3, ACTIONS(3), 1, sym_comment, - STATE(16), 1, - sym_tcp_keep_alive_value, - STATE(273), 1, - sym_boolean, - ACTIONS(3481), 4, + STATE(123), 1, + sym_update_host_keys_value, + ACTIONS(3640), 5, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2803] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3729), 1, - anon_sym_DQUOTE, - STATE(124), 1, - sym_tunnel_value, - ACTIONS(3693), 4, - anon_sym_yes, - anon_sym_no, - anon_sym_point_DASHto_DASHpoint, - anon_sym_ethernet, - [2819] = 4, + aux_sym_control_master_value_token1, + [2750] = 4, ACTIONS(3), 1, sym_comment, - STATE(125), 1, - sym_keep_alive_value, - STATE(269), 1, + STATE(89), 1, + sym_enable_escape_commandline_value, + STATE(335), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2835] = 4, + [2766] = 4, ACTIONS(3), 1, sym_comment, - STATE(75), 1, - sym_gssapi_delegate_credentials_value, - STATE(385), 1, + STATE(188), 1, + sym_gssapi_authentication_value, + STATE(383), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2851] = 4, + [2782] = 4, ACTIONS(3), 1, sym_comment, - STATE(196), 1, - sym_exit_on_forward_failure_value, - STATE(341), 1, + STATE(218), 1, + sym_canonicalize_fallback_local_value, + STATE(263), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2867] = 4, + [2798] = 4, ACTIONS(3), 1, sym_comment, - STATE(206), 1, - sym_clear_all_forwardings_value, - STATE(301), 1, + STATE(79), 1, + sym_gateway_ports_value, + STATE(375), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2883] = 4, + [2814] = 4, ACTIONS(3), 1, sym_comment, - STATE(126), 1, - sym_tcp_keep_alive_value, - STATE(273), 1, + STATE(190), 1, + sym_gateway_ports_value, + STATE(375), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2899] = 4, + [2830] = 4, ACTIONS(3), 1, sym_comment, - STATE(131), 1, - sym_stdin_null_value, - STATE(293), 1, + STATE(97), 1, + sym_clear_all_forwardings_value, + STATE(303), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2915] = 4, + [2846] = 4, ACTIONS(3), 1, sym_comment, - STATE(79), 1, - sym_gateway_ports_value, - STATE(369), 1, + STATE(191), 1, + sym_forward_x11_trusted_value, + STATE(371), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2931] = 5, + [2862] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3731), 1, - anon_sym_EQ, - ACTIONS(3733), 1, + ACTIONS(3772), 1, anon_sym_DQUOTE, - STATE(299), 1, - sym_session_type_value, - ACTIONS(3735), 3, - aux_sym_canonicalize_hostname_value_token2, - aux_sym_session_type_value_token1, - aux_sym_session_type_value_token2, - [2949] = 4, + STATE(125), 1, + sym_tunnel_value, + ACTIONS(3734), 4, + anon_sym_yes, + anon_sym_no, + anon_sym_point_DASHto_DASHpoint, + anon_sym_ethernet, + [2878] = 4, ACTIONS(3), 1, sym_comment, - STATE(198), 1, - sym_enable_ssh_keysign_value, - STATE(333), 1, + STATE(126), 1, + sym_keep_alive_value, + STATE(271), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2965] = 4, + [2894] = 4, ACTIONS(3), 1, sym_comment, - STATE(95), 1, - sym_compression_value, - STATE(305), 1, + STATE(67), 1, + sym_hostbased_authentication_value, + STATE(423), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2981] = 4, + [2910] = 4, ACTIONS(3), 1, sym_comment, - STATE(167), 1, - sym_kbd_interactive_authentication_value, - STATE(437), 1, + STATE(88), 1, + sym_enable_ssh_keysign_value, + STATE(339), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2997] = 4, + [2926] = 4, ACTIONS(3), 1, sym_comment, - STATE(210), 1, - sym_challenge_response_authentication_value, - STATE(285), 1, + STATE(127), 1, + sym_tcp_keep_alive_value, + STATE(275), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3013] = 4, + [2942] = 4, ACTIONS(3), 1, sym_comment, - STATE(96), 1, - sym_clear_all_forwardings_value, - STATE(301), 1, + STATE(193), 1, + sym_forward_x11_value, + STATE(363), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3029] = 3, + [2958] = 4, ACTIONS(3), 1, sym_comment, - STATE(12), 1, - sym_update_host_keys_value, - ACTIONS(3553), 5, + STATE(148), 1, + sym_proxy_use_fdpass_value, + STATE(359), 1, + sym_boolean, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_control_master_value_token1, - [3043] = 4, + [2974] = 4, ACTIONS(3), 1, sym_comment, - STATE(177), 1, - sym_hostbased_authentication_value, - STATE(417), 1, + STATE(107), 1, + sym_canonicalize_fallback_local_value, + STATE(263), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3059] = 4, + [2990] = 4, ACTIONS(3), 1, sym_comment, - STATE(74), 1, - sym_gssapi_key_exchange_value, - STATE(389), 1, + STATE(69), 1, + sym_hash_known_hosts_value, + STATE(415), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3075] = 4, + [3006] = 4, ACTIONS(3), 1, sym_comment, - STATE(6), 1, - sym_visual_host_key_value, - STATE(231), 1, + STATE(100), 1, + sym_check_host_ip_value, + STATE(291), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3091] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3737), 1, - anon_sym_EQ, - ACTIONS(3739), 1, - anon_sym_DQUOTE, - ACTIONS(3743), 1, - aux_sym_address_family_value_token2, - STATE(242), 1, - sym_address_family_value, - ACTIONS(3741), 2, - aux_sym_address_family_value_token1, - aux_sym_address_family_value_token3, - [3111] = 3, + [3022] = 4, ACTIONS(3), 1, sym_comment, - STATE(7), 1, - sym_verify_host_key_dns_value, - ACTIONS(3519), 5, + STATE(80), 1, + sym_forward_x11_trusted_value, + STATE(371), 1, + sym_boolean, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_control_master_value_token1, - [3125] = 4, + [3038] = 4, ACTIONS(3), 1, sym_comment, - STATE(179), 1, - sym_hash_known_hosts_value, - STATE(409), 1, + STATE(6), 1, + sym_visual_host_key_value, + STATE(233), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3141] = 4, + [3054] = 4, ACTIONS(3), 1, sym_comment, - STATE(73), 1, - sym_gssapi_renewal_forces_rekey_value, - STATE(393), 1, + STATE(212), 1, + sym_challenge_response_authentication_value, + STATE(287), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3157] = 4, + [3070] = 4, ACTIONS(3), 1, sym_comment, - STATE(82), 1, - sym_forward_x11_value, - STATE(357), 1, + STATE(86), 1, + sym_exit_on_forward_failure_value, + STATE(347), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3173] = 4, + [3086] = 6, ACTIONS(3), 1, sym_comment, - STATE(67), 1, - sym_hostbased_authentication_value, - STATE(417), 1, - sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3774), 1, + anon_sym_EQ, + ACTIONS(3776), 1, + anon_sym_DQUOTE, + ACTIONS(3780), 1, + aux_sym_address_family_value_token2, + STATE(244), 1, + sym_address_family_value, + ACTIONS(3778), 2, + aux_sym_address_family_value_token1, + aux_sym_address_family_value_token3, + [3106] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(7), 1, + sym_verify_host_key_dns_value, + ACTIONS(3614), 5, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3189] = 4, + aux_sym_control_master_value_token1, + [3120] = 4, ACTIONS(3), 1, sym_comment, - STATE(205), 1, - sym_compression_value, - STATE(305), 1, + STATE(57), 1, + sym_kbd_interactive_authentication_value, + STATE(438), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3205] = 4, + [3136] = 4, ACTIONS(3), 1, sym_comment, - STATE(80), 1, - sym_forward_x11_trusted_value, - STATE(365), 1, + STATE(211), 1, + sym_check_host_ip_value, + STATE(291), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3221] = 4, + [3152] = 4, ACTIONS(3), 1, sym_comment, - STATE(209), 1, - sym_check_host_ip_value, - STATE(289), 1, + STATE(197), 1, + sym_exit_on_forward_failure_value, + STATE(347), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3237] = 4, + [3168] = 4, ACTIONS(3), 1, sym_comment, - STATE(21), 1, + STATE(132), 1, sym_stdin_null_value, - STATE(293), 1, + STATE(295), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3253] = 4, + [3184] = 4, ACTIONS(3), 1, sym_comment, STATE(10), 1, sym_use_roaming_value, - STATE(249), 1, + STATE(251), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3269] = 4, + [3200] = 4, ACTIONS(3), 1, sym_comment, - STATE(100), 1, - sym_challenge_response_authentication_value, - STATE(285), 1, + STATE(199), 1, + sym_enable_ssh_keysign_value, + STATE(339), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3285] = 4, + [3216] = 4, ACTIONS(3), 1, sym_comment, - STATE(69), 1, - sym_hash_known_hosts_value, - STATE(409), 1, + STATE(11), 1, + sym_use_keychain_value, + STATE(255), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3301] = 4, + [3232] = 4, ACTIONS(3), 1, sym_comment, - STATE(156), 1, - sym_password_authentication_value, - STATE(392), 1, + STATE(75), 1, + sym_gssapi_delegate_credentials_value, + STATE(391), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3317] = 4, + [3248] = 4, ACTIONS(3), 1, sym_comment, - STATE(11), 1, - sym_use_keychain_value, - STATE(253), 1, + STATE(71), 1, + sym_gssapi_trust_dns_value, + STATE(407), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3333] = 4, + [3264] = 4, ACTIONS(3), 1, sym_comment, - STATE(19), 1, - sym_stream_local_bind_unlink_value, - STATE(284), 1, + STATE(208), 1, + sym_clear_all_forwardings_value, + STATE(303), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3349] = 4, + [3280] = 4, ACTIONS(3), 1, sym_comment, - STATE(173), 1, - sym_identities_only_value, - STATE(433), 1, + STATE(21), 1, + sym_stdin_null_value, + STATE(295), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3365] = 4, + [3296] = 3, ACTIONS(3), 1, sym_comment, - STATE(106), 1, - sym_canonicalize_fallback_local_value, - STATE(261), 1, + STATE(12), 1, + sym_update_host_keys_value, + ACTIONS(3640), 5, + aux_sym_boolean_token1, + aux_sym_boolean_token2, + aux_sym_boolean_token3, + aux_sym_boolean_token4, + aux_sym_control_master_value_token1, + [3310] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(200), 1, + sym_enable_escape_commandline_value, + STATE(335), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3381] = 4, + [3326] = 4, ACTIONS(3), 1, sym_comment, - STATE(71), 1, - sym_gssapi_trust_dns_value, - STATE(401), 1, + STATE(82), 1, + sym_forward_x11_value, + STATE(363), 1, sym_boolean, - ACTIONS(3481), 4, + ACTIONS(3516), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3397] = 4, + [3342] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3745), 1, - anon_sym_DQUOTE, - STATE(133), 1, - sym_session_type_value, - ACTIONS(3735), 3, - aux_sym_canonicalize_hostname_value_token2, - aux_sym_session_type_value_token1, - aux_sym_session_type_value_token2, - [3412] = 6, - ACTIONS(3747), 1, + STATE(101), 1, + sym_challenge_response_authentication_value, + STATE(287), 1, + sym_boolean, + ACTIONS(3516), 4, + aux_sym_boolean_token1, + aux_sym_boolean_token2, + aux_sym_boolean_token3, + aux_sym_boolean_token4, + [3358] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - aux_sym_pattern_token1, - ACTIONS(3751), 1, - anon_sym_EQ, - ACTIONS(3753), 1, - anon_sym_DQUOTE, - STATE(232), 1, - sym_pattern, - STATE(233), 1, - sym_match_value, - [3431] = 6, - ACTIONS(3747), 1, + STATE(15), 1, + sym_keep_alive_value, + STATE(271), 1, + sym_boolean, + ACTIONS(3516), 4, + aux_sym_boolean_token1, + aux_sym_boolean_token2, + aux_sym_boolean_token3, + aux_sym_boolean_token4, + [3374] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3749), 1, - aux_sym_pattern_token1, - ACTIONS(3755), 1, - anon_sym_EQ, - ACTIONS(3757), 1, - anon_sym_DQUOTE, - STATE(228), 1, - sym_pattern, - STATE(229), 1, - sym_host_value, - [3450] = 5, - ACTIONS(3747), 1, + STATE(19), 1, + sym_stream_local_bind_unlink_value, + STATE(286), 1, + sym_boolean, + ACTIONS(3516), 4, + aux_sym_boolean_token1, + aux_sym_boolean_token2, + aux_sym_boolean_token3, + aux_sym_boolean_token4, + [3390] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 1, - anon_sym_EQ, - ACTIONS(3761), 1, - anon_sym_DQUOTE, - STATE(338), 1, - sym_escape_char_value, - ACTIONS(3763), 2, - anon_sym_none, - aux_sym_escape_char_value_token1, - [3467] = 5, + STATE(74), 1, + sym_gssapi_key_exchange_value, + STATE(395), 1, + sym_boolean, + ACTIONS(3516), 4, + aux_sym_boolean_token1, + aux_sym_boolean_token2, + aux_sym_boolean_token3, + aux_sym_boolean_token4, + [3406] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3765), 1, - anon_sym_EQ, - ACTIONS(3767), 1, - anon_sym_DQUOTE, - STATE(346), 1, - sym_fingerprint_hash_value, - ACTIONS(3769), 2, - anon_sym_md5, - anon_sym_sha256, - [3484] = 3, + STATE(207), 1, + sym_compression_value, + STATE(307), 1, + sym_boolean, + ACTIONS(3516), 4, + aux_sym_boolean_token1, + aux_sym_boolean_token2, + aux_sym_boolean_token3, + aux_sym_boolean_token4, + [3422] = 4, ACTIONS(3), 1, sym_comment, - STATE(124), 1, + STATE(16), 1, + sym_tcp_keep_alive_value, + STATE(275), 1, + sym_boolean, + ACTIONS(3516), 4, + aux_sym_boolean_token1, + aux_sym_boolean_token2, + aux_sym_boolean_token3, + aux_sym_boolean_token4, + [3438] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(84), 1, + sym_fork_after_authentication_value, + STATE(355), 1, + sym_boolean, + ACTIONS(3516), 4, + aux_sym_boolean_token1, + aux_sym_boolean_token2, + aux_sym_boolean_token3, + aux_sym_boolean_token4, + [3454] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(73), 1, + sym_gssapi_renewal_forces_rekey_value, + STATE(399), 1, + sym_boolean, + ACTIONS(3516), 4, + aux_sym_boolean_token1, + aux_sym_boolean_token2, + aux_sym_boolean_token3, + aux_sym_boolean_token4, + [3470] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(14), 1, sym_tunnel_value, - ACTIONS(3693), 4, + ACTIONS(3734), 4, anon_sym_yes, anon_sym_no, anon_sym_point_DASHto_DASHpoint, anon_sym_ethernet, - [3497] = 5, + [3483] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3771), 1, - anon_sym_EQ, - ACTIONS(3773), 1, - anon_sym_DQUOTE, - STATE(367), 1, - sym_protocol_value, - ACTIONS(3775), 2, - anon_sym_1, - anon_sym_2, - [3514] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3743), 1, + ACTIONS(3780), 1, aux_sym_address_family_value_token2, - ACTIONS(3777), 1, + ACTIONS(3782), 1, anon_sym_DQUOTE, - STATE(221), 1, + STATE(223), 1, sym_address_family_value, - ACTIONS(3741), 2, + ACTIONS(3778), 2, aux_sym_address_family_value_token1, aux_sym_address_family_value_token3, - [3531] = 3, + [3500] = 5, ACTIONS(3), 1, sym_comment, - STATE(14), 1, + ACTIONS(3784), 1, + anon_sym_EQ, + ACTIONS(3786), 1, + anon_sym_DQUOTE, + STATE(352), 1, + sym_fingerprint_hash_value, + ACTIONS(3788), 2, + anon_sym_md5, + anon_sym_sha256, + [3517] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(125), 1, sym_tunnel_value, - ACTIONS(3693), 4, + ACTIONS(3734), 4, anon_sym_yes, anon_sym_no, anon_sym_point_DASHto_DASHpoint, anon_sym_ethernet, - [3544] = 5, - ACTIONS(3747), 1, + [3530] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3779), 1, - aux_sym_pattern_token1, - ACTIONS(3781), 1, + ACTIONS(3792), 1, anon_sym_EQ, - ACTIONS(3783), 1, + ACTIONS(3794), 1, anon_sym_DQUOTE, - STATE(424), 1, - sym_known_hosts_command_value, - [3560] = 5, - ACTIONS(3747), 1, + STATE(344), 1, + sym_escape_char_value, + ACTIONS(3796), 2, + anon_sym_none, + aux_sym_escape_char_value_token1, + [3547] = 6, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3785), 1, + ACTIONS(3798), 1, aux_sym_pattern_token1, - ACTIONS(3787), 1, + ACTIONS(3800), 1, anon_sym_EQ, - ACTIONS(3789), 1, + ACTIONS(3802), 1, anon_sym_DQUOTE, - STATE(426), 1, - sym_host_key_alias_value, - [3576] = 5, - ACTIONS(3747), 1, + STATE(230), 1, + sym_pattern, + STATE(231), 1, + sym_host_value, + [3566] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3791), 1, + ACTIONS(3804), 1, + anon_sym_DQUOTE, + STATE(134), 1, + sym_session_type_value, + ACTIONS(3770), 3, + aux_sym_canonicalize_hostname_value_token2, + aux_sym_session_type_value_token1, + aux_sym_session_type_value_token2, + [3581] = 6, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(3798), 1, aux_sym_pattern_token1, - ACTIONS(3793), 1, + ACTIONS(3806), 1, anon_sym_EQ, - ACTIONS(3795), 1, + ACTIONS(3808), 1, anon_sym_DQUOTE, - STATE(282), 1, - sym_certificate_file_value, - [3592] = 5, + STATE(234), 1, + sym_pattern, + STATE(235), 1, + sym_match_value, + [3600] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3797), 1, - sym_number, - ACTIONS(3799), 1, + ACTIONS(3810), 1, anon_sym_EQ, - ACTIONS(3801), 1, + ACTIONS(3812), 1, anon_sym_DQUOTE, - STATE(270), 1, - sym_canonicalize_max_dots_value, - [3608] = 5, - ACTIONS(3747), 1, + STATE(369), 1, + sym_protocol_value, + ACTIONS(3814), 2, + anon_sym_1, + anon_sym_2, + [3617] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3803), 1, + ACTIONS(3816), 1, aux_sym_pattern_token1, - ACTIONS(3805), 1, + ACTIONS(3818), 1, anon_sym_EQ, - ACTIONS(3807), 1, + ACTIONS(3820), 1, anon_sym_DQUOTE, - STATE(259), 1, - sym_tunnel_device_value, - [3624] = 5, - ACTIONS(3747), 1, + STATE(410), 1, + sym_log_verbose_value, + [3633] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3809), 1, + ACTIONS(3822), 1, aux_sym_pattern_token1, - ACTIONS(3811), 1, + ACTIONS(3824), 1, anon_sym_EQ, - ACTIONS(3813), 1, + ACTIONS(3826), 1, anon_sym_DQUOTE, - STATE(274), 1, - sym_canonicalize_permitted_cnames_value, - [3640] = 5, - ACTIONS(3747), 1, + STATE(332), 1, + sym_dynamic_forward_value, + [3649] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3815), 1, - aux_sym_pattern_token1, - ACTIONS(3817), 1, + ACTIONS(3828), 1, + sym_number, + ACTIONS(3830), 1, anon_sym_EQ, - ACTIONS(3819), 1, + ACTIONS(3832), 1, anon_sym_DQUOTE, - STATE(430), 1, - sym_hostname_value, - [3656] = 5, + STATE(272), 1, + sym_canonicalize_max_dots_value, + [3665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3821), 1, - sym_number, - ACTIONS(3823), 1, + STATE(134), 1, + sym_session_type_value, + ACTIONS(3770), 3, + aux_sym_canonicalize_hostname_value_token2, + aux_sym_session_type_value_token1, + aux_sym_session_type_value_token2, + [3677] = 5, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(3834), 1, + aux_sym_pattern_token1, + ACTIONS(3836), 1, anon_sym_EQ, - ACTIONS(3825), 1, + ACTIONS(3838), 1, anon_sym_DQUOTE, - STATE(396), 1, - sym_number_of_password_prompts_value, - [3672] = 5, - ACTIONS(3747), 1, + STATE(386), 1, + sym_permit_remote_open_value, + [3693] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3840), 1, aux_sym_pattern_token1, - ACTIONS(3829), 1, + ACTIONS(3842), 1, anon_sym_EQ, - ACTIONS(3831), 1, + ACTIONS(3844), 1, anon_sym_DQUOTE, - STATE(414), 1, - sym_hostbased_accepted_algorithms_value, - [3688] = 5, - ACTIONS(3747), 1, + STATE(432), 1, + sym_host_key_alias_value, + [3709] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3833), 1, + ACTIONS(3846), 1, aux_sym_pattern_token1, - ACTIONS(3835), 1, + ACTIONS(3848), 1, anon_sym_EQ, - ACTIONS(3837), 1, + ACTIONS(3850), 1, anon_sym_DQUOTE, - STATE(422), 1, - sym_host_key_algorithms_value, - [3704] = 5, - ACTIONS(3747), 1, + STATE(300), 1, + sym_cipher_value, + [3725] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3839), 1, + ACTIONS(3852), 1, aux_sym_pattern_token1, - ACTIONS(3841), 1, + ACTIONS(3854), 1, anon_sym_EQ, - ACTIONS(3843), 1, + ACTIONS(3856), 1, anon_sym_DQUOTE, - STATE(404), 1, - sym_macs_value, - [3720] = 5, - ACTIONS(3747), 1, + STATE(261), 1, + sym_tunnel_device_value, + [3741] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3845), 1, + ACTIONS(3858), 1, aux_sym_pattern_token1, - ACTIONS(3847), 1, + ACTIONS(3860), 1, anon_sym_EQ, - ACTIONS(3849), 1, + ACTIONS(3862), 1, anon_sym_DQUOTE, - STATE(352), 1, - sym_pubkey_accepted_algorithms_value, - [3736] = 5, - ACTIONS(3747), 1, + STATE(448), 1, + sym_identity_file_value, + [3757] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3851), 1, + ACTIONS(3864), 1, aux_sym_pattern_token1, - ACTIONS(3853), 1, + ACTIONS(3866), 1, anon_sym_EQ, - ACTIONS(3855), 1, + ACTIONS(3868), 1, anon_sym_DQUOTE, - STATE(258), 1, + STATE(428), 1, + sym_host_key_algorithms_value, + [3773] = 5, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(3870), 1, + aux_sym_pattern_token1, + ACTIONS(3872), 1, + anon_sym_EQ, + ACTIONS(3874), 1, + anon_sym_DQUOTE, + STATE(260), 1, sym_canonical_domains_value, - [3752] = 3, + [3789] = 5, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(3876), 1, + aux_sym_pattern_token1, + ACTIONS(3878), 1, + anon_sym_EQ, + ACTIONS(3880), 1, + anon_sym_DQUOTE, + STATE(341), 1, + sym_rekey_limit_value, + [3805] = 3, ACTIONS(3), 1, sym_comment, - STATE(133), 1, + STATE(23), 1, sym_session_type_value, - ACTIONS(3735), 3, + ACTIONS(3770), 3, aux_sym_canonicalize_hostname_value_token2, aux_sym_session_type_value_token1, aux_sym_session_type_value_token2, - [3764] = 5, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(3857), 1, - aux_sym_pattern_token1, - ACTIONS(3859), 1, - anon_sym_EQ, - ACTIONS(3861), 1, - anon_sym_DQUOTE, - STATE(278), 1, - sym_ca_signature_algorithms_value, - [3780] = 5, - ACTIONS(3747), 1, + [3817] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3882), 1, aux_sym_pattern_token1, - ACTIONS(3865), 1, + ACTIONS(3884), 1, anon_sym_EQ, - ACTIONS(3867), 1, + ACTIONS(3886), 1, anon_sym_DQUOTE, - STATE(254), 1, + STATE(256), 1, sym_bind_interface_value, - [3796] = 5, - ACTIONS(3747), 1, + [3833] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3869), 1, - aux_sym_pattern_token1, - ACTIONS(3871), 1, - anon_sym_EQ, - ACTIONS(3873), 1, + ACTIONS(3888), 1, anon_sym_DQUOTE, - STATE(298), 1, - sym_cipher_value, - [3812] = 5, - ACTIONS(3747), 1, + STATE(198), 1, + sym_escape_char_value, + ACTIONS(3796), 2, + anon_sym_none, + aux_sym_escape_char_value_token1, + [3847] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3875), 1, + ACTIONS(3890), 1, aux_sym_pattern_token1, - ACTIONS(3877), 1, + ACTIONS(3892), 1, anon_sym_EQ, - ACTIONS(3879), 1, + ACTIONS(3894), 1, anon_sym_DQUOTE, STATE(444), 1, - sym_include_value, - [3828] = 5, - ACTIONS(3747), 1, + sym_identity_agent_value, + [3863] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3881), 1, + ACTIONS(3896), 1, aux_sym_pattern_token1, - ACTIONS(3883), 1, + ACTIONS(3898), 1, anon_sym_EQ, - ACTIONS(3885), 1, + ACTIONS(3900), 1, anon_sym_DQUOTE, - STATE(250), 1, + STATE(252), 1, sym_bind_address_value, - [3844] = 5, - ACTIONS(3747), 1, + [3879] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3887), 1, - aux_sym_pattern_token1, - ACTIONS(3889), 1, + ACTIONS(3902), 1, + sym_number, + ACTIONS(3904), 1, anon_sym_EQ, - ACTIONS(3891), 1, + ACTIONS(3906), 1, anon_sym_DQUOTE, - STATE(407), 1, - sym_log_verbose_value, - [3860] = 3, - ACTIONS(3), 1, + STATE(312), 1, + sym_connection_attempts_value, + [3895] = 5, + ACTIONS(3790), 1, sym_comment, - STATE(23), 1, - sym_session_type_value, - ACTIONS(3735), 3, - aux_sym_canonicalize_hostname_value_token2, - aux_sym_session_type_value_token1, - aux_sym_session_type_value_token2, - [3872] = 5, - ACTIONS(3747), 1, + ACTIONS(3908), 1, + aux_sym_pattern_token1, + ACTIONS(3910), 1, + anon_sym_EQ, + ACTIONS(3912), 1, + anon_sym_DQUOTE, + STATE(421), 1, + sym_local_command_value, + [3911] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3893), 1, + ACTIONS(3914), 1, aux_sym_pattern_token1, - ACTIONS(3895), 1, + ACTIONS(3916), 1, anon_sym_EQ, - ACTIONS(3897), 1, + ACTIONS(3918), 1, anon_sym_DQUOTE, - STATE(383), 1, - sym_permit_remote_open_value, - [3888] = 5, - ACTIONS(3747), 1, + STATE(381), 1, + sym_pkcs11_provider_value, + [3927] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3899), 1, + ACTIONS(3920), 1, aux_sym_pattern_token1, - ACTIONS(3901), 1, + ACTIONS(3922), 1, anon_sym_EQ, - ACTIONS(3903), 1, + ACTIONS(3924), 1, anon_sym_DQUOTE, - STATE(360), 1, + STATE(361), 1, sym_proxy_jump_value, - [3904] = 5, - ACTIONS(3747), 1, + [3943] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3905), 1, - aux_sym_pattern_token1, - ACTIONS(3907), 1, + ACTIONS(3926), 1, + sym_number, + ACTIONS(3928), 1, anon_sym_EQ, - ACTIONS(3909), 1, + ACTIONS(3930), 1, anon_sym_DQUOTE, - STATE(431), 1, - sym_kbd_interactive_devices_value, - [3920] = 5, + STATE(316), 1, + sym_connect_timeout_value, + [3959] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3911), 1, + ACTIONS(3932), 1, sym_number, - ACTIONS(3913), 1, + ACTIONS(3934), 1, anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3936), 1, anon_sym_DQUOTE, - STATE(310), 1, - sym_connection_attempts_value, - [3936] = 5, - ACTIONS(3747), 1, + STATE(326), 1, + sym_required_rsa_size_value, + [3975] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3938), 1, + anon_sym_DQUOTE, + STATE(196), 1, + sym_fingerprint_hash_value, + ACTIONS(3788), 2, + anon_sym_md5, + anon_sym_sha256, + [3989] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3940), 1, aux_sym_pattern_token1, - ACTIONS(3919), 1, + ACTIONS(3942), 1, anon_sym_EQ, - ACTIONS(3921), 1, + ACTIONS(3944), 1, anon_sym_DQUOTE, - STATE(243), 1, - sym_user_value, - [3952] = 5, - ACTIONS(3747), 1, + STATE(324), 1, + sym_control_path_value, + [4005] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3923), 1, + ACTIONS(3946), 1, aux_sym_pattern_token1, - ACTIONS(3925), 1, + ACTIONS(3948), 1, anon_sym_EQ, - ACTIONS(3927), 1, + ACTIONS(3950), 1, anon_sym_DQUOTE, - STATE(415), 1, - sym_local_forward_value, - [3968] = 5, - ACTIONS(3747), 1, + STATE(405), 1, + sym_macs_value, + [4021] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3929), 1, + ACTIONS(3952), 1, aux_sym_pattern_token1, - ACTIONS(3931), 1, + ACTIONS(3954), 1, anon_sym_EQ, - ACTIONS(3933), 1, + ACTIONS(3956), 1, anon_sym_DQUOTE, - STATE(287), 1, - sym_stream_local_bind_mask_value, - [3984] = 5, - ACTIONS(3), 1, + STATE(284), 1, + sym_certificate_file_value, + [4037] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3935), 1, - sym_number, - ACTIONS(3937), 1, + ACTIONS(3958), 1, + aux_sym_pattern_token1, + ACTIONS(3960), 1, anon_sym_EQ, - ACTIONS(3939), 1, + ACTIONS(3962), 1, anon_sym_DQUOTE, - STATE(314), 1, - sym_connect_timeout_value, - [4000] = 5, - ACTIONS(3747), 1, + STATE(337), 1, + sym_remote_command_value, + [4053] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3941), 1, + ACTIONS(3964), 1, aux_sym_pattern_token1, - ACTIONS(3943), 1, + ACTIONS(3966), 1, anon_sym_EQ, - ACTIONS(3945), 1, + ACTIONS(3968), 1, anon_sym_DQUOTE, - STATE(420), 1, - sym_local_command_value, - [4016] = 5, - ACTIONS(3747), 1, + STATE(276), 1, + sym_canonicalize_permitted_cnames_value, + [4069] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3947), 1, + ACTIONS(3970), 1, aux_sym_pattern_token1, - ACTIONS(3949), 1, + ACTIONS(3972), 1, anon_sym_EQ, - ACTIONS(3951), 1, + ACTIONS(3974), 1, anon_sym_DQUOTE, - STATE(322), 1, - sym_control_path_value, - [4032] = 5, - ACTIONS(3747), 1, + STATE(349), 1, + sym_pubkey_accepted_key_types_value, + [4085] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3953), 1, + ACTIONS(3976), 1, aux_sym_pattern_token1, - ACTIONS(3955), 1, + ACTIONS(3978), 1, anon_sym_EQ, - ACTIONS(3957), 1, + ACTIONS(3980), 1, anon_sym_DQUOTE, - STATE(438), 1, - sym_identity_agent_value, - [4048] = 5, - ACTIONS(3747), 1, + STATE(446), 1, + sym_ignore_unknown_value, + [4101] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3959), 1, + ACTIONS(3982), 1, aux_sym_pattern_token1, - ACTIONS(3961), 1, + ACTIONS(3984), 1, anon_sym_EQ, - ACTIONS(3963), 1, + ACTIONS(3986), 1, anon_sym_DQUOTE, - STATE(380), 1, - sym_pkcs11_provider_value, - [4064] = 5, - ACTIONS(3747), 1, + STATE(333), 1, + sym_remote_forward_value, + [4117] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3965), 1, + ACTIONS(3988), 1, aux_sym_pattern_token1, - ACTIONS(3967), 1, + ACTIONS(3990), 1, anon_sym_EQ, - ACTIONS(3969), 1, + ACTIONS(3992), 1, anon_sym_DQUOTE, - STATE(239), 1, - sym_user_known_hosts_file_value, - [4080] = 5, - ACTIONS(3747), 1, + STATE(289), 1, + sym_stream_local_bind_mask_value, + [4133] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3971), 1, + ACTIONS(3994), 1, aux_sym_pattern_token1, - ACTIONS(3973), 1, + ACTIONS(3996), 1, anon_sym_EQ, - ACTIONS(3975), 1, + ACTIONS(3998), 1, anon_sym_DQUOTE, STATE(296), 1, - sym_set_env_value, - [4096] = 5, - ACTIONS(3747), 1, + sym_ciphers_value, + [4149] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3977), 1, + ACTIONS(4000), 1, aux_sym_pattern_token1, - ACTIONS(3979), 1, + ACTIONS(4002), 1, anon_sym_EQ, - ACTIONS(3981), 1, - anon_sym_DQUOTE, - STATE(330), 1, - sym_dynamic_forward_value, - [4112] = 4, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(3983), 1, + ACTIONS(4004), 1, anon_sym_DQUOTE, - STATE(197), 1, - sym_escape_char_value, - ACTIONS(3763), 2, - anon_sym_none, - aux_sym_escape_char_value_token1, - [4126] = 5, - ACTIONS(3), 1, + STATE(4), 1, + sym_include_value, + [4165] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3985), 1, - sym_number, - ACTIONS(3987), 1, + ACTIONS(4006), 1, + aux_sym_pattern_token1, + ACTIONS(4008), 1, anon_sym_EQ, - ACTIONS(3989), 1, + ACTIONS(4010), 1, anon_sym_DQUOTE, - STATE(303), 1, - sym_server_alive_interval_value, - [4142] = 5, - ACTIONS(3747), 1, + STATE(436), 1, + sym_hostname_value, + [4181] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3991), 1, + ACTIONS(4012), 1, aux_sym_pattern_token1, - ACTIONS(3993), 1, + ACTIONS(4014), 1, anon_sym_EQ, - ACTIONS(3995), 1, + ACTIONS(4016), 1, anon_sym_DQUOTE, - STATE(442), 1, - sym_identity_file_value, - [4158] = 4, + STATE(280), 1, + sym_ca_signature_algorithms_value, + [4197] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3743), 1, - aux_sym_address_family_value_token2, - STATE(111), 1, - sym_address_family_value, - ACTIONS(3741), 2, - aux_sym_address_family_value_token1, - aux_sym_address_family_value_token3, - [4172] = 4, - ACTIONS(3), 1, + ACTIONS(4018), 1, + anon_sym_DQUOTE, + STATE(151), 1, + sym_protocol_value, + ACTIONS(3814), 2, + anon_sym_1, + anon_sym_2, + [4211] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3997), 1, + ACTIONS(4020), 1, + aux_sym_pattern_token1, + ACTIONS(4022), 1, + anon_sym_EQ, + ACTIONS(4024), 1, anon_sym_DQUOTE, - STATE(195), 1, - sym_fingerprint_hash_value, - ACTIONS(3769), 2, - anon_sym_md5, - anon_sym_sha256, - [4186] = 5, + STATE(418), 1, + sym_local_forward_value, + [4227] = 5, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(4026), 1, + aux_sym_pattern_token1, + ACTIONS(4028), 1, + anon_sym_EQ, + ACTIONS(4030), 1, + anon_sym_DQUOTE, + STATE(298), 1, + sym_set_env_value, + [4243] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3999), 1, + ACTIONS(4032), 1, sym_number, - ACTIONS(4001), 1, + ACTIONS(4034), 1, anon_sym_EQ, - ACTIONS(4003), 1, + ACTIONS(4036), 1, anon_sym_DQUOTE, - STATE(375), 1, - sym_port_value, - [4202] = 5, - ACTIONS(3747), 1, + STATE(397), 1, + sym_number_of_password_prompts_value, + [4259] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4005), 1, + ACTIONS(4038), 1, aux_sym_pattern_token1, - ACTIONS(4007), 1, + ACTIONS(4040), 1, anon_sym_EQ, - ACTIONS(4009), 1, + ACTIONS(4042), 1, anon_sym_DQUOTE, - STATE(347), 1, - sym_pubkey_accepted_key_types_value, - [4218] = 5, + STATE(360), 1, + sym_forward_agent_value, + [4275] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4011), 1, - sym_number, - ACTIONS(4013), 1, + ACTIONS(4044), 1, + sym_time_format, + ACTIONS(4046), 1, anon_sym_EQ, - ACTIONS(4015), 1, + ACTIONS(4048), 1, anon_sym_DQUOTE, - STATE(308), 1, - sym_server_alive_count_max_value, - [4234] = 5, - ACTIONS(3747), 1, + STATE(368), 1, + sym_forward_x11_timeout_value, + [4291] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3780), 1, + aux_sym_address_family_value_token2, + STATE(223), 1, + sym_address_family_value, + ACTIONS(3778), 2, + aux_sym_address_family_value_token1, + aux_sym_address_family_value_token3, + [4305] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4017), 1, + ACTIONS(4050), 1, aux_sym_pattern_token1, - ACTIONS(4019), 1, + ACTIONS(4052), 1, anon_sym_EQ, - ACTIONS(4021), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - STATE(428), 1, - sym_kex_algorithms_value, - [4250] = 5, - ACTIONS(3747), 1, + STATE(353), 1, + sym_pubkey_accepted_algorithms_value, + [4321] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4023), 1, - aux_sym_pattern_token1, - ACTIONS(4025), 1, + ACTIONS(4056), 1, + sym_number, + ACTIONS(4058), 1, anon_sym_EQ, - ACTIONS(4027), 1, + ACTIONS(4060), 1, anon_sym_DQUOTE, - STATE(226), 1, - sym_xauth_location_value, - [4266] = 5, - ACTIONS(3747), 1, + STATE(305), 1, + sym_server_alive_interval_value, + [4337] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4029), 1, + ACTIONS(4062), 1, aux_sym_pattern_token1, - ACTIONS(4031), 1, + ACTIONS(4064), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4066), 1, anon_sym_DQUOTE, - STATE(312), 1, - sym_send_env_value, - [4282] = 5, - ACTIONS(3747), 1, + STATE(380), 1, + sym_global_known_hosts_file_value, + [4353] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4035), 1, - aux_sym_pattern_token1, - ACTIONS(4037), 1, + ACTIONS(4068), 1, + sym_number, + ACTIONS(4070), 1, anon_sym_EQ, - ACTIONS(4039), 1, + ACTIONS(4072), 1, anon_sym_DQUOTE, - STATE(363), 1, - sym_proxy_command_value, - [4298] = 5, - ACTIONS(3747), 1, + STATE(310), 1, + sym_server_alive_count_max_value, + [4369] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4041), 1, + ACTIONS(4074), 1, aux_sym_pattern_token1, - ACTIONS(4043), 1, + ACTIONS(4076), 1, anon_sym_EQ, - ACTIONS(4045), 1, + ACTIONS(4078), 1, anon_sym_DQUOTE, - STATE(354), 1, - sym_forward_agent_value, - [4314] = 5, - ACTIONS(3747), 1, + STATE(388), 1, + sym_gssapi_client_identity_value, + [4385] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3749), 1, + ACTIONS(4080), 1, aux_sym_pattern_token1, - ACTIONS(4047), 1, + ACTIONS(4082), 1, + anon_sym_EQ, + ACTIONS(4084), 1, anon_sym_DQUOTE, - STATE(224), 1, - sym_host_value, - STATE(228), 1, - sym_pattern, - [4330] = 5, - ACTIONS(3747), 1, + STATE(434), 1, + sym_kbd_interactive_devices_value, + [4401] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4049), 1, + ACTIONS(3798), 1, aux_sym_pattern_token1, - ACTIONS(4051), 1, - anon_sym_EQ, - ACTIONS(4053), 1, + ACTIONS(4086), 1, anon_sym_DQUOTE, - STATE(372), 1, - sym_preferred_authentications_value, - [4346] = 5, - ACTIONS(3747), 1, + STATE(225), 1, + sym_match_value, + STATE(234), 1, + sym_pattern, + [4417] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4055), 1, + ACTIONS(3798), 1, aux_sym_pattern_token1, - ACTIONS(4057), 1, - anon_sym_EQ, - ACTIONS(4059), 1, + ACTIONS(4088), 1, anon_sym_DQUOTE, - STATE(4), 1, - sym_ignore_unknown_value, - [4362] = 5, - ACTIONS(3747), 1, + STATE(226), 1, + sym_host_value, + STATE(230), 1, + sym_pattern, + [4433] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4061), 1, + ACTIONS(4090), 1, aux_sym_pattern_token1, - ACTIONS(4063), 1, + ACTIONS(4092), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4094), 1, anon_sym_DQUOTE, - STATE(316), 1, - sym_security_key_provider_value, - [4378] = 5, - ACTIONS(3), 1, + STATE(228), 1, + sym_xauth_location_value, + [4449] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4067), 1, - sym_time_format, - ACTIONS(4069), 1, + ACTIONS(4096), 1, + aux_sym_pattern_token1, + ACTIONS(4098), 1, anon_sym_EQ, - ACTIONS(4071), 1, + ACTIONS(4100), 1, anon_sym_DQUOTE, - STATE(362), 1, - sym_forward_x11_timeout_value, - [4394] = 5, - ACTIONS(3747), 1, + STATE(430), 1, + sym_kex_algorithms_value, + [4465] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4073), 1, + ACTIONS(4102), 1, aux_sym_pattern_token1, - ACTIONS(4075), 1, + ACTIONS(4104), 1, anon_sym_EQ, - ACTIONS(4077), 1, + ACTIONS(4106), 1, anon_sym_DQUOTE, - STATE(320), 1, - sym_revoked_host_keys_value, - [4410] = 5, - ACTIONS(3747), 1, + STATE(404), 1, + sym_gssapi_server_identity_value, + [4481] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4079), 1, + ACTIONS(4108), 1, aux_sym_pattern_token1, - ACTIONS(4081), 1, + ACTIONS(4110), 1, anon_sym_EQ, - ACTIONS(4083), 1, + ACTIONS(4112), 1, anon_sym_DQUOTE, - STATE(374), 1, - sym_global_known_hosts_file_value, - [4426] = 5, + STATE(314), 1, + sym_send_env_value, + [4497] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3780), 1, + aux_sym_address_family_value_token2, + STATE(112), 1, + sym_address_family_value, + ACTIONS(3778), 2, + aux_sym_address_family_value_token1, + aux_sym_address_family_value_token3, + [4511] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4085), 1, + ACTIONS(4114), 1, sym_number, - ACTIONS(4087), 1, + ACTIONS(4116), 1, anon_sym_EQ, - ACTIONS(4089), 1, + ACTIONS(4118), 1, anon_sym_DQUOTE, - STATE(324), 1, - sym_required_rsa_size_value, - [4442] = 5, - ACTIONS(3747), 1, + STATE(378), 1, + sym_port_value, + [4527] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4091), 1, + ACTIONS(4120), 1, aux_sym_pattern_token1, - ACTIONS(4093), 1, + ACTIONS(4122), 1, anon_sym_EQ, - ACTIONS(4095), 1, - anon_sym_DQUOTE, - STATE(382), 1, - sym_gssapi_client_identity_value, - [4458] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4097), 1, + ACTIONS(4124), 1, anon_sym_DQUOTE, - STATE(150), 1, - sym_protocol_value, - ACTIONS(3775), 2, - anon_sym_1, - anon_sym_2, - [4472] = 5, - ACTIONS(3747), 1, + STATE(412), 1, + sym_gssapi_kex_algorithms_value, + [4543] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3749), 1, + ACTIONS(4126), 1, aux_sym_pattern_token1, - ACTIONS(4099), 1, + ACTIONS(4128), 1, + anon_sym_EQ, + ACTIONS(4130), 1, anon_sym_DQUOTE, - STATE(223), 1, - sym_match_value, - STATE(232), 1, - sym_pattern, - [4488] = 5, - ACTIONS(3747), 1, + STATE(318), 1, + sym_security_key_provider_value, + [4559] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4101), 1, + ACTIONS(4132), 1, aux_sym_pattern_token1, - ACTIONS(4103), 1, + ACTIONS(4134), 1, anon_sym_EQ, - ACTIONS(4105), 1, + ACTIONS(4136), 1, anon_sym_DQUOTE, - STATE(331), 1, - sym_remote_forward_value, - [4504] = 5, - ACTIONS(3747), 1, + STATE(241), 1, + sym_user_known_hosts_file_value, + [4575] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4107), 1, + ACTIONS(4138), 1, aux_sym_pattern_token1, - ACTIONS(4109), 1, + ACTIONS(4140), 1, anon_sym_EQ, - ACTIONS(4111), 1, + ACTIONS(4142), 1, anon_sym_DQUOTE, - STATE(335), 1, - sym_remote_command_value, - [4520] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3743), 1, - aux_sym_address_family_value_token2, - STATE(221), 1, - sym_address_family_value, - ACTIONS(3741), 2, - aux_sym_address_family_value_token1, - aux_sym_address_family_value_token3, - [4534] = 5, - ACTIONS(3747), 1, + STATE(426), 1, + sym_known_hosts_command_value, + [4591] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4113), 1, + ACTIONS(4144), 1, aux_sym_pattern_token1, - ACTIONS(4115), 1, + ACTIONS(4146), 1, anon_sym_EQ, - ACTIONS(4117), 1, + ACTIONS(4148), 1, anon_sym_DQUOTE, - STATE(294), 1, - sym_ciphers_value, - [4550] = 5, - ACTIONS(3747), 1, + STATE(245), 1, + sym_user_value, + [4607] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4119), 1, + ACTIONS(4150), 1, aux_sym_pattern_token1, - ACTIONS(4121), 1, + ACTIONS(4152), 1, anon_sym_EQ, - ACTIONS(4123), 1, + ACTIONS(4154), 1, anon_sym_DQUOTE, - STATE(398), 1, - sym_gssapi_server_identity_value, - [4566] = 5, - ACTIONS(3747), 1, + STATE(420), 1, + sym_hostbased_accepted_algorithms_value, + [4623] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4125), 1, + ACTIONS(4156), 1, aux_sym_pattern_token1, - ACTIONS(4127), 1, + ACTIONS(4158), 1, anon_sym_EQ, - ACTIONS(4129), 1, + ACTIONS(4160), 1, anon_sym_DQUOTE, - STATE(339), 1, - sym_rekey_limit_value, - [4582] = 5, - ACTIONS(3747), 1, + STATE(322), 1, + sym_revoked_host_keys_value, + [4639] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4131), 1, + ACTIONS(4162), 1, aux_sym_pattern_token1, - ACTIONS(4133), 1, + ACTIONS(4164), 1, anon_sym_EQ, - ACTIONS(4135), 1, + ACTIONS(4166), 1, anon_sym_DQUOTE, - STATE(406), 1, - sym_gssapi_kex_algorithms_value, - [4598] = 4, - ACTIONS(3747), 1, + STATE(366), 1, + sym_proxy_command_value, + [4655] = 5, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(4168), 1, aux_sym_pattern_token1, - ACTIONS(4137), 1, + ACTIONS(4170), 1, + anon_sym_EQ, + ACTIONS(4172), 1, anon_sym_DQUOTE, - STATE(218), 1, - sym_bind_interface_value, - [4611] = 4, - ACTIONS(3747), 1, + STATE(373), 1, + sym_preferred_authentications_value, + [4671] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3809), 1, + ACTIONS(4174), 1, aux_sym_pattern_token1, - ACTIONS(4139), 1, - anon_sym_DQUOTE, - STATE(213), 1, - sym_canonicalize_permitted_cnames_value, - [4624] = 4, - ACTIONS(3747), 1, + STATE(226), 1, + sym_host_value, + STATE(230), 1, + sym_pattern, + [4684] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(40), 1, + sym_protocol_value, + ACTIONS(3814), 2, + anon_sym_1, + anon_sym_2, + [4695] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4055), 1, + ACTIONS(3976), 1, aux_sym_pattern_token1, - ACTIONS(4141), 1, + ACTIONS(4176), 1, anon_sym_DQUOTE, - STATE(170), 1, + STATE(171), 1, sym_ignore_unknown_value, - [4637] = 4, - ACTIONS(3747), 1, + [4708] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3991), 1, + ACTIONS(4000), 1, aux_sym_pattern_token1, - ACTIONS(4143), 1, + ACTIONS(4178), 1, anon_sym_DQUOTE, - STATE(171), 1, - sym_identity_file_value, - [4650] = 4, - ACTIONS(3747), 1, + STATE(170), 1, + sym_include_value, + [4721] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4145), 1, + ACTIONS(4074), 1, aux_sym_pattern_token1, - STATE(223), 1, - sym_match_value, - STATE(232), 1, - sym_pattern, - [4663] = 4, - ACTIONS(3747), 1, + ACTIONS(4180), 1, + anon_sym_DQUOTE, + STATE(187), 1, + sym_gssapi_client_identity_value, + [4734] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3953), 1, + ACTIONS(3890), 1, aux_sym_pattern_token1, - ACTIONS(4147), 1, + ACTIONS(4182), 1, anon_sym_DQUOTE, - STATE(172), 1, + STATE(173), 1, sym_identity_agent_value, - [4676] = 4, - ACTIONS(3747), 1, + [4747] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3905), 1, + ACTIONS(4080), 1, aux_sym_pattern_token1, - ACTIONS(4149), 1, + ACTIONS(4184), 1, anon_sym_DQUOTE, - STATE(166), 1, + STATE(167), 1, sym_kbd_interactive_devices_value, - [4689] = 4, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(4017), 1, - aux_sym_pattern_token1, - ACTIONS(4151), 1, - anon_sym_DQUOTE, - STATE(165), 1, - sym_kex_algorithms_value, - [4702] = 4, - ACTIONS(3747), 1, + [4760] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3815), 1, + ACTIONS(4006), 1, aux_sym_pattern_token1, - ACTIONS(4153), 1, + ACTIONS(4186), 1, anon_sym_DQUOTE, - STATE(174), 1, + STATE(175), 1, sym_hostname_value, - [4715] = 4, - ACTIONS(3747), 1, + [4773] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3779), 1, + ACTIONS(4096), 1, aux_sym_pattern_token1, - ACTIONS(4155), 1, + ACTIONS(4188), 1, anon_sym_DQUOTE, - STATE(164), 1, - sym_known_hosts_command_value, - [4728] = 4, - ACTIONS(3747), 1, + STATE(166), 1, + sym_kex_algorithms_value, + [4786] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3785), 1, + ACTIONS(3840), 1, aux_sym_pattern_token1, - ACTIONS(4157), 1, + ACTIONS(4190), 1, anon_sym_DQUOTE, - STATE(175), 1, + STATE(176), 1, sym_host_key_alias_value, - [4741] = 4, - ACTIONS(3747), 1, + [4799] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3941), 1, + ACTIONS(4138), 1, aux_sym_pattern_token1, - ACTIONS(4159), 1, + ACTIONS(4192), 1, anon_sym_DQUOTE, - STATE(163), 1, - sym_local_command_value, - [4754] = 4, - ACTIONS(3747), 1, + STATE(165), 1, + sym_known_hosts_command_value, + [4812] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3833), 1, + ACTIONS(3864), 1, aux_sym_pattern_token1, - ACTIONS(4161), 1, + ACTIONS(4194), 1, anon_sym_DQUOTE, - STATE(176), 1, + STATE(177), 1, sym_host_key_algorithms_value, - [4767] = 4, - ACTIONS(3747), 1, + [4825] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3923), 1, + ACTIONS(3908), 1, aux_sym_pattern_token1, - ACTIONS(4163), 1, + ACTIONS(4196), 1, anon_sym_DQUOTE, - STATE(162), 1, + STATE(164), 1, + sym_local_command_value, + [4838] = 4, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(4020), 1, + aux_sym_pattern_token1, + ACTIONS(4198), 1, + anon_sym_DQUOTE, + STATE(163), 1, sym_local_forward_value, - [4780] = 4, - ACTIONS(3747), 1, + [4851] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(4150), 1, aux_sym_pattern_token1, - ACTIONS(4165), 1, + ACTIONS(4200), 1, anon_sym_DQUOTE, - STATE(178), 1, + STATE(179), 1, sym_hostbased_accepted_algorithms_value, - [4793] = 4, - ACTIONS(3747), 1, + [4864] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3887), 1, + ACTIONS(3816), 1, aux_sym_pattern_token1, - ACTIONS(4167), 1, + ACTIONS(4202), 1, anon_sym_DQUOTE, - STATE(160), 1, + STATE(161), 1, sym_log_verbose_value, - [4806] = 4, - ACTIONS(3747), 1, + [4877] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3965), 1, + ACTIONS(4120), 1, aux_sym_pattern_token1, - ACTIONS(4169), 1, + ACTIONS(4204), 1, anon_sym_DQUOTE, - STATE(118), 1, - sym_user_known_hosts_file_value, - [4819] = 4, - ACTIONS(3747), 1, + STATE(181), 1, + sym_gssapi_kex_algorithms_value, + [4890] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3839), 1, + ACTIONS(3946), 1, aux_sym_pattern_token1, - ACTIONS(4171), 1, + ACTIONS(4206), 1, anon_sym_DQUOTE, - STATE(159), 1, + STATE(160), 1, sym_macs_value, - [4832] = 4, - ACTIONS(3747), 1, + [4903] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4131), 1, + ACTIONS(4102), 1, aux_sym_pattern_token1, - ACTIONS(4173), 1, + ACTIONS(4208), 1, anon_sym_DQUOTE, - STATE(180), 1, - sym_gssapi_kex_algorithms_value, - [4845] = 4, + STATE(183), 1, + sym_gssapi_server_identity_value, + [4916] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3821), 1, + ACTIONS(4032), 1, sym_number, - ACTIONS(4175), 1, + ACTIONS(4210), 1, anon_sym_DQUOTE, - STATE(157), 1, + STATE(158), 1, sym_number_of_password_prompts_value, - [4858] = 4, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(4119), 1, - aux_sym_pattern_token1, - ACTIONS(4177), 1, - anon_sym_DQUOTE, - STATE(182), 1, - sym_gssapi_server_identity_value, - [4871] = 4, - ACTIONS(3747), 1, + [4929] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3893), 1, + ACTIONS(3834), 1, aux_sym_pattern_token1, - ACTIONS(4179), 1, + ACTIONS(4212), 1, anon_sym_DQUOTE, - STATE(154), 1, + STATE(155), 1, sym_permit_remote_open_value, - [4884] = 4, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(3917), 1, - aux_sym_pattern_token1, - ACTIONS(4181), 1, - anon_sym_DQUOTE, - STATE(119), 1, - sym_user_value, - [4897] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(85), 1, - sym_fingerprint_hash_value, - ACTIONS(3769), 2, - anon_sym_md5, - anon_sym_sha256, - [4908] = 4, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(3881), 1, - aux_sym_pattern_token1, - ACTIONS(4183), 1, - anon_sym_DQUOTE, - STATE(219), 1, - sym_bind_address_value, - [4921] = 4, - ACTIONS(3747), 1, + [4942] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3959), 1, + ACTIONS(3914), 1, aux_sym_pattern_token1, - ACTIONS(4185), 1, + ACTIONS(4214), 1, anon_sym_DQUOTE, - STATE(153), 1, + STATE(154), 1, sym_pkcs11_provider_value, - [4934] = 4, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(4091), 1, - aux_sym_pattern_token1, - ACTIONS(4187), 1, - anon_sym_DQUOTE, - STATE(186), 1, - sym_gssapi_client_identity_value, - [4947] = 4, + [4955] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3999), 1, + ACTIONS(4114), 1, sym_number, - ACTIONS(4189), 1, + ACTIONS(4216), 1, anon_sym_DQUOTE, - STATE(152), 1, + STATE(153), 1, sym_port_value, - [4960] = 3, - ACTIONS(3747), 1, - sym_comment, - STATE(87), 1, - sym_escape_char_value, - ACTIONS(3763), 2, - anon_sym_none, - aux_sym_escape_char_value_token1, - [4971] = 4, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(4049), 1, - aux_sym_pattern_token1, - ACTIONS(4191), 1, - anon_sym_DQUOTE, - STATE(151), 1, - sym_preferred_authentications_value, - [4984] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(150), 1, - sym_protocol_value, - ACTIONS(3775), 2, - anon_sym_1, - anon_sym_2, - [4995] = 4, - ACTIONS(3747), 1, + [4968] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4079), 1, + ACTIONS(4062), 1, aux_sym_pattern_token1, - ACTIONS(4193), 1, + ACTIONS(4218), 1, anon_sym_DQUOTE, - STATE(188), 1, + STATE(189), 1, sym_global_known_hosts_file_value, - [5008] = 4, - ACTIONS(3747), 1, + [4981] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4035), 1, + ACTIONS(4168), 1, aux_sym_pattern_token1, - ACTIONS(4195), 1, + ACTIONS(4220), 1, anon_sym_DQUOTE, - STATE(149), 1, - sym_proxy_command_value, - [5021] = 3, + STATE(152), 1, + sym_preferred_authentications_value, + [4994] = 3, ACTIONS(3), 1, sym_comment, - STATE(40), 1, + STATE(151), 1, sym_protocol_value, - ACTIONS(3775), 2, + ACTIONS(3814), 2, anon_sym_1, anon_sym_2, - [5032] = 4, - ACTIONS(3747), 1, + [5005] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3899), 1, + ACTIONS(4162), 1, aux_sym_pattern_token1, - ACTIONS(4197), 1, + ACTIONS(4222), 1, anon_sym_DQUOTE, - STATE(148), 1, - sym_proxy_jump_value, - [5045] = 4, + STATE(150), 1, + sym_proxy_command_value, + [5018] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4044), 1, sym_time_format, - ACTIONS(4199), 1, + ACTIONS(4224), 1, anon_sym_DQUOTE, - STATE(191), 1, + STATE(192), 1, sym_forward_x11_timeout_value, - [5058] = 4, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(3851), 1, - aux_sym_pattern_token1, - ACTIONS(4201), 1, - anon_sym_DQUOTE, - STATE(217), 1, - sym_canonical_domains_value, - [5071] = 4, - ACTIONS(3747), 1, + [5031] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3845), 1, + ACTIONS(3920), 1, aux_sym_pattern_token1, - ACTIONS(4203), 1, + ACTIONS(4226), 1, anon_sym_DQUOTE, - STATE(146), 1, - sym_pubkey_accepted_algorithms_value, - [5084] = 4, - ACTIONS(3747), 1, + STATE(149), 1, + sym_proxy_jump_value, + [5044] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4041), 1, + ACTIONS(4038), 1, aux_sym_pattern_token1, - ACTIONS(4205), 1, + ACTIONS(4228), 1, anon_sym_DQUOTE, - STATE(193), 1, + STATE(194), 1, sym_forward_agent_value, - [5097] = 4, - ACTIONS(3747), 1, + [5057] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4005), 1, + ACTIONS(4050), 1, aux_sym_pattern_token1, - ACTIONS(4207), 1, + ACTIONS(4230), 1, anon_sym_DQUOTE, - STATE(145), 1, - sym_pubkey_accepted_key_types_value, - [5110] = 4, - ACTIONS(3747), 1, + STATE(147), 1, + sym_pubkey_accepted_algorithms_value, + [5070] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4061), 1, + ACTIONS(3970), 1, aux_sym_pattern_token1, - ACTIONS(4209), 1, + ACTIONS(4232), 1, anon_sym_DQUOTE, - STATE(137), 1, - sym_security_key_provider_value, - [5123] = 3, + STATE(146), 1, + sym_pubkey_accepted_key_types_value, + [5083] = 3, ACTIONS(3), 1, sym_comment, - STATE(195), 1, + STATE(196), 1, sym_fingerprint_hash_value, - ACTIONS(3769), 2, + ACTIONS(3788), 2, anon_sym_md5, anon_sym_sha256, - [5134] = 4, - ACTIONS(3747), 1, + [5094] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4125), 1, + ACTIONS(3876), 1, aux_sym_pattern_token1, - ACTIONS(4211), 1, + ACTIONS(4234), 1, anon_sym_DQUOTE, - STATE(143), 1, + STATE(144), 1, sym_rekey_limit_value, - [5147] = 4, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(4107), 1, - aux_sym_pattern_token1, - ACTIONS(4213), 1, - anon_sym_DQUOTE, - STATE(142), 1, - sym_remote_command_value, - [5160] = 4, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(4145), 1, - aux_sym_pattern_token1, - STATE(224), 1, - sym_host_value, - STATE(228), 1, - sym_pattern, - [5173] = 3, - ACTIONS(3747), 1, + [5107] = 3, + ACTIONS(3790), 1, sym_comment, - STATE(197), 1, + STATE(198), 1, sym_escape_char_value, - ACTIONS(3763), 2, + ACTIONS(3796), 2, anon_sym_none, aux_sym_escape_char_value_token1, - [5184] = 4, - ACTIONS(3747), 1, + [5118] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4101), 1, + ACTIONS(3958), 1, aux_sym_pattern_token1, - ACTIONS(4215), 1, + ACTIONS(4236), 1, anon_sym_DQUOTE, - STATE(141), 1, - sym_remote_forward_value, - [5197] = 4, - ACTIONS(3747), 1, + STATE(143), 1, + sym_remote_command_value, + [5131] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3977), 1, + ACTIONS(3982), 1, aux_sym_pattern_token1, - ACTIONS(4217), 1, + ACTIONS(4238), 1, anon_sym_DQUOTE, - STATE(199), 1, - sym_dynamic_forward_value, - [5210] = 4, - ACTIONS(3747), 1, + STATE(142), 1, + sym_remote_forward_value, + [5144] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4145), 1, - aux_sym_pattern_token1, - STATE(114), 1, - sym_host_value, - STATE(228), 1, - sym_pattern, - [5223] = 4, + ACTIONS(3822), 1, + aux_sym_pattern_token1, + ACTIONS(4240), 1, + anon_sym_DQUOTE, + STATE(201), 1, + sym_dynamic_forward_value, + [5157] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4085), 1, + ACTIONS(3932), 1, sym_number, - ACTIONS(4219), 1, + ACTIONS(4242), 1, anon_sym_DQUOTE, - STATE(139), 1, + STATE(140), 1, sym_required_rsa_size_value, - [5236] = 4, - ACTIONS(3747), 1, + [5170] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3875), 1, + ACTIONS(4156), 1, aux_sym_pattern_token1, - ACTIONS(4221), 1, + ACTIONS(4244), 1, anon_sym_DQUOTE, - STATE(169), 1, - sym_include_value, - [5249] = 4, - ACTIONS(3747), 1, + STATE(139), 1, + sym_revoked_host_keys_value, + [5183] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4073), 1, + ACTIONS(3858), 1, aux_sym_pattern_token1, - ACTIONS(4223), 1, + ACTIONS(4246), 1, anon_sym_DQUOTE, - STATE(138), 1, - sym_revoked_host_keys_value, - [5262] = 4, - ACTIONS(3747), 1, + STATE(172), 1, + sym_identity_file_value, + [5196] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3947), 1, + ACTIONS(3940), 1, aux_sym_pattern_token1, - ACTIONS(4225), 1, + ACTIONS(4248), 1, anon_sym_DQUOTE, - STATE(201), 1, + STATE(203), 1, sym_control_path_value, - [5275] = 4, - ACTIONS(3747), 1, + [5209] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4029), 1, + ACTIONS(4126), 1, aux_sym_pattern_token1, - ACTIONS(4227), 1, + ACTIONS(4250), 1, anon_sym_DQUOTE, - STATE(136), 1, - sym_send_env_value, - [5288] = 4, - ACTIONS(3747), 1, + STATE(138), 1, + sym_security_key_provider_value, + [5222] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3803), 1, + ACTIONS(4108), 1, aux_sym_pattern_token1, - ACTIONS(4229), 1, + ACTIONS(4252), 1, anon_sym_DQUOTE, - STATE(123), 1, - sym_tunnel_device_value, - [5301] = 4, - ACTIONS(3747), 1, + STATE(137), 1, + sym_send_env_value, + [5235] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4023), 1, + ACTIONS(3870), 1, aux_sym_pattern_token1, - ACTIONS(4231), 1, + ACTIONS(4254), 1, anon_sym_DQUOTE, - STATE(115), 1, - sym_xauth_location_value, - [5314] = 4, + STATE(219), 1, + sym_canonical_domains_value, + [5248] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3935), 1, + ACTIONS(3926), 1, sym_number, - ACTIONS(4233), 1, + ACTIONS(4256), 1, anon_sym_DQUOTE, - STATE(203), 1, + STATE(205), 1, sym_connect_timeout_value, - [5327] = 4, + [5261] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4011), 1, + ACTIONS(4068), 1, sym_number, - ACTIONS(4235), 1, + ACTIONS(4258), 1, anon_sym_DQUOTE, - STATE(135), 1, + STATE(136), 1, sym_server_alive_count_max_value, - [5340] = 4, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(4145), 1, - aux_sym_pattern_token1, - STATE(113), 1, - sym_match_value, - STATE(232), 1, - sym_pattern, - [5353] = 4, + [5274] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3911), 1, + ACTIONS(3902), 1, sym_number, - ACTIONS(4237), 1, + ACTIONS(4260), 1, anon_sym_DQUOTE, - STATE(204), 1, + STATE(206), 1, sym_connection_attempts_value, - [5366] = 4, + [5287] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3797), 1, + ACTIONS(4056), 1, sym_number, - ACTIONS(4239), 1, + ACTIONS(4262), 1, anon_sym_DQUOTE, - STATE(214), 1, - sym_canonicalize_max_dots_value, - [5379] = 4, - ACTIONS(3), 1, + STATE(135), 1, + sym_server_alive_interval_value, + [5300] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3985), 1, - sym_number, - ACTIONS(4241), 1, + ACTIONS(4026), 1, + aux_sym_pattern_token1, + ACTIONS(4264), 1, anon_sym_DQUOTE, - STATE(134), 1, - sym_server_alive_interval_value, - [5392] = 4, - ACTIONS(3747), 1, + STATE(133), 1, + sym_set_env_value, + [5313] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4113), 1, + ACTIONS(3846), 1, aux_sym_pattern_token1, - ACTIONS(4243), 1, + ACTIONS(4266), 1, anon_sym_DQUOTE, - STATE(208), 1, + STATE(209), 1, + sym_cipher_value, + [5326] = 4, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(3994), 1, + aux_sym_pattern_token1, + ACTIONS(4268), 1, + anon_sym_DQUOTE, + STATE(210), 1, sym_ciphers_value, - [5405] = 4, - ACTIONS(3747), 1, + [5339] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3857), 1, + ACTIONS(3988), 1, aux_sym_pattern_token1, - ACTIONS(4245), 1, + ACTIONS(4270), 1, anon_sym_DQUOTE, - STATE(212), 1, + STATE(131), 1, + sym_stream_local_bind_mask_value, + [5352] = 4, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(3952), 1, + aux_sym_pattern_token1, + ACTIONS(4272), 1, + anon_sym_DQUOTE, + STATE(213), 1, + sym_certificate_file_value, + [5365] = 4, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(4012), 1, + aux_sym_pattern_token1, + ACTIONS(4274), 1, + anon_sym_DQUOTE, + STATE(214), 1, sym_ca_signature_algorithms_value, - [5418] = 4, - ACTIONS(3747), 1, + [5378] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3971), 1, + ACTIONS(3964), 1, aux_sym_pattern_token1, - ACTIONS(4247), 1, + ACTIONS(4276), 1, anon_sym_DQUOTE, - STATE(132), 1, - sym_set_env_value, - [5431] = 4, - ACTIONS(3747), 1, + STATE(215), 1, + sym_canonicalize_permitted_cnames_value, + [5391] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3828), 1, + sym_number, + ACTIONS(4278), 1, + anon_sym_DQUOTE, + STATE(216), 1, + sym_canonicalize_max_dots_value, + [5404] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3929), 1, + ACTIONS(3852), 1, aux_sym_pattern_token1, - ACTIONS(4249), 1, + ACTIONS(4280), 1, anon_sym_DQUOTE, - STATE(130), 1, - sym_stream_local_bind_mask_value, - [5444] = 4, - ACTIONS(3747), 1, + STATE(124), 1, + sym_tunnel_device_value, + [5417] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3791), 1, + ACTIONS(3882), 1, aux_sym_pattern_token1, - ACTIONS(4251), 1, + ACTIONS(4282), 1, anon_sym_DQUOTE, - STATE(211), 1, - sym_certificate_file_value, - [5457] = 4, - ACTIONS(3747), 1, + STATE(220), 1, + sym_bind_interface_value, + [5430] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3869), 1, + ACTIONS(3896), 1, aux_sym_pattern_token1, - ACTIONS(4253), 1, + ACTIONS(4284), 1, anon_sym_DQUOTE, - STATE(207), 1, - sym_cipher_value, - [5470] = 3, - ACTIONS(3747), 1, + STATE(221), 1, + sym_bind_address_value, + [5443] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4255), 1, - aux_sym_host_token2, - ACTIONS(4257), 1, - anon_sym_EQ, - [5480] = 3, - ACTIONS(3747), 1, + ACTIONS(4144), 1, + aux_sym_pattern_token1, + ACTIONS(4286), 1, + anon_sym_DQUOTE, + STATE(120), 1, + sym_user_value, + [5456] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4259), 1, - aux_sym_host_token2, - ACTIONS(4261), 1, - anon_sym_EQ, - [5490] = 3, - ACTIONS(3747), 1, + ACTIONS(4132), 1, + aux_sym_pattern_token1, + ACTIONS(4288), 1, + anon_sym_DQUOTE, + STATE(119), 1, + sym_user_known_hosts_file_value, + [5469] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4263), 1, - aux_sym_host_token2, - ACTIONS(4265), 1, - anon_sym_EQ, - [5500] = 3, - ACTIONS(3747), 1, + ACTIONS(4174), 1, + aux_sym_pattern_token1, + STATE(225), 1, + sym_match_value, + STATE(234), 1, + sym_pattern, + [5482] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4267), 1, - aux_sym_host_token2, - ACTIONS(4269), 1, - anon_sym_EQ, - [5510] = 3, - ACTIONS(3747), 1, + ACTIONS(4090), 1, + aux_sym_pattern_token1, + ACTIONS(4290), 1, + anon_sym_DQUOTE, + STATE(116), 1, + sym_xauth_location_value, + [5495] = 4, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4271), 1, - aux_sym_host_token2, - ACTIONS(4273), 1, - anon_sym_EQ, - [5520] = 3, + ACTIONS(4174), 1, + aux_sym_pattern_token1, + STATE(114), 1, + sym_match_value, + STATE(234), 1, + sym_pattern, + [5508] = 4, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(4174), 1, + aux_sym_pattern_token1, + STATE(115), 1, + sym_host_value, + STATE(230), 1, + sym_pattern, + [5521] = 3, + ACTIONS(3790), 1, + sym_comment, + STATE(87), 1, + sym_escape_char_value, + ACTIONS(3796), 2, + anon_sym_none, + aux_sym_escape_char_value_token1, + [5532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3797), 1, - sym_number, - STATE(214), 1, - sym_canonicalize_max_dots_value, - [5530] = 3, - ACTIONS(3747), 1, + STATE(85), 1, + sym_fingerprint_hash_value, + ACTIONS(3788), 2, + anon_sym_md5, + anon_sym_sha256, + [5543] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4275), 1, - aux_sym_host_token2, - ACTIONS(4277), 1, - anon_sym_EQ, - [5540] = 3, - ACTIONS(3747), 1, + ACTIONS(4292), 1, + aux_sym_pattern_token1, + STATE(35), 1, + sym_pubkey_accepted_key_types_value, + [5553] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4279), 1, + ACTIONS(4294), 1, aux_sym_host_token2, - ACTIONS(4281), 1, + ACTIONS(4296), 1, anon_sym_EQ, - [5550] = 3, - ACTIONS(3747), 1, + [5563] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4283), 1, + ACTIONS(4298), 1, aux_sym_host_token2, - ACTIONS(4285), 1, + ACTIONS(4300), 1, anon_sym_EQ, - [5560] = 3, - ACTIONS(3747), 1, + [5573] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4287), 1, - aux_sym_host_token2, - ACTIONS(4289), 1, - anon_sym_EQ, - [5570] = 3, - ACTIONS(3747), 1, + ACTIONS(4302), 1, + aux_sym_pattern_token1, + STATE(32), 1, + sym_remote_command_value, + [5583] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4291), 1, + ACTIONS(4304), 1, aux_sym_host_token2, - ACTIONS(4293), 1, + ACTIONS(4306), 1, anon_sym_EQ, - [5580] = 3, - ACTIONS(3747), 1, + [5593] = 3, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(4308), 1, + aux_sym_pattern_token1, + STATE(33), 1, + sym_rekey_limit_value, + [5603] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4295), 1, + ACTIONS(4310), 1, aux_sym_host_token2, - ACTIONS(4297), 1, + ACTIONS(4312), 1, anon_sym_EQ, - [5590] = 3, - ACTIONS(3747), 1, + [5613] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4299), 1, + ACTIONS(4314), 1, aux_sym_pattern_token1, - STATE(213), 1, - sym_canonicalize_permitted_cnames_value, - [5600] = 3, - ACTIONS(3747), 1, + STATE(172), 1, + sym_identity_file_value, + [5623] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4301), 1, + ACTIONS(4316), 1, aux_sym_host_token2, - ACTIONS(4303), 1, + ACTIONS(4318), 1, anon_sym_EQ, - [5610] = 3, - ACTIONS(3747), 1, + [5633] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4305), 1, - aux_sym_host_token2, - ACTIONS(4307), 1, - anon_sym_EQ, - [5620] = 3, - ACTIONS(3747), 1, + ACTIONS(4320), 1, + aux_sym_pattern_token1, + STATE(36), 1, + sym_pubkey_accepted_algorithms_value, + [5643] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4309), 1, + ACTIONS(4322), 1, aux_sym_host_token2, - ACTIONS(4311), 1, + ACTIONS(4324), 1, anon_sym_EQ, - [5630] = 3, - ACTIONS(3747), 1, + [5653] = 3, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(4326), 1, + aux_sym_pattern_token1, + STATE(38), 1, + sym_proxy_jump_value, + [5663] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4313), 1, + ACTIONS(4328), 1, aux_sym_host_token2, - ACTIONS(4315), 1, + ACTIONS(4330), 1, anon_sym_EQ, - [5640] = 3, - ACTIONS(3747), 1, + [5673] = 3, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(4332), 1, + aux_sym_pattern_token1, + STATE(39), 1, + sym_proxy_command_value, + [5683] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4317), 1, + ACTIONS(4334), 1, aux_sym_host_token2, - ACTIONS(4319), 1, + ACTIONS(4336), 1, anon_sym_EQ, - [5650] = 3, - ACTIONS(3747), 1, + [5693] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4321), 1, + ACTIONS(4338), 1, aux_sym_host_token2, - ACTIONS(4323), 1, + ACTIONS(4340), 1, anon_sym_EQ, - [5660] = 3, - ACTIONS(3747), 1, + [5703] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4325), 1, + ACTIONS(4342), 1, aux_sym_pattern_token1, - STATE(212), 1, - sym_ca_signature_algorithms_value, - [5670] = 3, - ACTIONS(3747), 1, + STATE(41), 1, + sym_preferred_authentications_value, + [5713] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4327), 1, + ACTIONS(4344), 1, aux_sym_host_token2, - ACTIONS(4329), 1, + ACTIONS(4346), 1, anon_sym_EQ, - [5680] = 3, - ACTIONS(3747), 1, + [5723] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4114), 1, + sym_number, + STATE(42), 1, + sym_port_value, + [5733] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4331), 1, + ACTIONS(4348), 1, aux_sym_host_token2, - ACTIONS(4333), 1, + ACTIONS(4350), 1, anon_sym_EQ, - [5690] = 3, - ACTIONS(3747), 1, + [5743] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4335), 1, + ACTIONS(4352), 1, aux_sym_pattern_token1, - STATE(211), 1, - sym_certificate_file_value, - [5700] = 3, - ACTIONS(3747), 1, + STATE(43), 1, + sym_pkcs11_provider_value, + [5753] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4337), 1, + ACTIONS(4354), 1, aux_sym_host_token2, - ACTIONS(4339), 1, + ACTIONS(4356), 1, anon_sym_EQ, - [5710] = 3, - ACTIONS(3747), 1, + [5763] = 3, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(4358), 1, + aux_sym_pattern_token1, + STATE(44), 1, + sym_permit_remote_open_value, + [5773] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4341), 1, + ACTIONS(4360), 1, aux_sym_host_token2, - ACTIONS(4343), 1, + ACTIONS(4362), 1, anon_sym_EQ, - [5720] = 3, - ACTIONS(3747), 1, + [5783] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4032), 1, + sym_number, + STATE(47), 1, + sym_number_of_password_prompts_value, + [5793] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4345), 1, + ACTIONS(4364), 1, aux_sym_host_token2, - ACTIONS(4347), 1, + ACTIONS(4366), 1, anon_sym_EQ, - [5730] = 3, - ACTIONS(3747), 1, + [5803] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4349), 1, + ACTIONS(4368), 1, aux_sym_pattern_token1, - STATE(169), 1, - sym_include_value, - [5740] = 3, - ACTIONS(3747), 1, + STATE(49), 1, + sym_macs_value, + [5813] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4351), 1, + ACTIONS(4370), 1, aux_sym_host_token2, - ACTIONS(4353), 1, + ACTIONS(4372), 1, anon_sym_EQ, - [5750] = 3, - ACTIONS(3747), 1, + [5823] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4355), 1, + ACTIONS(4374), 1, aux_sym_pattern_token1, - STATE(109), 1, - sym_bind_address_value, - [5760] = 3, - ACTIONS(3747), 1, + STATE(50), 1, + sym_log_verbose_value, + [5833] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4357), 1, + ACTIONS(4376), 1, aux_sym_host_token2, - ACTIONS(4359), 1, + ACTIONS(4378), 1, anon_sym_EQ, - [5770] = 3, - ACTIONS(3747), 1, + [5843] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4361), 1, + ACTIONS(4380), 1, aux_sym_pattern_token1, - STATE(5), 1, - sym_xauth_location_value, - [5780] = 3, - ACTIONS(3747), 1, + STATE(52), 1, + sym_local_forward_value, + [5853] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4363), 1, + ACTIONS(4382), 1, aux_sym_host_token2, - ACTIONS(4365), 1, + ACTIONS(4384), 1, anon_sym_EQ, - [5790] = 3, - ACTIONS(3747), 1, + [5863] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4367), 1, + ACTIONS(4386), 1, aux_sym_pattern_token1, - STATE(108), 1, - sym_bind_interface_value, - [5800] = 3, - ACTIONS(3747), 1, + STATE(53), 1, + sym_local_command_value, + [5873] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4369), 1, + ACTIONS(4388), 1, aux_sym_host_token2, - ACTIONS(4371), 1, + ACTIONS(4390), 1, anon_sym_EQ, - [5810] = 3, - ACTIONS(3747), 1, + [5883] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4373), 1, + ACTIONS(4392), 1, aux_sym_pattern_token1, - STATE(8), 1, - sym_user_known_hosts_file_value, - [5820] = 3, - ACTIONS(3747), 1, + STATE(54), 1, + sym_known_hosts_command_value, + [5893] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4375), 1, + ACTIONS(4394), 1, aux_sym_host_token2, - ACTIONS(4377), 1, + ACTIONS(4396), 1, anon_sym_EQ, - [5830] = 3, - ACTIONS(3747), 1, + [5903] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4379), 1, + ACTIONS(4398), 1, aux_sym_pattern_token1, - STATE(9), 1, - sym_user_value, - [5840] = 3, - ACTIONS(3747), 1, + STATE(55), 1, + sym_kex_algorithms_value, + [5913] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4381), 1, + ACTIONS(4400), 1, aux_sym_host_token2, - ACTIONS(4383), 1, + ACTIONS(4402), 1, anon_sym_EQ, - [5850] = 3, - ACTIONS(3747), 1, + [5923] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4404), 1, aux_sym_pattern_token1, - STATE(130), 1, - sym_stream_local_bind_mask_value, - [5860] = 3, - ACTIONS(3747), 1, + STATE(56), 1, + sym_kbd_interactive_devices_value, + [5933] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(4406), 1, aux_sym_host_token2, - ACTIONS(4389), 1, + ACTIONS(4408), 1, anon_sym_EQ, - [5870] = 3, - ACTIONS(3747), 1, + [5943] = 3, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(4410), 1, + aux_sym_pattern_token1, + STATE(59), 1, + sym_include_value, + [5953] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4391), 1, + ACTIONS(4412), 1, aux_sym_host_token2, - ACTIONS(4393), 1, + ACTIONS(4414), 1, anon_sym_EQ, - [5880] = 3, - ACTIONS(3747), 1, + [5963] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4395), 1, + ACTIONS(4416), 1, + aux_sym_pattern_token1, + STATE(103), 1, + sym_ca_signature_algorithms_value, + [5973] = 3, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(4418), 1, aux_sym_host_token2, - ACTIONS(4397), 1, + ACTIONS(4420), 1, anon_sym_EQ, - [5890] = 3, - ACTIONS(3747), 1, + [5983] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4399), 1, + ACTIONS(4314), 1, aux_sym_pattern_token1, - STATE(208), 1, - sym_ciphers_value, - [5900] = 3, - ACTIONS(3747), 1, + STATE(61), 1, + sym_identity_file_value, + [5993] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4401), 1, + ACTIONS(4422), 1, aux_sym_host_token2, - ACTIONS(4403), 1, + ACTIONS(4424), 1, anon_sym_EQ, - [5910] = 3, - ACTIONS(3747), 1, + [6003] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4405), 1, + ACTIONS(4426), 1, + aux_sym_pattern_token1, + STATE(62), 1, + sym_identity_agent_value, + [6013] = 3, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(4428), 1, aux_sym_host_token2, - ACTIONS(4407), 1, + ACTIONS(4430), 1, anon_sym_EQ, - [5920] = 3, - ACTIONS(3747), 1, + [6023] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4409), 1, + ACTIONS(4432), 1, aux_sym_pattern_token1, - STATE(107), 1, - sym_canonical_domains_value, - [5930] = 3, - ACTIONS(3747), 1, + STATE(64), 1, + sym_hostname_value, + [6033] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4411), 1, + ACTIONS(4434), 1, aux_sym_host_token2, - ACTIONS(4413), 1, + ACTIONS(4436), 1, anon_sym_EQ, - [5940] = 3, - ACTIONS(3747), 1, + [6043] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4415), 1, + ACTIONS(4438), 1, aux_sym_pattern_token1, - STATE(13), 1, - sym_tunnel_device_value, - [5950] = 3, - ACTIONS(3747), 1, + STATE(65), 1, + sym_host_key_alias_value, + [6053] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4417), 1, + ACTIONS(4440), 1, aux_sym_host_token2, - ACTIONS(4419), 1, + ACTIONS(4442), 1, anon_sym_EQ, - [5960] = 3, - ACTIONS(3747), 1, + [6063] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4444), 1, aux_sym_pattern_token1, - STATE(207), 1, - sym_cipher_value, - [5970] = 3, - ACTIONS(3747), 1, + STATE(66), 1, + sym_host_key_algorithms_value, + [6073] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4423), 1, + ACTIONS(4446), 1, aux_sym_host_token2, - ACTIONS(4425), 1, + ACTIONS(4448), 1, anon_sym_EQ, - [5980] = 3, - ACTIONS(3747), 1, + [6083] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4427), 1, + ACTIONS(4450), 1, aux_sym_pattern_token1, - STATE(132), 1, - sym_set_env_value, - [5990] = 3, - ACTIONS(3747), 1, + STATE(68), 1, + sym_hostbased_accepted_algorithms_value, + [6093] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4429), 1, + ACTIONS(4452), 1, aux_sym_host_token2, - ACTIONS(4431), 1, + ACTIONS(4454), 1, anon_sym_EQ, - [6000] = 3, - ACTIONS(3747), 1, + [6103] = 3, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(4456), 1, + aux_sym_pattern_token1, + STATE(70), 1, + sym_gssapi_kex_algorithms_value, + [6113] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4433), 1, + ACTIONS(4458), 1, aux_sym_host_token2, - ACTIONS(4435), 1, + ACTIONS(4460), 1, anon_sym_EQ, - [6010] = 3, - ACTIONS(3), 1, + [6123] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3797), 1, - sym_number, - STATE(104), 1, - sym_canonicalize_max_dots_value, - [6020] = 3, - ACTIONS(3747), 1, + ACTIONS(4462), 1, + aux_sym_pattern_token1, + STATE(72), 1, + sym_gssapi_server_identity_value, + [6133] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4437), 1, + ACTIONS(4464), 1, aux_sym_host_token2, - ACTIONS(4439), 1, + ACTIONS(4466), 1, anon_sym_EQ, - [6030] = 3, - ACTIONS(3747), 1, + [6143] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4441), 1, - aux_sym_host_token2, - ACTIONS(4443), 1, - anon_sym_EQ, - [6040] = 3, - ACTIONS(3747), 1, + ACTIONS(4468), 1, + aux_sym_pattern_token1, + STATE(76), 1, + sym_gssapi_client_identity_value, + [6153] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4445), 1, + ACTIONS(4470), 1, aux_sym_host_token2, - ACTIONS(4447), 1, + ACTIONS(4472), 1, anon_sym_EQ, - [6050] = 3, - ACTIONS(3747), 1, + [6163] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4299), 1, + ACTIONS(4474), 1, aux_sym_pattern_token1, - STATE(103), 1, - sym_canonicalize_permitted_cnames_value, - [6060] = 3, - ACTIONS(3747), 1, + STATE(78), 1, + sym_global_known_hosts_file_value, + [6173] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4449), 1, + ACTIONS(4476), 1, aux_sym_host_token2, - ACTIONS(4451), 1, + ACTIONS(4478), 1, anon_sym_EQ, - [6070] = 3, - ACTIONS(3747), 1, + [6183] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4325), 1, - aux_sym_pattern_token1, - STATE(102), 1, - sym_ca_signature_algorithms_value, - [6080] = 3, - ACTIONS(3747), 1, + ACTIONS(4044), 1, + sym_time_format, + STATE(81), 1, + sym_forward_x11_timeout_value, + [6193] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4453), 1, + ACTIONS(4480), 1, aux_sym_host_token2, - ACTIONS(4455), 1, + ACTIONS(4482), 1, anon_sym_EQ, - [6090] = 3, - ACTIONS(3747), 1, + [6203] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4335), 1, + ACTIONS(4484), 1, aux_sym_pattern_token1, - STATE(101), 1, - sym_certificate_file_value, - [6100] = 3, - ACTIONS(3747), 1, + STATE(83), 1, + sym_forward_agent_value, + [6213] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4457), 1, + ACTIONS(4486), 1, aux_sym_host_token2, - ACTIONS(4459), 1, + ACTIONS(4488), 1, anon_sym_EQ, - [6110] = 3, - ACTIONS(3747), 1, + [6223] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4490), 1, aux_sym_pattern_token1, - STATE(20), 1, - sym_stream_local_bind_mask_value, - [6120] = 3, - ACTIONS(3747), 1, + STATE(28), 1, + sym_revoked_host_keys_value, + [6233] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4461), 1, + ACTIONS(4492), 1, aux_sym_host_token2, - ACTIONS(4463), 1, + ACTIONS(4494), 1, anon_sym_EQ, - [6130] = 3, - ACTIONS(3), 1, + [6243] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3985), 1, - sym_number, - STATE(134), 1, - sym_server_alive_interval_value, - [6140] = 3, - ACTIONS(3747), 1, + ACTIONS(4496), 1, + aux_sym_host_token2, + ACTIONS(4498), 1, + anon_sym_EQ, + [6253] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4465), 1, + ACTIONS(4500), 1, aux_sym_host_token2, - ACTIONS(4467), 1, + ACTIONS(4502), 1, anon_sym_EQ, - [6150] = 3, - ACTIONS(3747), 1, + [6263] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4415), 1, + ACTIONS(4504), 1, aux_sym_pattern_token1, - STATE(123), 1, - sym_tunnel_device_value, - [6160] = 3, - ACTIONS(3747), 1, + STATE(90), 1, + sym_dynamic_forward_value, + [6273] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4469), 1, + ACTIONS(4506), 1, aux_sym_host_token2, - ACTIONS(4471), 1, + ACTIONS(4508), 1, anon_sym_EQ, - [6170] = 3, - ACTIONS(3747), 1, + [6283] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4473), 1, - aux_sym_host_token2, - ACTIONS(4475), 1, - anon_sym_EQ, - [6180] = 3, - ACTIONS(3747), 1, + ACTIONS(4510), 1, + aux_sym_pattern_token1, + STATE(92), 1, + sym_control_path_value, + [6293] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4477), 1, + ACTIONS(4512), 1, aux_sym_host_token2, - ACTIONS(4479), 1, + ACTIONS(4514), 1, anon_sym_EQ, - [6190] = 3, + [6303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3911), 1, + ACTIONS(3926), 1, sym_number, - STATE(204), 1, - sym_connection_attempts_value, - [6200] = 3, - ACTIONS(3747), 1, + STATE(94), 1, + sym_connect_timeout_value, + [6313] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4481), 1, + ACTIONS(4516), 1, aux_sym_host_token2, - ACTIONS(4483), 1, + ACTIONS(4518), 1, anon_sym_EQ, - [6210] = 3, + [6323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4011), 1, + ACTIONS(3902), 1, sym_number, - STATE(135), 1, - sym_server_alive_count_max_value, - [6220] = 3, - ACTIONS(3747), 1, + STATE(95), 1, + sym_connection_attempts_value, + [6333] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4485), 1, + ACTIONS(4520), 1, aux_sym_host_token2, - ACTIONS(4487), 1, + ACTIONS(4522), 1, anon_sym_EQ, - [6230] = 3, - ACTIONS(3747), 1, + [6343] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4489), 1, - aux_sym_host_token2, - ACTIONS(4491), 1, - anon_sym_EQ, - [6240] = 3, - ACTIONS(3747), 1, + ACTIONS(4524), 1, + aux_sym_pattern_token1, + STATE(98), 1, + sym_cipher_value, + [6353] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4493), 1, + ACTIONS(4526), 1, aux_sym_host_token2, - ACTIONS(4495), 1, + ACTIONS(4528), 1, anon_sym_EQ, - [6250] = 3, - ACTIONS(3747), 1, + [6363] = 3, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(4530), 1, + aux_sym_pattern_token1, + STATE(99), 1, + sym_ciphers_value, + [6373] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4497), 1, + ACTIONS(4532), 1, aux_sym_host_token2, - ACTIONS(4499), 1, + ACTIONS(4534), 1, anon_sym_EQ, - [6260] = 3, - ACTIONS(3747), 1, + [6383] = 3, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(4536), 1, + aux_sym_pattern_token1, + STATE(102), 1, + sym_certificate_file_value, + [6393] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4501), 1, + ACTIONS(4538), 1, aux_sym_host_token2, - ACTIONS(4503), 1, + ACTIONS(4540), 1, anon_sym_EQ, - [6270] = 3, + [6403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3935), 1, + ACTIONS(3932), 1, sym_number, - STATE(203), 1, - sym_connect_timeout_value, - [6280] = 3, - ACTIONS(3747), 1, + STATE(29), 1, + sym_required_rsa_size_value, + [6413] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4505), 1, + ACTIONS(4542), 1, aux_sym_host_token2, - ACTIONS(4507), 1, + ACTIONS(4544), 1, anon_sym_EQ, - [6290] = 3, - ACTIONS(3747), 1, + [6423] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4509), 1, + ACTIONS(4546), 1, aux_sym_pattern_token1, - STATE(136), 1, - sym_send_env_value, - [6300] = 3, - ACTIONS(3747), 1, + STATE(104), 1, + sym_canonicalize_permitted_cnames_value, + [6433] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4511), 1, + ACTIONS(4548), 1, aux_sym_host_token2, - ACTIONS(4513), 1, + ACTIONS(4550), 1, anon_sym_EQ, - [6310] = 3, - ACTIONS(3747), 1, + [6443] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4515), 1, - aux_sym_host_token2, - ACTIONS(4517), 1, - anon_sym_EQ, - [6320] = 3, - ACTIONS(3747), 1, + ACTIONS(3828), 1, + sym_number, + STATE(105), 1, + sym_canonicalize_max_dots_value, + [6453] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(4552), 1, aux_sym_host_token2, - ACTIONS(4521), 1, + ACTIONS(4554), 1, anon_sym_EQ, - [6330] = 3, - ACTIONS(3747), 1, + [6463] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4427), 1, + ACTIONS(4556), 1, aux_sym_pattern_token1, - STATE(22), 1, - sym_set_env_value, - [6340] = 3, - ACTIONS(3747), 1, + STATE(108), 1, + sym_canonical_domains_value, + [6473] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4523), 1, + ACTIONS(4558), 1, aux_sym_host_token2, - ACTIONS(4525), 1, + ACTIONS(4560), 1, anon_sym_EQ, - [6350] = 3, - ACTIONS(3747), 1, + [6483] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4527), 1, + ACTIONS(4562), 1, aux_sym_pattern_token1, - STATE(137), 1, - sym_security_key_provider_value, - [6360] = 3, - ACTIONS(3747), 1, + STATE(109), 1, + sym_bind_interface_value, + [6493] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4529), 1, + ACTIONS(4564), 1, aux_sym_host_token2, - ACTIONS(4531), 1, + ACTIONS(4566), 1, anon_sym_EQ, - [6370] = 3, - ACTIONS(3747), 1, + [6503] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4399), 1, + ACTIONS(4568), 1, aux_sym_pattern_token1, - STATE(98), 1, - sym_ciphers_value, - [6380] = 3, - ACTIONS(3747), 1, + STATE(110), 1, + sym_bind_address_value, + [6513] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4533), 1, + ACTIONS(4570), 1, aux_sym_host_token2, - ACTIONS(4535), 1, + ACTIONS(4572), 1, anon_sym_EQ, - [6390] = 3, - ACTIONS(3747), 1, + [6523] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4537), 1, + ACTIONS(4574), 1, aux_sym_host_token2, - ACTIONS(4539), 1, + ACTIONS(4576), 1, anon_sym_EQ, - [6400] = 3, - ACTIONS(3747), 1, + [6533] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4541), 1, + ACTIONS(4578), 1, aux_sym_host_token2, - ACTIONS(4543), 1, + ACTIONS(4580), 1, anon_sym_EQ, - [6410] = 3, - ACTIONS(3747), 1, + [6543] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4545), 1, + ACTIONS(4510), 1, aux_sym_pattern_token1, - STATE(201), 1, + STATE(203), 1, sym_control_path_value, - [6420] = 3, - ACTIONS(3747), 1, + [6553] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4547), 1, + ACTIONS(4582), 1, aux_sym_host_token2, - ACTIONS(4549), 1, + ACTIONS(4584), 1, anon_sym_EQ, - [6430] = 3, - ACTIONS(3747), 1, + [6563] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4551), 1, + ACTIONS(4426), 1, aux_sym_pattern_token1, - STATE(138), 1, - sym_revoked_host_keys_value, - [6440] = 3, - ACTIONS(3747), 1, + STATE(173), 1, + sym_identity_agent_value, + [6573] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4553), 1, + ACTIONS(4586), 1, aux_sym_host_token2, - ACTIONS(4555), 1, + ACTIONS(4588), 1, anon_sym_EQ, - [6450] = 3, - ACTIONS(3747), 1, + [6583] = 3, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(4590), 1, + aux_sym_pattern_token1, + STATE(116), 1, + sym_xauth_location_value, + [6593] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4557), 1, + ACTIONS(4592), 1, aux_sym_host_token2, - ACTIONS(4559), 1, + ACTIONS(4594), 1, anon_sym_EQ, - [6460] = 3, - ACTIONS(3747), 1, + [6603] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4561), 1, + ACTIONS(4596), 1, aux_sym_host_token2, - ACTIONS(4563), 1, + ACTIONS(4598), 1, anon_sym_EQ, - [6470] = 3, - ACTIONS(3747), 1, + [6613] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4565), 1, + ACTIONS(4600), 1, aux_sym_host_token2, - ACTIONS(4567), 1, + ACTIONS(4602), 1, anon_sym_EQ, - [6480] = 3, - ACTIONS(3747), 1, + [6623] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4569), 1, + ACTIONS(4604), 1, aux_sym_host_token2, - ACTIONS(4571), 1, + ACTIONS(4606), 1, anon_sym_EQ, - [6490] = 3, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(4527), 1, - aux_sym_pattern_token1, - STATE(27), 1, - sym_security_key_provider_value, - [6500] = 3, - ACTIONS(3747), 1, + [6633] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4573), 1, + ACTIONS(4608), 1, aux_sym_host_token2, - ACTIONS(4575), 1, + ACTIONS(4610), 1, anon_sym_EQ, - [6510] = 3, - ACTIONS(3), 1, + [6643] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4085), 1, - sym_number, - STATE(139), 1, - sym_required_rsa_size_value, - [6520] = 3, - ACTIONS(3747), 1, + ACTIONS(4612), 1, + aux_sym_pattern_token1, + STATE(119), 1, + sym_user_known_hosts_file_value, + [6653] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4577), 1, + ACTIONS(4614), 1, aux_sym_host_token2, - ACTIONS(4579), 1, + ACTIONS(4616), 1, anon_sym_EQ, - [6530] = 3, - ACTIONS(3747), 1, + [6663] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4581), 1, - aux_sym_host_token2, - ACTIONS(4583), 1, - anon_sym_EQ, - [6540] = 3, - ACTIONS(3747), 1, + ACTIONS(4618), 1, + aux_sym_pattern_token1, + STATE(27), 1, + sym_security_key_provider_value, + [6673] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4585), 1, - aux_sym_host_token2, - ACTIONS(4587), 1, - anon_sym_EQ, - [6550] = 3, - ACTIONS(3747), 1, + ACTIONS(4620), 1, + aux_sym_pattern_token1, + STATE(31), 1, + sym_remote_forward_value, + [6683] = 3, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(4622), 1, + aux_sym_pattern_token1, + STATE(120), 1, + sym_user_value, + [6693] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4589), 1, + ACTIONS(4624), 1, aux_sym_host_token2, - ACTIONS(4591), 1, + ACTIONS(4626), 1, anon_sym_EQ, - [6560] = 3, - ACTIONS(3747), 1, + [6703] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4593), 1, + ACTIONS(4628), 1, aux_sym_host_token2, - ACTIONS(4595), 1, + ACTIONS(4630), 1, anon_sym_EQ, - [6570] = 3, - ACTIONS(3747), 1, + [6713] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4597), 1, + ACTIONS(4632), 1, aux_sym_pattern_token1, - STATE(199), 1, - sym_dynamic_forward_value, - [6580] = 3, - ACTIONS(3747), 1, + STATE(26), 1, + sym_send_env_value, + [6723] = 3, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(4568), 1, + aux_sym_pattern_token1, + STATE(221), 1, + sym_bind_address_value, + [6733] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4599), 1, + ACTIONS(4634), 1, aux_sym_host_token2, - ACTIONS(4601), 1, + ACTIONS(4636), 1, anon_sym_EQ, - [6590] = 3, + [6743] = 3, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(4562), 1, + aux_sym_pattern_token1, + STATE(220), 1, + sym_bind_interface_value, + [6753] = 3, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(4556), 1, + aux_sym_pattern_token1, + STATE(219), 1, + sym_canonical_domains_value, + [6763] = 3, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(4638), 1, + aux_sym_pattern_token1, + STATE(124), 1, + sym_tunnel_device_value, + [6773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4011), 1, + ACTIONS(4068), 1, sym_number, STATE(25), 1, sym_server_alive_count_max_value, - [6600] = 3, - ACTIONS(3747), 1, + [6783] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4603), 1, + ACTIONS(4640), 1, aux_sym_host_token2, - ACTIONS(4605), 1, + ACTIONS(4642), 1, anon_sym_EQ, - [6610] = 3, - ACTIONS(3747), 1, + [6793] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3828), 1, + sym_number, + STATE(216), 1, + sym_canonicalize_max_dots_value, + [6803] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4056), 1, + sym_number, + STATE(24), 1, + sym_server_alive_interval_value, + [6813] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4546), 1, aux_sym_pattern_token1, - STATE(97), 1, - sym_cipher_value, - [6620] = 3, - ACTIONS(3747), 1, + STATE(215), 1, + sym_canonicalize_permitted_cnames_value, + [6823] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4607), 1, + ACTIONS(4644), 1, aux_sym_host_token2, - ACTIONS(4609), 1, + ACTIONS(4646), 1, anon_sym_EQ, - [6630] = 3, - ACTIONS(3747), 1, + [6833] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4509), 1, + ACTIONS(4416), 1, aux_sym_pattern_token1, - STATE(26), 1, - sym_send_env_value, - [6640] = 3, - ACTIONS(3747), 1, + STATE(214), 1, + sym_ca_signature_algorithms_value, + [6843] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4611), 1, + ACTIONS(4648), 1, aux_sym_pattern_token1, - STATE(76), 1, - sym_gssapi_client_identity_value, - [6650] = 3, - ACTIONS(3747), 1, + STATE(22), 1, + sym_set_env_value, + [6853] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4613), 1, + ACTIONS(4536), 1, aux_sym_pattern_token1, - STATE(141), 1, - sym_remote_forward_value, - [6660] = 3, - ACTIONS(3747), 1, + STATE(213), 1, + sym_certificate_file_value, + [6863] = 3, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(4650), 1, + aux_sym_pattern_token1, + STATE(131), 1, + sym_stream_local_bind_mask_value, + [6873] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4615), 1, + ACTIONS(4652), 1, aux_sym_host_token2, - ACTIONS(4617), 1, + ACTIONS(4654), 1, anon_sym_EQ, - [6670] = 3, - ACTIONS(3747), 1, + [6883] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4551), 1, + ACTIONS(4650), 1, aux_sym_pattern_token1, - STATE(28), 1, - sym_revoked_host_keys_value, - [6680] = 3, - ACTIONS(3747), 1, + STATE(20), 1, + sym_stream_local_bind_mask_value, + [6893] = 3, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(4530), 1, + aux_sym_pattern_token1, + STATE(210), 1, + sym_ciphers_value, + [6903] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4619), 1, + ACTIONS(4656), 1, aux_sym_host_token2, - ACTIONS(4621), 1, + ACTIONS(4658), 1, anon_sym_EQ, - [6690] = 3, - ACTIONS(3747), 1, + [6913] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4623), 1, + ACTIONS(4524), 1, aux_sym_pattern_token1, - STATE(142), 1, - sym_remote_command_value, - [6700] = 3, - ACTIONS(3747), 1, + STATE(209), 1, + sym_cipher_value, + [6923] = 3, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(4648), 1, + aux_sym_pattern_token1, + STATE(133), 1, + sym_set_env_value, + [6933] = 3, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(4660), 1, + aux_sym_pattern_token1, + STATE(60), 1, + sym_ignore_unknown_value, + [6943] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4056), 1, + sym_number, + STATE(135), 1, + sym_server_alive_interval_value, + [6953] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4625), 1, + ACTIONS(4662), 1, aux_sym_host_token2, - ACTIONS(4627), 1, + ACTIONS(4664), 1, anon_sym_EQ, - [6710] = 3, + [6963] = 3, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(4638), 1, + aux_sym_pattern_token1, + STATE(13), 1, + sym_tunnel_device_value, + [6973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4085), 1, + ACTIONS(3902), 1, sym_number, - STATE(29), 1, - sym_required_rsa_size_value, - [6720] = 3, + STATE(206), 1, + sym_connection_attempts_value, + [6983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3911), 1, + ACTIONS(4068), 1, sym_number, - STATE(94), 1, - sym_connection_attempts_value, - [6730] = 3, - ACTIONS(3747), 1, + STATE(136), 1, + sym_server_alive_count_max_value, + [6993] = 3, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(4666), 1, + aux_sym_host_token2, + ACTIONS(4668), 1, + anon_sym_EQ, + [7003] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4629), 1, + ACTIONS(4622), 1, aux_sym_pattern_token1, - STATE(143), 1, - sym_rekey_limit_value, - [6740] = 3, - ACTIONS(3747), 1, + STATE(9), 1, + sym_user_value, + [7013] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4631), 1, + ACTIONS(4670), 1, aux_sym_host_token2, - ACTIONS(4633), 1, + ACTIONS(4672), 1, anon_sym_EQ, - [6750] = 3, - ACTIONS(3747), 1, + [7023] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4613), 1, + ACTIONS(4632), 1, aux_sym_pattern_token1, - STATE(31), 1, - sym_remote_forward_value, - [6760] = 3, - ACTIONS(3747), 1, + STATE(137), 1, + sym_send_env_value, + [7033] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4409), 1, + ACTIONS(4612), 1, aux_sym_pattern_token1, - STATE(217), 1, - sym_canonical_domains_value, - [6770] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3935), 1, - sym_number, - STATE(93), 1, - sym_connect_timeout_value, - [6780] = 3, - ACTIONS(3747), 1, + STATE(8), 1, + sym_user_known_hosts_file_value, + [7043] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4623), 1, + ACTIONS(4618), 1, aux_sym_pattern_token1, - STATE(32), 1, - sym_remote_command_value, - [6790] = 3, - ACTIONS(3747), 1, + STATE(138), 1, + sym_security_key_provider_value, + [7053] = 3, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(4674), 1, + aux_sym_host_token2, + ACTIONS(4676), 1, + anon_sym_EQ, + [7063] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4629), 1, + ACTIONS(4590), 1, aux_sym_pattern_token1, - STATE(33), 1, - sym_rekey_limit_value, - [6800] = 3, - ACTIONS(3747), 1, + STATE(5), 1, + sym_xauth_location_value, + [7073] = 3, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(4678), 1, + aux_sym_host_token2, + ACTIONS(4680), 1, + anon_sym_EQ, + [7083] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4635), 1, + ACTIONS(4490), 1, aux_sym_pattern_token1, - STATE(35), 1, - sym_pubkey_accepted_key_types_value, - [6810] = 3, - ACTIONS(3747), 1, + STATE(139), 1, + sym_revoked_host_keys_value, + [7093] = 3, + ACTIONS(3790), 1, + sym_comment, + ACTIONS(4682), 1, + aux_sym_host_token2, + ACTIONS(4684), 1, + anon_sym_EQ, + [7103] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4635), 1, - aux_sym_pattern_token1, - STATE(145), 1, - sym_pubkey_accepted_key_types_value, - [6820] = 3, - ACTIONS(3747), 1, + ACTIONS(3932), 1, + sym_number, + STATE(140), 1, + sym_required_rsa_size_value, + [7113] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4637), 1, + ACTIONS(4686), 1, aux_sym_host_token2, - ACTIONS(4639), 1, + ACTIONS(4688), 1, anon_sym_EQ, - [6830] = 3, - ACTIONS(3747), 1, + [7123] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4641), 1, + ACTIONS(4690), 1, aux_sym_host_token2, - ACTIONS(4643), 1, + ACTIONS(4692), 1, anon_sym_EQ, - [6840] = 3, - ACTIONS(3747), 1, + [7133] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4645), 1, + ACTIONS(4504), 1, aux_sym_pattern_token1, - STATE(193), 1, - sym_forward_agent_value, - [6850] = 3, - ACTIONS(3747), 1, + STATE(201), 1, + sym_dynamic_forward_value, + [7143] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4647), 1, + ACTIONS(4620), 1, aux_sym_pattern_token1, - STATE(146), 1, - sym_pubkey_accepted_algorithms_value, - [6860] = 3, - ACTIONS(3), 1, + STATE(142), 1, + sym_remote_forward_value, + [7153] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(3985), 1, - sym_number, - STATE(24), 1, - sym_server_alive_interval_value, - [6870] = 3, - ACTIONS(3747), 1, + ACTIONS(4694), 1, + aux_sym_host_token2, + ACTIONS(4696), 1, + anon_sym_EQ, + [7163] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4545), 1, + ACTIONS(4302), 1, aux_sym_pattern_token1, - STATE(91), 1, - sym_control_path_value, - [6880] = 3, - ACTIONS(3747), 1, + STATE(143), 1, + sym_remote_command_value, + [7173] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4647), 1, - aux_sym_pattern_token1, - STATE(36), 1, - sym_pubkey_accepted_algorithms_value, - [6890] = 3, - ACTIONS(3747), 1, + ACTIONS(4698), 1, + aux_sym_host_token2, + ACTIONS(4700), 1, + anon_sym_EQ, + [7183] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4649), 1, + ACTIONS(4702), 1, aux_sym_host_token2, - ACTIONS(4651), 1, + ACTIONS(4704), 1, anon_sym_EQ, - [6900] = 3, - ACTIONS(3747), 1, + [7193] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4653), 1, + ACTIONS(4308), 1, aux_sym_pattern_token1, - STATE(38), 1, - sym_proxy_jump_value, - [6910] = 3, - ACTIONS(3747), 1, + STATE(144), 1, + sym_rekey_limit_value, + [7203] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4655), 1, - aux_sym_pattern_token1, - STATE(39), 1, - sym_proxy_command_value, - [6920] = 3, - ACTIONS(3), 1, + ACTIONS(4706), 1, + aux_sym_host_token2, + ACTIONS(4708), 1, + anon_sym_EQ, + [7213] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4067), 1, - sym_time_format, - STATE(191), 1, - sym_forward_x11_timeout_value, - [6930] = 3, - ACTIONS(3747), 1, + ACTIONS(4710), 1, + aux_sym_host_token2, + ACTIONS(4712), 1, + anon_sym_EQ, + [7223] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4653), 1, + ACTIONS(4292), 1, aux_sym_pattern_token1, - STATE(148), 1, - sym_proxy_jump_value, - [6940] = 3, - ACTIONS(3747), 1, + STATE(146), 1, + sym_pubkey_accepted_key_types_value, + [7233] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4657), 1, + ACTIONS(4714), 1, aux_sym_host_token2, - ACTIONS(4659), 1, + ACTIONS(4716), 1, anon_sym_EQ, - [6950] = 3, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(4597), 1, - aux_sym_pattern_token1, - STATE(89), 1, - sym_dynamic_forward_value, - [6960] = 3, - ACTIONS(3747), 1, + [7243] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4367), 1, + ACTIONS(4320), 1, aux_sym_pattern_token1, - STATE(218), 1, - sym_bind_interface_value, - [6970] = 3, - ACTIONS(3747), 1, + STATE(147), 1, + sym_pubkey_accepted_algorithms_value, + [7253] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4655), 1, - aux_sym_pattern_token1, - STATE(149), 1, - sym_proxy_command_value, - [6980] = 3, - ACTIONS(3747), 1, + ACTIONS(4718), 1, + aux_sym_host_token2, + ACTIONS(4720), 1, + anon_sym_EQ, + [7263] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4661), 1, + ACTIONS(4722), 1, aux_sym_host_token2, - ACTIONS(4663), 1, + ACTIONS(4724), 1, anon_sym_EQ, - [6990] = 3, - ACTIONS(3747), 1, + [7273] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4665), 1, + ACTIONS(4484), 1, aux_sym_pattern_token1, - STATE(170), 1, - sym_ignore_unknown_value, - [7000] = 3, - ACTIONS(3747), 1, + STATE(194), 1, + sym_forward_agent_value, + [7283] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4667), 1, + ACTIONS(4326), 1, aux_sym_pattern_token1, - STATE(41), 1, - sym_preferred_authentications_value, - [7010] = 3, - ACTIONS(3747), 1, + STATE(149), 1, + sym_proxy_jump_value, + [7293] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4361), 1, - aux_sym_pattern_token1, - STATE(115), 1, - sym_xauth_location_value, - [7020] = 3, - ACTIONS(3747), 1, + ACTIONS(4726), 1, + aux_sym_host_token2, + ACTIONS(4728), 1, + anon_sym_EQ, + [7303] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4669), 1, + ACTIONS(4730), 1, aux_sym_host_token2, - ACTIONS(4671), 1, + ACTIONS(4732), 1, anon_sym_EQ, - [7030] = 3, + [7313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3999), 1, - sym_number, - STATE(42), 1, - sym_port_value, - [7040] = 3, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(4673), 1, - aux_sym_pattern_token1, - STATE(188), 1, - sym_global_known_hosts_file_value, - [7050] = 3, - ACTIONS(3747), 1, + ACTIONS(4044), 1, + sym_time_format, + STATE(192), 1, + sym_forward_x11_timeout_value, + [7323] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4667), 1, + ACTIONS(4332), 1, aux_sym_pattern_token1, - STATE(151), 1, - sym_preferred_authentications_value, - [7060] = 3, - ACTIONS(3747), 1, + STATE(150), 1, + sym_proxy_command_value, + [7333] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4675), 1, + ACTIONS(4734), 1, aux_sym_host_token2, - ACTIONS(4677), 1, + ACTIONS(4736), 1, anon_sym_EQ, - [7070] = 3, - ACTIONS(3747), 1, + [7343] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4738), 1, aux_sym_host_token2, - ACTIONS(4681), 1, + ACTIONS(4740), 1, anon_sym_EQ, - [7080] = 3, - ACTIONS(3747), 1, + [7353] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4683), 1, + ACTIONS(4342), 1, aux_sym_pattern_token1, - STATE(43), 1, - sym_pkcs11_provider_value, - [7090] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3999), 1, - sym_number, STATE(152), 1, - sym_port_value, - [7100] = 3, - ACTIONS(3747), 1, + sym_preferred_authentications_value, + [7363] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4685), 1, + ACTIONS(4742), 1, aux_sym_host_token2, - ACTIONS(4687), 1, + ACTIONS(4744), 1, anon_sym_EQ, - [7110] = 3, - ACTIONS(3747), 1, + [7373] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4689), 1, + ACTIONS(4746), 1, aux_sym_host_token2, - ACTIONS(4691), 1, + ACTIONS(4748), 1, anon_sym_EQ, - [7120] = 3, - ACTIONS(3747), 1, + [7383] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4611), 1, + ACTIONS(4474), 1, aux_sym_pattern_token1, - STATE(186), 1, - sym_gssapi_client_identity_value, - [7130] = 3, - ACTIONS(3747), 1, + STATE(189), 1, + sym_global_known_hosts_file_value, + [7393] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4683), 1, - aux_sym_pattern_token1, + ACTIONS(4114), 1, + sym_number, STATE(153), 1, - sym_pkcs11_provider_value, - [7140] = 3, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(4355), 1, - aux_sym_pattern_token1, - STATE(219), 1, - sym_bind_address_value, - [7150] = 3, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(4693), 1, - aux_sym_pattern_token1, - STATE(44), 1, - sym_permit_remote_open_value, - [7160] = 3, - ACTIONS(3747), 1, + sym_port_value, + [7403] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4695), 1, + ACTIONS(4750), 1, aux_sym_host_token2, - ACTIONS(4697), 1, + ACTIONS(4752), 1, anon_sym_EQ, - [7170] = 3, - ACTIONS(3747), 1, + [7413] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4693), 1, + ACTIONS(4352), 1, aux_sym_pattern_token1, STATE(154), 1, - sym_permit_remote_open_value, - [7180] = 3, - ACTIONS(3747), 1, + sym_pkcs11_provider_value, + [7423] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4699), 1, + ACTIONS(4754), 1, aux_sym_host_token2, - ACTIONS(4701), 1, + ACTIONS(4756), 1, anon_sym_EQ, - [7190] = 3, + [7433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3821), 1, + ACTIONS(3926), 1, sym_number, - STATE(47), 1, - sym_number_of_password_prompts_value, - [7200] = 3, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(4703), 1, - aux_sym_pattern_token1, - STATE(49), 1, - sym_macs_value, - [7210] = 3, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(4645), 1, - aux_sym_pattern_token1, - STATE(83), 1, - sym_forward_agent_value, - [7220] = 3, - ACTIONS(3747), 1, + STATE(205), 1, + sym_connect_timeout_value, + [7443] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4705), 1, + ACTIONS(4468), 1, aux_sym_pattern_token1, - STATE(50), 1, - sym_log_verbose_value, - [7230] = 3, - ACTIONS(3747), 1, + STATE(187), 1, + sym_gssapi_client_identity_value, + [7453] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4707), 1, + ACTIONS(4358), 1, aux_sym_pattern_token1, - STATE(52), 1, - sym_local_forward_value, - [7240] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4067), 1, - sym_time_format, - STATE(81), 1, - sym_forward_x11_timeout_value, - [7250] = 3, - ACTIONS(3747), 1, + STATE(155), 1, + sym_permit_remote_open_value, + [7463] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4709), 1, + ACTIONS(4758), 1, aux_sym_host_token2, - ACTIONS(4711), 1, + ACTIONS(4760), 1, anon_sym_EQ, - [7260] = 3, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(4713), 1, - aux_sym_pattern_token1, - STATE(53), 1, - sym_local_command_value, - [7270] = 3, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(4715), 1, - aux_sym_pattern_token1, - STATE(54), 1, - sym_known_hosts_command_value, - [7280] = 3, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(4717), 1, - aux_sym_pattern_token1, - STATE(182), 1, - sym_gssapi_server_identity_value, - [7290] = 3, + [7473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3821), 1, + ACTIONS(4032), 1, sym_number, - STATE(157), 1, + STATE(158), 1, sym_number_of_password_prompts_value, - [7300] = 3, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(4379), 1, - aux_sym_pattern_token1, - STATE(119), 1, - sym_user_value, - [7310] = 3, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(4719), 1, - aux_sym_pattern_token1, - STATE(55), 1, - sym_kex_algorithms_value, - [7320] = 3, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(4721), 1, - aux_sym_pattern_token1, - STATE(56), 1, - sym_kbd_interactive_devices_value, - [7330] = 3, - ACTIONS(3747), 1, + [7483] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4723), 1, + ACTIONS(4762), 1, aux_sym_host_token2, - ACTIONS(4725), 1, + ACTIONS(4764), 1, anon_sym_EQ, - [7340] = 3, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(4673), 1, - aux_sym_pattern_token1, - STATE(78), 1, - sym_global_known_hosts_file_value, - [7350] = 3, - ACTIONS(3747), 1, + [7493] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4349), 1, - aux_sym_pattern_token1, - STATE(59), 1, - sym_include_value, - [7360] = 3, - ACTIONS(3747), 1, + ACTIONS(4766), 1, + aux_sym_host_token2, + ACTIONS(4768), 1, + anon_sym_EQ, + [7503] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4462), 1, aux_sym_pattern_token1, - STATE(180), 1, - sym_gssapi_kex_algorithms_value, - [7370] = 3, - ACTIONS(3747), 1, + STATE(183), 1, + sym_gssapi_server_identity_value, + [7513] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4703), 1, + ACTIONS(4368), 1, aux_sym_pattern_token1, - STATE(159), 1, + STATE(160), 1, sym_macs_value, - [7380] = 3, - ACTIONS(3747), 1, + [7523] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4729), 1, + ACTIONS(4770), 1, aux_sym_host_token2, - ACTIONS(4731), 1, + ACTIONS(4772), 1, anon_sym_EQ, - [7390] = 3, - ACTIONS(3747), 1, + [7533] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4665), 1, - aux_sym_pattern_token1, - STATE(60), 1, - sym_ignore_unknown_value, - [7400] = 3, - ACTIONS(3747), 1, + ACTIONS(4774), 1, + aux_sym_host_token2, + ACTIONS(4776), 1, + anon_sym_EQ, + [7543] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4733), 1, + ACTIONS(4456), 1, aux_sym_pattern_token1, - STATE(61), 1, - sym_identity_file_value, - [7410] = 3, - ACTIONS(3747), 1, + STATE(181), 1, + sym_gssapi_kex_algorithms_value, + [7553] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4705), 1, + ACTIONS(4374), 1, aux_sym_pattern_token1, - STATE(160), 1, + STATE(161), 1, sym_log_verbose_value, - [7420] = 3, - ACTIONS(3747), 1, + [7563] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4735), 1, + ACTIONS(4778), 1, aux_sym_host_token2, - ACTIONS(4737), 1, + ACTIONS(4780), 1, anon_sym_EQ, - [7430] = 3, - ACTIONS(3747), 1, + [7573] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4739), 1, + ACTIONS(4782), 1, aux_sym_host_token2, - ACTIONS(4741), 1, + ACTIONS(4784), 1, anon_sym_EQ, - [7440] = 3, - ACTIONS(3747), 1, + [7583] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4743), 1, + ACTIONS(4450), 1, aux_sym_pattern_token1, - STATE(178), 1, + STATE(179), 1, sym_hostbased_accepted_algorithms_value, - [7450] = 3, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(4745), 1, - aux_sym_pattern_token1, - STATE(62), 1, - sym_identity_agent_value, - [7460] = 3, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(4747), 1, - aux_sym_pattern_token1, - STATE(64), 1, - sym_hostname_value, - [7470] = 3, - ACTIONS(3747), 1, + [7593] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4707), 1, + ACTIONS(4380), 1, aux_sym_pattern_token1, - STATE(162), 1, + STATE(163), 1, sym_local_forward_value, - [7480] = 3, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(4373), 1, - aux_sym_pattern_token1, - STATE(118), 1, - sym_user_known_hosts_file_value, - [7490] = 3, - ACTIONS(3747), 1, + [7603] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4749), 1, + ACTIONS(4786), 1, aux_sym_host_token2, - ACTIONS(4751), 1, + ACTIONS(4788), 1, anon_sym_EQ, - [7500] = 3, - ACTIONS(3747), 1, + [7613] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4753), 1, + ACTIONS(4386), 1, aux_sym_pattern_token1, - STATE(176), 1, - sym_host_key_algorithms_value, - [7510] = 3, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(4713), 1, - aux_sym_pattern_token1, - STATE(163), 1, + STATE(164), 1, sym_local_command_value, - [7520] = 3, - ACTIONS(3747), 1, + [7623] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4790), 1, aux_sym_host_token2, - ACTIONS(4757), 1, + ACTIONS(4792), 1, anon_sym_EQ, - [7530] = 3, - ACTIONS(3747), 1, + [7633] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4759), 1, + ACTIONS(4794), 1, aux_sym_host_token2, - ACTIONS(4761), 1, + ACTIONS(4796), 1, anon_sym_EQ, - [7540] = 3, - ACTIONS(3747), 1, + [7643] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4763), 1, + ACTIONS(4444), 1, aux_sym_pattern_token1, - STATE(175), 1, - sym_host_key_alias_value, - [7550] = 3, - ACTIONS(3747), 1, + STATE(177), 1, + sym_host_key_algorithms_value, + [7653] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4715), 1, + ACTIONS(4392), 1, aux_sym_pattern_token1, - STATE(164), 1, + STATE(165), 1, sym_known_hosts_command_value, - [7560] = 3, - ACTIONS(3747), 1, + [7663] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4765), 1, + ACTIONS(4798), 1, aux_sym_host_token2, - ACTIONS(4767), 1, + ACTIONS(4800), 1, anon_sym_EQ, - [7570] = 3, - ACTIONS(3747), 1, + [7673] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4769), 1, + ACTIONS(4802), 1, aux_sym_host_token2, - ACTIONS(4771), 1, + ACTIONS(4804), 1, anon_sym_EQ, - [7580] = 3, - ACTIONS(3747), 1, + [7683] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4747), 1, + ACTIONS(4438), 1, aux_sym_pattern_token1, - STATE(174), 1, - sym_hostname_value, - [7590] = 3, - ACTIONS(3747), 1, + STATE(176), 1, + sym_host_key_alias_value, + [7693] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4719), 1, + ACTIONS(4398), 1, aux_sym_pattern_token1, - STATE(165), 1, + STATE(166), 1, sym_kex_algorithms_value, - [7600] = 3, - ACTIONS(3747), 1, + [7703] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4773), 1, + ACTIONS(4806), 1, aux_sym_host_token2, - ACTIONS(4775), 1, + ACTIONS(4808), 1, anon_sym_EQ, - [7610] = 3, - ACTIONS(3747), 1, + [7713] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4763), 1, - aux_sym_pattern_token1, - STATE(65), 1, - sym_host_key_alias_value, - [7620] = 3, - ACTIONS(3747), 1, + ACTIONS(4810), 1, + aux_sym_host_token2, + ACTIONS(4812), 1, + anon_sym_EQ, + [7723] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4753), 1, + ACTIONS(4432), 1, aux_sym_pattern_token1, - STATE(66), 1, - sym_host_key_algorithms_value, - [7630] = 3, - ACTIONS(3747), 1, + STATE(175), 1, + sym_hostname_value, + [7733] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4721), 1, + ACTIONS(4404), 1, aux_sym_pattern_token1, - STATE(166), 1, + STATE(167), 1, sym_kbd_interactive_devices_value, - [7640] = 3, - ACTIONS(3747), 1, + [7743] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4777), 1, + ACTIONS(4814), 1, aux_sym_host_token2, - ACTIONS(4779), 1, + ACTIONS(4816), 1, anon_sym_EQ, - [7650] = 3, - ACTIONS(3747), 1, + [7753] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4781), 1, + ACTIONS(4818), 1, aux_sym_host_token2, - ACTIONS(4783), 1, + ACTIONS(4820), 1, anon_sym_EQ, - [7660] = 3, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(4745), 1, - aux_sym_pattern_token1, - STATE(172), 1, - sym_identity_agent_value, - [7670] = 3, - ACTIONS(3747), 1, + [7763] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4785), 1, + ACTIONS(4822), 1, aux_sym_host_token2, - ACTIONS(4787), 1, + ACTIONS(4824), 1, anon_sym_EQ, - [7680] = 3, - ACTIONS(3747), 1, + [7773] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4743), 1, + ACTIONS(4410), 1, aux_sym_pattern_token1, - STATE(68), 1, - sym_hostbased_accepted_algorithms_value, - [7690] = 3, - ACTIONS(3747), 1, + STATE(170), 1, + sym_include_value, + [7783] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4727), 1, - aux_sym_pattern_token1, - STATE(70), 1, - sym_gssapi_kex_algorithms_value, - [7700] = 3, - ACTIONS(3747), 1, + ACTIONS(4826), 1, + aux_sym_host_token2, + ACTIONS(4828), 1, + anon_sym_EQ, + [7793] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4733), 1, + ACTIONS(4660), 1, aux_sym_pattern_token1, STATE(171), 1, - sym_identity_file_value, - [7710] = 3, - ACTIONS(3747), 1, + sym_ignore_unknown_value, + [7803] = 3, + ACTIONS(3790), 1, sym_comment, - ACTIONS(4789), 1, + ACTIONS(4830), 1, aux_sym_host_token2, - ACTIONS(4791), 1, + ACTIONS(4832), 1, anon_sym_EQ, - [7720] = 3, - ACTIONS(3747), 1, - sym_comment, - ACTIONS(4717), 1, - aux_sym_pattern_token1, - STATE(72), 1, - sym_gssapi_server_identity_value, - [7730] = 2, + [7813] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4793), 1, + ACTIONS(4834), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(776)] = 0, - [SMALL_STATE(777)] = 42, - [SMALL_STATE(778)] = 81, - [SMALL_STATE(779)] = 117, - [SMALL_STATE(780)] = 153, - [SMALL_STATE(781)] = 179, - [SMALL_STATE(782)] = 202, - [SMALL_STATE(783)] = 222, - [SMALL_STATE(784)] = 242, - [SMALL_STATE(785)] = 268, - [SMALL_STATE(786)] = 291, - [SMALL_STATE(787)] = 311, - [SMALL_STATE(788)] = 335, - [SMALL_STATE(789)] = 357, - [SMALL_STATE(790)] = 377, - [SMALL_STATE(791)] = 398, - [SMALL_STATE(792)] = 419, - [SMALL_STATE(793)] = 444, - [SMALL_STATE(794)] = 467, - [SMALL_STATE(795)] = 486, - [SMALL_STATE(796)] = 507, - [SMALL_STATE(797)] = 529, - [SMALL_STATE(798)] = 551, - [SMALL_STATE(799)] = 573, - [SMALL_STATE(800)] = 593, - [SMALL_STATE(801)] = 615, - [SMALL_STATE(802)] = 635, - [SMALL_STATE(803)] = 651, - [SMALL_STATE(804)] = 673, - [SMALL_STATE(805)] = 695, - [SMALL_STATE(806)] = 717, - [SMALL_STATE(807)] = 739, - [SMALL_STATE(808)] = 761, - [SMALL_STATE(809)] = 783, - [SMALL_STATE(810)] = 805, - [SMALL_STATE(811)] = 825, - [SMALL_STATE(812)] = 847, - [SMALL_STATE(813)] = 869, - [SMALL_STATE(814)] = 891, - [SMALL_STATE(815)] = 907, - [SMALL_STATE(816)] = 929, - [SMALL_STATE(817)] = 951, - [SMALL_STATE(818)] = 973, - [SMALL_STATE(819)] = 995, - [SMALL_STATE(820)] = 1017, - [SMALL_STATE(821)] = 1039, - [SMALL_STATE(822)] = 1057, - [SMALL_STATE(823)] = 1079, - [SMALL_STATE(824)] = 1101, - [SMALL_STATE(825)] = 1119, - [SMALL_STATE(826)] = 1137, - [SMALL_STATE(827)] = 1159, - [SMALL_STATE(828)] = 1177, - [SMALL_STATE(829)] = 1199, - [SMALL_STATE(830)] = 1221, - [SMALL_STATE(831)] = 1243, - [SMALL_STATE(832)] = 1265, - [SMALL_STATE(833)] = 1287, - [SMALL_STATE(834)] = 1309, - [SMALL_STATE(835)] = 1331, - [SMALL_STATE(836)] = 1353, - [SMALL_STATE(837)] = 1375, - [SMALL_STATE(838)] = 1397, - [SMALL_STATE(839)] = 1419, - [SMALL_STATE(840)] = 1436, - [SMALL_STATE(841)] = 1455, - [SMALL_STATE(842)] = 1472, - [SMALL_STATE(843)] = 1491, - [SMALL_STATE(844)] = 1510, - [SMALL_STATE(845)] = 1529, - [SMALL_STATE(846)] = 1548, - [SMALL_STATE(847)] = 1567, - [SMALL_STATE(848)] = 1584, - [SMALL_STATE(849)] = 1603, - [SMALL_STATE(850)] = 1620, - [SMALL_STATE(851)] = 1639, - [SMALL_STATE(852)] = 1658, - [SMALL_STATE(853)] = 1677, - [SMALL_STATE(854)] = 1696, - [SMALL_STATE(855)] = 1715, - [SMALL_STATE(856)] = 1734, - [SMALL_STATE(857)] = 1753, - [SMALL_STATE(858)] = 1772, - [SMALL_STATE(859)] = 1791, - [SMALL_STATE(860)] = 1810, - [SMALL_STATE(861)] = 1829, - [SMALL_STATE(862)] = 1848, - [SMALL_STATE(863)] = 1867, - [SMALL_STATE(864)] = 1886, - [SMALL_STATE(865)] = 1905, - [SMALL_STATE(866)] = 1924, - [SMALL_STATE(867)] = 1943, - [SMALL_STATE(868)] = 1962, - [SMALL_STATE(869)] = 1981, - [SMALL_STATE(870)] = 2000, - [SMALL_STATE(871)] = 2015, - [SMALL_STATE(872)] = 2034, - [SMALL_STATE(873)] = 2053, - [SMALL_STATE(874)] = 2072, - [SMALL_STATE(875)] = 2087, - [SMALL_STATE(876)] = 2106, - [SMALL_STATE(877)] = 2125, - [SMALL_STATE(878)] = 2144, - [SMALL_STATE(879)] = 2159, - [SMALL_STATE(880)] = 2178, - [SMALL_STATE(881)] = 2197, - [SMALL_STATE(882)] = 2212, - [SMALL_STATE(883)] = 2231, - [SMALL_STATE(884)] = 2247, - [SMALL_STATE(885)] = 2263, - [SMALL_STATE(886)] = 2279, - [SMALL_STATE(887)] = 2295, - [SMALL_STATE(888)] = 2311, - [SMALL_STATE(889)] = 2327, - [SMALL_STATE(890)] = 2343, - [SMALL_STATE(891)] = 2359, - [SMALL_STATE(892)] = 2375, - [SMALL_STATE(893)] = 2391, - [SMALL_STATE(894)] = 2405, - [SMALL_STATE(895)] = 2421, - [SMALL_STATE(896)] = 2437, - [SMALL_STATE(897)] = 2453, - [SMALL_STATE(898)] = 2469, - [SMALL_STATE(899)] = 2485, - [SMALL_STATE(900)] = 2501, - [SMALL_STATE(901)] = 2517, - [SMALL_STATE(902)] = 2533, - [SMALL_STATE(903)] = 2549, - [SMALL_STATE(904)] = 2565, - [SMALL_STATE(905)] = 2581, - [SMALL_STATE(906)] = 2597, - [SMALL_STATE(907)] = 2613, - [SMALL_STATE(908)] = 2629, - [SMALL_STATE(909)] = 2645, - [SMALL_STATE(910)] = 2661, - [SMALL_STATE(911)] = 2675, - [SMALL_STATE(912)] = 2691, - [SMALL_STATE(913)] = 2707, - [SMALL_STATE(914)] = 2723, - [SMALL_STATE(915)] = 2739, - [SMALL_STATE(916)] = 2755, - [SMALL_STATE(917)] = 2771, - [SMALL_STATE(918)] = 2787, - [SMALL_STATE(919)] = 2803, - [SMALL_STATE(920)] = 2819, - [SMALL_STATE(921)] = 2835, - [SMALL_STATE(922)] = 2851, - [SMALL_STATE(923)] = 2867, - [SMALL_STATE(924)] = 2883, - [SMALL_STATE(925)] = 2899, - [SMALL_STATE(926)] = 2915, - [SMALL_STATE(927)] = 2931, - [SMALL_STATE(928)] = 2949, - [SMALL_STATE(929)] = 2965, - [SMALL_STATE(930)] = 2981, - [SMALL_STATE(931)] = 2997, - [SMALL_STATE(932)] = 3013, - [SMALL_STATE(933)] = 3029, - [SMALL_STATE(934)] = 3043, - [SMALL_STATE(935)] = 3059, - [SMALL_STATE(936)] = 3075, - [SMALL_STATE(937)] = 3091, - [SMALL_STATE(938)] = 3111, - [SMALL_STATE(939)] = 3125, - [SMALL_STATE(940)] = 3141, - [SMALL_STATE(941)] = 3157, - [SMALL_STATE(942)] = 3173, - [SMALL_STATE(943)] = 3189, - [SMALL_STATE(944)] = 3205, - [SMALL_STATE(945)] = 3221, - [SMALL_STATE(946)] = 3237, - [SMALL_STATE(947)] = 3253, - [SMALL_STATE(948)] = 3269, - [SMALL_STATE(949)] = 3285, - [SMALL_STATE(950)] = 3301, - [SMALL_STATE(951)] = 3317, - [SMALL_STATE(952)] = 3333, - [SMALL_STATE(953)] = 3349, - [SMALL_STATE(954)] = 3365, - [SMALL_STATE(955)] = 3381, - [SMALL_STATE(956)] = 3397, - [SMALL_STATE(957)] = 3412, - [SMALL_STATE(958)] = 3431, - [SMALL_STATE(959)] = 3450, - [SMALL_STATE(960)] = 3467, - [SMALL_STATE(961)] = 3484, - [SMALL_STATE(962)] = 3497, - [SMALL_STATE(963)] = 3514, - [SMALL_STATE(964)] = 3531, - [SMALL_STATE(965)] = 3544, - [SMALL_STATE(966)] = 3560, - [SMALL_STATE(967)] = 3576, - [SMALL_STATE(968)] = 3592, - [SMALL_STATE(969)] = 3608, - [SMALL_STATE(970)] = 3624, - [SMALL_STATE(971)] = 3640, - [SMALL_STATE(972)] = 3656, - [SMALL_STATE(973)] = 3672, - [SMALL_STATE(974)] = 3688, - [SMALL_STATE(975)] = 3704, - [SMALL_STATE(976)] = 3720, - [SMALL_STATE(977)] = 3736, - [SMALL_STATE(978)] = 3752, - [SMALL_STATE(979)] = 3764, - [SMALL_STATE(980)] = 3780, - [SMALL_STATE(981)] = 3796, - [SMALL_STATE(982)] = 3812, - [SMALL_STATE(983)] = 3828, - [SMALL_STATE(984)] = 3844, - [SMALL_STATE(985)] = 3860, - [SMALL_STATE(986)] = 3872, - [SMALL_STATE(987)] = 3888, - [SMALL_STATE(988)] = 3904, - [SMALL_STATE(989)] = 3920, - [SMALL_STATE(990)] = 3936, - [SMALL_STATE(991)] = 3952, - [SMALL_STATE(992)] = 3968, - [SMALL_STATE(993)] = 3984, - [SMALL_STATE(994)] = 4000, - [SMALL_STATE(995)] = 4016, - [SMALL_STATE(996)] = 4032, - [SMALL_STATE(997)] = 4048, - [SMALL_STATE(998)] = 4064, - [SMALL_STATE(999)] = 4080, - [SMALL_STATE(1000)] = 4096, - [SMALL_STATE(1001)] = 4112, - [SMALL_STATE(1002)] = 4126, - [SMALL_STATE(1003)] = 4142, - [SMALL_STATE(1004)] = 4158, - [SMALL_STATE(1005)] = 4172, - [SMALL_STATE(1006)] = 4186, - [SMALL_STATE(1007)] = 4202, - [SMALL_STATE(1008)] = 4218, - [SMALL_STATE(1009)] = 4234, - [SMALL_STATE(1010)] = 4250, - [SMALL_STATE(1011)] = 4266, - [SMALL_STATE(1012)] = 4282, - [SMALL_STATE(1013)] = 4298, - [SMALL_STATE(1014)] = 4314, - [SMALL_STATE(1015)] = 4330, - [SMALL_STATE(1016)] = 4346, - [SMALL_STATE(1017)] = 4362, - [SMALL_STATE(1018)] = 4378, - [SMALL_STATE(1019)] = 4394, - [SMALL_STATE(1020)] = 4410, - [SMALL_STATE(1021)] = 4426, - [SMALL_STATE(1022)] = 4442, - [SMALL_STATE(1023)] = 4458, - [SMALL_STATE(1024)] = 4472, - [SMALL_STATE(1025)] = 4488, - [SMALL_STATE(1026)] = 4504, - [SMALL_STATE(1027)] = 4520, - [SMALL_STATE(1028)] = 4534, - [SMALL_STATE(1029)] = 4550, - [SMALL_STATE(1030)] = 4566, - [SMALL_STATE(1031)] = 4582, - [SMALL_STATE(1032)] = 4598, - [SMALL_STATE(1033)] = 4611, - [SMALL_STATE(1034)] = 4624, - [SMALL_STATE(1035)] = 4637, - [SMALL_STATE(1036)] = 4650, - [SMALL_STATE(1037)] = 4663, - [SMALL_STATE(1038)] = 4676, - [SMALL_STATE(1039)] = 4689, - [SMALL_STATE(1040)] = 4702, - [SMALL_STATE(1041)] = 4715, - [SMALL_STATE(1042)] = 4728, - [SMALL_STATE(1043)] = 4741, - [SMALL_STATE(1044)] = 4754, - [SMALL_STATE(1045)] = 4767, - [SMALL_STATE(1046)] = 4780, - [SMALL_STATE(1047)] = 4793, - [SMALL_STATE(1048)] = 4806, - [SMALL_STATE(1049)] = 4819, - [SMALL_STATE(1050)] = 4832, - [SMALL_STATE(1051)] = 4845, - [SMALL_STATE(1052)] = 4858, - [SMALL_STATE(1053)] = 4871, - [SMALL_STATE(1054)] = 4884, - [SMALL_STATE(1055)] = 4897, - [SMALL_STATE(1056)] = 4908, - [SMALL_STATE(1057)] = 4921, - [SMALL_STATE(1058)] = 4934, - [SMALL_STATE(1059)] = 4947, - [SMALL_STATE(1060)] = 4960, - [SMALL_STATE(1061)] = 4971, - [SMALL_STATE(1062)] = 4984, - [SMALL_STATE(1063)] = 4995, - [SMALL_STATE(1064)] = 5008, - [SMALL_STATE(1065)] = 5021, - [SMALL_STATE(1066)] = 5032, - [SMALL_STATE(1067)] = 5045, - [SMALL_STATE(1068)] = 5058, - [SMALL_STATE(1069)] = 5071, - [SMALL_STATE(1070)] = 5084, - [SMALL_STATE(1071)] = 5097, - [SMALL_STATE(1072)] = 5110, - [SMALL_STATE(1073)] = 5123, - [SMALL_STATE(1074)] = 5134, - [SMALL_STATE(1075)] = 5147, - [SMALL_STATE(1076)] = 5160, - [SMALL_STATE(1077)] = 5173, - [SMALL_STATE(1078)] = 5184, - [SMALL_STATE(1079)] = 5197, - [SMALL_STATE(1080)] = 5210, - [SMALL_STATE(1081)] = 5223, - [SMALL_STATE(1082)] = 5236, - [SMALL_STATE(1083)] = 5249, - [SMALL_STATE(1084)] = 5262, - [SMALL_STATE(1085)] = 5275, - [SMALL_STATE(1086)] = 5288, - [SMALL_STATE(1087)] = 5301, - [SMALL_STATE(1088)] = 5314, - [SMALL_STATE(1089)] = 5327, - [SMALL_STATE(1090)] = 5340, - [SMALL_STATE(1091)] = 5353, - [SMALL_STATE(1092)] = 5366, - [SMALL_STATE(1093)] = 5379, - [SMALL_STATE(1094)] = 5392, - [SMALL_STATE(1095)] = 5405, - [SMALL_STATE(1096)] = 5418, - [SMALL_STATE(1097)] = 5431, - [SMALL_STATE(1098)] = 5444, - [SMALL_STATE(1099)] = 5457, - [SMALL_STATE(1100)] = 5470, - [SMALL_STATE(1101)] = 5480, - [SMALL_STATE(1102)] = 5490, - [SMALL_STATE(1103)] = 5500, - [SMALL_STATE(1104)] = 5510, - [SMALL_STATE(1105)] = 5520, - [SMALL_STATE(1106)] = 5530, - [SMALL_STATE(1107)] = 5540, - [SMALL_STATE(1108)] = 5550, - [SMALL_STATE(1109)] = 5560, - [SMALL_STATE(1110)] = 5570, - [SMALL_STATE(1111)] = 5580, - [SMALL_STATE(1112)] = 5590, - [SMALL_STATE(1113)] = 5600, - [SMALL_STATE(1114)] = 5610, - [SMALL_STATE(1115)] = 5620, - [SMALL_STATE(1116)] = 5630, - [SMALL_STATE(1117)] = 5640, - [SMALL_STATE(1118)] = 5650, - [SMALL_STATE(1119)] = 5660, - [SMALL_STATE(1120)] = 5670, - [SMALL_STATE(1121)] = 5680, - [SMALL_STATE(1122)] = 5690, - [SMALL_STATE(1123)] = 5700, - [SMALL_STATE(1124)] = 5710, - [SMALL_STATE(1125)] = 5720, - [SMALL_STATE(1126)] = 5730, - [SMALL_STATE(1127)] = 5740, - [SMALL_STATE(1128)] = 5750, - [SMALL_STATE(1129)] = 5760, - [SMALL_STATE(1130)] = 5770, - [SMALL_STATE(1131)] = 5780, - [SMALL_STATE(1132)] = 5790, - [SMALL_STATE(1133)] = 5800, - [SMALL_STATE(1134)] = 5810, - [SMALL_STATE(1135)] = 5820, - [SMALL_STATE(1136)] = 5830, - [SMALL_STATE(1137)] = 5840, - [SMALL_STATE(1138)] = 5850, - [SMALL_STATE(1139)] = 5860, - [SMALL_STATE(1140)] = 5870, - [SMALL_STATE(1141)] = 5880, - [SMALL_STATE(1142)] = 5890, - [SMALL_STATE(1143)] = 5900, - [SMALL_STATE(1144)] = 5910, - [SMALL_STATE(1145)] = 5920, - [SMALL_STATE(1146)] = 5930, - [SMALL_STATE(1147)] = 5940, - [SMALL_STATE(1148)] = 5950, - [SMALL_STATE(1149)] = 5960, - [SMALL_STATE(1150)] = 5970, - [SMALL_STATE(1151)] = 5980, - [SMALL_STATE(1152)] = 5990, - [SMALL_STATE(1153)] = 6000, - [SMALL_STATE(1154)] = 6010, - [SMALL_STATE(1155)] = 6020, - [SMALL_STATE(1156)] = 6030, - [SMALL_STATE(1157)] = 6040, - [SMALL_STATE(1158)] = 6050, - [SMALL_STATE(1159)] = 6060, - [SMALL_STATE(1160)] = 6070, - [SMALL_STATE(1161)] = 6080, - [SMALL_STATE(1162)] = 6090, - [SMALL_STATE(1163)] = 6100, - [SMALL_STATE(1164)] = 6110, - [SMALL_STATE(1165)] = 6120, - [SMALL_STATE(1166)] = 6130, - [SMALL_STATE(1167)] = 6140, - [SMALL_STATE(1168)] = 6150, - [SMALL_STATE(1169)] = 6160, - [SMALL_STATE(1170)] = 6170, - [SMALL_STATE(1171)] = 6180, - [SMALL_STATE(1172)] = 6190, - [SMALL_STATE(1173)] = 6200, - [SMALL_STATE(1174)] = 6210, - [SMALL_STATE(1175)] = 6220, - [SMALL_STATE(1176)] = 6230, - [SMALL_STATE(1177)] = 6240, - [SMALL_STATE(1178)] = 6250, - [SMALL_STATE(1179)] = 6260, - [SMALL_STATE(1180)] = 6270, - [SMALL_STATE(1181)] = 6280, - [SMALL_STATE(1182)] = 6290, - [SMALL_STATE(1183)] = 6300, - [SMALL_STATE(1184)] = 6310, - [SMALL_STATE(1185)] = 6320, - [SMALL_STATE(1186)] = 6330, - [SMALL_STATE(1187)] = 6340, - [SMALL_STATE(1188)] = 6350, - [SMALL_STATE(1189)] = 6360, - [SMALL_STATE(1190)] = 6370, - [SMALL_STATE(1191)] = 6380, - [SMALL_STATE(1192)] = 6390, - [SMALL_STATE(1193)] = 6400, - [SMALL_STATE(1194)] = 6410, - [SMALL_STATE(1195)] = 6420, - [SMALL_STATE(1196)] = 6430, - [SMALL_STATE(1197)] = 6440, - [SMALL_STATE(1198)] = 6450, - [SMALL_STATE(1199)] = 6460, - [SMALL_STATE(1200)] = 6470, - [SMALL_STATE(1201)] = 6480, - [SMALL_STATE(1202)] = 6490, - [SMALL_STATE(1203)] = 6500, - [SMALL_STATE(1204)] = 6510, - [SMALL_STATE(1205)] = 6520, - [SMALL_STATE(1206)] = 6530, - [SMALL_STATE(1207)] = 6540, - [SMALL_STATE(1208)] = 6550, - [SMALL_STATE(1209)] = 6560, - [SMALL_STATE(1210)] = 6570, - [SMALL_STATE(1211)] = 6580, - [SMALL_STATE(1212)] = 6590, - [SMALL_STATE(1213)] = 6600, - [SMALL_STATE(1214)] = 6610, - [SMALL_STATE(1215)] = 6620, - [SMALL_STATE(1216)] = 6630, - [SMALL_STATE(1217)] = 6640, - [SMALL_STATE(1218)] = 6650, - [SMALL_STATE(1219)] = 6660, - [SMALL_STATE(1220)] = 6670, - [SMALL_STATE(1221)] = 6680, - [SMALL_STATE(1222)] = 6690, - [SMALL_STATE(1223)] = 6700, - [SMALL_STATE(1224)] = 6710, - [SMALL_STATE(1225)] = 6720, - [SMALL_STATE(1226)] = 6730, - [SMALL_STATE(1227)] = 6740, - [SMALL_STATE(1228)] = 6750, - [SMALL_STATE(1229)] = 6760, - [SMALL_STATE(1230)] = 6770, - [SMALL_STATE(1231)] = 6780, - [SMALL_STATE(1232)] = 6790, - [SMALL_STATE(1233)] = 6800, - [SMALL_STATE(1234)] = 6810, - [SMALL_STATE(1235)] = 6820, - [SMALL_STATE(1236)] = 6830, - [SMALL_STATE(1237)] = 6840, - [SMALL_STATE(1238)] = 6850, - [SMALL_STATE(1239)] = 6860, - [SMALL_STATE(1240)] = 6870, - [SMALL_STATE(1241)] = 6880, - [SMALL_STATE(1242)] = 6890, - [SMALL_STATE(1243)] = 6900, - [SMALL_STATE(1244)] = 6910, - [SMALL_STATE(1245)] = 6920, - [SMALL_STATE(1246)] = 6930, - [SMALL_STATE(1247)] = 6940, - [SMALL_STATE(1248)] = 6950, - [SMALL_STATE(1249)] = 6960, - [SMALL_STATE(1250)] = 6970, - [SMALL_STATE(1251)] = 6980, - [SMALL_STATE(1252)] = 6990, - [SMALL_STATE(1253)] = 7000, - [SMALL_STATE(1254)] = 7010, - [SMALL_STATE(1255)] = 7020, - [SMALL_STATE(1256)] = 7030, - [SMALL_STATE(1257)] = 7040, - [SMALL_STATE(1258)] = 7050, - [SMALL_STATE(1259)] = 7060, - [SMALL_STATE(1260)] = 7070, - [SMALL_STATE(1261)] = 7080, - [SMALL_STATE(1262)] = 7090, - [SMALL_STATE(1263)] = 7100, - [SMALL_STATE(1264)] = 7110, - [SMALL_STATE(1265)] = 7120, - [SMALL_STATE(1266)] = 7130, - [SMALL_STATE(1267)] = 7140, - [SMALL_STATE(1268)] = 7150, - [SMALL_STATE(1269)] = 7160, - [SMALL_STATE(1270)] = 7170, - [SMALL_STATE(1271)] = 7180, - [SMALL_STATE(1272)] = 7190, - [SMALL_STATE(1273)] = 7200, - [SMALL_STATE(1274)] = 7210, - [SMALL_STATE(1275)] = 7220, - [SMALL_STATE(1276)] = 7230, - [SMALL_STATE(1277)] = 7240, - [SMALL_STATE(1278)] = 7250, - [SMALL_STATE(1279)] = 7260, - [SMALL_STATE(1280)] = 7270, - [SMALL_STATE(1281)] = 7280, - [SMALL_STATE(1282)] = 7290, - [SMALL_STATE(1283)] = 7300, - [SMALL_STATE(1284)] = 7310, - [SMALL_STATE(1285)] = 7320, - [SMALL_STATE(1286)] = 7330, - [SMALL_STATE(1287)] = 7340, - [SMALL_STATE(1288)] = 7350, - [SMALL_STATE(1289)] = 7360, - [SMALL_STATE(1290)] = 7370, - [SMALL_STATE(1291)] = 7380, - [SMALL_STATE(1292)] = 7390, - [SMALL_STATE(1293)] = 7400, - [SMALL_STATE(1294)] = 7410, - [SMALL_STATE(1295)] = 7420, - [SMALL_STATE(1296)] = 7430, - [SMALL_STATE(1297)] = 7440, - [SMALL_STATE(1298)] = 7450, - [SMALL_STATE(1299)] = 7460, - [SMALL_STATE(1300)] = 7470, - [SMALL_STATE(1301)] = 7480, - [SMALL_STATE(1302)] = 7490, - [SMALL_STATE(1303)] = 7500, - [SMALL_STATE(1304)] = 7510, - [SMALL_STATE(1305)] = 7520, - [SMALL_STATE(1306)] = 7530, - [SMALL_STATE(1307)] = 7540, - [SMALL_STATE(1308)] = 7550, - [SMALL_STATE(1309)] = 7560, - [SMALL_STATE(1310)] = 7570, - [SMALL_STATE(1311)] = 7580, - [SMALL_STATE(1312)] = 7590, - [SMALL_STATE(1313)] = 7600, - [SMALL_STATE(1314)] = 7610, - [SMALL_STATE(1315)] = 7620, - [SMALL_STATE(1316)] = 7630, - [SMALL_STATE(1317)] = 7640, - [SMALL_STATE(1318)] = 7650, - [SMALL_STATE(1319)] = 7660, - [SMALL_STATE(1320)] = 7670, - [SMALL_STATE(1321)] = 7680, - [SMALL_STATE(1322)] = 7690, - [SMALL_STATE(1323)] = 7700, - [SMALL_STATE(1324)] = 7710, - [SMALL_STATE(1325)] = 7720, - [SMALL_STATE(1326)] = 7730, + [SMALL_STATE(783)] = 0, + [SMALL_STATE(784)] = 42, + [SMALL_STATE(785)] = 81, + [SMALL_STATE(786)] = 117, + [SMALL_STATE(787)] = 153, + [SMALL_STATE(788)] = 179, + [SMALL_STATE(789)] = 202, + [SMALL_STATE(790)] = 228, + [SMALL_STATE(791)] = 248, + [SMALL_STATE(792)] = 268, + [SMALL_STATE(793)] = 291, + [SMALL_STATE(794)] = 311, + [SMALL_STATE(795)] = 331, + [SMALL_STATE(796)] = 353, + [SMALL_STATE(797)] = 377, + [SMALL_STATE(798)] = 398, + [SMALL_STATE(799)] = 419, + [SMALL_STATE(800)] = 442, + [SMALL_STATE(801)] = 467, + [SMALL_STATE(802)] = 486, + [SMALL_STATE(803)] = 507, + [SMALL_STATE(804)] = 529, + [SMALL_STATE(805)] = 551, + [SMALL_STATE(806)] = 573, + [SMALL_STATE(807)] = 595, + [SMALL_STATE(808)] = 611, + [SMALL_STATE(809)] = 633, + [SMALL_STATE(810)] = 655, + [SMALL_STATE(811)] = 677, + [SMALL_STATE(812)] = 695, + [SMALL_STATE(813)] = 711, + [SMALL_STATE(814)] = 729, + [SMALL_STATE(815)] = 751, + [SMALL_STATE(816)] = 773, + [SMALL_STATE(817)] = 795, + [SMALL_STATE(818)] = 817, + [SMALL_STATE(819)] = 837, + [SMALL_STATE(820)] = 859, + [SMALL_STATE(821)] = 881, + [SMALL_STATE(822)] = 903, + [SMALL_STATE(823)] = 925, + [SMALL_STATE(824)] = 947, + [SMALL_STATE(825)] = 969, + [SMALL_STATE(826)] = 991, + [SMALL_STATE(827)] = 1013, + [SMALL_STATE(828)] = 1035, + [SMALL_STATE(829)] = 1053, + [SMALL_STATE(830)] = 1073, + [SMALL_STATE(831)] = 1095, + [SMALL_STATE(832)] = 1117, + [SMALL_STATE(833)] = 1139, + [SMALL_STATE(834)] = 1161, + [SMALL_STATE(835)] = 1183, + [SMALL_STATE(836)] = 1203, + [SMALL_STATE(837)] = 1225, + [SMALL_STATE(838)] = 1247, + [SMALL_STATE(839)] = 1269, + [SMALL_STATE(840)] = 1291, + [SMALL_STATE(841)] = 1313, + [SMALL_STATE(842)] = 1335, + [SMALL_STATE(843)] = 1357, + [SMALL_STATE(844)] = 1379, + [SMALL_STATE(845)] = 1397, + [SMALL_STATE(846)] = 1419, + [SMALL_STATE(847)] = 1441, + [SMALL_STATE(848)] = 1460, + [SMALL_STATE(849)] = 1475, + [SMALL_STATE(850)] = 1494, + [SMALL_STATE(851)] = 1513, + [SMALL_STATE(852)] = 1532, + [SMALL_STATE(853)] = 1551, + [SMALL_STATE(854)] = 1570, + [SMALL_STATE(855)] = 1589, + [SMALL_STATE(856)] = 1608, + [SMALL_STATE(857)] = 1627, + [SMALL_STATE(858)] = 1646, + [SMALL_STATE(859)] = 1665, + [SMALL_STATE(860)] = 1684, + [SMALL_STATE(861)] = 1703, + [SMALL_STATE(862)] = 1722, + [SMALL_STATE(863)] = 1741, + [SMALL_STATE(864)] = 1760, + [SMALL_STATE(865)] = 1779, + [SMALL_STATE(866)] = 1798, + [SMALL_STATE(867)] = 1817, + [SMALL_STATE(868)] = 1832, + [SMALL_STATE(869)] = 1851, + [SMALL_STATE(870)] = 1870, + [SMALL_STATE(871)] = 1885, + [SMALL_STATE(872)] = 1904, + [SMALL_STATE(873)] = 1923, + [SMALL_STATE(874)] = 1942, + [SMALL_STATE(875)] = 1961, + [SMALL_STATE(876)] = 1980, + [SMALL_STATE(877)] = 1997, + [SMALL_STATE(878)] = 2016, + [SMALL_STATE(879)] = 2035, + [SMALL_STATE(880)] = 2054, + [SMALL_STATE(881)] = 2073, + [SMALL_STATE(882)] = 2092, + [SMALL_STATE(883)] = 2111, + [SMALL_STATE(884)] = 2130, + [SMALL_STATE(885)] = 2147, + [SMALL_STATE(886)] = 2164, + [SMALL_STATE(887)] = 2181, + [SMALL_STATE(888)] = 2200, + [SMALL_STATE(889)] = 2219, + [SMALL_STATE(890)] = 2238, + [SMALL_STATE(891)] = 2253, + [SMALL_STATE(892)] = 2272, + [SMALL_STATE(893)] = 2288, + [SMALL_STATE(894)] = 2304, + [SMALL_STATE(895)] = 2320, + [SMALL_STATE(896)] = 2336, + [SMALL_STATE(897)] = 2352, + [SMALL_STATE(898)] = 2368, + [SMALL_STATE(899)] = 2384, + [SMALL_STATE(900)] = 2400, + [SMALL_STATE(901)] = 2416, + [SMALL_STATE(902)] = 2432, + [SMALL_STATE(903)] = 2448, + [SMALL_STATE(904)] = 2464, + [SMALL_STATE(905)] = 2480, + [SMALL_STATE(906)] = 2496, + [SMALL_STATE(907)] = 2512, + [SMALL_STATE(908)] = 2528, + [SMALL_STATE(909)] = 2544, + [SMALL_STATE(910)] = 2560, + [SMALL_STATE(911)] = 2576, + [SMALL_STATE(912)] = 2590, + [SMALL_STATE(913)] = 2606, + [SMALL_STATE(914)] = 2622, + [SMALL_STATE(915)] = 2640, + [SMALL_STATE(916)] = 2656, + [SMALL_STATE(917)] = 2672, + [SMALL_STATE(918)] = 2688, + [SMALL_STATE(919)] = 2704, + [SMALL_STATE(920)] = 2720, + [SMALL_STATE(921)] = 2736, + [SMALL_STATE(922)] = 2750, + [SMALL_STATE(923)] = 2766, + [SMALL_STATE(924)] = 2782, + [SMALL_STATE(925)] = 2798, + [SMALL_STATE(926)] = 2814, + [SMALL_STATE(927)] = 2830, + [SMALL_STATE(928)] = 2846, + [SMALL_STATE(929)] = 2862, + [SMALL_STATE(930)] = 2878, + [SMALL_STATE(931)] = 2894, + [SMALL_STATE(932)] = 2910, + [SMALL_STATE(933)] = 2926, + [SMALL_STATE(934)] = 2942, + [SMALL_STATE(935)] = 2958, + [SMALL_STATE(936)] = 2974, + [SMALL_STATE(937)] = 2990, + [SMALL_STATE(938)] = 3006, + [SMALL_STATE(939)] = 3022, + [SMALL_STATE(940)] = 3038, + [SMALL_STATE(941)] = 3054, + [SMALL_STATE(942)] = 3070, + [SMALL_STATE(943)] = 3086, + [SMALL_STATE(944)] = 3106, + [SMALL_STATE(945)] = 3120, + [SMALL_STATE(946)] = 3136, + [SMALL_STATE(947)] = 3152, + [SMALL_STATE(948)] = 3168, + [SMALL_STATE(949)] = 3184, + [SMALL_STATE(950)] = 3200, + [SMALL_STATE(951)] = 3216, + [SMALL_STATE(952)] = 3232, + [SMALL_STATE(953)] = 3248, + [SMALL_STATE(954)] = 3264, + [SMALL_STATE(955)] = 3280, + [SMALL_STATE(956)] = 3296, + [SMALL_STATE(957)] = 3310, + [SMALL_STATE(958)] = 3326, + [SMALL_STATE(959)] = 3342, + [SMALL_STATE(960)] = 3358, + [SMALL_STATE(961)] = 3374, + [SMALL_STATE(962)] = 3390, + [SMALL_STATE(963)] = 3406, + [SMALL_STATE(964)] = 3422, + [SMALL_STATE(965)] = 3438, + [SMALL_STATE(966)] = 3454, + [SMALL_STATE(967)] = 3470, + [SMALL_STATE(968)] = 3483, + [SMALL_STATE(969)] = 3500, + [SMALL_STATE(970)] = 3517, + [SMALL_STATE(971)] = 3530, + [SMALL_STATE(972)] = 3547, + [SMALL_STATE(973)] = 3566, + [SMALL_STATE(974)] = 3581, + [SMALL_STATE(975)] = 3600, + [SMALL_STATE(976)] = 3617, + [SMALL_STATE(977)] = 3633, + [SMALL_STATE(978)] = 3649, + [SMALL_STATE(979)] = 3665, + [SMALL_STATE(980)] = 3677, + [SMALL_STATE(981)] = 3693, + [SMALL_STATE(982)] = 3709, + [SMALL_STATE(983)] = 3725, + [SMALL_STATE(984)] = 3741, + [SMALL_STATE(985)] = 3757, + [SMALL_STATE(986)] = 3773, + [SMALL_STATE(987)] = 3789, + [SMALL_STATE(988)] = 3805, + [SMALL_STATE(989)] = 3817, + [SMALL_STATE(990)] = 3833, + [SMALL_STATE(991)] = 3847, + [SMALL_STATE(992)] = 3863, + [SMALL_STATE(993)] = 3879, + [SMALL_STATE(994)] = 3895, + [SMALL_STATE(995)] = 3911, + [SMALL_STATE(996)] = 3927, + [SMALL_STATE(997)] = 3943, + [SMALL_STATE(998)] = 3959, + [SMALL_STATE(999)] = 3975, + [SMALL_STATE(1000)] = 3989, + [SMALL_STATE(1001)] = 4005, + [SMALL_STATE(1002)] = 4021, + [SMALL_STATE(1003)] = 4037, + [SMALL_STATE(1004)] = 4053, + [SMALL_STATE(1005)] = 4069, + [SMALL_STATE(1006)] = 4085, + [SMALL_STATE(1007)] = 4101, + [SMALL_STATE(1008)] = 4117, + [SMALL_STATE(1009)] = 4133, + [SMALL_STATE(1010)] = 4149, + [SMALL_STATE(1011)] = 4165, + [SMALL_STATE(1012)] = 4181, + [SMALL_STATE(1013)] = 4197, + [SMALL_STATE(1014)] = 4211, + [SMALL_STATE(1015)] = 4227, + [SMALL_STATE(1016)] = 4243, + [SMALL_STATE(1017)] = 4259, + [SMALL_STATE(1018)] = 4275, + [SMALL_STATE(1019)] = 4291, + [SMALL_STATE(1020)] = 4305, + [SMALL_STATE(1021)] = 4321, + [SMALL_STATE(1022)] = 4337, + [SMALL_STATE(1023)] = 4353, + [SMALL_STATE(1024)] = 4369, + [SMALL_STATE(1025)] = 4385, + [SMALL_STATE(1026)] = 4401, + [SMALL_STATE(1027)] = 4417, + [SMALL_STATE(1028)] = 4433, + [SMALL_STATE(1029)] = 4449, + [SMALL_STATE(1030)] = 4465, + [SMALL_STATE(1031)] = 4481, + [SMALL_STATE(1032)] = 4497, + [SMALL_STATE(1033)] = 4511, + [SMALL_STATE(1034)] = 4527, + [SMALL_STATE(1035)] = 4543, + [SMALL_STATE(1036)] = 4559, + [SMALL_STATE(1037)] = 4575, + [SMALL_STATE(1038)] = 4591, + [SMALL_STATE(1039)] = 4607, + [SMALL_STATE(1040)] = 4623, + [SMALL_STATE(1041)] = 4639, + [SMALL_STATE(1042)] = 4655, + [SMALL_STATE(1043)] = 4671, + [SMALL_STATE(1044)] = 4684, + [SMALL_STATE(1045)] = 4695, + [SMALL_STATE(1046)] = 4708, + [SMALL_STATE(1047)] = 4721, + [SMALL_STATE(1048)] = 4734, + [SMALL_STATE(1049)] = 4747, + [SMALL_STATE(1050)] = 4760, + [SMALL_STATE(1051)] = 4773, + [SMALL_STATE(1052)] = 4786, + [SMALL_STATE(1053)] = 4799, + [SMALL_STATE(1054)] = 4812, + [SMALL_STATE(1055)] = 4825, + [SMALL_STATE(1056)] = 4838, + [SMALL_STATE(1057)] = 4851, + [SMALL_STATE(1058)] = 4864, + [SMALL_STATE(1059)] = 4877, + [SMALL_STATE(1060)] = 4890, + [SMALL_STATE(1061)] = 4903, + [SMALL_STATE(1062)] = 4916, + [SMALL_STATE(1063)] = 4929, + [SMALL_STATE(1064)] = 4942, + [SMALL_STATE(1065)] = 4955, + [SMALL_STATE(1066)] = 4968, + [SMALL_STATE(1067)] = 4981, + [SMALL_STATE(1068)] = 4994, + [SMALL_STATE(1069)] = 5005, + [SMALL_STATE(1070)] = 5018, + [SMALL_STATE(1071)] = 5031, + [SMALL_STATE(1072)] = 5044, + [SMALL_STATE(1073)] = 5057, + [SMALL_STATE(1074)] = 5070, + [SMALL_STATE(1075)] = 5083, + [SMALL_STATE(1076)] = 5094, + [SMALL_STATE(1077)] = 5107, + [SMALL_STATE(1078)] = 5118, + [SMALL_STATE(1079)] = 5131, + [SMALL_STATE(1080)] = 5144, + [SMALL_STATE(1081)] = 5157, + [SMALL_STATE(1082)] = 5170, + [SMALL_STATE(1083)] = 5183, + [SMALL_STATE(1084)] = 5196, + [SMALL_STATE(1085)] = 5209, + [SMALL_STATE(1086)] = 5222, + [SMALL_STATE(1087)] = 5235, + [SMALL_STATE(1088)] = 5248, + [SMALL_STATE(1089)] = 5261, + [SMALL_STATE(1090)] = 5274, + [SMALL_STATE(1091)] = 5287, + [SMALL_STATE(1092)] = 5300, + [SMALL_STATE(1093)] = 5313, + [SMALL_STATE(1094)] = 5326, + [SMALL_STATE(1095)] = 5339, + [SMALL_STATE(1096)] = 5352, + [SMALL_STATE(1097)] = 5365, + [SMALL_STATE(1098)] = 5378, + [SMALL_STATE(1099)] = 5391, + [SMALL_STATE(1100)] = 5404, + [SMALL_STATE(1101)] = 5417, + [SMALL_STATE(1102)] = 5430, + [SMALL_STATE(1103)] = 5443, + [SMALL_STATE(1104)] = 5456, + [SMALL_STATE(1105)] = 5469, + [SMALL_STATE(1106)] = 5482, + [SMALL_STATE(1107)] = 5495, + [SMALL_STATE(1108)] = 5508, + [SMALL_STATE(1109)] = 5521, + [SMALL_STATE(1110)] = 5532, + [SMALL_STATE(1111)] = 5543, + [SMALL_STATE(1112)] = 5553, + [SMALL_STATE(1113)] = 5563, + [SMALL_STATE(1114)] = 5573, + [SMALL_STATE(1115)] = 5583, + [SMALL_STATE(1116)] = 5593, + [SMALL_STATE(1117)] = 5603, + [SMALL_STATE(1118)] = 5613, + [SMALL_STATE(1119)] = 5623, + [SMALL_STATE(1120)] = 5633, + [SMALL_STATE(1121)] = 5643, + [SMALL_STATE(1122)] = 5653, + [SMALL_STATE(1123)] = 5663, + [SMALL_STATE(1124)] = 5673, + [SMALL_STATE(1125)] = 5683, + [SMALL_STATE(1126)] = 5693, + [SMALL_STATE(1127)] = 5703, + [SMALL_STATE(1128)] = 5713, + [SMALL_STATE(1129)] = 5723, + [SMALL_STATE(1130)] = 5733, + [SMALL_STATE(1131)] = 5743, + [SMALL_STATE(1132)] = 5753, + [SMALL_STATE(1133)] = 5763, + [SMALL_STATE(1134)] = 5773, + [SMALL_STATE(1135)] = 5783, + [SMALL_STATE(1136)] = 5793, + [SMALL_STATE(1137)] = 5803, + [SMALL_STATE(1138)] = 5813, + [SMALL_STATE(1139)] = 5823, + [SMALL_STATE(1140)] = 5833, + [SMALL_STATE(1141)] = 5843, + [SMALL_STATE(1142)] = 5853, + [SMALL_STATE(1143)] = 5863, + [SMALL_STATE(1144)] = 5873, + [SMALL_STATE(1145)] = 5883, + [SMALL_STATE(1146)] = 5893, + [SMALL_STATE(1147)] = 5903, + [SMALL_STATE(1148)] = 5913, + [SMALL_STATE(1149)] = 5923, + [SMALL_STATE(1150)] = 5933, + [SMALL_STATE(1151)] = 5943, + [SMALL_STATE(1152)] = 5953, + [SMALL_STATE(1153)] = 5963, + [SMALL_STATE(1154)] = 5973, + [SMALL_STATE(1155)] = 5983, + [SMALL_STATE(1156)] = 5993, + [SMALL_STATE(1157)] = 6003, + [SMALL_STATE(1158)] = 6013, + [SMALL_STATE(1159)] = 6023, + [SMALL_STATE(1160)] = 6033, + [SMALL_STATE(1161)] = 6043, + [SMALL_STATE(1162)] = 6053, + [SMALL_STATE(1163)] = 6063, + [SMALL_STATE(1164)] = 6073, + [SMALL_STATE(1165)] = 6083, + [SMALL_STATE(1166)] = 6093, + [SMALL_STATE(1167)] = 6103, + [SMALL_STATE(1168)] = 6113, + [SMALL_STATE(1169)] = 6123, + [SMALL_STATE(1170)] = 6133, + [SMALL_STATE(1171)] = 6143, + [SMALL_STATE(1172)] = 6153, + [SMALL_STATE(1173)] = 6163, + [SMALL_STATE(1174)] = 6173, + [SMALL_STATE(1175)] = 6183, + [SMALL_STATE(1176)] = 6193, + [SMALL_STATE(1177)] = 6203, + [SMALL_STATE(1178)] = 6213, + [SMALL_STATE(1179)] = 6223, + [SMALL_STATE(1180)] = 6233, + [SMALL_STATE(1181)] = 6243, + [SMALL_STATE(1182)] = 6253, + [SMALL_STATE(1183)] = 6263, + [SMALL_STATE(1184)] = 6273, + [SMALL_STATE(1185)] = 6283, + [SMALL_STATE(1186)] = 6293, + [SMALL_STATE(1187)] = 6303, + [SMALL_STATE(1188)] = 6313, + [SMALL_STATE(1189)] = 6323, + [SMALL_STATE(1190)] = 6333, + [SMALL_STATE(1191)] = 6343, + [SMALL_STATE(1192)] = 6353, + [SMALL_STATE(1193)] = 6363, + [SMALL_STATE(1194)] = 6373, + [SMALL_STATE(1195)] = 6383, + [SMALL_STATE(1196)] = 6393, + [SMALL_STATE(1197)] = 6403, + [SMALL_STATE(1198)] = 6413, + [SMALL_STATE(1199)] = 6423, + [SMALL_STATE(1200)] = 6433, + [SMALL_STATE(1201)] = 6443, + [SMALL_STATE(1202)] = 6453, + [SMALL_STATE(1203)] = 6463, + [SMALL_STATE(1204)] = 6473, + [SMALL_STATE(1205)] = 6483, + [SMALL_STATE(1206)] = 6493, + [SMALL_STATE(1207)] = 6503, + [SMALL_STATE(1208)] = 6513, + [SMALL_STATE(1209)] = 6523, + [SMALL_STATE(1210)] = 6533, + [SMALL_STATE(1211)] = 6543, + [SMALL_STATE(1212)] = 6553, + [SMALL_STATE(1213)] = 6563, + [SMALL_STATE(1214)] = 6573, + [SMALL_STATE(1215)] = 6583, + [SMALL_STATE(1216)] = 6593, + [SMALL_STATE(1217)] = 6603, + [SMALL_STATE(1218)] = 6613, + [SMALL_STATE(1219)] = 6623, + [SMALL_STATE(1220)] = 6633, + [SMALL_STATE(1221)] = 6643, + [SMALL_STATE(1222)] = 6653, + [SMALL_STATE(1223)] = 6663, + [SMALL_STATE(1224)] = 6673, + [SMALL_STATE(1225)] = 6683, + [SMALL_STATE(1226)] = 6693, + [SMALL_STATE(1227)] = 6703, + [SMALL_STATE(1228)] = 6713, + [SMALL_STATE(1229)] = 6723, + [SMALL_STATE(1230)] = 6733, + [SMALL_STATE(1231)] = 6743, + [SMALL_STATE(1232)] = 6753, + [SMALL_STATE(1233)] = 6763, + [SMALL_STATE(1234)] = 6773, + [SMALL_STATE(1235)] = 6783, + [SMALL_STATE(1236)] = 6793, + [SMALL_STATE(1237)] = 6803, + [SMALL_STATE(1238)] = 6813, + [SMALL_STATE(1239)] = 6823, + [SMALL_STATE(1240)] = 6833, + [SMALL_STATE(1241)] = 6843, + [SMALL_STATE(1242)] = 6853, + [SMALL_STATE(1243)] = 6863, + [SMALL_STATE(1244)] = 6873, + [SMALL_STATE(1245)] = 6883, + [SMALL_STATE(1246)] = 6893, + [SMALL_STATE(1247)] = 6903, + [SMALL_STATE(1248)] = 6913, + [SMALL_STATE(1249)] = 6923, + [SMALL_STATE(1250)] = 6933, + [SMALL_STATE(1251)] = 6943, + [SMALL_STATE(1252)] = 6953, + [SMALL_STATE(1253)] = 6963, + [SMALL_STATE(1254)] = 6973, + [SMALL_STATE(1255)] = 6983, + [SMALL_STATE(1256)] = 6993, + [SMALL_STATE(1257)] = 7003, + [SMALL_STATE(1258)] = 7013, + [SMALL_STATE(1259)] = 7023, + [SMALL_STATE(1260)] = 7033, + [SMALL_STATE(1261)] = 7043, + [SMALL_STATE(1262)] = 7053, + [SMALL_STATE(1263)] = 7063, + [SMALL_STATE(1264)] = 7073, + [SMALL_STATE(1265)] = 7083, + [SMALL_STATE(1266)] = 7093, + [SMALL_STATE(1267)] = 7103, + [SMALL_STATE(1268)] = 7113, + [SMALL_STATE(1269)] = 7123, + [SMALL_STATE(1270)] = 7133, + [SMALL_STATE(1271)] = 7143, + [SMALL_STATE(1272)] = 7153, + [SMALL_STATE(1273)] = 7163, + [SMALL_STATE(1274)] = 7173, + [SMALL_STATE(1275)] = 7183, + [SMALL_STATE(1276)] = 7193, + [SMALL_STATE(1277)] = 7203, + [SMALL_STATE(1278)] = 7213, + [SMALL_STATE(1279)] = 7223, + [SMALL_STATE(1280)] = 7233, + [SMALL_STATE(1281)] = 7243, + [SMALL_STATE(1282)] = 7253, + [SMALL_STATE(1283)] = 7263, + [SMALL_STATE(1284)] = 7273, + [SMALL_STATE(1285)] = 7283, + [SMALL_STATE(1286)] = 7293, + [SMALL_STATE(1287)] = 7303, + [SMALL_STATE(1288)] = 7313, + [SMALL_STATE(1289)] = 7323, + [SMALL_STATE(1290)] = 7333, + [SMALL_STATE(1291)] = 7343, + [SMALL_STATE(1292)] = 7353, + [SMALL_STATE(1293)] = 7363, + [SMALL_STATE(1294)] = 7373, + [SMALL_STATE(1295)] = 7383, + [SMALL_STATE(1296)] = 7393, + [SMALL_STATE(1297)] = 7403, + [SMALL_STATE(1298)] = 7413, + [SMALL_STATE(1299)] = 7423, + [SMALL_STATE(1300)] = 7433, + [SMALL_STATE(1301)] = 7443, + [SMALL_STATE(1302)] = 7453, + [SMALL_STATE(1303)] = 7463, + [SMALL_STATE(1304)] = 7473, + [SMALL_STATE(1305)] = 7483, + [SMALL_STATE(1306)] = 7493, + [SMALL_STATE(1307)] = 7503, + [SMALL_STATE(1308)] = 7513, + [SMALL_STATE(1309)] = 7523, + [SMALL_STATE(1310)] = 7533, + [SMALL_STATE(1311)] = 7543, + [SMALL_STATE(1312)] = 7553, + [SMALL_STATE(1313)] = 7563, + [SMALL_STATE(1314)] = 7573, + [SMALL_STATE(1315)] = 7583, + [SMALL_STATE(1316)] = 7593, + [SMALL_STATE(1317)] = 7603, + [SMALL_STATE(1318)] = 7613, + [SMALL_STATE(1319)] = 7623, + [SMALL_STATE(1320)] = 7633, + [SMALL_STATE(1321)] = 7643, + [SMALL_STATE(1322)] = 7653, + [SMALL_STATE(1323)] = 7663, + [SMALL_STATE(1324)] = 7673, + [SMALL_STATE(1325)] = 7683, + [SMALL_STATE(1326)] = 7693, + [SMALL_STATE(1327)] = 7703, + [SMALL_STATE(1328)] = 7713, + [SMALL_STATE(1329)] = 7723, + [SMALL_STATE(1330)] = 7733, + [SMALL_STATE(1331)] = 7743, + [SMALL_STATE(1332)] = 7753, + [SMALL_STATE(1333)] = 7763, + [SMALL_STATE(1334)] = 7773, + [SMALL_STATE(1335)] = 7783, + [SMALL_STATE(1336)] = 7793, + [SMALL_STATE(1337)] = 7803, + [SMALL_STATE(1338)] = 7813, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -108250,2345 +110029,2365 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_client_config, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_client_config, 1), - [229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1178), - [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1215), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1101), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1211), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1209), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1207), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1205), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1203), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1201), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1199), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1197), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1195), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1193), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1191), - [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1189), - [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1187), - [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1185), - [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1183), - [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1181), - [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1100), - [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1177), - [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1175), - [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1173), - [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1171), - [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1169), - [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1167), - [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1165), - [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1163), - [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1161), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1159), - [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1157), - [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1155), - [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1153), - [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1152), - [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1150), - [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1148), - [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1146), - [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1144), - [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1143), - [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1141), - [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1140), - [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1139), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1137), - [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1135), - [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1133), - [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1131), - [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1129), - [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1127), - [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1125), - [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1123), - [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1121), - [384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1120), - [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1118), - [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1116), - [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1114), - [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1113), - [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1111), - [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1109), - [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1107), - [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1106), - [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1104), - [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1102), - [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1170), - [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1176), - [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1156), - [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1184), - [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1192), - [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1200), - [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1208), - [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1219), - [441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1223), - [444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1227), - [447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1235), - [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1236), - [453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1242), - [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1247), - [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1251), - [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1255), - [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1260), - [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1264), - [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1269), - [474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1271), - [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1278), - [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1286), - [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1291), - [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1295), - [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1296), - [492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1302), - [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1305), - [498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1306), - [501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1309), - [504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1310), - [507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1313), - [510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1317), - [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1318), - [516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1320), - [519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1324), - [522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1198), - [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1259), - [528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1263), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1221), - [534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1206), - [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1179), - [540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1213), - [543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1103), - [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1108), - [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1110), - [552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1115), - [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1117), - [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1124), - [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ignore_unknown, 3), - [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ignore_unknown, 3), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xauth_location, 5), - [569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xauth_location, 5), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_host_key, 5), - [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visual_host_key, 5), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verify_host_key_dns, 5), - [581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verify_host_key_dns, 5), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_known_hosts_file, 5), - [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_known_hosts_file, 5), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user, 5), - [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user, 5), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_roaming, 5), - [599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_roaming, 5), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_keychain, 5), - [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_keychain, 5), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_host_keys, 5), - [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_host_keys, 5), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel_device, 5), - [617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel_device, 5), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel, 5), - [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel, 5), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keep_alive, 5), - [629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keep_alive, 5), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tcp_keep_alive, 5), - [635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tcp_keep_alive, 5), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syslog_facility, 5), - [641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syslog_facility, 5), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strict_host_key_checking, 5), - [647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strict_host_key_checking, 5), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_unlink, 5), - [653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_unlink, 5), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_mask, 5), - [659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_mask, 5), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stdin_null, 5), - [665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stdin_null, 5), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_env, 5), - [671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_env, 5), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_session_type, 5), - [677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_session_type, 5), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_interval, 5), - [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_interval, 5), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_count_max, 5), - [689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_count_max, 5), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_env, 5), - [695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_env, 5), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_security_key_provider, 5), - [701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_security_key_provider, 5), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_revoked_host_keys, 5), - [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_revoked_host_keys, 5), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_rsa_size, 5), - [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_required_rsa_size, 5), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_request_tty, 5), - [719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_request_tty, 5), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_forward, 5), - [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_forward, 5), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_command, 5), - [731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_command, 5), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rekey_limit, 5), - [737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rekey_limit, 5), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_authentication, 5), - [743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_authentication, 5), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_key_types, 5), - [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_key_types, 5), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_algorithms, 5), - [755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_algorithms, 5), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_use_fdpass, 5), - [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_use_fdpass, 5), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_jump, 5), - [767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_jump, 5), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_command, 5), - [773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_command, 5), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol, 5), - [779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol, 5), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preferred_authentications, 5), - [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preferred_authentications, 5), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_port, 5), - [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_port, 5), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pkcs11_provider, 5), - [797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pkcs11_provider, 5), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_remote_open, 5), - [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_remote_open, 5), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_local_command, 5), - [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_local_command, 5), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_password_authentication, 5), - [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_password_authentication, 5), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_of_password_prompts, 5), - [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_of_password_prompts, 5), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_host_authentication_for_localhost, 5), - [827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_host_authentication_for_localhost, 5), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macs, 5), - [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macs, 5), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_verbose, 5), - [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_verbose, 5), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_level, 5), - [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_level, 5), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_forward, 5), - [851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_forward, 5), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_command, 5), - [857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_command, 5), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_hosts_command, 5), - [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_known_hosts_command, 5), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kex_algorithms, 5), - [869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kex_algorithms, 5), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_devices, 5), - [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_devices, 5), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_authentication, 5), - [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_authentication, 5), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ip_qos, 5), - [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ip_qos, 5), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 5), - [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include, 5), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ignore_unknown, 5), - [899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ignore_unknown, 5), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_file, 5), - [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_file, 5), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_agent, 5), - [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_agent, 5), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identities_only, 5), - [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identities_only, 5), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostname, 5), - [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostname, 5), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_alias, 5), - [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_alias, 5), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_algorithms, 5), - [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_algorithms, 5), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_authentication, 5), - [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_authentication, 5), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_accepted_algorithms, 5), - [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_accepted_algorithms, 5), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_known_hosts, 5), - [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_known_hosts, 5), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_kex_algorithms, 5), - [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_kex_algorithms, 5), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_trust_dns, 5), - [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_trust_dns, 5), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_server_identity, 5), - [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_server_identity, 5), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_renewal_forces_rekey, 5), - [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_renewal_forces_rekey, 5), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_key_exchange, 5), - [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_key_exchange, 5), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_delegate_credentials, 5), - [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_delegate_credentials, 5), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_client_identity, 5), - [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_client_identity, 5), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_authentication, 5), - [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_authentication, 5), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_known_hosts_file, 5), - [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_known_hosts_file, 5), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gateway_ports, 5), - [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gateway_ports, 5), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_trusted, 5), - [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_trusted, 5), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_timeout, 5), - [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_timeout, 5), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11, 5), - [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11, 5), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_agent, 5), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_agent, 5), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fork_after_authentication, 5), - [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fork_after_authentication, 5), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fingerprint_hash, 5), - [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fingerprint_hash, 5), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_on_forward_failure, 5), - [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_on_forward_failure, 5), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_char, 5), - [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_char, 5), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_ssh_keysign, 5), - [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_ssh_keysign, 5), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_forward, 5), - [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_forward, 5), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_persist, 5), - [1079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_persist, 5), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_path, 5), - [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_path, 5), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_master, 5), - [1091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_master, 5), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connect_timeout, 5), - [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connect_timeout, 5), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connection_attempts, 5), - [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connection_attempts, 5), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compression, 5), - [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compression, 5), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clear_all_forwardings, 5), - [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clear_all_forwardings, 5), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cipher, 5), - [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cipher, 5), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ciphers, 5), - [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ciphers, 5), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_host_ip, 5), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_host_ip, 5), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_challenge_response_authentication, 5), - [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_challenge_response_authentication, 5), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_certificate_file, 5), - [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_certificate_file, 5), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ca_signature_algorithms, 5), - [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ca_signature_algorithms, 5), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_permitted_cnames, 5), - [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_permitted_cnames, 5), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_max_dots, 5), - [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_max_dots, 5), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_hostname, 5), - [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_hostname, 5), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_fallback_local, 5), - [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_fallback_local, 5), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonical_domains, 5), - [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonical_domains, 5), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_interface, 5), - [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_interface, 5), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_address, 5), - [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_address, 5), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_batch_mode, 5), - [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_batch_mode, 5), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_address_family, 5), - [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_address_family, 5), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_keys_to_agent, 5), - [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_add_keys_to_agent, 5), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 5), - [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 5), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host, 5), - [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host, 5), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xauth_location, 4), - [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xauth_location, 4), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_host_key, 4), - [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visual_host_key, 4), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verify_host_key_dns, 4), - [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verify_host_key_dns, 4), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_known_hosts_file, 4), - [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_known_hosts_file, 4), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user, 4), - [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user, 4), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_roaming, 4), - [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_roaming, 4), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_keychain, 4), - [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_keychain, 4), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_host_keys, 4), - [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_host_keys, 4), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel_device, 4), - [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel_device, 4), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel, 4), - [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel, 4), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keep_alive, 4), - [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keep_alive, 4), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tcp_keep_alive, 4), - [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tcp_keep_alive, 4), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syslog_facility, 4), - [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syslog_facility, 4), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strict_host_key_checking, 4), - [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strict_host_key_checking, 4), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_unlink, 4), - [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_unlink, 4), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_mask, 4), - [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_mask, 4), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stdin_null, 4), - [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stdin_null, 4), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_env, 4), - [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_env, 4), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_session_type, 4), - [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_session_type, 4), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_interval, 4), - [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_interval, 4), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_count_max, 4), - [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_count_max, 4), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_env, 4), - [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_env, 4), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_security_key_provider, 4), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_security_key_provider, 4), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_revoked_host_keys, 4), - [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_revoked_host_keys, 4), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_rsa_size, 4), - [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_required_rsa_size, 4), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_request_tty, 4), - [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_request_tty, 4), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_forward, 4), - [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_forward, 4), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_command, 4), - [1391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_command, 4), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rekey_limit, 4), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rekey_limit, 4), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_authentication, 4), - [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_authentication, 4), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_key_types, 4), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_key_types, 4), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_algorithms, 4), - [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_algorithms, 4), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_use_fdpass, 4), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_use_fdpass, 4), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_jump, 4), - [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_jump, 4), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_command, 4), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_command, 4), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol, 4), - [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol, 4), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preferred_authentications, 4), - [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preferred_authentications, 4), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_port, 4), - [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_port, 4), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pkcs11_provider, 4), - [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pkcs11_provider, 4), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_remote_open, 4), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_remote_open, 4), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_local_command, 4), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_local_command, 4), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_password_authentication, 4), - [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_password_authentication, 4), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_of_password_prompts, 4), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_of_password_prompts, 4), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_host_authentication_for_localhost, 4), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_host_authentication_for_localhost, 4), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macs, 4), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macs, 4), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_verbose, 4), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_verbose, 4), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_level, 4), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_level, 4), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_forward, 4), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_forward, 4), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_command, 4), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_command, 4), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_hosts_command, 4), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_known_hosts_command, 4), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kex_algorithms, 4), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kex_algorithms, 4), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_devices, 4), - [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_devices, 4), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_authentication, 4), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_authentication, 4), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ip_qos, 4), - [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ip_qos, 4), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 4), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include, 4), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ignore_unknown, 4), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ignore_unknown, 4), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_file, 4), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_file, 4), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_agent, 4), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_agent, 4), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identities_only, 4), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identities_only, 4), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostname, 4), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostname, 4), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_alias, 4), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_alias, 4), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_algorithms, 4), - [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_algorithms, 4), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_authentication, 4), - [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_authentication, 4), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_accepted_algorithms, 4), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_accepted_algorithms, 4), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_known_hosts, 4), - [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_known_hosts, 4), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_kex_algorithms, 4), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_kex_algorithms, 4), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_trust_dns, 4), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_trust_dns, 4), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_server_identity, 4), - [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_server_identity, 4), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_renewal_forces_rekey, 4), - [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_renewal_forces_rekey, 4), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_key_exchange, 4), - [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_key_exchange, 4), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_delegate_credentials, 4), - [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_delegate_credentials, 4), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_client_identity, 4), - [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_client_identity, 4), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_authentication, 4), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_authentication, 4), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_known_hosts_file, 4), - [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_known_hosts_file, 4), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gateway_ports, 4), - [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gateway_ports, 4), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_trusted, 4), - [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_trusted, 4), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_timeout, 4), - [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_timeout, 4), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11, 4), - [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11, 4), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_agent, 4), - [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_agent, 4), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fork_after_authentication, 4), - [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fork_after_authentication, 4), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fingerprint_hash, 4), - [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fingerprint_hash, 4), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_on_forward_failure, 4), - [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_on_forward_failure, 4), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_char, 4), - [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_char, 4), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_ssh_keysign, 4), - [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_ssh_keysign, 4), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_forward, 4), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_forward, 4), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_persist, 4), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_persist, 4), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_path, 4), - [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_path, 4), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_master, 4), - [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_master, 4), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connect_timeout, 4), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connect_timeout, 4), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connection_attempts, 4), - [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connection_attempts, 4), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compression, 4), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compression, 4), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clear_all_forwardings, 4), - [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clear_all_forwardings, 4), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cipher, 4), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cipher, 4), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ciphers, 4), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ciphers, 4), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_host_ip, 4), - [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_host_ip, 4), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_challenge_response_authentication, 4), - [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_challenge_response_authentication, 4), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_certificate_file, 4), - [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_certificate_file, 4), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ca_signature_algorithms, 4), - [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ca_signature_algorithms, 4), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_permitted_cnames, 4), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_permitted_cnames, 4), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_max_dots, 4), - [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_max_dots, 4), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_hostname, 4), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_hostname, 4), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_fallback_local, 4), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_fallback_local, 4), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonical_domains, 4), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonical_domains, 4), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_interface, 4), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_interface, 4), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_address, 4), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_address, 4), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_batch_mode, 4), - [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_batch_mode, 4), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_address_family, 4), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_address_family, 4), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_keys_to_agent, 4), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_add_keys_to_agent, 4), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 4), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 4), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host, 4), - [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host, 4), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xauth_location, 3), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xauth_location, 3), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xauth_location_value, 1), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xauth_location_value, 1), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_value, 1), - [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_value, 1), - [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host, 3), - [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host, 3), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_host_key, 3), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visual_host_key, 3), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_host_key_value, 1, .production_id = 43), - [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visual_host_key_value, 1, .production_id = 43), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_value, 1, .production_id = 1), - [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_value, 1, .production_id = 1), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 3), - [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 3), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verify_host_key_dns, 3), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verify_host_key_dns, 3), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verify_host_key_dns_value, 1), - [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verify_host_key_dns_value, 1), - [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_keys_to_agent_value, 1), - [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_add_keys_to_agent_value, 1), - [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_keys_to_agent, 3), - [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_add_keys_to_agent, 3), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_known_hosts_file, 3), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_known_hosts_file, 3), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_known_hosts_file_value, 1), - [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_known_hosts_file_value, 1), - [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_address_family_value, 1), - [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_address_family_value, 1), - [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_address_family, 3), - [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_address_family, 3), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user, 3), - [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user, 3), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_value, 1), - [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_value, 1), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_batch_mode_value, 1, .production_id = 2), - [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_batch_mode_value, 1, .production_id = 2), - [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_batch_mode, 3), - [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_batch_mode, 3), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_address_value, 1), - [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_address_value, 1), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_roaming, 3), - [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_roaming, 3), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_roaming_value, 1, .production_id = 42), - [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_roaming_value, 1, .production_id = 42), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_address, 3), - [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_address, 3), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_interface_value, 1), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_interface_value, 1), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_keychain, 3), - [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_keychain, 3), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_keychain_value, 1, .production_id = 41), - [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_keychain_value, 1, .production_id = 41), - [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_interface, 3), - [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_interface, 3), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonical_domains_value, 1), - [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonical_domains_value, 1), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_host_keys, 3), - [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_host_keys, 3), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_host_keys_value, 1), - [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_host_keys_value, 1), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonical_domains, 3), - [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonical_domains, 3), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel_device, 3), - [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel_device, 3), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel_device_value, 1), - [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel_device_value, 1), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_fallback_local_value, 1, .production_id = 3), - [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_fallback_local_value, 1, .production_id = 3), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_fallback_local, 3), - [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_fallback_local, 3), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_hostname_value, 1), - [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_hostname_value, 1), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel, 3), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel, 3), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel_value, 1), - [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel_value, 1), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_hostname, 3), - [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_hostname, 3), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_max_dots_value, 1), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_max_dots_value, 1), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keep_alive, 3), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keep_alive, 3), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keep_alive_value, 1, .production_id = 40), - [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keep_alive_value, 1, .production_id = 40), - [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_max_dots, 3), - [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_max_dots, 3), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_permitted_cnames_value, 1), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_permitted_cnames_value, 1), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tcp_keep_alive, 3), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tcp_keep_alive, 3), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tcp_keep_alive_value, 1, .production_id = 39), - [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tcp_keep_alive_value, 1, .production_id = 39), - [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_permitted_cnames, 3), - [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_permitted_cnames, 3), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ca_signature_algorithms_value, 1), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ca_signature_algorithms_value, 1), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syslog_facility, 3), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syslog_facility, 3), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syslog_facility_value, 1), - [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syslog_facility_value, 1), - [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ca_signature_algorithms, 3), - [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ca_signature_algorithms, 3), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_certificate_file_value, 1), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_certificate_file_value, 1), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strict_host_key_checking, 3), - [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strict_host_key_checking, 3), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strict_host_key_checking_value, 1), - [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strict_host_key_checking_value, 1), - [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_certificate_file, 3), - [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_certificate_file, 3), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_unlink, 3), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_unlink, 3), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_unlink_value, 1, .production_id = 38), - [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_unlink_value, 1, .production_id = 38), - [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_challenge_response_authentication_value, 1, .production_id = 4), - [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_challenge_response_authentication_value, 1, .production_id = 4), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_challenge_response_authentication, 3), - [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_challenge_response_authentication, 3), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_mask, 3), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_mask, 3), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_mask_value, 1), - [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_mask_value, 1), - [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_host_ip_value, 1, .production_id = 5), - [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_host_ip_value, 1, .production_id = 5), - [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_host_ip, 3), - [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_host_ip, 3), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ciphers_value, 1), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ciphers_value, 1), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stdin_null, 3), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stdin_null, 3), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stdin_null_value, 1, .production_id = 37), - [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stdin_null_value, 1, .production_id = 37), - [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ciphers, 3), - [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ciphers, 3), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cipher_value, 1), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cipher_value, 1), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_env, 3), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_env, 3), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_env_value, 1), - [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_env_value, 1), - [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cipher, 3), - [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cipher, 3), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_session_type, 3), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_session_type, 3), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_session_type_value, 1), - [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_session_type_value, 1), - [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clear_all_forwardings_value, 1, .production_id = 6), - [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clear_all_forwardings_value, 1, .production_id = 6), - [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clear_all_forwardings, 3), - [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clear_all_forwardings, 3), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_interval, 3), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_interval, 3), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_interval_value, 1, .production_id = 36), - [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_interval_value, 1, .production_id = 36), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compression_value, 1, .production_id = 7), - [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compression_value, 1, .production_id = 7), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compression, 3), - [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compression, 3), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connection_attempts_value, 1, .production_id = 8), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connection_attempts_value, 1, .production_id = 8), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_count_max, 3), - [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_count_max, 3), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_count_max_value, 1, .production_id = 35), - [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_count_max_value, 1, .production_id = 35), - [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connection_attempts, 3), - [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connection_attempts, 3), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connect_timeout_value, 1, .production_id = 9), - [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connect_timeout_value, 1, .production_id = 9), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_env, 3), - [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_env, 3), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_env_value, 1), - [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_env_value, 1), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connect_timeout, 3), - [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connect_timeout, 3), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_master_value, 1), - [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_master_value, 1), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_security_key_provider, 3), - [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_security_key_provider, 3), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_security_key_provider_value, 1), - [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_security_key_provider_value, 1), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_master, 3), - [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_master, 3), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_path_value, 1), - [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_path_value, 1), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_revoked_host_keys, 3), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_revoked_host_keys, 3), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_revoked_host_keys_value, 1), - [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_revoked_host_keys_value, 1), - [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_path, 3), - [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_path, 3), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_persist_value, 1, .production_id = 10), - [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_persist_value, 1, .production_id = 10), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_rsa_size, 3), - [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_required_rsa_size, 3), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_rsa_size_value, 1, .production_id = 34), - [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_required_rsa_size_value, 1, .production_id = 34), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_persist, 3), - [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_persist, 3), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_forward_value, 1), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_forward_value, 1), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_request_tty, 3), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_request_tty, 3), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_request_tty_value, 1), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_request_tty_value, 1), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_forward, 3), - [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_forward, 3), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_forward, 3), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_forward, 3), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_forward_value, 1), - [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_forward_value, 1), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_ssh_keysign_value, 1, .production_id = 11), - [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_ssh_keysign_value, 1, .production_id = 11), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_ssh_keysign, 3), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_ssh_keysign, 3), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_command, 3), - [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_command, 3), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_command_value, 1), - [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_command_value, 1), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_char_value, 1), - [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_char_value, 1), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_char, 3), - [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_char, 3), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rekey_limit, 3), - [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rekey_limit, 3), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rekey_limit_value, 1), - [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rekey_limit_value, 1), - [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_on_forward_failure_value, 1, .production_id = 12), - [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_on_forward_failure_value, 1, .production_id = 12), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_on_forward_failure, 3), - [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_on_forward_failure, 3), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_authentication, 3), - [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_authentication, 3), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_authentication_value, 1), - [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_authentication_value, 1), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fingerprint_hash_value, 1), - [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fingerprint_hash_value, 1), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fingerprint_hash, 3), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fingerprint_hash, 3), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_key_types, 3), - [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_key_types, 3), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_key_types_value, 1), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_key_types_value, 1), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fork_after_authentication_value, 1, .production_id = 13), - [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fork_after_authentication_value, 1, .production_id = 13), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fork_after_authentication, 3), - [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fork_after_authentication, 3), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_agent_value, 1), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_agent_value, 1), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_algorithms, 3), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_algorithms, 3), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_algorithms_value, 1), - [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_algorithms_value, 1), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_agent, 3), - [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_agent, 3), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_use_fdpass, 3), - [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_use_fdpass, 3), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_use_fdpass_value, 1, .production_id = 33), - [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_use_fdpass_value, 1, .production_id = 33), - [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_value, 1, .production_id = 14), - [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_value, 1, .production_id = 14), - [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11, 3), - [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11, 3), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_timeout_value, 1, .production_id = 15), - [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_timeout_value, 1, .production_id = 15), - [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_jump, 3), - [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_jump, 3), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_jump_value, 1), - [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_jump_value, 1), - [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_timeout, 3), - [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_timeout, 3), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_command, 3), - [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_command, 3), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_command_value, 1), - [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_command_value, 1), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_trusted_value, 1, .production_id = 16), - [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_trusted_value, 1, .production_id = 16), - [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_trusted, 3), - [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_trusted, 3), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol, 3), - [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol, 3), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_value, 1), - [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_value, 1), - [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gateway_ports_value, 1, .production_id = 17), - [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gateway_ports_value, 1, .production_id = 17), - [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gateway_ports, 3), - [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gateway_ports, 3), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_known_hosts_file_value, 1), - [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_known_hosts_file_value, 1), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preferred_authentications, 3), - [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preferred_authentications, 3), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preferred_authentications_value, 1), - [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preferred_authentications_value, 1), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_known_hosts_file, 3), - [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_known_hosts_file, 3), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_port, 3), - [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_port, 3), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_port_value, 1, .production_id = 32), - [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_port_value, 1, .production_id = 32), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_authentication_value, 1, .production_id = 18), - [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_authentication_value, 1, .production_id = 18), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_authentication, 3), - [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_authentication, 3), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_client_identity_value, 1), - [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_client_identity_value, 1), - [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pkcs11_provider, 3), - [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pkcs11_provider, 3), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pkcs11_provider_value, 1), - [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pkcs11_provider_value, 1), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_client_identity, 3), - [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_client_identity, 3), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_remote_open, 3), - [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_remote_open, 3), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_remote_open_value, 1), - [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_remote_open_value, 1), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_delegate_credentials_value, 1, .production_id = 19), - [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_delegate_credentials_value, 1, .production_id = 19), - [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_delegate_credentials, 3), - [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_delegate_credentials, 3), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_local_command, 3), - [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_local_command, 3), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_local_command_value, 1, .production_id = 31), - [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_local_command_value, 1, .production_id = 31), - [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_key_exchange_value, 1, .production_id = 20), - [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_key_exchange_value, 1, .production_id = 20), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_key_exchange, 3), - [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_key_exchange, 3), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_password_authentication, 3), - [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_password_authentication, 3), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_password_authentication_value, 1, .production_id = 30), - [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_password_authentication_value, 1, .production_id = 30), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_renewal_forces_rekey_value, 1, .production_id = 21), - [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_renewal_forces_rekey_value, 1, .production_id = 21), - [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_renewal_forces_rekey, 3), - [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_renewal_forces_rekey, 3), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_server_identity_value, 1), - [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_server_identity_value, 1), - [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_of_password_prompts, 3), - [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_of_password_prompts, 3), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_of_password_prompts_value, 1, .production_id = 29), - [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_of_password_prompts_value, 1, .production_id = 29), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_server_identity, 3), - [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_server_identity, 3), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_host_authentication_for_localhost, 3), - [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_host_authentication_for_localhost, 3), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_host_authentication_for_localhost_value, 1, .production_id = 28), - [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_host_authentication_for_localhost_value, 1, .production_id = 28), - [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_trust_dns_value, 1, .production_id = 22), - [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_trust_dns_value, 1, .production_id = 22), - [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_trust_dns, 3), - [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_trust_dns, 3), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_kex_algorithms_value, 1), - [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_kex_algorithms_value, 1), - [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macs, 3), - [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macs, 3), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macs_value, 1), - [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macs_value, 1), - [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_kex_algorithms, 3), - [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_kex_algorithms, 3), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_verbose, 3), - [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_verbose, 3), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_verbose_value, 1), - [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_verbose_value, 1), - [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_known_hosts_value, 1, .production_id = 23), - [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_known_hosts_value, 1, .production_id = 23), - [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_known_hosts, 3), - [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_known_hosts, 3), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_accepted_algorithms_value, 1), - [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_accepted_algorithms_value, 1), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_level, 3), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_level, 3), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_level_value, 1), - [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_level_value, 1), - [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_accepted_algorithms, 3), - [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_accepted_algorithms, 3), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_forward, 3), - [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_forward, 3), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_forward_value, 1), - [2843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_forward_value, 1), - [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_authentication_value, 1, .production_id = 24), - [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_authentication_value, 1, .production_id = 24), - [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_authentication, 3), - [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_authentication, 3), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_algorithms_value, 1), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_algorithms_value, 1), - [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_command, 3), - [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_command, 3), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_command_value, 1), - [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_command_value, 1), - [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_algorithms, 3), - [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_algorithms, 3), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_alias_value, 1), - [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_alias_value, 1), - [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_hosts_command, 3), - [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_known_hosts_command, 3), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_hosts_command_value, 1), - [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_known_hosts_command_value, 1), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_alias, 3), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_alias, 3), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostname_value, 1), - [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostname_value, 1), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kex_algorithms, 3), - [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kex_algorithms, 3), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kex_algorithms_value, 1), - [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kex_algorithms_value, 1), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostname, 3), - [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostname, 3), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_devices, 3), - [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_devices, 3), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_devices_value, 1), - [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_devices_value, 1), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identities_only_value, 1, .production_id = 25), - [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identities_only_value, 1, .production_id = 25), - [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identities_only, 3), - [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identities_only, 3), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_agent_value, 1), - [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_agent_value, 1), - [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_authentication, 3), - [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_authentication, 3), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_authentication_value, 1, .production_id = 27), - [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_authentication_value, 1, .production_id = 27), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_agent, 3), - [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_agent, 3), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_file_value, 1), - [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_file_value, 1), - [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ip_qos, 3), - [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ip_qos, 3), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ip_qos_value, 1, .production_id = 26), - [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ip_qos_value, 1, .production_id = 26), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_file, 3), - [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_file, 3), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ignore_unknown_value, 1), - [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ignore_unknown_value, 1), - [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 3), - [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include, 3), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_value, 1), - [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_value, 1), - [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xauth_location, 6), - [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xauth_location, 6), - [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_host_key, 6), - [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visual_host_key, 6), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verify_host_key_dns, 6), - [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verify_host_key_dns, 6), - [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_known_hosts_file, 6), - [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_known_hosts_file, 6), - [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user, 6), - [3007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user, 6), - [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_roaming, 6), - [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_roaming, 6), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_keychain, 6), - [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_keychain, 6), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_host_keys, 6), - [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_host_keys, 6), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel_device, 6), - [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel_device, 6), - [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel, 6), - [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel, 6), - [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keep_alive, 6), - [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keep_alive, 6), - [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tcp_keep_alive, 6), - [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tcp_keep_alive, 6), - [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syslog_facility, 6), - [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syslog_facility, 6), - [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strict_host_key_checking, 6), - [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strict_host_key_checking, 6), - [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_unlink, 6), - [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_unlink, 6), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_mask, 6), - [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_mask, 6), - [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stdin_null, 6), - [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stdin_null, 6), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_env, 6), - [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_env, 6), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_session_type, 6), - [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_session_type, 6), - [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_interval, 6), - [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_interval, 6), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_count_max, 6), - [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_count_max, 6), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_env, 6), - [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_env, 6), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_security_key_provider, 6), - [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_security_key_provider, 6), - [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_revoked_host_keys, 6), - [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_revoked_host_keys, 6), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_rsa_size, 6), - [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_required_rsa_size, 6), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_request_tty, 6), - [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_request_tty, 6), - [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_forward, 6), - [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_forward, 6), - [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_command, 6), - [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_command, 6), - [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rekey_limit, 6), - [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rekey_limit, 6), - [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_authentication, 6), - [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_authentication, 6), - [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_key_types, 6), - [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_key_types, 6), - [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_algorithms, 6), - [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_algorithms, 6), - [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_use_fdpass, 6), - [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_use_fdpass, 6), - [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_jump, 6), - [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_jump, 6), - [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_command, 6), - [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_command, 6), - [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol, 6), - [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol, 6), - [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preferred_authentications, 6), - [3135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preferred_authentications, 6), - [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_port, 6), - [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_port, 6), - [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pkcs11_provider, 6), - [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pkcs11_provider, 6), - [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_remote_open, 6), - [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_remote_open, 6), - [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_local_command, 6), - [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_local_command, 6), - [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_password_authentication, 6), - [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_password_authentication, 6), - [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_of_password_prompts, 6), - [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_of_password_prompts, 6), - [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_host_authentication_for_localhost, 6), - [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_host_authentication_for_localhost, 6), - [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macs, 6), - [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macs, 6), - [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_verbose, 6), - [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_verbose, 6), - [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_level, 6), - [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_level, 6), - [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_forward, 6), - [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_forward, 6), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_command, 6), - [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_command, 6), - [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_hosts_command, 6), - [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_known_hosts_command, 6), - [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kex_algorithms, 6), - [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kex_algorithms, 6), - [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_devices, 6), - [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_devices, 6), - [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_authentication, 6), - [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_authentication, 6), - [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ip_qos, 6), - [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ip_qos, 6), - [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 6), - [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include, 6), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ignore_unknown, 6), - [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ignore_unknown, 6), - [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_file, 6), - [3215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_file, 6), - [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_agent, 6), - [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_agent, 6), - [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identities_only, 6), - [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identities_only, 6), - [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostname, 6), - [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostname, 6), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_alias, 6), - [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_alias, 6), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_algorithms, 6), - [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_algorithms, 6), - [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_authentication, 6), - [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_authentication, 6), - [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_accepted_algorithms, 6), - [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_accepted_algorithms, 6), - [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_known_hosts, 6), - [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_known_hosts, 6), - [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_kex_algorithms, 6), - [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_kex_algorithms, 6), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_trust_dns, 6), - [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_trust_dns, 6), - [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_server_identity, 6), - [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_server_identity, 6), - [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_renewal_forces_rekey, 6), - [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_renewal_forces_rekey, 6), - [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_key_exchange, 6), - [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_key_exchange, 6), - [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_delegate_credentials, 6), - [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_delegate_credentials, 6), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_client_identity, 6), - [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_client_identity, 6), - [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_authentication, 6), - [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_authentication, 6), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_known_hosts_file, 6), - [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_known_hosts_file, 6), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gateway_ports, 6), - [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gateway_ports, 6), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_trusted, 6), - [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_trusted, 6), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_timeout, 6), - [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_timeout, 6), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11, 6), - [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11, 6), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_agent, 6), - [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_agent, 6), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fork_after_authentication, 6), - [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fork_after_authentication, 6), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fingerprint_hash, 6), - [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fingerprint_hash, 6), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_on_forward_failure, 6), - [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_on_forward_failure, 6), - [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_char, 6), - [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_char, 6), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_ssh_keysign, 6), - [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_ssh_keysign, 6), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_forward, 6), - [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_forward, 6), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_persist, 6), - [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_persist, 6), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_path, 6), - [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_path, 6), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_master, 6), - [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_master, 6), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connect_timeout, 6), - [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connect_timeout, 6), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connection_attempts, 6), - [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connection_attempts, 6), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compression, 6), - [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compression, 6), - [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clear_all_forwardings, 6), - [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clear_all_forwardings, 6), - [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cipher, 6), - [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cipher, 6), - [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ciphers, 6), - [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ciphers, 6), - [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_host_ip, 6), - [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_host_ip, 6), - [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_challenge_response_authentication, 6), - [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_challenge_response_authentication, 6), - [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_certificate_file, 6), - [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_certificate_file, 6), - [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ca_signature_algorithms, 6), - [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ca_signature_algorithms, 6), - [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_permitted_cnames, 6), - [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_permitted_cnames, 6), - [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_max_dots, 6), - [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_max_dots, 6), - [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_hostname, 6), - [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_hostname, 6), - [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_fallback_local, 6), - [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_fallback_local, 6), - [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonical_domains, 6), - [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonical_domains, 6), - [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_interface, 6), - [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_interface, 6), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_address, 6), - [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_address, 6), - [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_batch_mode, 6), - [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_batch_mode, 6), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_address_family, 6), - [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_address_family, 6), - [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_keys_to_agent, 6), - [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_add_keys_to_agent, 6), - [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 6), - [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 6), - [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host, 6), - [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host, 6), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [4793] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_client_config, 1), + [231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), + [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1235), + [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1226), + [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1112), + [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1222), + [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1220), + [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1218), + [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1216), + [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1214), + [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1212), + [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1210), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1208), + [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1206), + [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1204), + [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1202), + [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1200), + [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1198), + [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1196), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1194), + [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1192), + [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1190), + [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1188), + [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1186), + [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1184), + [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1182), + [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1180), + [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1178), + [311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1176), + [314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1174), + [317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1172), + [320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1170), + [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1168), + [326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1166), + [329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1164), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1162), + [335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1160), + [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1158), + [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1156), + [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1154), + [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1152), + [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1150), + [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1148), + [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1146), + [359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1144), + [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1142), + [365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1140), + [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1138), + [371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1136), + [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1134), + [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1132), + [380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1130), + [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1128), + [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1126), + [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1125), + [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1123), + [395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1121), + [398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1119), + [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1117), + [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1115), + [407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1113), + [410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1181), + [413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1209), + [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1219), + [419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1227), + [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1230), + [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1266), + [428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1239), + [431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1244), + [434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1247), + [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1252), + [440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1256), + [443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1258), + [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1262), + [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1264), + [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1268), + [455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1269), + [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1272), + [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1274), + [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1275), + [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1277), + [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1278), + [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1280), + [476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1282), + [479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1283), + [482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1286), + [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1287), + [488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1290), + [491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1291), + [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1293), + [497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1294), + [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1297), + [503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1299), + [506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1303), + [509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1305), + [512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1306), + [515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1309), + [518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1310), + [521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1313), + [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1314), + [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1317), + [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1319), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1320), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1323), + [539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1324), + [542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1327), + [545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1328), + [548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1331), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1332), + [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1333), + [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1335), + [560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1337), + [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1217), + [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 3), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include, 3), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xauth_location, 5), + [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xauth_location, 5), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_host_key, 5), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visual_host_key, 5), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verify_host_key_dns, 5), + [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verify_host_key_dns, 5), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_known_hosts_file, 5), + [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_known_hosts_file, 5), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user, 5), + [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user, 5), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_roaming, 5), + [604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_roaming, 5), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_keychain, 5), + [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_keychain, 5), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_host_keys, 5), + [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_host_keys, 5), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel_device, 5), + [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel_device, 5), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel, 5), + [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel, 5), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keep_alive, 5), + [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keep_alive, 5), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tcp_keep_alive, 5), + [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tcp_keep_alive, 5), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syslog_facility, 5), + [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syslog_facility, 5), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strict_host_key_checking, 5), + [652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strict_host_key_checking, 5), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_unlink, 5), + [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_unlink, 5), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_mask, 5), + [664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_mask, 5), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stdin_null, 5), + [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stdin_null, 5), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_env, 5), + [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_env, 5), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_session_type, 5), + [682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_session_type, 5), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_interval, 5), + [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_interval, 5), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_count_max, 5), + [694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_count_max, 5), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_env, 5), + [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_env, 5), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_security_key_provider, 5), + [706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_security_key_provider, 5), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_revoked_host_keys, 5), + [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_revoked_host_keys, 5), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_rsa_size, 5), + [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_required_rsa_size, 5), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_request_tty, 5), + [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_request_tty, 5), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_forward, 5), + [730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_forward, 5), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_command, 5), + [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_command, 5), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rekey_limit, 5), + [742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rekey_limit, 5), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_authentication, 5), + [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_authentication, 5), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_key_types, 5), + [754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_key_types, 5), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_algorithms, 5), + [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_algorithms, 5), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_use_fdpass, 5), + [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_use_fdpass, 5), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_jump, 5), + [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_jump, 5), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_command, 5), + [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_command, 5), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol, 5), + [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol, 5), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preferred_authentications, 5), + [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preferred_authentications, 5), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_port, 5), + [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_port, 5), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pkcs11_provider, 5), + [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pkcs11_provider, 5), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_remote_open, 5), + [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_remote_open, 5), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_local_command, 5), + [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_local_command, 5), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_password_authentication, 5), + [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_password_authentication, 5), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_of_password_prompts, 5), + [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_of_password_prompts, 5), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_host_authentication_for_localhost, 5), + [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_host_authentication_for_localhost, 5), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macs, 5), + [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macs, 5), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_verbose, 5), + [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_verbose, 5), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_level, 5), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_level, 5), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_forward, 5), + [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_forward, 5), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_command, 5), + [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_command, 5), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_hosts_command, 5), + [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_known_hosts_command, 5), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kex_algorithms, 5), + [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kex_algorithms, 5), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_devices, 5), + [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_devices, 5), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_authentication, 5), + [886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_authentication, 5), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ip_qos, 5), + [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ip_qos, 5), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 5), + [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include, 5), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ignore_unknown, 5), + [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ignore_unknown, 5), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_file, 5), + [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_file, 5), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_agent, 5), + [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_agent, 5), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identities_only, 5), + [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identities_only, 5), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostname, 5), + [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostname, 5), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_alias, 5), + [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_alias, 5), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_algorithms, 5), + [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_algorithms, 5), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_authentication, 5), + [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_authentication, 5), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_accepted_algorithms, 5), + [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_accepted_algorithms, 5), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_known_hosts, 5), + [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_known_hosts, 5), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_kex_algorithms, 5), + [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_kex_algorithms, 5), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_trust_dns, 5), + [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_trust_dns, 5), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_server_identity, 5), + [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_server_identity, 5), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_renewal_forces_rekey, 5), + [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_renewal_forces_rekey, 5), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_key_exchange, 5), + [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_key_exchange, 5), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_delegate_credentials, 5), + [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_delegate_credentials, 5), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_client_identity, 5), + [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_client_identity, 5), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_authentication, 5), + [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_authentication, 5), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_known_hosts_file, 5), + [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_known_hosts_file, 5), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gateway_ports, 5), + [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gateway_ports, 5), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_trusted, 5), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_trusted, 5), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_timeout, 5), + [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_timeout, 5), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11, 5), + [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11, 5), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_agent, 5), + [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_agent, 5), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fork_after_authentication, 5), + [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fork_after_authentication, 5), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fingerprint_hash, 5), + [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fingerprint_hash, 5), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_on_forward_failure, 5), + [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_on_forward_failure, 5), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_char, 5), + [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_char, 5), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_ssh_keysign, 5), + [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_ssh_keysign, 5), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_escape_commandline, 5), + [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_escape_commandline, 5), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_forward, 5), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_forward, 5), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_persist, 5), + [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_persist, 5), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_path, 5), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_path, 5), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_master, 5), + [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_master, 5), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connect_timeout, 5), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connect_timeout, 5), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connection_attempts, 5), + [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connection_attempts, 5), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compression, 5), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compression, 5), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clear_all_forwardings, 5), + [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clear_all_forwardings, 5), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cipher, 5), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cipher, 5), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ciphers, 5), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ciphers, 5), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_host_ip, 5), + [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_host_ip, 5), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_challenge_response_authentication, 5), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_challenge_response_authentication, 5), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_certificate_file, 5), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_certificate_file, 5), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ca_signature_algorithms, 5), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ca_signature_algorithms, 5), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_permitted_cnames, 5), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_permitted_cnames, 5), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_max_dots, 5), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_max_dots, 5), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_hostname, 5), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_hostname, 5), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_fallback_local, 5), + [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_fallback_local, 5), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonical_domains, 5), + [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonical_domains, 5), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_interface, 5), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_interface, 5), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_address, 5), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_address, 5), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_batch_mode, 5), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_batch_mode, 5), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_address_family, 5), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_address_family, 5), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_keys_to_agent, 5), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_add_keys_to_agent, 5), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 5), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 5), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host, 5), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host, 5), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xauth_location, 4), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xauth_location, 4), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_host_key, 4), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visual_host_key, 4), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verify_host_key_dns, 4), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verify_host_key_dns, 4), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_known_hosts_file, 4), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_known_hosts_file, 4), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user, 4), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user, 4), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_roaming, 4), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_roaming, 4), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_keychain, 4), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_keychain, 4), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_host_keys, 4), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_host_keys, 4), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel_device, 4), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel_device, 4), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel, 4), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel, 4), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keep_alive, 4), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keep_alive, 4), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tcp_keep_alive, 4), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tcp_keep_alive, 4), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syslog_facility, 4), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syslog_facility, 4), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strict_host_key_checking, 4), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strict_host_key_checking, 4), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_unlink, 4), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_unlink, 4), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_mask, 4), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_mask, 4), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stdin_null, 4), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stdin_null, 4), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_env, 4), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_env, 4), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_session_type, 4), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_session_type, 4), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_interval, 4), + [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_interval, 4), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_count_max, 4), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_count_max, 4), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_env, 4), + [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_env, 4), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_security_key_provider, 4), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_security_key_provider, 4), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_revoked_host_keys, 4), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_revoked_host_keys, 4), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_rsa_size, 4), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_required_rsa_size, 4), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_request_tty, 4), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_request_tty, 4), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_forward, 4), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_forward, 4), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_command, 4), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_command, 4), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rekey_limit, 4), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rekey_limit, 4), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_authentication, 4), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_authentication, 4), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_key_types, 4), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_key_types, 4), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_algorithms, 4), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_algorithms, 4), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_use_fdpass, 4), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_use_fdpass, 4), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_jump, 4), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_jump, 4), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_command, 4), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_command, 4), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol, 4), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol, 4), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preferred_authentications, 4), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preferred_authentications, 4), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_port, 4), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_port, 4), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pkcs11_provider, 4), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pkcs11_provider, 4), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_remote_open, 4), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_remote_open, 4), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_local_command, 4), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_local_command, 4), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_password_authentication, 4), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_password_authentication, 4), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_of_password_prompts, 4), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_of_password_prompts, 4), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_host_authentication_for_localhost, 4), + [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_host_authentication_for_localhost, 4), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macs, 4), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macs, 4), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_verbose, 4), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_verbose, 4), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_level, 4), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_level, 4), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_forward, 4), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_forward, 4), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_command, 4), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_command, 4), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_hosts_command, 4), + [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_known_hosts_command, 4), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kex_algorithms, 4), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kex_algorithms, 4), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_devices, 4), + [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_devices, 4), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_authentication, 4), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_authentication, 4), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ip_qos, 4), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ip_qos, 4), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 4), + [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include, 4), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ignore_unknown, 4), + [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ignore_unknown, 4), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_file, 4), + [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_file, 4), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_agent, 4), + [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_agent, 4), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identities_only, 4), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identities_only, 4), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostname, 4), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostname, 4), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_alias, 4), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_alias, 4), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_algorithms, 4), + [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_algorithms, 4), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_authentication, 4), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_authentication, 4), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_accepted_algorithms, 4), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_accepted_algorithms, 4), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_known_hosts, 4), + [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_known_hosts, 4), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_kex_algorithms, 4), + [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_kex_algorithms, 4), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_trust_dns, 4), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_trust_dns, 4), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_server_identity, 4), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_server_identity, 4), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_renewal_forces_rekey, 4), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_renewal_forces_rekey, 4), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_key_exchange, 4), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_key_exchange, 4), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_delegate_credentials, 4), + [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_delegate_credentials, 4), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_client_identity, 4), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_client_identity, 4), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_authentication, 4), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_authentication, 4), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_known_hosts_file, 4), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_known_hosts_file, 4), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gateway_ports, 4), + [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gateway_ports, 4), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_trusted, 4), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_trusted, 4), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_timeout, 4), + [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_timeout, 4), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11, 4), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11, 4), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_agent, 4), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_agent, 4), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fork_after_authentication, 4), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fork_after_authentication, 4), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fingerprint_hash, 4), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fingerprint_hash, 4), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_on_forward_failure, 4), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_on_forward_failure, 4), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_char, 4), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_char, 4), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_ssh_keysign, 4), + [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_ssh_keysign, 4), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_escape_commandline, 4), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_escape_commandline, 4), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_forward, 4), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_forward, 4), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_persist, 4), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_persist, 4), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_path, 4), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_path, 4), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_master, 4), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_master, 4), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connect_timeout, 4), + [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connect_timeout, 4), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connection_attempts, 4), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connection_attempts, 4), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compression, 4), + [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compression, 4), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clear_all_forwardings, 4), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clear_all_forwardings, 4), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cipher, 4), + [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cipher, 4), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ciphers, 4), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ciphers, 4), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_host_ip, 4), + [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_host_ip, 4), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_challenge_response_authentication, 4), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_challenge_response_authentication, 4), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_certificate_file, 4), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_certificate_file, 4), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ca_signature_algorithms, 4), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ca_signature_algorithms, 4), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_permitted_cnames, 4), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_permitted_cnames, 4), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_max_dots, 4), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_max_dots, 4), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_hostname, 4), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_hostname, 4), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_fallback_local, 4), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_fallback_local, 4), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonical_domains, 4), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonical_domains, 4), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_interface, 4), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_interface, 4), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_address, 4), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_address, 4), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_batch_mode, 4), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_batch_mode, 4), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_address_family, 4), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_address_family, 4), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_keys_to_agent, 4), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_add_keys_to_agent, 4), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 4), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 4), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host, 4), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host, 4), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), + [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xauth_location, 3), + [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xauth_location, 3), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xauth_location_value, 1), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xauth_location_value, 1), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_value, 1), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_value, 1), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host, 3), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host, 3), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_host_key, 3), + [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visual_host_key, 3), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_host_key_value, 1, .production_id = 44), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visual_host_key_value, 1, .production_id = 44), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_value, 1, .production_id = 1), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_value, 1, .production_id = 1), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 3), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 3), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), + [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verify_host_key_dns, 3), + [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verify_host_key_dns, 3), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verify_host_key_dns_value, 1), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verify_host_key_dns_value, 1), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_keys_to_agent_value, 1), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_add_keys_to_agent_value, 1), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_keys_to_agent, 3), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_add_keys_to_agent, 3), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_known_hosts_file, 3), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_known_hosts_file, 3), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_known_hosts_file_value, 1), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_known_hosts_file_value, 1), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_address_family_value, 1), + [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_address_family_value, 1), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_address_family, 3), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_address_family, 3), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user, 3), + [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user, 3), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_value, 1), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_value, 1), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_batch_mode_value, 1, .production_id = 2), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_batch_mode_value, 1, .production_id = 2), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_batch_mode, 3), + [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_batch_mode, 3), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_address_value, 1), + [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_address_value, 1), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_roaming, 3), + [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_roaming, 3), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_roaming_value, 1, .production_id = 43), + [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_roaming_value, 1, .production_id = 43), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_address, 3), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_address, 3), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_interface_value, 1), + [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_interface_value, 1), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_keychain, 3), + [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_keychain, 3), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_keychain_value, 1, .production_id = 42), + [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_keychain_value, 1, .production_id = 42), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_interface, 3), + [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_interface, 3), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonical_domains_value, 1), + [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonical_domains_value, 1), + [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_host_keys, 3), + [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_host_keys, 3), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_host_keys_value, 1), + [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_host_keys_value, 1), + [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonical_domains, 3), + [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonical_domains, 3), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel_device, 3), + [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel_device, 3), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel_device_value, 1), + [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel_device_value, 1), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_fallback_local_value, 1, .production_id = 3), + [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_fallback_local_value, 1, .production_id = 3), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_fallback_local, 3), + [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_fallback_local, 3), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_hostname_value, 1), + [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_hostname_value, 1), + [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel, 3), + [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel, 3), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel_value, 1), + [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel_value, 1), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_hostname, 3), + [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_hostname, 3), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_max_dots_value, 1), + [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_max_dots_value, 1), + [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keep_alive, 3), + [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keep_alive, 3), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keep_alive_value, 1, .production_id = 41), + [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keep_alive_value, 1, .production_id = 41), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_max_dots, 3), + [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_max_dots, 3), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_permitted_cnames_value, 1), + [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_permitted_cnames_value, 1), + [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tcp_keep_alive, 3), + [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tcp_keep_alive, 3), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tcp_keep_alive_value, 1, .production_id = 40), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tcp_keep_alive_value, 1, .production_id = 40), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_permitted_cnames, 3), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_permitted_cnames, 3), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ca_signature_algorithms_value, 1), + [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ca_signature_algorithms_value, 1), + [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syslog_facility, 3), + [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syslog_facility, 3), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syslog_facility_value, 1), + [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syslog_facility_value, 1), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ca_signature_algorithms, 3), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ca_signature_algorithms, 3), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_certificate_file_value, 1), + [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_certificate_file_value, 1), + [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strict_host_key_checking, 3), + [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strict_host_key_checking, 3), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strict_host_key_checking_value, 1), + [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strict_host_key_checking_value, 1), + [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_certificate_file, 3), + [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_certificate_file, 3), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_unlink, 3), + [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_unlink, 3), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_unlink_value, 1, .production_id = 39), + [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_unlink_value, 1, .production_id = 39), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_challenge_response_authentication_value, 1, .production_id = 4), + [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_challenge_response_authentication_value, 1, .production_id = 4), + [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_challenge_response_authentication, 3), + [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_challenge_response_authentication, 3), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_mask, 3), + [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_mask, 3), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_mask_value, 1), + [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_mask_value, 1), + [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_host_ip_value, 1, .production_id = 5), + [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_host_ip_value, 1, .production_id = 5), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_host_ip, 3), + [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_host_ip, 3), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ciphers_value, 1), + [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ciphers_value, 1), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stdin_null, 3), + [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stdin_null, 3), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stdin_null_value, 1, .production_id = 38), + [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stdin_null_value, 1, .production_id = 38), + [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ciphers, 3), + [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ciphers, 3), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cipher_value, 1), + [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cipher_value, 1), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_env, 3), + [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_env, 3), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_env_value, 1), + [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_env_value, 1), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cipher, 3), + [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cipher, 3), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_session_type, 3), + [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_session_type, 3), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_session_type_value, 1), + [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_session_type_value, 1), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clear_all_forwardings_value, 1, .production_id = 6), + [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clear_all_forwardings_value, 1, .production_id = 6), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clear_all_forwardings, 3), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clear_all_forwardings, 3), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_interval, 3), + [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_interval, 3), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_interval_value, 1, .production_id = 37), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_interval_value, 1, .production_id = 37), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compression_value, 1, .production_id = 7), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compression_value, 1, .production_id = 7), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compression, 3), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compression, 3), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connection_attempts_value, 1, .production_id = 8), + [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connection_attempts_value, 1, .production_id = 8), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_count_max, 3), + [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_count_max, 3), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_count_max_value, 1, .production_id = 36), + [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_count_max_value, 1, .production_id = 36), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connection_attempts, 3), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connection_attempts, 3), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connect_timeout_value, 1, .production_id = 9), + [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connect_timeout_value, 1, .production_id = 9), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_env, 3), + [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_env, 3), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_env_value, 1), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_env_value, 1), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connect_timeout, 3), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connect_timeout, 3), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_master_value, 1), + [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_master_value, 1), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_security_key_provider, 3), + [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_security_key_provider, 3), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_security_key_provider_value, 1), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_security_key_provider_value, 1), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_master, 3), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_master, 3), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_path_value, 1), + [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_path_value, 1), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_revoked_host_keys, 3), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_revoked_host_keys, 3), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_revoked_host_keys_value, 1), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_revoked_host_keys_value, 1), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_path, 3), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_path, 3), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_persist_value, 1, .production_id = 10), + [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_persist_value, 1, .production_id = 10), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_rsa_size, 3), + [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_required_rsa_size, 3), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_rsa_size_value, 1, .production_id = 35), + [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_required_rsa_size_value, 1, .production_id = 35), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_persist, 3), + [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_persist, 3), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_forward_value, 1), + [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_forward_value, 1), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_request_tty, 3), + [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_request_tty, 3), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_request_tty_value, 1), + [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_request_tty_value, 1), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_forward, 3), + [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_forward, 3), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_forward, 3), + [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_forward, 3), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_forward_value, 1), + [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_forward_value, 1), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_escape_commandline_value, 1, .production_id = 11), + [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_escape_commandline_value, 1, .production_id = 11), + [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_escape_commandline, 3), + [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_escape_commandline, 3), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_command, 3), + [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_command, 3), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_command_value, 1), + [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_command_value, 1), + [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_ssh_keysign_value, 1, .production_id = 12), + [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_ssh_keysign_value, 1, .production_id = 12), + [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_ssh_keysign, 3), + [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_ssh_keysign, 3), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rekey_limit, 3), + [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rekey_limit, 3), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rekey_limit_value, 1), + [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rekey_limit_value, 1), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_char_value, 1), + [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_char_value, 1), + [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_char, 3), + [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_char, 3), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_authentication, 3), + [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_authentication, 3), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_authentication_value, 1), + [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_authentication_value, 1), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_on_forward_failure_value, 1, .production_id = 13), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_on_forward_failure_value, 1, .production_id = 13), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_on_forward_failure, 3), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_on_forward_failure, 3), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_key_types, 3), + [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_key_types, 3), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_key_types_value, 1), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_key_types_value, 1), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fingerprint_hash_value, 1), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fingerprint_hash_value, 1), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fingerprint_hash, 3), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fingerprint_hash, 3), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_algorithms, 3), + [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_algorithms, 3), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_algorithms_value, 1), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_algorithms_value, 1), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fork_after_authentication_value, 1, .production_id = 14), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fork_after_authentication_value, 1, .production_id = 14), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fork_after_authentication, 3), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fork_after_authentication, 3), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_agent_value, 1), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_agent_value, 1), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_use_fdpass, 3), + [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_use_fdpass, 3), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_use_fdpass_value, 1, .production_id = 34), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_use_fdpass_value, 1, .production_id = 34), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_agent, 3), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_agent, 3), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_jump, 3), + [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_jump, 3), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_jump_value, 1), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_jump_value, 1), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_value, 1, .production_id = 15), + [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_value, 1, .production_id = 15), + [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11, 3), + [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11, 3), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_timeout_value, 1, .production_id = 16), + [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_timeout_value, 1, .production_id = 16), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_command, 3), + [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_command, 3), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_command_value, 1), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_command_value, 1), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_timeout, 3), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_timeout, 3), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol, 3), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol, 3), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_value, 1), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_value, 1), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_trusted_value, 1, .production_id = 17), + [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_trusted_value, 1, .production_id = 17), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_trusted, 3), + [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_trusted, 3), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preferred_authentications, 3), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preferred_authentications, 3), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preferred_authentications_value, 1), + [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preferred_authentications_value, 1), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gateway_ports_value, 1, .production_id = 18), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gateway_ports_value, 1, .production_id = 18), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gateway_ports, 3), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gateway_ports, 3), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_known_hosts_file_value, 1), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_known_hosts_file_value, 1), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_port, 3), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_port, 3), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_port_value, 1, .production_id = 33), + [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_port_value, 1, .production_id = 33), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_known_hosts_file, 3), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_known_hosts_file, 3), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pkcs11_provider, 3), + [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pkcs11_provider, 3), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pkcs11_provider_value, 1), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pkcs11_provider_value, 1), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_authentication_value, 1, .production_id = 19), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_authentication_value, 1, .production_id = 19), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_authentication, 3), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_authentication, 3), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_client_identity_value, 1), + [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_client_identity_value, 1), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_remote_open, 3), + [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_remote_open, 3), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_remote_open_value, 1), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_remote_open_value, 1), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_client_identity, 3), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_client_identity, 3), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_local_command, 3), + [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_local_command, 3), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_local_command_value, 1, .production_id = 32), + [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_local_command_value, 1, .production_id = 32), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_delegate_credentials_value, 1, .production_id = 20), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_delegate_credentials_value, 1, .production_id = 20), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_delegate_credentials, 3), + [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_delegate_credentials, 3), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_password_authentication, 3), + [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_password_authentication, 3), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_password_authentication_value, 1, .production_id = 31), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_password_authentication_value, 1, .production_id = 31), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_key_exchange_value, 1, .production_id = 21), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_key_exchange_value, 1, .production_id = 21), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_key_exchange, 3), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_key_exchange, 3), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_of_password_prompts, 3), + [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_of_password_prompts, 3), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_of_password_prompts_value, 1, .production_id = 30), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_of_password_prompts_value, 1, .production_id = 30), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_renewal_forces_rekey_value, 1, .production_id = 22), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_renewal_forces_rekey_value, 1, .production_id = 22), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_renewal_forces_rekey, 3), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_renewal_forces_rekey, 3), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_server_identity_value, 1), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_server_identity_value, 1), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_host_authentication_for_localhost, 3), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_host_authentication_for_localhost, 3), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_host_authentication_for_localhost_value, 1, .production_id = 29), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_host_authentication_for_localhost_value, 1, .production_id = 29), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_server_identity, 3), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_server_identity, 3), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macs, 3), + [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macs, 3), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macs_value, 1), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macs_value, 1), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_trust_dns_value, 1, .production_id = 23), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_trust_dns_value, 1, .production_id = 23), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_trust_dns, 3), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_trust_dns, 3), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_kex_algorithms_value, 1), + [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_kex_algorithms_value, 1), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_verbose, 3), + [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_verbose, 3), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_verbose_value, 1), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_verbose_value, 1), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_kex_algorithms, 3), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_kex_algorithms, 3), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_level, 3), + [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_level, 3), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_level_value, 1), + [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_level_value, 1), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_known_hosts_value, 1, .production_id = 24), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_known_hosts_value, 1, .production_id = 24), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_known_hosts, 3), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_known_hosts, 3), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_accepted_algorithms_value, 1), + [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_accepted_algorithms_value, 1), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_forward, 3), + [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_forward, 3), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_forward_value, 1), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_forward_value, 1), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_accepted_algorithms, 3), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_accepted_algorithms, 3), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_command, 3), + [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_command, 3), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_command_value, 1), + [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_command_value, 1), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_authentication_value, 1, .production_id = 25), + [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_authentication_value, 1, .production_id = 25), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_authentication, 3), + [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_authentication, 3), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_algorithms_value, 1), + [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_algorithms_value, 1), + [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_hosts_command, 3), + [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_known_hosts_command, 3), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_hosts_command_value, 1), + [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_known_hosts_command_value, 1), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_algorithms, 3), + [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_algorithms, 3), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_alias_value, 1), + [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_alias_value, 1), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kex_algorithms, 3), + [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kex_algorithms, 3), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kex_algorithms_value, 1), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kex_algorithms_value, 1), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_alias, 3), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_alias, 3), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostname_value, 1), + [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostname_value, 1), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_devices, 3), + [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_devices, 3), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_devices_value, 1), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_devices_value, 1), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostname, 3), + [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostname, 3), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_authentication, 3), + [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_authentication, 3), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_authentication_value, 1, .production_id = 28), + [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_authentication_value, 1, .production_id = 28), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identities_only_value, 1, .production_id = 26), + [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identities_only_value, 1, .production_id = 26), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identities_only, 3), + [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identities_only, 3), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_agent_value, 1), + [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_agent_value, 1), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ip_qos, 3), + [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ip_qos, 3), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ip_qos_value, 1, .production_id = 27), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ip_qos_value, 1, .production_id = 27), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_agent, 3), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_agent, 3), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_file_value, 1), + [2994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_file_value, 1), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ignore_unknown, 3), + [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ignore_unknown, 3), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_value, 1), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_value, 1), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_file, 3), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_file, 3), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ignore_unknown_value, 1), + [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ignore_unknown_value, 1), + [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xauth_location, 6), + [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xauth_location, 6), + [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_host_key, 6), + [3022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visual_host_key, 6), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verify_host_key_dns, 6), + [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verify_host_key_dns, 6), + [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_known_hosts_file, 6), + [3030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_known_hosts_file, 6), + [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user, 6), + [3034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user, 6), + [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_roaming, 6), + [3038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_roaming, 6), + [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_keychain, 6), + [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_keychain, 6), + [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_host_keys, 6), + [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_host_keys, 6), + [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel_device, 6), + [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel_device, 6), + [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel, 6), + [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel, 6), + [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keep_alive, 6), + [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keep_alive, 6), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tcp_keep_alive, 6), + [3062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tcp_keep_alive, 6), + [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syslog_facility, 6), + [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syslog_facility, 6), + [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strict_host_key_checking, 6), + [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strict_host_key_checking, 6), + [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_unlink, 6), + [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_unlink, 6), + [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_mask, 6), + [3078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_mask, 6), + [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stdin_null, 6), + [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stdin_null, 6), + [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_env, 6), + [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_env, 6), + [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_session_type, 6), + [3090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_session_type, 6), + [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_interval, 6), + [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_interval, 6), + [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_count_max, 6), + [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_count_max, 6), + [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_env, 6), + [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_env, 6), + [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_security_key_provider, 6), + [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_security_key_provider, 6), + [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_revoked_host_keys, 6), + [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_revoked_host_keys, 6), + [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_rsa_size, 6), + [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_required_rsa_size, 6), + [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_request_tty, 6), + [3118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_request_tty, 6), + [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_forward, 6), + [3122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_forward, 6), + [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_command, 6), + [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_command, 6), + [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rekey_limit, 6), + [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rekey_limit, 6), + [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_authentication, 6), + [3134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_authentication, 6), + [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_key_types, 6), + [3138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_key_types, 6), + [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_algorithms, 6), + [3142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_algorithms, 6), + [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_use_fdpass, 6), + [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_use_fdpass, 6), + [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_jump, 6), + [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_jump, 6), + [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_command, 6), + [3154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_command, 6), + [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol, 6), + [3158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol, 6), + [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preferred_authentications, 6), + [3162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preferred_authentications, 6), + [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_port, 6), + [3166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_port, 6), + [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pkcs11_provider, 6), + [3170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pkcs11_provider, 6), + [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_remote_open, 6), + [3174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_remote_open, 6), + [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_local_command, 6), + [3178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_local_command, 6), + [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_password_authentication, 6), + [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_password_authentication, 6), + [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_of_password_prompts, 6), + [3186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_of_password_prompts, 6), + [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_host_authentication_for_localhost, 6), + [3190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_host_authentication_for_localhost, 6), + [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macs, 6), + [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macs, 6), + [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_verbose, 6), + [3198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_verbose, 6), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_level, 6), + [3202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_level, 6), + [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_forward, 6), + [3206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_forward, 6), + [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_command, 6), + [3210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_command, 6), + [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_hosts_command, 6), + [3214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_known_hosts_command, 6), + [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kex_algorithms, 6), + [3218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kex_algorithms, 6), + [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_devices, 6), + [3222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_devices, 6), + [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_authentication, 6), + [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_authentication, 6), + [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ip_qos, 6), + [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ip_qos, 6), + [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 6), + [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include, 6), + [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ignore_unknown, 6), + [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ignore_unknown, 6), + [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_file, 6), + [3242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_file, 6), + [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_agent, 6), + [3246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_agent, 6), + [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identities_only, 6), + [3250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identities_only, 6), + [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostname, 6), + [3254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostname, 6), + [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_alias, 6), + [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_alias, 6), + [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_algorithms, 6), + [3262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_algorithms, 6), + [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_authentication, 6), + [3266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_authentication, 6), + [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_accepted_algorithms, 6), + [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_accepted_algorithms, 6), + [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_known_hosts, 6), + [3274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_known_hosts, 6), + [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_kex_algorithms, 6), + [3278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_kex_algorithms, 6), + [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_trust_dns, 6), + [3282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_trust_dns, 6), + [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_server_identity, 6), + [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_server_identity, 6), + [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_renewal_forces_rekey, 6), + [3290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_renewal_forces_rekey, 6), + [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_key_exchange, 6), + [3294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_key_exchange, 6), + [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_delegate_credentials, 6), + [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_delegate_credentials, 6), + [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_client_identity, 6), + [3302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_client_identity, 6), + [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_authentication, 6), + [3306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_authentication, 6), + [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_known_hosts_file, 6), + [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_known_hosts_file, 6), + [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gateway_ports, 6), + [3314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gateway_ports, 6), + [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_trusted, 6), + [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_trusted, 6), + [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_timeout, 6), + [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_timeout, 6), + [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11, 6), + [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11, 6), + [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_agent, 6), + [3330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_agent, 6), + [3332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fork_after_authentication, 6), + [3334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fork_after_authentication, 6), + [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fingerprint_hash, 6), + [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fingerprint_hash, 6), + [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_on_forward_failure, 6), + [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_on_forward_failure, 6), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_char, 6), + [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_char, 6), + [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_ssh_keysign, 6), + [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_ssh_keysign, 6), + [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_escape_commandline, 6), + [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_escape_commandline, 6), + [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_forward, 6), + [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_forward, 6), + [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_persist, 6), + [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_persist, 6), + [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_path, 6), + [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_path, 6), + [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_master, 6), + [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_master, 6), + [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connect_timeout, 6), + [3374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connect_timeout, 6), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connection_attempts, 6), + [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connection_attempts, 6), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compression, 6), + [3382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compression, 6), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clear_all_forwardings, 6), + [3386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clear_all_forwardings, 6), + [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cipher, 6), + [3390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cipher, 6), + [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ciphers, 6), + [3394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ciphers, 6), + [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_host_ip, 6), + [3398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_host_ip, 6), + [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_challenge_response_authentication, 6), + [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_challenge_response_authentication, 6), + [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_certificate_file, 6), + [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_certificate_file, 6), + [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ca_signature_algorithms, 6), + [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ca_signature_algorithms, 6), + [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_permitted_cnames, 6), + [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_permitted_cnames, 6), + [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_max_dots, 6), + [3418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_max_dots, 6), + [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_hostname, 6), + [3422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_hostname, 6), + [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_fallback_local, 6), + [3426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_fallback_local, 6), + [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonical_domains, 6), + [3430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonical_domains, 6), + [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_interface, 6), + [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_interface, 6), + [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_address, 6), + [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_address, 6), + [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_batch_mode, 6), + [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_batch_mode, 6), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_address_family, 6), + [3446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_address_family, 6), + [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_keys_to_agent, 6), + [3450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_add_keys_to_agent, 6), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 6), + [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 6), + [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host, 6), + [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host, 6), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [4732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [4834] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), }; #ifdef __cplusplus diff --git a/test/corpus/enable_escape_commandline.txt b/test/corpus/enable_escape_commandline.txt new file mode 100644 index 0000000..16d4984 --- /dev/null +++ b/test/corpus/enable_escape_commandline.txt @@ -0,0 +1,181 @@ +================== +EnableEscapeCommandline = yes +================== + +EnableEscapeCommandline yes + +--- + +(client_config + (enable_escape_commandline + (enable_escape_commandline_value))) + +================== +EnableEscapeCommandline = Yes +================== + +EnableEscapeCommandline Yes + +--- + +(client_config + (enable_escape_commandline + (enable_escape_commandline_value))) + +================== +EnableEscapeCommandline = true +================== + +EnableEscapeCommandline true + +--- + +(client_config + (enable_escape_commandline + (enable_escape_commandline_value))) + +================== +EnableEscapeCommandline = True +================== + +EnableEscapeCommandline True + +--- + +(client_config + (enable_escape_commandline + (enable_escape_commandline_value))) + +================== +EnableEscapeCommandline = no +================== + +EnableEscapeCommandline no + +--- + +(client_config + (enable_escape_commandline + (enable_escape_commandline_value))) + +================== +EnableEscapeCommandline = No +================== + +EnableEscapeCommandline No + +--- + +(client_config + (enable_escape_commandline + (enable_escape_commandline_value))) + +================== +EnableEscapeCommandline = false +================== + +EnableEscapeCommandline false + +--- + +(client_config + (enable_escape_commandline + (enable_escape_commandline_value))) + +================== +EnableEscapeCommandline = False +================== + +EnableEscapeCommandline False + +--- + +(client_config + (enable_escape_commandline + (enable_escape_commandline_value))) + +================== +use irregular casing +================== + +EnableEscAPeCommandline yes + +--- + +(client_config + (enable_escape_commandline + (enable_escape_commandline_value))) + +================== +can use equals sign +================== + +EnableEscapeCommandline=yes + +--- + +(client_config + (enable_escape_commandline + (enable_escape_commandline_value))) + +================== +can use equals sign with whitespace +================== + +EnableEscapeCommandline = yes + +--- + +(client_config + (enable_escape_commandline + (enable_escape_commandline_value))) + +================== +can use tab character +================== + +EnableEscapeCommandline "yes" + +--- + +(client_config + (enable_escape_commandline + (enable_escape_commandline_value))) + +================== +can be specified after host +================== + +Host example.com + EnableEscapeCommandline no + +--- + +(client_config + (host + (host_value)) + (enable_escape_commandline + (enable_escape_commandline_value))) + +================== +detect invalid values +================== + +EnableEscapeCommandline ja + +--- + +(client_config + (ERROR + (UNEXPECTED 'j'))) + +================== +requires whitespace after key +================== + +EnableEscapeCommandline"yes" + +--- + +(client_config + (ERROR)) diff --git a/test/highlight/enable_escape_commandline.config b/test/highlight/enable_escape_commandline.config new file mode 100644 index 0000000..6bd3c7c --- /dev/null +++ b/test/highlight/enable_escape_commandline.config @@ -0,0 +1,15 @@ +EnableEscapeCommandline yes +# <- keyword +# ^ constant.builtin.boolean + +EnableEscapeCommandline no +# <- keyword +# ^ constant.builtin.boolean + +EnableEscapeCommandline true +# <- keyword +# ^ constant.builtin.boolean + +EnableEscapeCommandline false +# <- keyword +# ^ constant.builtin.boolean